1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
4 * Config_FeatureReader.cpp
6 * Created on: Mar 20, 2014
10 #include <Config_Keywords.h>
11 #include <Config_Common.h>
12 #include <Config_FeatureMessage.h>
13 #include <Config_AttributeMessage.h>
14 #include <Config_FeatureReader.h>
15 #include <Events_Message.h>
16 #include <Events_Loop.h>
18 #include <libxml/parser.h>
19 #include <libxml/tree.h>
20 #include <libxml/xmlstring.h>
30 Config_FeatureReader::Config_FeatureReader(const std::string& theXmlFile,
31 const std::string& theLibraryName,
32 const char* theEventGenerated)
33 : Config_XMLReader(theXmlFile),
34 myLibraryName(theLibraryName),
35 myEventGenerated(theEventGenerated ? theEventGenerated : Config_FeatureMessage::GUI_EVENT()),
36 myIsProcessWidgets(theEventGenerated != NULL)
40 Config_FeatureReader::~Config_FeatureReader()
44 std::list<std::string> Config_FeatureReader::features() const
49 void Config_FeatureReader::processNode(xmlNodePtr theNode)
51 Events_ID aMenuItemEvent = Events_Loop::eventByName(myEventGenerated);
52 if (isNode(theNode, NODE_FEATURE, NULL)) {
53 storeAttribute(theNode, _ID);
54 std::shared_ptr<Config_FeatureMessage> aMessage(new Config_FeatureMessage(aMenuItemEvent, this));
55 fillFeature(theNode, aMessage);
56 myFeatures.push_back(getProperty(theNode, _ID));
57 //If a feature has xml definition for it's widget:
58 aMessage->setUseInput(hasChild(theNode));
59 Events_Loop::loop()->send(aMessage);
60 //The m_last* variables always defined before fillFeature() call. XML is a tree.
61 } else if (isNode(theNode, NODE_WORKBENCH, NODE_GROUP, NULL)) {
62 storeAttribute(theNode, _ID);
63 storeAttribute(theNode, WORKBENCH_DOC, true);
64 } else if (myIsProcessWidgets) {
65 // widgets, like shape_selector or containers, like toolbox
66 if (isAttributeNode(theNode)) {
67 std::shared_ptr<Config_AttributeMessage> aMessage(new Config_AttributeMessage(aMenuItemEvent, this));
68 aMessage->setFeatureId(restoreAttribute(NODE_FEATURE, _ID));
69 std::string anAttributeID = getProperty(theNode, _ID);
70 if (!anAttributeID.empty()) {
71 aMessage->setAttributeId(anAttributeID);
72 aMessage->setObligatory(getBooleanAttribute(theNode, ATTR_OBLIGATORY, true));
73 aMessage->setConcealment(getBooleanAttribute(theNode, ATTR_CONCEALMENT, false));
74 // nested "paged" widgets are not allowed, this issue may be resolved here:
75 if (hasParentRecursive(theNode, WDG_SWITCH_CASE, WDG_TOOLBOX_BOX, NULL)) {
76 const char* kWdgCase = hasParentRecursive(theNode, WDG_SWITCH_CASE, NULL)
79 const char* kWdgSwitch = hasParentRecursive(theNode, WDG_SWITCH_CASE, NULL)
82 aMessage->setCaseId(restoreAttribute(kWdgCase, _ID));
83 aMessage->setSwitchId(restoreAttribute(kWdgSwitch, _ID));
85 Events_Loop::loop()->send(aMessage);
87 // container pages, like "case" or "box"
88 } else if (isNode(theNode, WDG_SWITCH, WDG_SWITCH_CASE, WDG_TOOLBOX, WDG_TOOLBOX_BOX, NULL)) {
89 storeAttribute(theNode, _ID); // save case:caseId (or box:boxId)
92 //Process SOURCE nodes.
93 Config_XMLReader::processNode(theNode);
96 void Config_FeatureReader::cleanup(xmlNodePtr theNode)
98 if (isNode(theNode, WDG_SWITCH, WDG_SWITCH_CASE, WDG_TOOLBOX, WDG_TOOLBOX_BOX, NULL)) {
99 // cleanup id of cases when leave case node
100 cleanupAttribute(theNode, _ID);
104 bool Config_FeatureReader::processChildren(xmlNodePtr theNode)
106 bool result = isNode(theNode, NODE_WORKBENCH, NODE_GROUP, NULL);
107 if(!result && myIsProcessWidgets) {
108 result = isNode(theNode, NODE_FEATURE,
109 WDG_GROUP, WDG_CHECK_GROUP,
110 WDG_TOOLBOX, WDG_TOOLBOX_BOX,
111 WDG_SWITCH, WDG_SWITCH_CASE, NULL);
116 void Config_FeatureReader::fillFeature(xmlNodePtr theFeatureNode,
117 const std::shared_ptr<Config_FeatureMessage>& outFeatureMessage)
119 outFeatureMessage->setId(getProperty(theFeatureNode, _ID));
120 outFeatureMessage->setPluginLibrary(myLibraryName);
121 outFeatureMessage->setNestedFeatures(getProperty(theFeatureNode, FEATURE_NESTED));
122 outFeatureMessage->setActionsWhenNested(getNormalizedProperty(theFeatureNode, FEATURE_WHEN_NESTED));
124 bool isInternal = getBooleanAttribute(theFeatureNode, ATTR_INTERNAL, false);
125 outFeatureMessage->setInternal(isInternal);
127 //Internal feature has no visual representation.
130 outFeatureMessage->setText(getProperty(theFeatureNode, FEATURE_TEXT));
131 outFeatureMessage->setTooltip(getProperty(theFeatureNode, FEATURE_TOOLTIP));
132 outFeatureMessage->setIcon(getProperty(theFeatureNode, FEATURE_ICON));
133 outFeatureMessage->setKeysequence(getProperty(theFeatureNode, FEATURE_KEYSEQUENCE));
134 outFeatureMessage->setGroupId(restoreAttribute(NODE_GROUP, _ID));
135 outFeatureMessage->setWorkbenchId(restoreAttribute(NODE_WORKBENCH, _ID));
136 // Get document kind of a feature, if empty set workbench's kind (might be empty too)
137 std::string aDocKind = getProperty(theFeatureNode, FEATURE_DOC);
138 if(aDocKind.empty()) {
139 aDocKind = restoreAttribute(NODE_WORKBENCH, WORKBENCH_DOC);
141 outFeatureMessage->setDocumentKind(aDocKind);