LCOV - code coverage report
Current view: top level - usr/local/src/libreoffice/oox/source/core - fasttokenhandler.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 17 31 54.8 %
Date: 2013-07-09 Functions: 8 13 61.5 %
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 "oox/core/fasttokenhandler.hxx"
      21             : 
      22             : #include <com/sun/star/uno/XComponentContext.hpp>
      23             : #include "oox/helper/helper.hxx"
      24             : #include "oox/token/tokenmap.hxx"
      25             : 
      26             : namespace oox {
      27             : namespace core {
      28             : 
      29             : // ============================================================================
      30             : 
      31             : using namespace ::com::sun::star::uno;
      32             : 
      33             : 
      34             : // ============================================================================
      35             : 
      36          25 : OUString SAL_CALL FastTokenHandler_getImplementationName()
      37             : {
      38          25 :     return OUString( "com.sun.star.comp.oox.core.FastTokenHandler" );
      39             : }
      40             : 
      41           3 : Sequence< OUString > SAL_CALL FastTokenHandler_getSupportedServiceNames()
      42             : {
      43           3 :     Sequence< OUString > aServiceNames( 1 );
      44           3 :     aServiceNames[ 0 ] = "com.sun.star.xml.sax.FastTokenHandler";
      45           3 :     return aServiceNames;
      46             : }
      47             : 
      48         343 : Reference< XInterface > SAL_CALL FastTokenHandler_createInstance( const Reference< XComponentContext >& /*rxContext*/ ) throw (Exception)
      49             : {
      50         343 :     return static_cast< ::cppu::OWeakObject* >( new FastTokenHandler );
      51             : }
      52             : 
      53             : // ============================================================================
      54             : 
      55         896 : FastTokenHandler::FastTokenHandler() :
      56         896 :     mrTokenMap( StaticTokenMap::get() )
      57             : {
      58         896 : }
      59             : 
      60        1792 : FastTokenHandler::~FastTokenHandler()
      61             : {
      62        1792 : }
      63             : 
      64             : // XServiceInfo
      65             : 
      66           0 : OUString SAL_CALL FastTokenHandler::getImplementationName() throw (RuntimeException)
      67             : {
      68           0 :     return FastTokenHandler_getImplementationName();
      69             : }
      70             : 
      71           0 : sal_Bool SAL_CALL FastTokenHandler::supportsService( const OUString& rServiceName ) throw (RuntimeException)
      72             : {
      73           0 :     Sequence< OUString > aServiceNames = FastTokenHandler_getSupportedServiceNames();
      74           0 :     for( sal_Int32 nIndex = 0, nLength = aServiceNames.getLength(); nIndex < nLength; ++nIndex )
      75           0 :         if( aServiceNames[ nIndex ] == rServiceName )
      76           0 :             return sal_True;
      77           0 :     return sal_False;
      78             : }
      79             : 
      80           0 : Sequence< OUString > SAL_CALL FastTokenHandler::getSupportedServiceNames() throw (RuntimeException)
      81             : {
      82           0 :     return FastTokenHandler_getSupportedServiceNames();
      83             : }
      84             : 
      85             : // XFastTokenHandler
      86             : 
      87           0 : sal_Int32 FastTokenHandler::getToken( const OUString& rIdentifier ) throw( RuntimeException )
      88             : {
      89           0 :     return mrTokenMap.getTokenFromUnicode( rIdentifier );
      90             : }
      91             : 
      92           0 : OUString FastTokenHandler::getIdentifier( sal_Int32 nToken ) throw( RuntimeException )
      93             : {
      94           0 :     return mrTokenMap.getUnicodeTokenName( nToken );
      95             : }
      96             : 
      97       58245 : Sequence< sal_Int8 > FastTokenHandler::getUTF8Identifier( sal_Int32 nToken ) throw( RuntimeException )
      98             : {
      99       58245 :     return mrTokenMap.getUtf8TokenName( nToken );
     100             : }
     101             : 
     102       65362 : sal_Int32 FastTokenHandler::getTokenFromUTF8( const Sequence< sal_Int8 >& rIdentifier ) throw( RuntimeException )
     103             : {
     104       65362 :     return mrTokenMap.getTokenFromUtf8( rIdentifier );
     105             : }
     106             : 
     107             : // ============================================================================
     108             : 
     109             : } // namespace core
     110             : } // namespace oox
     111             : 
     112             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10