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 #include <SwXMLBlockImport.hxx>
21 #include <SwXMLTextBlocks.hxx>
22 #include <xmloff/xmlictxt.hxx>
23 #include <unotools/charclass.hxx>
24 #include <swtypes.hxx>
27 #if __has_warning("-Wdeprecated-register")
28 #pragma GCC diagnostic push
29 #pragma GCC diagnostic ignored "-Wdeprecated-register"
34 #if __has_warning("-Wdeprecated-register")
35 #pragma GCC diagnostic pop
39 using namespace ::com::sun::star::uno
;
40 using namespace ::com::sun::star
;
41 using namespace css::xml::sax
;
43 class SwXMLBlockListImport
;
44 class SwXMLTextBlockImport
;
48 class SwXMLBlockListContext
: public SvXMLImportContext
51 SwXMLBlockListImport
& m_rLocalRef
;
54 SwXMLBlockListContext( SwXMLBlockListImport
& rImport
,
55 const css::uno::Reference
< css::xml::sax::XFastAttributeList
> & xAttrList
);
57 virtual css::uno::Reference
< css::xml::sax::XFastContextHandler
> SAL_CALL
createFastChildContext(
58 sal_Int32 Element
, const css::uno::Reference
< css::xml::sax::XFastAttributeList
> & xAttrList
) override
;
61 class SwXMLBlockContext
: public SvXMLImportContext
64 SwXMLBlockContext( SwXMLBlockListImport
& rImport
,
65 const css::uno::Reference
< css::xml::sax::XFastAttributeList
> & xAttrList
);
68 class SwXMLTextBlockDocumentContext
: public SvXMLImportContext
71 SwXMLTextBlockImport
& m_rLocalRef
;
74 SwXMLTextBlockDocumentContext( SwXMLTextBlockImport
& rImport
);
76 virtual css::uno::Reference
< css::xml::sax::XFastContextHandler
> SAL_CALL
createFastChildContext(
77 sal_Int32 Element
, const css::uno::Reference
< css::xml::sax::XFastAttributeList
> & xAttrList
) override
;
80 class SwXMLTextBlockBodyContext
: public SvXMLImportContext
83 SwXMLTextBlockImport
& m_rLocalRef
;
86 SwXMLTextBlockBodyContext( SwXMLTextBlockImport
& rImport
);
88 virtual css::uno::Reference
< css::xml::sax::XFastContextHandler
> SAL_CALL
createFastChildContext(
89 sal_Int32
, const css::uno::Reference
< css::xml::sax::XFastAttributeList
> & xAttrList
) override
;
92 class SwXMLTextBlockTextContext
: public SvXMLImportContext
95 SwXMLTextBlockImport
& m_rLocalRef
;
98 SwXMLTextBlockTextContext( SwXMLTextBlockImport
& rImport
);
100 virtual css::uno::Reference
< css::xml::sax::XFastContextHandler
> SAL_CALL
createFastChildContext(
102 const css::uno::Reference
< css::xml::sax::XFastAttributeList
> & xAttrList
) override
;
105 class SwXMLTextBlockParContext
: public SvXMLImportContext
108 SwXMLTextBlockImport
& m_rLocalRef
;
111 SwXMLTextBlockParContext( SwXMLTextBlockImport
& rImport
);
113 virtual void SAL_CALL
characters( const OUString
& aChars
) override
;
115 virtual ~SwXMLTextBlockParContext() override
;
120 SwXMLTextBlockTokenHandler::SwXMLTextBlockTokenHandler()
124 SwXMLTextBlockTokenHandler::~SwXMLTextBlockTokenHandler()
128 sal_Int32 SAL_CALL
SwXMLTextBlockTokenHandler::getTokenFromUTF8( const Sequence
< sal_Int8
>& Identifier
)
130 return getTokenDirect( reinterpret_cast< const char* >( Identifier
.getConstArray() ), Identifier
.getLength() );
133 Sequence
< sal_Int8
> SAL_CALL
SwXMLTextBlockTokenHandler::getUTF8Identifier( sal_Int32
)
135 return Sequence
< sal_Int8
>();
138 sal_Int32
SwXMLTextBlockTokenHandler::getTokenDirect( const char *pTag
, sal_Int32 nLength
) const
141 nLength
= strlen( pTag
);
142 const struct xmltoken
* pToken
= TextBlockTokens::in_word_set( pTag
, nLength
);
143 return pToken
? pToken
->nToken
: XML_TOKEN_INVALID
;
146 SwXMLBlockListTokenHandler::SwXMLBlockListTokenHandler()
150 SwXMLBlockListTokenHandler::~SwXMLBlockListTokenHandler()
154 sal_Int32 SAL_CALL
SwXMLBlockListTokenHandler::getTokenFromUTF8( const Sequence
< sal_Int8
>& Identifier
)
156 return getTokenDirect( reinterpret_cast< const char* >( Identifier
.getConstArray() ), Identifier
.getLength() );
159 Sequence
< sal_Int8
> SAL_CALL
SwXMLBlockListTokenHandler::getUTF8Identifier( sal_Int32
)
161 return Sequence
< sal_Int8
>();
164 sal_Int32
SwXMLBlockListTokenHandler::getTokenDirect( const char *pTag
, sal_Int32 nLength
) const
167 nLength
= strlen( pTag
);
168 const struct xmltoken
* pToken
= BlockListTokens::in_word_set( pTag
, nLength
);
169 return pToken
? pToken
->nToken
: XML_TOKEN_INVALID
;
172 SwXMLBlockListContext::SwXMLBlockListContext(
173 SwXMLBlockListImport
& rImport
, const uno::Reference
<xml::sax::XFastAttributeList
>& xAttrList
)
174 : SvXMLImportContext(rImport
)
175 , m_rLocalRef(rImport
)
177 if( xAttrList
.is() && xAttrList
->hasAttribute( SwXMLBlockListToken::LIST_NAME
) )
178 rImport
.getBlockList().SetName( xAttrList
->getValue( SwXMLBlockListToken::LIST_NAME
) );
181 uno::Reference
< ::xml::sax::XFastContextHandler
> SAL_CALL
182 SwXMLBlockListContext::createFastChildContext( sal_Int32 Element
,
183 const uno::Reference
< xml::sax::XFastAttributeList
> & xAttrList
)
185 if ( Element
== SwXMLBlockListToken::BLOCK
)
186 return new SwXMLBlockContext(m_rLocalRef
, xAttrList
);
190 SwXMLBlockContext::SwXMLBlockContext(
191 SwXMLBlockListImport
& rImport
,
192 const uno::Reference
< xml::sax::XFastAttributeList
> & xAttrList
) :
193 SvXMLImportContext( rImport
)
195 static const CharClass
& rCC
= GetAppCharClass();
196 OUString aShort
, aLong
, aPackageName
;
197 bool bTextOnly
= false;
200 if( xAttrList
->hasAttribute( SwXMLBlockListToken::ABBREVIATED_NAME
) )
201 aShort
= rCC
.uppercase( xAttrList
->getValue( SwXMLBlockListToken::ABBREVIATED_NAME
) );
202 if( xAttrList
->hasAttribute( SwXMLBlockListToken::NAME
) )
203 aLong
= xAttrList
->getValue( SwXMLBlockListToken::NAME
);
204 if( xAttrList
->hasAttribute( SwXMLBlockListToken::PACKAGE_NAME
) )
205 aPackageName
= xAttrList
->getValue( SwXMLBlockListToken::PACKAGE_NAME
);
206 if( xAttrList
->hasAttribute( SwXMLBlockListToken::UNFORMATTED_TEXT
) )
208 OUString
rAttrValue( xAttrList
->getValue( SwXMLBlockListToken::UNFORMATTED_TEXT
) );
209 if( IsXMLToken( rAttrValue
, XML_TRUE
) )
213 if (aShort
.isEmpty() || aLong
.isEmpty() || aPackageName
.isEmpty())
215 rImport
.getBlockList().AddName( aShort
, aLong
, aPackageName
, bTextOnly
);
218 SwXMLTextBlockDocumentContext::SwXMLTextBlockDocumentContext(SwXMLTextBlockImport
& rImport
)
219 : SvXMLImportContext(rImport
)
220 , m_rLocalRef(rImport
)
224 uno::Reference
< ::xml::sax::XFastContextHandler
> SAL_CALL
225 SwXMLTextBlockDocumentContext::createFastChildContext( sal_Int32 Element
,
226 const uno::Reference
< xml::sax::XFastAttributeList
> & /*xAttrList*/ )
228 if ( Element
== SwXMLTextBlockToken::OFFICE_BODY
)
229 return new SwXMLTextBlockBodyContext(m_rLocalRef
);
233 SwXMLTextBlockTextContext::SwXMLTextBlockTextContext(SwXMLTextBlockImport
& rImport
)
234 : SvXMLImportContext(rImport
)
235 , m_rLocalRef(rImport
)
239 uno::Reference
< xml::sax::XFastContextHandler
> SAL_CALL
240 SwXMLTextBlockTextContext::createFastChildContext( sal_Int32 Element
,
241 const uno::Reference
< xml::sax::XFastAttributeList
> & /*xAttrList*/ )
243 if ( Element
== SwXMLTextBlockToken::TEXT_P
)
244 return new SwXMLTextBlockParContext(m_rLocalRef
);
248 SwXMLTextBlockBodyContext::SwXMLTextBlockBodyContext(SwXMLTextBlockImport
& rImport
)
249 : SvXMLImportContext(rImport
)
250 , m_rLocalRef(rImport
)
254 uno::Reference
< xml::sax::XFastContextHandler
> SAL_CALL
255 SwXMLTextBlockBodyContext::createFastChildContext( sal_Int32 Element
,
256 const uno::Reference
< xml::sax::XFastAttributeList
> & /*xAttrList*/ )
258 if( Element
== SwXMLTextBlockToken::OFFICE_TEXT
)
259 return new SwXMLTextBlockTextContext(m_rLocalRef
);
260 else if( Element
== SwXMLTextBlockToken::TEXT_P
)
261 return new SwXMLTextBlockParContext(m_rLocalRef
);
265 SwXMLTextBlockParContext::SwXMLTextBlockParContext(SwXMLTextBlockImport
& rImport
)
266 : SvXMLImportContext(rImport
)
267 , m_rLocalRef(rImport
)
271 void SAL_CALL
SwXMLTextBlockParContext::characters( const OUString
& aChars
)
273 m_rLocalRef
.m_rText
+= aChars
;
276 SwXMLTextBlockParContext::~SwXMLTextBlockParContext()
278 if (m_rLocalRef
.m_bTextOnly
)
279 m_rLocalRef
.m_rText
+= "\015";
282 if (!m_rLocalRef
.m_rText
.endsWith(" "))
283 m_rLocalRef
.m_rText
+= " ";
287 // SwXMLBlockListImport //////////////////////////////
288 SwXMLBlockListImport::SwXMLBlockListImport(
289 const uno::Reference
< uno::XComponentContext
>& rContext
,
290 SwXMLTextBlocks
&rBlocks
)
291 : SvXMLImport( rContext
, "", SvXMLImportFlags::NONE
),
292 m_rBlockList (rBlocks
)
296 SwXMLBlockListImport::~SwXMLBlockListImport()
301 SvXMLImportContext
* SwXMLBlockListImport::CreateFastContext( sal_Int32 Element
,
302 const uno::Reference
< xml::sax::XFastAttributeList
> & xAttrList
)
304 if( Element
== SwXMLBlockListToken::BLOCK_LIST
)
305 return new SwXMLBlockListContext( *this, xAttrList
);
309 SwXMLTextBlockImport::SwXMLTextBlockImport(
310 const uno::Reference
< uno::XComponentContext
>& rContext
,
313 : SvXMLImport(rContext
, "", SvXMLImportFlags::ALL
),
314 m_bTextOnly ( bNewTextOnly
),
319 SwXMLTextBlockImport::~SwXMLTextBlockImport()
324 SvXMLImportContext
* SwXMLTextBlockImport::CreateFastContext( sal_Int32 Element
,
325 const uno::Reference
< xml::sax::XFastAttributeList
> & /*xAttrList*/ )
327 if( Element
== SwXMLTextBlockToken::OFFICE_DOCUMENT
||
328 Element
== SwXMLTextBlockToken::OFFICE_DOCUMENT_CONTENT
)
329 return new SwXMLTextBlockDocumentContext( *this );
333 void SAL_CALL
SwXMLTextBlockImport::endDocument()
337 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */