Salome HOME
Merge branch 'BR_EDF_2018_Lot1'
[modules/shaper.git] / src / Config / Config_FeatureReader.cpp
1 // Copyright (C) 2014-2017  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
19 //
20
21 #include <Config_Keywords.h>
22 #include <Config_Common.h>
23 #include <Config_FeatureMessage.h>
24 #include <Config_AttributeMessage.h>
25 #include <Config_FeatureReader.h>
26 #include <Config_Translator.h>
27 #include <Events_Message.h>
28 #include <Events_Loop.h>
29
30 #include <libxml/parser.h>
31 #include <libxml/tree.h>
32 #include <libxml/xmlstring.h>
33
34 #include <string>
35 #include <algorithm>
36 #include <list>
37
38 #ifdef _DEBUG
39 #include <iostream>
40 #endif
41
42 Config_FeatureReader::Config_FeatureReader(const std::string& theXmlFile,
43                                            const std::string& theLibraryName,
44                                            const char* theEventGenerated)
45     : Config_XMLReader(theXmlFile),
46       myLibraryName(theLibraryName),
47       myEventGenerated(theEventGenerated ? theEventGenerated : Config_FeatureMessage::GUI_EVENT()),
48       myIsProcessWidgets(theEventGenerated != NULL)
49 {
50 }
51
52 Config_FeatureReader::~Config_FeatureReader()
53 {
54 }
55
56 std::list<std::string> Config_FeatureReader::features() const
57 {
58   return myFeatures;
59 }
60
61 void Config_FeatureReader::processNode(xmlNodePtr theNode)
62 {
63   Events_ID aMenuItemEvent = Events_Loop::eventByName(myEventGenerated);
64   if (isNode(theNode, NODE_FEATURE, NULL)) {
65     storeAttribute(theNode, _ID);
66     std::shared_ptr<Config_FeatureMessage>
67       aMessage(new Config_FeatureMessage(aMenuItemEvent, this));
68     fillFeature(theNode, aMessage);
69     myFeatures.push_back(getProperty(theNode, _ID));
70     //If a feature has xml definition for it's widget:
71     aMessage->setUseInput(hasChild(theNode));
72     Events_Loop::loop()->send(aMessage);
73     //The m_last* variables always defined before fillFeature() call. XML is a tree.
74   } else if (isNode(theNode, NODE_WORKBENCH, NODE_GROUP, NULL)) {
75     storeAttribute(theNode, _ID);
76     storeAttribute(theNode, WORKBENCH_DOC, true);
77   } else if (myIsProcessWidgets) {
78     // widgets, like shape_selector or containers, like toolbox
79     if (isAttributeNode(theNode)) {
80       std::shared_ptr<Config_AttributeMessage>
81         aMessage(new Config_AttributeMessage(aMenuItemEvent, this));
82       aMessage->setFeatureId(restoreAttribute(NODE_FEATURE, _ID));
83       std::string anAttributeID = getProperty(theNode, _ID);
84       if (!anAttributeID.empty()) {
85         aMessage->setAttributeId(anAttributeID);
86         aMessage->setObligatory(getBooleanAttribute(theNode, ATTR_OBLIGATORY, true));
87         bool isConcealment = getBooleanAttribute(theNode, ATTR_CONCEALMENT, false);
88         aMessage->setConcealment(isConcealment);
89         bool isMainArg = isConcealment && getBooleanAttribute(theNode, ATTR_MAIN_ARG, false);
90         aMessage->setMainArgument(isMainArg);
91
92         std::list<std::pair<std::string, std::string> > aCases;
93         xmlNodePtr aCaseNode = hasParentRecursive(theNode,
94           WDG_SWITCH_CASE, WDG_TOOLBOX_BOX, WDG_OPTIONALBOX, WDG_RADIOBOX_ITEM, NULL);
95         while(aCaseNode) {
96           std::string aCaseNodeID = getProperty(aCaseNode, _ID);
97           std::string aSwitchNodeID = "";
98           const xmlChar* aName = aCaseNode->name;
99           xmlNodePtr aSwitchNode;
100           if (!xmlStrcmp(aName, (const xmlChar *) WDG_SWITCH_CASE)) {
101             aSwitchNode = hasParentRecursive(aCaseNode, WDG_SWITCH, NULL);
102           }
103           else if (!xmlStrcmp(aName, (const xmlChar *) WDG_TOOLBOX_BOX)) {
104             aSwitchNode = hasParentRecursive(aCaseNode, WDG_TOOLBOX, NULL);
105           }
106           else if (!xmlStrcmp(aName, (const xmlChar *)WDG_RADIOBOX_ITEM)) {
107             aSwitchNode = hasParentRecursive(aCaseNode, WDG_RADIOBOX, NULL);
108           }
109           if (!xmlStrcmp(aName, (const xmlChar *) WDG_OPTIONALBOX)) {
110             /// the box is optional, attribute is in case
111             /// if the optional attribute value is not empty
112             aSwitchNode = aCaseNode;
113           }
114           if (aSwitchNode)
115             aSwitchNodeID = getProperty(aSwitchNode, _ID);
116
117           aCases.push_back(std::make_pair(aSwitchNodeID, aCaseNodeID));
118           aCaseNode = hasParentRecursive(aSwitchNode, WDG_SWITCH_CASE,
119             WDG_TOOLBOX_BOX, WDG_OPTIONALBOX, WDG_RADIOBOX_ITEM, NULL);
120         }
121         aMessage->setCases(aCases);
122         Events_Loop::loop()->send(aMessage);
123       }
124     // container pages, like "case" or "box"
125     } else if (isNode(theNode, WDG_OPTIONALBOX, WDG_SWITCH, WDG_SWITCH_CASE,
126                       WDG_TOOLBOX, WDG_TOOLBOX_BOX,
127                       WDG_RADIOBOX, WDG_RADIOBOX_ITEM, NULL)) {
128       storeAttribute(theNode, _ID); // save case:caseId (or box:boxId)
129     }
130   }
131   //Process SOURCE nodes.
132   Config_XMLReader::processNode(theNode);
133 }
134
135 void Config_FeatureReader::cleanup(xmlNodePtr theNode)
136 {
137   if (isNode(theNode, WDG_OPTIONALBOX, WDG_SWITCH, WDG_SWITCH_CASE,
138     WDG_TOOLBOX, WDG_TOOLBOX_BOX, WDG_RADIOBOX_ITEM, WDG_RADIOBOX, NULL)) {
139     // cleanup id of cases when leave case node
140     cleanupAttribute(theNode, _ID);
141   }
142 }
143
144 bool Config_FeatureReader::processChildren(xmlNodePtr theNode)
145 {
146   bool result = isNode(theNode, NODE_WORKBENCH, NODE_GROUP, NULL);
147   if(!result && myIsProcessWidgets) {
148     result = isNode(theNode, NODE_FEATURE,
149                              WDG_GROUP, WDG_OPTIONALBOX,
150                              WDG_TOOLBOX, WDG_TOOLBOX_BOX,
151                              WDG_RADIOBOX, WDG_RADIOBOX_ITEM,
152                              WDG_SWITCH, WDG_SWITCH_CASE, NULL);
153   }
154   return result;
155 }
156
157 void Config_FeatureReader::fillFeature(xmlNodePtr theFeatureNode,
158   const std::shared_ptr<Config_FeatureMessage>& outFeatureMessage)
159 {
160   std::string anId = getProperty(theFeatureNode, _ID);
161   outFeatureMessage->setId(anId);
162   outFeatureMessage->setPluginLibrary(myLibraryName);
163   outFeatureMessage->setNestedFeatures(getProperty(theFeatureNode, FEATURE_NESTED));
164   outFeatureMessage->setActionsWhenNested(getNormalizedProperty(theFeatureNode,
165                                           FEATURE_WHEN_NESTED));
166   outFeatureMessage->setModal(getBooleanAttribute(theFeatureNode, FEATURE_MODAL, false));
167   bool isAutoPreview = getBooleanAttribute(theFeatureNode, FEATURE_AUTO_PREVIEW, true);
168   outFeatureMessage->setAutoPreview(isAutoPreview);
169   outFeatureMessage->setApplyContinue(
170     getBooleanAttribute(theFeatureNode, FEATURE_APPLY_CONTINUE, false));
171
172   bool isInternal = getBooleanAttribute(theFeatureNode, ATTR_INTERNAL, false);
173   outFeatureMessage->setInternal(isInternal);
174   if (isInternal) {
175     //Internal feature has no visual representation.
176     return;
177   }
178
179   std::string aText = Config_Translator::translate(anId, getProperty(theFeatureNode, FEATURE_TEXT));
180   outFeatureMessage->setText(aText);
181   std::string aToolTip = Config_Translator::translate(anId,
182                                                       getProperty(theFeatureNode, FEATURE_TOOLTIP));
183   outFeatureMessage->setTooltip(aToolTip);
184   outFeatureMessage->setIcon(getProperty(theFeatureNode, FEATURE_ICON));
185   outFeatureMessage->setKeysequence(getProperty(theFeatureNode, FEATURE_KEYSEQUENCE));
186   outFeatureMessage->setGroupId(restoreAttribute(NODE_GROUP, _ID));
187   outFeatureMessage->setWorkbenchId(restoreAttribute(NODE_WORKBENCH, _ID));
188   // Get document kind of a feature, if empty set workbench's kind (might be empty too)
189   std::string aDocKind = getProperty(theFeatureNode, FEATURE_DOC);
190   if(aDocKind.empty()) {
191     aDocKind = restoreAttribute(NODE_WORKBENCH, WORKBENCH_DOC);
192   }
193   outFeatureMessage->setDocumentKind(aDocKind);
194 }