Version 3.6.0.2, tag libreoffice-3.6.0.2
[LibreOffice.git] / cppuhelper / source / implementationentry.cxx
blobbd617b8c9f2c1c2951d86125b5e3a8d4d590afa1
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;
37 namespace cppu {
39 sal_Bool component_writeInfoHelper(
40 SAL_UNUSED_PARAMETER void *, void * pRegistryKey,
41 ImplementationEntry const * entries)
43 sal_Bool bRet = sal_False;
44 try
46 if( pRegistryKey )
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] );
62 bRet = sal_True;
65 catch ( InvalidRegistryException & )
67 OSL_FAIL( "### InvalidRegistryException!" );
69 return bRet;
73 void * component_getFactoryHelper(
74 char const * pImplName, SAL_UNUSED_PARAMETER void *,
75 SAL_UNUSED_PARAMETER void *, ImplementationEntry const * entries)
78 void * pRet = 0;
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(
87 entries[i].create,
88 implName,
89 entries[i].getSupportedServiceNames(),
90 entries[i].moduleCounter );
94 if( xFactory.is() )
96 xFactory->acquire();
97 pRet = xFactory.get();
99 return pRet;
104 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */