LCOV - code coverage report
Current view: top level - starmath/source - register.cxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 40 42 95.2 %
Date: 2014-11-03 Functions: 3 3 100.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/XServiceInfo.hpp>
      21             : #include <com/sun/star/registry/XRegistryKey.hpp>
      22             : #include <com/sun/star/uno/Sequence.h>
      23             : #include <rtl/ustring.hxx>
      24             : 
      25             : #include <sfx2/sfxmodelfactory.hxx>
      26             : 
      27             : #include "register.hxx"
      28             : #include "smdll.hxx"
      29             : #include "document.hxx"
      30             : #include "unomodel.hxx"
      31             : 
      32             : using namespace ::com::sun::star;
      33             : using namespace ::com::sun::star::uno;
      34             : using namespace ::com::sun::star::lang;
      35             : 
      36             : extern "C" {
      37             : 
      38          74 : SAL_DLLPUBLIC_EXPORT void* SAL_CALL sm_component_getFactory( const sal_Char* pImplementationName,
      39             :                                      void* pServiceManager,
      40             :                                      void* /*pRegistryKey*/ )
      41             : {
      42             :     // Set default return value for this operation - if it failed.
      43          74 :     void* pReturn = NULL ;
      44             : 
      45          74 :     if  (
      46          74 :             ( pImplementationName   !=  NULL ) &&
      47             :             ( pServiceManager       !=  NULL )
      48             :         )
      49             :     {
      50             :         // Define variables which are used in following macros.
      51          74 :         Reference< XSingleServiceFactory >   xFactory                                                                                                ;
      52         148 :         Reference< XMultiServiceFactory >    xServiceManager( reinterpret_cast< XMultiServiceFactory* >( pServiceManager ) ) ;
      53             : 
      54          74 :         if( SmXMLImport_getImplementationName().equalsAscii( pImplementationName ))
      55             :         {
      56           8 :             xFactory = ::cppu::createSingleFactory( xServiceManager,
      57             :             SmXMLImport_getImplementationName(),
      58             :             SmXMLImport_createInstance,
      59           4 :             SmXMLImport_getSupportedServiceNames() );
      60             :         }
      61          70 :         else if( SmXMLExport_getImplementationName().equalsAscii( pImplementationName ))
      62             :         {
      63           4 :             xFactory = ::cppu::createSingleFactory( xServiceManager,
      64             :             SmXMLExport_getImplementationName(),
      65             :             SmXMLExport_createInstance,
      66           2 :             SmXMLExport_getSupportedServiceNames() );
      67             :         }
      68          68 :         else if( SmXMLImportMeta_getImplementationName().equalsAscii( pImplementationName ))
      69             :         {
      70           4 :             xFactory = ::cppu::createSingleFactory( xServiceManager,
      71             :             SmXMLImportMeta_getImplementationName(),
      72             :             SmXMLImportMeta_createInstance,
      73           2 :             SmXMLImportMeta_getSupportedServiceNames() );
      74             :         }
      75          66 :         else if( SmXMLExportMetaOOO_getImplementationName().equalsAscii( pImplementationName ))
      76             :         {
      77           4 :             xFactory = ::cppu::createSingleFactory( xServiceManager,
      78             :             SmXMLExportMetaOOO_getImplementationName(),
      79             :             SmXMLExportMetaOOO_createInstance,
      80           2 :             SmXMLExportMetaOOO_getSupportedServiceNames() );
      81             :         }
      82          64 :         else if( SmXMLExportMeta_getImplementationName().equalsAscii( pImplementationName ))
      83             :         {
      84           0 :             xFactory = ::cppu::createSingleFactory( xServiceManager,
      85             :             SmXMLExportMeta_getImplementationName(),
      86             :             SmXMLExportMeta_createInstance,
      87           0 :             SmXMLExportMeta_getSupportedServiceNames() );
      88             :         }
      89          64 :         else if( SmXMLImportSettings_getImplementationName().equalsAscii( pImplementationName ))
      90             :         {
      91           8 :             xFactory = ::cppu::createSingleFactory( xServiceManager,
      92             :             SmXMLImportSettings_getImplementationName(),
      93             :             SmXMLImportSettings_createInstance,
      94           4 :             SmXMLImportSettings_getSupportedServiceNames() );
      95             :         }
      96          60 :         else if( SmXMLExportSettingsOOO_getImplementationName().equalsAscii( pImplementationName ))
      97             :         {
      98           4 :             xFactory = ::cppu::createSingleFactory( xServiceManager,
      99             :             SmXMLExportSettingsOOO_getImplementationName(),
     100             :             SmXMLExportSettingsOOO_createInstance,
     101           2 :             SmXMLExportSettingsOOO_getSupportedServiceNames() );
     102             :         }
     103          58 :         else if( SmXMLExportSettings_getImplementationName().equalsAscii( pImplementationName ))
     104             :         {
     105          36 :             xFactory = ::cppu::createSingleFactory( xServiceManager,
     106             :             SmXMLExportSettings_getImplementationName(),
     107             :             SmXMLExportSettings_createInstance,
     108          18 :             SmXMLExportSettings_getSupportedServiceNames() );
     109             :         }
     110          40 :         else if( SmXMLExportContent_getImplementationName().equalsAscii( pImplementationName ))
     111             :         {
     112          36 :             xFactory = ::cppu::createSingleFactory( xServiceManager,
     113             :             SmXMLExportContent_getImplementationName(),
     114             :             SmXMLExportContent_createInstance,
     115          18 :             SmXMLExportContent_getSupportedServiceNames() );
     116             :         }
     117          22 :         else if( SmDocument_getImplementationName().equalsAscii( pImplementationName ))
     118             :         {
     119          44 :             xFactory = ::sfx2::createSfxModelFactory( xServiceManager,
     120             :             SmDocument_getImplementationName(),
     121             :             SmDocument_createInstance,
     122          22 :             SmDocument_getSupportedServiceNames() );
     123             :         }
     124             : 
     125             : 
     126             :         // Factory is valid - service was found.
     127          74 :         if ( xFactory.is() )
     128             :         {
     129          74 :             xFactory->acquire();
     130          74 :             pReturn = xFactory.get();
     131          74 :         }
     132             :     }
     133             : 
     134             :     // Return with result of this operation.
     135          74 :     return pReturn ;
     136             : }
     137          72 : } // extern "C"
     138             : 
     139             : 
     140             : 
     141             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10