LCOV - code coverage report
Current view: top level - dbaccess/source/filter/xml - xmlservices.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 18 18 100.0 %
Date: 2012-08-25 Functions: 2 2 100.0 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 11 20 55.0 %

           Branch data     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                 :            : 
      21                 :            : #include <cppuhelper/factory.hxx>
      22                 :            : #include <osl/diagnose.h>
      23                 :            : #include "flt_reghelper.hxx"
      24                 :            : 
      25                 :            : 
      26                 :            : using namespace ::dbaxml;
      27                 :            : using namespace ::com::sun::star::uno;
      28                 :            : using namespace ::com::sun::star::lang;
      29                 :            : using namespace ::com::sun::star::registry;
      30                 :            : 
      31                 :            : //***************************************************************************************
      32                 :            : //
      33                 :            : // registry functions
      34                 :            : extern "C" void SAL_CALL createRegistryInfo_ODBFilter();
      35                 :            : extern "C" void SAL_CALL createRegistryInfo_ODBFilterExport();
      36                 :            : extern "C" void SAL_CALL createRegistryInfo_OSettingsExport();
      37                 :            : extern "C" void SAL_CALL createRegistryInfo_OFullExport();
      38                 :            : extern "C" void SAL_CALL createRegistryInfo_DBContentLoader2();
      39                 :            : extern "C" void SAL_CALL createRegistryInfo_DBTypeDetection();
      40                 :            : extern "C" void SAL_CALL writeDBLoaderInfo2(void* pRegistryKey);
      41                 :            : 
      42                 :            : //***************************************************************************************
      43                 :         23 : extern "C" void SAL_CALL createRegistryInfo_dbaxml()
      44                 :            : {
      45                 :            :     static sal_Bool bInit = sal_False;
      46         [ +  + ]:         23 :     if (!bInit)
      47                 :            :     {
      48                 :         17 :         createRegistryInfo_DBTypeDetection();
      49                 :         17 :         createRegistryInfo_ODBFilter();
      50                 :         17 :         createRegistryInfo_ODBFilterExport();
      51                 :         17 :         createRegistryInfo_OSettingsExport();
      52                 :         17 :         createRegistryInfo_OFullExport();
      53                 :         17 :         createRegistryInfo_DBContentLoader2();
      54                 :         17 :         bInit = sal_True;
      55                 :            :     }
      56                 :         23 : }
      57                 :            : 
      58                 :            : //---------------------------------------------------------------------------------------
      59                 :         23 : extern "C" SAL_DLLPUBLIC_EXPORT void* SAL_CALL dbaxml_component_getFactory(
      60                 :            :                     const sal_Char* pImplementationName,
      61                 :            :                     void* pServiceManager,
      62                 :            :                     void* /*pRegistryKey*/)
      63                 :            : {
      64         [ +  - ]:         23 :     createRegistryInfo_dbaxml();
      65                 :            : 
      66                 :         23 :     Reference< XInterface > xRet;
      67 [ +  - ][ +  - ]:         23 :     if (pServiceManager && pImplementationName)
      68                 :            :     {
      69                 :            :         xRet = ::dbaxml::OModuleRegistration::getComponentFactory(
      70                 :            :             ::rtl::OUString::createFromAscii(pImplementationName),
      71 [ +  - ][ +  - ]:         23 :             static_cast< XMultiServiceFactory* >(pServiceManager));
                 [ +  - ]
      72                 :            :     }
      73                 :            : 
      74         [ +  - ]:         23 :     if (xRet.is())
      75         [ +  - ]:         23 :         xRet->acquire();
      76         [ +  - ]:         23 :     return xRet.get();
      77                 :            : };
      78                 :            : 
      79                 :            : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10