nss: makefile bitrot: no need for android spcial case anymore
[LibreOffice.git] / cppuhelper / source / implementationentry.cxx
blobf28547dfacc25e6feebb4973a1b28977f0c9707f
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 <com/sun/star/lang/XSingleComponentFactory.hpp>
22 #include <com/sun/star/registry/XRegistryKey.hpp>
24 #include <osl/diagnose.h>
26 using namespace ::com::sun::star::uno;
27 using namespace ::com::sun::star::lang;
28 using namespace ::com::sun::star::registry;
30 namespace cppu {
32 sal_Bool component_writeInfoHelper(
33 SAL_UNUSED_PARAMETER void *, void * pRegistryKey,
34 const struct ImplementationEntry entries[])
36 bool bRet = false;
37 try
39 if( pRegistryKey )
41 for( sal_Int32 i = 0; entries[i].create ; i ++ )
43 OUString sKey = "/" + entries[i].getImplementationName() + "/UNO/SERVICES";
44 Reference< XRegistryKey > xNewKey(
45 static_cast< XRegistryKey * >( pRegistryKey )->createKey( sKey ) );
47 Sequence< OUString > seq = entries[i].getSupportedServiceNames();
48 const OUString *pArray = seq.getConstArray();
49 for ( sal_Int32 nPos = 0 ; nPos < seq.getLength(); nPos ++ )
50 xNewKey->createKey( pArray[nPos] );
52 bRet = true;
55 catch ( InvalidRegistryException & )
57 OSL_FAIL( "### InvalidRegistryException!" );
59 return bRet;
63 void * component_getFactoryHelper(
64 char const * pImplName, SAL_UNUSED_PARAMETER void *,
65 SAL_UNUSED_PARAMETER void *, const struct ImplementationEntry entries[])
68 void * pRet = nullptr;
69 Reference< XSingleComponentFactory > xFactory;
71 for( sal_Int32 i = 0 ; entries[i].create ; i ++ )
73 OUString implName = entries[i].getImplementationName();
74 if( implName.equalsAscii( pImplName ) )
76 xFactory = entries[i].createFactory(
77 entries[i].create,
78 implName,
79 entries[i].getSupportedServiceNames(),
80 entries[i].moduleCounter );
84 if( xFactory.is() )
86 xFactory->acquire();
87 pRet = xFactory.get();
89 return pRet;
94 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */