forked from aymara/lima
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxmlConfigurationFileHandler.cpp
267 lines (240 loc) · 9.05 KB
/
xmlConfigurationFileHandler.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
/*
Copyright 2002-2013 CEA LIST
This file is part of LIMA.
LIMA is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
LIMA is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with LIMA. If not, see <http://www.gnu.org/licenses/>
*/
/**
* @file xmlConfigurationFileHandler.cpp
* @brief originally in detectlibraries
* @date begin Mon Oct, 13 2003 (ven oct 18 2002)
* @author Gael de Chalendar <[email protected]>
* copyright (C) 2002-2003 by CEA
*/
// ---------------------------------------------------------------------------
// Includes
// ---------------------------------------------------------------------------
#include "common/LimaCommon.h"
#include <common/Data/strwstrtools.h>
#include "xmlConfigurationFileHandler.h"
#include "xmlConfigurationFileExceptions.h"
using namespace std;
namespace Lima
{
namespace Common
{
namespace XMLConfigurationFiles
{
// ---------------------------------------------------------------------------
// XMLConfigurationFileHandler: Constructors and Destructor
// ---------------------------------------------------------------------------
XMLConfigurationFileHandler::XMLConfigurationFileHandler(ConfigurationStructure& theConfiguration) :
QXmlDefaultHandler(),
m_moduleName(""), m_groupName(""), m_listName(""), m_configuration(theConfiguration)
{}
XMLConfigurationFileHandler::~XMLConfigurationFileHandler()
{}
// ---------------------------------------------------------------------------
// XMLConfigurationFileHandler: Overrides of the SAX ErrorHandler interface
// ---------------------------------------------------------------------------
bool XMLConfigurationFileHandler::error(const QXmlParseException& e)
{
XMLCFGLOGINIT;
LERROR << "Error at file " << e.systemId()
<< ", line " << e.lineNumber()
<< ", char " << e.columnNumber()
<< " Message: " << e.message();
return false;
}
bool XMLConfigurationFileHandler::fatalError(const QXmlParseException& e)
{
XMLCFGLOGINIT;
LERROR << "Fatal Error at file " << e.systemId()
<< ", line " << e.lineNumber()
<< ", char " << e.columnNumber()
<< " Message: " << e.message();
return false;
}
bool XMLConfigurationFileHandler::warning(const QXmlParseException& e)
{
XMLCFGLOGINIT;
LWARN << "Warning at file " << e.systemId()
<< ", line " << e.lineNumber()
<< ", char " << e.columnNumber()
<< " Message: " << e.message();
return true;
}
bool XMLConfigurationFileHandler::endElement(const QString & , const QString & eltName, const QString & )
{
string name=toString(eltName);
if (name == "Module") {
m_moduleName = "";
}
else if (name == "group") {
m_groupName = "";
}
else if (name == "list") {
if (m_firstItem) {
// empty list: must be added anyway
m_configuration.addListNamedForModuleAndGroup(m_listName, m_moduleName, m_groupName);
m_firstItem=false;
}
m_listName = "";
}
else if (name == "map") {
if (m_firstItem) {
// empty map: must be added anyway
m_firstItem=false;
m_configuration.addMapNamedForModuleAndGroup(m_mapName,m_moduleName,m_groupName);
}
m_mapName = "";
}
return true;
}
bool XMLConfigurationFileHandler::startElement( const QString & , const QString & name, const QString & , const QXmlAttributes & attributes)
{
string stringName(toString(name));
XMLCFGLOGINIT;
LTRACE << "start element " << stringName;
// set the current module name and create its entry if necessary
if (stringName == string("module"))
{
m_moduleName = attributes.value("name").toUtf8().constData();
LTRACE << "XMLConfigurationFileHandler::startElement module name is " << m_moduleName;
if ((m_configuration. find(m_moduleName)) == (m_configuration. end()))
{
m_configuration.insert(make_pair(m_moduleName, ModuleConfigurationStructure(m_moduleName)));
}
}
// set the current group name inside moduleName and creates its entry if necessary
else if (stringName == "group")
{
m_groupName = toString(attributes.value("name"));
LTRACE << "group name is " << m_groupName;
int32_t indName=attributes.index("name"); // index for the attribute 'name' (not always the first)
m_configuration.addGroupNamedForModuleNamed(m_groupName, m_moduleName);
for (int32_t i=0;i<attributes.length();i++)
{
if (i==indName) { // if attribute 'name', ignored (already treated)
continue;
}
string key=toString(attributes.localName(i));
string value=toString(attributes.value(i));
m_configuration.addAttributeForGroupInModule(key,value,m_groupName,m_moduleName);
}
}
// creates a new parameter inside the current module and group
else if (stringName == "param")
{
string key = toString(attributes.value("key"));
string value = toString(attributes.value("value"));
LTRACE << "param key is " << key;
m_configuration.addParamValuePairForModuleAndGroup(key, value, m_moduleName, m_groupName);
}
else if (stringName == "list")
{
m_listName = toString(attributes.value("name"));
LTRACE << "list name is " << m_listName;
m_firstItem=true;
m_itemWithAttributes=false;
}
else if (stringName == "item")
{
uint32_t nbAtt=attributes.length();
if (m_firstItem) {
// decide if list is simple list or list of items with attributes
if (nbAtt==1) {
LTRACE << "add simple list "<< m_listName;
m_configuration.addListNamedForModuleAndGroup(m_listName, m_moduleName, m_groupName);
}
else {
LTRACE << "add list of items with attributes"<< m_listName;
m_configuration.addListOfItemsForModuleAndGroup(m_listName, m_moduleName, m_groupName);
m_itemWithAttributes=true;
}
m_firstItem=false;
}
else if (nbAtt>1 && !m_itemWithAttributes) {
// was indeed in list of item with attributes => has to change
m_configuration.changeListToListOfItems(m_listName,m_moduleName,m_groupName);
m_itemWithAttributes=true;
}
if (m_itemWithAttributes) {
string itemName=toString(attributes.value("value"));
ItemWithAttributes item(itemName);
for (uint32_t i=0; i<nbAtt; i++) {
item.addAttribute(toString(attributes.localName(i)),
toString(attributes.value(i)));
}
m_configuration.addItemInListOfItemsForModuleAndGroup(item, m_listName, m_moduleName, m_groupName);
}
else {
string value = toString(attributes.value("value"));
m_configuration.addItemInListNamedForModuleAndGroup(value, m_listName, m_moduleName, m_groupName);
}
}
else if (stringName == "map")
{
m_mapName = toString(attributes.value("name"));
LTRACE << "map name is " << m_mapName;
m_firstItem=true;
m_itemWithAttributes=false;
}
else if (stringName == "entry")
{
LTRACE << "entry in map";
uint32_t nbAtt=attributes.length();
if (m_firstItem) {
// decide if map is simple map or map of entries with attributes
if (nbAtt==2) { // name+value => simple map
LTRACE << "add map list "<< m_mapName.c_str();
m_configuration.addMapNamedForModuleAndGroup(m_mapName,m_moduleName,m_groupName);
}
else {
LTRACE << "add map of items with attributes "<< m_mapName;
m_configuration.addMapOfItemsForModuleAndGroup(m_mapName,m_moduleName,m_groupName);
m_itemWithAttributes=true;
}
m_firstItem=false;
}
else if (nbAtt>2 && !m_itemWithAttributes) {
// was indeed in list of item with attributes => has to change
m_configuration.changeMapToMapOfItems(m_mapName,m_moduleName,m_groupName);
m_itemWithAttributes=true;
}
if (m_itemWithAttributes) {
string key=toString(attributes.value("key"));
string value=toString(attributes.value("value"));
ItemWithAttributes item(value);
for (uint32_t i=1; i<nbAtt; i++) {
string attName=toString(attributes.localName(i));
if (attName != "key" && attName != "value") {
item.addAttribute(attName,
toString(attributes.value(i)));
}
}
m_configuration.addEntryInMapOfItemsForModuleAndGroup(key,item,m_mapName,m_moduleName,m_groupName);
}
else {
string key = toString(attributes.value("key"));
string value = toString(attributes.value("value"));
m_configuration.addEntryInMapNamedForModuleAndGroup(key,value,m_mapName,m_moduleName,m_groupName);
}
}
return true;
}
std::string XMLConfigurationFileHandler::toString(const QString& xercesString)
{
return Misc::limastring2utf8stdstring(xercesString);
}
} // closing namespace XMLConfigurationFiles
} // closing namespace Common
} // closing namespace Lima