Salome HOME
Merge from V5_1_main 14/05/2010
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_XmlHandler.cxx
1 //  Copyright (C) 2007-2010  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.
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 /*!
40   Constructor
41 */
42 SMESHGUI_XmlHandler::SMESHGUI_XmlHandler()
43 {
44 }
45
46 /*!
47   Destructor
48 */
49 SMESHGUI_XmlHandler::~SMESHGUI_XmlHandler()
50 {
51 }
52
53 /*!
54   Starts parsing of document. Does some initialization
55
56   Reimplemented from QXmlDefaultHandler.
57 */
58 bool SMESHGUI_XmlHandler::startDocument()
59 {
60   myErrorProt = "";
61   return true;
62 }
63
64 /*!
65   Does different actions depending on the name of the tag and the
66   state you are in document.
67
68   Reimplemented from QXmlDefaultHandler.
69 */
70 bool SMESHGUI_XmlHandler::startElement (const QString&, const QString&, 
71                                         const QString& qName, 
72                                         const QXmlAttributes& atts)
73 {
74   if (qName == "meshers")
75   {
76     myHypothesesMap.clear();
77     myAlgorithmsMap.clear();
78   }
79   else if (qName == "meshers-group") // group of hypotheses and algorithms
80   {
81 //    if (atts.value("server-lib") != "")
82     {
83       myPluginName = atts.value("name");
84       myServerLib  = atts.value("server-lib");
85       myClientLib  = atts.value("gui-lib");
86 /* It's Need to tranlate lib name for WIN32 or X platform
87  * (only client lib, because server lib translates in SMESH_Gen_i::createHypothesis
88  *  for normal work of *.py files )
89  */
90       if( !myClientLib.isEmpty() )
91       {
92 #ifdef WNT
93       //myServerLib += ".dll";
94         myClientLib += ".dll";
95 #else
96       //myServerLib = "lib" + myServerLib + ".so";
97         myClientLib = "lib" + myClientLib + ".so";
98 #endif
99       }
100
101
102       QString aResName = atts.value("resources");
103       if (aResName != "")
104       {
105         MESSAGE("Loading Resources " << aResName.toLatin1().data());
106         SUIT_ResourceMgr* resMgr = SMESHGUI::resourceMgr();
107         QString lang = resMgr->stringValue( resMgr->langSection(), "language", "en" );
108         resMgr->loadTranslator( "resources", QString( "%1_msg_%2.qm" ).arg( aResName, lang ) );
109         resMgr->loadTranslator( "resources", QString( "%1_images.qm" ).arg( aResName, lang ) );
110       }
111     }
112   }
113   else if (qName == "hypotheses") // group of hypotheses
114   {
115   }
116   else if (qName == "algorithms") // group of algorithms
117   {
118   }
119   else if (qName == "hypothesis" || qName == "algorithm") // hypothesis or algorithm
120   {
121     if (atts.value("type") != "")
122     {
123       QString aHypAlType = atts.value("type");
124       QString aLabel = atts.value("label-id");
125       QString anIcon = atts.value("icon-id");
126       bool isAux = atts.value("auxiliary") == "true";
127       bool isNeedGeom = true, isSupportSubmeshes = false;
128       QString aNeedGeom = atts.value("need-geom");
129       if ( !aNeedGeom.isEmpty() )
130         isNeedGeom = (aNeedGeom == "true");
131       QString suppSub = atts.value("support-submeshes");
132       if ( !suppSub.isEmpty() )
133         isSupportSubmeshes = (suppSub == "true");
134
135       QString aDimStr = atts.value("dim");
136       aDimStr = aDimStr.remove( ' ' );
137       QStringList aDimList = aDimStr.split( ',', QString::SkipEmptyParts );
138       QStringList::iterator anIter;
139       bool isOk;
140       QList<int> aDim;
141       for ( anIter = aDimList.begin(); anIter != aDimList.end(); ++anIter )
142       {
143         int aVal = (*anIter).toInt( &isOk );
144         if ( isOk )
145           aDim.append( aVal );
146       }
147
148       // for algo
149       enum { HYPOS = 0, OPT_HYPOS, INPUT, OUTPUT, NB_ATTRIBUTES };
150       const char* name [NB_ATTRIBUTES] = { "hypos", "opt-hypos", "input", "output" };
151       QStringList attr [NB_ATTRIBUTES];
152       for ( int i = 0; i < NB_ATTRIBUTES; ++i ) {
153         QString aStr = atts.value( name[i] );
154         if ( !aStr.isEmpty() ) {
155           aStr.remove( ' ' );
156           attr[ i ] = aStr.split( ',', QString::SkipEmptyParts );
157         }
158       }
159       
160       HypothesisData* aHypData =
161         new HypothesisData (aHypAlType, myPluginName, myServerLib, myClientLib,
162                             aLabel, anIcon, aDim, isAux,
163                             attr[ HYPOS ], attr[ OPT_HYPOS ], attr[ INPUT ], attr[ OUTPUT ],
164                             isNeedGeom, isSupportSubmeshes );
165
166       if (qName == "algorithm")
167       {
168         myAlgorithmsMap[aHypAlType] = aHypData;
169       }
170       else
171       {
172         myHypothesesMap[aHypAlType] = aHypData;
173       }
174     }
175   }
176   else if (qName == "hypotheses-set-group") // group of sets of hypotheses
177   {
178   }
179   else if (qName == "hypotheses-set") // a set of hypotheses
180   {
181     if (atts.value("name") != "")
182     {
183       HypothesesSet* aHypoSet = new HypothesesSet ( atts.value("name") );
184       myListOfHypothesesSets.append( aHypoSet );
185
186       for ( int isHypo = 0; isHypo < 2; ++isHypo )
187       {
188         QString aHypos = isHypo ? atts.value("hypos") : atts.value("algos");
189         aHypos = aHypos.remove( ' ' );
190         aHypoSet->set( !isHypo, aHypos.split( ',', QString::SkipEmptyParts ) );
191       }
192     }
193   }
194   else
195   {
196     // error
197     return false;
198   }
199   return true;
200 }
201
202
203 /*!
204   Reimplemented from QXmlDefaultHandler.
205 */
206 bool SMESHGUI_XmlHandler::endElement (const QString&, const QString&, const QString&)
207 {
208   return true;
209 }
210
211
212 /*!
213   Reimplemented from QXmlDefaultHandler.
214 */
215 bool SMESHGUI_XmlHandler::characters (const QString& ch)
216 {
217   // we are not interested in whitespaces
218   QString ch_simplified = ch.simplified();
219   if ( ch_simplified.isEmpty() )
220     return true;
221   return true;
222 }
223
224
225 /*!
226   Returns the default error string.
227
228   Reimplemented from QXmlDefaultHandler.
229 */
230 QString SMESHGUI_XmlHandler::errorString()
231 {
232   return "the document is not in the quote file format";
233 }
234
235 /*!
236   Returns the error protocol if parsing failed
237
238   Reimplemented from QXmlDefaultHandler.
239 */
240 QString SMESHGUI_XmlHandler::errorProtocol()
241 {
242   return myErrorProt;
243 }
244
245 /*!
246   Returns exception
247
248   Reimplemented from QXmlDefaultHandler.
249 */
250 bool SMESHGUI_XmlHandler::fatalError (const QXmlParseException& exception)
251 {
252   myErrorProt += QString("fatal parsing error: %1 in line %2, column %3\n")
253     .arg(exception.message())
254     .arg(exception.lineNumber())
255     .arg(exception.columnNumber());
256   
257   return QXmlDefaultHandler::fatalError( exception );
258 }