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 <com/sun/star/lang/XMultiServiceFactory.hpp>
21 #include <com/sun/star/lang/XSingleServiceFactory.hpp>
22 #include <cppuhelper/factory.hxx>
24 #include "ucbstore.hxx"
25 #include "ucbprops.hxx"
26 #include "provprox.hxx"
28 #include "FileAccess.hxx"
30 using namespace com::sun::star::uno
;
31 using namespace com::sun::star::lang
;
34 extern "C" SAL_DLLPUBLIC_EXPORT
void * ucb_component_getFactory(
35 const sal_Char
* pImplName
, void * pServiceManager
, void * )
37 void * pRet
= nullptr;
39 Reference
< XMultiServiceFactory
> xSMgr(
40 static_cast< XMultiServiceFactory
* >( pServiceManager
) );
41 Reference
< XSingleServiceFactory
> xFactory
;
44 // Universal Content Broker.
47 if ( UniversalContentBroker::getImplementationName_Static().
48 equalsAscii( pImplName
) )
50 xFactory
= UniversalContentBroker::createServiceFactory( xSMgr
);
57 else if ( UcbStore::getImplementationName_Static().
58 equalsAscii( pImplName
) )
60 xFactory
= UcbStore::createServiceFactory( xSMgr
);
64 // UCB PropertiesManager.
67 else if ( UcbPropertiesManager::getImplementationName_Static().
68 equalsAscii( pImplName
) )
70 xFactory
= UcbPropertiesManager::createServiceFactory( xSMgr
);
77 else if ( UcbContentProviderProxyFactory::getImplementationName_Static().
78 equalsAscii( pImplName
) )
80 xFactory
= UcbContentProviderProxyFactory::createServiceFactory( xSMgr
);
84 // Command Environment.
87 else if ( ucb_cmdenv::UcbCommandEnvironment::getImplementationName_Static().
88 equalsAscii( pImplName
) )
90 xFactory
= ucb_cmdenv::UcbCommandEnvironment::createServiceFactory( xSMgr
);
94 else if (pServiceManager
&& rtl_str_compare( pImplName
, IMPLEMENTATION_NAME
) == 0)
96 xFactory
= cppu::createSingleFactory(xSMgr
,
97 OUString::createFromAscii( pImplName
),
98 FileAccess_CreateInstance
,
99 FileAccess_getSupportedServiceNames() );
105 pRet
= xFactory
.get();
111 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */