bump product version to 4.1.6.2
[LibreOffice.git] / oox / source / core / fasttokenhandler.cxx
blobc71f966b587cc09b28f488775e2e2172efe93686
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #include "oox/core/fasttokenhandler.hxx"
22 #include <com/sun/star/uno/XComponentContext.hpp>
23 #include "oox/helper/helper.hxx"
24 #include "oox/token/tokenmap.hxx"
26 namespace oox {
27 namespace core {
29 // ============================================================================
31 using namespace ::com::sun::star::uno;
34 // ============================================================================
36 OUString SAL_CALL FastTokenHandler_getImplementationName()
38 return OUString( "com.sun.star.comp.oox.core.FastTokenHandler" );
41 Sequence< OUString > SAL_CALL FastTokenHandler_getSupportedServiceNames()
43 Sequence< OUString > aServiceNames( 1 );
44 aServiceNames[ 0 ] = "com.sun.star.xml.sax.FastTokenHandler";
45 return aServiceNames;
48 Reference< XInterface > SAL_CALL FastTokenHandler_createInstance( const Reference< XComponentContext >& /*rxContext*/ ) throw (Exception)
50 return static_cast< ::cppu::OWeakObject* >( new FastTokenHandler );
53 // ============================================================================
55 FastTokenHandler::FastTokenHandler() :
56 mrTokenMap( StaticTokenMap::get() )
60 FastTokenHandler::~FastTokenHandler()
64 // XServiceInfo
66 OUString SAL_CALL FastTokenHandler::getImplementationName() throw (RuntimeException)
68 return FastTokenHandler_getImplementationName();
71 sal_Bool SAL_CALL FastTokenHandler::supportsService( const OUString& rServiceName ) throw (RuntimeException)
73 Sequence< OUString > aServiceNames = FastTokenHandler_getSupportedServiceNames();
74 for( sal_Int32 nIndex = 0, nLength = aServiceNames.getLength(); nIndex < nLength; ++nIndex )
75 if( aServiceNames[ nIndex ] == rServiceName )
76 return sal_True;
77 return sal_False;
80 Sequence< OUString > SAL_CALL FastTokenHandler::getSupportedServiceNames() throw (RuntimeException)
82 return FastTokenHandler_getSupportedServiceNames();
85 // XFastTokenHandler
87 sal_Int32 FastTokenHandler::getToken( const OUString& rIdentifier ) throw( RuntimeException )
89 return mrTokenMap.getTokenFromUnicode( rIdentifier );
92 OUString FastTokenHandler::getIdentifier( sal_Int32 nToken ) throw( RuntimeException )
94 return mrTokenMap.getUnicodeTokenName( nToken );
97 Sequence< sal_Int8 > FastTokenHandler::getUTF8Identifier( sal_Int32 nToken ) throw( RuntimeException )
99 return mrTokenMap.getUtf8TokenName( nToken );
102 sal_Int32 FastTokenHandler::getTokenFromUTF8( const Sequence< sal_Int8 >& rIdentifier ) throw( RuntimeException )
104 return mrTokenMap.getTokenFromUtf8( rIdentifier );
107 // ============================================================================
109 } // namespace core
110 } // namespace oox
112 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */