LCOV - code coverage report
Current view: top level - oox/source/core - fasttokenhandler.cxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 19 25 76.0 %
Date: 2014-11-03 Functions: 9 12 75.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 "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             : #include <cppuhelper/supportsservice.hxx>
      26             : 
      27             : #include <services.hxx>
      28             : 
      29             : namespace oox {
      30             : namespace core {
      31             : 
      32             : using namespace ::com::sun::star::uno;
      33             : 
      34         144 : OUString SAL_CALL FastTokenHandler_getImplementationName()
      35             : {
      36         144 :     return OUString( "com.sun.star.comp.oox.core.FastTokenHandler" );
      37             : }
      38             : 
      39          26 : Sequence< OUString > SAL_CALL FastTokenHandler_getSupportedServiceNames()
      40             : {
      41          26 :     Sequence< OUString > aServiceNames( 1 );
      42          26 :     aServiceNames[ 0 ] = "com.sun.star.xml.sax.FastTokenHandler";
      43          26 :     return aServiceNames;
      44             : }
      45             : 
      46        7448 : Reference< XInterface > SAL_CALL FastTokenHandler_createInstance( const Reference< XComponentContext >& /*rxContext*/ ) throw (Exception)
      47             : {
      48        7448 :     return static_cast< ::cppu::OWeakObject* >( new FastTokenHandler );
      49             : }
      50             : 
      51       60416 : FastTokenHandler::FastTokenHandler() :
      52       60416 :     mrTokenMap( StaticTokenMap::get() )
      53             : {
      54       60416 : }
      55             : 
      56      120832 : FastTokenHandler::~FastTokenHandler()
      57             : {
      58      120832 : }
      59             : 
      60             : // XServiceInfo
      61           0 : OUString SAL_CALL FastTokenHandler::getImplementationName() throw (RuntimeException, std::exception)
      62             : {
      63           0 :     return FastTokenHandler_getImplementationName();
      64             : }
      65             : 
      66           0 : sal_Bool SAL_CALL FastTokenHandler::supportsService( const OUString& rServiceName ) throw (RuntimeException, std::exception)
      67             : {
      68           0 :     return cppu::supportsService(this, rServiceName);
      69             : }
      70             : 
      71           0 : Sequence< OUString > SAL_CALL FastTokenHandler::getSupportedServiceNames() throw (RuntimeException, std::exception)
      72             : {
      73           0 :     return FastTokenHandler_getSupportedServiceNames();
      74             : }
      75             : 
      76     4478694 : Sequence< sal_Int8 > FastTokenHandler::getUTF8Identifier( sal_Int32 nToken ) throw( RuntimeException, std::exception )
      77             : {
      78     4478694 :     return mrTokenMap.getUtf8TokenName( nToken );
      79             : }
      80             : 
      81     1453542 : sal_Int32 FastTokenHandler::getTokenFromUTF8( const Sequence< sal_Int8 >& rIdentifier ) throw( RuntimeException, std::exception )
      82             : {
      83     1453542 :     return mrTokenMap.getTokenFromUtf8( rIdentifier );
      84             : }
      85             : 
      86    10524033 : sal_Int32 FastTokenHandler::getTokenDirect( const char *pToken, sal_Int32 nLength ) const
      87             : {
      88    10524033 :     return mrTokenMap.getTokenFromUTF8( pToken, nLength );
      89             : }
      90             : 
      91             : } // namespace core
      92             : } // namespace oox
      93             : 
      94             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10