merged tag ooo/OOO330_m14
[LibreOffice.git] / extensions / source / dbpilots / dbpservices.cxx
blob28e55e1e8900b9fcd79e2b965189772b683606fb
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2000, 2010 Oracle and/or its affiliates.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * This file is part of OpenOffice.org.
11 * OpenOffice.org is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License version 3
13 * only, as published by the Free Software Foundation.
15 * OpenOffice.org is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Lesser General Public License version 3 for more details
19 * (a copy is included in the LICENSE file that accompanied this code).
21 * You should have received a copy of the GNU Lesser General Public License
22 * version 3 along with OpenOffice.org. If not, see
23 * <http://www.openoffice.org/license.html>
24 * for a copy of the LGPLv3 License.
26 ************************************************************************/
28 // MARKER(update_precomp.py): autogen include statement, do not remove
29 #include "precompiled_extensions.hxx"
30 #include "componentmodule.hxx"
32 //---------------------------------------------------------------------------------------
34 using namespace ::rtl;
35 using namespace ::com::sun::star::uno;
36 using namespace ::com::sun::star::lang;
37 using namespace ::com::sun::star::registry;
39 //---------------------------------------------------------------------------------------
41 extern "C" void SAL_CALL createRegistryInfo_OGroupBoxWizard();
42 extern "C" void SAL_CALL createRegistryInfo_OListComboWizard();
43 extern "C" void SAL_CALL createRegistryInfo_OGridWizard();
45 //---------------------------------------------------------------------------------------
47 extern "C" void SAL_CALL dbp_initializeModule()
49 static sal_Bool s_bInit = sal_False;
50 if (!s_bInit)
52 createRegistryInfo_OGroupBoxWizard();
53 createRegistryInfo_OListComboWizard();
54 createRegistryInfo_OGridWizard();
55 ::dbp::OModule::setResourceFilePrefix("dbp");
56 s_bInit = sal_True;
60 //---------------------------------------------------------------------------------------
62 extern "C" SAL_DLLPUBLIC_EXPORT void SAL_CALL
63 component_getImplementationEnvironment(
64 const sal_Char **ppEnvTypeName,
65 uno_Environment ** /*ppEnv*/
68 dbp_initializeModule();
69 *ppEnvTypeName = CPPU_CURRENT_LANGUAGE_BINDING_NAME;
72 //---------------------------------------------------------------------------------------
73 extern "C" SAL_DLLPUBLIC_EXPORT sal_Bool SAL_CALL component_writeInfo(
74 void* pServiceManager,
75 void* pRegistryKey
78 if (pRegistryKey)
79 try
81 return ::dbp::OModule::writeComponentInfos(
82 static_cast<XMultiServiceFactory*>(pServiceManager),
83 static_cast<XRegistryKey*>(pRegistryKey));
85 catch (InvalidRegistryException& )
87 OSL_ASSERT("dbp::component_writeInfo: could not create a registry key (InvalidRegistryException) !");
90 return sal_False;
93 //---------------------------------------------------------------------------------------
94 extern "C" SAL_DLLPUBLIC_EXPORT void* SAL_CALL component_getFactory(
95 const sal_Char* pImplementationName,
96 void* pServiceManager,
97 void* /*pRegistryKey*/)
99 Reference< XInterface > xRet;
100 if (pServiceManager && pImplementationName)
102 xRet = ::dbp::OModule::getComponentFactory(
103 ::rtl::OUString::createFromAscii(pImplementationName),
104 static_cast< XMultiServiceFactory* >(pServiceManager));
107 if (xRet.is())
108 xRet->acquire();
109 return xRet.get();