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_starmath.hxx"
33 #include <com/sun/star/lang/XServiceInfo.hpp>
34 #include <com/sun/star/registry/XRegistryKey.hpp>
35 #include <com/sun/star/uno/Sequence.h>
36 #include <rtl/ustring.hxx>
38 #include "smdetect.hxx"
40 using namespace ::rtl
;
41 using namespace ::com::sun::star
;
42 using namespace ::com::sun::star::uno
;
43 using namespace ::com::sun::star::lang
;
47 void SAL_CALL
component_getImplementationEnvironment(
48 const sal_Char
** ppEnvironmentTypeName
,
49 uno_Environment
** /*ppEnvironment*/ )
51 *ppEnvironmentTypeName
= CPPU_CURRENT_LANGUAGE_BINDING_NAME
;
54 sal_Bool SAL_CALL
component_writeInfo( void* /*pServiceManager*/,
57 Reference
< ::registry::XRegistryKey
>
58 xKey( reinterpret_cast< ::registry::XRegistryKey
* >( pRegistryKey
) ) ;
60 OUString
aDelimiter( RTL_CONSTASCII_USTRINGPARAM("/") );
61 OUString
aUnoServices( RTL_CONSTASCII_USTRINGPARAM( "/UNO/SERVICES") );
63 // Eigentliche Implementierung und ihre Services registrieren
65 Reference
< ::registry::XRegistryKey
> xNewKey
;
67 xNewKey
= xKey
->createKey( aDelimiter
+ SmFilterDetect::impl_getStaticImplementationName() +
70 Sequence
< OUString
> aServices
= SmFilterDetect::impl_getStaticSupportedServiceNames();
71 for(i
= 0; i
< aServices
.getLength(); i
++ )
72 xNewKey
->createKey( aServices
.getConstArray()[i
] );
77 void* SAL_CALL
component_getFactory( const sal_Char
* pImplementationName
,
78 void* pServiceManager
,
79 void* /*pRegistryKey*/ )
81 // Set default return value for this operation - if it failed.
82 void* pReturn
= NULL
;
85 ( pImplementationName
!= NULL
) &&
86 ( pServiceManager
!= NULL
)
89 // Define variables which are used in following macros.
90 Reference
< XSingleServiceFactory
> xFactory
;
91 Reference
< XMultiServiceFactory
> xServiceManager( reinterpret_cast< XMultiServiceFactory
* >( pServiceManager
) ) ;
93 if( SmFilterDetect::impl_getStaticImplementationName().equalsAscii( pImplementationName
) )
95 xFactory
= ::cppu::createSingleFactory( xServiceManager
,
96 SmFilterDetect::impl_getStaticImplementationName(),
97 SmFilterDetect::impl_createInstance
,
98 SmFilterDetect::impl_getStaticSupportedServiceNames() );
101 // Factory is valid - service was found.
105 pReturn
= xFactory
.get();
109 // Return with result of this operation.