Version 4.0.0.1, tag libreoffice-4.0.0.1
[LibreOffice.git] / ucb / source / cacher / cacheserv.cxx
blob79cc52af4f0405c2fabc9e585610923490539b34
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 <com/sun/star/lang/XMultiServiceFactory.hpp>
21 #include <com/sun/star/lang/XSingleServiceFactory.hpp>
22 #include <com/sun/star/registry/XRegistryKey.hpp>
23 #include <cachedcontentresultset.hxx>
24 #include <cachedcontentresultsetstub.hxx>
25 #include <cacheddynamicresultset.hxx>
26 #include <cacheddynamicresultsetstub.hxx>
28 using namespace com::sun::star::uno;
29 using namespace com::sun::star::lang;
30 using namespace com::sun::star::registry;
32 using ::rtl::OUString;
34 //=========================================================================
35 extern "C" SAL_DLLPUBLIC_EXPORT void * SAL_CALL cached1_component_getFactory(
36 const sal_Char * pImplName, void * pServiceManager, void * )
38 void * pRet = 0;
40 Reference< XMultiServiceFactory > xSMgr(
41 reinterpret_cast< XMultiServiceFactory * >( pServiceManager ) );
42 Reference< XSingleServiceFactory > xFactory;
44 //////////////////////////////////////////////////////////////////////
45 // CachedContentResultSetFactory.
46 //////////////////////////////////////////////////////////////////////
48 if ( CachedContentResultSetFactory::getImplementationName_Static().
49 compareToAscii( pImplName ) == 0 )
51 xFactory = CachedContentResultSetFactory::createServiceFactory( xSMgr );
54 //////////////////////////////////////////////////////////////////////
55 // CachedContentResultSetStubFactory.
56 //////////////////////////////////////////////////////////////////////
58 else if ( CachedContentResultSetStubFactory::getImplementationName_Static().
59 compareToAscii( pImplName ) == 0 )
61 xFactory = CachedContentResultSetStubFactory::createServiceFactory( xSMgr );
64 //////////////////////////////////////////////////////////////////////
65 // CachedDynamicResultSetFactory.
66 //////////////////////////////////////////////////////////////////////
68 else if ( CachedDynamicResultSetFactory::getImplementationName_Static().
69 compareToAscii( pImplName ) == 0 )
71 xFactory = CachedDynamicResultSetFactory::createServiceFactory( xSMgr );
74 //////////////////////////////////////////////////////////////////////
75 // CachedDynamicResultSetStubFactory.
76 //////////////////////////////////////////////////////////////////////
78 else if ( CachedDynamicResultSetStubFactory::getImplementationName_Static().
79 compareToAscii( pImplName ) == 0 )
81 xFactory = CachedDynamicResultSetStubFactory::createServiceFactory( xSMgr );
84 //////////////////////////////////////////////////////////////////////
86 if ( xFactory.is() )
88 xFactory->acquire();
89 pRet = xFactory.get();
92 return pRet;
95 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */