Salome HOME
3482d7672fd632e6f0433a016194abb9f4992a73
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_XmlHandler.cxx
1 // Copyright (C) 2007-2016  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 // SMESH SMESHGUI : reading of xml file with list of available hypotheses and algorithms
24 // File   : SMESHGUI_XmlHandler.cxx
25 // Author : Julia DOROVSKIKH, Open CASCADE S.A.S.
26 // SMESH includes
27 //
28 #include "SMESHGUI_XmlHandler.h"
29
30 #include "SMESHGUI.h"
31 #include "SMESHGUI_Hypotheses.h"
32
33 // SALOME GUI includes
34 #include "SUIT_ResourceMgr.h"
35
36 // SALOME KERNEL includes
37 #include <utilities.h>
38
39 #define BAD_HYP_FLAG "NOT_FOUND"
40
41 /*!
42   Constructor
43 */
44 SMESHGUI_XmlHandler::SMESHGUI_XmlHandler()
45 {
46 }
47
48 /*!
49   Destructor
50 */
51 SMESHGUI_XmlHandler::~SMESHGUI_XmlHandler()
52 {
53 }
54
55 /*!
56   Starts parsing of document. Does some initialization
57
58   Reimplemented from QXmlDefaultHandler.
59 */
60 bool SMESHGUI_XmlHandler::startDocument()
61 {
62   myErrorProt = "";
63   return true;
64 }
65
66 /*!
67   Does different actions depending on the name of the tag and the
68   state you are in document.
69
70   Reimplemented from QXmlDefaultHandler.
71 */
72 bool SMESHGUI_XmlHandler::startElement (const QString&, const QString&,
73                                         const QString& qName,
74                                         const QXmlAttributes& atts)
75 {
76   if (qName == "meshers")
77   {
78     myHypothesesMap.clear();
79     myAlgorithmsMap.clear();
80   }
81   else if (qName == "meshers-group") // group of hypotheses and algorithms
82   {
83     //    if (atts.value("server-lib") != "")
84     {
85       myPluginName = atts.value("name");
86       myServerLib  = atts.value("server-lib");
87       myClientLib  = atts.value("gui-lib");
88       /* It's Need to tranlate lib name for WIN32 or X platform
89        * (only client lib, because server lib translates in SMESH_Gen_i::createHypothesis
90        *  for normal work of *.py files )
91        */
92       if( !myClientLib.isEmpty() )
93       {
94 #ifdef WIN32
95         //myServerLib += ".dll";
96         myClientLib += ".dll";
97 #else
98         //myServerLib = "lib" + myServerLib + ".so";
99         myClientLib = "lib" + myClientLib + ".so";
100 #endif
101       }
102
103
104       QString aResName = atts.value("resources");
105       if (aResName != "")
106       {
107         //MESSAGE("Loading Resources " << aResName.toLatin1().data());
108         SUIT_ResourceMgr* resMgr = SMESHGUI::resourceMgr();
109         QString lang = resMgr->stringValue( resMgr->langSection(), "language", "en" );
110         resMgr->loadTranslator( "resources", QString( "%1_msg_%2.qm" ).arg( aResName, lang ) );
111         resMgr->loadTranslator( "resources", QString( "%1_images.qm" ).arg( aResName, lang ) );
112       }
113     }
114   }
115   else if (qName == "hypotheses") // group of hypotheses
116   {
117   }
118   else if (qName == "algorithms") // group of algorithms
119   {
120   }
121   else if (qName == "hypothesis" || qName == "algorithm") // hypothesis or algorithm
122   {
123     if (atts.value("type") != "")
124     {
125       QString aHypAlType = atts.value("type");
126       QString     aLabel = atts.value("label-id");
127       QString     anIcon = atts.value("icon-id");
128       bool isAuxOrNeedHyp = ( qName == "hypothesis" ?
129                               atts.value("auxiliary") == "true" :
130                               atts.value("need-hyp" ) == "true" );
131       int  isNeedGeom = 1;
132       bool isSupportSubmeshes = false;
133       QString aNeedGeom = atts.value("need-geom");
134       if ( !aNeedGeom.isEmpty() )
135         isNeedGeom = (aNeedGeom == "true") ? 1 : (aNeedGeom == "never") ? -1 : 0;
136       QString suppSub = atts.value("support-submeshes");
137       if ( !suppSub.isEmpty() )
138         isSupportSubmeshes = (suppSub == "true");
139       QString context = atts.value("context");
140       if ( context.isEmpty() )
141         context = "ANY";
142       else
143         context = context.toUpper();
144
145       bool isOk;
146       QString groupIDStr = atts.value("group-id");
147       int groupID = groupIDStr.toUInt( &isOk );
148       if ( !isOk ) groupID = -1;
149       QString priorityStr = atts.value("priority");
150       int priority = priorityStr.toUInt( &isOk );
151       if ( !isOk ) priority = -1;
152
153       QString aDimStr = atts.value("dim");
154       aDimStr = aDimStr.remove( ' ' );
155       QStringList aDimList = aDimStr.split( ',', QString::SkipEmptyParts );
156       QStringList::iterator anIter;
157       QList<int> aDim;
158       for ( anIter = aDimList.begin(); anIter != aDimList.end(); ++anIter )
159       {
160         int aVal = (*anIter).toInt( &isOk );
161         if ( isOk )
162           aDim.append( aVal );
163       }
164
165       // for algo
166       enum { HYPOS = 0, OPT_HYPOS, INPUT, OUTPUT, NB_ATTRIBUTES };
167       const char* name [NB_ATTRIBUTES] = { "hypos", "opt-hypos", "input", "output" };
168       QStringList attr [NB_ATTRIBUTES];
169       for ( int i = 0; i < NB_ATTRIBUTES; ++i ) {
170         QString aStr = atts.value( name[i] );
171         if ( !aStr.isEmpty() ) {
172           attr[i] = aStr.split( ',', QString::SkipEmptyParts );
173           for ( int j = 0; j < attr[i].count(); ++j )
174             attr[i][j] = attr[i][j].trimmed();
175         }
176       }
177
178       if ( !aHypAlType.contains( BAD_HYP_FLAG ) ) {
179         HypothesisData* aHypData =
180           new HypothesisData (aHypAlType, myPluginName, myServerLib, myClientLib,
181                               aLabel, anIcon, context, groupID, priority, aDim, isAuxOrNeedHyp,
182                               attr[ HYPOS ], attr[ OPT_HYPOS ], attr[ INPUT ], attr[ OUTPUT ],
183                               isNeedGeom, isSupportSubmeshes );
184
185         if (qName == "algorithm")
186         {
187           myAlgorithmsMap.insert(aHypAlType,aHypData);
188         }
189         else
190         {
191           myHypothesesMap.insert(aHypAlType,aHypData);
192         }
193       }
194     }
195   }
196   else if (qName == "hypotheses-set-group") // group of sets of hypotheses
197   {
198   }
199   else if (qName == "hypotheses-set") // a set of hypotheses
200   {
201     if (atts.value("name") != "")
202     {
203       QString hypos = atts.value("hypos").remove( ' ' );
204       QString algos = atts.value("algos").remove( ' ' );
205       bool badSet = hypos.contains( BAD_HYP_FLAG ) || algos.contains( BAD_HYP_FLAG );
206
207       if ( !badSet )
208         myListOfHypothesesSets.append( new HypothesesSet ( atts.value("name"),
209                                                            hypos.split( ',', QString::SkipEmptyParts ),
210                                                            algos.split( ',', QString::SkipEmptyParts ) ) );
211     }
212   }
213   else if ( qName == "python-wrap" ||
214             qName == "algo"        ||
215             qName == "hypo"        ||
216             qName == "accumulative-methods")
217   {
218     // elements used in SMESH_2smeshpy
219     return true;
220   }
221   else
222   {
223     // error
224     return false;
225   }
226   return true;
227 }
228
229
230 /*!
231   Reimplemented from QXmlDefaultHandler.
232 */
233 bool SMESHGUI_XmlHandler::endElement (const QString&, const QString&, const QString&)
234 {
235   return true;
236 }
237
238
239 /*!
240   Reimplemented from QXmlDefaultHandler.
241 */
242 bool SMESHGUI_XmlHandler::characters (const QString& ch)
243 {
244   // we are not interested in whitespaces
245   QString ch_simplified = ch.simplified();
246   if ( ch_simplified.isEmpty() )
247     return true;
248   return true;
249 }
250
251
252 /*!
253   Returns the default error string.
254
255   Reimplemented from QXmlDefaultHandler.
256 */
257 QString SMESHGUI_XmlHandler::errorString()
258 {
259   return "the document is not in the quote file format";
260 }
261
262 /*!
263   Returns the error protocol if parsing failed
264
265   Reimplemented from QXmlDefaultHandler.
266 */
267 QString SMESHGUI_XmlHandler::errorProtocol()
268 {
269   return myErrorProt;
270 }
271
272 /*!
273   Returns exception
274
275   Reimplemented from QXmlDefaultHandler.
276 */
277 bool SMESHGUI_XmlHandler::fatalError (const QXmlParseException& exception)
278 {
279   myErrorProt += QString("fatal parsing error: %1 in line %2, column %3\n")
280     .arg(exception.message())
281     .arg(exception.lineNumber())
282     .arg(exception.columnNumber());
283   
284   return QXmlDefaultHandler::fatalError( exception );
285 }