Salome HOME
correct previous integration (Porting to Python 2.6)
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_HypothesesUtils.cxx
1 //  Copyright (C) 2007-2008  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 // SMESH SMESHGUI : GUI for SMESH component
23 // File   : SMESHGUI_HypothesesUtils.cxx
24 // Author : Julia DOROVSKIKH, Open CASCADE S.A.S.
25
26 // SMESH includes
27 #include "SMESHGUI_HypothesesUtils.h"
28
29 #include "SMESHGUI.h"
30 #include "SMESHGUI_Hypotheses.h"
31 #include "SMESHGUI_XmlHandler.h"
32 #include "SMESHGUI_Utils.h"
33 #include "SMESHGUI_GEOMGenUtils.h"
34
35 // SALOME GUI includes
36 #include <SUIT_Desktop.h>
37 #include <SUIT_MessageBox.h>
38 #include <SUIT_OverrideCursor.h>
39 #include <SUIT_ResourceMgr.h>
40
41 #include <SalomeApp_Study.h>
42 #include <SalomeApp_Tools.h>
43
44 // SALOME KERNEL includes
45 #include <utilities.h>
46
47 // STL includes
48 #include <string>
49
50 // Qt includes
51 #include <QMap>
52 //#include <QList>
53
54 // Other includes
55 #ifdef WNT
56 #include <windows.h>
57 #else
58 #include <dlfcn.h>
59 #endif
60
61 #ifdef WNT
62 #define LibHandle HMODULE
63 #define LoadLib( name ) LoadLibrary( name )
64 #define GetProc GetProcAddress
65 #define UnLoadLib( handle ) FreeLibrary( handle );
66 #else
67 #define LibHandle void*
68 #define LoadLib( name ) dlopen( name, RTLD_LAZY )
69 #define GetProc dlsym
70 #define UnLoadLib( handle ) dlclose( handle );
71 #endif
72
73 #ifdef _DEBUG_
74 static int MYDEBUG = 0;
75 #else
76 static int MYDEBUG = 0;
77 #endif
78
79 namespace SMESH
80 {
81   typedef QMap<QString,HypothesisData*> THypothesisDataMap;
82   THypothesisDataMap myHypothesesMap;
83   THypothesisDataMap myAlgorithmsMap;
84
85   // BUG 0020378
86   //typedef QMap<QString,SMESHGUI_GenericHypothesisCreator*> THypCreatorMap;
87   //THypCreatorMap myHypCreatorMap;
88
89   QList<HypothesesSet*> myListOfHypothesesSets;
90
91   void processHypothesisStatus(const int theHypStatus,
92                                SMESH::SMESH_Hypothesis_ptr theHyp,
93                                const bool theIsAddition)
94   {
95     if (theHypStatus > SMESH::HYP_OK) {
96       // get Hyp name
97       QString aHypName ("NULL Hypothesis");
98       if (!CORBA::is_nil(theHyp)) {
99         _PTR(SObject) Shyp = SMESH::FindSObject(theHyp);
100         if (Shyp)
101           // name in study
102           aHypName = Shyp->GetName().c_str();
103         else
104           // label in xml file
105           aHypName = GetHypothesisData(theHyp->GetName())->Label;
106       }
107
108       // message
109       bool isFatal = (theHypStatus >= SMESH::HYP_UNKNOWN_FATAL);
110       QString aMsg;
111       if (theIsAddition)
112         aMsg = (isFatal ? "SMESH_CANT_ADD_HYP" : "SMESH_ADD_HYP_WRN");
113       else
114         aMsg = (isFatal ? "SMESH_CANT_RM_HYP"  : "SMESH_RM_HYP_WRN");
115
116       aMsg = QObject::tr(aMsg.toLatin1().data()).arg(aHypName) +
117         QObject::tr(QString("SMESH_HYP_%1").arg(theHypStatus).toLatin1().data());
118
119       if ( theHypStatus == SMESH::HYP_HIDDEN_ALGO ) // PAL18501
120         aMsg = aMsg.arg( GetHypothesisData(theHyp->GetName())->Dim[0] );
121
122       SUIT_MessageBox::warning(SMESHGUI::desktop(),
123                                QObject::tr("SMESH_WRN_WARNING"),
124                                aMsg);
125     }
126   }
127
128
129   void InitAvailableHypotheses()
130   {
131     SUIT_OverrideCursor wc;
132     if (myHypothesesMap.empty() && myAlgorithmsMap.empty()) {
133       // Resource manager
134       SUIT_ResourceMgr* resMgr = SMESHGUI::resourceMgr();
135       if (!resMgr) return;
136
137       // Find name of a resource XML file ("SMESH_Meshers.xml");
138       QString HypsXml;
139       char* cenv = getenv("SMESH_MeshersList");
140       if (cenv)
141         HypsXml.sprintf("%s", cenv);
142
143       QStringList HypsXmlList = HypsXml.split(":", QString::SkipEmptyParts);
144       if (HypsXmlList.count() == 0) {
145         SUIT_MessageBox::critical(SMESHGUI::desktop(),
146                                   QObject::tr("SMESH_WRN_WARNING"),
147                                   QObject::tr("MESHERS_FILE_NO_VARIABLE"));
148         return;
149       }
150
151       // loop on files in HypsXml
152       QString aNoAccessFiles;
153       for (int i = 0; i < HypsXmlList.count(); i++) {
154         QString HypsXml = HypsXmlList[ i ];
155
156         // Find full path to the resource XML file
157         QString xmlFile = resMgr->path("resources", "SMESH", HypsXml + ".xml");
158         if ( xmlFile.isEmpty() ) // try PLUGIN resources
159           xmlFile = resMgr->path("resources", HypsXml, HypsXml + ".xml");
160         
161         QFile file (xmlFile);
162         if (file.exists() && file.open(QIODevice::ReadOnly)) {
163           file.close();
164
165           SMESHGUI_XmlHandler* aXmlHandler = new SMESHGUI_XmlHandler();
166           ASSERT(aXmlHandler);
167
168           QXmlInputSource source (&file);
169           QXmlSimpleReader reader;
170           reader.setContentHandler(aXmlHandler);
171           reader.setErrorHandler(aXmlHandler);
172           bool ok = reader.parse(source);
173           file.close();
174           if (ok) {
175             myHypothesesMap.unite( aXmlHandler->myHypothesesMap );
176             myAlgorithmsMap.unite( aXmlHandler->myAlgorithmsMap );
177             QList<HypothesesSet*>::iterator it, pos = myListOfHypothesesSets.begin();
178             for ( it = aXmlHandler->myListOfHypothesesSets.begin(); 
179                   it != aXmlHandler->myListOfHypothesesSets.end();
180                   ++it ) {
181               myListOfHypothesesSets.insert( pos, *it );
182             }
183           }
184           else {
185             SUIT_MessageBox::critical(SMESHGUI::desktop(),
186                                       QObject::tr("INF_PARSE_ERROR"),
187                                       QObject::tr(aXmlHandler->errorProtocol().toLatin1().data()));
188           }
189     delete aXmlHandler;
190         }
191         else {
192           if (aNoAccessFiles.isEmpty())
193             aNoAccessFiles = xmlFile;
194           else
195             aNoAccessFiles += ", " + xmlFile;
196         }
197       } // end loop
198
199
200       if (!aNoAccessFiles.isEmpty()) {
201         QString aMess = QObject::tr("MESHERS_FILE_CANT_OPEN") + " " + aNoAccessFiles + "\n";
202         aMess += QObject::tr("MESHERS_FILE_CHECK_VARIABLE");
203         wc.suspend();
204         SUIT_MessageBox::warning(SMESHGUI::desktop(),
205                                  QObject::tr("SMESH_WRN_WARNING"),
206                                  aMess);
207         wc.resume();
208       }
209     }
210   }
211
212
213   QStringList GetAvailableHypotheses( const bool isAlgo, 
214                                       const int theDim,                          
215                                       const bool isAux,
216                                       const bool isNeedGeometry)
217   {
218     QStringList aHypList;
219
220     // Init list of available hypotheses, if needed
221     InitAvailableHypotheses();
222     bool checkGeometry = ( !isNeedGeometry && isAlgo );
223     // fill list of hypotheses/algorithms
224     THypothesisDataMap& pMap = isAlgo ? myAlgorithmsMap : myHypothesesMap;
225     THypothesisDataMap::iterator anIter;
226     for ( anIter = pMap.begin(); anIter != pMap.end(); anIter++ ) {
227       HypothesisData* aData = anIter.value();
228       if ( ( theDim < 0 || aData->Dim.contains( theDim ) ) && aData->IsAux == isAux) {
229         if (checkGeometry) {
230           if (aData->IsNeedGeometry == isNeedGeometry)
231             aHypList.append(anIter.key());
232         }
233         else {
234           aHypList.append(anIter.key());
235         }
236       }
237     }
238     return aHypList;
239   }
240
241
242   QStringList GetHypothesesSets()
243   {
244     QStringList aSetNameList;
245
246     // Init list of available hypotheses, if needed
247     InitAvailableHypotheses();
248
249     QList<HypothesesSet*>::iterator hypoSet;
250     for ( hypoSet  = myListOfHypothesesSets.begin(); 
251           hypoSet != myListOfHypothesesSets.end();
252           ++hypoSet ) {
253       HypothesesSet* aSet = *hypoSet;
254       if ( aSet && aSet->count( true ) ) {
255         aSetNameList.append( aSet->name() );
256       }
257     }
258     
259     return aSetNameList;
260   }
261
262   HypothesesSet* GetHypothesesSet(const QString& theSetName)
263   {
264     QList<HypothesesSet*>::iterator hypoSet;
265     for ( hypoSet  = myListOfHypothesesSets.begin(); 
266           hypoSet != myListOfHypothesesSets.end();
267           ++hypoSet ) {
268       HypothesesSet* aSet = *hypoSet;
269       if ( aSet && aSet->name() == theSetName )
270         return aSet;
271     }
272     return 0;
273   }
274
275   HypothesisData* GetHypothesisData (const QString& aHypType)
276   {
277     HypothesisData* aHypData = 0;
278
279     // Init list of available hypotheses, if needed
280     InitAvailableHypotheses();
281
282     if (myHypothesesMap.find(aHypType) != myHypothesesMap.end()) {
283       aHypData = myHypothesesMap[aHypType];
284     }
285     else if (myAlgorithmsMap.find(aHypType) != myAlgorithmsMap.end()) {
286       aHypData = myAlgorithmsMap[aHypType];
287     }
288     return aHypData;
289   }
290
291   bool IsAvailableHypothesis(const HypothesisData* algoData,
292                              const QString&        hypType,
293                              bool&                 isAuxiliary)
294   {
295     isAuxiliary = false;
296     if ( !algoData )
297       return false;
298     if ( algoData->NeededHypos.contains( hypType ))
299       return true;
300     if ( algoData->OptionalHypos.contains( hypType)) {
301       isAuxiliary = true;
302       return true;
303     }
304     return false;
305   }
306
307   bool IsCompatibleAlgorithm(const HypothesisData* algo1Data,
308                              const HypothesisData* algo2Data)
309   {
310     if ( !algo1Data || !algo2Data )
311       return false;
312     const HypothesisData* algoIn = algo1Data, *algoMain = algo2Data;
313     if ( algoIn->Dim.first() > algoMain->Dim.first() ) {
314       algoIn = algo2Data; algoMain = algo1Data;
315     }
316     // look for any output type of algoIn between input types of algoMain
317     QStringList::const_iterator inElemType = algoIn->OutputTypes.begin();
318     for ( ; inElemType != algoIn->OutputTypes.end(); ++inElemType )
319       if ( algoMain->InputTypes.contains( *inElemType ))
320         return true;
321     return false;
322   }
323
324   SMESHGUI_GenericHypothesisCreator* GetHypothesisCreator(const QString& aHypType)
325   {
326     if(MYDEBUG) MESSAGE("Get HypothesisCreator for " << aHypType.toLatin1().data());
327
328     SMESHGUI_GenericHypothesisCreator* aCreator = 0;
329
330     // check, if creator for this hypothesis type already exists
331     // BUG 0020378
332     //if (myHypCreatorMap.find(aHypType) != myHypCreatorMap.end()) {
333     //  aCreator = myHypCreatorMap[aHypType];
334     //}
335     //else
336     {
337       // 1. Init list of available hypotheses, if needed
338       InitAvailableHypotheses();
339
340       // 2. Get names of plugin libraries
341       HypothesisData* aHypData = GetHypothesisData(aHypType);
342       if (!aHypData) 
343         return aCreator;
344
345       QString aClientLibName = aHypData->ClientLibName;
346       QString aServerLibName = aHypData->ServerLibName;
347
348       // 3. Load Client Plugin Library
349       try {
350         // load plugin library
351         if(MYDEBUG) MESSAGE("Loading client meshers plugin library ...");
352         LibHandle libHandle = LoadLib( aClientLibName.toLatin1().data() );
353         if (!libHandle) {
354           // report any error, if occured
355           if ( MYDEBUG ) {
356 #ifdef WIN32
357             const char* anError = "Can't load client meshers plugin library";
358 #else
359             const char* anError = dlerror();      
360 #endif
361             MESSAGE(anError);
362           }
363         }
364         else {
365           // get method, returning hypothesis creator
366           if(MYDEBUG) MESSAGE("Find GetHypothesisCreator() method ...");
367           typedef SMESHGUI_GenericHypothesisCreator* (*GetHypothesisCreator) \
368             ( const QString& );
369           GetHypothesisCreator procHandle =
370             (GetHypothesisCreator)GetProc(libHandle, "GetHypothesisCreator");
371           if (!procHandle) {
372             if(MYDEBUG) MESSAGE("bad hypothesis client plugin library");
373             UnLoadLib(libHandle);
374           }
375           else {
376             // get hypothesis creator
377             if(MYDEBUG) MESSAGE("Get Hypothesis Creator for " << aHypType.toLatin1().data());
378             aCreator = procHandle( aHypType );
379             if (!aCreator) {
380               if(MYDEBUG) MESSAGE("no such a hypothesis in this plugin");
381             }
382             else {
383               // map hypothesis creator to a hypothesis name
384               // BUG 0020378
385               //myHypCreatorMap[aHypType] = aCreator;
386             }
387           }
388         }
389       }
390       catch (const SALOME::SALOME_Exception& S_ex) {
391         SalomeApp_Tools::QtCatchCorbaException(S_ex);
392       }
393     }
394
395     return aCreator;
396   }
397
398
399   SMESH::SMESH_Hypothesis_ptr CreateHypothesis(const QString& aHypType,
400                                                const QString& aHypName,
401                                                const bool isAlgo)
402   {
403     if(MYDEBUG) MESSAGE("Create " << aHypType.toLatin1().data() << 
404                         " with name " << aHypName.toLatin1().data());
405     HypothesisData* aHypData = GetHypothesisData(aHypType);
406     QString aServLib = aHypData->ServerLibName;
407     try {
408       SMESH::SMESH_Hypothesis_var aHypothesis;
409       aHypothesis = SMESHGUI::GetSMESHGen()->CreateHypothesis(aHypType.toLatin1().data(),
410                                                               aServLib.toLatin1().data());
411       if (!aHypothesis->_is_nil()) {
412         _PTR(SObject) aHypSObject = SMESH::FindSObject(aHypothesis.in());
413         if (aHypSObject) {
414           if (!aHypName.isEmpty())
415             SMESH::SetName(aHypSObject, aHypName);
416           SMESHGUI::GetSMESHGUI()->updateObjBrowser();
417           return aHypothesis._retn();
418         }
419       }
420     } catch (const SALOME::SALOME_Exception & S_ex) {
421       SalomeApp_Tools::QtCatchCorbaException(S_ex);
422     }
423
424     return SMESH::SMESH_Hypothesis::_nil();
425   }
426
427
428   bool AddHypothesisOnMesh (SMESH::SMESH_Mesh_ptr aMesh, SMESH::SMESH_Hypothesis_ptr aHyp)
429   {
430     if(MYDEBUG) MESSAGE ("SMESHGUI::AddHypothesisOnMesh");
431     int res = SMESH::HYP_UNKNOWN_FATAL;
432     SUIT_OverrideCursor wc;
433
434     if (!aMesh->_is_nil()) {
435       _PTR(SObject) SM = SMESH::FindSObject(aMesh);
436       GEOM::GEOM_Object_var aShapeObject = SMESH::GetShapeOnMeshOrSubMesh(SM);
437       try {
438         res = aMesh->AddHypothesis(aShapeObject, aHyp);
439         if (res < SMESH::HYP_UNKNOWN_FATAL) {
440           _PTR(SObject) aSH = SMESH::FindSObject(aHyp);
441           if (SM && aSH) {
442             SMESH::ModifiedMesh(SM, false, aMesh->NbNodes()==0);
443           }
444         }
445         if (res > SMESH::HYP_OK) {
446           wc.suspend();
447           processHypothesisStatus(res, aHyp, true);
448           wc.resume();
449         }
450       }
451       catch(const SALOME::SALOME_Exception& S_ex) {
452         wc.suspend();
453         SalomeApp_Tools::QtCatchCorbaException(S_ex);
454         res = SMESH::HYP_UNKNOWN_FATAL;
455       }
456     }
457     return res < SMESH::HYP_UNKNOWN_FATAL;
458   }
459
460
461   bool AddHypothesisOnSubMesh (SMESH::SMESH_subMesh_ptr aSubMesh, SMESH::SMESH_Hypothesis_ptr aHyp)
462   {
463     if(MYDEBUG) MESSAGE("SMESHGUI::AddHypothesisOnSubMesh() ");
464     int res = SMESH::HYP_UNKNOWN_FATAL;
465     SUIT_OverrideCursor wc;
466
467     if (!aSubMesh->_is_nil() && ! aHyp->_is_nil()) {
468       try {
469         SMESH::SMESH_Mesh_var aMesh = aSubMesh->GetFather();
470         _PTR(SObject) SsubM = SMESH::FindSObject(aSubMesh);
471         GEOM::GEOM_Object_var aShapeObject = SMESH::GetShapeOnMeshOrSubMesh(SsubM);
472         if (!aMesh->_is_nil() && SsubM && !aShapeObject->_is_nil()) {
473           res = aMesh->AddHypothesis(aShapeObject, aHyp);
474           if (res < SMESH::HYP_UNKNOWN_FATAL)  {
475             _PTR(SObject) meshSO = SMESH::FindSObject(aMesh);
476             if (meshSO)
477               SMESH::ModifiedMesh(meshSO, false, aMesh->NbNodes()==0);
478           }
479           if (res > SMESH::HYP_OK) {
480             wc.suspend();
481             processHypothesisStatus(res, aHyp, true);
482             wc.resume();
483           }
484         }
485         else {
486           SCRUTE(aHyp->_is_nil());
487           SCRUTE(aMesh->_is_nil());
488           SCRUTE(!SsubM);
489           SCRUTE(aShapeObject->_is_nil());
490         }
491       }
492       catch(const SALOME::SALOME_Exception& S_ex) {
493         wc.suspend();
494         SalomeApp_Tools::QtCatchCorbaException(S_ex);
495         res = SMESH::HYP_UNKNOWN_FATAL;
496       }
497     }
498     else {
499       SCRUTE(aSubMesh->_is_nil());
500       SCRUTE(aHyp->_is_nil());
501     }
502     return res < SMESH::HYP_UNKNOWN_FATAL;
503   }
504
505   bool RemoveHypothesisOrAlgorithmOnMesh (const Handle(SALOME_InteractiveObject)& IObject)
506   {
507     int res = SMESH::HYP_UNKNOWN_FATAL;
508     SUIT_OverrideCursor wc;
509
510     try {
511       _PTR(Study) aStudy = GetActiveStudyDocument();
512       _PTR(SObject) aHypObj = aStudy->FindObjectID( IObject->getEntry() );
513       if( aHypObj )
514         {
515           _PTR(SObject) MorSM = SMESH::GetMeshOrSubmesh( aHypObj );
516           _PTR(SObject) aRealHypo;
517           if( aHypObj->ReferencedObject( aRealHypo ) )
518             {
519               SMESH_Hypothesis_var hypo = SMESH_Hypothesis::_narrow( SObjectToObject( aRealHypo ) );
520               RemoveHypothesisOrAlgorithmOnMesh( MorSM, hypo );
521             }
522           else
523             {
524               SMESH_Hypothesis_var hypo = SMESH_Hypothesis::_narrow( SObjectToObject( aHypObj ) );
525               SObjectList meshList = GetMeshesUsingAlgoOrHypothesis( hypo );
526               for( int i = 0; i < meshList.size(); i++ )
527                 RemoveHypothesisOrAlgorithmOnMesh( meshList[ i ], hypo );
528             }
529         }
530     }
531     catch(const SALOME::SALOME_Exception& S_ex)
532       {
533         wc.suspend();
534         SalomeApp_Tools::QtCatchCorbaException(S_ex);
535         res = SMESH::HYP_UNKNOWN_FATAL;
536       }
537     return res < SMESH::HYP_UNKNOWN_FATAL;
538   }
539
540   bool RemoveHypothesisOrAlgorithmOnMesh (_PTR(SObject) MorSM,
541                                           SMESH::SMESH_Hypothesis_ptr anHyp)
542   {
543     SALOMEDS::GenericAttribute_var anAttr;
544     SALOMEDS::AttributeIOR_var anIOR;
545     int res = SMESH::HYP_UNKNOWN_FATAL;
546     SUIT_OverrideCursor wc;
547
548     if (MorSM) {
549       try {
550         GEOM::GEOM_Object_var aShapeObject = SMESH::GetShapeOnMeshOrSubMesh(MorSM);
551         SMESH::SMESH_Mesh_var aMesh = SMESH::SObjectToInterface<SMESH::SMESH_Mesh>(MorSM);
552         SMESH::SMESH_subMesh_var aSubMesh = SMESH::SObjectToInterface<SMESH::SMESH_subMesh>(MorSM);
553         
554         if (!aSubMesh->_is_nil())
555           aMesh = aSubMesh->GetFather();
556         
557         if (!aMesh->_is_nil()) {    
558           if (aMesh->HasShapeToMesh() && !aShapeObject->_is_nil()) {
559             res = aMesh->RemoveHypothesis(aShapeObject, anHyp);
560             if (res < SMESH::HYP_UNKNOWN_FATAL) {
561               _PTR(SObject) meshSO = SMESH::FindSObject(aMesh);
562               if (meshSO)
563                 SMESH::ModifiedMesh(meshSO, false, aMesh->NbNodes()==0);
564             }
565             
566           }
567           else if(!aMesh->HasShapeToMesh()){
568             res = aMesh->RemoveHypothesis(aShapeObject, anHyp);
569             if (res < SMESH::HYP_UNKNOWN_FATAL) {
570               _PTR(SObject) meshSO = SMESH::FindSObject(aMesh);
571               if (meshSO)
572                 SMESH::ModifiedMesh(meshSO, false, aMesh->NbNodes()==0);              
573             }
574           }
575           if (res > SMESH::HYP_OK) {
576             wc.suspend();
577             processHypothesisStatus(res, anHyp, false);
578             wc.resume();
579           }
580         }
581       } catch(const SALOME::SALOME_Exception& S_ex) {
582         wc.suspend();
583         SalomeApp_Tools::QtCatchCorbaException(S_ex);
584         res = SMESH::HYP_UNKNOWN_FATAL;
585       }
586     }
587     return res < SMESH::HYP_UNKNOWN_FATAL;
588   }
589
590   SObjectList GetMeshesUsingAlgoOrHypothesis(SMESH::SMESH_Hypothesis_ptr AlgoOrHyp)
591   {
592     SObjectList listSOmesh;
593     listSOmesh.resize(0);
594
595     unsigned int index = 0;
596     if (!AlgoOrHyp->_is_nil()) {
597       _PTR(SObject) SO_Hypothesis = SMESH::FindSObject(AlgoOrHyp);
598       if (SO_Hypothesis) {
599         SObjectList listSO =
600           SMESHGUI::activeStudy()->studyDS()->FindDependances(SO_Hypothesis);
601
602         if(MYDEBUG) MESSAGE("SMESHGUI::GetMeshesUsingAlgoOrHypothesis(): dependency number ="<<listSO.size());
603         for (unsigned int i = 0; i < listSO.size(); i++) {
604           _PTR(SObject) SO = listSO[i];
605           if (SO) {
606             _PTR(SObject) aFather = SO->GetFather();
607             if (aFather) {
608               _PTR(SObject) SOfatherFather = aFather->GetFather();
609               if (SOfatherFather) {
610                 if(MYDEBUG) MESSAGE("SMESHGUI::GetMeshesUsingAlgoOrHypothesis(): dependency added to list");
611                 index++;
612                 listSOmesh.resize(index);
613                 listSOmesh[index - 1] = SOfatherFather;
614               }
615             }
616           }
617         }
618       }
619     }
620     if (MYDEBUG) MESSAGE("SMESHGUI::GetMeshesUsingAlgoOrHypothesis(): completed");
621     return listSOmesh;
622   }
623
624 #define CASE2MESSAGE(enum) case SMESH::enum: msg = QObject::tr( "STATE_" #enum ); break;
625   QString GetMessageOnAlgoStateErrors(const algo_error_array& errors)
626   {
627     QString resMsg; // PAL14861 = QObject::tr("SMESH_WRN_MISSING_PARAMETERS") + ":\n";
628     for ( int i = 0; i < errors.length(); ++i ) {
629       const SMESH::AlgoStateError & error = errors[ i ];
630       const bool hasAlgo = ( strlen( error.algoName ) != 0 );
631       QString msg;
632       if ( !hasAlgo )
633         msg = QObject::tr( "STATE_ALGO_MISSING" );
634       else 
635         switch( error.state ) {
636           CASE2MESSAGE( HYP_MISSING );
637           CASE2MESSAGE( HYP_NOTCONFORM );
638           CASE2MESSAGE( HYP_BAD_PARAMETER );
639           CASE2MESSAGE( HYP_BAD_GEOMETRY );
640         default: continue;
641         }
642       // apply args to message:
643       // %1 - algo name
644       if ( hasAlgo )
645         msg = msg.arg( error.algoName.in() );
646       // %2 - dimension
647       msg = msg.arg( error.algoDim );
648       // %3 - global/local
649       msg = msg.arg( QObject::tr( error.isGlobalAlgo ? "GLOBAL_ALGO" : "LOCAL_ALGO" ));
650       // %4 - hypothesis dim == algoDim
651       msg = msg.arg( error.algoDim );
652
653       if ( i ) resMsg += ";\n";
654       resMsg += msg;
655     }
656     return resMsg;
657   }
658 } // end of namespace SMESH