Salome HOME
#17845 [EDF] Modifications of Automatic meshing
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_HypothesesUtils.cxx
1 // Copyright (C) 2007-2019  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 : GUI for SMESH component
24 // File   : SMESHGUI_HypothesesUtils.cxx
25 // Author : Julia DOROVSKIKH, Open CASCADE S.A.S.
26 // SMESH includes
27 //
28 #include "SMESHGUI_HypothesesUtils.h"
29
30 #include "SMESHGUI.h"
31 #include "SMESHGUI_GEOMGenUtils.h"
32 #include "SMESHGUI_Hypotheses.h"
33 #include "SMESHGUI_Utils.h"
34 #include "SMESHGUI_VTKUtils.h"
35 #include "SMESHGUI_XmlHandler.h"
36
37 #include "SMESH_Actor.h"
38
39 // SALOME GUI includes
40 #include <SUIT_Desktop.h>
41 #include <SUIT_MessageBox.h>
42 #include <SUIT_OverrideCursor.h>
43 #include <SUIT_ResourceMgr.h>
44
45 #include <SalomeApp_Study.h>
46 #include <SalomeApp_Tools.h>
47
48 // SALOME KERNEL includes
49 #include <utilities.h>
50
51 // STL includes
52 #include <string>
53
54 // Qt includes
55 #include <QDir>
56
57
58 // Other includes
59 #ifdef WIN32
60 #include <windows.h>
61 #else
62 #include <dlfcn.h>
63 #endif
64
65 #ifdef WIN32
66  #define LibHandle HMODULE
67  #define LoadLib( name ) LoadLibrary( name )
68  #define GetProc GetProcAddress
69  #define UnLoadLib( handle ) FreeLibrary( handle );
70 #else // WIN32
71  #define LibHandle void*
72  #ifdef DYNLOAD_LOCAL
73   #define LoadLib( name ) dlopen( name, RTLD_LAZY | RTLD_LOCAL )
74  #else // DYNLOAD_LOCAL
75   #define LoadLib( name ) dlopen( name, RTLD_LAZY | RTLD_GLOBAL )
76  #endif // DYNLOAD_LOCAL
77  #define GetProc dlsym
78  #define UnLoadLib( handle ) dlclose( handle );
79 #endif // WIN32
80
81 #ifdef _DEBUG_
82 static int MYDEBUG = 0;
83 #else
84 static int MYDEBUG = 0;
85 #endif
86
87 namespace SMESH
88 {
89   typedef IMap<QString,HypothesisData*> THypothesisDataMap;
90   THypothesisDataMap myHypothesesMap;
91   THypothesisDataMap myAlgorithmsMap;
92
93   // BUG 0020378
94   //typedef QMap<QString,SMESHGUI_GenericHypothesisCreator*> THypCreatorMap;
95   //THypCreatorMap myHypCreatorMap;
96
97   QList<HypothesesSet*> myListOfHypothesesSets;
98
99   void processHypothesisStatus(const int                   theHypStatus,
100                                SMESH::SMESH_Hypothesis_ptr theHyp,
101                                const bool                  theIsAddition,
102                                const char*                 theError = 0)
103   {
104     if (theHypStatus > SMESH::HYP_OK) {
105       // get Hyp name
106       QString aHypName ("NULL Hypothesis");
107       if (!CORBA::is_nil(theHyp)) {
108         _PTR(SObject) Shyp = SMESH::FindSObject(theHyp);
109         if (Shyp) {
110           // name in study
111           aHypName = Shyp->GetName().c_str();
112         }
113         else {
114           // label in xml file
115           CORBA::String_var hypType = theHyp->GetName();
116           aHypName = GetHypothesisData( hypType.in() )->Label;
117         }
118       }
119
120       // message
121       bool isFatal = (theHypStatus >= SMESH::HYP_UNKNOWN_FATAL);
122       QString aMsg;
123       if (theIsAddition)
124         aMsg = (isFatal ? "SMESH_CANT_ADD_HYP" : "SMESH_ADD_HYP_WRN");
125       else
126         aMsg = (isFatal ? "SMESH_CANT_RM_HYP"  : "SMESH_RM_HYP_WRN");
127
128       aMsg = QObject::tr(aMsg.toLatin1().data()).arg(aHypName);
129
130       if ( theError && theError[0] )
131       {
132         aMsg += theError;
133       }
134       else
135       {
136         aMsg += QObject::tr(QString("SMESH_HYP_%1").arg(theHypStatus).toLatin1().data());
137
138         if ( theHypStatus == SMESH::HYP_HIDDEN_ALGO ) { // PAL18501
139           CORBA::String_var hypType = theHyp->GetName();
140           if ( HypothesisData* hd = GetHypothesisData( hypType.in() ))
141             aMsg = aMsg.arg( hd->Dim[0] );
142         }
143       }
144       SUIT_MessageBox::warning(SMESHGUI::desktop(),
145                                QObject::tr("SMESH_WRN_WARNING"),
146                                aMsg);
147     }
148   }
149
150   //================================================================================
151   /*!
152    * \brief Prepends dimension and appends '[custom]' to the name of hypothesis set
153    */
154   //================================================================================
155
156   static QString mangledHypoSetName(HypothesesSet* hypSet)
157   {
158     QString name = hypSet->name();
159
160     // prepend 'xD: '
161     int dim = hypSet->maxDim();
162     if ( dim > -1 )
163       name = QString("%1D: %2").arg(dim).arg(name);
164
165     // custom
166     if ( hypSet->getIsCustom() )
167       name = QString("%1 [custom]").arg(name);
168
169     return name;
170   }
171
172   //================================================================================
173   /*!
174    * \brief Removes dimension and '[custom]' from the name of hypothesis set
175    */
176   //================================================================================
177
178   static QString demangledHypoSetName(QString name)
179   {
180     name.remove(QRegExp("[0-3]D: "));
181     name.remove(" [custom]");
182     return name;
183   }
184
185   void InitAvailableHypotheses()
186   {
187     SUIT_OverrideCursor wc;
188     if ( myHypothesesMap.empty() && myAlgorithmsMap.empty() )
189     {
190       // Resource manager
191       SUIT_ResourceMgr* resMgr = SMESHGUI::resourceMgr();
192       if (!resMgr) return;
193
194       // Find name of a resource XML file ("SMESH_Meshers.xml");
195       QString HypsXml;
196       char* cenv = getenv("SMESH_MeshersList");
197       if (cenv)
198         HypsXml.sprintf("%s", cenv);
199
200       QStringList HypsXmlList = HypsXml.split(":", QString::SkipEmptyParts);
201       if (HypsXmlList.count() == 0) {
202         SUIT_MessageBox::critical(SMESHGUI::desktop(),
203                                   QObject::tr("SMESH_WRN_WARNING"),
204                                   QObject::tr("MESHERS_FILE_NO_VARIABLE"));
205         return;
206       }
207       // get full names of xml files from HypsXmlList
208       QStringList xmlFiles;
209       xmlFiles.append( QDir::home().filePath("CustomMeshers.xml")); // may be inexistent
210       for (int i = 0; i < HypsXmlList.count(); i++) {
211         QString HypsXml = HypsXmlList[ i ];
212
213         // Find full path to the resource XML file
214         QString xmlFile = resMgr->path("resources", "SMESH", HypsXml + ".xml");
215         if ( xmlFile.isEmpty() ) // try PLUGIN resources
216           xmlFile = resMgr->path("resources", HypsXml, HypsXml + ".xml");
217         if ( !xmlFile.isEmpty() )
218           xmlFiles.append( xmlFile );
219       }
220
221       // loop on xmlFiles
222       QString aNoAccessFiles;
223       for (int i = 0; i < xmlFiles.count(); i++)
224       {
225         QString xmlFile = xmlFiles[ i ];
226         QFile file (xmlFile);
227         if (file.exists() && file.open(QIODevice::ReadOnly))
228         {
229           file.close();
230
231           SMESHGUI_XmlHandler* aXmlHandler = new SMESHGUI_XmlHandler();
232           ASSERT(aXmlHandler);
233
234           QXmlInputSource source (&file);
235           QXmlSimpleReader reader;
236           reader.setContentHandler(aXmlHandler);
237           reader.setErrorHandler(aXmlHandler);
238           bool ok = reader.parse(source);
239           file.close();
240           if (ok) {
241
242             THypothesisDataMap::ConstIterator it1 = aXmlHandler->myHypothesesMap.begin();
243
244             for( ;it1 != aXmlHandler->myHypothesesMap.end(); it1++)
245               myHypothesesMap.insert( it1.key(), it1.value() );
246
247             it1 = aXmlHandler->myAlgorithmsMap.begin();
248             for( ;it1 != aXmlHandler->myAlgorithmsMap.end(); it1++)
249               myAlgorithmsMap.insert( it1.key(), it1.value() );
250
251             QList<HypothesesSet*>::iterator it;
252             for ( it = aXmlHandler->myListOfHypothesesSets.begin();
253                   it != aXmlHandler->myListOfHypothesesSets.end();
254                   ++it )
255             {
256               (*it)->setIsCustom( i == 0 );
257               myListOfHypothesesSets.append( *it );
258             }
259           }
260           else {
261             SUIT_MessageBox::critical(SMESHGUI::desktop(),
262                                       QObject::tr("INF_PARSE_ERROR"),
263                                       QObject::tr(aXmlHandler->errorProtocol().toLatin1().data()));
264           }
265           delete aXmlHandler;
266         }
267         else if ( i > 0 ) { // 1st is ~/CustomMeshers.xml
268           if (aNoAccessFiles.isEmpty())
269             aNoAccessFiles = xmlFile;
270           else
271             aNoAccessFiles += ", " + xmlFile;
272         }
273       } // end loop on xmlFiles
274
275
276       if (!aNoAccessFiles.isEmpty()) {
277         QString aMess = QObject::tr("MESHERS_FILE_CANT_OPEN") + " " + aNoAccessFiles + "\n";
278         aMess += QObject::tr("MESHERS_FILE_CHECK_VARIABLE");
279         wc.suspend();
280         SUIT_MessageBox::warning(SMESHGUI::desktop(),
281                                  QObject::tr("SMESH_WRN_WARNING"),
282                                  aMess);
283         wc.resume();
284       }
285     }
286   }
287
288
289   QStringList GetAvailableHypotheses( const bool isAlgo,
290                                       const int  theDim,
291                                       const bool isAux,
292                                       const bool hasGeometry,
293                                       const bool isSubMesh)
294   {
295     QStringList aHypList;
296
297     // Init list of available hypotheses, if needed
298     InitAvailableHypotheses();
299     bool checkGeometry = ( isAlgo );
300     const char* context = isSubMesh ? "LOCAL" : "GLOBAL";
301     // fill list of hypotheses/algorithms
302     THypothesisDataMap& pMap = isAlgo ? myAlgorithmsMap : myHypothesesMap;
303     THypothesisDataMap::ConstIterator anIter;
304     for ( anIter = pMap.begin(); anIter != pMap.end(); anIter++ )
305     {
306       HypothesisData* aData = anIter.value();
307       if (( aData && !aData->Label.isEmpty() ) &&
308           ( theDim < 0              || aData->Dim.contains( theDim )) &&
309           ( isAlgo                  || aData->IsAuxOrNeedHyp == isAux ) &&
310           ( aData->Context == "ANY" || aData->Context == context ) &&
311           ( !checkGeometry          || (!aData->IsNeedGeometry  ||
312                                         ( aData->IsNeedGeometry > 0 ) == hasGeometry)))
313       {
314         aHypList.append(anIter.key());
315       }
316     }
317     return aHypList;
318   }
319
320
321   QStringList GetHypothesesSets(int maxDim)
322   {
323     QStringList aSetNameList;
324
325     // Init list of available hypotheses, if needed
326     InitAvailableHypotheses();
327     QList<HypothesesSet*>::iterator hypoSet;
328     for ( hypoSet  = myListOfHypothesesSets.begin();
329         hypoSet != myListOfHypothesesSets.end();
330         ++hypoSet ) {
331       HypothesesSet* aSet = *hypoSet;
332       if ( aSet && 0 <= aSet->maxDim() && aSet->maxDim() <= maxDim )
333       {
334         aSetNameList.append( mangledHypoSetName( aSet ));
335       }
336     }
337     aSetNameList.removeDuplicates();
338     aSetNameList.sort();
339
340     //  reverse order of aSetNameList
341     QStringList reversedNames;
342     for ( int i = 0; i < aSetNameList.count(); ++i )
343       reversedNames.prepend( aSetNameList[i] );
344
345     return reversedNames;
346   }
347
348   HypothesesSet* GetHypothesesSet(const QString& theSetName)
349   {
350     QString name = demangledHypoSetName( theSetName );
351     QList<HypothesesSet*>::iterator hypoSet;
352     for ( hypoSet  = myListOfHypothesesSets.begin();
353           hypoSet != myListOfHypothesesSets.end();
354           ++hypoSet ) {
355       HypothesesSet* aSet = *hypoSet;
356       if ( aSet && aSet->name() == name )
357         return aSet;
358     }
359     return 0;
360   }
361
362   HypothesisData* GetHypothesisData (const QString& aHypType)
363   {
364     HypothesisData* aHypData = 0;
365
366     // Init list of available hypotheses, if needed
367     InitAvailableHypotheses();
368
369     if (myHypothesesMap.contains(aHypType)) {
370       aHypData = myHypothesesMap[aHypType];
371     }
372     else if (myAlgorithmsMap.contains(aHypType)) {
373       aHypData = myAlgorithmsMap[aHypType];
374     }
375     return aHypData;
376   }
377
378   //================================================================================
379   /*!
380    * \brief Return the HypothesisData holding a name of a group of hypotheses
381    *        a given hypothesis belongs to
382    */
383   //================================================================================
384
385   HypothesisData* GetGroupTitle( const HypothesisData* hyp, const bool isAlgo )
386   {
387     static std::vector< std::vector< HypothesisData > > theGroups;
388     if ( theGroups.empty() )
389     {
390       theGroups.resize(14); // 14: isAlgo * 10 + dim
391
392       QString dummyS("GROUP");
393       QList<int> dummyIL; dummyIL << 1;
394       QStringList dummySL;
395       HypothesisData group( dummyS,dummyS,dummyS,dummyS,dummyS,dummyS,dummyS,-1,-1,
396                             dummyIL, 0, dummySL,dummySL,dummySL,dummySL,0,0 );
397       // no group
398       int key = 0;
399       theGroups[ key ].push_back( group );
400
401       // 1D algo
402       key = 11;
403       //        0: Basic
404       group.Label = "GROUP:" + QObject::tr( "SMESH_1D_ALGO_GROUP_BASIC" );
405       theGroups[ key ].push_back( group );
406       //        1: Advanced
407       group.Label = "GROUP:" + QObject::tr( "SMESH_1D_ALGO_GROUP_ADVANCED" );
408       theGroups[ key ].push_back( group );
409
410       // 1D hypotheses
411       key = 01;
412       //        0: Basic
413       group.Label = "GROUP:" + QObject::tr( "SMESH_1D_HYP_GROUP_BASIC" );
414       theGroups[ key ].push_back( group );
415       //        1: Progression
416       group.Label = "GROUP:" + QObject::tr( "SMESH_1D_HYP_GROUP_PROGRESSION" );
417       theGroups[ key ].push_back( group );
418       //        2: Advanced
419       group.Label = "GROUP:" + QObject::tr( "SMESH_1D_HYP_GROUP_ADVANCED" );
420       theGroups[ key ].push_back( group );
421
422       // 2D algo
423       key = 12;
424       //        0: Regular
425       group.Label = "GROUP:" + QObject::tr( "SMESH_2D_ALGO_GROUP_REGULAR" );
426       theGroups[ key ].push_back( group );
427       //        1: Free
428       group.Label = "GROUP:" + QObject::tr( "SMESH_2D_ALGO_GROUP_FREE" );
429       theGroups[ key ].push_back( group );
430       //        2: Advanced
431       group.Label = "GROUP:" + QObject::tr( "SMESH_2D_ALGO_GROUP_ADVANCED" );
432       theGroups[ key ].push_back( group );
433
434       // 3D algo
435       key = 13;
436       //        0: Regular
437       group.Label = "GROUP:" + QObject::tr( "SMESH_3D_ALGO_GROUP_REGULAR" );
438       theGroups[ key ].push_back( group );
439       //        1: Free
440       group.Label = "GROUP:" + QObject::tr( "SMESH_3D_ALGO_GROUP_FREE" );
441       theGroups[ key ].push_back( group );
442       //        2: Advanced
443       group.Label = "GROUP:" + QObject::tr( "SMESH_3D_ALGO_GROUP_ADVANCED" );
444       theGroups[ key ].push_back( group );
445     }
446
447     size_t key = 0, groupID = 0;
448     if ( hyp && !hyp->Dim.isEmpty() )
449     {
450       key     = hyp->Dim[0] + isAlgo * 10;
451       groupID = hyp->GroupID;
452     }
453
454     if ( key < theGroups.size() && !theGroups[ key ].empty() )
455     {
456       std::vector< HypothesisData > & group = theGroups[ key ];
457       return & ( groupID < group.size() ? group[ groupID ] : group.back() );
458     }
459     return & theGroups[ 0 ][ 0 ];
460   }
461
462   bool IsAvailableHypothesis(const HypothesisData* algoData,
463                              const QString&        hypType,
464                              bool&                 isAuxiliary)
465   {
466     isAuxiliary = false;
467     if ( !algoData )
468       return false;
469     if ( algoData->BasicHypos.contains( hypType ))
470       return true;
471     if ( algoData->OptionalHypos.contains( hypType )) {
472       isAuxiliary = true;
473       return true;
474     }
475     return false;
476   }
477
478   bool IsCompatibleAlgorithm(const HypothesisData* algo1Data,
479                              const HypothesisData* algo2Data)
480   {
481     if ( !algo1Data || !algo2Data )
482       return false;
483     const HypothesisData* algoIn = algo1Data, *algoMain = algo2Data;
484     if ( algoIn->Dim.first() > algoMain->Dim.first() ) {
485       algoIn = algo2Data; algoMain = algo1Data;
486     }
487     // look for any output type of algoIn between input types of algoMain
488     QStringList::const_iterator inElemType = algoIn->OutputTypes.begin();
489     for ( ; inElemType != algoIn->OutputTypes.end(); ++inElemType )
490       if ( algoMain->InputTypes.contains( *inElemType ))
491         return true;
492     return false;
493   }
494
495   SMESHGUI_GenericHypothesisCreator* GetHypothesisCreator(const QString& aHypType)
496   {
497     if(MYDEBUG) MESSAGE("Get HypothesisCreator for " << aHypType.toLatin1().data());
498
499     SMESHGUI_GenericHypothesisCreator* aCreator = 0;
500
501     // check, if creator for this hypothesis type already exists
502     // BUG 0020378
503     //if (myHypCreatorMap.find(aHypType) != myHypCreatorMap.end()) {
504     //  aCreator = myHypCreatorMap[aHypType];
505     //}
506     //else
507     {
508       // 1. Init list of available hypotheses, if needed
509       InitAvailableHypotheses();
510
511       // 2. Get names of plugin libraries
512       HypothesisData* aHypData = GetHypothesisData(aHypType);
513       if (!aHypData)
514         return aCreator;
515
516       QString aClientLibName = aHypData->ClientLibName;
517       QString aServerLibName = aHypData->ServerLibName;
518
519       // 3. Load Client Plugin Library
520       try {
521         // load plugin library
522         if(MYDEBUG) MESSAGE("Loading client meshers plugin library ...");
523 #ifdef WIN32
524 #ifdef UNICODE
525         LPTSTR path = new TCHAR[aClientLibName.length() + 1];
526         path[aClientLibName.toWCharArray(path)] = '\0';
527 #else
528         QByteArray baPath = aClientLibName.toUtf8();
529         const char* path = baPath.data();
530 #endif
531 #else
532         QByteArray baPath = aClientLibName.toUtf8();
533         char* path = baPath.data();
534 #endif
535         LibHandle libHandle = LoadLib( path );
536 #if defined(WIN32) && defined(UNICODE)
537       delete path;
538 #endif
539         if (!libHandle) {
540           // report any error, if occurred
541           {
542 #ifdef WIN32
543             const char* anError = "Can't load client meshers plugin library";
544 #else
545             const char* anError = dlerror();
546 #endif
547             INFOS(anError); // always display this kind of error !
548           }
549         }
550         else {
551           // get method, returning hypothesis creator
552           if(MYDEBUG) MESSAGE("Find GetHypothesisCreator() method ...");
553           typedef SMESHGUI_GenericHypothesisCreator* (*GetHypothesisCreator) \
554             ( const QString& );
555           GetHypothesisCreator procHandle =
556             (GetHypothesisCreator)GetProc(libHandle, "GetHypothesisCreator");
557           if (!procHandle) {
558             if(MYDEBUG) MESSAGE("bad hypothesis client plugin library");
559             UnLoadLib(libHandle);
560           }
561           else {
562             // get hypothesis creator
563             if(MYDEBUG) MESSAGE("Get Hypothesis Creator for " << aHypType.toLatin1().data());
564             aCreator = procHandle( aHypType );
565             if (!aCreator) {
566               if(MYDEBUG) MESSAGE("no such a hypothesis in this plugin");
567             }
568             else {
569               // map hypothesis creator to a hypothesis name
570               // BUG 0020378
571               //myHypCreatorMap[aHypType] = aCreator;
572
573               //rnv : This dynamic property of the QObject stores the name of the plugin.
574               //      It is used to obtain plugin root dir environment variable
575               //      in the SMESHGUI_HypothesisDlg class. Plugin root dir environment
576               //      variable is used to display documentation.
577               aCreator->setProperty(SMESH::Plugin_Name(),aHypData->PluginName);
578             }
579           }
580         }
581       }
582       catch (const SALOME::SALOME_Exception& S_ex) {
583         SalomeApp_Tools::QtCatchCorbaException(S_ex);
584       }
585     }
586
587     return aCreator;
588   }
589
590
591   SMESH::SMESH_Hypothesis_ptr CreateHypothesis(const QString& aHypType,
592                                                const QString& aHypName,
593                                                const bool isAlgo)
594   {
595     if(MYDEBUG) MESSAGE("Create " << aHypType.toLatin1().data() <<
596                         " with name " << aHypName.toLatin1().data());
597     HypothesisData* aHypData = GetHypothesisData(aHypType);
598     QString aServLib = aHypData->ServerLibName;
599     try {
600       SMESH::SMESH_Hypothesis_var aHypothesis;
601       aHypothesis = SMESHGUI::GetSMESHGen()->CreateHypothesis(aHypType.toLatin1().data(),
602                                                               aServLib.toUtf8().data());
603       if (!aHypothesis->_is_nil()) {
604         _PTR(SObject) aHypSObject = SMESH::FindSObject(aHypothesis.in());
605         if (aHypSObject) {
606           if (!aHypName.isEmpty())
607             SMESH::SetName(aHypSObject, aHypName);
608           SMESHGUI::Modified();
609           SMESHGUI::GetSMESHGUI()->updateObjBrowser();
610           return aHypothesis._retn();
611         }
612       }
613     } catch (const SALOME::SALOME_Exception & S_ex) {
614       SalomeApp_Tools::QtCatchCorbaException(S_ex);
615     }
616
617     return SMESH::SMESH_Hypothesis::_nil();
618   }
619
620   bool IsApplicable(const QString&        aHypType,
621                     GEOM::GEOM_Object_ptr theGeomObject,
622                     const bool            toCheckAll)
623   {
624     if ( getenv("NO_LIMIT_ALGO_BY_SHAPE")) // allow a workaround for a case if
625       return true;                         // IsApplicable() returns false due to a bug
626
627     HypothesisData* aHypData = GetHypothesisData(aHypType);
628     QString aServLib = aHypData->ServerLibName;
629     return SMESHGUI::GetSMESHGen()->IsApplicable( aHypType.toLatin1().data(),
630                                                   aServLib.toUtf8().data(),
631                                                   theGeomObject,
632                                                   toCheckAll);
633   }
634
635
636   bool AddHypothesisOnMesh (SMESH::SMESH_Mesh_ptr aMesh, SMESH::SMESH_Hypothesis_ptr aHyp)
637   {
638     if(MYDEBUG) MESSAGE ("SMESHGUI::AddHypothesisOnMesh");
639     int res = SMESH::HYP_UNKNOWN_FATAL;
640     SUIT_OverrideCursor wc;
641
642     if (!aMesh->_is_nil()) {
643       _PTR(SObject) SM = SMESH::FindSObject(aMesh);
644       GEOM::GEOM_Object_var aShapeObject = SMESH::GetShapeOnMeshOrSubMesh(SM);
645       try {
646         CORBA::String_var error;
647         res = aMesh->AddHypothesis(aShapeObject, aHyp, error.out());
648         if (res > SMESH::HYP_OK) {
649           wc.suspend();
650           processHypothesisStatus(res, aHyp, true, error.in() );
651           wc.resume();
652         }
653       }
654       catch(const SALOME::SALOME_Exception& S_ex) {
655         wc.suspend();
656         SalomeApp_Tools::QtCatchCorbaException(S_ex);
657         res = SMESH::HYP_UNKNOWN_FATAL;
658       }
659     }
660     return res < SMESH::HYP_UNKNOWN_FATAL;
661   }
662
663
664   bool AddHypothesisOnSubMesh (SMESH::SMESH_subMesh_ptr aSubMesh, SMESH::SMESH_Hypothesis_ptr aHyp)
665   {
666     if(MYDEBUG) MESSAGE("SMESHGUI::AddHypothesisOnSubMesh() ");
667     int res = SMESH::HYP_UNKNOWN_FATAL;
668     SUIT_OverrideCursor wc;
669
670     if ( !aSubMesh->_is_nil() && !aHyp->_is_nil() ) {
671       try {
672         SMESH::SMESH_Mesh_var aMesh = aSubMesh->GetFather();
673         _PTR(SObject) SsubM = SMESH::FindSObject(aSubMesh);
674         GEOM::GEOM_Object_var aShapeObject = SMESH::GetShapeOnMeshOrSubMesh(SsubM);
675         if (!aMesh->_is_nil() && SsubM && !aShapeObject->_is_nil())
676         {
677           CORBA::String_var error;
678           res = aMesh->AddHypothesis( aShapeObject, aHyp, error.out() );
679           if (res > SMESH::HYP_OK) {
680             wc.suspend();
681             processHypothesisStatus( res, aHyp, true, error.in() );
682             wc.resume();
683           }
684         }
685         else {
686           SCRUTE(aHyp->_is_nil());
687           SCRUTE(aMesh->_is_nil());
688           SCRUTE(!SsubM);
689           SCRUTE(aShapeObject->_is_nil());
690         }
691       }
692       catch(const SALOME::SALOME_Exception& S_ex) {
693         wc.suspend();
694         SalomeApp_Tools::QtCatchCorbaException(S_ex);
695         res = SMESH::HYP_UNKNOWN_FATAL;
696       }
697     }
698     else {
699       SCRUTE(aSubMesh->_is_nil());
700       SCRUTE(aHyp->_is_nil());
701     }
702     return res < SMESH::HYP_UNKNOWN_FATAL;
703   }
704
705   bool RemoveHypothesisOrAlgorithmOnMesh (const Handle(SALOME_InteractiveObject)& IObject)
706   {
707     int res = SMESH::HYP_UNKNOWN_FATAL;
708     SUIT_OverrideCursor wc;
709
710     try {
711       _PTR(Study) aStudy = getStudy();
712       _PTR(SObject) aHypObj = aStudy->FindObjectID( IObject->getEntry() );
713       if( aHypObj )
714       {
715         _PTR(SObject) MorSM = SMESH::GetMeshOrSubmesh( aHypObj );
716         _PTR(SObject) aRealHypo;
717         if( aHypObj->ReferencedObject( aRealHypo ) )
718         {
719           SMESH_Hypothesis_var hypo = SMESH_Hypothesis::_narrow( SObjectToObject( aRealHypo ) );
720           RemoveHypothesisOrAlgorithmOnMesh( MorSM, hypo );
721         }
722         else
723         {
724           SMESH_Hypothesis_var hypo = SMESH_Hypothesis::_narrow( SObjectToObject( aHypObj ) );
725           SObjectList meshList = GetMeshesUsingAlgoOrHypothesis( hypo );
726           for( size_t i = 0; i < meshList.size(); i++ )
727             RemoveHypothesisOrAlgorithmOnMesh( meshList[ i ], hypo );
728         }
729       }
730     }
731     catch(const SALOME::SALOME_Exception& S_ex)
732     {
733       wc.suspend();
734       SalomeApp_Tools::QtCatchCorbaException(S_ex);
735       res = SMESH::HYP_UNKNOWN_FATAL;
736     }
737     return res < SMESH::HYP_UNKNOWN_FATAL;
738   }
739
740   bool RemoveHypothesisOrAlgorithmOnMesh (_PTR(SObject)               MorSM,
741                                           SMESH::SMESH_Hypothesis_ptr anHyp)
742   {
743     int res = SMESH::HYP_UNKNOWN_FATAL;
744     SUIT_OverrideCursor wc;
745
746     if (MorSM) {
747       try {
748         GEOM::GEOM_Object_var aShapeObject = SMESH::GetShapeOnMeshOrSubMesh(MorSM);
749         SMESH::SMESH_Mesh_var aMesh        = SMESH::SObjectToInterface<SMESH::SMESH_Mesh>(MorSM);
750         SMESH::SMESH_subMesh_var aSubMesh  = SMESH::SObjectToInterface<SMESH::SMESH_subMesh>(MorSM);
751
752         if (!aSubMesh->_is_nil())
753           aMesh = aSubMesh->GetFather();
754
755         if (!aMesh->_is_nil()) {
756           if (aMesh->HasShapeToMesh() && !aShapeObject->_is_nil()) {
757             res = aMesh->RemoveHypothesis(aShapeObject, anHyp);
758           }
759           else if(!aMesh->HasShapeToMesh()){
760             res = aMesh->RemoveHypothesis(aShapeObject, anHyp);
761           }
762           if (res > SMESH::HYP_OK) {
763             wc.suspend();
764             processHypothesisStatus(res, anHyp, false);
765             wc.resume();
766           }
767           if ( _PTR(SObject) meshSO = SMESH::FindSObject(aMesh) )
768           {
769             if ( SMESH_Actor* actor = SMESH::FindActorByEntry( meshSO->GetID().c_str() ))
770               if( actor->GetVisibility() )
771                 actor->Update();
772           }
773         }
774       } catch(const SALOME::SALOME_Exception& S_ex) {
775         wc.suspend();
776         SalomeApp_Tools::QtCatchCorbaException(S_ex);
777         res = SMESH::HYP_UNKNOWN_FATAL;
778       }
779     }
780     return res < SMESH::HYP_UNKNOWN_FATAL;
781   }
782
783   SObjectList GetMeshesUsingAlgoOrHypothesis(SMESH::SMESH_Hypothesis_ptr AlgoOrHyp)
784   {
785     SObjectList listSOmesh;
786     listSOmesh.resize(0);
787
788     unsigned int index = 0;
789     if (!AlgoOrHyp->_is_nil()) {
790       _PTR(SObject) SO_Hypothesis = SMESH::FindSObject(AlgoOrHyp);
791       if (SO_Hypothesis) {
792         SObjectList listSO = SMESH::getStudy()->FindDependances(SO_Hypothesis);
793
794         if(MYDEBUG) MESSAGE("SMESHGUI::GetMeshesUsingAlgoOrHypothesis(): dependency number ="<<listSO.size());
795         for (unsigned int i = 0; i < listSO.size(); i++) {
796           _PTR(SObject) SO = listSO[i];
797           if (SO) {
798             _PTR(SObject) aFather = SO->GetFather();
799             if (aFather) {
800               _PTR(SObject) SOfatherFather = aFather->GetFather();
801               if (SOfatherFather) {
802                 if(MYDEBUG) MESSAGE("SMESHGUI::GetMeshesUsingAlgoOrHypothesis(): dependency added to list");
803                 index++;
804                 listSOmesh.resize(index);
805                 listSOmesh[index - 1] = SOfatherFather;
806               }
807             }
808           }
809         }
810       }
811     }
812     if (MYDEBUG) MESSAGE("SMESHGUI::GetMeshesUsingAlgoOrHypothesis(): completed");
813     return listSOmesh;
814   }
815
816 #define CASE2MESSAGE(enum) case SMESH::enum: msg = QObject::tr( "STATE_" #enum ); break;
817   QString GetMessageOnAlgoStateErrors(const algo_error_array& errors)
818   {
819     QString resMsg; // PAL14861 = QObject::tr("SMESH_WRN_MISSING_PARAMETERS") + ":\n";
820     for ( size_t i = 0; i < errors.length(); ++i ) {
821       const SMESH::AlgoStateError & error = errors[ i ];
822       const bool hasAlgo = ( strlen( error.algoName ) != 0 );
823       QString msg;
824       if ( !hasAlgo )
825         msg = QObject::tr( "STATE_ALGO_MISSING" );
826       else
827         switch( error.state ) {
828           CASE2MESSAGE( HYP_MISSING );
829           CASE2MESSAGE( HYP_NOTCONFORM );
830           CASE2MESSAGE( HYP_BAD_PARAMETER );
831           CASE2MESSAGE( HYP_BAD_GEOMETRY );
832         default: continue;
833         }
834       // apply args to message:
835       // %1 - algo name
836       if ( hasAlgo )
837         msg = msg.arg( error.algoName.in() );
838       // %2 - dimension
839       msg = msg.arg( error.algoDim );
840       // %3 - global/local
841       msg = msg.arg( QObject::tr( error.isGlobalAlgo ? "GLOBAL_ALGO" : "LOCAL_ALGO" ));
842       // %4 - hypothesis dim == algoDim
843       msg = msg.arg( error.algoDim );
844
845       if ( i ) resMsg += ";\n";
846       resMsg += msg;
847     }
848     return resMsg;
849   }
850 } // end of namespace SMESH