Salome HOME
bos #24228 [CEA 24217][Windows] cannot compile SMESH: additional fix.
[modules/smesh.git] / src / SMESH / SMESH_Mesh.cxx
1 // Copyright (C) 2007-2021  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 //  File   : SMESH_Mesh.cxx
24 //  Author : Paul RASCLE, EDF
25 //  Module : SMESH
26 //
27 #include "SMESH_Mesh.hxx"
28 #include "SMESH_MesherHelper.hxx"
29 #include "SMDS_MeshVolume.hxx"
30 #include "SMDS_SetIterator.hxx"
31 #include "SMESHDS_Document.hxx"
32 #include "SMESHDS_Group.hxx"
33 #include "SMESHDS_GroupOnGeom.hxx"
34 #include "SMESHDS_Script.hxx"
35 #include "SMESHDS_TSubMeshHolder.hxx"
36 #include "SMESH_Gen.hxx"
37 #include "SMESH_Group.hxx"
38 #include "SMESH_HypoFilter.hxx"
39 #include "SMESH_Hypothesis.hxx"
40 #include "SMESH_subMesh.hxx"
41
42 #include "utilities.h"
43
44 #include "DriverDAT_W_SMDS_Mesh.h"
45 #include "DriverGMF_Read.hxx"
46 #include "DriverGMF_Write.hxx"
47 #include "DriverMED_R_SMESHDS_Mesh.h"
48 #include "DriverMED_W_SMESHDS_Mesh.h"
49 #include "DriverSTL_R_SMDS_Mesh.h"
50 #include "DriverSTL_W_SMDS_Mesh.h"
51 #include "DriverUNV_R_SMDS_Mesh.h"
52 #include "DriverUNV_W_SMDS_Mesh.h"
53 #ifdef WITH_CGNS
54 #include "DriverCGNS_Read.hxx"
55 #include "DriverCGNS_Write.hxx"
56 #endif
57
58 #include <GEOMUtils.hxx>
59
60 #undef _Precision_HeaderFile
61 #include <BRepBndLib.hxx>
62 #include <BRepPrimAPI_MakeBox.hxx>
63 #include <Bnd_Box.hxx>
64 #include <TColStd_MapOfInteger.hxx>
65 #include <TopExp.hxx>
66 #include <TopExp_Explorer.hxx>
67 #include <TopTools_ListIteratorOfListOfShape.hxx>
68 #include <TopTools_ListOfShape.hxx>
69 #include <TopTools_MapOfShape.hxx>
70 #include <TopoDS_Iterator.hxx>
71
72 #include "SMESH_TryCatch.hxx" // include after OCCT headers!
73
74 #include "Utils_ExceptHandlers.hxx"
75
76 #ifndef WIN32
77 #include <boost/thread/thread.hpp>
78 #include <boost/bind.hpp>
79 #else 
80 #include <pthread.h>
81 #endif
82
83 // maximum stored group name length in MED file
84 #define MAX_MED_GROUP_NAME_LENGTH 80
85
86 #ifdef _DEBUG_
87 static int MYDEBUG = 0;
88 #else
89 static int MYDEBUG = 0;
90 #endif
91
92 #define cSMESH_Hyp(h) static_cast<const SMESH_Hypothesis*>(h)
93
94 typedef SMESH_HypoFilter THypType;
95
96 class SMESH_Mesh::SubMeshHolder : public SMESHDS_TSubMeshHolder< SMESH_subMesh >
97 {
98 };
99
100 //=============================================================================
101 /*!
102  * 
103  */
104 //=============================================================================
105
106 SMESH_Mesh::SMESH_Mesh(int               theLocalId, 
107                        SMESH_Gen*        theGen,
108                        bool              theIsEmbeddedMode,
109                        SMESHDS_Document* theDocument):
110   _groupId( 0 ), _nbSubShapes( 0 )
111 {
112   if(MYDEBUG) MESSAGE("SMESH_Mesh::SMESH_Mesh(int localId)");
113   _id            = theLocalId;
114   _gen           = theGen;
115   _myDocument    = theDocument;
116   _myMeshDS      = theDocument->NewMesh(theIsEmbeddedMode,theLocalId);
117   _isShapeToMesh = false;
118   _isAutoColor   = false;
119   _isModified    = false;
120   _shapeDiagonal = 0.0;
121   _callUp        = NULL;
122   _myMeshDS->ShapeToMesh( PseudoShape() );
123   _subMeshHolder = new SubMeshHolder;
124 }
125
126 //================================================================================
127 /*!
128  * \brief Constructor of SMESH_Mesh being a base of some descendant class
129  */
130 //================================================================================
131
132 SMESH_Mesh::SMESH_Mesh():
133   _id(-1),
134   _groupId( 0 ),
135   _nbSubShapes( 0 ),
136   _isShapeToMesh( false ),
137   _myDocument( 0 ),
138   _myMeshDS( 0 ),
139   _gen( 0 ),
140   _isAutoColor( false ),
141   _isModified( false ),
142   _shapeDiagonal( 0.0 ),
143   _callUp( 0 )
144 {
145   _subMeshHolder = new SubMeshHolder;
146 }
147
148 namespace
149 {
150 #ifndef WIN32
151   void deleteMeshDS(SMESHDS_Mesh* meshDS)
152   {
153     //cout << "deleteMeshDS( " << meshDS << endl;
154     delete meshDS;
155   }
156 #else
157   static void* deleteMeshDS(void* meshDS)
158   {
159     //cout << "deleteMeshDS( " << meshDS << endl;
160     SMESHDS_Mesh* m = (SMESHDS_Mesh*)meshDS;
161     if(m) {
162       delete m;
163     }
164     return 0;
165   }
166 #endif
167 }
168
169 //=============================================================================
170 /*!
171  *
172  */
173 //=============================================================================
174
175 SMESH_Mesh::~SMESH_Mesh()
176 {
177   if(MYDEBUG) MESSAGE("SMESH_Mesh::~SMESH_Mesh");
178
179   if ( _myDocument ) // avoid destructing _myMeshDS from ~SMESH_Gen()
180     _myDocument->RemoveMesh( _id );
181   _myDocument = 0;
182
183   // remove self from studyContext
184   if ( _gen )
185   {
186     StudyContextStruct * studyContext = _gen->GetStudyContext();
187     studyContext->mapMesh.erase( _id );
188   }
189
190   _myMeshDS->ClearMesh();
191
192   // issue 0020340: EDF 1022 SMESH : Crash with FindNodeClosestTo in a second new study
193   //   Notify event listeners at least that something happens
194   if ( SMESH_subMesh * sm = GetSubMeshContaining(1))
195     sm->ComputeStateEngine( SMESH_subMesh::MESH_ENTITY_REMOVED );
196
197   // delete groups
198   std::map < int, SMESH_Group * >::iterator itg;
199   for (itg = _mapGroup.begin(); itg != _mapGroup.end(); itg++) {
200     SMESH_Group *aGroup = (*itg).second;
201     delete aGroup;
202   }
203   _mapGroup.clear();
204
205   // delete sub-meshes
206   delete _subMeshHolder;
207
208   if ( _callUp) delete _callUp;
209   _callUp = 0;
210
211   if ( _myMeshDS ) {
212     // delete _myMeshDS, in a thread in order not to block closing a study with large meshes
213 #ifndef WIN32
214     boost::thread aThread(boost::bind( & deleteMeshDS, _myMeshDS ));
215 #else
216     pthread_t thread;
217     int result=pthread_create(&thread, NULL, deleteMeshDS, (void*)_myMeshDS);
218 #endif
219   }
220 }
221
222 //================================================================================
223 /*!
224  * \brief Return true if a mesh with given id exists
225  */
226 //================================================================================
227
228 bool SMESH_Mesh::MeshExists( int meshId ) const
229 {
230   return _myDocument ? bool( _myDocument->GetMesh( meshId )) : false;
231 }
232
233 //================================================================================
234 /*!
235  * \brief Return a mesh by id
236  */
237 //================================================================================
238
239 SMESH_Mesh* SMESH_Mesh::FindMesh( int meshId ) const
240 {
241   if ( _id == meshId )
242     return (SMESH_Mesh*) this;
243
244   if ( StudyContextStruct *aStudyContext = _gen->GetStudyContext())
245   {
246     std::map < int, SMESH_Mesh * >::iterator i_m = aStudyContext->mapMesh.find( meshId );
247     if ( i_m != aStudyContext->mapMesh.end() )
248       return i_m->second;
249   }
250   return NULL;
251 }
252
253 //=============================================================================
254 /*!
255  * \brief Set geometry to be meshed
256  */
257 //=============================================================================
258
259 void SMESH_Mesh::ShapeToMesh(const TopoDS_Shape & aShape)
260 {
261   if(MYDEBUG) MESSAGE("SMESH_Mesh::ShapeToMesh");
262
263   if ( !aShape.IsNull() && _isShapeToMesh ) {
264     if ( aShape.ShapeType() != TopAbs_COMPOUND && // group contents is allowed to change
265          _myMeshDS->ShapeToMesh().ShapeType() != TopAbs_COMPOUND )
266       throw SALOME_Exception(LOCALIZED ("a shape to mesh has already been defined"));
267   }
268   // clear current data
269   if ( !_myMeshDS->ShapeToMesh().IsNull() )
270   {
271     // removal of a shape to mesh, delete objects referring to sub-shapes:
272     // - sub-meshes
273     _subMeshHolder->DeleteAll();
274     //  - groups on geometry
275     std::map <int, SMESH_Group *>::iterator i_gr = _mapGroup.begin();
276     while ( i_gr != _mapGroup.end() ) {
277       if ( dynamic_cast<SMESHDS_GroupOnGeom*>( i_gr->second->GetGroupDS() )) {
278         _myMeshDS->RemoveGroup( i_gr->second->GetGroupDS() );
279         delete i_gr->second;
280         _mapGroup.erase( i_gr++ );
281       }
282       else
283         i_gr++;
284     }
285     _mapAncestors.Clear();
286
287     // clear SMESHDS
288     TopoDS_Shape aNullShape;
289     _myMeshDS->ShapeToMesh( aNullShape );
290
291     _shapeDiagonal = 0.0;
292   }
293
294   // set a new geometry
295   if ( !aShape.IsNull() )
296   {
297     _myMeshDS->ShapeToMesh(aShape);
298     _isShapeToMesh = true;
299     _nbSubShapes = _myMeshDS->MaxShapeIndex();
300
301     // fill map of ancestors
302     fillAncestorsMap(aShape);
303   }
304   else
305   {
306     _isShapeToMesh = false;
307     _shapeDiagonal = 0.0;
308     _myMeshDS->ShapeToMesh( PseudoShape() );
309   }
310   _isModified = false;
311 }
312
313 //=======================================================================
314 /*!
315  * \brief Return geometry to be meshed. (It may be a PseudoShape()!)
316  */
317 //=======================================================================
318
319 TopoDS_Shape SMESH_Mesh::GetShapeToMesh() const
320 {
321   return _myMeshDS->ShapeToMesh();
322 }
323
324 //=======================================================================
325 /*!
326  * \brief Return a solid which is returned by GetShapeToMesh() if
327  *        a real geometry to be meshed was not set
328  */
329 //=======================================================================
330
331 const TopoDS_Solid& SMESH_Mesh::PseudoShape()
332 {
333   static TopoDS_Solid aSolid;
334   if ( aSolid.IsNull() )
335   {
336     aSolid = BRepPrimAPI_MakeBox(1,1,1);
337   }
338   return aSolid;
339 }
340
341 //=======================================================================
342 /*!
343  * \brief Return diagonal size of bounding box of a shape
344  */
345 //=======================================================================
346
347 double SMESH_Mesh::GetShapeDiagonalSize(const TopoDS_Shape & aShape)
348 {
349   if ( !aShape.IsNull() ) {
350     Bnd_Box Box;
351     // avoid too long waiting on large shapes. PreciseBoundingBox() was added
352     // to assure same result which else depends on presence of triangulation (IPAL52557).
353     const int maxNbFaces = 4000;
354     int nbFaces = 0;
355     for ( TopExp_Explorer f( aShape, TopAbs_FACE ); f.More() && nbFaces < maxNbFaces; f.Next() )
356       ++nbFaces;
357     bool isPrecise = false;
358     if ( nbFaces < maxNbFaces )
359       try {
360         OCC_CATCH_SIGNALS;
361         GEOMUtils::PreciseBoundingBox( aShape, Box );
362         isPrecise = true;
363       }
364       catch (...) {
365         isPrecise = false;
366       }
367     if ( !isPrecise )
368     {
369       BRepBndLib::Add( aShape, Box );
370     }
371     if ( !Box.IsVoid() )
372       return sqrt( Box.SquareExtent() );
373   }
374   return 0;
375 }
376
377 //=======================================================================
378 /*!
379  * \brief Return diagonal size of bounding box of shape to mesh
380  */
381 //=======================================================================
382
383 double SMESH_Mesh::GetShapeDiagonalSize() const
384 {
385   if ( _shapeDiagonal == 0. && _isShapeToMesh )
386     const_cast<SMESH_Mesh*>(this)->_shapeDiagonal = GetShapeDiagonalSize( GetShapeToMesh() );
387
388   return _shapeDiagonal;
389 }
390
391 //================================================================================
392 /*!
393  * \brief Load mesh from study file
394  */
395 //================================================================================
396
397 void SMESH_Mesh::Load()
398 {
399   if (_callUp)
400     _callUp->Load();
401 }
402
403 //=======================================================================
404 /*!
405  * \brief Remove all nodes and elements
406  */
407 //=======================================================================
408
409 void SMESH_Mesh::Clear()
410 {
411   if ( HasShapeToMesh() ) // remove all nodes and elements
412   {
413     // clear mesh data
414     _myMeshDS->ClearMesh();
415
416     // update compute state of submeshes
417     if ( SMESH_subMesh *sm = GetSubMeshContaining( GetShapeToMesh() ) )
418     {
419       sm->ComputeStateEngine( SMESH_subMesh::CHECK_COMPUTE_STATE );
420       sm->ComputeSubMeshStateEngine( SMESH_subMesh::CHECK_COMPUTE_STATE );
421       sm->ComputeStateEngine( SMESH_subMesh::CLEAN ); // for event listeners (issue 0020918)
422       sm->ComputeSubMeshStateEngine( SMESH_subMesh::CLEAN );
423     }
424   }
425   else // remove only nodes/elements computed by algorithms
426   {
427     if ( SMESH_subMesh *sm = GetSubMeshContaining( GetShapeToMesh() ) )
428     {
429       sm->ComputeStateEngine( SMESH_subMesh::CLEAN );
430       sm->ComputeSubMeshStateEngine( SMESH_subMesh::CLEAN );
431       sm->ComputeStateEngine( SMESH_subMesh::CHECK_COMPUTE_STATE );
432       sm->ComputeSubMeshStateEngine( SMESH_subMesh::CHECK_COMPUTE_STATE );
433     }
434   }
435   GetMeshDS()->Modified();
436   _isModified = false;
437 }
438
439 //=======================================================================
440 /*!
441  * \brief Remove all nodes and elements of indicated shape
442  */
443 //=======================================================================
444
445 void SMESH_Mesh::ClearSubMesh(const int theShapeId)
446 {
447   // clear sub-meshes; get ready to re-compute as a side-effect
448   if ( SMESH_subMesh *sm = GetSubMeshContaining( theShapeId ) )
449   {
450     SMESH_subMeshIteratorPtr smIt = sm->getDependsOnIterator(/*includeSelf=*/true,
451                                                              /*complexShapeFirst=*/false);
452     while ( smIt->more() )
453     {
454       sm = smIt->next();
455       TopAbs_ShapeEnum shapeType = sm->GetSubShape().ShapeType();
456       if ( shapeType == TopAbs_VERTEX || shapeType < TopAbs_SOLID )
457         // all other shapes depends on vertices so they are already cleaned
458         sm->ComputeStateEngine( SMESH_subMesh::CLEAN );
459       // to recompute even if failed
460       sm->ComputeStateEngine( SMESH_subMesh::CHECK_COMPUTE_STATE );
461     }
462   }
463 }
464
465 //=======================================================================
466 //function : UNVToMesh
467 //purpose  :
468 //=======================================================================
469
470 int SMESH_Mesh::UNVToMesh(const char* theFileName)
471 {
472   if ( _isShapeToMesh )
473     throw SALOME_Exception(LOCALIZED("a shape to mesh has already been defined"));
474   _isShapeToMesh = false;
475
476   DriverUNV_R_SMDS_Mesh myReader;
477   myReader.SetMesh(_myMeshDS);
478   myReader.SetFile(theFileName);
479   myReader.SetMeshId(-1);
480   myReader.Perform();
481
482   TGroupNamesMap& aGroupNames = myReader.GetGroupNamesMap();
483   TGroupNamesMap::iterator gr2names;
484   int anId = 1 + ( _mapGroup.empty() ? 0 : _mapGroup.rbegin()->first );
485   for ( gr2names = aGroupNames.begin(); gr2names != aGroupNames.end(); ++gr2names )
486   {
487     SMDS_MeshGroup*   aGroup = gr2names->first;
488     const std::string& aName = gr2names->second;
489     SMESHDS_Group* aGroupDS = new SMESHDS_Group( anId++, _myMeshDS, aGroup->GetType() );
490     aGroupDS->SMDSGroup() = std::move( *aGroup );
491     aGroupDS->SetStoreName( aName.c_str() );
492     AddGroup( aGroupDS );
493   }
494
495   return 1;
496 }
497
498 //=======================================================================
499 //function : MEDToMesh
500 //purpose  :
501 //=======================================================================
502
503 int SMESH_Mesh::MEDToMesh(const char* theFileName, const char* theMeshName)
504 {
505   if ( _isShapeToMesh )
506     throw SALOME_Exception(LOCALIZED("a shape to mesh has already been defined"));
507   _isShapeToMesh = false;
508
509   DriverMED_R_SMESHDS_Mesh myReader;
510   myReader.SetMesh(_myMeshDS);
511   myReader.SetMeshId(-1);
512   myReader.SetFile(theFileName);
513   myReader.SetMeshName(theMeshName);
514   Driver_Mesh::Status status = myReader.Perform();
515 #ifdef _DEBUG_
516   SMESH_ComputeErrorPtr er = myReader.GetError();
517   if ( er && !er->IsOK() ) std::cout << er->myComment << std::endl;
518 #endif
519
520   // Reading groups (sub-meshes are out of scope of MED import functionality)
521   std::list<TNameAndType> aGroupNames = myReader.GetGroupNamesAndTypes();
522   std::list<TNameAndType>::iterator name_type = aGroupNames.begin();
523   for ( ; name_type != aGroupNames.end(); name_type++ )
524   {
525     SMESH_Group* aGroup = AddGroup( name_type->second, name_type->first.c_str() );
526     if ( aGroup ) {
527       SMESHDS_Group* aGroupDS = dynamic_cast<SMESHDS_Group*>( aGroup->GetGroupDS() );
528       if ( aGroupDS ) {
529         aGroupDS->SetStoreName( name_type->first.c_str() );
530         myReader.GetGroup( aGroupDS );
531       }
532     }
533   }
534
535   _myMeshDS->Modified();
536   _myMeshDS->CompactMesh();
537
538   return (int) status;
539 }
540
541 //=======================================================================
542 //function : STLToMesh
543 //purpose  :
544 //=======================================================================
545
546 std::string SMESH_Mesh::STLToMesh(const char* theFileName)
547 {
548   if(_isShapeToMesh)
549     throw SALOME_Exception(LOCALIZED("a shape to mesh has already been defined"));
550   _isShapeToMesh = false;
551
552   DriverSTL_R_SMDS_Mesh myReader;
553   myReader.SetMesh(_myMeshDS);
554   myReader.SetFile(theFileName);
555   myReader.SetMeshId(-1);
556   myReader.Perform();
557
558   return myReader.GetName();
559 }
560
561 //================================================================================
562 /*!
563  * \brief Reads the given mesh from the CGNS file
564  *  \param theFileName - name of the file
565  *  \retval int - Driver_Mesh::Status
566  */
567 //================================================================================
568
569 int SMESH_Mesh::CGNSToMesh(const char*  theFileName,
570                            const int    theMeshIndex,
571                            std::string& theMeshName)
572 {
573   int res = Driver_Mesh::DRS_FAIL;
574 #ifdef WITH_CGNS
575
576   DriverCGNS_Read myReader;
577   myReader.SetMesh(_myMeshDS);
578   myReader.SetFile(theFileName);
579   myReader.SetMeshId(theMeshIndex);
580   res = myReader.Perform();
581   theMeshName = myReader.GetMeshName();
582
583   // create groups
584   SynchronizeGroups();
585
586 #endif
587   return res;
588 }
589
590 //================================================================================
591 /*!
592  * \brief Fill its data by reading a GMF file
593  */
594 //================================================================================
595
596 SMESH_ComputeErrorPtr SMESH_Mesh::GMFToMesh(const char* theFileName,
597                                             bool        theMakeRequiredGroups)
598 {
599   DriverGMF_Read myReader;
600   myReader.SetMesh(_myMeshDS);
601   myReader.SetFile(theFileName);
602   myReader.SetMakeRequiredGroups( theMakeRequiredGroups );
603   myReader.Perform();
604   //theMeshName = myReader.GetMeshName();
605
606   // create groups
607   SynchronizeGroups();
608
609   return myReader.GetError();
610 }
611
612 //=============================================================================
613 /*!
614  * 
615  */
616 //=============================================================================
617
618 SMESH_Hypothesis::Hypothesis_Status
619 SMESH_Mesh::AddHypothesis(const TopoDS_Shape & aSubShape,
620                           int                  anHypId,
621                           std::string*         anError  )
622 {
623   Unexpect aCatch(SalomeException);
624   if(MYDEBUG) MESSAGE("SMESH_Mesh::AddHypothesis");
625
626   if ( anError )
627     anError->clear();
628
629   SMESH_subMesh *subMesh = GetSubMesh(aSubShape);
630   if ( !subMesh || !subMesh->GetId())
631     return SMESH_Hypothesis::HYP_BAD_SUBSHAPE;
632
633   SMESH_Hypothesis *anHyp = GetHypothesis( anHypId );
634   if ( !anHyp )
635     throw SALOME_Exception(LOCALIZED("hypothesis does not exist"));
636
637   bool isGlobalHyp = IsMainShape( aSubShape );
638
639   // NotConformAllowed can be only global
640   if ( !isGlobalHyp )
641   {
642     // NOTE: this is not a correct way to check a name of hypothesis,
643     // there should be an attribute of hypothesis saying that it can/can't
644     // be global/local
645     std::string hypName = anHyp->GetName();
646     if ( hypName == "NotConformAllowed" )
647     {
648       if(MYDEBUG) MESSAGE( "Hypothesis <NotConformAllowed> can be only global" );
649       return SMESH_Hypothesis::HYP_INCOMPATIBLE;
650     }
651   }
652
653   // shape
654
655   bool                     isAlgo = ( anHyp->GetType() != SMESHDS_Hypothesis::PARAM_ALGO );
656   SMESH_subMesh::algo_event event = isAlgo ? SMESH_subMesh::ADD_ALGO : SMESH_subMesh::ADD_HYP;
657
658   SMESH_Hypothesis::Hypothesis_Status ret = subMesh->AlgoStateEngine(event, anHyp);
659
660   if ( anError && SMESH_Hypothesis::IsStatusFatal(ret) && subMesh->GetComputeError() )
661     *anError = subMesh->GetComputeError()->myComment;
662
663   // sub-shapes
664   if ( !SMESH_Hypothesis::IsStatusFatal(ret) &&
665        anHyp->GetDim() <= SMESH_Gen::GetShapeDim(aSubShape)) // is added on father
666   {
667     event = isAlgo ? SMESH_subMesh::ADD_FATHER_ALGO : SMESH_subMesh::ADD_FATHER_HYP;
668
669     SMESH_Hypothesis::Hypothesis_Status ret2 =
670       subMesh->SubMeshesAlgoStateEngine(event, anHyp, /*exitOnFatal=*/true);
671     if (ret2 > ret)
672     {
673       ret = ret2;
674       if ( SMESH_Hypothesis::IsStatusFatal( ret ))
675       {
676         if ( anError && subMesh->GetComputeError() )
677           *anError = subMesh->GetComputeError()->myComment;
678         // remove anHyp
679         event = isAlgo ? SMESH_subMesh::REMOVE_ALGO : SMESH_subMesh::REMOVE_HYP;
680         subMesh->AlgoStateEngine(event, anHyp);
681       }
682     }
683
684     // check concurrent hypotheses on ancestors
685     if (ret < SMESH_Hypothesis::HYP_CONCURRENT && !isGlobalHyp )
686     {
687       SMESH_subMeshIteratorPtr smIt = subMesh->getDependsOnIterator(false,false);
688       while ( smIt->more() ) {
689         SMESH_subMesh* sm = smIt->next();
690         if ( sm->IsApplicableHypothesis( anHyp )) {
691           ret2 = sm->CheckConcurrentHypothesis( anHyp->GetType() );
692           if (ret2 > ret) {
693             ret = ret2;
694             break;
695           }
696         }
697       }
698     }
699   }
700   HasModificationsToDiscard(); // to reset _isModified flag if a mesh becomes empty
701   GetMeshDS()->Modified();
702
703   if(MYDEBUG) subMesh->DumpAlgoState(true);
704   if(MYDEBUG) SCRUTE(ret);
705   return ret;
706 }
707
708 //=============================================================================
709 /*!
710  * 
711  */
712 //=============================================================================
713
714 SMESH_Hypothesis::Hypothesis_Status
715 SMESH_Mesh::RemoveHypothesis(const TopoDS_Shape & aSubShape,
716                              int                    anHypId)
717 {
718   Unexpect aCatch(SalomeException);
719   if(MYDEBUG) MESSAGE("SMESH_Mesh::RemoveHypothesis");
720
721   StudyContextStruct *sc = _gen->GetStudyContext();
722   if (sc->mapHypothesis.find(anHypId) == sc->mapHypothesis.end())
723     throw SALOME_Exception(LOCALIZED("hypothesis does not exist"));
724
725   SMESH_Hypothesis *anHyp = sc->mapHypothesis[anHypId];
726   if(MYDEBUG) { SCRUTE(anHyp->GetType()); }
727
728   // shape 
729
730   bool                     isAlgo = ( !anHyp->GetType() == SMESHDS_Hypothesis::PARAM_ALGO );
731   SMESH_subMesh::algo_event event = isAlgo ? SMESH_subMesh::REMOVE_ALGO : SMESH_subMesh::REMOVE_HYP;
732
733   SMESH_subMesh *subMesh = GetSubMesh(aSubShape);
734
735   SMESH_Hypothesis::Hypothesis_Status ret = subMesh->AlgoStateEngine(event, anHyp);
736
737   // there may appear concurrent hyps that were covered by the removed hyp
738   if (ret < SMESH_Hypothesis::HYP_CONCURRENT &&
739       subMesh->IsApplicableHypothesis( anHyp ) &&
740       subMesh->CheckConcurrentHypothesis( anHyp->GetType() ) != SMESH_Hypothesis::HYP_OK)
741     ret = SMESH_Hypothesis::HYP_CONCURRENT;
742
743   // sub-shapes
744   if (!SMESH_Hypothesis::IsStatusFatal(ret) &&
745       anHyp->GetDim() <= SMESH_Gen::GetShapeDim(aSubShape)) // is removed from father
746   {
747     event = isAlgo ? SMESH_subMesh::REMOVE_FATHER_ALGO : SMESH_subMesh::REMOVE_FATHER_HYP;
748
749     SMESH_Hypothesis::Hypothesis_Status ret2 =
750       subMesh->SubMeshesAlgoStateEngine(event, anHyp);
751     if (ret2 > ret) // more severe
752       ret = ret2;
753
754     // check concurrent hypotheses on ancestors
755     if (ret < SMESH_Hypothesis::HYP_CONCURRENT && !IsMainShape( aSubShape ) )
756     {
757       SMESH_subMeshIteratorPtr smIt = subMesh->getDependsOnIterator(false,false);
758       while ( smIt->more() ) {
759         SMESH_subMesh* sm = smIt->next();
760         if ( sm->IsApplicableHypothesis( anHyp )) {
761           ret2 = sm->CheckConcurrentHypothesis( anHyp->GetType() );
762           if (ret2 > ret) {
763             ret = ret2;
764             break;
765           }
766         }
767       }
768     }
769   }
770
771   HasModificationsToDiscard(); // to reset _isModified flag if mesh become empty
772   GetMeshDS()->Modified();
773
774   if(MYDEBUG) subMesh->DumpAlgoState(true);
775   if(MYDEBUG) SCRUTE(ret);
776   return ret;
777 }
778
779 //=============================================================================
780 /*!
781  * 
782  */
783 //=============================================================================
784
785 const std::list<const SMESHDS_Hypothesis*>&
786 SMESH_Mesh::GetHypothesisList(const TopoDS_Shape & aSubShape) const
787 {
788   return _myMeshDS->GetHypothesis(aSubShape);
789 }
790
791 //=======================================================================
792 /*!
793  * \brief Return the hypothesis assigned to the shape
794  *  \param aSubShape    - the shape to check
795  *  \param aFilter      - the hypothesis filter
796  *  \param andAncestors - flag to check hypos assigned to ancestors of the shape
797  *  \param assignedTo   - to return the shape the found hypo is assigned to
798  *  \retval SMESH_Hypothesis* - the first hypo passed through aFilter
799  */
800 //=======================================================================
801
802 const SMESH_Hypothesis * SMESH_Mesh::GetHypothesis(const TopoDS_Shape &    aSubShape,
803                                                    const SMESH_HypoFilter& aFilter,
804                                                    const bool              andAncestors,
805                                                    TopoDS_Shape*           assignedTo) const
806 {
807   return GetHypothesis( const_cast< SMESH_Mesh* >(this)->GetSubMesh( aSubShape ),
808                         aFilter, andAncestors, assignedTo );
809 }
810
811 //=======================================================================
812 /*!
813  * \brief Return the hypothesis assigned to the shape of a sub-mesh
814  *  \param aSubMesh     - the sub-mesh to check
815  *  \param aFilter      - the hypothesis filter
816  *  \param andAncestors - flag to check hypos assigned to ancestors of the shape
817  *  \param assignedTo   - to return the shape the found hypo is assigned to
818  *  \retval SMESH_Hypothesis* - the first hypo passed through aFilter
819  */
820 //=======================================================================
821
822 const SMESH_Hypothesis * SMESH_Mesh::GetHypothesis(const SMESH_subMesh *   aSubMesh,
823                                                    const SMESH_HypoFilter& aFilter,
824                                                    const bool              andAncestors,
825                                                    TopoDS_Shape*           assignedTo) const
826 {
827   if ( !aSubMesh ) return 0;
828
829   {
830     const TopoDS_Shape & aSubShape = aSubMesh->GetSubShape();
831     const std::list<const SMESHDS_Hypothesis*>& hypList = _myMeshDS->GetHypothesis(aSubShape);
832     std::list<const SMESHDS_Hypothesis*>::const_iterator hyp = hypList.begin();
833     for ( ; hyp != hypList.end(); hyp++ ) {
834       const SMESH_Hypothesis * h = cSMESH_Hyp( *hyp );
835       if ( aFilter.IsOk( h, aSubShape)) {
836         if ( assignedTo ) *assignedTo = aSubShape;
837         return h;
838       }
839     }
840   }
841   if ( andAncestors )
842   {
843     // user sorted submeshes of ancestors, according to stored submesh priority
844     std::vector< SMESH_subMesh * > & ancestors =
845       const_cast< std::vector< SMESH_subMesh * > & > ( aSubMesh->GetAncestors() );
846     SortByMeshOrder( ancestors );
847
848     std::vector<SMESH_subMesh*>::const_iterator smIt = ancestors.begin(); 
849     for ( ; smIt != ancestors.end(); smIt++ )
850     {
851       const TopoDS_Shape& curSh = (*smIt)->GetSubShape();
852       const std::list<const SMESHDS_Hypothesis*>& hypList = _myMeshDS->GetHypothesis(curSh);
853       std::list<const SMESHDS_Hypothesis*>::const_iterator hyp = hypList.begin();
854       for ( ; hyp != hypList.end(); hyp++ ) {
855         const SMESH_Hypothesis * h = cSMESH_Hyp( *hyp );
856         if (aFilter.IsOk( h, curSh )) {
857           if ( assignedTo ) *assignedTo = curSh;
858           return h;
859         }
860       }
861     }
862   }
863   return 0;
864 }
865
866 //================================================================================
867 /*!
868  * \brief Return hypotheses assigned to the shape
869   * \param aSubShape - the shape to check
870   * \param aFilter - the hypothesis filter
871   * \param aHypList - the list of the found hypotheses
872   * \param andAncestors - flag to check hypos assigned to ancestors of the shape
873   * \retval int - number of unique hypos in aHypList
874  */
875 //================================================================================
876
877 int SMESH_Mesh::GetHypotheses(const TopoDS_Shape &                     aSubShape,
878                               const SMESH_HypoFilter&                  aFilter,
879                               std::list <const SMESHDS_Hypothesis * >& aHypList,
880                               const bool                               andAncestors,
881                               std::list< TopoDS_Shape > *              assignedTo/*=0*/) const
882 {
883   return GetHypotheses( const_cast< SMESH_Mesh* >(this)->GetSubMesh( aSubShape ),
884                         aFilter, aHypList, andAncestors, assignedTo );
885 }
886
887 //================================================================================
888 /*!
889  * \brief Return hypotheses assigned to the shape of a sub-mesh
890   * \param aSubShape - the sub-mesh to check
891   * \param aFilter - the hypothesis filter
892   * \param aHypList - the list of the found hypotheses
893   * \param andAncestors - flag to check hypos assigned to ancestors of the shape
894   * \retval int - number of unique hypos in aHypList
895  */
896 //================================================================================
897
898 int SMESH_Mesh::GetHypotheses(const SMESH_subMesh *                    aSubMesh,
899                               const SMESH_HypoFilter&                  aFilter,
900                               std::list <const SMESHDS_Hypothesis * >& aHypList,
901                               const bool                               andAncestors,
902                               std::list< TopoDS_Shape > *              assignedTo/*=0*/) const
903 {
904   if ( !aSubMesh ) return 0;
905
906   std::set< std::string > hypTypes; // to exclude same type hypos from the result list
907   int nbHyps = 0;
908
909   // only one main hypothesis is allowed
910   bool mainHypFound = false;
911
912   // fill in hypTypes
913   std::list<const SMESHDS_Hypothesis*>::const_iterator hyp;
914   for ( hyp = aHypList.begin(); hyp != aHypList.end(); hyp++ ) {
915     if ( hypTypes.insert( (*hyp)->GetName() ).second )
916       nbHyps++;
917     if ( !cSMESH_Hyp(*hyp)->IsAuxiliary() )
918       mainHypFound = true;
919   }
920
921   // get hypos from aSubShape
922   {
923     const TopoDS_Shape & aSubShape = aSubMesh->GetSubShape();
924     const std::list<const SMESHDS_Hypothesis*>& hypList = _myMeshDS->GetHypothesis(aSubShape);
925     for ( hyp = hypList.begin(); hyp != hypList.end(); hyp++ )
926     {
927       const SMESH_Hypothesis* h = cSMESH_Hyp( *hyp );
928       if (( aFilter.IsOk( h, aSubShape )) &&
929           ( h->IsAuxiliary() || !mainHypFound ) &&
930           ( h->IsAuxiliary() || hypTypes.insert( h->GetName() ).second ))
931       {
932         aHypList.push_back( *hyp );
933         nbHyps++;
934         if ( !h->IsAuxiliary() )
935           mainHypFound = true;
936         if ( assignedTo ) assignedTo->push_back( aSubShape );
937       }
938     }
939   }
940
941   // get hypos from ancestors of aSubShape
942   if ( andAncestors )
943   {
944     // user sorted submeshes of ancestors, according to stored submesh priority
945     std::vector< SMESH_subMesh * > & ancestors =
946       const_cast< std::vector< SMESH_subMesh * > & > ( aSubMesh->GetAncestors() );
947     SortByMeshOrder( ancestors );
948
949     std::vector<SMESH_subMesh*>::const_iterator smIt = ancestors.begin();
950     for ( ; smIt != ancestors.end(); smIt++ )
951     {
952       const TopoDS_Shape& curSh = (*smIt)->GetSubShape();
953       const std::list<const SMESHDS_Hypothesis*>& hypList = _myMeshDS->GetHypothesis(curSh);
954       for ( hyp = hypList.begin(); hyp != hypList.end(); hyp++ )
955       {
956         const SMESH_Hypothesis* h = cSMESH_Hyp( *hyp );
957         if (( aFilter.IsOk( h, curSh )) &&
958             ( h->IsAuxiliary() || !mainHypFound ) &&
959             ( h->IsAuxiliary() || hypTypes.insert( h->GetName() ).second ))
960         {
961           aHypList.push_back( *hyp );
962           nbHyps++;
963           if ( !h->IsAuxiliary() )
964             mainHypFound = true;
965           if ( assignedTo ) assignedTo->push_back( curSh );
966         }
967       }
968     }
969   }
970   return nbHyps;
971 }
972
973 //================================================================================
974 /*!
975  * \brief Return a hypothesis by its ID
976  */
977 //================================================================================
978
979 SMESH_Hypothesis * SMESH_Mesh::GetHypothesis(const int anHypId) const
980 {
981   StudyContextStruct *sc = _gen->GetStudyContext();
982   if (sc->mapHypothesis.find(anHypId) == sc->mapHypothesis.end())
983     return NULL;
984
985   SMESH_Hypothesis *anHyp = sc->mapHypothesis[anHypId];
986   return anHyp;
987 }
988
989 //=============================================================================
990 /*!
991  * 
992  */
993 //=============================================================================
994
995 const std::list<SMESHDS_Command*> & SMESH_Mesh::GetLog()
996 {
997   Unexpect aCatch(SalomeException);
998   return _myMeshDS->GetScript()->GetCommands();
999 }
1000
1001 //=============================================================================
1002 /*!
1003  * 
1004  */
1005 //=============================================================================
1006 void SMESH_Mesh::ClearLog()
1007 {
1008   Unexpect aCatch(SalomeException);
1009   _myMeshDS->GetScript()->Clear();
1010 }
1011
1012 //=============================================================================
1013 /*!
1014  * Get or Create the SMESH_subMesh object implementation
1015  */
1016 //=============================================================================
1017
1018 SMESH_subMesh * SMESH_Mesh::GetSubMesh(const TopoDS_Shape & aSubShape)
1019 {
1020   int index = _myMeshDS->ShapeToIndex(aSubShape);
1021   if ( !index && aSubShape.IsNull() )
1022     return 0;
1023
1024   // for submeshes on GEOM Group
1025   if (( !index || index > _nbSubShapes ) && aSubShape.ShapeType() == TopAbs_COMPOUND )
1026   {
1027     TopoDS_Iterator it( aSubShape );
1028     if ( it.More() )
1029     {
1030       index = _myMeshDS->AddCompoundSubmesh( aSubShape, it.Value().ShapeType() );
1031       // fill map of Ancestors
1032       while ( _nbSubShapes < index )
1033         fillAncestorsMap( _myMeshDS->IndexToShape( ++_nbSubShapes ));
1034     }
1035   }
1036   // if ( !index )
1037   //   return NULL; // neither sub-shape nor a group
1038
1039   SMESH_subMesh* aSubMesh = _subMeshHolder->Get( index );
1040   if ( !aSubMesh )
1041   {
1042     aSubMesh = new SMESH_subMesh(index, this, _myMeshDS, aSubShape);
1043     _subMeshHolder->Add( index, aSubMesh );
1044
1045     // include non-computable sub-meshes in SMESH_subMesh::_ancestors of sub-submeshes
1046     switch ( aSubShape.ShapeType() ) {
1047     case TopAbs_COMPOUND:
1048     case TopAbs_WIRE:
1049     case TopAbs_SHELL:
1050       for ( TopoDS_Iterator subIt( aSubShape ); subIt.More(); subIt.Next() )
1051       {
1052         SMESH_subMesh* sm = GetSubMesh( subIt.Value() );
1053         SMESH_subMeshIteratorPtr smIt = sm->getDependsOnIterator(/*inclideSelf=*/true);
1054         while ( smIt->more() )
1055           smIt->next()->ClearAncestors();
1056       }
1057     default:;
1058     }
1059   }
1060   return aSubMesh;
1061 }
1062
1063 //=============================================================================
1064 /*!
1065  * Get the SMESH_subMesh object implementation. Don't create it, return null
1066  * if it does not exist.
1067  */
1068 //=============================================================================
1069
1070 SMESH_subMesh *SMESH_Mesh::GetSubMeshContaining(const TopoDS_Shape & aSubShape) const
1071 {
1072   int index = _myMeshDS->ShapeToIndex(aSubShape);
1073   return GetSubMeshContaining( index );
1074 }
1075
1076 //=============================================================================
1077 /*!
1078  * Get the SMESH_subMesh object implementation. Don't create it, return null
1079  * if it does not exist.
1080  */
1081 //=============================================================================
1082
1083 SMESH_subMesh *SMESH_Mesh::GetSubMeshContaining(const int aShapeID) const
1084 {
1085   SMESH_subMesh *aSubMesh = _subMeshHolder->Get( aShapeID );
1086   return aSubMesh;
1087 }
1088
1089 //================================================================================
1090 /*!
1091  * \brief Return sub-meshes of groups containing the given sub-shape
1092  */
1093 //================================================================================
1094
1095 std::list<SMESH_subMesh*>
1096 SMESH_Mesh::GetGroupSubMeshesContaining(const TopoDS_Shape & aSubShape) const
1097 {
1098   std::list<SMESH_subMesh*> found;
1099
1100   SMESH_subMesh * subMesh = GetSubMeshContaining(aSubShape);
1101   if ( !subMesh )
1102     return found;
1103
1104   // sub-meshes of groups have max IDs, so search from the map end
1105   SMESH_subMeshIteratorPtr smIt( _subMeshHolder->GetIterator( /*reverse=*/true ) );
1106   while ( smIt->more() ) {
1107     SMESH_subMesh*    sm = smIt->next();
1108     SMESHDS_SubMesh * ds = sm->GetSubMeshDS();
1109     if ( ds && ds->IsComplexSubmesh() ) {
1110       if ( SMESH_MesherHelper::IsSubShape( aSubShape, sm->GetSubShape() ))
1111       {
1112         found.push_back( sm );
1113         //break;
1114       }
1115     } else {
1116       break; // the rest sub-meshes are not those of groups
1117     }
1118   }
1119
1120   if ( found.empty() ) // maybe the main shape is a COMPOUND (issue 0021530)
1121   {
1122     if ( SMESH_subMesh * mainSM = GetSubMeshContaining(1) )
1123       if ( mainSM->GetSubShape().ShapeType() == TopAbs_COMPOUND )
1124       {
1125         TopoDS_Iterator it( mainSM->GetSubShape() );
1126         if ( it.Value().ShapeType() == aSubShape.ShapeType() &&
1127              SMESH_MesherHelper::IsSubShape( aSubShape, mainSM->GetSubShape() ))
1128           found.push_back( mainSM );
1129       }
1130   }
1131   else // issue 0023068
1132   {
1133     if ( SMESH_subMesh * mainSM = GetSubMeshContaining(1) )
1134       if ( mainSM->GetSubShape().ShapeType() == TopAbs_COMPOUND )
1135         found.push_back( mainSM );
1136   }
1137   return found;
1138 }
1139 //=======================================================================
1140 //function : IsUsedHypothesis
1141 //purpose  : Return True if anHyp is used to mesh aSubShape
1142 //=======================================================================
1143
1144 bool SMESH_Mesh::IsUsedHypothesis(SMESHDS_Hypothesis * anHyp,
1145                                   const SMESH_subMesh* aSubMesh)
1146 {
1147   SMESH_Hypothesis* hyp = static_cast<SMESH_Hypothesis*>(anHyp);
1148
1149   // check if anHyp can be used to mesh aSubMesh
1150   if ( !aSubMesh || !aSubMesh->IsApplicableHypothesis( hyp ))
1151     return false;
1152
1153   SMESH_Algo *algo = aSubMesh->GetAlgo();
1154
1155   // algorithm
1156   if (anHyp->GetType() > SMESHDS_Hypothesis::PARAM_ALGO)
1157     return ( anHyp == algo );
1158
1159   // algorithm parameter
1160   if (algo)
1161   {
1162     // look through hypotheses used by algo
1163     const SMESH_HypoFilter* hypoKind;
1164     if (( hypoKind = algo->GetCompatibleHypoFilter( !hyp->IsAuxiliary() ))) {
1165       std::list <const SMESHDS_Hypothesis * > usedHyps;
1166       if ( GetHypotheses( aSubMesh, *hypoKind, usedHyps, true ))
1167         return ( find( usedHyps.begin(), usedHyps.end(), anHyp ) != usedHyps.end() );
1168     }
1169   }
1170
1171   return false;
1172 }
1173
1174 //=======================================================================
1175 //function : NotifySubMeshesHypothesisModification
1176 //purpose  : Say all submeshes using theChangedHyp that it has been modified
1177 //=======================================================================
1178
1179 void SMESH_Mesh::NotifySubMeshesHypothesisModification(const SMESH_Hypothesis* hyp)
1180 {
1181   Unexpect aCatch(SalomeException);
1182
1183   if ( !GetMeshDS()->IsUsedHypothesis( hyp ))
1184     return;
1185
1186   smIdType nbEntities = ( _myMeshDS->NbNodes() + _myMeshDS->NbElements() );
1187   if ( hyp && _callUp && !_callUp->IsLoaded() ) // for not loaded mesh (#16648)
1188   {
1189     _callUp->HypothesisModified( hyp->GetID(), /*updateIcons=*/true );
1190     nbEntities = ( _myMeshDS->NbNodes() + _myMeshDS->NbElements() ); // after loading mesh
1191   }
1192
1193   SMESH_Algo *algo;
1194   const SMESH_HypoFilter* compatibleHypoKind;
1195   std::list <const SMESHDS_Hypothesis * > usedHyps;
1196   std::vector< SMESH_subMesh* > smToNotify;
1197   bool allMeshedEdgesNotified = true;
1198
1199   SMESH_subMeshIteratorPtr smIt( _subMeshHolder->GetIterator() );
1200   while ( smIt->more() )
1201   {
1202     SMESH_subMesh* aSubMesh = smIt->next();
1203     bool toNotify = false;
1204
1205     // if aSubMesh meshing depends on hyp,
1206     // we call aSubMesh->AlgoStateEngine( MODIF_HYP, hyp ) that causes either
1207     // 1) clearing already computed aSubMesh or
1208     // 2) changing algo_state from MISSING_HYP to HYP_OK when parameters of hyp becomes valid,
1209     // other possible changes are not interesting. (IPAL0052457 - assigning hyp performance pb)
1210     if ( aSubMesh->GetComputeState() == SMESH_subMesh::COMPUTE_OK ||
1211          aSubMesh->GetComputeState() == SMESH_subMesh::FAILED_TO_COMPUTE ||
1212          aSubMesh->GetAlgoState()    == SMESH_subMesh::MISSING_HYP ||
1213          hyp->DataDependOnParams() )
1214     {
1215       const TopoDS_Shape & aSubShape = aSubMesh->GetSubShape();
1216
1217       if (( aSubMesh->IsApplicableHypothesis( hyp )) &&
1218           ( algo = aSubMesh->GetAlgo() )            &&
1219           ( compatibleHypoKind = algo->GetCompatibleHypoFilter( !hyp->IsAuxiliary() )) &&
1220           ( compatibleHypoKind->IsOk( hyp, aSubShape )))
1221       {
1222         // check if hyp is used by algo
1223         usedHyps.clear();
1224         toNotify = ( GetHypotheses( aSubMesh, *compatibleHypoKind, usedHyps, true ) &&
1225                      std::find( usedHyps.begin(), usedHyps.end(), hyp ) != usedHyps.end() );
1226       }
1227     }
1228     if ( toNotify )
1229     {
1230       smToNotify.push_back( aSubMesh );
1231       if ( aSubMesh->GetAlgoState() == SMESH_subMesh::MISSING_HYP )
1232         allMeshedEdgesNotified = false; //  update of algo state needed, not mesh clearing
1233     }
1234     else
1235     {
1236       if ( !aSubMesh->IsEmpty() &&
1237            aSubMesh->GetSubShape().ShapeType() == TopAbs_EDGE )
1238         allMeshedEdgesNotified = false;
1239     }
1240   }
1241   if ( smToNotify.empty() )
1242     return;
1243
1244   // if all meshed EDGEs will be notified then the notification is equivalent
1245   // to the whole mesh clearing, which is usually faster
1246   if ( allMeshedEdgesNotified && NbNodes() > 0 )
1247   {
1248     Clear();
1249   }
1250   else
1251   {
1252     // notify in reverse order to avoid filling the pool of IDs
1253     for ( int i = smToNotify.size()-1; i >= 0; --i )
1254       smToNotify[i]->AlgoStateEngine(SMESH_subMesh::MODIF_HYP,
1255                                      const_cast< SMESH_Hypothesis*>( hyp ));
1256   }
1257   HasModificationsToDiscard(); // to reset _isModified flag if mesh becomes empty
1258   GetMeshDS()->Modified();
1259
1260   smIdType newNbEntities = ( _myMeshDS->NbNodes() + _myMeshDS->NbElements() );
1261   if ( hyp && _callUp )
1262     _callUp->HypothesisModified( hyp->GetID(), newNbEntities != nbEntities );
1263 }
1264
1265 //=============================================================================
1266 /*!
1267  *  Auto color functionality
1268  */
1269 //=============================================================================
1270 void SMESH_Mesh::SetAutoColor(bool theAutoColor)
1271 {
1272   Unexpect aCatch(SalomeException);
1273   _isAutoColor = theAutoColor;
1274 }
1275
1276 bool SMESH_Mesh::GetAutoColor()
1277 {
1278   Unexpect aCatch(SalomeException);
1279   return _isAutoColor;
1280 }
1281
1282 //=======================================================================
1283 //function : SetIsModified
1284 //purpose  : Set the flag meaning that the mesh has been edited "manually"
1285 //=======================================================================
1286
1287 void SMESH_Mesh::SetIsModified(bool isModified)
1288 {
1289   _isModified = isModified;
1290
1291   if ( _isModified )
1292     // check if mesh becomes empty as result of modification
1293     HasModificationsToDiscard();
1294 }
1295
1296 //=======================================================================
1297 //function : HasModificationsToDiscard
1298 //purpose  : Return true if the mesh has been edited since a total re-compute
1299 //           and those modifications may prevent successful partial re-compute.
1300 //           As a side effect reset _isModified flag if mesh is empty
1301 //issue    : 0020693
1302 //=======================================================================
1303
1304 bool SMESH_Mesh::HasModificationsToDiscard() const
1305 {
1306   if ( ! _isModified )
1307     return false;
1308
1309   // return true if the next Compute() will be partial and
1310   // existing but changed elements may prevent successful re-compute
1311   bool hasComputed = false, hasNotComputed = false;
1312   SMESH_subMeshIteratorPtr smIt( _subMeshHolder->GetIterator() );
1313   while ( smIt->more() )
1314   {
1315     const SMESH_subMesh* aSubMesh = smIt->next();
1316     switch ( aSubMesh->GetSubShape().ShapeType() )
1317     {
1318     case TopAbs_EDGE:
1319     case TopAbs_FACE:
1320     case TopAbs_SOLID:
1321       if ( aSubMesh->IsMeshComputed() )
1322         hasComputed = true;
1323       else
1324         hasNotComputed = true;
1325       if ( hasComputed && hasNotComputed)
1326         return true;
1327
1328     default:;
1329     }
1330   }
1331   if ( NbNodes() < 1 )
1332     const_cast<SMESH_Mesh*>(this)->_isModified = false;
1333
1334   return false;
1335 }
1336
1337 //=============================================================================
1338 /*!
1339  * \brief Return true if all sub-meshes are computed OK - to update an icon
1340  */
1341 //=============================================================================
1342
1343 bool SMESH_Mesh::IsComputedOK()
1344 {
1345   if ( NbNodes() == 0 )
1346     return false;
1347
1348   // if ( !HasShapeToMesh() )
1349   //   return true;
1350
1351   if ( SMESH_subMesh* mainSM = GetSubMeshContaining( 1 ))
1352   {
1353     SMESH_subMeshIteratorPtr smIt = mainSM->getDependsOnIterator(/*includeSelf=*/true);
1354     while ( smIt->more() )
1355     {
1356       const SMESH_subMesh* sm = smIt->next();
1357       if ( !sm->IsAlwaysComputed() )
1358         switch ( sm->GetComputeState() )
1359         {
1360         case SMESH_subMesh::NOT_READY:
1361         case SMESH_subMesh::COMPUTE_OK:
1362           continue; // ok
1363         case SMESH_subMesh::FAILED_TO_COMPUTE:
1364         case SMESH_subMesh::READY_TO_COMPUTE:
1365           return false;
1366         }
1367     }
1368   }
1369   return true;
1370 }
1371
1372 //================================================================================
1373 /*!
1374  * \brief Check if any groups of the same type have equal names
1375  */
1376 //================================================================================
1377
1378 bool SMESH_Mesh::HasDuplicatedGroupNamesMED()
1379 {
1380   // Corrected for Mantis issue 0020028
1381   std::map< SMDSAbs_ElementType, std::set< std::string > > aGroupNames;
1382   for ( std::map<int, SMESH_Group*>::iterator it = _mapGroup.begin(); it != _mapGroup.end(); it++ )
1383   {
1384     SMESH_Group*       aGroup = it->second;
1385     SMDSAbs_ElementType aType = aGroup->GetGroupDS()->GetType();
1386     std::string    aGroupName = aGroup->GetName();
1387     aGroupName.resize( MAX_MED_GROUP_NAME_LENGTH );
1388     if ( !aGroupNames[aType].insert(aGroupName).second )
1389       return true;
1390   }
1391
1392   return false;
1393 }
1394
1395 //================================================================================
1396 /*!
1397  * \brief Export the mesh to a med file
1398  *  \param [in] file - name of the MED file
1399  *  \param [in] theMeshName - name of this mesh
1400  *  \param [in] theAutoGroups - boolean parameter for creating/not creating
1401  *              the groups Group_On_All_Nodes, Group_On_All_Faces, ... ;
1402  *              the typical use is auto_groups=false.
1403  *  \param [in] theVersion - define the minor (xy, where version is x.y.z) of MED file format.
1404  *              If theVersion is equal to -1, the minor version is not changed (default).
1405  *  \param [in] meshPart - mesh data to export
1406  *  \param [in] theAutoDimension - if \c true, a space dimension of a MED mesh can be either
1407  *              - 1D if all mesh nodes lie on OX coordinate axis, or
1408  *              - 2D if all mesh nodes lie on XOY coordinate plane, or
1409  *              - 3D in the rest cases.
1410  *              If \a theAutoDimension is \c false, the space dimension is always 3.
1411  *  \param [in] theAddODOnVertices - to create 0D elements on all vertices
1412  *  \param [in] theAllElemsToGroup - to make every element to belong to any group (PAL23413)
1413  *  \param [in] ZTolerance - tolerance in Z direction. If Z coordinate of a node is close to zero
1414  *              within a given tolerance, the coordinate is set to zero.
1415  *              If \a ZTolerance is negative, the node coordinates are kept as is.
1416  *  \return int - mesh index in the file
1417  */
1418 //================================================================================
1419
1420 void SMESH_Mesh::ExportMED(const char *        file,
1421                            const char*         theMeshName,
1422                            bool                theAutoGroups,
1423                            int                 theVersion,
1424                            const SMESHDS_Mesh* meshPart,
1425                            bool                theAutoDimension,
1426                            bool                theAddODOnVertices,
1427                            double              theZTolerance,
1428                            bool                theAllElemsToGroup)
1429 {
1430   MESSAGE("MED_VERSION:"<< theVersion);
1431
1432   Driver_Mesh::Status status;
1433   SMESH_TRY;
1434
1435   DriverMED_W_SMESHDS_Mesh myWriter;
1436   myWriter.SetFile         ( file , theVersion);
1437   myWriter.SetMesh         ( meshPart ? (SMESHDS_Mesh*) meshPart : _myMeshDS   );
1438   myWriter.SetAutoDimension( theAutoDimension );
1439   myWriter.AddODOnVertices ( theAddODOnVertices );
1440   myWriter.SetZTolerance   ( theZTolerance );
1441   if ( !theMeshName )
1442     myWriter.SetMeshId     ( _id         );
1443   else {
1444     myWriter.SetMeshId     ( -1          );
1445     myWriter.SetMeshName   ( theMeshName );
1446   }
1447
1448   if ( theAutoGroups ) {
1449     myWriter.AddGroupOfNodes();
1450     myWriter.AddGroupOfEdges();
1451     myWriter.AddGroupOfFaces();
1452     myWriter.AddGroupOfVolumes();
1453     myWriter.AddGroupOf0DElems();
1454     myWriter.AddGroupOfBalls();
1455   }
1456   if ( theAllElemsToGroup )
1457     myWriter.AddAllToGroup();
1458
1459   // Pass groups to writer. Provide unique group names.
1460   //set<string> aGroupNames; // Corrected for Mantis issue 0020028
1461   if ( !meshPart )
1462   {
1463     std::map< SMDSAbs_ElementType, std::set<std::string> > aGroupNames;
1464     char aString [256];
1465     int maxNbIter = 10000; // to guarantee cycle finish
1466     for ( std::map<int, SMESH_Group*>::iterator it = _mapGroup.begin();
1467           it != _mapGroup.end();
1468           it++ ) {
1469       SMESH_Group*       aGroup   = it->second;
1470       SMESHDS_GroupBase* aGroupDS = aGroup->GetGroupDS();
1471       if ( aGroupDS ) {
1472         SMDSAbs_ElementType aType = aGroupDS->GetType();
1473         std::string aGroupName0 = aGroup->GetName();
1474         aGroupName0.resize(MAX_MED_GROUP_NAME_LENGTH);
1475         std::string aGroupName = aGroupName0;
1476         for (int i = 1; !aGroupNames[aType].insert(aGroupName).second && i < maxNbIter; i++) {
1477           sprintf(&aString[0], "GR_%d_%s", i, aGroupName0.c_str());
1478           aGroupName = aString;
1479           aGroupName.resize(MAX_MED_GROUP_NAME_LENGTH);
1480         }
1481         aGroupDS->SetStoreName( aGroupName.c_str() );
1482         myWriter.AddGroup( aGroupDS );
1483       }
1484     }
1485   }
1486   // Perform export
1487   status = myWriter.Perform();
1488
1489   SMESH_CATCH( SMESH::throwSalomeEx );
1490
1491   if ( status == Driver_Mesh::DRS_TOO_LARGE_MESH )
1492     throw TooLargeForExport("MED");
1493 }
1494
1495 //================================================================================
1496 /*!
1497  * \brief Export the mesh to a SAUV file
1498  */
1499 //================================================================================
1500
1501 void SMESH_Mesh::ExportSAUV(const char *file, 
1502                             const char* theMeshName, 
1503                             bool theAutoGroups)
1504 {
1505   std::string medfilename(file);
1506   medfilename += ".med";
1507   std::string cmd;
1508 #ifdef WIN32
1509   cmd = "%PYTHONBIN% ";
1510 #else
1511   cmd = "python3 ";
1512 #endif
1513   cmd += "-c \"";
1514   cmd += "from medutilities import my_remove ; my_remove(r'" + medfilename + "')";
1515   cmd += "\"";
1516   system(cmd.c_str());
1517   try {
1518     ExportMED(medfilename.c_str(), theMeshName, theAutoGroups, /*minor=*/-1,
1519               /*meshPart=*/NULL, /*theAutoDimension=*/false, /*theAddODOnVertices=*/false,
1520               /*zTol=*/-1, /*theAllElemsToGroup=*/true ); // theAllElemsToGroup is for PAL0023413
1521   }
1522   catch ( TooLargeForExport )
1523   {
1524     throw TooLargeForExport("SAUV");
1525   }
1526 #ifdef WIN32
1527   cmd = "%PYTHONBIN% ";
1528 #else
1529   cmd = "python3 ";
1530 #endif
1531   cmd += "-c \"";
1532   cmd += "from medutilities import convert ; convert(r'" + medfilename + "', 'MED', 'GIBI', 1, r'" + file + "')";
1533   cmd += "\"";
1534   system(cmd.c_str());
1535 #ifdef WIN32
1536   cmd = "%PYTHONBIN% ";
1537 #else
1538   cmd = "python3 ";
1539 #endif
1540   cmd += "-c \"";
1541   cmd += "from medutilities import my_remove ; my_remove(r'" + medfilename + "')";
1542   cmd += "\"";
1543   system(cmd.c_str());
1544 }
1545
1546 //================================================================================
1547 /*!
1548  * \brief Export the mesh to a DAT file
1549  */
1550 //================================================================================
1551
1552 void SMESH_Mesh::ExportDAT(const char *        file,
1553                            const SMESHDS_Mesh* meshPart)
1554 {
1555   Driver_Mesh::Status status;
1556   SMESH_TRY;
1557
1558   DriverDAT_W_SMDS_Mesh myWriter;
1559   myWriter.SetFile( file );
1560   myWriter.SetMesh( meshPart ? (SMESHDS_Mesh*) meshPart : _myMeshDS );
1561   myWriter.SetMeshId(_id);
1562   status = myWriter.Perform();
1563
1564   SMESH_CATCH( SMESH::throwSalomeEx );
1565
1566   if ( status == Driver_Mesh::DRS_TOO_LARGE_MESH )
1567     throw TooLargeForExport("DAT");
1568 }
1569
1570 //================================================================================
1571 /*!
1572  * \brief Export the mesh to an UNV file
1573  */
1574 //================================================================================
1575
1576 void SMESH_Mesh::ExportUNV(const char *        file,
1577                            const SMESHDS_Mesh* meshPart)
1578 {
1579   Driver_Mesh::Status status;
1580
1581   SMESH_TRY;
1582   DriverUNV_W_SMDS_Mesh myWriter;
1583   myWriter.SetFile( file );
1584   myWriter.SetMesh( meshPart ? (SMESHDS_Mesh*) meshPart : _myMeshDS );
1585   myWriter.SetMeshId(_id);
1586   //  myWriter.SetGroups(_mapGroup);
1587
1588   // pass group names to SMESHDS
1589   if ( !meshPart )
1590   {
1591     std::map<int, SMESH_Group*>::iterator it = _mapGroup.begin();
1592     for ( ; it != _mapGroup.end(); it++ ) {
1593       SMESH_Group*       aGroup   = it->second;
1594       SMESHDS_GroupBase* aGroupDS = aGroup->GetGroupDS();
1595       if ( aGroupDS ) {
1596         std::string aGroupName = aGroup->GetName();
1597         aGroupDS->SetStoreName( aGroupName.c_str() );
1598         myWriter.AddGroup( aGroupDS );
1599       }
1600     }
1601   }
1602   status = myWriter.Perform();
1603
1604   SMESH_CATCH( SMESH::throwSalomeEx );
1605
1606   if ( status == Driver_Mesh::DRS_TOO_LARGE_MESH )
1607     throw TooLargeForExport("UNV");
1608 }
1609
1610 //================================================================================
1611 /*!
1612  * \brief Export the mesh to an STL file
1613  */
1614 //================================================================================
1615
1616 void SMESH_Mesh::ExportSTL(const char *        file,
1617                            const bool          isascii,
1618                            const char *        name,
1619                            const SMESHDS_Mesh* meshPart)
1620 {
1621   Driver_Mesh::Status status;
1622   SMESH_TRY;
1623
1624   DriverSTL_W_SMDS_Mesh myWriter;
1625   myWriter.SetFile( file );
1626   myWriter.SetIsAscii( isascii );
1627   myWriter.SetMesh( meshPart ? (SMESHDS_Mesh*) meshPart : _myMeshDS);
1628   myWriter.SetMeshId(_id);
1629   if ( name ) myWriter.SetName( name );
1630   status = myWriter.Perform();
1631
1632   SMESH_CATCH( SMESH::throwSalomeEx );
1633
1634   if ( status == Driver_Mesh::DRS_TOO_LARGE_MESH )
1635     throw TooLargeForExport("STL");
1636 }
1637
1638 //================================================================================
1639 /*!
1640  * \brief Export the mesh to the CGNS file
1641  */
1642 //================================================================================
1643
1644 void SMESH_Mesh::ExportCGNS(const char *        file,
1645                             const SMESHDS_Mesh* meshDS,
1646                             const char *        meshName,
1647                             const bool          groupElemsByType)
1648 {
1649
1650   int res = Driver_Mesh::DRS_FAIL;
1651   SMESH_TRY;
1652
1653   // pass group names to SMESHDS
1654   std::map<int, SMESH_Group*>::iterator it = _mapGroup.begin();
1655   for ( ; it != _mapGroup.end(); it++ ) {
1656     SMESH_Group*       group   = it->second;
1657     SMESHDS_GroupBase* groupDS = group->GetGroupDS();
1658     if ( groupDS ) {
1659       std::string groupName = group->GetName();
1660       groupDS->SetStoreName( groupName.c_str() );
1661     }
1662   }
1663 #ifdef WITH_CGNS
1664
1665   DriverCGNS_Write myWriter;
1666   myWriter.SetFile( file );
1667   myWriter.SetMesh( const_cast<SMESHDS_Mesh*>( meshDS ));
1668   myWriter.SetMeshName( SMESH_Comment("Mesh_") << meshDS->GetPersistentId());
1669   if ( meshName && meshName[0] )
1670     myWriter.SetMeshName( meshName );
1671   myWriter.SetElementsByType( groupElemsByType );
1672   res = myWriter.Perform();
1673   if ( res != Driver_Mesh::DRS_OK )
1674   {
1675     SMESH_ComputeErrorPtr err = myWriter.GetError();
1676     if ( err && !err->IsOK() && !err->myComment.empty() )
1677       throw SALOME_Exception(("Export failed: " + err->myComment ).c_str() );
1678   }
1679
1680 #endif
1681   SMESH_CATCH( SMESH::throwSalomeEx );
1682
1683   if ( res == Driver_Mesh::DRS_TOO_LARGE_MESH )
1684     throw TooLargeForExport("CGNS");
1685
1686   if ( res != Driver_Mesh::DRS_OK )
1687     throw SALOME_Exception("Export failed");
1688 }
1689
1690 //================================================================================
1691 /*!
1692  * \brief Export the mesh to a GMF file
1693  */
1694 //================================================================================
1695
1696 void SMESH_Mesh::ExportGMF(const char *        file,
1697                            const SMESHDS_Mesh* meshDS,
1698                            bool                withRequiredGroups)
1699 {
1700   Driver_Mesh::Status status;
1701   SMESH_TRY;
1702
1703   DriverGMF_Write myWriter;
1704   myWriter.SetFile( file );
1705   myWriter.SetMesh( const_cast<SMESHDS_Mesh*>( meshDS ));
1706   myWriter.SetExportRequiredGroups( withRequiredGroups );
1707
1708   status = myWriter.Perform();
1709
1710   SMESH_CATCH( SMESH::throwSalomeEx );
1711
1712   if ( status == Driver_Mesh::DRS_TOO_LARGE_MESH )
1713     throw TooLargeForExport("GMF");
1714 }
1715
1716 //================================================================================
1717 /*!
1718  * \brief Return a ratio of "compute cost" of computed sub-meshes to the whole
1719  *        "compute cost".
1720  */
1721 //================================================================================
1722
1723 double SMESH_Mesh::GetComputeProgress() const
1724 {
1725   double totalCost = 1e-100, computedCost = 0;
1726   const SMESH_subMesh* curSM = _gen->GetCurrentSubMesh();
1727
1728   // get progress of a current algo
1729   TColStd_MapOfInteger currentSubIds; 
1730   if ( curSM )
1731     if ( SMESH_Algo* algo = curSM->GetAlgo() )
1732     {
1733       int algoNotDoneCost = 0, algoDoneCost = 0;
1734       const std::vector<SMESH_subMesh*>& smToCompute = algo->SubMeshesToCompute();
1735       for ( size_t i = 0; i < smToCompute.size(); ++i )
1736       {
1737         if ( smToCompute[i]->IsEmpty() || smToCompute.size() == 1 )
1738           algoNotDoneCost += smToCompute[i]->GetComputeCost();
1739         else
1740           algoDoneCost += smToCompute[i]->GetComputeCost();
1741         currentSubIds.Add( smToCompute[i]->GetId() );
1742       }
1743       double rate = 0;
1744       try
1745       {
1746         OCC_CATCH_SIGNALS;
1747         rate = algo->GetProgress();
1748       }
1749       catch (...) {
1750 #ifdef _DEBUG_
1751         std::cerr << "Exception in " << algo->GetName() << "::GetProgress()" << std::endl;
1752 #endif
1753       }
1754       if ( 0. < rate && rate < 1.001 )
1755       {
1756         computedCost += rate * ( algoDoneCost + algoNotDoneCost );
1757       }
1758       else
1759       {
1760         rate = algo->GetProgressByTic();
1761         computedCost += algoDoneCost + rate * algoNotDoneCost;
1762       }
1763       // cout << "rate: "<<rate << " algoNotDoneCost: " << algoNotDoneCost << endl;
1764     }
1765
1766   // get cost of already treated sub-meshes
1767   if ( SMESH_subMesh* mainSM = GetSubMeshContaining( 1 ))
1768   {
1769     SMESH_subMeshIteratorPtr smIt = mainSM->getDependsOnIterator(/*includeSelf=*/true);
1770     while ( smIt->more() )
1771     {
1772       const SMESH_subMesh* sm = smIt->next();
1773       const int smCost = sm->GetComputeCost();
1774       totalCost += smCost;
1775       if ( !currentSubIds.Contains( sm->GetId() ) )
1776       {
1777         if (( !sm->IsEmpty() ) ||
1778             ( sm->GetComputeState() == SMESH_subMesh::FAILED_TO_COMPUTE &&
1779               !sm->DependsOn( curSM ) ))
1780           computedCost += smCost;
1781       }
1782     }
1783   }
1784   // cout << "Total: " << totalCost
1785   //      << " computed: " << computedCost << " progress: " << computedCost / totalCost
1786   //      << " nbElems: " << GetMeshDS()->GetMeshInfo().NbElements() << endl;
1787   return computedCost / totalCost;
1788 }
1789
1790 //================================================================================
1791 /*!
1792  * \brief Return number of nodes in the mesh
1793  */
1794 //================================================================================
1795
1796 smIdType SMESH_Mesh::NbNodes() const
1797 {
1798   Unexpect aCatch(SalomeException);
1799   return _myMeshDS->NbNodes();
1800 }
1801
1802 //================================================================================
1803 /*!
1804  * \brief  Return number of edges of given order in the mesh
1805  */
1806 //================================================================================
1807
1808 smIdType SMESH_Mesh::Nb0DElements() const
1809 {
1810   Unexpect aCatch(SalomeException);
1811   return _myMeshDS->GetMeshInfo().Nb0DElements();
1812 }
1813
1814 //================================================================================
1815 /*!
1816  * \brief  Return number of edges of given order in the mesh
1817  */
1818 //================================================================================
1819
1820 smIdType SMESH_Mesh::NbEdges(SMDSAbs_ElementOrder order) const
1821 {
1822   Unexpect aCatch(SalomeException);
1823   return _myMeshDS->GetMeshInfo().NbEdges(order);
1824 }
1825
1826 //================================================================================
1827 /*!
1828  * \brief Return number of faces of given order in the mesh
1829  */
1830 //================================================================================
1831
1832 smIdType SMESH_Mesh::NbFaces(SMDSAbs_ElementOrder order) const
1833 {
1834   Unexpect aCatch(SalomeException);
1835   return _myMeshDS->GetMeshInfo().NbFaces(order);
1836 }
1837
1838 //================================================================================
1839 /*!
1840  * \brief Return the number of faces in the mesh
1841  */
1842 //================================================================================
1843
1844 smIdType SMESH_Mesh::NbTriangles(SMDSAbs_ElementOrder order) const
1845 {
1846   Unexpect aCatch(SalomeException);
1847   return _myMeshDS->GetMeshInfo().NbTriangles(order);
1848 }
1849
1850 //================================================================================
1851 /*!
1852  * \brief Return number of biquadratic triangles in the mesh
1853  */
1854 //================================================================================
1855
1856 smIdType SMESH_Mesh::NbBiQuadTriangles() const
1857 {
1858   Unexpect aCatch(SalomeException);
1859   return _myMeshDS->GetMeshInfo().NbBiQuadTriangles();
1860 }
1861
1862 //================================================================================
1863 /*!
1864  * \brief Return the number nodes faces in the mesh
1865  */
1866 //================================================================================
1867
1868 smIdType SMESH_Mesh::NbQuadrangles(SMDSAbs_ElementOrder order) const
1869 {
1870   Unexpect aCatch(SalomeException);
1871   return _myMeshDS->GetMeshInfo().NbQuadrangles(order);
1872 }
1873
1874 //================================================================================
1875 /*!
1876  * \brief Return number of biquadratic quadrangles in the mesh
1877  */
1878 //================================================================================
1879
1880 smIdType SMESH_Mesh::NbBiQuadQuadrangles() const
1881 {
1882   Unexpect aCatch(SalomeException);
1883   return _myMeshDS->GetMeshInfo().NbBiQuadQuadrangles();
1884 }
1885
1886 //================================================================================
1887 /*!
1888  * \brief Return the number of polygonal faces in the mesh
1889  */
1890 //================================================================================
1891
1892 smIdType SMESH_Mesh::NbPolygons(SMDSAbs_ElementOrder order) const
1893 {
1894   Unexpect aCatch(SalomeException);
1895   return _myMeshDS->GetMeshInfo().NbPolygons(order);
1896 }
1897
1898 //================================================================================
1899 /*!
1900  * \brief Return number of volumes of given order in the mesh
1901  */
1902 //================================================================================
1903
1904 smIdType SMESH_Mesh::NbVolumes(SMDSAbs_ElementOrder order) const
1905 {
1906   Unexpect aCatch(SalomeException);
1907   return _myMeshDS->GetMeshInfo().NbVolumes(order);
1908 }
1909
1910 //================================================================================
1911 /*!
1912  * \brief  Return number of tetrahedrons of given order in the mesh
1913  */
1914 //================================================================================
1915
1916 smIdType SMESH_Mesh::NbTetras(SMDSAbs_ElementOrder order) const
1917 {
1918   Unexpect aCatch(SalomeException);
1919   return _myMeshDS->GetMeshInfo().NbTetras(order);
1920 }
1921
1922 //================================================================================
1923 /*!
1924  * \brief  Return number of hexahedrons of given order in the mesh
1925  */
1926 //================================================================================
1927
1928 smIdType SMESH_Mesh::NbHexas(SMDSAbs_ElementOrder order) const
1929 {
1930   Unexpect aCatch(SalomeException);
1931   return _myMeshDS->GetMeshInfo().NbHexas(order);
1932 }
1933
1934 //================================================================================
1935 /*!
1936  * \brief  Return number of triquadratic hexahedrons in the mesh
1937  */
1938 //================================================================================
1939
1940 smIdType SMESH_Mesh::NbTriQuadraticHexas() const
1941 {
1942   Unexpect aCatch(SalomeException);
1943   return _myMeshDS->GetMeshInfo().NbTriQuadHexas();
1944 }
1945
1946 //================================================================================
1947 /*!
1948  * \brief  Return number of pyramids of given order in the mesh
1949  */
1950 //================================================================================
1951
1952 smIdType SMESH_Mesh::NbPyramids(SMDSAbs_ElementOrder order) const
1953 {
1954   Unexpect aCatch(SalomeException);
1955   return _myMeshDS->GetMeshInfo().NbPyramids(order);
1956 }
1957
1958 //================================================================================
1959 /*!
1960  * \brief  Return number of prisms (penthahedrons) of given order in the mesh
1961  */
1962 //================================================================================
1963
1964 smIdType SMESH_Mesh::NbPrisms(SMDSAbs_ElementOrder order) const
1965 {
1966   Unexpect aCatch(SalomeException);
1967   return _myMeshDS->GetMeshInfo().NbPrisms(order);
1968 }
1969
1970 smIdType SMESH_Mesh::NbQuadPrisms() const
1971 {
1972   Unexpect aCatch(SalomeException);
1973   return _myMeshDS->GetMeshInfo().NbQuadPrisms();
1974 }
1975
1976 smIdType SMESH_Mesh::NbBiQuadPrisms() const
1977 {
1978   Unexpect aCatch(SalomeException);
1979   return _myMeshDS->GetMeshInfo().NbBiQuadPrisms();
1980 }
1981
1982
1983 //================================================================================
1984 /*!
1985  * \brief  Return number of hexagonal prisms in the mesh
1986  */
1987 //================================================================================
1988
1989 smIdType SMESH_Mesh::NbHexagonalPrisms() const
1990 {
1991   Unexpect aCatch(SalomeException);
1992   return _myMeshDS->GetMeshInfo().NbHexPrisms();
1993 }
1994
1995 //================================================================================
1996 /*!
1997  * \brief  Return number of polyhedrons in the mesh
1998  */
1999 //================================================================================
2000
2001 smIdType SMESH_Mesh::NbPolyhedrons() const
2002 {
2003   Unexpect aCatch(SalomeException);
2004   return _myMeshDS->GetMeshInfo().NbPolyhedrons();
2005 }
2006
2007 //================================================================================
2008 /*!
2009  * \brief  Return number of ball elements in the mesh
2010  */
2011 //================================================================================
2012
2013 smIdType SMESH_Mesh::NbBalls() const
2014 {
2015   Unexpect aCatch(SalomeException);
2016   return _myMeshDS->GetMeshInfo().NbBalls();
2017 }
2018
2019 //================================================================================
2020 /*!
2021  * \brief  Return number of submeshes in the mesh
2022  */
2023 //================================================================================
2024
2025 smIdType SMESH_Mesh::NbSubMesh() const
2026 {
2027   Unexpect aCatch(SalomeException);
2028   return _myMeshDS->NbSubMesh();
2029 }
2030
2031 //================================================================================
2032 /*!
2033  * \brief Returns number of meshes in the Study, that is supposed to be
2034  *        equal to SMESHDS_Document::NbMeshes()
2035  */
2036 //================================================================================
2037
2038 int SMESH_Mesh::NbMeshes() const // nb meshes in the Study
2039 {
2040   return _myDocument->NbMeshes();
2041 }
2042
2043 //=======================================================================
2044 //function : IsNotConformAllowed
2045 //purpose  : check if a hypothesis allowing notconform mesh is present
2046 //=======================================================================
2047
2048 bool SMESH_Mesh::IsNotConformAllowed() const
2049 {
2050   if(MYDEBUG) MESSAGE("SMESH_Mesh::IsNotConformAllowed");
2051
2052   static SMESH_HypoFilter filter( SMESH_HypoFilter::HasName( "NotConformAllowed" ));
2053   return GetHypothesis( _myMeshDS->ShapeToMesh(), filter, false );
2054 }
2055
2056 //=======================================================================
2057 //function : IsMainShape
2058 //purpose  : 
2059 //=======================================================================
2060
2061 bool SMESH_Mesh::IsMainShape(const TopoDS_Shape& theShape) const
2062 {
2063   return theShape.IsSame(_myMeshDS->ShapeToMesh() );
2064 }
2065
2066 //=======================================================================
2067 //function : GetShapeByEntry
2068 //purpose  : return TopoDS_Shape by its study entry
2069 //=======================================================================
2070
2071 TopoDS_Shape SMESH_Mesh::GetShapeByEntry(const std::string& entry) const
2072 {
2073   return _callUp ? _callUp->GetShapeByEntry( entry ) : TopoDS_Shape();
2074 }
2075
2076 //=============================================================================
2077 /*!
2078  *  
2079  */
2080 //=============================================================================
2081
2082 SMESH_Group* SMESH_Mesh::AddGroup (const SMDSAbs_ElementType theType,
2083                                    const char*               theName,
2084                                    const int                 theId,
2085                                    const TopoDS_Shape&       theShape,
2086                                    const SMESH_PredicatePtr& thePredicate)
2087 {
2088   if ( _mapGroup.count( theId ))
2089     return NULL;
2090   int id = ( theId < 0 ) ? _groupId : theId;
2091   SMESH_Group* aGroup = new SMESH_Group ( id, this, theType, theName, theShape, thePredicate );
2092   GetMeshDS()->AddGroup( aGroup->GetGroupDS() );
2093   _mapGroup[ id ] = aGroup;
2094   _groupId = 1 + _mapGroup.rbegin()->first;
2095   return aGroup;
2096 }
2097
2098 //================================================================================
2099 /*!
2100  * \brief Creates a group based on an existing SMESHDS group. Group ID should be unique
2101  */
2102 //================================================================================
2103
2104 SMESH_Group* SMESH_Mesh::AddGroup (SMESHDS_GroupBase* groupDS)
2105 {
2106   if ( !groupDS )
2107     throw SALOME_Exception(LOCALIZED ("SMESH_Mesh::AddGroup(): NULL SMESHDS_GroupBase"));
2108
2109   std::map <int, SMESH_Group*>::iterator i_g = _mapGroup.find( groupDS->GetID() );
2110   if ( i_g != _mapGroup.end() && i_g->second )
2111   {
2112     if ( i_g->second->GetGroupDS() == groupDS )
2113       return i_g->second;
2114     else
2115       throw SALOME_Exception(LOCALIZED ("SMESH_Mesh::AddGroup() wrong ID of SMESHDS_GroupBase"));
2116   }
2117   SMESH_Group* aGroup = new SMESH_Group (groupDS);
2118   _mapGroup[ groupDS->GetID() ] = aGroup;
2119   GetMeshDS()->AddGroup( aGroup->GetGroupDS() );
2120
2121   _groupId = 1 + _mapGroup.rbegin()->first;
2122
2123   return aGroup;
2124 }
2125
2126
2127 //================================================================================
2128 /*!
2129  * \brief Creates SMESH_Groups for not wrapped SMESHDS_Groups
2130  *  \retval bool - true if new SMESH_Groups have been created
2131  *
2132  */
2133 //================================================================================
2134
2135 bool SMESH_Mesh::SynchronizeGroups()
2136 {
2137   const size_t                            nbGroups = _mapGroup.size();
2138   const std::set<SMESHDS_GroupBase*>&       groups = _myMeshDS->GetGroups();
2139   std::set<SMESHDS_GroupBase*>::const_iterator gIt = groups.begin();
2140   for ( ; gIt != groups.end(); ++gIt )
2141   {
2142     SMESHDS_GroupBase* groupDS = (SMESHDS_GroupBase*) *gIt;
2143     _groupId = groupDS->GetID();
2144     if ( !_mapGroup.count( _groupId ))
2145       _mapGroup[_groupId] = new SMESH_Group( groupDS );
2146   }
2147   if ( !_mapGroup.empty() )
2148     _groupId = 1 + _mapGroup.rbegin()->first;
2149
2150   return nbGroups < _mapGroup.size();
2151 }
2152
2153 //================================================================================
2154 /*!
2155  * \brief Return iterator on all existing groups
2156  */
2157 //================================================================================
2158
2159 SMESH_Mesh::GroupIteratorPtr SMESH_Mesh::GetGroups() const
2160 {
2161   typedef std::map <int, SMESH_Group *> TMap;
2162   return GroupIteratorPtr( new SMDS_mapIterator<TMap>( _mapGroup ));
2163 }
2164
2165 //=============================================================================
2166 /*!
2167  * \brief Return a group by ID
2168  */
2169 //=============================================================================
2170
2171 SMESH_Group* SMESH_Mesh::GetGroup (const int theGroupID) const
2172 {
2173   std::map <int, SMESH_Group*>::const_iterator id_grp = _mapGroup.find( theGroupID );
2174   if ( id_grp == _mapGroup.end() )
2175     return NULL;
2176   return id_grp->second;
2177 }
2178
2179
2180 //=============================================================================
2181 /*!
2182  * \brief Return IDs of all groups
2183  */
2184 //=============================================================================
2185
2186 std::list<int> SMESH_Mesh::GetGroupIds() const
2187 {
2188   std::list<int> anIds;
2189   std::map<int, SMESH_Group*>::const_iterator it = _mapGroup.begin();
2190   for ( ; it != _mapGroup.end(); it++ )
2191     anIds.push_back( it->first );
2192   
2193   return anIds;
2194 }
2195
2196 //================================================================================
2197 /*!
2198  * \brief Set a caller of methods at level of CORBA API implementation.
2199  * The set upCaller will be deleted by SMESH_Mesh
2200  */
2201 //================================================================================
2202
2203 void SMESH_Mesh::SetCallUp( TCallUp* upCaller )
2204 {
2205   if ( _callUp ) delete _callUp;
2206   _callUp = upCaller;
2207 }
2208
2209 //=============================================================================
2210 /*!
2211  *  
2212  */
2213 //=============================================================================
2214
2215 bool SMESH_Mesh::RemoveGroup( const int theGroupID )
2216 {
2217   if (_mapGroup.find(theGroupID) == _mapGroup.end())
2218     return false;
2219   GetMeshDS()->RemoveGroup( _mapGroup[theGroupID]->GetGroupDS() );
2220   delete _mapGroup[theGroupID];
2221   _mapGroup.erase (theGroupID);
2222   if (_callUp)
2223     _callUp->RemoveGroup( theGroupID );
2224   return true;
2225 }
2226
2227 //=======================================================================
2228 //function : GetAncestors
2229 //purpose  : return list of ancestors of theSubShape in the order
2230 //           that lower dimension shapes come first.
2231 //=======================================================================
2232
2233 const TopTools_ListOfShape& SMESH_Mesh::GetAncestors(const TopoDS_Shape& theS) const
2234 {
2235   if ( _mapAncestors.Contains( theS ) )
2236     return _mapAncestors.FindFromKey( theS );
2237
2238   static TopTools_ListOfShape emptyList;
2239   return emptyList;
2240 }
2241
2242 //=======================================================================
2243 //function : Dump
2244 //purpose  : dumps contents of mesh to stream [ debug purposes ]
2245 //=======================================================================
2246
2247 ostream& SMESH_Mesh::Dump(ostream& save)
2248 {
2249   int clause = 0;
2250   save << "========================== Dump contents of mesh ==========================" << endl << endl;
2251   save << ++clause << ") Total number of nodes:      \t" << NbNodes() << endl;
2252   save << ++clause << ") Total number of edges:      \t" << NbEdges() << endl;
2253   save << ++clause << ") Total number of faces:      \t" << NbFaces() << endl;
2254   save << ++clause << ") Total number of polygons:   \t" << NbPolygons() << endl;
2255   save << ++clause << ") Total number of volumes:    \t" << NbVolumes() << endl;
2256   save << ++clause << ") Total number of polyhedrons:\t" << NbPolyhedrons() << endl << endl;
2257   for ( int isQuadratic = 0; isQuadratic < 2; ++isQuadratic )
2258   {
2259     std::string orderStr = isQuadratic ? "quadratic" : "linear";
2260     SMDSAbs_ElementOrder order  = isQuadratic ? ORDER_QUADRATIC : ORDER_LINEAR;
2261
2262     save << ++clause << ") Total number of " << orderStr << " edges:\t" << NbEdges(order) << endl;
2263     save << ++clause << ") Total number of " << orderStr << " faces:\t" << NbFaces(order) << endl;
2264     if ( NbFaces(order) > 0 ) {
2265       smIdType nb3 = NbTriangles(order);
2266       smIdType nb4 = NbQuadrangles(order);
2267       save << clause << ".1) Number of " << orderStr << " triangles:  \t" << nb3 << endl;
2268       save << clause << ".2) Number of " << orderStr << " quadrangles:\t" << nb4 << endl;
2269       if ( nb3 + nb4 !=  NbFaces(order) ) {
2270         std::map<int,int> myFaceMap;
2271         SMDS_FaceIteratorPtr itFaces=_myMeshDS->facesIterator();
2272         while( itFaces->more( ) ) {
2273           int nbNodes = itFaces->next()->NbNodes();
2274           if ( myFaceMap.find( nbNodes ) == myFaceMap.end() )
2275             myFaceMap[ nbNodes ] = 0;
2276           myFaceMap[ nbNodes ] = myFaceMap[ nbNodes ] + 1;
2277         }
2278         save << clause << ".3) Faces in detail: " << endl;
2279         std::map <int,int>::iterator itF;
2280         for (itF = myFaceMap.begin(); itF != myFaceMap.end(); itF++)
2281           save << "--> nb nodes: " << itF->first << " - nb elements:\t" << itF->second << endl;
2282       }
2283     }
2284     save << ++clause << ") Total number of " << orderStr << " volumes:\t" << NbVolumes(order) << endl;
2285     if ( NbVolumes(order) > 0 ) {
2286       smIdType nb8 = NbHexas(order);
2287       smIdType nb4 = NbTetras(order);
2288       smIdType nb5 = NbPyramids(order);
2289       smIdType nb6 = NbPrisms(order);
2290       save << clause << ".1) Number of " << orderStr << " hexahedrons: \t" << nb8 << endl;
2291       save << clause << ".2) Number of " << orderStr << " tetrahedrons:\t" << nb4 << endl;
2292       save << clause << ".3) Number of " << orderStr << " prisms:      \t" << nb6 << endl;
2293       save << clause << ".4) Number of " << orderStr << " pyramids:    \t" << nb5 << endl;
2294       if ( nb8 + nb4 + nb5 + nb6 != NbVolumes(order) ) {
2295         std::map<int,int> myVolumesMap;
2296         SMDS_VolumeIteratorPtr itVolumes=_myMeshDS->volumesIterator();
2297         while( itVolumes->more( ) ) {
2298           int nbNodes = itVolumes->next()->NbNodes();
2299           if ( myVolumesMap.find( nbNodes ) == myVolumesMap.end() )
2300             myVolumesMap[ nbNodes ] = 0;
2301           myVolumesMap[ nbNodes ] = myVolumesMap[ nbNodes ] + 1;
2302         }
2303         save << clause << ".5) Volumes in detail: " << endl;
2304         std::map <int,int>::iterator itV;
2305         for (itV = myVolumesMap.begin(); itV != myVolumesMap.end(); itV++)
2306           save << "--> nb nodes: " << itV->first << " - nb elements:\t" << itV->second << endl;
2307       }
2308     }
2309     save << endl;
2310   }
2311   save << "===========================================================================" << endl;
2312   return save;
2313 }
2314
2315 //=======================================================================
2316 //function : GetElementType
2317 //purpose  : Returns type of mesh element with certain id
2318 //=======================================================================
2319
2320 SMDSAbs_ElementType SMESH_Mesh::GetElementType( const smIdType id, const bool iselem )
2321 {
2322   return _myMeshDS->GetElementType( id, iselem );
2323 }
2324
2325 //=============================================================================
2326 /*!
2327  *  \brief Convert group on geometry into standalone group
2328  */
2329 //=============================================================================
2330
2331 SMESH_Group* SMESH_Mesh::ConvertToStandalone ( int theGroupID )
2332 {
2333   SMESH_Group* aGroup = 0;
2334   std::map < int, SMESH_Group * >::iterator itg = _mapGroup.find( theGroupID );
2335   if ( itg == _mapGroup.end() )
2336     return aGroup;
2337
2338   SMESH_Group* anOldGrp = (*itg).second;
2339   if ( !anOldGrp || !anOldGrp->GetGroupDS() )
2340     return aGroup;
2341   SMESHDS_GroupBase* anOldGrpDS = anOldGrp->GetGroupDS();
2342
2343   // create new standalone group
2344   aGroup = new SMESH_Group (theGroupID, this, anOldGrpDS->GetType(), anOldGrp->GetName() );
2345   _mapGroup[theGroupID] = aGroup;
2346
2347   SMESHDS_Group* aNewGrpDS = dynamic_cast<SMESHDS_Group*>( aGroup->GetGroupDS() );
2348   GetMeshDS()->RemoveGroup( anOldGrpDS );
2349   GetMeshDS()->AddGroup( aNewGrpDS );
2350
2351   // add elements (or nodes) into new created group
2352   SMDS_ElemIteratorPtr anItr = anOldGrpDS->GetElements();
2353   while ( anItr->more() )
2354     aNewGrpDS->Add( (anItr->next())->GetID() );
2355
2356   // set color
2357   aNewGrpDS->SetColor( anOldGrpDS->GetColor() );
2358
2359   // remove old group
2360   delete anOldGrp;
2361
2362   return aGroup;
2363 }
2364
2365 //=============================================================================
2366 /*!
2367  *  \brief remove submesh order  from Mesh
2368  */
2369 //=============================================================================
2370
2371 void SMESH_Mesh::ClearMeshOrder()
2372 {
2373   _mySubMeshOrder.clear();
2374 }
2375
2376 //=============================================================================
2377 /*!
2378  *  \brief remove submesh order  from Mesh
2379  */
2380 //=============================================================================
2381
2382 void SMESH_Mesh::SetMeshOrder(const TListOfListOfInt& theOrder )
2383 {
2384   _mySubMeshOrder = theOrder;
2385 }
2386
2387 //=============================================================================
2388 /*!
2389  *  \brief return submesh order if any
2390  */
2391 //=============================================================================
2392
2393 const TListOfListOfInt& SMESH_Mesh::GetMeshOrder() const
2394 {
2395   return _mySubMeshOrder;
2396 }
2397
2398 //=============================================================================
2399 /*!
2400  *  \brief fill _mapAncestors
2401  */
2402 //=============================================================================
2403
2404 void SMESH_Mesh::fillAncestorsMap(const TopoDS_Shape& theShape)
2405 {
2406   int desType, ancType;
2407   if ( !theShape.IsSame( GetShapeToMesh()) && theShape.ShapeType() == TopAbs_COMPOUND )
2408   {
2409     // a geom group is added. Insert it into lists of ancestors before
2410     // the first ancestor more complex than group members
2411     TopoDS_Iterator subIt( theShape );
2412     if ( !subIt.More() ) return;
2413     int memberType = subIt.Value().ShapeType();
2414     for ( desType = TopAbs_VERTEX; desType >= memberType; desType-- )
2415       for (TopExp_Explorer des( theShape, TopAbs_ShapeEnum( desType )); des.More(); des.Next())
2416       {
2417         if ( !_mapAncestors.Contains( des.Current() )) continue;// issue 0020982
2418         TopTools_ListOfShape& ancList = _mapAncestors.ChangeFromKey( des.Current() );
2419         TopTools_ListIteratorOfListOfShape ancIt (ancList);
2420         while ( ancIt.More() && ancIt.Value().ShapeType() >= memberType )
2421           ancIt.Next();
2422         if ( ancIt.More() ) ancList.InsertBefore( theShape, ancIt );
2423         else                ancList.Append( theShape );
2424       }
2425   }
2426   else // else added for 52457: Addition of hypotheses is 8 time longer than meshing
2427   {
2428     for ( desType = TopAbs_VERTEX; desType > TopAbs_COMPOUND; desType-- )
2429       for ( ancType = desType - 1; ancType >= TopAbs_COMPOUND; ancType-- )
2430         TopExp::MapShapesAndAncestors ( theShape,
2431                                         (TopAbs_ShapeEnum) desType,
2432                                         (TopAbs_ShapeEnum) ancType,
2433                                         _mapAncestors );
2434   }
2435   // visit COMPOUNDs inside a COMPOUND that are not reachable by TopExp_Explorer
2436   if ( theShape.ShapeType() == TopAbs_COMPOUND )
2437   {
2438     TopoDS_Iterator sIt(theShape);
2439     if ( sIt.More() && sIt.Value().ShapeType() == TopAbs_COMPOUND )
2440       for ( ; sIt.More(); sIt.Next() )
2441         if ( sIt.Value().ShapeType() == TopAbs_COMPOUND )
2442           fillAncestorsMap( sIt.Value() );
2443   }
2444 }
2445
2446 //=============================================================================
2447 /*!
2448  * \brief sort submeshes according to stored mesh order
2449  * \param theListToSort in out list to be sorted
2450  * \return FALSE if nothing sorted
2451  */
2452 //=============================================================================
2453
2454 bool SMESH_Mesh::SortByMeshOrder(std::vector<SMESH_subMesh*>& theListToSort) const
2455 {
2456   if ( _mySubMeshOrder.empty() || theListToSort.size() < 2 )
2457     return true;
2458
2459
2460   // collect all ordered sub-meshes in smVec as pointers
2461   // and get their positions within theListToSort
2462
2463   std::vector<SMESH_subMesh*> smVec;
2464   typedef std::vector<SMESH_subMesh*>::iterator TPosInList;
2465   std::map< size_t, size_t > sortedPos; // index in theListToSort to order
2466   TPosInList smBeg = theListToSort.begin(), smEnd = theListToSort.end();
2467   TListOfListOfInt::const_iterator      listIdsIt = _mySubMeshOrder.begin();
2468   bool needSort = false;
2469   for( ; listIdsIt != _mySubMeshOrder.end(); listIdsIt++)
2470   {
2471     const TListOfInt& listOfId = *listIdsIt;
2472     // convert sm ids to sm's
2473     smVec.clear();
2474     TListOfInt::const_iterator idIt = listOfId.begin();
2475     for ( ; idIt != listOfId.end(); idIt++ )
2476     {
2477       if ( SMESH_subMesh * sm = GetSubMeshContaining( *idIt ))
2478       {
2479         smVec.push_back( sm );
2480         if ( sm->GetSubMeshDS() && sm->GetSubMeshDS()->IsComplexSubmesh() )
2481         {
2482           smVec.reserve( smVec.size() + sm->GetSubMeshDS()->NbSubMeshes() );
2483           SMESHDS_SubMeshIteratorPtr smdsIt = sm->GetSubMeshDS()->GetSubMeshIterator();
2484           while ( smdsIt->more() )
2485           {
2486             const SMESHDS_SubMesh* smDS = smdsIt->next();
2487             if (( sm = GetSubMeshContaining( smDS->GetID() )))
2488               smVec.push_back( sm );
2489           }
2490         }
2491       }
2492     }
2493     // find smVec items in theListToSort
2494     for ( size_t i = 0; i < smVec.size(); ++i )
2495     {
2496       TPosInList smPos = find( smBeg, smEnd, smVec[i] ); // position in theListToSort
2497       if ( smPos != smEnd )
2498       {
2499         size_t posInList = std::distance( smBeg, smPos );
2500         size_t     order = sortedPos.size();
2501         sortedPos.insert( std::make_pair( posInList, order ));
2502         if ( posInList != order )
2503           needSort = true;
2504       }
2505     }
2506   }
2507   if ( ! needSort )
2508     return false;
2509
2510   // set sm of sortedPos from theListToSort to front of orderedSM
2511   // and the rest of theListToSort to orderedSM end
2512
2513   std::vector<SMESH_subMesh*> orderedSM;
2514   orderedSM.reserve( theListToSort.size() );
2515   orderedSM.resize( sortedPos.size() );
2516
2517   size_t iPrev = 0;
2518   sortedPos.insert( std::make_pair( theListToSort.size(), sortedPos.size() ));
2519   for ( const auto & pos_order : sortedPos )
2520   {
2521     const size_t& posInList = pos_order.first;
2522     const size_t&     order = pos_order.second;
2523     if ( order < sortedPos.size() - 1 )
2524       orderedSM[ order ] = theListToSort[ posInList ];
2525
2526     if ( iPrev < posInList )
2527       orderedSM.insert( orderedSM.end(),
2528                         theListToSort.begin() + iPrev,
2529                         theListToSort.begin() + posInList );
2530     iPrev = posInList + 1;
2531   }
2532
2533   theListToSort.swap( orderedSM );
2534
2535   return true;
2536 }
2537
2538 //================================================================================
2539 /*!
2540  * \brief Return true if given order of sub-meshes is OK
2541  */
2542 //================================================================================
2543
2544 bool SMESH_Mesh::IsOrderOK( const SMESH_subMesh* smBefore,
2545                             const SMESH_subMesh* smAfter ) const
2546 {
2547   TListOfListOfInt::const_iterator listIdsIt = _mySubMeshOrder.begin();
2548   for( ; listIdsIt != _mySubMeshOrder.end(); listIdsIt++)
2549   {
2550     const TListOfInt& listOfId = *listIdsIt;
2551     int iB = -1, iA = -1, i = 0;
2552     for ( TListOfInt::const_iterator id = listOfId.begin(); id != listOfId.end(); ++id, ++i )
2553     {
2554       if ( *id == smBefore->GetId() )
2555       {
2556         iB = i;
2557         if ( iA > -1 )
2558           return iB < iA;
2559       }
2560       else if ( *id == smAfter->GetId() )
2561       {
2562         iA = i;
2563         if ( iB > -1 )
2564           return iB < iA;
2565       }
2566     }
2567   }
2568   return true; // no order imposed to given sub-meshes
2569
2570
2571 //=============================================================================
2572 /*!
2573  * \brief sort submeshes according to stored mesh order
2574  * \param theListToSort in out list to be sorted
2575  * \return FALSE if nothing sorted
2576  */
2577 //=============================================================================
2578
2579 void SMESH_Mesh::getAncestorsSubMeshes (const TopoDS_Shape&            theSubShape,
2580                                         std::vector< SMESH_subMesh* >& theSubMeshes) const
2581 {
2582   theSubMeshes.clear();
2583   TopTools_ListIteratorOfListOfShape it( GetAncestors( theSubShape ));
2584   for (; it.More(); it.Next() )
2585     if ( SMESH_subMesh* sm = GetSubMeshContaining( it.Value() ))
2586       theSubMeshes.push_back(sm);
2587
2588   // sort submeshes according to stored mesh order
2589   SortByMeshOrder( theSubMeshes );
2590 }