Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 : #include "sal/config.h"
21 :
22 : #include <cassert>
23 :
24 : #include "com/sun/star/uno/Exception.hpp"
25 : #include "com/sun/star/uno/Reference.hxx"
26 : #include "com/sun/star/uno/XComponentContext.hpp"
27 : #include "com/sun/star/uno/XInterface.hpp"
28 : #include "cppuhelper/factory.hxx"
29 : #include "cppuhelper/implementationentry.hxx"
30 : #include "sal/types.h"
31 :
32 : #include "configurationprovider.hxx"
33 : #include "configurationregistry.hxx"
34 : #include "defaultprovider.hxx"
35 : #include "readonlyaccess.hxx"
36 : #include "readwriteaccess.hxx"
37 : #include "update.hxx"
38 :
39 : namespace {
40 :
41 0 : css::uno::Reference< css::uno::XInterface > SAL_CALL dummy(
42 : SAL_UNUSED_PARAMETER css::uno::Reference< css::uno::XComponentContext >
43 : const &)
44 : SAL_THROW((css::uno::Exception))
45 : {
46 : assert(false);
47 0 : return css::uno::Reference< css::uno::XInterface >();
48 : }
49 :
50 : static cppu::ImplementationEntry const services[] = {
51 : { &dummy, &configmgr::configuration_provider::getImplementationName,
52 : &configmgr::configuration_provider::getSupportedServiceNames,
53 : &configmgr::configuration_provider::createFactory, 0, 0 },
54 : { &configmgr::default_provider::create,
55 : &configmgr::default_provider::getImplementationName,
56 : &configmgr::default_provider::getSupportedServiceNames,
57 : &cppu::createSingleComponentFactory, 0, 0 },
58 : { &configmgr::configuration_registry::create,
59 : &configmgr::configuration_registry::getImplementationName,
60 : &configmgr::configuration_registry::getSupportedServiceNames,
61 : &cppu::createSingleComponentFactory, 0, 0 },
62 : { &configmgr::read_only_access::create,
63 : &configmgr::read_only_access::getImplementationName,
64 : &configmgr::read_only_access::getSupportedServiceNames,
65 : &cppu::createSingleComponentFactory, 0, 0 },
66 : { &configmgr::read_write_access::create,
67 : &configmgr::read_write_access::getImplementationName,
68 : &configmgr::read_write_access::getSupportedServiceNames,
69 : &cppu::createSingleComponentFactory, 0, 0 },
70 : { &configmgr::update::create, &configmgr::update::getImplementationName,
71 : &configmgr::update::getSupportedServiceNames,
72 : &cppu::createSingleComponentFactory, 0, 0 },
73 : { 0, 0, 0, 0, 0, 0 }
74 : };
75 :
76 : }
77 :
78 0 : extern "C" SAL_DLLPUBLIC_EXPORT void * SAL_CALL configmgr_component_getFactory(
79 : char const * pImplName, void * pServiceManager, void * pRegistryKey)
80 : {
81 : return cppu::component_getFactoryHelper(
82 0 : pImplName, pServiceManager, pRegistryKey, services);
83 : }
84 :
85 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|