1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: FastTokenHandlerService.hxx,v $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 #ifndef OOX_SHAPE_FASTTOKENHANDLERSERVICE_HXX
32 #define OOX_SHAPE_FASTTOKENHANDLERSERVICE_HXX
34 #include <sal/config.h>
35 #include <cppuhelper/factory.hxx>
36 #include <cppuhelper/implementationentry.hxx>
37 #include <cppuhelper/implbase2.hxx>
38 #include <com/sun/star/lang/XServiceInfo.hpp>
39 #include "oox/core/fasttokenhandler.hxx"
41 namespace css
= ::com::sun::star
;
46 class FastTokenHandlerService
:
47 public ::cppu::WeakImplHelper2
<
48 css::lang::XServiceInfo
,
49 css::xml::sax::XFastTokenHandler
>
52 explicit FastTokenHandlerService(css::uno::Reference
< css::uno::XComponentContext
> const & context
);
54 // ::com::sun::star::lang::XServiceInfo:
55 virtual ::rtl::OUString SAL_CALL
getImplementationName() throw (css::uno::RuntimeException
);
56 virtual ::sal_Bool SAL_CALL
supportsService(const ::rtl::OUString
& ServiceName
) throw (css::uno::RuntimeException
);
57 virtual css::uno::Sequence
< ::rtl::OUString
> SAL_CALL
getSupportedServiceNames() throw (css::uno::RuntimeException
);
59 // ::com::sun::star::xml::sax::XFastTokenHandler:
60 virtual ::sal_Int32 SAL_CALL
getToken(const ::rtl::OUString
& Identifier
) throw (css::uno::RuntimeException
);
61 virtual ::rtl::OUString SAL_CALL
getIdentifier(::sal_Int32 Token
) throw (css::uno::RuntimeException
);
62 virtual ::com::sun::star::uno::Sequence
< ::sal_Int8
> SAL_CALL
getUTF8Identifier( ::sal_Int32 Token
) throw (::com::sun::star::uno::RuntimeException
);
63 virtual ::sal_Int32 SAL_CALL
getTokenFromUTF8(const css::uno::Sequence
< ::sal_Int8
> & Identifier
) throw (css::uno::RuntimeException
);
66 FastTokenHandlerService(FastTokenHandlerService
&); // not defined
67 void operator =(FastTokenHandlerService
&); // not defined
69 virtual ~FastTokenHandlerService() {}
71 css::uno::Reference
< css::uno::XComponentContext
> m_xContext
;
72 ::oox::core::FastTokenHandler mFastTokenHandler
;
75 ::rtl::OUString SAL_CALL
FastTokenHandlerService_getImplementationName();
77 css::uno::Sequence
< ::rtl::OUString
> SAL_CALL
FastTokenHandlerService_getSupportedServiceNames();
79 css::uno::Reference
< css::uno::XInterface
> SAL_CALL
_FastTokenHandlerService_create(
80 const css::uno::Reference
< css::uno::XComponentContext
> & context
)
81 SAL_THROW((css::uno::Exception
));
84 #endif // OOX_SHAPE_FAST_TOKEN_HANDLER_SERVICE_HXX