Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
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/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
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 .
18 : */
19 :
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>
26 :
27 : #include <zipfileaccess.hxx>
28 :
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;
35 :
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)
42 : */
43 345 : extern "C" SAL_DLLPUBLIC_EXPORT void * SAL_CALL package2_component_getFactory(
44 : const sal_Char * pImplName, void * pServiceManager, void * /*pRegistryKey*/ )
45 : {
46 345 : void * pRet = 0;
47 : uno::Reference< XMultiServiceFactory > xSMgr(
48 345 : static_cast< XMultiServiceFactory * >( pServiceManager ) );
49 690 : uno::Reference< XSingleServiceFactory > xFactory;
50 :
51 345 : if (ManifestReader::static_getImplementationName().equalsAscii( pImplName ) )
52 79 : xFactory = ManifestReader::createServiceFactory ( xSMgr );
53 266 : else if (ManifestWriter::static_getImplementationName().equalsAscii( pImplName ) )
54 30 : xFactory = ManifestWriter::createServiceFactory ( xSMgr );
55 236 : else if (ZipPackage::static_getImplementationName().equalsAscii( pImplName ) )
56 122 : xFactory = ZipPackage::createServiceFactory ( xSMgr );
57 114 : else if ( OZipFileAccess::impl_staticGetImplementationName().equalsAscii( pImplName ) )
58 228 : xFactory = ::cppu::createSingleFactory( xSMgr,
59 : OZipFileAccess::impl_staticGetImplementationName(),
60 : OZipFileAccess::impl_staticCreateSelfInstance,
61 114 : OZipFileAccess::impl_staticGetSupportedServiceNames() );
62 :
63 345 : if ( xFactory.is() )
64 : {
65 345 : xFactory->acquire();
66 345 : pRet = xFactory.get();
67 : }
68 690 : return pRet;
69 : }
70 :
71 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|