1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*************************************************************************
4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6 * Copyright 2000, 2010 Oracle and/or its affiliates.
8 * OpenOffice.org - a multi-platform office productivity suite
10 * This file is part of OpenOffice.org.
12 * OpenOffice.org is free software: you can redistribute it and/or modify
13 * it under the terms of the GNU Lesser General Public License version 3
14 * only, as published by the Free Software Foundation.
16 * OpenOffice.org is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU Lesser General Public License version 3 for more details
20 * (a copy is included in the LICENSE file that accompanied this code).
22 * You should have received a copy of the GNU Lesser General Public License
23 * version 3 along with OpenOffice.org. If not, see
24 * <http://www.openoffice.org/license.html>
25 * for a copy of the LGPLv3 License.
27 ************************************************************************/
29 #include <cppuhelper/implementationentry.hxx>
30 #include <rtl/ustrbuf.hxx>
32 using namespace ::rtl
;
33 using namespace ::com::sun::star::uno
;
34 using namespace ::com::sun::star::lang
;
35 using namespace ::com::sun::star::registry
;
39 sal_Bool
component_writeInfoHelper(
40 SAL_UNUSED_PARAMETER
void *, void * pRegistryKey
,
41 ImplementationEntry
const * entries
)
43 sal_Bool bRet
= sal_False
;
48 for( sal_Int32 i
= 0; entries
[i
].create
; i
++ )
50 OUStringBuffer
buf( 124 );
51 buf
.appendAscii( RTL_CONSTASCII_STRINGPARAM("/") );
52 buf
.append( entries
[i
].getImplementationName() );
53 buf
.appendAscii(RTL_CONSTASCII_STRINGPARAM( "/UNO/SERVICES" ) );
54 Reference
< XRegistryKey
> xNewKey(
55 reinterpret_cast< XRegistryKey
* >( pRegistryKey
)->createKey( buf
.makeStringAndClear() ) );
57 Sequence
< OUString
> seq
= entries
[i
].getSupportedServiceNames();
58 const OUString
*pArray
= seq
.getConstArray();
59 for ( sal_Int32 nPos
= 0 ; nPos
< seq
.getLength(); nPos
++ )
60 xNewKey
->createKey( pArray
[nPos
] );
65 catch ( InvalidRegistryException
& )
67 OSL_FAIL( "### InvalidRegistryException!" );
73 void * component_getFactoryHelper(
74 char const * pImplName
, SAL_UNUSED_PARAMETER
void *,
75 SAL_UNUSED_PARAMETER
void *, ImplementationEntry
const * entries
)
79 Reference
< XSingleComponentFactory
> xFactory
;
81 for( sal_Int32 i
= 0 ; entries
[i
].create
; i
++ )
83 OUString implName
= entries
[i
].getImplementationName();
84 if( 0 == implName
.compareToAscii( pImplName
) )
86 xFactory
= entries
[i
].createFactory(
89 entries
[i
].getSupportedServiceNames(),
90 entries
[i
].moduleCounter
);
97 pRet
= xFactory
.get();
104 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */