Bump version to 5.0-14
[LibreOffice.git] / package / source / manifest / UnoRegister.cxx
blobf453512d4c78aedd568fa764733d0aef76815ccc
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 <ManifestReader.hxx>
21 #include <ManifestWriter.hxx>
22 #include <cppuhelper/factory.hxx>
23 #include <com/sun/star/registry/XRegistryKey.hpp>
24 #include <osl/diagnose.h>
25 #include <ZipPackage.hxx>
27 #include <zipfileaccess.hxx>
29 using namespace ::com::sun::star;
30 using namespace ::com::sun::star::uno;
31 using namespace ::com::sun::star::beans;
32 using namespace ::com::sun::star::lang;
33 using namespace ::com::sun::star::registry;
34 using namespace ::com::sun::star::packages;
36 /**
37 * This function is called to get service factories for an implementation.
38 * @param pImplName name of implementation
39 * @param pServiceManager generic uno interface providing a service manager to instantiate components
40 * @param pRegistryKey registry data key to read and write component persistent data
41 * @return a component factory (generic uno interface)
43 extern "C" SAL_DLLPUBLIC_EXPORT void * SAL_CALL package2_component_getFactory(
44 const sal_Char * pImplName, void * pServiceManager, void * /*pRegistryKey*/ )
46 void * pRet = 0;
47 uno::Reference< XMultiServiceFactory > xSMgr(
48 static_cast< XMultiServiceFactory * >( pServiceManager ) );
49 uno::Reference< XSingleServiceFactory > xFactory;
51 if (ManifestReader::static_getImplementationName().equalsAscii( pImplName ) )
52 xFactory = ManifestReader::createServiceFactory ( xSMgr );
53 else if (ManifestWriter::static_getImplementationName().equalsAscii( pImplName ) )
54 xFactory = ManifestWriter::createServiceFactory ( xSMgr );
55 else if (ZipPackage::static_getImplementationName().equalsAscii( pImplName ) )
56 xFactory = ZipPackage::createServiceFactory ( xSMgr );
57 else if ( OZipFileAccess::impl_staticGetImplementationName().equalsAscii( pImplName ) )
58 xFactory = ::cppu::createSingleFactory( xSMgr,
59 OZipFileAccess::impl_staticGetImplementationName(),
60 OZipFileAccess::impl_staticCreateSelfInstance,
61 OZipFileAccess::impl_staticGetSupportedServiceNames() );
63 if ( xFactory.is() )
65 xFactory->acquire();
66 pRet = xFactory.get();
68 return pRet;
71 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */