1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 <ZipPackage.hxx>
26 #include <zipfileaccess.hxx>
28 using namespace ::com::sun::star
;
29 using namespace ::com::sun::star::uno
;
30 using namespace ::com::sun::star::beans
;
31 using namespace ::com::sun::star::lang
;
32 using namespace ::com::sun::star::registry
;
33 using namespace ::com::sun::star::packages
;
36 * This function is called to get service factories for an implementation.
37 * @param pImplName name of implementation
38 * @param pServiceManager generic uno interface providing a service manager to instantiate components
39 * @param pRegistryKey registry data key to read and write component persistent data
40 * @return a component factory (generic uno interface)
42 extern "C" SAL_DLLPUBLIC_EXPORT
void * package2_component_getFactory(
43 const sal_Char
* pImplName
, void * pServiceManager
, void * /*pRegistryKey*/ )
45 void * pRet
= nullptr;
46 uno::Reference
< XMultiServiceFactory
> xSMgr(
47 static_cast< XMultiServiceFactory
* >( pServiceManager
) );
48 uno::Reference
< XSingleServiceFactory
> xFactory
;
50 if (ManifestReader::static_getImplementationName().equalsAscii( pImplName
) )
51 xFactory
= ManifestReader::createServiceFactory ( xSMgr
);
52 else if (ManifestWriter::static_getImplementationName().equalsAscii( pImplName
) )
53 xFactory
= ManifestWriter::createServiceFactory ( xSMgr
);
54 else if (ZipPackage::static_getImplementationName().equalsAscii( pImplName
) )
55 xFactory
= ZipPackage::createServiceFactory ( xSMgr
);
56 else if ( OZipFileAccess::impl_staticGetImplementationName().equalsAscii( pImplName
) )
57 xFactory
= ::cppu::createSingleFactory( xSMgr
,
58 OZipFileAccess::impl_staticGetImplementationName(),
59 OZipFileAccess::impl_staticCreateSelfInstance
,
60 OZipFileAccess::impl_staticGetSupportedServiceNames() );
65 pRet
= xFactory
.get();
70 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */