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 <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>
27 :
28 : using namespace com::sun::star::uno;
29 : using namespace com::sun::star::lang;
30 : using namespace com::sun::star::registry;
31 :
32 :
33 :
34 4 : extern "C" SAL_DLLPUBLIC_EXPORT void * SAL_CALL cached1_component_getFactory(
35 : const sal_Char * pImplName, void * pServiceManager, void * )
36 : {
37 4 : void * pRet = 0;
38 :
39 : Reference< XMultiServiceFactory > xSMgr(
40 4 : static_cast< XMultiServiceFactory * >( pServiceManager ) );
41 8 : Reference< XSingleServiceFactory > xFactory;
42 :
43 :
44 : // CachedContentResultSetFactory.
45 :
46 :
47 8 : if ( CachedContentResultSetFactory::getImplementationName_Static().
48 8 : equalsAscii( pImplName ) )
49 : {
50 1 : xFactory = CachedContentResultSetFactory::createServiceFactory( xSMgr );
51 : }
52 :
53 :
54 : // CachedContentResultSetStubFactory.
55 :
56 :
57 6 : else if ( CachedContentResultSetStubFactory::getImplementationName_Static().
58 6 : equalsAscii( pImplName ) )
59 : {
60 1 : xFactory = CachedContentResultSetStubFactory::createServiceFactory( xSMgr );
61 : }
62 :
63 :
64 : // CachedDynamicResultSetFactory.
65 :
66 :
67 4 : else if ( CachedDynamicResultSetFactory::getImplementationName_Static().
68 4 : equalsAscii( pImplName ) )
69 : {
70 1 : xFactory = CachedDynamicResultSetFactory::createServiceFactory( xSMgr );
71 : }
72 :
73 :
74 : // CachedDynamicResultSetStubFactory.
75 :
76 :
77 2 : else if ( CachedDynamicResultSetStubFactory::getImplementationName_Static().
78 2 : equalsAscii( pImplName ) )
79 : {
80 1 : xFactory = CachedDynamicResultSetStubFactory::createServiceFactory( xSMgr );
81 : }
82 :
83 :
84 :
85 4 : if ( xFactory.is() )
86 : {
87 4 : xFactory->acquire();
88 4 : pRet = xFactory.get();
89 : }
90 :
91 8 : return pRet;
92 : }
93 :
94 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|