Bump version to 6.4-15
[LibreOffice.git] / include / xmloff / fasttokenhandler.hxx
blobcad4a5638933ffeb18580c9f75fbe831d6b169c3
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/.
8 */
10 #ifndef INCLUDED_XMLOFF_FASTTOKENHANDLER_HXX
11 #define INCLUDED_XMLOFF_FASTTOKENHANDLER_HXX
13 #include <com/sun/star/xml/sax/XFastTokenHandler.hpp>
14 #include <cppuhelper/implbase.hxx>
15 #include <sax/fastattribs.hxx>
16 #include <xmloff/token/tokens.hxx>
17 #include <rtl/instance.hxx>
18 #include <sal/log.hxx>
19 #include <xmloff/dllapi.h>
21 namespace xmloff {
22 namespace token {
24 class TokenMap
26 public:
27 explicit TokenMap();
28 ~TokenMap();
30 /** Returns the UTF-8 name of the passed token identifier as byte sequence. */
31 css::uno::Sequence< sal_Int8 > const & getUtf8TokenName( sal_Int32 nToken ) const
33 SAL_WARN_IF(nToken < 0 || nToken >= XML_TOKEN_COUNT, "xmloff", "Wrong nToken parameter");
34 if( 0 <= nToken && nToken < XML_TOKEN_COUNT )
35 return maTokenNamesUtf8[ nToken ];
36 return EMPTY_BYTE_SEQ;
39 const OUString& getTokenName( sal_Int32 nToken ) const
41 SAL_WARN_IF(nToken < 0 || nToken >= XML_TOKEN_COUNT, "xmloff", "Wrong nToken parameter");
42 if( 0 <= nToken && nToken < XML_TOKEN_COUNT )
43 return maTokenNames[ nToken ];
44 return EMPTY_STRING;
47 /** Returns the token identifier for the passed UTF-8 token name. */
48 static sal_Int32 getTokenFromUtf8( const css::uno::Sequence< sal_Int8 >& rUtf8Name )
50 return getTokenFromUTF8( reinterpret_cast< const char* >(
51 rUtf8Name.getConstArray() ), rUtf8Name.getLength() );
54 /** Returns the token identifier for a UTF-8 string */
55 static sal_Int32 getTokenFromUTF8( const char *pToken, sal_Int32 nLength )
57 return getTokenPerfectHash( pToken, nLength );
60 private:
61 static sal_Int32 getTokenPerfectHash( const char *pToken, sal_Int32 nLength );
63 std::vector< css::uno::Sequence< sal_Int8 > > maTokenNamesUtf8;
64 std::vector< OUString > maTokenNames;
66 static const css::uno::Sequence< sal_Int8 > EMPTY_BYTE_SEQ;
67 static const OUString EMPTY_STRING;
70 struct StaticTokenMap : public rtl::Static< TokenMap, StaticTokenMap > {};
72 class XMLOFF_DLLPUBLIC FastTokenHandler final : public cppu::WeakImplHelper<
73 css::xml::sax::XFastTokenHandler >,
74 public sax_fastparser::FastTokenHandlerBase
76 public:
77 explicit FastTokenHandler();
78 virtual ~FastTokenHandler() override;
80 // XFastTokenHandler
81 virtual css::uno::Sequence< sal_Int8 > SAL_CALL getUTF8Identifier( sal_Int32 nToken ) override;
82 virtual sal_Int32 SAL_CALL getTokenFromUTF8( const css::uno::Sequence< sal_Int8 >& Identifier ) override;
84 const OUString & getIdentifier( sal_Int32 nToken ) const;
86 // Much faster direct C++ shortcut to the method that matters
87 virtual sal_Int32 getTokenDirect( const char *pToken, sal_Int32 nLength ) const override;
89 private:
90 TokenMap& mrTokenMap;
93 } // namespace token
94 } // namespace xmloff
96 #endif
98 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */