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 
20 #include "XMLSectionFootnoteConfigImport.hxx"
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>
27 #include <sax/tools/converter.hxx>
28 #include <xmloff/xmlimp.hxx>
29 #include <xmloff/xmltoken.hxx>
30 #include <xmloff/xmluconv.hxx>
31 #include <xmloff/xmlprmap.hxx>
32 #include <xmloff/xmlnamespace.hxx>
33 #include <xmloff/namespacemap.hxx>
34 #include <xmloff/maptype.hxx>
35 #include <xmloff/txtprmap.hxx>
36 
37 #include <vector>
38 
39 
40 using namespace ::xmloff::token;
41 using namespace ::com::sun::star::style;
42 
43 using ::std::vector;
44 using ::com::sun::star::uno::Any;
45 using ::com::sun::star::uno::Reference;
46 using ::com::sun::star::xml::sax::XAttributeList;
47 
48 
XMLSectionFootnoteConfigImport(SvXMLImport & rImport,sal_Int32,vector<XMLPropertyState> & rProps,const rtl::Reference<XMLPropertySetMapper> & rMapperRef)49 XMLSectionFootnoteConfigImport::XMLSectionFootnoteConfigImport(
50     SvXMLImport& rImport,
51     sal_Int32 /*nElement*/,
52     vector<XMLPropertyState> & rProps,
53     const rtl::Reference<XMLPropertySetMapper> & rMapperRef) :
54         SvXMLImportContext(rImport),
55         rProperties(rProps),
56         rMapper(rMapperRef)
57 {
58 }
59 
~XMLSectionFootnoteConfigImport()60 XMLSectionFootnoteConfigImport::~XMLSectionFootnoteConfigImport()
61 {
62 }
63 
startFastElement(sal_Int32,const Reference<css::xml::sax::XFastAttributeList> & xAttrList)64 void XMLSectionFootnoteConfigImport::startFastElement(
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         {
82             case XML_ELEMENT(TEXT, XML_START_VALUE):
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             }
92             case XML_ELEMENT(TEXT, XML_NOTE_CLASS):
93             {
94                 if( IsXMLToken( aIter, XML_ENDNOTE ) )
95                     bEndnote = true;
96                 break;
97             }
98             case XML_ELEMENT(STYLE, XML_NUM_PREFIX):
99             {
100                 sNumPrefix = aIter.toString();
101                 bNumOwn = true;
102                 break;
103             }
104             case XML_ELEMENT(TEXT, XML_NUM_SUFFIX):
105             {
106                 sNumSuffix = aIter.toString();
107                 bNumOwn = true;
108                 break;
109             }
110             case XML_ELEMENT(TEXT, XML_NUM_FORMAT):
111             {
112                 sNumFormat = aIter.toString();
113                 bNumOwn = true;
114                 break;
115             }
116             case XML_ELEMENT(TEXT, XML_NUM_LETTER_SYNC):
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 ?
130         CTF_SECTION_ENDNOTE_NUM_OWN : CTF_SECTION_FOOTNOTE_NUM_OWN );
131     XMLPropertyState aNumOwn( nIndex, css::uno::Any(bNumOwn) );
132     rProperties.push_back( aNumOwn );
133 
134     nIndex = rMapper->FindEntryIndex( bEndnote ?
135         CTF_SECTION_ENDNOTE_NUM_RESTART : CTF_SECTION_FOOTNOTE_NUM_RESTART );
136     XMLPropertyState aNumRestart( nIndex, css::uno::Any(bNumRestart) );
137     rProperties.push_back( aNumRestart );
138 
139     nIndex = rMapper->FindEntryIndex( bEndnote ?
140         CTF_SECTION_ENDNOTE_NUM_RESTART_AT :
141         CTF_SECTION_FOOTNOTE_NUM_RESTART_AT );
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 ?
150         CTF_SECTION_ENDNOTE_NUM_TYPE : CTF_SECTION_FOOTNOTE_NUM_TYPE );
151     XMLPropertyState aNumFormatState( nIndex, css::uno::Any(nNumType) );
152     rProperties.push_back( aNumFormatState );
153 
154     nIndex = rMapper->FindEntryIndex( bEndnote ?
155         CTF_SECTION_ENDNOTE_NUM_PREFIX : CTF_SECTION_FOOTNOTE_NUM_PREFIX );
156     XMLPropertyState aPrefixState( nIndex, css::uno::Any(sNumPrefix) );
157     rProperties.push_back( aPrefixState );
158 
159     nIndex = rMapper->FindEntryIndex( bEndnote ?
160         CTF_SECTION_ENDNOTE_NUM_SUFFIX : CTF_SECTION_FOOTNOTE_NUM_SUFFIX );
161     XMLPropertyState aSuffixState( nIndex, css::uno::Any(sNumSuffix) );
162     rProperties.push_back( aSuffixState );
163 
164     nIndex = rMapper->FindEntryIndex( bEndnote ?
165         CTF_SECTION_ENDNOTE_END : CTF_SECTION_FOOTNOTE_END );
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: */
171