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 $
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
;
47 SAL_DLLPUBLIC_EXPORT
void SAL_CALL
component_getImplementationEnvironment(
48 const sal_Char
** ppEnvironmentTypeName
,
51 *ppEnvironmentTypeName
= CPPU_CURRENT_LANGUAGE_BINDING_NAME
;
54 SAL_DLLPUBLIC_EXPORT sal_Bool SAL_CALL
component_writeInfo(
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
66 Reference
< ::registry::XRegistryKey
> xNewKey
;
68 xNewKey
= xKey
->createKey( aDelimiter
+ SdFilterDetect::impl_getStaticImplementationName() +
71 Sequence
< ::rtl::OUString
> aServices
= SdFilterDetect::impl_getStaticSupportedServiceNames();
72 for(i
= 0; i
< aServices
.getLength(); i
++ )
73 xNewKey
->createKey( aServices
.getConstArray()[i
] );
78 SAL_DLLPUBLIC_EXPORT
void* SAL_CALL
component_getFactory(
79 const sal_Char
* pImplementationName
,
80 void* pServiceManager
,
83 // Set default return value for this operation - if it failed.
84 void* pReturn
= NULL
;
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.
107 pReturn
= xFactory
.get();
111 // Return with result of this operation.