Update ooo320-m1
[ooovba.git] / sd / source / ui / unoidl / detreg.cxx
blob4d6147e7b2acfcb89818f6a8fdedc65bca8c0832
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: detreg.cxx,v $
10 * $Revision: 1.8 $
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_sd.hxx"
34 #include "sddetect.hxx"
35 #include <com/sun/star/lang/XServiceInfo.hpp>
36 #include <com/sun/star/registry/XRegistryKey.hpp>
37 #include <com/sun/star/uno/Sequence.h>
38 #include <rtl/ustring.hxx>
39 #include "sal/types.h"
41 using namespace ::com::sun::star;
42 using namespace ::com::sun::star::uno;
43 using namespace ::com::sun::star::lang;
45 extern "C" {
47 SAL_DLLPUBLIC_EXPORT void SAL_CALL component_getImplementationEnvironment(
48 const sal_Char** ppEnvironmentTypeName,
49 uno_Environment** )
51 *ppEnvironmentTypeName = CPPU_CURRENT_LANGUAGE_BINDING_NAME ;
54 SAL_DLLPUBLIC_EXPORT sal_Bool SAL_CALL component_writeInfo(
55 void* ,
56 void* pRegistryKey )
58 Reference< ::registry::XRegistryKey >
59 xKey( reinterpret_cast< ::registry::XRegistryKey* >( pRegistryKey ) ) ;
61 ::rtl::OUString aDelimiter( RTL_CONSTASCII_USTRINGPARAM("/") );
62 ::rtl::OUString aUnoServices( RTL_CONSTASCII_USTRINGPARAM( "/UNO/SERVICES") );
64 // Eigentliche Implementierung und ihre Services registrieren
65 sal_Int32 i;
66 Reference< ::registry::XRegistryKey > xNewKey;
68 xNewKey = xKey->createKey( aDelimiter + SdFilterDetect::impl_getStaticImplementationName() +
69 aUnoServices );
71 Sequence< ::rtl::OUString > aServices = SdFilterDetect::impl_getStaticSupportedServiceNames();
72 for(i = 0; i < aServices.getLength(); i++ )
73 xNewKey->createKey( aServices.getConstArray()[i] );
75 return sal_True;
78 SAL_DLLPUBLIC_EXPORT void* SAL_CALL component_getFactory(
79 const sal_Char* pImplementationName,
80 void* pServiceManager,
81 void* )
83 // Set default return value for this operation - if it failed.
84 void* pReturn = NULL ;
86 if (
87 ( pImplementationName != NULL ) &&
88 ( pServiceManager != NULL )
91 // Define variables which are used in following macros.
92 Reference< XSingleServiceFactory > xFactory ;
93 Reference< XMultiServiceFactory > xServiceManager( reinterpret_cast< XMultiServiceFactory* >( pServiceManager ) ) ;
95 if( SdFilterDetect::impl_getStaticImplementationName().equalsAscii( pImplementationName ) )
97 xFactory = ::cppu::createSingleFactory( xServiceManager,
98 SdFilterDetect::impl_getStaticImplementationName(),
99 SdFilterDetect::impl_createInstance,
100 SdFilterDetect::impl_getStaticSupportedServiceNames() );
103 // Factory is valid - service was found.
104 if ( xFactory.is() )
106 xFactory->acquire();
107 pReturn = xFactory.get();
111 // Return with result of this operation.
112 return pReturn ;
114 } // extern "C"