LCOV - code coverage report
Current view: top level - filter/source/flash - swfuno.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 0 14 0.0 %
Date: 2012-08-25 Functions: 0 1 0.0 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 0 0 -

           Branch data     Line data    Source code
       1                 :            : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2                 :            : /*************************************************************************
       3                 :            :  *
       4                 :            :  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
       5                 :            :  *
       6                 :            :  * Copyright 2000, 2010 Oracle and/or its affiliates.
       7                 :            :  *
       8                 :            :  * OpenOffice.org - a multi-platform office productivity suite
       9                 :            :  *
      10                 :            :  * This file is part of OpenOffice.org.
      11                 :            :  *
      12                 :            :  * OpenOffice.org is free software: you can redistribute it and/or modify
      13                 :            :  * it under the terms of the GNU Lesser General Public License version 3
      14                 :            :  * only, as published by the Free Software Foundation.
      15                 :            :  *
      16                 :            :  * OpenOffice.org is distributed in the hope that it will be useful,
      17                 :            :  * but WITHOUT ANY WARRANTY; without even the implied warranty of
      18                 :            :  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
      19                 :            :  * GNU Lesser General Public License version 3 for more details
      20                 :            :  * (a copy is included in the LICENSE file that accompanied this code).
      21                 :            :  *
      22                 :            :  * You should have received a copy of the GNU Lesser General Public License
      23                 :            :  * version 3 along with OpenOffice.org.  If not, see
      24                 :            :  * <http://www.openoffice.org/license.html>
      25                 :            :  * for a copy of the LGPLv3 License.
      26                 :            :  *
      27                 :            :  ************************************************************************/
      28                 :            : 
      29                 :            : #include <stdio.h>
      30                 :            : 
      31                 :            : #include <osl/mutex.hxx>
      32                 :            : #include <osl/thread.h>
      33                 :            : #include <cppuhelper/factory.hxx>
      34                 :            : #include <com/sun/star/lang/XSingleServiceFactory.hpp>
      35                 :            : 
      36                 :            : using namespace ::rtl;
      37                 :            : using namespace ::cppu;
      38                 :            : using namespace ::com::sun::star::uno;
      39                 :            : using namespace ::com::sun::star::lang;
      40                 :            : using namespace ::com::sun::star::registry;
      41                 :            : 
      42                 :            : namespace swf {
      43                 :            : extern OUString FlashExportFilter_getImplementationName() throw ( RuntimeException );
      44                 :            : extern sal_Bool SAL_CALL FlashExportFilter_supportsService( const OUString& ServiceName ) throw ( RuntimeException );
      45                 :            : extern Sequence< OUString > SAL_CALL FlashExportFilter_getSupportedServiceNames()  throw ( RuntimeException );
      46                 :            : extern Reference< XInterface > SAL_CALL FlashExportFilter_createInstance( const Reference< XMultiServiceFactory > & rSMgr) throw ( Exception );
      47                 :            : }
      48                 :            : 
      49                 :            : extern rtl::OUString SWFDialog_getImplementationName () throw (com::sun::star::uno::RuntimeException);
      50                 :            : extern com::sun::star::uno::Sequence< rtl::OUString > SAL_CALL SWFDialog_getSupportedServiceNames() throw (com::sun::star::uno::RuntimeException);
      51                 :            : extern com::sun::star::uno::Reference< com::sun::star::uno::XInterface > SAL_CALL SWFDialog_createInstance( const com::sun::star::uno::Reference< com::sun::star::lang::XMultiServiceFactory > & rSMgr) throw( com::sun::star::uno::Exception );
      52                 :            : 
      53                 :            : using namespace ::swf;
      54                 :            : 
      55                 :            : extern "C"
      56                 :            : {
      57                 :          0 : SAL_DLLPUBLIC_EXPORT void * SAL_CALL component_getFactory(
      58                 :            :     const sal_Char * pImplName, void * pServiceManager, void * /* pRegistryKey */ )
      59                 :            : {
      60                 :          0 :     void * pRet = 0;
      61                 :            : 
      62                 :          0 :     if( pServiceManager )
      63                 :            :     {
      64                 :          0 :         Reference< XSingleServiceFactory > xFactory;
      65                 :            : 
      66                 :          0 :         OUString implName = OUString::createFromAscii( pImplName );
      67                 :          0 :         if ( implName.equals(FlashExportFilter_getImplementationName()) )
      68                 :            :         {
      69                 :            :             xFactory = createSingleFactory(
      70                 :            :                 reinterpret_cast< XMultiServiceFactory * >( pServiceManager ),
      71                 :            :                 OUString::createFromAscii( pImplName ),
      72                 :          0 :                 FlashExportFilter_createInstance, FlashExportFilter_getSupportedServiceNames() );
      73                 :            : 
      74                 :            :         }
      75                 :          0 :         else if ( implName.equals(SWFDialog_getImplementationName()) )
      76                 :            :         {
      77                 :            :             xFactory = createSingleFactory(
      78                 :            :                 reinterpret_cast< XMultiServiceFactory * >( pServiceManager ),
      79                 :            :                 OUString::createFromAscii( pImplName ),
      80                 :          0 :                 SWFDialog_createInstance, SWFDialog_getSupportedServiceNames() );
      81                 :            :         }
      82                 :            : 
      83                 :          0 :         if (xFactory.is())
      84                 :            :         {
      85                 :          0 :             xFactory->acquire();
      86                 :          0 :             pRet = xFactory.get();
      87                 :          0 :         }
      88                 :            :     }
      89                 :            : 
      90                 :          0 :     return pRet;
      91                 :            : }
      92                 :            : }
      93                 :            : 
      94                 :            : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10