LibreOffice Module xmloff (master) 1
XMLSectionFootnoteConfigImport.cxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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 *
9 * This file incorporates work covered by the following license notice:
10 *
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 .
18 */
19
21
22#include <rtl/ustring.hxx>
23#include <com/sun/star/uno/Reference.h>
24#include <com/sun/star/xml/sax/XAttributeList.hpp>
25#include <com/sun/star/style/NumberingType.hpp>
26#include <sal/log.hxx>
28#include <utility>
29#include <xmloff/xmlimp.hxx>
30#include <xmloff/xmltoken.hxx>
31#include <xmloff/xmluconv.hxx>
32#include <xmloff/xmlprmap.hxx>
35#include <xmloff/maptype.hxx>
36#include <xmloff/txtprmap.hxx>
37
38#include <vector>
39
40
41using namespace ::xmloff::token;
42using namespace ::com::sun::star::style;
43
44using ::std::vector;
45using ::com::sun::star::uno::Any;
46using ::com::sun::star::uno::Reference;
47
48
50 SvXMLImport& rImport,
51 sal_Int32 /*nElement*/,
52 vector<XMLPropertyState> & rProps,
54 SvXMLImportContext(rImport),
55 rProperties(rProps),
56 rMapper(std::move(xMapperRef))
57{
58}
59
61{
62}
63
65 sal_Int32 /*nElement*/,
66 const Reference<css::xml::sax::XFastAttributeList> & xAttrList)
67{
68 bool bNumOwn = false;
69 bool bNumRestart = false;
70 bool bEndnote = false;
71 sal_Int16 nNumRestartAt = 0;
72 OUString sNumPrefix;
73 OUString sNumSuffix;
74 OUString sNumFormat;
75 OUString sNumLetterSync;
76
77 // iterate over xattribute list and fill values
78 for (auto &aIter : sax_fastparser::castToFastAttributeList(xAttrList))
79 {
80 switch(aIter.getToken())
81 {
83 {
84 sal_Int32 nTmp;
85 if (::sax::Converter::convertNumber(nTmp, aIter.toView()))
86 {
87 nNumRestartAt = static_cast< sal_Int16 >( nTmp ) - 1;
88 bNumRestart = true;
89 }
90 break;
91 }
93 {
94 if( IsXMLToken( aIter, XML_ENDNOTE ) )
95 bEndnote = true;
96 break;
97 }
99 {
100 sNumPrefix = aIter.toString();
101 bNumOwn = true;
102 break;
103 }
105 {
106 sNumSuffix = aIter.toString();
107 bNumOwn = true;
108 break;
109 }
111 {
112 sNumFormat = aIter.toString();
113 bNumOwn = true;
114 break;
115 }
117 {
118 sNumLetterSync = aIter.toString();
119 bNumOwn = true;
120 break;
121 }
122 default:
123 XMLOFF_WARN_UNKNOWN("xmloff", aIter);
124 }
125 }
126
127 // OK, now we have all values and can fill the XMLPropertyState vector
128
129 sal_Int32 nIndex = rMapper->FindEntryIndex( bEndnote ?
131 XMLPropertyState aNumOwn( nIndex, css::uno::Any(bNumOwn) );
132 rProperties.push_back( aNumOwn );
133
134 nIndex = rMapper->FindEntryIndex( bEndnote ?
136 XMLPropertyState aNumRestart( nIndex, css::uno::Any(bNumRestart) );
137 rProperties.push_back( aNumRestart );
138
139 nIndex = rMapper->FindEntryIndex( bEndnote ?
142 XMLPropertyState aNumRestartAtState( nIndex, css::uno::Any(nNumRestartAt) );
143 rProperties.push_back( aNumRestartAtState );
144
145 sal_Int16 nNumType = NumberingType::ARABIC;
146 GetImport().GetMM100UnitConverter().convertNumFormat( nNumType,
147 sNumFormat,
148 sNumLetterSync );
149 nIndex = rMapper->FindEntryIndex( bEndnote ?
151 XMLPropertyState aNumFormatState( nIndex, css::uno::Any(nNumType) );
152 rProperties.push_back( aNumFormatState );
153
154 nIndex = rMapper->FindEntryIndex( bEndnote ?
156 XMLPropertyState aPrefixState( nIndex, css::uno::Any(sNumPrefix) );
157 rProperties.push_back( aPrefixState );
158
159 nIndex = rMapper->FindEntryIndex( bEndnote ?
161 XMLPropertyState aSuffixState( nIndex, css::uno::Any(sNumSuffix) );
162 rProperties.push_back( aSuffixState );
163
164 nIndex = rMapper->FindEntryIndex( bEndnote ?
166 XMLPropertyState aEndState( nIndex, css::uno::Any(true) ); // we're inside the element, so this is true
167 rProperties.push_back( aEndState );
168}
169
170/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
This class deliberately does not support XWeak, to improve performance when loading large documents.
Definition: xmlictxt.hxx:48
SvXMLImport & GetImport()
Definition: xmlictxt.hxx:60
XMLSectionFootnoteConfigImport(SvXMLImport &rImport, sal_Int32 nElement, ::std::vector< XMLPropertyState > &rProperties, rtl::Reference< XMLPropertySetMapper > xMapperRef)
::std::vector< XMLPropertyState > & rProperties
rtl::Reference< XMLPropertySetMapper > rMapper
virtual void SAL_CALL startFastElement(sal_Int32 nElement, const css::uno::Reference< css::xml::sax::XFastAttributeList > &) override
static bool convertNumber(sal_Int32 &rValue, std::u16string_view aString, sal_Int32 nMin=SAL_MIN_INT32, sal_Int32 nMax=SAL_MAX_INT32)
sal_Int32 nIndex
sal_Int16 nNumType
FastAttributeList & castToFastAttributeList(const css::uno::Reference< css::xml::sax::XFastAttributeList > &xAttrList)
Handling of tokens in XML:
bool IsXMLToken(std::u16string_view rString, enum XMLTokenEnum eToken)
compare eToken to the string
Definition: xmltoken.cxx:3597
Smart struct to transport an Any with an index to the appropriate property-name.
Definition: maptype.hxx:140
TEXT
#define CTF_SECTION_ENDNOTE_NUM_SUFFIX
Definition: txtprmap.hxx:127
#define CTF_SECTION_ENDNOTE_NUM_RESTART_AT
Definition: txtprmap.hxx:124
#define CTF_SECTION_FOOTNOTE_NUM_SUFFIX
Definition: txtprmap.hxx:120
#define CTF_SECTION_FOOTNOTE_NUM_OWN
Definition: txtprmap.hxx:121
#define CTF_SECTION_ENDNOTE_NUM_OWN
Definition: txtprmap.hxx:128
#define CTF_SECTION_ENDNOTE_NUM_RESTART
Definition: txtprmap.hxx:123
#define CTF_SECTION_FOOTNOTE_NUM_RESTART_AT
Definition: txtprmap.hxx:117
#define CTF_SECTION_ENDNOTE_END
Definition: txtprmap.hxx:122
#define CTF_SECTION_ENDNOTE_NUM_TYPE
Definition: txtprmap.hxx:125
#define CTF_SECTION_FOOTNOTE_NUM_TYPE
Definition: txtprmap.hxx:118
#define CTF_SECTION_ENDNOTE_NUM_PREFIX
Definition: txtprmap.hxx:126
#define CTF_SECTION_FOOTNOTE_END
Definition: txtprmap.hxx:115
#define CTF_SECTION_FOOTNOTE_NUM_PREFIX
Definition: txtprmap.hxx:119
#define CTF_SECTION_FOOTNOTE_NUM_RESTART
Definition: txtprmap.hxx:116
#define XMLOFF_WARN_UNKNOWN(area, rIter)
Definition: xmlictxt.hxx:114
#define XML_ELEMENT(prefix, name)
Definition: xmlimp.hxx:97