Salome HOME
Merge from V5_1_3_BR branch (07/12/09)
[modules/smesh.git] / src / SMESH / SMESH_Gen.cxx
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 //  This library is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU Lesser General Public
8 //  License as published by the Free Software Foundation; either
9 //  version 2.1 of the License.
10 //
11 //  This library is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 //  Lesser General Public License for more details.
15 //
16 //  You should have received a copy of the GNU Lesser General Public
17 //  License along with this library; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 //  SMESH SMESH : implementaion of SMESH idl descriptions
23 //  File   : SMESH_Gen.cxx
24 //  Author : Paul RASCLE, EDF
25 //  Module : SMESH
26
27 #include "SMESH_Gen.hxx"
28 #include "SMESH_subMesh.hxx"
29 #include "SMESH_HypoFilter.hxx"
30 #include "SMESHDS_Document.hxx"
31 #include "SMDS_MeshElement.hxx"
32 #include "SMDS_MeshNode.hxx"
33
34 #include "utilities.h"
35 #include "OpUtil.hxx"
36 #include "Utils_ExceptHandlers.hxx"
37
38 #include <gp_Pnt.hxx>
39 #include <BRep_Tool.hxx>
40 #include <TopTools_ListOfShape.hxx>
41 #include <TopTools_ListIteratorOfListOfShape.hxx>
42
43 using namespace std;
44
45 //=============================================================================
46 /*!
47  *  default constructor:
48  */
49 //=============================================================================
50
51 SMESH_Gen::SMESH_Gen()
52 {
53         MESSAGE("SMESH_Gen::SMESH_Gen");
54         _localId = 0;
55         _hypId = 0;
56         _segmentation = 10;
57 }
58
59 //=============================================================================
60 /*!
61  *
62  */
63 //=============================================================================
64
65 SMESH_Gen::~SMESH_Gen()
66 {
67         MESSAGE("SMESH_Gen::~SMESH_Gen");
68 }
69
70 //=============================================================================
71 /*!
72  *
73  */
74 //=============================================================================
75
76 /*SMESH_Hypothesis *SMESH_Gen::CreateHypothesis(const char *anHyp, int studyId)
77         throw(SALOME_Exception)
78 {
79
80         MESSAGE("CreateHypothesis("<<anHyp<<","<<studyId<<")");
81         // Get studyContext, create it if it does'nt exist, with a SMESHDS_Document
82
83         StudyContextStruct *myStudyContext = GetStudyContext(studyId);
84
85         // create a new hypothesis object, store its ref. in studyContext
86
87         SMESH_Hypothesis *myHypothesis = _hypothesisFactory.Create(anHyp, studyId);
88         int hypId = myHypothesis->GetID();
89         myStudyContext->mapHypothesis[hypId] = myHypothesis;
90         SCRUTE(studyId);
91         SCRUTE(hypId);
92
93         // store hypothesis in SMESHDS document
94
95         myStudyContext->myDocument->AddHypothesis(myHypothesis);
96         return myHypothesis;
97 }*/
98
99 //=============================================================================
100 /*!
101  *
102  */
103 //=============================================================================
104
105 SMESH_Mesh* SMESH_Gen::CreateMesh(int theStudyId, bool theIsEmbeddedMode)
106   throw(SALOME_Exception)
107 {
108   Unexpect aCatch(SalomeException);
109   MESSAGE("SMESH_Gen::CreateMesh");
110
111   // Get studyContext, create it if it does'nt exist, with a SMESHDS_Document
112   StudyContextStruct *aStudyContext = GetStudyContext(theStudyId);
113
114   // create a new SMESH_mesh object
115   SMESH_Mesh *aMesh = new SMESH_Mesh(_localId++,
116                                      theStudyId,
117                                      this,
118                                      theIsEmbeddedMode,
119                                      aStudyContext->myDocument);
120   aStudyContext->mapMesh[_localId] = aMesh;
121
122   return aMesh;
123 }
124
125 //=============================================================================
126 /*!
127  * Compute a mesh
128  */
129 //=============================================================================
130
131 bool SMESH_Gen::Compute(SMESH_Mesh &          aMesh,
132                         const TopoDS_Shape &  aShape,
133                         const bool            anUpward,
134                         const ::MeshDimension aDim,
135                         TSetOfInt*            aShapesId)
136 {
137   MESSAGE("SMESH_Gen::Compute");
138
139   bool ret = true;
140
141   SMESH_subMesh *sm = aMesh.GetSubMesh(aShape);
142
143   const bool includeSelf = true;
144   const bool complexShapeFirst = true;
145
146   SMESH_subMeshIteratorPtr smIt;
147
148   if ( anUpward ) // is called from below code here
149   {
150     // -----------------------------------------------
151     // mesh all the subshapes starting from vertices
152     // -----------------------------------------------
153     smIt = sm->getDependsOnIterator(includeSelf, !complexShapeFirst);
154     while ( smIt->more() )
155     {
156       SMESH_subMesh* smToCompute = smIt->next();
157
158       // do not mesh vertices of a pseudo shape
159       const TopAbs_ShapeEnum aShType = smToCompute->GetSubShape().ShapeType();
160       if ( !aMesh.HasShapeToMesh() && aShType == TopAbs_VERTEX )
161         continue;
162
163       // check for preview dimension limitations
164       if ( aShapesId && GetShapeDim( aShType ) > (int)aDim )
165       {
166         // clear compute state to not show previous compute errors
167         //  if preview invoked less dimension less than previous
168         smToCompute->ComputeStateEngine( SMESH_subMesh::CHECK_COMPUTE_STATE );
169         continue;
170       }
171
172       if (smToCompute->GetComputeState() == SMESH_subMesh::READY_TO_COMPUTE)
173         smToCompute->ComputeStateEngine( SMESH_subMesh::COMPUTE );
174
175       // we check all the submeshes here and detect if any of them failed to compute
176       if (smToCompute->GetComputeState() == SMESH_subMesh::FAILED_TO_COMPUTE)
177         ret = false;
178       else if ( aShapesId )
179         aShapesId->insert( smToCompute->GetId() );
180     }
181     return ret;
182   }
183   else
184   {
185     // -----------------------------------------------------------------
186     // apply algos that DO NOT require descretized boundaries and DO NOT
187     // support submeshes, starting from the most complex shapes
188     // and collect submeshes with algos that DO support submeshes
189     // -----------------------------------------------------------------
190     list< SMESH_subMesh* > smWithAlgoSupportingSubmeshes;
191     smIt = sm->getDependsOnIterator(includeSelf, complexShapeFirst);
192     while ( smIt->more() )
193     {
194       SMESH_subMesh* smToCompute = smIt->next();
195       if ( smToCompute->GetComputeState() != SMESH_subMesh::READY_TO_COMPUTE )
196         continue;
197
198       const TopoDS_Shape& aSubShape = smToCompute->GetSubShape();
199       const int aShapeDim = GetShapeDim( aSubShape );
200       if ( aShapeDim < 1 ) break;
201       
202       // check for preview dimension limitations
203       if ( aShapesId && aShapeDim > (int)aDim )
204         continue;
205
206       SMESH_Algo* algo = GetAlgo( aMesh, aSubShape );
207       if ( algo && !algo->NeedDescretBoundary() )
208       {
209         if ( algo->SupportSubmeshes() )
210           smWithAlgoSupportingSubmeshes.push_back( smToCompute );
211         else
212         {
213           smToCompute->ComputeStateEngine( SMESH_subMesh::COMPUTE );
214           if ( aShapesId )
215             aShapesId->insert( smToCompute->GetId() );
216         }
217       }
218     }
219     // ------------------------------------------------------------
220     // compute submeshes under shapes with algos that DO NOT require
221     // descretized boundaries and DO support submeshes
222     // ------------------------------------------------------------
223     list< SMESH_subMesh* >::reverse_iterator subIt, subEnd;
224     subIt  = smWithAlgoSupportingSubmeshes.rbegin();
225     subEnd = smWithAlgoSupportingSubmeshes.rend();
226     // start from lower shapes
227     for ( ; subIt != subEnd; ++subIt )
228     {
229       sm = *subIt;
230
231       // get a shape the algo is assigned to
232       TopoDS_Shape algoShape;
233       if ( !GetAlgo( aMesh, sm->GetSubShape(), & algoShape ))
234         continue; // strange...
235
236       // look for more local algos
237       smIt = sm->getDependsOnIterator(!includeSelf, !complexShapeFirst);
238       while ( smIt->more() )
239       {
240         SMESH_subMesh* smToCompute = smIt->next();
241
242         const TopoDS_Shape& aSubShape = smToCompute->GetSubShape();
243         const int aShapeDim = GetShapeDim( aSubShape );
244         //if ( aSubShape.ShapeType() == TopAbs_VERTEX ) continue;
245         if ( aShapeDim < 1 ) continue;
246
247         // check for preview dimension limitations
248         if ( aShapesId && GetShapeDim( aSubShape.ShapeType() ) > (int)aDim )
249           continue;
250         
251         SMESH_HypoFilter filter( SMESH_HypoFilter::IsAlgo() );
252         filter
253           .And( SMESH_HypoFilter::IsApplicableTo( aSubShape ))
254           .And( SMESH_HypoFilter::IsMoreLocalThan( algoShape ));
255
256         if ( SMESH_Algo* subAlgo = (SMESH_Algo*) aMesh.GetHypothesis( aSubShape, filter, true )) {
257           SMESH_Hypothesis::Hypothesis_Status status;
258           if ( subAlgo->CheckHypothesis( aMesh, aSubShape, status ))
259             // mesh a lower smToCompute starting from vertices
260             Compute( aMesh, aSubShape, /*anUpward=*/true, aDim, aShapesId );
261         }
262       }
263     }
264     // ----------------------------------------------------------
265     // apply the algos that do not require descretized boundaries
266     // ----------------------------------------------------------
267     for ( subIt = smWithAlgoSupportingSubmeshes.rbegin(); subIt != subEnd; ++subIt )
268     {
269       sm = *subIt;
270       if ( sm->GetComputeState() == SMESH_subMesh::READY_TO_COMPUTE)
271       {
272         const TopAbs_ShapeEnum aShType = sm->GetSubShape().ShapeType();
273         // check for preview dimension limitations
274         if ( aShapesId && GetShapeDim( aShType ) > (int)aDim )
275           continue;
276
277         sm->ComputeStateEngine( SMESH_subMesh::COMPUTE );
278         if ( aShapesId )
279           aShapesId->insert( sm->GetId() );
280       }
281     }
282     // -----------------------------------------------
283     // mesh the rest subshapes starting from vertices
284     // -----------------------------------------------
285     ret = Compute( aMesh, aShape, /*anUpward=*/true, aDim, aShapesId );
286   }
287
288   MESSAGE( "VSR - SMESH_Gen::Compute() finished, OK = " << ret);
289   return ret;
290 }
291
292
293 //=============================================================================
294 /*!
295  * Evaluate a mesh
296  */
297 //=============================================================================
298
299 bool SMESH_Gen::Evaluate(SMESH_Mesh &          aMesh,
300                          const TopoDS_Shape &  aShape,
301                          MapShapeNbElems&      aResMap,
302                          const bool            anUpward,
303                          TSetOfInt*            aShapesId)
304 {
305   MESSAGE("SMESH_Gen::Evaluate");
306
307   bool ret = true;
308
309   SMESH_subMesh *sm = aMesh.GetSubMesh(aShape);
310
311   const bool includeSelf = true;
312   const bool complexShapeFirst = true;
313   SMESH_subMeshIteratorPtr smIt;
314
315   if ( anUpward ) { // is called from below code here
316     // -----------------------------------------------
317     // mesh all the subshapes starting from vertices
318     // -----------------------------------------------
319     smIt = sm->getDependsOnIterator(includeSelf, !complexShapeFirst);
320     while ( smIt->more() ) {
321       SMESH_subMesh* smToCompute = smIt->next();
322
323       // do not mesh vertices of a pseudo shape
324       const TopAbs_ShapeEnum aShType = smToCompute->GetSubShape().ShapeType();
325       //if ( !aMesh.HasShapeToMesh() && aShType == TopAbs_VERTEX )
326       //  continue;
327       if ( !aMesh.HasShapeToMesh() ) {
328         if( aShType == TopAbs_VERTEX || aShType == TopAbs_WIRE ||
329             aShType == TopAbs_SHELL )
330           continue;
331       }
332
333       smToCompute->Evaluate(aResMap);
334       if( aShapesId )
335         aShapesId->insert( smToCompute->GetId() );
336     }
337     return ret;
338   }
339   else {
340     // -----------------------------------------------------------------
341     // apply algos that DO NOT require descretized boundaries and DO NOT
342     // support submeshes, starting from the most complex shapes
343     // and collect submeshes with algos that DO support submeshes
344     // -----------------------------------------------------------------
345     list< SMESH_subMesh* > smWithAlgoSupportingSubmeshes;
346     smIt = sm->getDependsOnIterator(includeSelf, complexShapeFirst);
347     while ( smIt->more() ) {
348       SMESH_subMesh* smToCompute = smIt->next();
349       const TopoDS_Shape& aSubShape = smToCompute->GetSubShape();
350       const int aShapeDim = GetShapeDim( aSubShape );
351       if ( aShapeDim < 1 ) break;
352       
353       SMESH_Algo* algo = GetAlgo( aMesh, aSubShape );
354       if ( algo && !algo->NeedDescretBoundary() ) {
355         if ( algo->SupportSubmeshes() ) {
356           smWithAlgoSupportingSubmeshes.push_back( smToCompute );
357         }
358         else {
359           smToCompute->Evaluate(aResMap);
360           if ( aShapesId )
361             aShapesId->insert( smToCompute->GetId() );
362         }
363       }
364     }
365     // ------------------------------------------------------------
366     // compute submeshes under shapes with algos that DO NOT require
367     // descretized boundaries and DO support submeshes
368     // ------------------------------------------------------------
369     list< SMESH_subMesh* >::reverse_iterator subIt, subEnd;
370     subIt  = smWithAlgoSupportingSubmeshes.rbegin();
371     subEnd = smWithAlgoSupportingSubmeshes.rend();
372     // start from lower shapes
373     for ( ; subIt != subEnd; ++subIt ) {
374       sm = *subIt;
375
376       // get a shape the algo is assigned to
377       TopoDS_Shape algoShape;
378       if ( !GetAlgo( aMesh, sm->GetSubShape(), & algoShape ))
379         continue; // strange...
380
381       // look for more local algos
382       smIt = sm->getDependsOnIterator(!includeSelf, !complexShapeFirst);
383       while ( smIt->more() ) {
384         SMESH_subMesh* smToCompute = smIt->next();
385
386         const TopoDS_Shape& aSubShape = smToCompute->GetSubShape();
387         const int aShapeDim = GetShapeDim( aSubShape );
388         if ( aShapeDim < 1 ) continue;
389
390         //const TopAbs_ShapeEnum aShType = smToCompute->GetSubShape().ShapeType();
391
392         SMESH_HypoFilter filter( SMESH_HypoFilter::IsAlgo() );
393         filter
394           .And( SMESH_HypoFilter::IsApplicableTo( aSubShape ))
395           .And( SMESH_HypoFilter::IsMoreLocalThan( algoShape ));
396
397         if ( SMESH_Algo* subAlgo = (SMESH_Algo*) aMesh.GetHypothesis( aSubShape, filter, true )) {
398           SMESH_Hypothesis::Hypothesis_Status status;
399           if ( subAlgo->CheckHypothesis( aMesh, aSubShape, status ))
400             // mesh a lower smToCompute starting from vertices
401             Evaluate( aMesh, aSubShape, aResMap, /*anUpward=*/true, aShapesId );
402         }
403       }
404     }
405     // ----------------------------------------------------------
406     // apply the algos that do not require descretized boundaries
407     // ----------------------------------------------------------
408     for ( subIt = smWithAlgoSupportingSubmeshes.rbegin(); subIt != subEnd; ++subIt )
409     {
410       sm = *subIt;
411       sm->Evaluate(aResMap);
412       if ( aShapesId )
413         aShapesId->insert( sm->GetId() );
414     }
415
416     // -----------------------------------------------
417     // mesh the rest subshapes starting from vertices
418     // -----------------------------------------------
419     ret = Evaluate( aMesh, aShape, aResMap, /*anUpward=*/true, aShapesId );
420   }
421
422   MESSAGE( "VSR - SMESH_Gen::Evaluate() finished, OK = " << ret);
423   return ret;
424 }
425
426
427 //=======================================================================
428 //function : checkConformIgnoredAlgos
429 //purpose  :
430 //=======================================================================
431
432 static bool checkConformIgnoredAlgos(SMESH_Mesh&               aMesh,
433                                      SMESH_subMesh*            aSubMesh,
434                                      const SMESH_Algo*         aGlobIgnoAlgo,
435                                      const SMESH_Algo*         aLocIgnoAlgo,
436                                      bool &                    checkConform,
437                                      set<SMESH_subMesh*>&      aCheckedMap,
438                                      list< SMESH_Gen::TAlgoStateError > & theErrors)
439 {
440   ASSERT( aSubMesh );
441   if ( aSubMesh->GetSubShape().ShapeType() == TopAbs_VERTEX)
442     return true;
443
444
445   bool ret = true;
446
447   const list<const SMESHDS_Hypothesis*>& listHyp =
448     aMesh.GetMeshDS()->GetHypothesis( aSubMesh->GetSubShape() );
449   list<const SMESHDS_Hypothesis*>::const_iterator it=listHyp.begin();
450   for ( ; it != listHyp.end(); it++)
451   {
452     const SMESHDS_Hypothesis * aHyp = *it;
453     if (aHyp->GetType() == SMESHDS_Hypothesis::PARAM_ALGO)
454       continue;
455
456     const SMESH_Algo* algo = dynamic_cast<const SMESH_Algo*> (aHyp);
457     ASSERT ( algo );
458
459     if ( aLocIgnoAlgo ) // algo is hidden by a local algo of upper dim
460     {
461       INFOS( "Local <" << algo->GetName() << "> is hidden by local <"
462             << aLocIgnoAlgo->GetName() << ">");
463     }
464     else
465     {
466       bool isGlobal = (aMesh.IsMainShape( aSubMesh->GetSubShape() ));
467       int dim = algo->GetDim();
468       int aMaxGlobIgnoDim = ( aGlobIgnoAlgo ? aGlobIgnoAlgo->GetDim() : -1 );
469
470       if ( dim < aMaxGlobIgnoDim )
471       {
472         // algo is hidden by a global algo
473         INFOS( ( isGlobal ? "Global" : "Local" )
474               << " <" << algo->GetName() << "> is hidden by global <"
475               << aGlobIgnoAlgo->GetName() << ">");
476       }
477       else if ( !algo->NeedDescretBoundary() && !isGlobal)
478       {
479         // local algo is not hidden and hides algos on sub-shapes
480         if (checkConform && !aSubMesh->IsConform( algo ))
481         {
482           ret = false;
483           checkConform = false; // no more check conformity
484           INFOS( "ERROR: Local <" << algo->GetName() <<
485                 "> would produce not conform mesh: "
486                 "<Not Conform Mesh Allowed> hypotesis is missing");
487           theErrors.push_back( SMESH_Gen::TAlgoStateError() );
488           theErrors.back().Set( SMESH_Hypothesis::HYP_NOTCONFORM, algo, false );
489         }
490
491         // sub-algos will be hidden by a local <algo>
492         SMESH_subMeshIteratorPtr revItSub =
493           aSubMesh->getDependsOnIterator( /*includeSelf=*/false, /*complexShapeFirst=*/true);
494         bool checkConform2 = false;
495         while ( revItSub->more() )
496         {
497           SMESH_subMesh* sm = revItSub->next();
498           checkConformIgnoredAlgos (aMesh, sm, aGlobIgnoAlgo,
499                                     algo, checkConform2, aCheckedMap, theErrors);
500           aCheckedMap.insert( sm );
501         }
502       }
503     }
504   }
505
506   return ret;
507 }
508
509 //=======================================================================
510 //function : checkMissing
511 //purpose  : notify on missing hypothesis
512 //           Return false if algo or hipothesis is missing
513 //=======================================================================
514
515 static bool checkMissing(SMESH_Gen*                aGen,
516                          SMESH_Mesh&               aMesh,
517                          SMESH_subMesh*            aSubMesh,
518                          const int                 aTopAlgoDim,
519                          bool*                     globalChecked,
520                          const bool                checkNoAlgo,
521                          set<SMESH_subMesh*>&      aCheckedMap,
522                          list< SMESH_Gen::TAlgoStateError > & theErrors)
523 {
524   if ( aSubMesh->GetSubShape().ShapeType() == TopAbs_VERTEX)
525     return true;
526
527   //MESSAGE("=====checkMissing");
528
529   int ret = true;
530   SMESH_Algo* algo = 0;
531
532   switch (aSubMesh->GetAlgoState())
533   {
534   case SMESH_subMesh::NO_ALGO: {
535     if (checkNoAlgo)
536     {
537       // should there be any algo?
538       int shapeDim = SMESH_Gen::GetShapeDim( aSubMesh->GetSubShape() );
539       if (aTopAlgoDim > shapeDim)
540       {
541         MESSAGE( "ERROR: " << shapeDim << "D algorithm is missing" );
542         ret = false;
543         theErrors.push_back( SMESH_Gen::TAlgoStateError() );
544         theErrors.back().Set( SMESH_Hypothesis::HYP_MISSING, shapeDim, true );
545       }
546     }
547     return ret;
548   }
549   case SMESH_subMesh::MISSING_HYP: {
550     // notify if an algo missing hyp is attached to aSubMesh
551     algo = aGen->GetAlgo( aMesh, aSubMesh->GetSubShape() );
552     ASSERT( algo );
553     bool IsGlobalHypothesis = aGen->IsGlobalHypothesis( algo, aMesh );
554     if (!IsGlobalHypothesis || !globalChecked[ algo->GetDim() ])
555     {
556       TAlgoStateErrorName errName = SMESH_Hypothesis::HYP_MISSING;
557       SMESH_Hypothesis::Hypothesis_Status status;
558       algo->CheckHypothesis( aMesh, aSubMesh->GetSubShape(), status );
559       if ( status == SMESH_Hypothesis::HYP_BAD_PARAMETER ) {
560         MESSAGE( "ERROR: hypothesis of " << (IsGlobalHypothesis ? "Global " : "Local ")
561                  << "<" << algo->GetName() << "> has a bad parameter value");
562         errName = status;
563       } else if ( status == SMESH_Hypothesis::HYP_BAD_GEOMETRY ) {
564         MESSAGE( "ERROR: " << (IsGlobalHypothesis ? "Global " : "Local ")
565                  << "<" << algo->GetName() << "> assigned to mismatching geometry");
566         errName = status;
567       } else {
568         MESSAGE( "ERROR: " << (IsGlobalHypothesis ? "Global " : "Local ")
569                  << "<" << algo->GetName() << "> misses some hypothesis");
570       }
571       if (IsGlobalHypothesis)
572         globalChecked[ algo->GetDim() ] = true;
573       theErrors.push_back( SMESH_Gen::TAlgoStateError() );
574       theErrors.back().Set( errName, algo, IsGlobalHypothesis );
575     }
576     ret = false;
577     break;
578   }
579   case SMESH_subMesh::HYP_OK:
580     algo = aGen->GetAlgo( aMesh, aSubMesh->GetSubShape() );
581     ret = true;
582     break;
583   default: ASSERT(0);
584   }
585
586   // do not check under algo that hides sub-algos or
587   // re-start checking NO_ALGO state
588   ASSERT (algo);
589   bool isTopLocalAlgo =
590     ( aTopAlgoDim <= algo->GetDim() && !aGen->IsGlobalHypothesis( algo, aMesh ));
591   if (!algo->NeedDescretBoundary() || isTopLocalAlgo)
592   {
593     bool checkNoAlgo2 = ( algo->NeedDescretBoundary() );
594     SMESH_subMeshIteratorPtr itsub = aSubMesh->getDependsOnIterator( /*includeSelf=*/false,
595                                                                      /*complexShapeFirst=*/false);
596     while ( itsub->more() )
597     {
598       // sub-meshes should not be checked further more
599       SMESH_subMesh* sm = itsub->next();
600       aCheckedMap.insert( sm );
601
602       if (isTopLocalAlgo)
603       {
604         //check algo on sub-meshes
605         int aTopAlgoDim2 = algo->GetDim();
606         if (!checkMissing (aGen, aMesh, sm, aTopAlgoDim2,
607                            globalChecked, checkNoAlgo2, aCheckedMap, theErrors))
608         {
609           ret = false;
610           if (sm->GetAlgoState() == SMESH_subMesh::NO_ALGO )
611             checkNoAlgo2 = false;
612         }
613       }
614     }
615   }
616   return ret;
617 }
618
619 //=======================================================================
620 //function : CheckAlgoState
621 //purpose  : notify on bad state of attached algos, return false
622 //           if Compute() would fail because of some algo bad state
623 //=======================================================================
624
625 bool SMESH_Gen::CheckAlgoState(SMESH_Mesh& aMesh, const TopoDS_Shape& aShape)
626 {
627   list< TAlgoStateError > errors;
628   return GetAlgoState( aMesh, aShape, errors );
629 }
630
631 //=======================================================================
632 //function : GetAlgoState
633 //purpose  : notify on bad state of attached algos, return false
634 //           if Compute() would fail because of some algo bad state
635 //           theErrors list contains problems description
636 //=======================================================================
637
638 bool SMESH_Gen::GetAlgoState(SMESH_Mesh&               theMesh,
639                              const TopoDS_Shape&       theShape,
640                              list< TAlgoStateError > & theErrors)
641 {
642   //MESSAGE("SMESH_Gen::CheckAlgoState");
643
644   bool ret = true;
645   bool hasAlgo = false;
646
647   SMESH_subMesh* sm = theMesh.GetSubMesh(theShape);
648   const SMESHDS_Mesh* meshDS = theMesh.GetMeshDS();
649   TopoDS_Shape mainShape = meshDS->ShapeToMesh();
650
651   // -----------------
652   // get global algos
653   // -----------------
654
655   const SMESH_Algo* aGlobAlgoArr[] = {0,0,0,0};
656
657   const list<const SMESHDS_Hypothesis*>& listHyp = meshDS->GetHypothesis( mainShape );
658   list<const SMESHDS_Hypothesis*>::const_iterator it=listHyp.begin();
659   for ( ; it != listHyp.end(); it++)
660   {
661     const SMESHDS_Hypothesis * aHyp = *it;
662     if (aHyp->GetType() == SMESHDS_Hypothesis::PARAM_ALGO)
663       continue;
664
665     const SMESH_Algo* algo = dynamic_cast<const SMESH_Algo*> (aHyp);
666     ASSERT ( algo );
667
668     int dim = algo->GetDim();
669     aGlobAlgoArr[ dim ] = algo;
670
671     hasAlgo = true;
672   }
673
674   // --------------------------------------------------------
675   // info on algos that will be ignored because of ones that
676   // don't NeedDescretBoundary() attached to super-shapes,
677   // check that a conform mesh will be produced
678   // --------------------------------------------------------
679
680
681   // find a global algo possibly hiding sub-algos
682   int dim;
683   const SMESH_Algo* aGlobIgnoAlgo = 0;
684   for (dim = 3; dim > 0; dim--)
685   {
686     if (aGlobAlgoArr[ dim ] &&
687         !aGlobAlgoArr[ dim ]->NeedDescretBoundary())
688     {
689       aGlobIgnoAlgo = aGlobAlgoArr[ dim ];
690       break;
691     }
692   }
693
694   set<SMESH_subMesh*> aCheckedSubs;
695   bool checkConform = ( !theMesh.IsNotConformAllowed() );
696
697   // loop on theShape and its sub-shapes
698   SMESH_subMeshIteratorPtr revItSub = sm->getDependsOnIterator( /*includeSelf=*/true,
699                                                                 /*complexShapeFirst=*/true);
700   while ( revItSub->more() )
701   {
702     SMESH_subMesh* smToCheck = revItSub->next();
703     if ( smToCheck->GetSubShape().ShapeType() == TopAbs_VERTEX)
704       break;
705
706     if ( aCheckedSubs.insert( smToCheck ).second ) // not yet checked
707       if (!checkConformIgnoredAlgos (theMesh, smToCheck, aGlobIgnoAlgo,
708                                      0, checkConform, aCheckedSubs, theErrors))
709         ret = false;
710
711     if ( smToCheck->GetAlgoState() != SMESH_subMesh::NO_ALGO )
712       hasAlgo = true;
713   }
714
715   // ----------------------------------------------------------------
716   // info on missing hypothesis and find out if all needed algos are
717   // well defined
718   // ----------------------------------------------------------------
719
720   //MESSAGE( "---info on missing hypothesis and find out if all needed algos are");
721
722   // find max dim of global algo
723   int aTopAlgoDim = 0;
724   for (dim = 3; dim > 0; dim--)
725   {
726     if (aGlobAlgoArr[ dim ])
727     {
728       aTopAlgoDim = dim;
729       break;
730     }
731   }
732   bool checkNoAlgo = theMesh.HasShapeToMesh() ? bool( aTopAlgoDim ) : false;
733   bool globalChecked[] = { false, false, false, false };
734
735   // loop on theShape and its sub-shapes
736   aCheckedSubs.clear();
737   revItSub = sm->getDependsOnIterator( /*includeSelf=*/true, /*complexShapeFirst=*/true);
738   while ( revItSub->more() )
739   {
740     SMESH_subMesh* smToCheck = revItSub->next();
741     if ( smToCheck->GetSubShape().ShapeType() == TopAbs_VERTEX)
742       break;
743
744     if ( aCheckedSubs.insert( smToCheck ).second ) // not yet checked
745       if (!checkMissing (this, theMesh, smToCheck, aTopAlgoDim,
746                          globalChecked, checkNoAlgo, aCheckedSubs, theErrors))
747       {
748         ret = false;
749         if (smToCheck->GetAlgoState() == SMESH_subMesh::NO_ALGO )
750           checkNoAlgo = false;
751       }
752   }
753
754   if ( !hasAlgo ) {
755     ret = false;
756     INFOS( "None algorithm attached" );
757     theErrors.push_back( TAlgoStateError() );
758     theErrors.back().Set( SMESH_Hypothesis::HYP_MISSING, 1, true );
759   }
760
761   return ret;
762 }
763
764 //=======================================================================
765 //function : IsGlobalHypothesis
766 //purpose  : check if theAlgo is attached to the main shape
767 //=======================================================================
768
769 bool SMESH_Gen::IsGlobalHypothesis(const SMESH_Hypothesis* theHyp, SMESH_Mesh& aMesh)
770 {
771   SMESH_HypoFilter filter( SMESH_HypoFilter::Is( theHyp ));
772   return aMesh.GetHypothesis( aMesh.GetMeshDS()->ShapeToMesh(), filter, false );
773 }
774
775 //=============================================================================
776 /*!
777  *
778  */
779 //=============================================================================
780
781 SMESH_Algo *SMESH_Gen::GetAlgo(SMESH_Mesh &         aMesh,
782                                const TopoDS_Shape & aShape,
783                                TopoDS_Shape*        assignedTo)
784 {
785
786   SMESH_HypoFilter filter( SMESH_HypoFilter::IsAlgo() );
787   filter.And( filter.IsApplicableTo( aShape ));
788
789   return (SMESH_Algo*) aMesh.GetHypothesis( aShape, filter, true, assignedTo );
790 }
791
792 //=============================================================================
793 /*!
794  *
795  */
796 //=============================================================================
797
798 StudyContextStruct *SMESH_Gen::GetStudyContext(int studyId)
799 {
800         // Get studyContext, create it if it does'nt exist, with a SMESHDS_Document
801
802         if (_mapStudyContext.find(studyId) == _mapStudyContext.end())
803         {
804                 _mapStudyContext[studyId] = new StudyContextStruct;
805                 _mapStudyContext[studyId]->myDocument = new SMESHDS_Document(studyId);
806         }
807         StudyContextStruct *myStudyContext = _mapStudyContext[studyId];
808 //   ASSERT(_mapStudyContext.find(studyId) != _mapStudyContext.end());
809         return myStudyContext;
810 }
811
812 // //=============================================================================
813 // /*!
814 //  *
815 //  */
816 // //=============================================================================
817
818 // void SMESH_Gen::Save(int studyId, const char *aUrlOfFile)
819 // {
820 // }
821
822 // //=============================================================================
823 // /*!
824 //  *
825 //  */
826 // //=============================================================================
827
828 // void SMESH_Gen::Load(int studyId, const char *aUrlOfFile)
829 // {
830 // }
831
832 // //=============================================================================
833 // /*!
834 //  *
835 //  */
836 // //=============================================================================
837
838 // void SMESH_Gen::Close(int studyId)
839 // {
840 // }
841
842 //=============================================================================
843 /*!
844  *
845  */
846 //=============================================================================
847
848 int SMESH_Gen::GetShapeDim(const TopAbs_ShapeEnum & aShapeType)
849 {
850   static vector<int> dim;
851   if ( dim.empty() )
852   {
853     dim.resize( TopAbs_SHAPE, -1 );
854     dim[ TopAbs_COMPOUND ]  = MeshDim_3D;
855     dim[ TopAbs_COMPSOLID ] = MeshDim_3D;
856     dim[ TopAbs_SOLID ]     = MeshDim_3D;
857     dim[ TopAbs_SHELL ]     = MeshDim_3D;
858     dim[ TopAbs_FACE  ]     = MeshDim_2D;
859     dim[ TopAbs_WIRE ]      = MeshDim_1D;
860     dim[ TopAbs_EDGE ]      = MeshDim_1D;
861     dim[ TopAbs_VERTEX ]    = MeshDim_0D;
862   }
863   return dim[ aShapeType ];
864 }
865
866 //=============================================================================
867 /*!
868  *
869  */
870 //=============================================================================
871
872 int SMESH_Gen::GetANewId()
873 {
874         //MESSAGE("SMESH_Gen::GetANewId");
875         return _hypId++;
876 }