1 | // %pacpus:license{
|
---|
2 | // This file is part of the PACPUS framework distributed under the
|
---|
3 | // CECILL-C License, Version 1.0.
|
---|
4 | // %pacpus:license}
|
---|
5 | /// @version $Id: XmlConfigFile.cpp 76 2013-01-10 17:05:10Z kurdejma $
|
---|
6 |
|
---|
7 | #include <Pacpus/kernel/XmlConfigFile.h>
|
---|
8 |
|
---|
9 | #include <Pacpus/kernel/Log.h>
|
---|
10 |
|
---|
11 | #include <cassert>
|
---|
12 | #include <QFile>
|
---|
13 | #include <QTextStream>
|
---|
14 |
|
---|
15 | ////////////////////////////////////////////////////////////////////////////////
|
---|
16 |
|
---|
17 | using namespace pacpus;
|
---|
18 | using namespace std;
|
---|
19 |
|
---|
20 | DECLARE_STATIC_LOGGER("pacpus.core.XmlConfigFile");
|
---|
21 |
|
---|
22 | XmlConfigFile * XmlConfigFile::m_xmlConfigFile = NULL;
|
---|
23 |
|
---|
24 | static const char * kXmlConfigFilename = "pacpus_config.xml";
|
---|
25 |
|
---|
26 | static const char * kRootSection = "pacpus";
|
---|
27 |
|
---|
28 | static const char * kComponentSection = "components";
|
---|
29 | static const char * kConnectionSection = "connections";
|
---|
30 | static const char * kParameterSection = "parameters";
|
---|
31 | static const char * kPluginSection = "plugins";
|
---|
32 |
|
---|
33 | static const char * kComponentNode = "component";
|
---|
34 | static const char * kConnectionNode = "connection";
|
---|
35 | static const char * kParameterNode = "parameter";
|
---|
36 | static const char * kPluginNode = "plugin";
|
---|
37 |
|
---|
38 | static const char * kNameAttribute = "name"; // <component name="MyComponent1" type="MyComponentType"/>
|
---|
39 | static const char * kLibAttribute = "lib"; // <plugin lib="MyLibrary.dll"/>
|
---|
40 | static const char * kExtensionAttribute = "extension"; // <parameter extension=".dll">
|
---|
41 | static const char * kPrefixAttribute = "prefix"; // <parameter prefix="lib">
|
---|
42 | static const char * kPostfixAttribute = "postfix"; // <parameter postfix="_d">
|
---|
43 |
|
---|
44 | ////////////////////////////////////////////////////////////////////////////////
|
---|
45 | // helper method
|
---|
46 | QDomNode getNamedItemFromDomDocument(const QDomDocument & document, const char * itemName);
|
---|
47 |
|
---|
48 | ////////////////////////////////////////////////////////////////////////////////
|
---|
49 |
|
---|
50 | // CTOR/DTOR
|
---|
51 | XmlConfigFile::XmlConfigFile()
|
---|
52 | : m_numberOfComponents(0)
|
---|
53 | {
|
---|
54 | LOG_TRACE("constructor");
|
---|
55 |
|
---|
56 | // create the root of the XML tree
|
---|
57 | m_document.appendChild(m_document.createElement(kRootSection));
|
---|
58 | // create the sections
|
---|
59 | m_document.documentElement().appendChild(m_document.createElement(kParameterSection));
|
---|
60 | m_document.documentElement().appendChild(m_document.createElement(kPluginSection));
|
---|
61 | m_document.documentElement().appendChild(m_document.createElement(kComponentSection));
|
---|
62 | m_document.documentElement().appendChild(m_document.createElement(kConnectionSection));
|
---|
63 | m_file.setFileName(kXmlConfigFilename);
|
---|
64 | bool isOpenedSuccessfully = m_file.open(QIODevice::ReadWrite); // FIXME: ReadOnly ?
|
---|
65 | if (isOpenedSuccessfully) {
|
---|
66 | LOG_INFO("XML document " << kXmlConfigFilename << " was created");
|
---|
67 | } else {
|
---|
68 | LOG_ERROR("cannot open XML document " << kXmlConfigFilename);
|
---|
69 | throw "cannot open XML document file";
|
---|
70 | }
|
---|
71 | }
|
---|
72 |
|
---|
73 | XmlConfigFile::~XmlConfigFile()
|
---|
74 | {
|
---|
75 | LOG_TRACE("destructor");
|
---|
76 | }
|
---|
77 |
|
---|
78 | // CREATE/DESTROY
|
---|
79 | XmlConfigFile * XmlConfigFile::create()
|
---|
80 | {
|
---|
81 | if (NULL ==m_xmlConfigFile) {
|
---|
82 | m_xmlConfigFile = new XmlConfigFile();
|
---|
83 | }
|
---|
84 | return m_xmlConfigFile;
|
---|
85 | }
|
---|
86 |
|
---|
87 | void XmlConfigFile::destroy()
|
---|
88 | {
|
---|
89 | delete m_xmlConfigFile;
|
---|
90 | m_xmlConfigFile = NULL;
|
---|
91 | }
|
---|
92 |
|
---|
93 | // COMPONENTS ADD/REMOVE/CREATE
|
---|
94 | void XmlConfigFile::addComponent(QDomElement component)
|
---|
95 | {
|
---|
96 | QMutexLocker mutexLocker(&m_mutex); // locks mutex, unlocks it in destructor
|
---|
97 | (void) mutexLocker; // unused
|
---|
98 |
|
---|
99 | // TODO: change .tagName => .attribute(kPropertyComponentName)
|
---|
100 | QDomNode componentSectionNode = getNamedItemFromDomDocument(m_document, kComponentSection);
|
---|
101 | if (componentSectionNode.namedItem(component.attribute(kNameAttribute)/*.tagName()*/).isNull()) {
|
---|
102 | LOG_WARN("component " << component.attribute(kNameAttribute)/*tagName()*/ << " exists already in the document");
|
---|
103 | } else {
|
---|
104 | QDomNode node = getNamedItemFromDomDocument(m_document, kComponentSection).appendChild(component);
|
---|
105 | ++m_numberOfComponents;
|
---|
106 | LOG_INFO("component " << node.nodeName() << " has been added to the section "
|
---|
107 | << getNamedItemFromDomDocument(m_document, kComponentSection).nodeName());
|
---|
108 | }
|
---|
109 | }
|
---|
110 |
|
---|
111 | void XmlConfigFile::delComponent(QDomElement component)
|
---|
112 | {
|
---|
113 | removeComponent(component);
|
---|
114 | }
|
---|
115 |
|
---|
116 | void XmlConfigFile::removeComponent(QDomElement component)
|
---|
117 | {
|
---|
118 | QMutexLocker mutexLocker(&m_mutex); // locks mutex, unlocks it in destructor
|
---|
119 | (void) mutexLocker; // unused
|
---|
120 |
|
---|
121 | QDomNode node = getNamedItemFromDomDocument(m_document, kComponentSection).removeChild(component);
|
---|
122 | if (node.isNull()) {
|
---|
123 | LOG_WARN("component " << component.attribute(kNameAttribute)/*tagName()*/ << " doesn't exist in the document.");
|
---|
124 | } else {
|
---|
125 | LOG_INFO("component " << node.nodeName() << " has been removed from the section "
|
---|
126 | << getNamedItemFromDomDocument(m_document, kComponentSection).nodeName());
|
---|
127 | --m_numberOfComponents;
|
---|
128 | }
|
---|
129 | }
|
---|
130 |
|
---|
131 | QDomElement XmlConfigFile::createComponent(QString name)
|
---|
132 | {
|
---|
133 | LOG_DEBUG("creating component " << name);
|
---|
134 |
|
---|
135 | QMutexLocker mutexLocker(&m_mutex); // locks mutex, unlocks it in destructor
|
---|
136 | (void) mutexLocker; // unused
|
---|
137 | return m_document.createElement(name);
|
---|
138 | }
|
---|
139 |
|
---|
140 | // FILE I/O
|
---|
141 | void XmlConfigFile::saveFile(QString fileName)
|
---|
142 | {
|
---|
143 | QMutexLocker mutexLocker(&m_mutex);
|
---|
144 | (void) mutexLocker; // unused
|
---|
145 |
|
---|
146 | m_file.close();
|
---|
147 | assert(!m_file.isOpen());
|
---|
148 | m_file.setFileName(fileName);
|
---|
149 | {
|
---|
150 | // open file
|
---|
151 | bool isOpenedSuccessfully = m_file.open(QIODevice::WriteOnly);
|
---|
152 | if (!isOpenedSuccessfully) {
|
---|
153 | LOG_ERROR("cannot open file '" << m_file.fileName() << "' for writing");
|
---|
154 | return;
|
---|
155 | }
|
---|
156 | QTextStream ts(&m_file);
|
---|
157 | ts << "<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>\n";
|
---|
158 | ts << m_document.toString();
|
---|
159 | m_file.close();
|
---|
160 | }
|
---|
161 | LOG_DEBUG("file \"" << m_file.fileName() << "\" has been saved");
|
---|
162 | }
|
---|
163 |
|
---|
164 | int XmlConfigFile::loadFile(QString fileName)
|
---|
165 | {
|
---|
166 | // lock access
|
---|
167 | QMutexLocker mutexLocker(&m_mutex);
|
---|
168 | (void) mutexLocker; // unused
|
---|
169 |
|
---|
170 | // check if there are components already
|
---|
171 | if (0 != m_numberOfComponents) {
|
---|
172 | LOG_WARN("XML document contained " << m_numberOfComponents << " components that will be lost!");
|
---|
173 | }
|
---|
174 |
|
---|
175 | m_file.close();
|
---|
176 | assert(!m_file.isOpen());
|
---|
177 | m_file.setFileName(fileName);
|
---|
178 | {
|
---|
179 | // open file
|
---|
180 | bool isOpenedSuccessfully = m_file.open(QIODevice::ReadOnly);
|
---|
181 | if (!isOpenedSuccessfully) {
|
---|
182 | LOG_ERROR("cannot open file '" << m_file.fileName() << "' for reading");
|
---|
183 | return 0;
|
---|
184 | }
|
---|
185 | // read and parse input XML file
|
---|
186 | QString errorMsg;
|
---|
187 | int errorLine = 0;
|
---|
188 | int errorColumn = 0;
|
---|
189 | if (!m_document.setContent(&m_file, /*namespaceProcessing=*/true, &errorMsg, &errorLine, &errorColumn)) {
|
---|
190 | LOG_ERROR("cannot parse XML file " << m_file.fileName());
|
---|
191 | LOG_ERROR(errorMsg << " at " << errorLine << ":" << errorColumn << " (line:col)");
|
---|
192 | m_file.close();
|
---|
193 | return 0;
|
---|
194 | }
|
---|
195 | // close file
|
---|
196 | m_file.close();
|
---|
197 | }
|
---|
198 |
|
---|
199 | // get the number of components in the loaded tree
|
---|
200 | m_numberOfComponents = getAllComponents().count();
|
---|
201 |
|
---|
202 | LOG_INFO("XML file \"" << m_file.fileName() << "\" has been loaded. Number of components = " << m_numberOfComponents);
|
---|
203 | LOG_DEBUG("XML file content:\n"
|
---|
204 | << "BEGIN============================================================================\n"
|
---|
205 | << m_document.toString()
|
---|
206 | << "END==============================================================================\n"
|
---|
207 | );
|
---|
208 |
|
---|
209 | return m_numberOfComponents;
|
---|
210 | }
|
---|
211 |
|
---|
212 | // XML
|
---|
213 | QDomElement XmlConfigFile::getSection(const char * name) const
|
---|
214 | {
|
---|
215 | QDomElement sectionElement = getNamedItemFromDomDocument(m_document, name).toElement();
|
---|
216 | if (sectionElement.isNull()) {
|
---|
217 | LOG_WARN("there is no '" << name << "' section in the XML");
|
---|
218 | return QDomElement();
|
---|
219 | }
|
---|
220 | return sectionElement;
|
---|
221 | }
|
---|
222 |
|
---|
223 | QDomNodeList XmlConfigFile::getNodesInSection(const char * sectionName, const char * nodeName) const
|
---|
224 | {
|
---|
225 | QDomElement sectionElement = getSection(sectionName);
|
---|
226 | return sectionElement.elementsByTagName(nodeName);
|
---|
227 | }
|
---|
228 |
|
---|
229 | // COMPONENTS
|
---|
230 | QDomNodeList XmlConfigFile::getAllComponents() const
|
---|
231 | {
|
---|
232 | return getNodesInSection(kComponentSection, kComponentNode);
|
---|
233 | }
|
---|
234 |
|
---|
235 | QStringList XmlConfigFile::getAllComponentsNames() const
|
---|
236 | {
|
---|
237 | // get component nodes
|
---|
238 | QDomNodeList componentNodes = getAllComponents();
|
---|
239 | // get component names
|
---|
240 | QStringList componentNameList;
|
---|
241 | for (int i = 0; i < componentNodes.size(); ++i) {
|
---|
242 | QDomElement componentElement = componentNodes.at(i).toElement();
|
---|
243 | componentNameList.append(componentElement.attribute(kNameAttribute));
|
---|
244 | }
|
---|
245 | return componentNameList;
|
---|
246 | }
|
---|
247 |
|
---|
248 | QDomElement XmlConfigFile::getComponent(QString componentName) const
|
---|
249 | {
|
---|
250 | LOG_DEBUG("getting component " << componentName);
|
---|
251 |
|
---|
252 | QDomNodeList componentNodes = getAllComponents();
|
---|
253 | for (int i = 0; i < componentNodes.size(); ++i) {
|
---|
254 | QDomElement componentElement = componentNodes.at(i).toElement();
|
---|
255 | if (componentName == componentElement.attribute(kNameAttribute)) {
|
---|
256 | return componentElement;
|
---|
257 | }
|
---|
258 | }
|
---|
259 | LOG_WARN("cannot get component " << componentName << ": document does not contain a component with this name");
|
---|
260 |
|
---|
261 | return QDomElement();
|
---|
262 | }
|
---|
263 |
|
---|
264 | // CONNECTIONS
|
---|
265 | QDomNodeList XmlConfigFile::getAllConnections() const
|
---|
266 | {
|
---|
267 | return getNodesInSection(kConnectionSection, kConnectionNode);
|
---|
268 | }
|
---|
269 |
|
---|
270 | QDomElement XmlConfigFile::getConnection(QString name) const
|
---|
271 | {
|
---|
272 | LOG_DEBUG("getting connection " << name);
|
---|
273 |
|
---|
274 | QDomNodeList connectionNodes = getAllConnections();
|
---|
275 | for (int i = 0; i < connectionNodes.size(); ++i) {
|
---|
276 | QDomElement connectionElement = connectionNodes.at(i).toElement();
|
---|
277 | // TODO: name by attribute 'name'
|
---|
278 | if (name == connectionElement.attribute(kNameAttribute)) {
|
---|
279 | return connectionElement;
|
---|
280 | }
|
---|
281 | }
|
---|
282 | LOG_WARN("cannot get connection " << name << ": document does not contain a connection with this name");
|
---|
283 |
|
---|
284 | return QDomElement();
|
---|
285 | }
|
---|
286 |
|
---|
287 | // PARAMETERS
|
---|
288 | QDomNodeList XmlConfigFile::getAllParameters() const
|
---|
289 | {
|
---|
290 | return getNodesInSection(kParameterSection, kParameterNode);
|
---|
291 | }
|
---|
292 |
|
---|
293 | // PLUGINS
|
---|
294 | QDomNodeList XmlConfigFile::getAllPlugins()
|
---|
295 | {
|
---|
296 | // get section
|
---|
297 | QDomElement pluginsElement = getSection(kPluginSection);
|
---|
298 |
|
---|
299 | // get attributes
|
---|
300 | m_libraryExtension = pluginsElement.attribute(kExtensionAttribute);
|
---|
301 | if (!m_libraryExtension.isEmpty()) {
|
---|
302 | // prefix with a dot '.' if there is no one
|
---|
303 | if ('.' != m_libraryExtension.at(0)) {
|
---|
304 | m_libraryExtension = '.' + m_libraryExtension;
|
---|
305 | }
|
---|
306 | }
|
---|
307 | m_libraryPrefix = pluginsElement.attribute(kPrefixAttribute);
|
---|
308 | m_libraryPostfix = pluginsElement.attribute(kPostfixAttribute);
|
---|
309 |
|
---|
310 | // get nodes
|
---|
311 | return getNodesInSection(kPluginSection, kPluginNode);
|
---|
312 | }
|
---|
313 |
|
---|
314 | QStringList XmlConfigFile::getAllPluginsNames()
|
---|
315 | {
|
---|
316 | QDomNodeList pluginList = getAllPlugins();
|
---|
317 | if (0 == pluginList.size()) {
|
---|
318 | LOG_ERROR("no plugins were specified");
|
---|
319 | return QStringList();
|
---|
320 | }
|
---|
321 | LOG_INFO("there are " << pluginList.size() << " plugins");
|
---|
322 |
|
---|
323 | // get plugin library paths
|
---|
324 | QStringList pluginLibraryNames;
|
---|
325 | for (int i = 0; i < pluginList.size(); ++i) {
|
---|
326 | QDomElement pluginElement = pluginList.at(i).toElement();
|
---|
327 | QString libraryFileName = libraryPrefix() + pluginElement.attribute(kLibAttribute) + libraryPostfix() + libraryExtension();
|
---|
328 | pluginLibraryNames.append(libraryFileName);
|
---|
329 | }
|
---|
330 | return pluginLibraryNames;
|
---|
331 | }
|
---|
332 |
|
---|
333 | QString XmlConfigFile::libraryExtension() const
|
---|
334 | {
|
---|
335 | return m_libraryExtension;
|
---|
336 | }
|
---|
337 |
|
---|
338 | QString XmlConfigFile::libraryPrefix() const
|
---|
339 | {
|
---|
340 | return m_libraryPrefix;
|
---|
341 | }
|
---|
342 |
|
---|
343 | QString XmlConfigFile::libraryPostfix() const
|
---|
344 | {
|
---|
345 | return m_libraryPostfix;
|
---|
346 | }
|
---|
347 |
|
---|
348 | ////////////////////////////////////////////////////////////////////////////////
|
---|
349 | // HELPER METHODS
|
---|
350 | QDomNode getNamedItemFromDomDocument(const QDomDocument & document, const char * itemName)
|
---|
351 | {
|
---|
352 | return document.documentElement().namedItem(itemName);
|
---|
353 | }
|
---|