1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 #ifndef INCLUDED_XMLOFF_XMLICTXT_HXX
21 #define INCLUDED_XMLOFF_XMLICTXT_HXX
23 #include <sal/config.h>
24 #include <xmloff/dllapi.h>
25 #include <sal/log.hxx>
26 #include <sal/types.h>
27 #include <com/sun/star/xml/sax/XFastContextHandler.hpp>
28 #include <com/sun/star/lang/XTypeProvider.hpp>
29 #include <rtl/ustring.hxx>
30 #include <xmloff/namespacemap.hxx>
33 namespace com::sun::star::xml::sax
{ class XAttributeList
; }
37 class SvXMLImportContext
;
39 typedef rtl::Reference
<SvXMLImportContext
> SvXMLImportContextRef
;
42 This class deliberately does not support XWeak, to improve performance when loading
45 class XMLOFF_DLLPUBLIC SvXMLImportContext
: public css::xml::sax::XFastContextHandler
,
46 public css::lang::XTypeProvider
49 friend class SvXMLImport
;
51 SvXMLImport
& mrImport
;
52 oslInterlockedCount m_nRefCount
;
53 std::optional
<SvXMLNamespaceMap
> m_xRewindMap
;
55 SAL_DLLPRIVATE
std::optional
<SvXMLNamespaceMap
> TakeRewindMap() { return std::move(m_xRewindMap
); }
56 SAL_DLLPRIVATE
void PutRewindMap(std::optional
<SvXMLNamespaceMap
>&& p
) { m_xRewindMap
= std::move(p
); }
60 SvXMLImport
& GetImport() { return mrImport
; }
61 const SvXMLImport
& GetImport() const { return mrImport
; }
65 /** A contexts constructor does anything that is required if an element
66 * starts. Namespace processing has been done already.
67 * Note that virtual methods cannot be used inside constructors. Use
68 * StartElement instead if this is required. */
69 SvXMLImportContext( SvXMLImport
& rImport
);
71 /** A contexts destructor does anything that is required if an element
72 * ends. By default, nothing is done.
73 * Note that virtual methods cannot be used inside destructors. Use
74 * EndElement instead if this is required. */
75 virtual ~SvXMLImportContext();
77 // css::xml::sax::XFastContextHandler:
78 virtual void SAL_CALL
startFastElement (sal_Int32 Element
,
79 const css::uno::Reference
< css::xml::sax::XFastAttributeList
>& Attribs
) override
;
81 virtual void SAL_CALL
startUnknownElement(const OUString
& Namespace
, const OUString
& Name
,
82 const css::uno::Reference
< css::xml::sax::XFastAttributeList
> & Attribs
) override
;
84 /** endFastElement is called before a context will be destructed, but
85 * after an elements context has been parsed. It may be used for actions
86 * that require virtual methods. The default is to do nothing. */
87 virtual void SAL_CALL
endFastElement(sal_Int32 Element
) override
;
89 virtual void SAL_CALL
endUnknownElement(const OUString
& Namespace
, const OUString
& Name
) override
;
91 virtual css::uno::Reference
< XFastContextHandler
> SAL_CALL
createFastChildContext(sal_Int32 Element
,
92 const css::uno::Reference
<css::xml::sax::XFastAttributeList
>& Attribs
) override
;
94 virtual css::uno::Reference
< css::xml::sax::XFastContextHandler
> SAL_CALL
createUnknownChildContext(
95 const OUString
& Namespace
, const OUString
& Name
,
96 const css::uno::Reference
< css::xml::sax::XFastAttributeList
> & Attribs
) override
;
98 /** This method is called for all characters that are contained in the
99 * current element. The default is to ignore them. */
100 virtual void SAL_CALL
characters(const OUString
& aChars
) override
;
103 virtual css::uno::Any SAL_CALL
queryInterface( const css::uno::Type
& aType
) final override
;
104 virtual void SAL_CALL
acquire() noexcept final override
105 { osl_atomic_increment(&m_nRefCount
); }
106 virtual void SAL_CALL
release() noexcept final override
107 { if (osl_atomic_decrement(&m_nRefCount
) == 0) delete this; }
110 virtual css::uno::Sequence
< css::uno::Type
> SAL_CALL
getTypes( ) final override
;
111 virtual css::uno::Sequence
< sal_Int8
> SAL_CALL
getImplementationId( ) final override
;
114 #define XMLOFF_WARN_UNKNOWN(area, rIter) \
115 SAL_WARN(area, "unknown attribute " << SvXMLImport::getPrefixAndNameFromToken(rIter.getToken()) << " value=" << rIter.toString());
117 #define XMLOFF_WARN_UNKNOWN_ATTR(area, token, value) \
118 SAL_WARN(area, "unknown attribute " << SvXMLImport::getPrefixAndNameFromToken(token) << "=" << value);
120 #define XMLOFF_WARN_UNKNOWN_ELEMENT(area, token) \
121 SAL_WARN(area, "unknown element " << SvXMLImport::getPrefixAndNameFromToken(token));
123 #endif // INCLUDED_XMLOFF_XMLICTXT_HXX
125 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */