LCOV - code coverage report
Current view: top level - libreoffice/ucb/source/cacher - cacheserv.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 0 20 0.0 %
Date: 2012-12-27 Functions: 0 1 0.0 %
Legend: Lines: hit not hit

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

Generated by: LCOV version 1.10