update credits
[LibreOffice.git] / cppuhelper / source / implementationentry.cxx
blob1ee5136e5439e8b3be6b1b9f5a36941da056f797
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #include <cppuhelper/implementationentry.hxx>
21 #include <rtl/ustrbuf.hxx>
23 using namespace ::rtl;
24 using namespace ::com::sun::star::uno;
25 using namespace ::com::sun::star::lang;
26 using namespace ::com::sun::star::registry;
28 namespace cppu {
30 sal_Bool component_writeInfoHelper(
31 SAL_UNUSED_PARAMETER void *, void * pRegistryKey,
32 ImplementationEntry const * entries)
34 sal_Bool bRet = sal_False;
35 try
37 if( pRegistryKey )
39 for( sal_Int32 i = 0; entries[i].create ; i ++ )
41 OUStringBuffer buf( 124 );
42 buf.appendAscii( RTL_CONSTASCII_STRINGPARAM("/") );
43 buf.append( entries[i].getImplementationName() );
44 buf.appendAscii(RTL_CONSTASCII_STRINGPARAM( "/UNO/SERVICES" ) );
45 Reference< XRegistryKey > xNewKey(
46 reinterpret_cast< XRegistryKey * >( pRegistryKey )->createKey( buf.makeStringAndClear() ) );
48 Sequence< OUString > seq = entries[i].getSupportedServiceNames();
49 const OUString *pArray = seq.getConstArray();
50 for ( sal_Int32 nPos = 0 ; nPos < seq.getLength(); nPos ++ )
51 xNewKey->createKey( pArray[nPos] );
53 bRet = sal_True;
56 catch ( InvalidRegistryException & )
58 OSL_FAIL( "### InvalidRegistryException!" );
60 return bRet;
64 void * component_getFactoryHelper(
65 char const * pImplName, SAL_UNUSED_PARAMETER void *,
66 SAL_UNUSED_PARAMETER void *, ImplementationEntry const * entries)
69 void * pRet = 0;
70 Reference< XSingleComponentFactory > xFactory;
72 for( sal_Int32 i = 0 ; entries[i].create ; i ++ )
74 OUString implName = entries[i].getImplementationName();
75 if( 0 == implName.compareToAscii( pImplName ) )
77 xFactory = entries[i].createFactory(
78 entries[i].create,
79 implName,
80 entries[i].getSupportedServiceNames(),
81 entries[i].moduleCounter );
85 if( xFactory.is() )
87 xFactory->acquire();
88 pRet = xFactory.get();
90 return pRet;
95 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */