1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
4 * Config_WidgetReader.cpp
6 * Created on: Apr 2, 2014
10 #include <Config_WidgetReader.h>
11 #include <Config_Keywords.h>
12 #include <Config_Common.h>
14 #include <libxml/parser.h>
15 #include <libxml/tree.h>
16 #include <libxml/xpath.h>
17 #include <libxml/xmlstring.h>
25 Config_WidgetReader::Config_WidgetReader(const std::string& theXmlFile)
26 : Config_XMLReader(theXmlFile)
31 Config_WidgetReader::~Config_WidgetReader()
35 std::string Config_WidgetReader::featureWidgetCfg(const std::string& theFeatureName)
37 return myWidgetCache[theFeatureName];
40 std::string Config_WidgetReader::featureDescription(const std::string& theFeatureName)
42 return myDescriptionCache[theFeatureName];
45 void Config_WidgetReader::processNode(xmlNodePtr theNode)
47 if (isNode(theNode, NODE_FEATURE, NULL)) {
48 myCurrentFeature = getProperty(theNode, _ID);
49 myWidgetCache[myCurrentFeature] = dumpNode(theNode);
50 myDescriptionCache[myCurrentFeature] = getProperty(theNode, FEATURE_TEXT);
52 //Process SOURCE nodes.
53 Config_XMLReader::processNode(theNode);
56 bool Config_WidgetReader::processChildren(xmlNodePtr theNode)
58 //Read all nodes recursively, source and validator nodes have no children
59 return !isNode(theNode, NODE_VALIDATOR,
64 void Config_WidgetReader::resolveSourceNodes(xmlNodePtr theNode)
66 xmlNodePtr aNode = xmlFirstElementChild(theNode);
67 std::list<xmlNodePtr> aSourceNodes;
68 while (aNode != NULL) {
69 if (isNode(aNode, NODE_SOURCE, NULL)) {
70 Config_XMLReader aSourceReader = Config_XMLReader(getProperty(aNode, SOURCE_FILE));
71 xmlNodePtr aSourceRoot = aSourceReader.findRoot();
75 xmlNodePtr aSourceNode = xmlFirstElementChild(aSourceRoot);
76 xmlNodePtr aTargetNode = xmlDocCopyNodeList(aNode->doc, aSourceNode);
77 while (aTargetNode != NULL) {
78 xmlNodePtr aNextNode = xmlNextElementSibling(aTargetNode);
79 xmlAddPrevSibling(aNode, aTargetNode);
80 aTargetNode = aNextNode;
82 aSourceNodes.push_back(aNode);
84 aNode = xmlNextElementSibling(aNode);
86 //Remove "SOURCE" node.
87 std::list<xmlNodePtr>::iterator it = aSourceNodes.begin();
88 for (; it != aSourceNodes.end(); it++) {
94 std::string Config_WidgetReader::dumpNode(xmlNodePtr theNode)
96 std::string result = "";
97 if (!hasChild(theNode)) {
100 //Replace all "source" nodes with content;
101 resolveSourceNodes(theNode);
102 xmlBufferPtr buffer = xmlBufferCreate();
103 int size = xmlNodeDump(buffer, theNode->doc, theNode, 0, 0);
104 result = std::string((char*) (buffer->content));
105 xmlBufferFree(buffer);