update dev300-m58
[ooovba.git] / sw / source / ui / uno / detreg.cxx
blob376685b698e93465026b2a2e1fdc968d25486709
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: detreg.cxx,v $
10 * $Revision: 1.9 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 // MARKER(update_precomp.py): autogen include statement, do not remove
32 #include "precompiled_sw.hxx"
33 #include "swdetect.hxx"
35 using ::rtl::OUString;
36 using namespace ::com::sun::star;
37 using namespace ::com::sun::star::uno;
38 using namespace ::com::sun::star::lang;
40 extern "C" {
42 SAL_DLLPUBLIC_EXPORT void SAL_CALL component_getImplementationEnvironment(
43 const sal_Char** ppEnvironmentTypeName,
44 uno_Environment** /*ppEnvironment*/ )
46 *ppEnvironmentTypeName = CPPU_CURRENT_LANGUAGE_BINDING_NAME ;
49 SAL_DLLPUBLIC_EXPORT sal_Bool SAL_CALL component_writeInfo(
50 void* /*pServiceManager*/,
51 void* pRegistryKey )
53 Reference< ::registry::XRegistryKey >
54 xKey( reinterpret_cast< ::registry::XRegistryKey* >( pRegistryKey ) ) ;
56 OUString aDelimiter( RTL_CONSTASCII_USTRINGPARAM("/") );
57 OUString aUnoServices( RTL_CONSTASCII_USTRINGPARAM( "/UNO/SERVICES") );
59 // Eigentliche Implementierung und ihre Services registrieren
60 sal_Int32 i;
61 Reference< ::registry::XRegistryKey > xNewKey;
63 xNewKey = xKey->createKey( aDelimiter + SwFilterDetect::impl_getStaticImplementationName() +
64 aUnoServices );
66 Sequence< OUString > aServices = SwFilterDetect::impl_getStaticSupportedServiceNames();
67 for(i = 0; i < aServices.getLength(); i++ )
68 xNewKey->createKey( aServices.getConstArray()[i] );
70 return sal_True;
73 SAL_DLLPUBLIC_EXPORT void* SAL_CALL component_getFactory(
74 const sal_Char* pImplementationName,
75 void* pServiceManager,
76 void* /*pRegistryKey*/ )
78 // Set default return value for this operation - if it failed.
79 void* pReturn = NULL ;
81 if (
82 ( pImplementationName != NULL ) &&
83 ( pServiceManager != NULL )
86 // Define variables which are used in following macros.
87 Reference< XSingleServiceFactory > xFactory ;
88 Reference< XMultiServiceFactory > xServiceManager( reinterpret_cast< XMultiServiceFactory* >( pServiceManager ) ) ;
90 if( SwFilterDetect::impl_getStaticImplementationName().equalsAscii( pImplementationName ) )
92 xFactory = ::cppu::createSingleFactory( xServiceManager,
93 SwFilterDetect::impl_getStaticImplementationName(),
94 SwFilterDetect::impl_createInstance,
95 SwFilterDetect::impl_getStaticSupportedServiceNames() );
98 // Factory is valid - service was found.
99 if ( xFactory.is() )
101 xFactory->acquire();
102 pReturn = xFactory.get();
106 // Return with result of this operation.
107 return pReturn ;
109 } // extern "C"