Salome HOME
PR: merged from V5_1_4rc1
[modules/smesh.git] / src / SMESH_I / SMESH_Filter_i.cxx
1 //  Copyright (C) 2007-2010  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 //  This library is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU Lesser General Public
8 //  License as published by the Free Software Foundation; either
9 //  version 2.1 of the License.
10 //
11 //  This library is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 //  Lesser General Public License for more details.
15 //
16 //  You should have received a copy of the GNU Lesser General Public
17 //  License along with this library; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 //  SMESH SMESH_I : idl implementation based on 'SMESH' unit's calsses
24 //  File   : SMESH_Filter_i.cxx
25 //  Author : Alexey Petrov, OCC
26 //  Module : SMESH
27 //
28 #include "SMESH_Filter_i.hxx"
29
30 #include "SMESH_Gen_i.hxx"
31 #include "SMESH_PythonDump.hxx"
32
33 #include "SMDS_Mesh.hxx"
34 #include "SMDS_MeshNode.hxx"
35 #include "SMDS_MeshElement.hxx"
36 #include "SMDS_ElemIterator.hxx"
37
38 #include "SMESHDS_Mesh.hxx"
39
40 #include <BRep_Tool.hxx>
41 #include <Geom_CylindricalSurface.hxx>
42 #include <Geom_Plane.hxx>
43 #include <LDOMParser.hxx>
44 #include <LDOMString.hxx>
45 #include <LDOM_Document.hxx>
46 #include <LDOM_Element.hxx>
47 #include <LDOM_Node.hxx>
48 #include <LDOM_XmlWriter.hxx>
49 #include <Precision.hxx>
50 #include <TColStd_ListIteratorOfListOfInteger.hxx>
51 #include <TColStd_ListIteratorOfListOfReal.hxx>
52 #include <TColStd_ListOfInteger.hxx>
53 #include <TColStd_ListOfReal.hxx>
54 #include <TColStd_SequenceOfHAsciiString.hxx>
55 #include <TCollection_HAsciiString.hxx>
56 #include <TopExp.hxx>
57 #include <TopExp_Explorer.hxx>
58 #include <TopoDS.hxx>
59 #include <TopoDS_Face.hxx>
60 #include <TopoDS_Shape.hxx>
61 #include <TopTools_IndexedMapOfShape.hxx>
62
63 using namespace SMESH;
64 using namespace SMESH::Controls;
65
66
67 namespace SMESH
68 {
69   Predicate_i*
70   GetPredicate( Predicate_ptr thePredicate )
71   {
72     return DownCast<Predicate_i*>(thePredicate);
73   }
74 }
75
76
77 /*
78   Class       : BelongToGeom
79   Description : Predicate for verifying whether entity belongs to
80                 specified geometrical support
81 */
82
83 Controls::BelongToGeom::BelongToGeom()
84   : myMeshDS(NULL),
85     myType(SMDSAbs_All),
86     myIsSubshape(false),
87     myTolerance(Precision::Confusion())
88 {}
89
90 void Controls::BelongToGeom::SetMesh( const SMDS_Mesh* theMesh )
91 {
92   myMeshDS = dynamic_cast<const SMESHDS_Mesh*>(theMesh);
93   init();
94 }
95
96 void Controls::BelongToGeom::SetGeom( const TopoDS_Shape& theShape )
97 {
98   myShape = theShape;
99   init();
100 }
101
102 static bool IsSubShape (const TopTools_IndexedMapOfShape& theMap,
103                         const TopoDS_Shape& theShape)
104 {
105   if (theMap.Contains(theShape)) return true;
106
107   if (theShape.ShapeType() == TopAbs_COMPOUND ||
108       theShape.ShapeType() == TopAbs_COMPSOLID)
109   {
110     TopoDS_Iterator anIt (theShape, Standard_True, Standard_True);
111     for (; anIt.More(); anIt.Next())
112     {
113       if (!IsSubShape(theMap, anIt.Value())) {
114         return false;
115       }
116     }
117     return true;
118   }
119
120   return false;
121 }
122
123 void Controls::BelongToGeom::init()
124 {
125   if (!myMeshDS || myShape.IsNull()) return;
126
127   // is subshape of main shape?
128   TopoDS_Shape aMainShape = myMeshDS->ShapeToMesh();
129   if (aMainShape.IsNull()) {
130     myIsSubshape = false;
131   }
132   else {
133     TopTools_IndexedMapOfShape aMap;
134     TopExp::MapShapes(aMainShape, aMap);
135     myIsSubshape = IsSubShape(aMap, myShape);
136   }
137
138   if (!myIsSubshape)
139   {
140     myElementsOnShapePtr.reset(new Controls::ElementsOnShape());
141     myElementsOnShapePtr->SetTolerance(myTolerance);
142     myElementsOnShapePtr->SetAllNodes(true); // belong, while false means "lays on"
143     myElementsOnShapePtr->SetMesh(myMeshDS);
144     myElementsOnShapePtr->SetShape(myShape, myType);
145   }
146 }
147
148 static bool IsContains( const SMESHDS_Mesh*     theMeshDS,
149                         const TopoDS_Shape&     theShape,
150                         const SMDS_MeshElement* theElem,
151                         TopAbs_ShapeEnum        theFindShapeEnum,
152                         TopAbs_ShapeEnum        theAvoidShapeEnum = TopAbs_SHAPE )
153 {
154   TopExp_Explorer anExp( theShape,theFindShapeEnum,theAvoidShapeEnum );
155
156   while( anExp.More() )
157   {
158     const TopoDS_Shape& aShape = anExp.Current();
159     if( SMESHDS_SubMesh* aSubMesh = theMeshDS->MeshElements( aShape ) ){
160       if( aSubMesh->Contains( theElem ) )
161         return true;
162     }
163     anExp.Next();
164   }
165   return false;
166 }
167
168 bool Controls::BelongToGeom::IsSatisfy (long theId)
169 {
170   if (myMeshDS == 0 || myShape.IsNull())
171     return false;
172
173   if (!myIsSubshape)
174   {
175     return myElementsOnShapePtr->IsSatisfy(theId);
176   }
177
178   // Case of submesh
179   if (myType == SMDSAbs_Node)
180   {
181     if( const SMDS_MeshNode* aNode = myMeshDS->FindNode( theId ) )
182     {
183       const SMDS_PositionPtr& aPosition = aNode->GetPosition();
184       SMDS_TypeOfPosition aTypeOfPosition = aPosition->GetTypeOfPosition();
185       switch( aTypeOfPosition )
186       {
187       case SMDS_TOP_VERTEX : return IsContains( myMeshDS,myShape,aNode,TopAbs_VERTEX );
188       case SMDS_TOP_EDGE   : return IsContains( myMeshDS,myShape,aNode,TopAbs_EDGE );
189       case SMDS_TOP_FACE   : return IsContains( myMeshDS,myShape,aNode,TopAbs_FACE );
190       case SMDS_TOP_3DSPACE: return IsContains( myMeshDS,myShape,aNode,TopAbs_SHELL );
191       }
192     }
193   }
194   else
195   {
196     if( const SMDS_MeshElement* anElem = myMeshDS->FindElement( theId ) )
197     {
198       if( myType == SMDSAbs_All )
199       {
200         return IsContains( myMeshDS,myShape,anElem,TopAbs_EDGE ) ||
201                IsContains( myMeshDS,myShape,anElem,TopAbs_FACE ) ||
202                IsContains( myMeshDS,myShape,anElem,TopAbs_SHELL )||
203                IsContains( myMeshDS,myShape,anElem,TopAbs_SOLID );
204       }
205       else if( myType == anElem->GetType() )
206       {
207         switch( myType )
208         {
209         case SMDSAbs_Edge  : return IsContains( myMeshDS,myShape,anElem,TopAbs_EDGE );
210         case SMDSAbs_Face  : return IsContains( myMeshDS,myShape,anElem,TopAbs_FACE );
211         case SMDSAbs_Volume: return IsContains( myMeshDS,myShape,anElem,TopAbs_SHELL )||
212                                     IsContains( myMeshDS,myShape,anElem,TopAbs_SOLID );
213         }
214       }
215     }
216   }
217
218   return false;
219 }
220
221 void Controls::BelongToGeom::SetType (SMDSAbs_ElementType theType)
222 {
223   myType = theType;
224   init();
225 }
226
227 SMDSAbs_ElementType Controls::BelongToGeom::GetType() const
228 {
229   return myType;
230 }
231
232 TopoDS_Shape Controls::BelongToGeom::GetShape()
233 {
234   return myShape;
235 }
236
237 const SMESHDS_Mesh* Controls::BelongToGeom::GetMeshDS() const
238 {
239   return myMeshDS;
240 }
241
242 void Controls::BelongToGeom::SetTolerance (double theTolerance)
243 {
244   myTolerance = theTolerance;
245   if (!myIsSubshape)
246     init();
247 }
248
249 double Controls::BelongToGeom::GetTolerance()
250 {
251   return myTolerance;
252 }
253
254 /*
255   Class       : LyingOnGeom
256   Description : Predicate for verifying whether entiy lying or partially lying on
257                 specified geometrical support
258 */
259
260 Controls::LyingOnGeom::LyingOnGeom()
261   : myMeshDS(NULL),
262     myType(SMDSAbs_All),
263     myIsSubshape(false),
264     myTolerance(Precision::Confusion())
265 {}
266
267 void Controls::LyingOnGeom::SetMesh( const SMDS_Mesh* theMesh )
268 {
269   myMeshDS = dynamic_cast<const SMESHDS_Mesh*>(theMesh);
270   init();
271 }
272
273 void Controls::LyingOnGeom::SetGeom( const TopoDS_Shape& theShape )
274 {
275   myShape = theShape;
276   init();
277 }
278
279 void Controls::LyingOnGeom::init()
280 {
281   if (!myMeshDS || myShape.IsNull()) return;
282
283   // is subshape of main shape?
284   TopoDS_Shape aMainShape = myMeshDS->ShapeToMesh();
285   if (aMainShape.IsNull()) {
286     myIsSubshape = false;
287   }
288   else {
289     TopTools_IndexedMapOfShape aMap;
290     TopExp::MapShapes(aMainShape, aMap);
291     myIsSubshape = IsSubShape(aMap, myShape);
292   }
293
294   if (!myIsSubshape)
295   {
296     myElementsOnShapePtr.reset(new Controls::ElementsOnShape());
297     myElementsOnShapePtr->SetTolerance(myTolerance);
298     myElementsOnShapePtr->SetAllNodes(false); // lays on, while true means "belong"
299     myElementsOnShapePtr->SetMesh(myMeshDS);
300     myElementsOnShapePtr->SetShape(myShape, myType);
301   }
302 }
303
304 bool Controls::LyingOnGeom::IsSatisfy( long theId )
305 {
306   if ( myMeshDS == 0 || myShape.IsNull() )
307     return false;
308
309   if (!myIsSubshape)
310   {
311     return myElementsOnShapePtr->IsSatisfy(theId);
312   }
313
314   // Case of submesh
315   if( myType == SMDSAbs_Node )
316   {
317     if( const SMDS_MeshNode* aNode = myMeshDS->FindNode( theId ) )
318     {
319       const SMDS_PositionPtr& aPosition = aNode->GetPosition();
320       SMDS_TypeOfPosition aTypeOfPosition = aPosition->GetTypeOfPosition();
321       switch( aTypeOfPosition )
322       {
323       case SMDS_TOP_VERTEX : return IsContains( myMeshDS,myShape,aNode,TopAbs_VERTEX );
324       case SMDS_TOP_EDGE   : return IsContains( myMeshDS,myShape,aNode,TopAbs_EDGE );
325       case SMDS_TOP_FACE   : return IsContains( myMeshDS,myShape,aNode,TopAbs_FACE );
326       case SMDS_TOP_3DSPACE: return IsContains( myMeshDS,myShape,aNode,TopAbs_SHELL );
327       }
328     }
329   }
330   else
331   {
332     if( const SMDS_MeshElement* anElem = myMeshDS->FindElement( theId ) )
333     {
334       if( myType == SMDSAbs_All )
335       {
336         return Contains( myMeshDS,myShape,anElem,TopAbs_EDGE ) ||
337                Contains( myMeshDS,myShape,anElem,TopAbs_FACE ) ||
338                Contains( myMeshDS,myShape,anElem,TopAbs_SHELL )||
339                Contains( myMeshDS,myShape,anElem,TopAbs_SOLID );
340       }
341       else if( myType == anElem->GetType() )
342       {
343         switch( myType )
344         {
345         case SMDSAbs_Edge  : return Contains( myMeshDS,myShape,anElem,TopAbs_EDGE );
346         case SMDSAbs_Face  : return Contains( myMeshDS,myShape,anElem,TopAbs_FACE );
347         case SMDSAbs_Volume: return Contains( myMeshDS,myShape,anElem,TopAbs_SHELL )||
348                                     Contains( myMeshDS,myShape,anElem,TopAbs_SOLID );
349         }
350       }
351     }
352   }
353
354   return false;
355 }
356
357 void Controls::LyingOnGeom::SetType( SMDSAbs_ElementType theType )
358 {
359   myType = theType;
360   init();
361 }
362
363 SMDSAbs_ElementType Controls::LyingOnGeom::GetType() const
364 {
365   return myType;
366 }
367
368 TopoDS_Shape Controls::LyingOnGeom::GetShape()
369 {
370   return myShape;
371 }
372
373 const SMESHDS_Mesh* Controls::LyingOnGeom::GetMeshDS() const
374 {
375   return myMeshDS;
376 }
377
378 void Controls::LyingOnGeom::SetTolerance (double theTolerance)
379 {
380   myTolerance = theTolerance;
381   if (!myIsSubshape)
382     init();
383 }
384
385 double Controls::LyingOnGeom::GetTolerance()
386 {
387   return myTolerance;
388 }
389
390 bool Controls::LyingOnGeom::Contains( const SMESHDS_Mesh*     theMeshDS,
391                                       const TopoDS_Shape&     theShape,
392                                       const SMDS_MeshElement* theElem,
393                                       TopAbs_ShapeEnum        theFindShapeEnum,
394                                       TopAbs_ShapeEnum        theAvoidShapeEnum )
395 {
396   if (IsContains(theMeshDS, theShape, theElem, theFindShapeEnum, theAvoidShapeEnum))
397     return true;
398
399   TopTools_IndexedMapOfShape aSubShapes;
400   TopExp::MapShapes( theShape, aSubShapes );
401
402   for (int i = 1; i <= aSubShapes.Extent(); i++)
403   {
404     const TopoDS_Shape& aShape = aSubShapes.FindKey(i);
405
406     if( SMESHDS_SubMesh* aSubMesh = theMeshDS->MeshElements( aShape ) ){
407       if( aSubMesh->Contains( theElem ) )
408         return true;
409
410       SMDS_NodeIteratorPtr aNodeIt = aSubMesh->GetNodes();
411       while ( aNodeIt->more() )
412       {
413         const SMDS_MeshNode* aNode = static_cast<const SMDS_MeshNode*>(aNodeIt->next());
414         SMDS_ElemIteratorPtr anElemIt = aNode->GetInverseElementIterator();
415         while ( anElemIt->more() )
416         {
417           const SMDS_MeshElement* anElement = static_cast<const SMDS_MeshElement*>(anElemIt->next());
418           if (anElement == theElem)
419             return true;
420         }
421       }
422     }
423   }
424   return false;
425 }
426
427
428 /*
429                             AUXILIARY METHODS
430 */
431
432 inline
433 const SMDS_Mesh*
434 MeshPtr2SMDSMesh( SMESH_Mesh_ptr theMesh )
435 {
436   SMESH_Mesh_i* anImplPtr = DownCast<SMESH_Mesh_i*>(theMesh);
437   return anImplPtr ? anImplPtr->GetImpl().GetMeshDS() : 0;
438 }
439
440 inline
441 SMESH::long_array*
442 toArray( const TColStd_ListOfInteger& aList )
443 {
444   SMESH::long_array_var anArray = new SMESH::long_array;
445   anArray->length( aList.Extent() );
446   TColStd_ListIteratorOfListOfInteger anIter( aList );
447   int i = 0;
448   for( ; anIter.More(); anIter.Next() )
449     anArray[ i++ ] = anIter.Value();
450
451   return anArray._retn();
452 }
453
454 inline
455 SMESH::double_array*
456 toArray( const TColStd_ListOfReal& aList )
457 {
458   SMESH::double_array_var anArray = new SMESH::double_array;
459   anArray->length( aList.Extent() );
460   TColStd_ListIteratorOfListOfReal anIter( aList );
461   int i = 0;
462   for( ; anIter.More(); anIter.Next() )
463     anArray[ i++ ] = anIter.Value();
464
465   return anArray._retn();
466 }
467
468 static SMESH::Filter::Criterion createCriterion()
469 {
470   SMESH::Filter::Criterion aCriterion;
471
472   aCriterion.Type          = FT_Undefined;
473   aCriterion.Compare       = FT_Undefined;
474   aCriterion.Threshold     = 0;
475   aCriterion.UnaryOp       = FT_Undefined;
476   aCriterion.BinaryOp      = FT_Undefined;
477   aCriterion.ThresholdStr  = "";
478   aCriterion.ThresholdID   = "";
479   aCriterion.Tolerance     = Precision::Confusion();
480   aCriterion.TypeOfElement = SMESH::ALL;
481   aCriterion.Precision     = -1;
482
483   return aCriterion;
484 }
485
486 static TopoDS_Shape getShapeByName( const char* theName )
487 {
488   if ( theName != 0 )
489   {
490     SMESH_Gen_i* aSMESHGen = SMESH_Gen_i::GetSMESHGen();
491     SALOMEDS::Study_ptr aStudy = aSMESHGen->GetCurrentStudy();
492     if (!CORBA::is_nil(aStudy))
493     {
494       SALOMEDS::Study::ListOfSObject_var aList =
495         aStudy->FindObjectByName( theName, "GEOM" );
496       if ( aList->length() > 0 )
497       {
498         GEOM::GEOM_Object_var aGeomObj = GEOM::GEOM_Object::_narrow( aList[ 0 ]->GetObject() );
499         if ( !aGeomObj->_is_nil() )
500         {
501           GEOM::GEOM_Gen_ptr aGEOMGen = SMESH_Gen_i::GetGeomEngine();
502           TopoDS_Shape aLocShape = aSMESHGen->GetShapeReader()->GetShape( aGEOMGen, aGeomObj );
503           return aLocShape;
504         }
505       }
506     }
507   }
508   return TopoDS_Shape();
509 }
510
511 static TopoDS_Shape getShapeByID (const char* theID)
512 {
513   if (theID != 0 && theID != "") {
514     SMESH_Gen_i* aSMESHGen = SMESH_Gen_i::GetSMESHGen();
515     SALOMEDS::Study_ptr aStudy = aSMESHGen->GetCurrentStudy();
516     if (aStudy != 0) {
517       SALOMEDS::SObject_var aSObj = aStudy->FindObjectID(theID);
518       SALOMEDS::GenericAttribute_var anAttr;
519       if (!aSObj->_is_nil() && aSObj->FindAttribute(anAttr, "AttributeIOR")) {
520         SALOMEDS::AttributeIOR_var anIOR = SALOMEDS::AttributeIOR::_narrow(anAttr);
521         CORBA::String_var aVal = anIOR->Value();
522         CORBA::Object_var obj = aStudy->ConvertIORToObject(aVal);
523         GEOM::GEOM_Object_var aGeomObj = GEOM::GEOM_Object::_narrow(obj);
524       
525         if (!aGeomObj->_is_nil()) {
526           GEOM::GEOM_Gen_ptr aGEOMGen = SMESH_Gen_i::GetGeomEngine();
527           TopoDS_Shape aLocShape = aSMESHGen->GetShapeReader()->GetShape( aGEOMGen, aGeomObj );
528           return aLocShape;
529         }
530       }
531     }
532   }
533   return TopoDS_Shape();
534 }
535
536 static char* getShapeNameByID (const char* theID)
537 {
538   char* aName = (char*)"";
539
540   if (theID != 0 && theID != "") {
541     SMESH_Gen_i* aSMESHGen = SMESH_Gen_i::GetSMESHGen();
542     SALOMEDS::Study_ptr aStudy = aSMESHGen->GetCurrentStudy();
543     if (aStudy != 0) {
544       //SALOMEDS::SObject_var aSObj = aStudy->FindObjectIOR( theID );
545       SALOMEDS::SObject_var aSObj = aStudy->FindObjectID(theID);
546       SALOMEDS::GenericAttribute_var anAttr;
547       if (!aSObj->_is_nil() && aSObj->FindAttribute(anAttr, "AttributeName")) {
548         SALOMEDS::AttributeName_var aNameAttr = SALOMEDS::AttributeName::_narrow(anAttr);
549         aName = aNameAttr->Value();
550       }
551     }
552   }
553
554   return aName;
555 }
556
557 /*
558                                 FUNCTORS
559 */
560
561 /*
562   Class       : Functor_i
563   Description : An abstact class for all functors
564 */
565 Functor_i::Functor_i():
566   SALOME::GenericObj_i( SMESH_Gen_i::GetPOA() )
567 {
568   //Base class Salome_GenericObject do it inmplicitly by overriding PortableServer::POA_ptr _default_POA() method  
569   //PortableServer::ObjectId_var anObjectId =
570   //  SMESH_Gen_i::GetPOA()->activate_object( this );
571 }
572
573 Functor_i::~Functor_i()
574 {
575   //TPythonDump()<<this<<".Destroy()";
576 }
577
578 void Functor_i::SetMesh( SMESH_Mesh_ptr theMesh )
579 {
580   myFunctorPtr->SetMesh( MeshPtr2SMDSMesh( theMesh ) );
581   TPythonDump()<<this<<".SetMesh("<<theMesh<<")";
582 }
583
584 ElementType Functor_i::GetElementType()
585 {
586   return ( ElementType )myFunctorPtr->GetType();
587 }
588
589
590 /*
591   Class       : NumericalFunctor_i
592   Description : Base class for numerical functors
593 */
594 CORBA::Double NumericalFunctor_i::GetValue( CORBA::Long theId )
595 {
596   return myNumericalFunctorPtr->GetValue( theId );
597 }
598
599 void NumericalFunctor_i::SetPrecision( CORBA::Long thePrecision )
600 {
601   myNumericalFunctorPtr->SetPrecision( thePrecision );
602   TPythonDump()<<this<<".SetPrecision("<<thePrecision<<")";
603 }
604
605 CORBA::Long NumericalFunctor_i::GetPrecision()
606 {
607  return myNumericalFunctorPtr->GetPrecision();
608 }
609
610 Controls::NumericalFunctorPtr NumericalFunctor_i::GetNumericalFunctor()
611 {
612   return myNumericalFunctorPtr;
613 }
614
615
616 /*
617   Class       : SMESH_MinimumAngle
618   Description : Functor for calculation of minimum angle
619 */
620 MinimumAngle_i::MinimumAngle_i()
621 {
622   myNumericalFunctorPtr.reset( new Controls::MinimumAngle() );
623   myFunctorPtr = myNumericalFunctorPtr;
624 }
625
626 FunctorType MinimumAngle_i::GetFunctorType()
627 {
628   return SMESH::FT_MinimumAngle;
629 }
630
631
632 /*
633   Class       : AspectRatio
634   Description : Functor for calculating aspect ratio
635 */
636 AspectRatio_i::AspectRatio_i()
637 {
638   myNumericalFunctorPtr.reset( new Controls::AspectRatio() );
639   myFunctorPtr = myNumericalFunctorPtr;
640 }
641
642 FunctorType AspectRatio_i::GetFunctorType()
643 {
644   return SMESH::FT_AspectRatio;
645 }
646
647
648 /*
649   Class       : AspectRatio3D
650   Description : Functor for calculating aspect ratio 3D
651 */
652 AspectRatio3D_i::AspectRatio3D_i()
653 {
654   myNumericalFunctorPtr.reset( new Controls::AspectRatio3D() );
655   myFunctorPtr = myNumericalFunctorPtr;
656 }
657
658 FunctorType AspectRatio3D_i::GetFunctorType()
659 {
660   return SMESH::FT_AspectRatio3D;
661 }
662
663
664 /*
665   Class       : Warping_i
666   Description : Functor for calculating warping
667 */
668 Warping_i::Warping_i()
669 {
670   myNumericalFunctorPtr.reset( new Controls::Warping() );
671   myFunctorPtr = myNumericalFunctorPtr;
672 }
673
674 FunctorType Warping_i::GetFunctorType()
675 {
676   return SMESH::FT_Warping;
677 }
678
679
680 /*
681   Class       : Taper_i
682   Description : Functor for calculating taper
683 */
684 Taper_i::Taper_i()
685 {
686   myNumericalFunctorPtr.reset( new Controls::Taper() );
687   myFunctorPtr = myNumericalFunctorPtr;
688 }
689
690 FunctorType Taper_i::GetFunctorType()
691 {
692   return SMESH::FT_Taper;
693 }
694
695
696 /*
697   Class       : Skew_i
698   Description : Functor for calculating skew in degrees
699 */
700 Skew_i::Skew_i()
701 {
702   myNumericalFunctorPtr.reset( new Controls::Skew() );
703   myFunctorPtr = myNumericalFunctorPtr;
704 }
705
706 FunctorType Skew_i::GetFunctorType()
707 {
708   return SMESH::FT_Skew;
709 }
710
711 /*
712   Class       : Area_i
713   Description : Functor for calculating area
714 */
715 Area_i::Area_i()
716 {
717   myNumericalFunctorPtr.reset( new Controls::Area() );
718   myFunctorPtr = myNumericalFunctorPtr;
719 }
720
721 FunctorType Area_i::GetFunctorType()
722 {
723   return SMESH::FT_Area;
724 }
725
726 /*
727   Class       : Volume3D_i
728   Description : Functor for calculating volume of 3D element
729 */
730 Volume3D_i::Volume3D_i()
731 {
732   myNumericalFunctorPtr.reset( new Controls::Volume() );
733   myFunctorPtr = myNumericalFunctorPtr;
734 }
735
736 FunctorType Volume3D_i::GetFunctorType()
737 {
738   return SMESH::FT_Volume3D;
739 }
740
741 /*
742   Class       : Length_i
743   Description : Functor for calculating length off edge
744 */
745 Length_i::Length_i()
746 {
747   myNumericalFunctorPtr.reset( new Controls::Length() );
748   myFunctorPtr = myNumericalFunctorPtr;
749 }
750
751 FunctorType Length_i::GetFunctorType()
752 {
753   return SMESH::FT_Length;
754 }
755
756 /*
757   Class       : Length2D_i
758   Description : Functor for calculating length of edge
759 */
760 Length2D_i::Length2D_i()
761 {
762   myNumericalFunctorPtr.reset( new Controls::Length2D() );
763   myFunctorPtr = myNumericalFunctorPtr;
764 }
765
766 FunctorType Length2D_i::GetFunctorType()
767 {
768   return SMESH::FT_Length2D;
769 }
770
771 SMESH::Length2D::Values* Length2D_i::GetValues()
772 {
773   INFOS("Length2D_i::GetValues");
774   SMESH::Controls::Length2D::TValues aValues;
775   myLength2DPtr->GetValues( aValues );
776
777   long i = 0, iEnd = aValues.size();
778
779   SMESH::Length2D::Values_var aResult = new SMESH::Length2D::Values(iEnd);
780
781   SMESH::Controls::Length2D::TValues::const_iterator anIter;
782   for ( anIter = aValues.begin() ; anIter != aValues.end(); anIter++, i++ )
783   {
784     const SMESH::Controls::Length2D::Value&  aVal = *anIter;
785     SMESH::Length2D::Value &aValue = aResult[ i ];
786
787     aValue.myLength = aVal.myLength;
788     aValue.myPnt1 = aVal.myPntId[ 0 ];
789     aValue.myPnt2 = aVal.myPntId[ 1 ];
790   }
791
792   INFOS("Length2D_i::GetValuess~");
793   return aResult._retn();
794 }
795
796 /*
797   Class       : MultiConnection_i
798   Description : Functor for calculating number of faces conneted to the edge
799 */
800 MultiConnection_i::MultiConnection_i()
801 {
802   myNumericalFunctorPtr.reset( new Controls::MultiConnection() );
803   myFunctorPtr = myNumericalFunctorPtr;
804 }
805
806 FunctorType MultiConnection_i::GetFunctorType()
807 {
808   return SMESH::FT_MultiConnection;
809 }
810
811 /*
812   Class       : MultiConnection2D_i
813   Description : Functor for calculating number of faces conneted to the edge
814 */
815 MultiConnection2D_i::MultiConnection2D_i()
816 {
817   myNumericalFunctorPtr.reset( new Controls::MultiConnection2D() );
818   myFunctorPtr = myNumericalFunctorPtr;
819 }
820
821 FunctorType MultiConnection2D_i::GetFunctorType()
822 {
823   return SMESH::FT_MultiConnection2D;
824 }
825
826 SMESH::MultiConnection2D::Values* MultiConnection2D_i::GetValues()
827 {
828   INFOS("MultiConnection2D_i::GetValues");
829   SMESH::Controls::MultiConnection2D::MValues aValues;
830   myMulticonnection2DPtr->GetValues( aValues );
831
832   long i = 0, iEnd = aValues.size();
833
834   SMESH::MultiConnection2D::Values_var aResult = new SMESH::MultiConnection2D::Values(iEnd);
835
836   SMESH::Controls::MultiConnection2D::MValues::const_iterator anIter;
837   for ( anIter = aValues.begin() ; anIter != aValues.end(); anIter++, i++ )
838   {
839     const SMESH::Controls::MultiConnection2D::Value&  aVal = (*anIter).first;
840     SMESH::MultiConnection2D::Value &aValue = aResult[ i ];
841
842     aValue.myPnt1 = aVal.myPntId[ 0 ];
843     aValue.myPnt2 = aVal.myPntId[ 1 ];
844     aValue.myNbConnects = (*anIter).second;
845   }
846
847   INFOS("Multiconnection2D_i::GetValuess~");
848   return aResult._retn();
849 }
850
851 /*
852                             PREDICATES
853 */
854
855
856 /*
857   Class       : Predicate_i
858   Description : Base class for all predicates
859 */
860 CORBA::Boolean Predicate_i::IsSatisfy( CORBA::Long theId )
861 {
862   return myPredicatePtr->IsSatisfy( theId );
863 }
864
865 Controls::PredicatePtr Predicate_i::GetPredicate()
866 {
867   return myPredicatePtr;
868 }
869
870 /*
871   Class       : BadOrientedVolume_i
872   Description : Verify whether a mesh volume is incorrectly oriented from
873                 the point of view of MED convention
874 */
875 BadOrientedVolume_i::BadOrientedVolume_i()
876 {
877   Controls::PredicatePtr control( new Controls::BadOrientedVolume() );
878   myFunctorPtr = myPredicatePtr = control;
879 };
880
881 FunctorType BadOrientedVolume_i::GetFunctorType()
882 {
883   return SMESH::FT_BadOrientedVolume;
884 }
885
886 /*
887   Class       : BelongToGeom_i
888   Description : Predicate for selection on geometrical support
889 */
890 BelongToGeom_i::BelongToGeom_i()
891 {
892   myBelongToGeomPtr.reset( new Controls::BelongToGeom() );
893   myFunctorPtr = myPredicatePtr = myBelongToGeomPtr;
894   myShapeName = 0;
895   myShapeID   = 0;
896 }
897
898 BelongToGeom_i::~BelongToGeom_i()
899 {
900   delete myShapeName;
901   delete myShapeID;
902 }
903
904 void BelongToGeom_i::SetGeom( GEOM::GEOM_Object_ptr theGeom )
905 {
906   if ( theGeom->_is_nil() )
907     return;
908   SMESH_Gen_i* aSMESHGen = SMESH_Gen_i::GetSMESHGen();
909   GEOM::GEOM_Gen_ptr aGEOMGen = SMESH_Gen_i::GetGeomEngine();
910   TopoDS_Shape aLocShape = aSMESHGen->GetShapeReader()->GetShape( aGEOMGen, theGeom );
911   myBelongToGeomPtr->SetGeom( aLocShape );
912   TPythonDump()<<this<<".SetGeom("<<theGeom<<")";
913 }
914
915 void BelongToGeom_i::SetGeom( const TopoDS_Shape& theShape )
916 {
917   myBelongToGeomPtr->SetGeom( theShape );
918 }
919
920 void BelongToGeom_i::SetElementType(ElementType theType){
921   myBelongToGeomPtr->SetType(SMDSAbs_ElementType(theType));
922   TPythonDump()<<this<<".SetElementType("<<theType<<")";
923 }
924
925 FunctorType BelongToGeom_i::GetFunctorType()
926 {
927   return SMESH::FT_BelongToGeom;
928 }
929
930 void BelongToGeom_i::SetShapeName( const char* theName )
931 {
932   delete myShapeName;
933   myShapeName = strdup( theName );
934   myBelongToGeomPtr->SetGeom( getShapeByName( myShapeName ) );
935   TPythonDump()<<this<<".SetShapeName('"<<theName<<"')";
936 }
937
938 void BelongToGeom_i::SetShape( const char* theID, const char* theName )
939 {
940   delete myShapeName;
941   myShapeName = strdup( theName );
942   delete myShapeID;
943   if ( theID )
944     myShapeID = strdup( theID );
945   else
946     myShapeID = 0;
947
948   if ( myShapeID && strcmp(myShapeName, getShapeNameByID(myShapeID)) == 0 )
949     myBelongToGeomPtr->SetGeom( getShapeByID(myShapeID) );
950   else
951     myBelongToGeomPtr->SetGeom( getShapeByName( myShapeName ) );
952 }
953
954 char* BelongToGeom_i::GetShapeName()
955 {
956   return CORBA::string_dup( myShapeName );
957 }
958
959 char* BelongToGeom_i::GetShapeID()
960 {
961   return CORBA::string_dup( myShapeID );
962 }
963
964 void BelongToGeom_i::SetTolerance( CORBA::Double theToler )
965 {
966   myBelongToGeomPtr->SetTolerance( theToler );
967   TPythonDump()<<this<<".SetTolerance("<<theToler<<")";
968 }
969
970 CORBA::Double BelongToGeom_i::GetTolerance()
971 {
972   return myBelongToGeomPtr->GetTolerance();
973 }
974
975 /*
976   Class       : BelongToSurface_i
977   Description : Predicate for selection on geometrical support
978 */
979 BelongToSurface_i::BelongToSurface_i( const Handle(Standard_Type)& theSurfaceType )
980 {
981   myElementsOnSurfacePtr.reset( new Controls::ElementsOnSurface() );
982   myFunctorPtr = myPredicatePtr = myElementsOnSurfacePtr;
983   myShapeName = 0;
984   myShapeID   = 0;
985   mySurfaceType = theSurfaceType;
986 }
987
988 BelongToSurface_i::~BelongToSurface_i()
989 {
990   delete myShapeName;
991   delete myShapeID;
992 }
993
994 void BelongToSurface_i::SetSurface( GEOM::GEOM_Object_ptr theGeom, ElementType theType )
995 {
996   if ( theGeom->_is_nil() )
997     return;
998   SMESH_Gen_i* aSMESHGen = SMESH_Gen_i::GetSMESHGen();
999   GEOM::GEOM_Gen_ptr aGEOMGen = SMESH_Gen_i::GetGeomEngine();
1000   TopoDS_Shape aLocShape = aSMESHGen->GetShapeReader()->GetShape( aGEOMGen, theGeom );
1001
1002   if ( aLocShape.ShapeType() == TopAbs_FACE )
1003   {
1004     Handle(Geom_Surface) aSurf = BRep_Tool::Surface( TopoDS::Face( aLocShape ) );
1005     if ( !aSurf.IsNull() && aSurf->DynamicType() == mySurfaceType )
1006     {
1007       myElementsOnSurfacePtr->SetSurface( aLocShape, (SMDSAbs_ElementType)theType );
1008       return;
1009     }
1010   }
1011
1012   myElementsOnSurfacePtr->SetSurface( TopoDS_Shape(), (SMDSAbs_ElementType)theType );
1013 }
1014
1015 void BelongToSurface_i::SetShapeName( const char* theName, ElementType theType )
1016 {
1017   delete myShapeName;
1018   myShapeName = strdup( theName );
1019   myElementsOnSurfacePtr->SetSurface( getShapeByName( myShapeName ), (SMDSAbs_ElementType)theType );
1020   TPythonDump()<<this<<".SetShapeName('"<<theName<<"',"<<theType<<")";
1021 }
1022
1023 void BelongToSurface_i::SetShape( const char* theID,  const char* theName, ElementType theType )
1024 {
1025   delete myShapeName;
1026   myShapeName = strdup( theName );
1027   delete myShapeID;
1028   if ( theID )
1029     myShapeID = strdup( theID );
1030   else
1031     myShapeID = 0;
1032   
1033   if ( myShapeID && strcmp(myShapeName, getShapeNameByID(myShapeID)) == 0 )
1034     myElementsOnSurfacePtr->SetSurface( getShapeByID(myShapeID), (SMDSAbs_ElementType)theType );
1035   else
1036     myElementsOnSurfacePtr->SetSurface( getShapeByName( myShapeName ), (SMDSAbs_ElementType)theType );
1037 }
1038
1039 char* BelongToSurface_i::GetShapeName()
1040 {
1041   return CORBA::string_dup( myShapeName );
1042 }
1043
1044 char* BelongToSurface_i::GetShapeID()
1045 {
1046   return CORBA::string_dup( myShapeID );
1047 }
1048
1049 void BelongToSurface_i::SetTolerance( CORBA::Double theToler )
1050 {
1051   myElementsOnSurfacePtr->SetTolerance( theToler );
1052   TPythonDump()<<this<<".SetTolerance("<<theToler<<")";
1053 }
1054
1055 CORBA::Double BelongToSurface_i::GetTolerance()
1056 {
1057   return myElementsOnSurfacePtr->GetTolerance();
1058 }
1059
1060 void BelongToSurface_i::SetUseBoundaries( CORBA::Boolean theUseBndRestrictions )
1061 {
1062   myElementsOnSurfacePtr->SetUseBoundaries( theUseBndRestrictions );
1063   TPythonDump()<<this<<".SetUseBoundaries( " << theUseBndRestrictions << " )";
1064 }
1065
1066 CORBA::Boolean BelongToSurface_i::GetUseBoundaries()
1067 {
1068   return myElementsOnSurfacePtr->GetUseBoundaries();
1069 }
1070
1071
1072 /*
1073   Class       : BelongToPlane_i
1074   Description : Verify whether mesh element lie in pointed Geom planar object
1075 */
1076
1077 BelongToPlane_i::BelongToPlane_i()
1078 : BelongToSurface_i( STANDARD_TYPE( Geom_Plane ) )
1079 {
1080 }
1081
1082 void BelongToPlane_i::SetPlane( GEOM::GEOM_Object_ptr theGeom, ElementType theType )
1083 {
1084   BelongToSurface_i::SetSurface( theGeom, theType );
1085   TPythonDump()<<this<<".SetPlane("<<theGeom<<","<<theType<<")";
1086 }
1087
1088 FunctorType BelongToPlane_i::GetFunctorType()
1089 {
1090   return FT_BelongToPlane;
1091 }
1092
1093 /*
1094   Class       : BelongToCylinder_i
1095   Description : Verify whether mesh element lie in pointed Geom planar object
1096 */
1097
1098 BelongToCylinder_i::BelongToCylinder_i()
1099 : BelongToSurface_i( STANDARD_TYPE( Geom_CylindricalSurface ) )
1100 {
1101 }
1102
1103 void BelongToCylinder_i::SetCylinder( GEOM::GEOM_Object_ptr theGeom, ElementType theType )
1104 {
1105   BelongToSurface_i::SetSurface( theGeom, theType );
1106   TPythonDump()<<this<<".SetCylinder("<<theGeom<<","<<theType<<")";
1107 }
1108
1109 FunctorType BelongToCylinder_i::GetFunctorType()
1110 {
1111   return FT_BelongToCylinder;
1112 }
1113
1114 /*
1115   Class       : BelongToGenSurface_i
1116   Description : Verify whether mesh element lie in pointed Geom planar object
1117 */
1118
1119 BelongToGenSurface_i::BelongToGenSurface_i()
1120 : BelongToSurface_i( STANDARD_TYPE( Geom_CylindricalSurface ) )
1121 {
1122 }
1123
1124 void BelongToGenSurface_i::SetSurface( GEOM::GEOM_Object_ptr theGeom, ElementType theType )
1125 {
1126   if ( theGeom->_is_nil() )
1127     return;
1128   TopoDS_Shape aLocShape = SMESH_Gen_i::GetSMESHGen()->GeomObjectToShape( theGeom );
1129   if ( !aLocShape.IsNull() && aLocShape.ShapeType() != TopAbs_FACE )
1130     aLocShape.Nullify();
1131   
1132   BelongToSurface_i::myElementsOnSurfacePtr->SetSurface( aLocShape, (SMDSAbs_ElementType)theType );
1133   TPythonDump()<<this<<".SetGenSurface("<<theGeom<<","<<theType<<")";
1134 }
1135
1136 FunctorType BelongToGenSurface_i::GetFunctorType()
1137 {
1138   return FT_BelongToGenSurface;
1139 }
1140
1141 /*
1142   Class       : LyingOnGeom_i
1143   Description : Predicate for selection on geometrical support
1144 */
1145 LyingOnGeom_i::LyingOnGeom_i()
1146 {
1147   myLyingOnGeomPtr.reset( new Controls::LyingOnGeom() );
1148   myFunctorPtr = myPredicatePtr = myLyingOnGeomPtr;
1149   myShapeName = 0;
1150   myShapeID = 0;
1151 }
1152
1153 LyingOnGeom_i::~LyingOnGeom_i()
1154 {
1155   delete myShapeName;
1156   delete myShapeID;
1157 }
1158
1159 void LyingOnGeom_i::SetGeom( GEOM::GEOM_Object_ptr theGeom )
1160 {
1161   if ( theGeom->_is_nil() )
1162     return;
1163   SMESH_Gen_i* aSMESHGen = SMESH_Gen_i::GetSMESHGen();
1164   GEOM::GEOM_Gen_ptr aGEOMGen = SMESH_Gen_i::GetGeomEngine();
1165   TopoDS_Shape aLocShape = aSMESHGen->GetShapeReader()->GetShape( aGEOMGen, theGeom );
1166   myLyingOnGeomPtr->SetGeom( aLocShape );
1167   TPythonDump()<<this<<".SetGeom("<<theGeom<<")";
1168 }
1169
1170 void LyingOnGeom_i::SetGeom( const TopoDS_Shape& theShape )
1171 {
1172   myLyingOnGeomPtr->SetGeom( theShape );
1173 }
1174
1175 void LyingOnGeom_i::SetElementType(ElementType theType){
1176   myLyingOnGeomPtr->SetType(SMDSAbs_ElementType(theType));
1177   TPythonDump()<<this<<".SetElementType("<<theType<<")";
1178 }
1179
1180 FunctorType LyingOnGeom_i::GetFunctorType()
1181 {
1182   return SMESH::FT_LyingOnGeom;
1183 }
1184
1185 void LyingOnGeom_i::SetShapeName( const char* theName )
1186 {
1187   delete myShapeName;
1188   myShapeName = strdup( theName );
1189   myLyingOnGeomPtr->SetGeom( getShapeByName( myShapeName ) );
1190   TPythonDump()<<this<<".SetShapeName('"<<theName<<"')";
1191 }
1192
1193 void LyingOnGeom_i::SetShape( const char* theID, const char* theName )
1194 {
1195   delete myShapeName;
1196   myShapeName = strdup( theName );
1197   delete myShapeID;
1198   if ( theID )
1199     myShapeID = strdup( theID );
1200   else
1201     myShapeID = 0;
1202   
1203   if ( myShapeID && strcmp(myShapeName, getShapeNameByID(myShapeID)) == 0 )
1204     myLyingOnGeomPtr->SetGeom( getShapeByID(myShapeID) );
1205   else
1206     myLyingOnGeomPtr->SetGeom( getShapeByName( myShapeName ) );
1207 }
1208
1209 char* LyingOnGeom_i::GetShapeName()
1210 {
1211   return CORBA::string_dup( myShapeName );
1212 }
1213
1214 char* LyingOnGeom_i::GetShapeID()
1215 {
1216   return CORBA::string_dup( myShapeID );
1217 }
1218
1219 void LyingOnGeom_i::SetTolerance( CORBA::Double theToler )
1220 {
1221   myLyingOnGeomPtr->SetTolerance( theToler );
1222   TPythonDump()<<this<<".SetTolerance("<<theToler<<")";
1223 }
1224
1225 CORBA::Double LyingOnGeom_i::GetTolerance()
1226 {
1227   return myLyingOnGeomPtr->GetTolerance();
1228 }
1229
1230 /*
1231   Class       : FreeBorders_i
1232   Description : Predicate for free borders
1233 */
1234 FreeBorders_i::FreeBorders_i()
1235 {
1236   myPredicatePtr.reset(new Controls::FreeBorders());
1237   myFunctorPtr = myPredicatePtr;
1238 }
1239
1240 FunctorType FreeBorders_i::GetFunctorType()
1241 {
1242   return SMESH::FT_FreeBorders;
1243 }
1244
1245 /*
1246   Class       : FreeEdges_i
1247   Description : Predicate for free borders
1248 */
1249 FreeEdges_i::FreeEdges_i()
1250 : myFreeEdgesPtr( new Controls::FreeEdges() )
1251 {
1252   myFunctorPtr = myPredicatePtr = myFreeEdgesPtr;
1253 }
1254
1255 SMESH::FreeEdges::Borders* FreeEdges_i::GetBorders()
1256 {
1257   INFOS("FreeEdges_i::GetBorders");
1258   SMESH::Controls::FreeEdges::TBorders aBorders;
1259   myFreeEdgesPtr->GetBoreders( aBorders );
1260
1261   long i = 0, iEnd = aBorders.size();
1262
1263   SMESH::FreeEdges::Borders_var aResult = new SMESH::FreeEdges::Borders;
1264   aResult->length(iEnd);
1265
1266   SMESH::Controls::FreeEdges::TBorders::const_iterator anIter;
1267   for ( anIter = aBorders.begin() ; anIter != aBorders.end(); anIter++, i++ )
1268   {
1269     const SMESH::Controls::FreeEdges::Border&  aBord = *anIter;
1270     SMESH::FreeEdges::Border &aBorder = aResult[ i ];
1271
1272     aBorder.myElemId = aBord.myElemId;
1273     aBorder.myPnt1 = aBord.myPntId[ 0 ];
1274     aBorder.myPnt2 = aBord.myPntId[ 1 ];
1275   }
1276
1277   INFOS("FreeEdges_i::GetBorders~");
1278   return aResult._retn();
1279 }
1280
1281 FunctorType FreeEdges_i::GetFunctorType()
1282 {
1283   return SMESH::FT_FreeEdges;
1284 }
1285
1286 /*
1287   Class       : FreeFaces_i
1288   Description : Predicate for free faces
1289 */
1290 FreeFaces_i::FreeFaces_i()
1291 {
1292   myPredicatePtr.reset(new Controls::FreeFaces());
1293   myFunctorPtr = myPredicatePtr;
1294 }
1295
1296 FunctorType FreeFaces_i::GetFunctorType()
1297 {
1298   return SMESH::FT_FreeFaces;
1299 }
1300
1301 /*
1302   Class       : FreeNodes_i
1303   Description : Predicate for free nodes
1304 */
1305 FreeNodes_i::FreeNodes_i()
1306 {
1307   myPredicatePtr.reset(new Controls::FreeNodes());
1308   myFunctorPtr = myPredicatePtr;
1309 }
1310
1311 FunctorType FreeNodes_i::GetFunctorType()
1312 {
1313   return SMESH::FT_FreeNodes;
1314 }
1315
1316 /*
1317   Class       : RangeOfIds_i
1318   Description : Predicate for Range of Ids.
1319                 Range may be specified with two ways.
1320                 1. Using AddToRange method
1321                 2. With SetRangeStr method. Parameter of this method is a string
1322                    like as "1,2,3,50-60,63,67,70-"
1323 */
1324
1325 RangeOfIds_i::RangeOfIds_i()
1326 {
1327   myRangeOfIdsPtr.reset( new Controls::RangeOfIds() );
1328   myFunctorPtr = myPredicatePtr = myRangeOfIdsPtr;
1329 }
1330
1331 void RangeOfIds_i::SetRange( const SMESH::long_array& theIds )
1332 {
1333   CORBA::Long iEnd = theIds.length();
1334   for ( CORBA::Long i = 0; i < iEnd; i++ )
1335     myRangeOfIdsPtr->AddToRange( theIds[ i ] );
1336   TPythonDump()<<this<<".SetRange("<<theIds<<")";
1337 }
1338
1339 CORBA::Boolean RangeOfIds_i::SetRangeStr( const char* theRange )
1340 {
1341   TPythonDump()<<this<<".SetRangeStr('"<<theRange<<"')";
1342   return myRangeOfIdsPtr->SetRangeStr(
1343     TCollection_AsciiString( (Standard_CString)theRange ) );
1344 }
1345
1346 char* RangeOfIds_i::GetRangeStr()
1347 {
1348   TCollection_AsciiString aStr;
1349   myRangeOfIdsPtr->GetRangeStr( aStr );
1350   return CORBA::string_dup( aStr.ToCString() );
1351 }
1352
1353 void RangeOfIds_i::SetElementType( ElementType theType )
1354 {
1355   myRangeOfIdsPtr->SetType( SMDSAbs_ElementType( theType ) );
1356   TPythonDump()<<this<<".SetElementType("<<theType<<")";
1357 }
1358
1359 FunctorType RangeOfIds_i::GetFunctorType()
1360 {
1361   return SMESH::FT_RangeOfIds;
1362 }
1363
1364 /*
1365   Class       : LinearOrQuadratic_i
1366   Description : Predicate to verify whether a mesh element is linear
1367 */
1368 LinearOrQuadratic_i::LinearOrQuadratic_i()
1369 {
1370   myLinearOrQuadraticPtr.reset(new Controls::LinearOrQuadratic());
1371   myFunctorPtr = myPredicatePtr = myLinearOrQuadraticPtr;
1372 }
1373
1374 void LinearOrQuadratic_i::SetElementType(ElementType theType)
1375 {
1376   myLinearOrQuadraticPtr->SetType(SMDSAbs_ElementType(theType));
1377   TPythonDump()<<this<<".SetElementType("<<theType<<")";
1378 }
1379
1380 FunctorType LinearOrQuadratic_i::GetFunctorType()
1381 {
1382   return SMESH::FT_LinearOrQuadratic;
1383 }
1384
1385 /*
1386   Class       : GroupColor_i
1387   Description : Functor for check color of group to whic mesh element belongs to
1388 */
1389 GroupColor_i::GroupColor_i()
1390 {
1391   myGroupColorPtr.reset(new Controls::GroupColor());
1392   myFunctorPtr = myPredicatePtr = myGroupColorPtr;
1393 }
1394
1395 FunctorType GroupColor_i::GetFunctorType()
1396 {
1397   return SMESH::FT_GroupColor;
1398 }
1399
1400 void GroupColor_i::SetColorStr( const char* theColor )
1401 {
1402   myGroupColorPtr->SetColorStr(
1403     TCollection_AsciiString( (Standard_CString)theColor ) );
1404   TPythonDump()<<this<<".SetColorStr('"<<theColor<<"')";
1405 }
1406
1407 char* GroupColor_i::GetColorStr()
1408 {
1409   TCollection_AsciiString aStr;
1410   myGroupColorPtr->GetColorStr( aStr );
1411   return CORBA::string_dup( aStr.ToCString() );
1412 }
1413
1414 void GroupColor_i::SetElementType(ElementType theType)
1415 {
1416   myGroupColorPtr->SetType(SMDSAbs_ElementType(theType));
1417   TPythonDump()<<this<<".SetElementType("<<theType<<")";
1418 }
1419
1420 /*
1421   Class       : ElemGeomType_i
1422   Description : Predicate check is element has indicated geometry type
1423 */
1424 ElemGeomType_i::ElemGeomType_i()
1425 {
1426   myElemGeomTypePtr.reset(new Controls::ElemGeomType());
1427   myFunctorPtr = myPredicatePtr = myElemGeomTypePtr;
1428 }
1429
1430 void ElemGeomType_i::SetElementType(ElementType theType)
1431 {
1432   myElemGeomTypePtr->SetType(SMDSAbs_ElementType(theType));
1433   TPythonDump()<<this<<".SetElementType("<<theType<<")";
1434 }
1435
1436 void ElemGeomType_i::SetGeometryType(GeometryType theType)
1437 {
1438   myElemGeomTypePtr->SetGeomType(SMDSAbs_GeometryType(theType));
1439   TPythonDump()<<this<<".SetGeometryType("<<theType<<")";
1440 }
1441
1442 GeometryType ElemGeomType_i::GetGeometryType() const
1443 {
1444   return (GeometryType)myElemGeomTypePtr->GetGeomType();;
1445 }
1446
1447 FunctorType ElemGeomType_i::GetFunctorType()
1448 {
1449   return SMESH::FT_ElemGeomType;
1450 }
1451
1452 /*
1453   Class       : Comparator_i
1454   Description : Base class for comparators
1455 */
1456 Comparator_i::Comparator_i():
1457   myNumericalFunctor( NULL )
1458 {}
1459
1460 Comparator_i::~Comparator_i()
1461 {
1462   if ( myNumericalFunctor )
1463     myNumericalFunctor->Destroy();
1464 }
1465
1466 void Comparator_i::SetMargin( CORBA::Double theValue )
1467 {
1468   myComparatorPtr->SetMargin( theValue );
1469   TPythonDump()<<this<<".SetMargin("<<theValue<<")";
1470 }
1471
1472 CORBA::Double Comparator_i::GetMargin()
1473 {
1474   return myComparatorPtr->GetMargin();
1475 }
1476
1477 void Comparator_i::SetNumFunctor( NumericalFunctor_ptr theFunct )
1478 {
1479   if ( myNumericalFunctor )
1480     myNumericalFunctor->Destroy();
1481
1482   myNumericalFunctor = DownCast<NumericalFunctor_i*>(theFunct);
1483
1484   if ( myNumericalFunctor )
1485   {
1486     myComparatorPtr->SetNumFunctor( myNumericalFunctor->GetNumericalFunctor() );
1487     myNumericalFunctor->Register();
1488     TPythonDump()<<this<<".SetNumFunctor("<<myNumericalFunctor<<")";
1489   }
1490 }
1491
1492 Controls::ComparatorPtr Comparator_i::GetComparator()
1493 {
1494   return myComparatorPtr;
1495 }
1496
1497 NumericalFunctor_i* Comparator_i::GetNumFunctor_i()
1498 {
1499   return myNumericalFunctor;
1500 }
1501
1502
1503 /*
1504   Class       : LessThan_i
1505   Description : Comparator "<"
1506 */
1507 LessThan_i::LessThan_i()
1508 {
1509   myComparatorPtr.reset( new Controls::LessThan() );
1510   myFunctorPtr = myPredicatePtr = myComparatorPtr;
1511 }
1512
1513 FunctorType LessThan_i::GetFunctorType()
1514 {
1515   return SMESH::FT_LessThan;
1516 }
1517
1518
1519 /*
1520   Class       : MoreThan_i
1521   Description : Comparator ">"
1522 */
1523 MoreThan_i::MoreThan_i()
1524 {
1525   myComparatorPtr.reset( new Controls::MoreThan() );
1526   myFunctorPtr = myPredicatePtr = myComparatorPtr;
1527 }
1528
1529 FunctorType MoreThan_i::GetFunctorType()
1530 {
1531   return SMESH::FT_MoreThan;
1532 }
1533
1534
1535 /*
1536   Class       : EqualTo_i
1537   Description : Comparator "="
1538 */
1539 EqualTo_i::EqualTo_i()
1540 : myEqualToPtr( new Controls::EqualTo() )
1541 {
1542   myFunctorPtr = myPredicatePtr = myComparatorPtr = myEqualToPtr;
1543 }
1544
1545 void EqualTo_i::SetTolerance( CORBA::Double theToler )
1546 {
1547   myEqualToPtr->SetTolerance( theToler );
1548   TPythonDump()<<this<<".SetTolerance("<<theToler<<")";
1549 }
1550
1551 CORBA::Double EqualTo_i::GetTolerance()
1552 {
1553   return myEqualToPtr->GetTolerance();
1554 }
1555
1556 FunctorType EqualTo_i::GetFunctorType()
1557 {
1558   return SMESH::FT_EqualTo;
1559 }
1560
1561 /*
1562   Class       : LogicalNOT_i
1563   Description : Logical NOT predicate
1564 */
1565 LogicalNOT_i::LogicalNOT_i()
1566 : myPredicate( NULL ),
1567   myLogicalNOTPtr( new Controls::LogicalNOT() )
1568 {
1569   myFunctorPtr = myPredicatePtr = myLogicalNOTPtr;
1570 }
1571
1572 LogicalNOT_i::~LogicalNOT_i()
1573 {
1574   if ( myPredicate )
1575     myPredicate->Destroy();
1576 }
1577
1578 void LogicalNOT_i::SetPredicate( Predicate_ptr thePredicate )
1579 {
1580   if ( myPredicate )
1581     myPredicate->Destroy();
1582
1583   myPredicate = SMESH::GetPredicate(thePredicate);
1584
1585   if ( myPredicate ){
1586     myLogicalNOTPtr->SetPredicate(myPredicate->GetPredicate());
1587     myPredicate->Register();
1588     TPythonDump()<<this<<".SetPredicate("<<myPredicate<<")";
1589   }
1590 }
1591
1592 FunctorType LogicalNOT_i::GetFunctorType()
1593 {
1594   return SMESH::FT_LogicalNOT;
1595 }
1596
1597 Predicate_i* LogicalNOT_i::GetPredicate_i()
1598 {
1599   return myPredicate;
1600 }
1601
1602
1603 /*
1604   Class       : LogicalBinary_i
1605   Description : Base class for binary logical predicate
1606 */
1607 LogicalBinary_i::LogicalBinary_i()
1608 : myPredicate1( NULL ),
1609   myPredicate2( NULL )
1610 {}
1611
1612 LogicalBinary_i::~LogicalBinary_i()
1613 {
1614   if ( myPredicate1 )
1615     myPredicate1->Destroy();
1616
1617   if ( myPredicate2 )
1618     myPredicate2->Destroy();
1619 }
1620
1621 void LogicalBinary_i::SetMesh( SMESH_Mesh_ptr theMesh )
1622 {
1623   if ( myPredicate1 )
1624     myPredicate1->SetMesh( theMesh );
1625
1626   if ( myPredicate2 )
1627     myPredicate2->SetMesh( theMesh );
1628 }
1629
1630 void LogicalBinary_i::SetPredicate1( Predicate_ptr thePredicate )
1631 {
1632   if ( myPredicate1 )
1633     myPredicate1->Destroy();
1634
1635   myPredicate1 = SMESH::GetPredicate(thePredicate);
1636
1637   if ( myPredicate1 ){
1638     myLogicalBinaryPtr->SetPredicate1(myPredicate1->GetPredicate());
1639     myPredicate1->Register();
1640     TPythonDump()<<this<<".SetPredicate1("<<myPredicate1<<")";
1641   }
1642 }
1643
1644 void LogicalBinary_i::SetPredicate2( Predicate_ptr thePredicate )
1645 {
1646   if ( myPredicate2 )
1647     myPredicate2->Destroy();
1648
1649   myPredicate2 = SMESH::GetPredicate(thePredicate);
1650
1651   if ( myPredicate2 ){
1652     myLogicalBinaryPtr->SetPredicate2(myPredicate2->GetPredicate());
1653     myPredicate2->Register();
1654     TPythonDump()<<this<<".SetPredicate2("<<myPredicate2<<")";
1655   }
1656 }
1657
1658 Controls::LogicalBinaryPtr LogicalBinary_i::GetLogicalBinary()
1659 {
1660   return myLogicalBinaryPtr;
1661 }
1662
1663 Predicate_i* LogicalBinary_i::GetPredicate1_i()
1664 {
1665   return myPredicate1;
1666 }
1667 Predicate_i* LogicalBinary_i::GetPredicate2_i()
1668 {
1669   return myPredicate2;
1670 }
1671
1672
1673 /*
1674   Class       : LogicalAND_i
1675   Description : Logical AND
1676 */
1677 LogicalAND_i::LogicalAND_i()
1678 {
1679   myLogicalBinaryPtr.reset( new Controls::LogicalAND() );
1680   myFunctorPtr = myPredicatePtr = myLogicalBinaryPtr;
1681 }
1682
1683 FunctorType LogicalAND_i::GetFunctorType()
1684 {
1685   return SMESH::FT_LogicalAND;
1686 }
1687
1688
1689 /*
1690   Class       : LogicalOR_i
1691   Description : Logical OR
1692 */
1693 LogicalOR_i::LogicalOR_i()
1694 {
1695   myLogicalBinaryPtr.reset( new Controls::LogicalOR() );
1696   myFunctorPtr = myPredicatePtr = myLogicalBinaryPtr;
1697 }
1698
1699 FunctorType LogicalOR_i::GetFunctorType()
1700 {
1701   return SMESH::FT_LogicalOR;
1702 }
1703
1704
1705 /*
1706                             FILTER MANAGER
1707 */
1708
1709 FilterManager_i::FilterManager_i()
1710 : SALOME::GenericObj_i( SMESH_Gen_i::GetPOA() )
1711 {
1712   //Base class Salome_GenericObject do it inmplicitly by overriding PortableServer::POA_ptr _default_POA() method
1713   //PortableServer::ObjectId_var anObjectId =
1714   //  SMESH_Gen_i::GetPOA()->activate_object( this );
1715 }
1716
1717
1718 FilterManager_i::~FilterManager_i()
1719 {
1720   //TPythonDump()<<this<<".Destroy()";
1721 }
1722
1723
1724 MinimumAngle_ptr FilterManager_i::CreateMinimumAngle()
1725 {
1726   SMESH::MinimumAngle_i* aServant = new SMESH::MinimumAngle_i();
1727   SMESH::MinimumAngle_var anObj = aServant->_this();
1728   TPythonDump()<<aServant<<" = "<<this<<".CreateMinimumAngle()";
1729   return anObj._retn();
1730 }
1731
1732
1733 AspectRatio_ptr FilterManager_i::CreateAspectRatio()
1734 {
1735   SMESH::AspectRatio_i* aServant = new SMESH::AspectRatio_i();
1736   SMESH::AspectRatio_var anObj = aServant->_this();
1737   TPythonDump()<<aServant<<" = "<<this<<".CreateAspectRatio()";
1738   return anObj._retn();
1739 }
1740
1741
1742 AspectRatio3D_ptr FilterManager_i::CreateAspectRatio3D()
1743 {
1744   SMESH::AspectRatio3D_i* aServant = new SMESH::AspectRatio3D_i();
1745   SMESH::AspectRatio3D_var anObj = aServant->_this();
1746   TPythonDump()<<aServant<<" = "<<this<<".CreateAspectRatio3D()";
1747   return anObj._retn();
1748 }
1749
1750
1751 Warping_ptr FilterManager_i::CreateWarping()
1752 {
1753   SMESH::Warping_i* aServant = new SMESH::Warping_i();
1754   SMESH::Warping_var anObj = aServant->_this();
1755   TPythonDump()<<aServant<<" = "<<this<<".CreateWarping()";
1756   return anObj._retn();
1757 }
1758
1759
1760 Taper_ptr FilterManager_i::CreateTaper()
1761 {
1762   SMESH::Taper_i* aServant = new SMESH::Taper_i();
1763   SMESH::Taper_var anObj = aServant->_this();
1764   TPythonDump()<<aServant<<" = "<<this<<".CreateTaper()";
1765   return anObj._retn();
1766 }
1767
1768
1769 Skew_ptr FilterManager_i::CreateSkew()
1770 {
1771   SMESH::Skew_i* aServant = new SMESH::Skew_i();
1772   SMESH::Skew_var anObj = aServant->_this();
1773   TPythonDump()<<aServant<<" = "<<this<<".CreateSkew()";
1774   return anObj._retn();
1775 }
1776
1777
1778 Area_ptr FilterManager_i::CreateArea()
1779 {
1780   SMESH::Area_i* aServant = new SMESH::Area_i();
1781   SMESH::Area_var anObj = aServant->_this();
1782   TPythonDump()<<aServant<<" = "<<this<<".CreateArea()";
1783   return anObj._retn();
1784 }
1785
1786
1787 Volume3D_ptr FilterManager_i::CreateVolume3D()
1788 {
1789   SMESH::Volume3D_i* aServant = new SMESH::Volume3D_i();
1790   SMESH::Volume3D_var anObj = aServant->_this();
1791   TPythonDump()<<aServant<<" = "<<this<<".CreateVolume3D()";
1792   return anObj._retn();
1793 }
1794
1795
1796 Length_ptr FilterManager_i::CreateLength()
1797 {
1798   SMESH::Length_i* aServant = new SMESH::Length_i();
1799   SMESH::Length_var anObj = aServant->_this();
1800   TPythonDump()<<aServant<<" = "<<this<<".CreateLength()";
1801   return anObj._retn();
1802 }
1803
1804 Length2D_ptr FilterManager_i::CreateLength2D()
1805 {
1806   SMESH::Length2D_i* aServant = new SMESH::Length2D_i();
1807   SMESH::Length2D_var anObj = aServant->_this();
1808   TPythonDump()<<aServant<<" = "<<this<<".CreateLength2D()";
1809   return anObj._retn();
1810 }
1811
1812 MultiConnection_ptr FilterManager_i::CreateMultiConnection()
1813 {
1814   SMESH::MultiConnection_i* aServant = new SMESH::MultiConnection_i();
1815   SMESH::MultiConnection_var anObj = aServant->_this();
1816   TPythonDump()<<aServant<<" = "<<this<<".CreateMultiConnection()";
1817   return anObj._retn();
1818 }
1819
1820 MultiConnection2D_ptr FilterManager_i::CreateMultiConnection2D()
1821 {
1822   SMESH::MultiConnection2D_i* aServant = new SMESH::MultiConnection2D_i();
1823   SMESH::MultiConnection2D_var anObj = aServant->_this();
1824   TPythonDump()<<aServant<<" = "<<this<<".CreateMultiConnection2D()";
1825   return anObj._retn();
1826 }
1827
1828 BelongToGeom_ptr FilterManager_i::CreateBelongToGeom()
1829 {
1830   SMESH::BelongToGeom_i* aServant = new SMESH::BelongToGeom_i();
1831   SMESH::BelongToGeom_var anObj = aServant->_this();
1832   TPythonDump()<<aServant<<" = "<<this<<".CreateBelongToGeom()";
1833   return anObj._retn();
1834 }
1835
1836 BelongToPlane_ptr FilterManager_i::CreateBelongToPlane()
1837 {
1838   SMESH::BelongToPlane_i* aServant = new SMESH::BelongToPlane_i();
1839   SMESH::BelongToPlane_var anObj = aServant->_this();
1840   TPythonDump()<<aServant<<" = "<<this<<".CreateBelongToPlane()";
1841   return anObj._retn();
1842 }
1843
1844 BelongToCylinder_ptr FilterManager_i::CreateBelongToCylinder()
1845 {
1846   SMESH::BelongToCylinder_i* aServant = new SMESH::BelongToCylinder_i();
1847   SMESH::BelongToCylinder_var anObj = aServant->_this();
1848   TPythonDump()<<aServant<<" = "<<this<<".CreateBelongToCylinder()";
1849   return anObj._retn();
1850 }
1851
1852 BelongToGenSurface_ptr FilterManager_i::CreateBelongToGenSurface()
1853 {
1854   SMESH::BelongToGenSurface_i* aServant = new SMESH::BelongToGenSurface_i();
1855   SMESH::BelongToGenSurface_var anObj = aServant->_this();
1856   TPythonDump()<<aServant<<" = "<<this<<".CreateBelongToGenSurface()";
1857   return anObj._retn();
1858 }
1859
1860 LyingOnGeom_ptr FilterManager_i::CreateLyingOnGeom()
1861 {
1862   SMESH::LyingOnGeom_i* aServant = new SMESH::LyingOnGeom_i();
1863   SMESH::LyingOnGeom_var anObj = aServant->_this();
1864   TPythonDump()<<aServant<<" = "<<this<<".CreateLyingOnGeom()";
1865   return anObj._retn();
1866 }
1867
1868 FreeBorders_ptr FilterManager_i::CreateFreeBorders()
1869 {
1870   SMESH::FreeBorders_i* aServant = new SMESH::FreeBorders_i();
1871   SMESH::FreeBorders_var anObj = aServant->_this();
1872   TPythonDump()<<aServant<<" = "<<this<<".CreateFreeBorders()";
1873   return anObj._retn();
1874 }
1875
1876 FreeEdges_ptr FilterManager_i::CreateFreeEdges()
1877 {
1878   SMESH::FreeEdges_i* aServant = new SMESH::FreeEdges_i();
1879   SMESH::FreeEdges_var anObj = aServant->_this();
1880   TPythonDump()<<aServant<<" = "<<this<<".CreateFreeEdges()";
1881   return anObj._retn();
1882 }
1883
1884 FreeFaces_ptr FilterManager_i::CreateFreeFaces()
1885 {
1886   SMESH::FreeFaces_i* aServant = new SMESH::FreeFaces_i();
1887   SMESH::FreeFaces_var anObj = aServant->_this();
1888   TPythonDump()<<aServant<<" = "<<this<<".CreateFreeFaces()";
1889   return anObj._retn();
1890 }
1891
1892 FreeNodes_ptr FilterManager_i::CreateFreeNodes()
1893 {
1894   SMESH::FreeNodes_i* aServant = new SMESH::FreeNodes_i();
1895   SMESH::FreeNodes_var anObj = aServant->_this();
1896   TPythonDump()<<aServant<<" = "<<this<<".CreateFreeNodes()";
1897   return anObj._retn();
1898 }
1899
1900 RangeOfIds_ptr FilterManager_i::CreateRangeOfIds()
1901 {
1902   SMESH::RangeOfIds_i* aServant = new SMESH::RangeOfIds_i();
1903   SMESH::RangeOfIds_var anObj = aServant->_this();
1904   TPythonDump()<<aServant<<" = "<<this<<".CreateRangeOfIds()";
1905   return anObj._retn();
1906 }
1907
1908 BadOrientedVolume_ptr FilterManager_i::CreateBadOrientedVolume()
1909 {
1910   SMESH::BadOrientedVolume_i* aServant = new SMESH::BadOrientedVolume_i();
1911   SMESH::BadOrientedVolume_var anObj = aServant->_this();
1912   TPythonDump()<<aServant<<" = "<<this<<".CreateBadOrientedVolume()";
1913   return anObj._retn();
1914 }
1915
1916 LessThan_ptr FilterManager_i::CreateLessThan()
1917 {
1918   SMESH::LessThan_i* aServant = new SMESH::LessThan_i();
1919   SMESH::LessThan_var anObj = aServant->_this();
1920   TPythonDump()<<aServant<<" = "<<this<<".CreateLessThan()";
1921   return anObj._retn();
1922 }
1923
1924 MoreThan_ptr FilterManager_i::CreateMoreThan()
1925 {
1926   SMESH::MoreThan_i* aServant = new SMESH::MoreThan_i();
1927   SMESH::MoreThan_var anObj = aServant->_this();
1928   TPythonDump()<<aServant<<" = "<<this<<".CreateMoreThan()";
1929   return anObj._retn();
1930 }
1931
1932 EqualTo_ptr FilterManager_i::CreateEqualTo()
1933 {
1934   SMESH::EqualTo_i* aServant = new SMESH::EqualTo_i();
1935   SMESH::EqualTo_var anObj = aServant->_this();
1936   TPythonDump()<<aServant<<" = "<<this<<".CreateEqualTo()";
1937   return anObj._retn();
1938 }
1939
1940 LogicalNOT_ptr FilterManager_i::CreateLogicalNOT()
1941 {
1942   SMESH::LogicalNOT_i* aServant = new SMESH::LogicalNOT_i();
1943   SMESH::LogicalNOT_var anObj = aServant->_this();
1944   TPythonDump()<<aServant<<" = "<<this<<".CreateLogicalNOT()";
1945   return anObj._retn();
1946 }
1947
1948 LogicalAND_ptr FilterManager_i::CreateLogicalAND()
1949 {
1950   SMESH::LogicalAND_i* aServant = new SMESH::LogicalAND_i();
1951   SMESH::LogicalAND_var anObj = aServant->_this();
1952   TPythonDump()<<aServant<<" = "<<this<<".CreateLogicalAND()";
1953   return anObj._retn();
1954 }
1955
1956 LogicalOR_ptr FilterManager_i::CreateLogicalOR()
1957 {
1958   SMESH::LogicalOR_i* aServant = new SMESH::LogicalOR_i();
1959   SMESH::LogicalOR_var anObj = aServant->_this();
1960   TPythonDump()<<aServant<<" = "<<this<<".CreateLogicalOR()";
1961   return anObj._retn();
1962 }
1963
1964 LinearOrQuadratic_ptr FilterManager_i::CreateLinearOrQuadratic()
1965 {
1966   SMESH::LinearOrQuadratic_i* aServant = new SMESH::LinearOrQuadratic_i();
1967   SMESH::LinearOrQuadratic_var anObj = aServant->_this();
1968   TPythonDump()<<aServant<<" = "<<this<<".CreateLinearOrQuadratic()";
1969   return anObj._retn();
1970 }
1971
1972 GroupColor_ptr FilterManager_i::CreateGroupColor()
1973 {
1974   SMESH::GroupColor_i* aServant = new SMESH::GroupColor_i();
1975   SMESH::GroupColor_var anObj = aServant->_this();
1976   TPythonDump()<<aServant<<" = "<<this<<".CreateGroupColor()";
1977   return anObj._retn();
1978 }
1979
1980 ElemGeomType_ptr FilterManager_i::CreateElemGeomType()
1981 {
1982   SMESH::ElemGeomType_i* aServant = new SMESH::ElemGeomType_i();
1983   SMESH::ElemGeomType_var anObj = aServant->_this();
1984   TPythonDump()<<aServant<<" = "<<this<<".CreateElemGeomType()";
1985   return anObj._retn();
1986 }
1987
1988 Filter_ptr FilterManager_i::CreateFilter()
1989 {
1990   SMESH::Filter_i* aServant = new SMESH::Filter_i();
1991   SMESH::Filter_var anObj = aServant->_this();
1992   TPythonDump()<<aServant<<" = "<<this<<".CreateFilter()";
1993   return anObj._retn();
1994 }
1995
1996 FilterLibrary_ptr FilterManager_i::LoadLibrary( const char* aFileName )
1997 {
1998   SMESH::FilterLibrary_i* aServant = new SMESH::FilterLibrary_i( aFileName );
1999   SMESH::FilterLibrary_var anObj = aServant->_this();
2000   TPythonDump()<<aServant<<" = "<<this<<".LoadLibrary('"<<aFileName<<"')";
2001   return anObj._retn();
2002 }
2003
2004 FilterLibrary_ptr FilterManager_i::CreateLibrary()
2005 {
2006   SMESH::FilterLibrary_i* aServant = new SMESH::FilterLibrary_i();
2007   SMESH::FilterLibrary_var anObj = aServant->_this();
2008   TPythonDump()<<aServant<<" = "<<this<<".CreateLibrary()";
2009   return anObj._retn();
2010 }
2011
2012 CORBA::Boolean FilterManager_i::DeleteLibrary( const char* aFileName )
2013 {
2014   TPythonDump()<<this<<".DeleteLibrary("<<aFileName<<")";
2015   return remove( aFileName ) ? false : true;
2016 }
2017
2018 //=============================================================================
2019 /*!
2020  *  SMESH_Gen_i::CreateFilterManager
2021  *
2022  *  Create filter manager
2023  */
2024 //=============================================================================
2025
2026 SMESH::FilterManager_ptr SMESH_Gen_i::CreateFilterManager()
2027 {
2028   SMESH::FilterManager_i* aFilter = new SMESH::FilterManager_i();
2029   SMESH::FilterManager_var anObj = aFilter->_this();
2030   return anObj._retn();
2031 }
2032
2033
2034 /*
2035                               FILTER
2036 */
2037
2038 //=======================================================================
2039 // name    : Filter_i::Filter_i
2040 // Purpose : Constructor
2041 //=======================================================================
2042 Filter_i::Filter_i()
2043 : myPredicate( NULL )
2044 {}
2045
2046 //=======================================================================
2047 // name    : Filter_i::~Filter_i
2048 // Purpose : Destructor
2049 //=======================================================================
2050 Filter_i::~Filter_i()
2051 {
2052   if ( myPredicate )
2053     myPredicate->Destroy();
2054
2055   if(!CORBA::is_nil(myMesh))
2056     myMesh->Destroy();
2057
2058   //TPythonDump()<<this<<".Destroy()";
2059 }
2060
2061 //=======================================================================
2062 // name    : Filter_i::SetPredicate
2063 // Purpose : Set predicate
2064 //=======================================================================
2065 void Filter_i::SetPredicate( Predicate_ptr thePredicate )
2066 {
2067   if ( myPredicate )
2068     myPredicate->Destroy();
2069
2070   myPredicate = SMESH::GetPredicate(thePredicate);
2071
2072   if ( myPredicate )
2073   {
2074     myFilter.SetPredicate( myPredicate->GetPredicate() );
2075     myPredicate->Register();
2076     TPythonDump()<<this<<".SetPredicate("<<myPredicate<<")";
2077   }
2078 }
2079
2080 //=======================================================================
2081 // name    : Filter_i::GetElementType
2082 // Purpose : Get entity type
2083 //=======================================================================
2084 SMESH::ElementType Filter_i::GetElementType()
2085 {
2086   return myPredicate != 0 ? myPredicate->GetElementType() : SMESH::ALL;
2087 }
2088
2089 //=======================================================================
2090 // name    : Filter_i::SetMesh
2091 // Purpose : Set mesh
2092 //=======================================================================
2093 void
2094 Filter_i::
2095 SetMesh( SMESH_Mesh_ptr theMesh )
2096 {
2097   if(!CORBA::is_nil(theMesh))
2098     theMesh->Register();
2099
2100   if(!CORBA::is_nil(myMesh))
2101     myMesh->Destroy();
2102
2103   myMesh = SMESH_Mesh::_duplicate( theMesh );
2104   TPythonDump()<<this<<".SetMesh("<<theMesh<<")";
2105 }
2106
2107 SMESH::long_array*
2108 Filter_i::
2109 GetIDs()
2110 {
2111   return GetElementsId(myMesh);
2112 }
2113
2114 //=======================================================================
2115 // name    : Filter_i::GetElementsId
2116 // Purpose : Get ids of entities
2117 //=======================================================================
2118 void
2119 Filter_i::
2120 GetElementsId( Predicate_i* thePredicate,
2121                const SMDS_Mesh* theMesh,
2122                Controls::Filter::TIdSequence& theSequence )
2123 {
2124   if (thePredicate)
2125     Controls::Filter::GetElementsId(theMesh,thePredicate->GetPredicate(),theSequence);
2126 }
2127
2128 void
2129 Filter_i::
2130 GetElementsId( Predicate_i* thePredicate,
2131                SMESH_Mesh_ptr theMesh,
2132                Controls::Filter::TIdSequence& theSequence )
2133 {
2134   if (thePredicate) 
2135     if(const SMDS_Mesh* aMesh = MeshPtr2SMDSMesh(theMesh))
2136       Controls::Filter::GetElementsId(aMesh,thePredicate->GetPredicate(),theSequence);
2137 }
2138
2139 SMESH::long_array*
2140 Filter_i::
2141 GetElementsId( SMESH_Mesh_ptr theMesh )
2142 {
2143   SMESH::long_array_var anArray = new SMESH::long_array;
2144   if(!CORBA::is_nil(theMesh) && myPredicate){
2145     Controls::Filter::TIdSequence aSequence;
2146     GetElementsId(myPredicate,theMesh,aSequence);
2147     long i = 0, iEnd = aSequence.size();
2148     anArray->length( iEnd );
2149     for ( ; i < iEnd; i++ )
2150       anArray[ i ] = aSequence[i];
2151   }
2152   return anArray._retn();
2153 }
2154
2155 template<class TElement, class TIterator, class TPredicate>
2156 static void collectMeshInfo(const TIterator& theItr,
2157                             TPredicate& thePred,
2158                             SMESH::long_array& theRes)
2159 {         
2160   if (!theItr)
2161     return;
2162   while (theItr->more()) {
2163     const SMDS_MeshElement* anElem = theItr->next();
2164     if ( thePred->IsSatisfy( anElem->GetID() ) )
2165       theRes[ anElem->GetEntityType() ]++;
2166   }
2167 }
2168
2169 //=============================================================================
2170 /*!
2171  * \brief Returns statistic of mesh elements
2172  */
2173 //=============================================================================
2174 SMESH::long_array* ::Filter_i::GetMeshInfo()
2175 {
2176   SMESH::long_array_var aRes = new SMESH::long_array();
2177   aRes->length(SMESH::Entity_Last);
2178   for (int i = SMESH::Entity_Node; i < SMESH::Entity_Last; i++)
2179     aRes[i] = 0;
2180
2181   if(!CORBA::is_nil(myMesh) && myPredicate) {
2182     const SMDS_Mesh* aMesh = MeshPtr2SMDSMesh(myMesh);
2183     SMDS_ElemIteratorPtr it;
2184     switch( GetElementType() )
2185     {
2186   case SMDSAbs_Node:
2187     collectMeshInfo<const SMDS_MeshNode*>(aMesh->nodesIterator(),myPredicate,aRes);
2188     break;
2189   case SMDSAbs_Edge:
2190     collectMeshInfo<const SMDS_MeshElement*>(aMesh->edgesIterator(),myPredicate,aRes);
2191     break;
2192   case SMDSAbs_Face:
2193     collectMeshInfo<const SMDS_MeshElement*>(aMesh->facesIterator(),myPredicate,aRes);
2194     break;
2195   case SMDSAbs_Volume:
2196     collectMeshInfo<const SMDS_MeshElement*>(aMesh->volumesIterator(),myPredicate,aRes);
2197     break;
2198   case SMDSAbs_All:
2199   default:
2200     collectMeshInfo<const SMDS_MeshElement*>(aMesh->elementsIterator(),myPredicate,aRes);
2201     break;
2202     }
2203   }
2204
2205
2206   return aRes._retn();  
2207 }
2208
2209 //=======================================================================
2210 // name    : getCriteria
2211 // Purpose : Retrieve criterions from predicate
2212 //=======================================================================
2213 static inline bool getCriteria( Predicate_i*                thePred,
2214                                 SMESH::Filter::Criteria_out theCriteria )
2215 {
2216   int aFType = thePred->GetFunctorType();
2217
2218   switch ( aFType )
2219   {
2220   case FT_FreeBorders:
2221   case FT_FreeEdges:
2222   case FT_FreeFaces:
2223   case FT_LinearOrQuadratic:
2224   case FT_FreeNodes:
2225     {
2226       CORBA::ULong i = theCriteria->length();
2227       theCriteria->length( i + 1 );
2228
2229       theCriteria[ i ] = createCriterion();
2230
2231       theCriteria[ i ].Type = aFType;
2232       theCriteria[ i ].TypeOfElement = thePred->GetElementType();
2233       return true;
2234     }
2235   case FT_BelongToGeom:
2236     {
2237       BelongToGeom_i* aPred = dynamic_cast<BelongToGeom_i*>( thePred );
2238
2239       CORBA::ULong i = theCriteria->length();
2240       theCriteria->length( i + 1 );
2241
2242       theCriteria[ i ] = createCriterion();
2243
2244       theCriteria[ i ].Type          = FT_BelongToGeom;
2245       theCriteria[ i ].ThresholdStr  = aPred->GetShapeName();
2246       theCriteria[ i ].ThresholdID   = aPred->GetShapeID();
2247       theCriteria[ i ].TypeOfElement = aPred->GetElementType();
2248       theCriteria[ i ].Tolerance     = aPred->GetTolerance();
2249
2250       return true;
2251     }
2252   case FT_BelongToPlane:
2253   case FT_BelongToCylinder:
2254   case FT_BelongToGenSurface:
2255     {
2256       BelongToSurface_i* aPred = dynamic_cast<BelongToSurface_i*>( thePred );
2257
2258       CORBA::ULong i = theCriteria->length();
2259       theCriteria->length( i + 1 );
2260
2261       theCriteria[ i ] = createCriterion();
2262
2263       theCriteria[ i ].Type          = aFType;
2264       theCriteria[ i ].ThresholdStr  = aPred->GetShapeName();
2265       theCriteria[ i ].ThresholdID   = aPred->GetShapeID();
2266       theCriteria[ i ].TypeOfElement = aPred->GetElementType();
2267       theCriteria[ i ].Tolerance     = aPred->GetTolerance();
2268
2269       return true;
2270     }
2271    case FT_LyingOnGeom:
2272     {
2273       LyingOnGeom_i* aPred = dynamic_cast<LyingOnGeom_i*>( thePred );
2274
2275       CORBA::ULong i = theCriteria->length();
2276       theCriteria->length( i + 1 );
2277
2278       theCriteria[ i ] = createCriterion();
2279
2280       theCriteria[ i ].Type          = FT_LyingOnGeom;
2281       theCriteria[ i ].ThresholdStr  = aPred->GetShapeName();
2282       theCriteria[ i ].ThresholdID   = aPred->GetShapeID();
2283       theCriteria[ i ].TypeOfElement = aPred->GetElementType();
2284       theCriteria[ i ].Tolerance     = aPred->GetTolerance();
2285
2286       return true;
2287     }
2288   case FT_RangeOfIds:
2289     {
2290       RangeOfIds_i* aPred = dynamic_cast<RangeOfIds_i*>( thePred );
2291
2292       CORBA::ULong i = theCriteria->length();
2293       theCriteria->length( i + 1 );
2294
2295       theCriteria[ i ] = createCriterion();
2296
2297       theCriteria[ i ].Type          = FT_RangeOfIds;
2298       theCriteria[ i ].ThresholdStr  = aPred->GetRangeStr();
2299       theCriteria[ i ].TypeOfElement = aPred->GetElementType();
2300
2301       return true;
2302     }
2303   case FT_BadOrientedVolume:
2304     {
2305       BadOrientedVolume_i* aPred = dynamic_cast<BadOrientedVolume_i*>( thePred );
2306
2307       CORBA::ULong i = theCriteria->length();
2308       theCriteria->length( i + 1 );
2309
2310       theCriteria[ i ] = createCriterion();
2311
2312       theCriteria[ i ].Type          = FT_BadOrientedVolume;
2313       theCriteria[ i ].TypeOfElement = aPred->GetElementType();
2314
2315       return true;
2316     }
2317   case FT_LessThan:
2318   case FT_MoreThan:
2319   case FT_EqualTo:
2320     {
2321       Comparator_i* aCompar = dynamic_cast<Comparator_i*>( thePred );
2322
2323       CORBA::ULong i = theCriteria->length();
2324       theCriteria->length( i + 1 );
2325
2326       theCriteria[ i ] = createCriterion();
2327
2328       theCriteria[ i ].Type      = aCompar->GetNumFunctor_i()->GetFunctorType();
2329       theCriteria[ i ].Compare   = aFType;
2330       theCriteria[ i ].Threshold = aCompar->GetMargin();
2331       theCriteria[ i ].TypeOfElement = aCompar->GetElementType();
2332
2333       if ( aFType == FT_EqualTo )
2334       {
2335         EqualTo_i* aCompar = dynamic_cast<EqualTo_i*>( thePred );
2336         theCriteria[ i ].Tolerance = aCompar->GetTolerance();
2337       }
2338     }
2339     return true;
2340
2341   case FT_LogicalNOT:
2342     {
2343       Predicate_i* aPred = ( dynamic_cast<LogicalNOT_i*>( thePred ) )->GetPredicate_i();
2344       getCriteria( aPred, theCriteria );
2345       theCriteria[ theCriteria->length() - 1 ].UnaryOp = FT_LogicalNOT;
2346     }
2347     return true;
2348
2349   case FT_LogicalAND:
2350   case FT_LogicalOR:
2351     {
2352       Predicate_i* aPred1 = ( dynamic_cast<LogicalBinary_i*>( thePred ) )->GetPredicate1_i();
2353       Predicate_i* aPred2 = ( dynamic_cast<LogicalBinary_i*>( thePred ) )->GetPredicate2_i();
2354       if ( !getCriteria( aPred1, theCriteria ) )
2355         return false;
2356       theCriteria[ theCriteria->length() - 1 ].BinaryOp = aFType;
2357       return getCriteria( aPred2, theCriteria );
2358     }
2359   case FT_GroupColor:
2360     {
2361       CORBA::ULong i = theCriteria->length();
2362       theCriteria->length( i + 1 );
2363
2364       theCriteria[ i ] = createCriterion();
2365
2366       GroupColor_i* aPred = dynamic_cast<GroupColor_i*>( thePred );
2367       theCriteria[ i ].Type          = aFType;
2368       theCriteria[ i ].TypeOfElement = aPred->GetElementType();
2369       theCriteria[ i ].ThresholdStr  = aPred->GetColorStr();
2370
2371       return true;
2372     }
2373   case FT_ElemGeomType:
2374     {
2375       CORBA::ULong i = theCriteria->length();
2376       theCriteria->length( i + 1 );
2377
2378       theCriteria[ i ] = createCriterion();
2379
2380       ElemGeomType_i* aPred = dynamic_cast<ElemGeomType_i*>( thePred );
2381       theCriteria[ i ].Type          = aFType;
2382       theCriteria[ i ].TypeOfElement = aPred->GetElementType();
2383       theCriteria[ i ].Threshold     = (double)aPred->GetGeometryType();
2384       return true;
2385     }
2386
2387   case FT_Undefined:
2388     return false;
2389   default:
2390     return false;
2391   }
2392 }
2393
2394 //=======================================================================
2395 // name    : Filter_i::GetCriteria
2396 // Purpose : Retrieve criterions from predicate
2397 //=======================================================================
2398 CORBA::Boolean Filter_i::GetCriteria( SMESH::Filter::Criteria_out theCriteria )
2399 {
2400   theCriteria = new SMESH::Filter::Criteria;
2401   return myPredicate != 0 ? getCriteria( myPredicate, theCriteria ) : true;
2402 }
2403
2404 //=======================================================================
2405 // name    : Filter_i::SetCriteria
2406 // Purpose : Create new predicate and set criterions in it
2407 //=======================================================================
2408 CORBA::Boolean Filter_i::SetCriteria( const SMESH::Filter::Criteria& theCriteria )
2409 {
2410   if ( myPredicate != 0 )
2411     myPredicate->Destroy();
2412
2413   SMESH::FilterManager_i* aFilter = new SMESH::FilterManager_i();
2414   FilterManager_ptr aFilterMgr = aFilter->_this();
2415
2416   // CREATE two lists ( PREDICATES  and LOG OP )
2417
2418   // Criterion
2419   TPythonDump()<<"aCriteria = []";
2420   std::list<SMESH::Predicate_ptr> aPredicates;
2421   std::list<int>                  aBinaries;
2422   for ( int i = 0, n = theCriteria.length(); i < n; i++ )
2423   {
2424     int         aCriterion    = theCriteria[ i ].Type;
2425     int         aCompare      = theCriteria[ i ].Compare;
2426     double      aThreshold    = theCriteria[ i ].Threshold;
2427     const char* aThresholdStr = theCriteria[ i ].ThresholdStr;
2428     const char* aThresholdID  = theCriteria[ i ].ThresholdID;
2429     int         aUnary        = theCriteria[ i ].UnaryOp;
2430     int         aBinary       = theCriteria[ i ].BinaryOp;
2431     double      aTolerance    = theCriteria[ i ].Tolerance;
2432     ElementType aTypeOfElem   = theCriteria[ i ].TypeOfElement;
2433     long        aPrecision    = theCriteria[ i ].Precision;
2434
2435     {
2436       TPythonDump pd;
2437       pd << "aCriterion = SMESH.Filter.Criterion(" << aCriterion << "," << aCompare
2438          << "," << aThreshold << ",'" << aThresholdStr;
2439       if (aThresholdID && strlen(aThresholdID))
2440         //pd << "',salome.ObjectToID(" << aThresholdID
2441         pd << "','" << aThresholdID
2442            << "'," << aUnary << "," << aBinary << "," << aTolerance
2443            << "," << aTypeOfElem << "," << aPrecision << ")";
2444       else
2445         pd << "',''," << aUnary << "," << aBinary << "," << aTolerance
2446            << "," << aTypeOfElem << "," << aPrecision << ")";
2447     }
2448
2449     SMESH::Predicate_ptr aPredicate = SMESH::Predicate::_nil();
2450     SMESH::NumericalFunctor_ptr aFunctor = SMESH::NumericalFunctor::_nil();
2451
2452     switch ( aCriterion )
2453     {
2454       // Functors
2455
2456       case SMESH::FT_MultiConnection:
2457         aFunctor = aFilterMgr->CreateMultiConnection();
2458         break;
2459       case SMESH::FT_MultiConnection2D:
2460         aFunctor = aFilterMgr->CreateMultiConnection2D();
2461         break;
2462       case SMESH::FT_Length:
2463         aFunctor = aFilterMgr->CreateLength();
2464         break;
2465       case SMESH::FT_Length2D:
2466         aFunctor = aFilterMgr->CreateLength2D();
2467         break;
2468       case SMESH::FT_AspectRatio:
2469         aFunctor = aFilterMgr->CreateAspectRatio();
2470         break;
2471       case SMESH::FT_AspectRatio3D:
2472         aFunctor = aFilterMgr->CreateAspectRatio3D();
2473         break;
2474       case SMESH::FT_Warping:
2475         aFunctor = aFilterMgr->CreateWarping();
2476         break;
2477       case SMESH::FT_MinimumAngle:
2478         aFunctor = aFilterMgr->CreateMinimumAngle();
2479         break;
2480       case SMESH::FT_Taper:
2481         aFunctor = aFilterMgr->CreateTaper();
2482         break;
2483       case SMESH::FT_Skew:
2484         aFunctor = aFilterMgr->CreateSkew();
2485         break;
2486       case SMESH::FT_Area:
2487         aFunctor = aFilterMgr->CreateArea();
2488         break;
2489       case SMESH::FT_Volume3D:
2490         aFunctor = aFilterMgr->CreateVolume3D();
2491         break;
2492
2493       // Predicates
2494
2495       case SMESH::FT_FreeBorders:
2496         aPredicate = aFilterMgr->CreateFreeBorders();
2497         break;
2498       case SMESH::FT_FreeEdges:
2499         aPredicate = aFilterMgr->CreateFreeEdges();
2500         break;
2501       case SMESH::FT_FreeFaces:
2502         aPredicate = aFilterMgr->CreateFreeFaces();
2503         break;
2504       case SMESH::FT_FreeNodes:
2505         aPredicate = aFilterMgr->CreateFreeNodes();
2506         break;
2507       case SMESH::FT_BelongToGeom:
2508         {
2509           SMESH::BelongToGeom_ptr tmpPred = aFilterMgr->CreateBelongToGeom();
2510           tmpPred->SetElementType( aTypeOfElem );
2511           tmpPred->SetShape( aThresholdID, aThresholdStr );
2512           tmpPred->SetTolerance( aTolerance );
2513           aPredicate = tmpPred;
2514         }
2515         break;
2516       case SMESH::FT_BelongToPlane:
2517       case SMESH::FT_BelongToCylinder:
2518       case SMESH::FT_BelongToGenSurface:
2519         {
2520           SMESH::BelongToSurface_ptr tmpPred;
2521           switch ( aCriterion ) {
2522           case SMESH::FT_BelongToPlane:
2523             tmpPred = aFilterMgr->CreateBelongToPlane(); break;
2524           case SMESH::FT_BelongToCylinder:
2525             tmpPred = aFilterMgr->CreateBelongToCylinder(); break;
2526           default:
2527             tmpPred = aFilterMgr->CreateBelongToGenSurface();
2528           }
2529           tmpPred->SetShape( aThresholdID, aThresholdStr, aTypeOfElem );
2530           tmpPred->SetTolerance( aTolerance );
2531           aPredicate = tmpPred;
2532         }
2533         break;
2534       case SMESH::FT_LyingOnGeom:
2535         {
2536           SMESH::LyingOnGeom_ptr tmpPred = aFilterMgr->CreateLyingOnGeom();
2537           tmpPred->SetElementType( aTypeOfElem );
2538           tmpPred->SetShape( aThresholdID, aThresholdStr );
2539           tmpPred->SetTolerance( aTolerance );
2540           aPredicate = tmpPred;
2541         }
2542         break;
2543       case SMESH::FT_RangeOfIds:
2544         {
2545           SMESH::RangeOfIds_ptr tmpPred = aFilterMgr->CreateRangeOfIds();
2546           tmpPred->SetRangeStr( aThresholdStr );
2547           tmpPred->SetElementType( aTypeOfElem );
2548           aPredicate = tmpPred;
2549         }
2550         break;
2551       case SMESH::FT_BadOrientedVolume:
2552         {
2553           aPredicate = aFilterMgr->CreateBadOrientedVolume();
2554         }
2555         break;
2556       case SMESH::FT_LinearOrQuadratic:
2557         {
2558           SMESH::LinearOrQuadratic_ptr tmpPred = aFilterMgr->CreateLinearOrQuadratic();
2559           tmpPred->SetElementType( aTypeOfElem );
2560           aPredicate = tmpPred;
2561           break;
2562         }
2563       case SMESH::FT_GroupColor:
2564         {
2565           SMESH::GroupColor_ptr tmpPred = aFilterMgr->CreateGroupColor();
2566           tmpPred->SetElementType( aTypeOfElem );
2567           tmpPred->SetColorStr( aThresholdStr );
2568           aPredicate = tmpPred;
2569           break;
2570         }
2571       case SMESH::FT_ElemGeomType:
2572         {
2573           SMESH::ElemGeomType_ptr tmpPred = aFilterMgr->CreateElemGeomType();
2574           tmpPred->SetElementType( aTypeOfElem );
2575           tmpPred->SetGeometryType( (GeometryType)(int)(aThreshold + 0.5) );
2576           aPredicate = tmpPred;
2577           break;
2578         }
2579
2580       default:
2581         continue;
2582     }
2583
2584     // Comparator
2585     if ( !aFunctor->_is_nil() && aPredicate->_is_nil() )
2586     {
2587       SMESH::Comparator_ptr aComparator = SMESH::Comparator::_nil();
2588
2589       if ( aCompare == SMESH::FT_LessThan )
2590         aComparator = aFilterMgr->CreateLessThan();
2591       else if ( aCompare == SMESH::FT_MoreThan )
2592         aComparator = aFilterMgr->CreateMoreThan();
2593       else if ( aCompare == SMESH::FT_EqualTo )
2594         aComparator = aFilterMgr->CreateEqualTo();
2595       else
2596         continue;
2597
2598       aComparator->SetNumFunctor( aFunctor );
2599       aComparator->SetMargin( aThreshold );
2600
2601       if ( aCompare == FT_EqualTo )
2602       {
2603         SMESH::EqualTo_var anEqualTo = SMESH::EqualTo::_narrow( aComparator );
2604         anEqualTo->SetTolerance( aTolerance );
2605       }
2606
2607       aPredicate = aComparator;
2608
2609       aFunctor->SetPrecision( aPrecision );
2610     }
2611
2612     // Logical not
2613     if ( aUnary == FT_LogicalNOT )
2614     {
2615       SMESH::LogicalNOT_ptr aNotPred = aFilterMgr->CreateLogicalNOT();
2616       aNotPred->SetPredicate( aPredicate );
2617       aPredicate = aNotPred;
2618     }
2619
2620     // logical op
2621     aPredicates.push_back( aPredicate );
2622     aBinaries.push_back( aBinary );
2623     TPythonDump()<<"aCriteria.append(aCriterion)";
2624
2625   } // end of for
2626   TPythonDump()<<this<<".SetCriteria(aCriteria)";
2627
2628   // CREATE ONE PREDICATE FROM PREVIOUSLY CREATED MAP
2629
2630   // combine all "AND" operations
2631
2632   std::list<SMESH::Predicate_ptr> aResList;
2633
2634   std::list<SMESH::Predicate_ptr>::iterator aPredIter;
2635   std::list<int>::iterator                  aBinaryIter;
2636
2637   SMESH::Predicate_ptr aPrevPredicate = SMESH::Predicate::_nil();
2638   int aPrevBinary = SMESH::FT_Undefined;
2639
2640   for ( aPredIter = aPredicates.begin(), aBinaryIter = aBinaries.begin();
2641         aPredIter != aPredicates.end() && aBinaryIter != aBinaries.end();
2642         ++aPredIter, ++aBinaryIter )
2643   {
2644     int aCurrBinary = *aBinaryIter;
2645
2646     SMESH::Predicate_ptr aCurrPred = SMESH::Predicate::_nil();
2647
2648     if ( aPrevBinary == SMESH::FT_LogicalAND )
2649     {
2650
2651       SMESH::LogicalBinary_ptr aBinaryPred = aFilterMgr->CreateLogicalAND();
2652       aBinaryPred->SetPredicate1( aPrevPredicate );
2653       aBinaryPred->SetPredicate2( *aPredIter );
2654       aCurrPred = aBinaryPred;
2655     }
2656     else
2657       aCurrPred = *aPredIter;
2658
2659     if ( aCurrBinary != SMESH::FT_LogicalAND )
2660       aResList.push_back( aCurrPred );
2661
2662     aPrevPredicate = aCurrPred;
2663     aPrevBinary = aCurrBinary;
2664   }
2665
2666   // combine all "OR" operations
2667
2668   SMESH::Predicate_ptr aResPredicate = SMESH::Predicate::_nil();
2669
2670   if ( aResList.size() == 1 )
2671     aResPredicate = *aResList.begin();
2672   else if ( aResList.size() > 1 )
2673   {
2674     std::list<SMESH::Predicate_ptr>::iterator anIter = aResList.begin();
2675     aResPredicate = *anIter;
2676     anIter++;
2677     for ( ; anIter != aResList.end(); ++anIter )
2678     {
2679       SMESH::LogicalBinary_ptr aBinaryPred = aFilterMgr->CreateLogicalOR();
2680       aBinaryPred->SetPredicate1( aResPredicate );
2681       aBinaryPred->SetPredicate2( *anIter );
2682       aResPredicate = aBinaryPred;
2683     }
2684   }
2685
2686   SetPredicate( aResPredicate );
2687
2688   return !aResPredicate->_is_nil();
2689 }
2690
2691 //=======================================================================
2692 // name    : Filter_i::GetPredicate_i
2693 // Purpose : Get implementation of predicate
2694 //=======================================================================
2695 Predicate_i* Filter_i::GetPredicate_i()
2696 {
2697   return myPredicate;
2698 }
2699
2700 //=======================================================================
2701 // name    : Filter_i::GetPredicate
2702 // Purpose : Get predicate
2703 //=======================================================================
2704 Predicate_ptr Filter_i::GetPredicate()
2705 {
2706   if ( myPredicate == 0 )
2707     return SMESH::Predicate::_nil();
2708   else
2709   {
2710     SMESH::Predicate_var anObj = myPredicate->_this();
2711     return anObj._retn();
2712   }
2713 }
2714
2715 /*
2716                             FILTER LIBRARY
2717 */
2718
2719 #define ATTR_TYPE          "type"
2720 #define ATTR_COMPARE       "compare"
2721 #define ATTR_THRESHOLD     "threshold"
2722 #define ATTR_UNARY         "unary"
2723 #define ATTR_BINARY        "binary"
2724 #define ATTR_THRESHOLD_STR "threshold_str"
2725 #define ATTR_TOLERANCE     "tolerance"
2726 #define ATTR_ELEMENT_TYPE  "ElementType"
2727
2728 //=======================================================================
2729 // name    : toString
2730 // Purpose : Convert bool to LDOMString
2731 //=======================================================================
2732 static inline LDOMString toString( CORBA::Boolean val )
2733 {
2734   return val ? "logical not" : "";
2735 }
2736
2737 //=======================================================================
2738 // name    : toBool
2739 // Purpose : Convert LDOMString to bool
2740 //=======================================================================
2741 static inline bool toBool( const LDOMString& theStr )
2742 {
2743   return theStr.equals( "logical not" );
2744 }
2745
2746 //=======================================================================
2747 // name    : toString
2748 // Purpose : Convert double to LDOMString
2749 //=======================================================================
2750 static inline LDOMString toString( CORBA::Double val )
2751 {
2752   char a[ 255 ];
2753   sprintf( a, "%e", val );
2754   return LDOMString( a );
2755 }
2756
2757 //=======================================================================
2758 // name    : toDouble
2759 // Purpose : Convert LDOMString to double
2760 //=======================================================================
2761 static inline double toDouble( const LDOMString& theStr )
2762 {
2763   return atof( theStr.GetString() );
2764 }
2765
2766 //=======================================================================
2767 // name    : toString
2768 // Purpose : Convert functor type to LDOMString
2769 //=======================================================================
2770 static inline LDOMString toString( CORBA::Long theType )
2771 {
2772   switch ( theType )
2773   {
2774     case FT_AspectRatio     : return "Aspect ratio";
2775     case FT_Warping         : return "Warping";
2776     case FT_MinimumAngle    : return "Minimum angle";
2777     case FT_Taper           : return "Taper";
2778     case FT_Skew            : return "Skew";
2779     case FT_Area            : return "Area";
2780     case FT_Volume3D        : return "Volume3D";
2781     case FT_BelongToGeom    : return "Belong to Geom";
2782     case FT_BelongToPlane   : return "Belong to Plane";
2783     case FT_BelongToCylinder: return "Belong to Cylinder";
2784     case FT_BelongToGenSurface: return "Belong to Generic Surface";
2785     case FT_LyingOnGeom     : return "Lying on Geom";
2786     case FT_BadOrientedVolume: return "Bad Oriented Volume";
2787     case FT_RangeOfIds      : return "Range of IDs";
2788     case FT_FreeBorders     : return "Free borders";
2789     case FT_FreeEdges       : return "Free edges";
2790     case FT_FreeFaces       : return "Free faces";
2791     case FT_FreeNodes       : return "Free nodes";
2792     case FT_MultiConnection : return "Borders at multi-connections";
2793     case FT_MultiConnection2D: return "Borders at multi-connections 2D";
2794     case FT_Length          : return "Length";
2795     case FT_Length2D        : return "Length 2D";
2796     case FT_LessThan        : return "Less than";
2797     case FT_MoreThan        : return "More than";
2798     case FT_EqualTo         : return "Equal to";
2799     case FT_LogicalNOT      : return "Not";
2800     case FT_LogicalAND      : return "And";
2801     case FT_LogicalOR       : return "Or";
2802     case FT_GroupColor      : return "Color of Group";
2803     case FT_LinearOrQuadratic : return "Linear or Quadratic";
2804     case FT_ElemGeomType    : return "Element geomtry type";
2805     case FT_Undefined       : return "";
2806     default                 : return "";
2807   }
2808 }
2809
2810 //=======================================================================
2811 // name    : toFunctorType
2812 // Purpose : Convert LDOMString to functor type
2813 //=======================================================================
2814 static inline SMESH::FunctorType toFunctorType( const LDOMString& theStr )
2815 {
2816   if      ( theStr.equals( "Aspect ratio"                 ) ) return FT_AspectRatio;
2817   else if ( theStr.equals( "Warping"                      ) ) return FT_Warping;
2818   else if ( theStr.equals( "Minimum angle"                ) ) return FT_MinimumAngle;
2819   else if ( theStr.equals( "Taper"                        ) ) return FT_Taper;
2820   else if ( theStr.equals( "Skew"                         ) ) return FT_Skew;
2821   else if ( theStr.equals( "Area"                         ) ) return FT_Area;
2822   else if ( theStr.equals( "Volume3D"                     ) ) return FT_Volume3D;
2823   else if ( theStr.equals( "Belong to Geom"               ) ) return FT_BelongToGeom;
2824   else if ( theStr.equals( "Belong to Plane"              ) ) return FT_BelongToPlane;
2825   else if ( theStr.equals( "Belong to Cylinder"           ) ) return FT_BelongToCylinder;
2826   else if ( theStr.equals( "Belong to Generic Surface"    ) ) return FT_BelongToGenSurface;
2827   else if ( theStr.equals( "Lying on Geom"                ) ) return FT_LyingOnGeom;
2828   else if ( theStr.equals( "Free borders"                 ) ) return FT_FreeBorders;
2829   else if ( theStr.equals( "Free edges"                   ) ) return FT_FreeEdges;
2830   else if ( theStr.equals( "Free faces"                   ) ) return FT_FreeFaces;
2831   else if ( theStr.equals( "Free nodes"                   ) ) return FT_FreeNodes;
2832   else if ( theStr.equals( "Borders at multi-connections" ) ) return FT_MultiConnection;
2833   //  else if ( theStr.equals( "Borders at multi-connections 2D" ) ) return FT_MultiConnection2D;
2834   else if ( theStr.equals( "Length"                       ) ) return FT_Length;
2835   //  else if ( theStr.equals( "Length2D"                     ) ) return FT_Length2D;
2836   else if ( theStr.equals( "Range of IDs"                 ) ) return FT_RangeOfIds;
2837   else if ( theStr.equals( "Bad Oriented Volume"          ) ) return FT_BadOrientedVolume;
2838   else if ( theStr.equals( "Less than"                    ) ) return FT_LessThan;
2839   else if ( theStr.equals( "More than"                    ) ) return FT_MoreThan;
2840   else if ( theStr.equals( "Equal to"                     ) ) return FT_EqualTo;
2841   else if ( theStr.equals( "Not"                          ) ) return FT_LogicalNOT;
2842   else if ( theStr.equals( "And"                          ) ) return FT_LogicalAND;
2843   else if ( theStr.equals( "Or"                           ) ) return FT_LogicalOR;
2844   else if ( theStr.equals( "Color of Group"               ) ) return FT_GroupColor;
2845   else if ( theStr.equals( "Linear or Quadratic"          ) ) return FT_LinearOrQuadratic;
2846   else if ( theStr.equals( "Element geomtry type"         ) ) return FT_ElemGeomType;
2847   else if ( theStr.equals( ""                             ) ) return FT_Undefined;
2848   else  return FT_Undefined;
2849 }
2850
2851 //=======================================================================
2852 // name    : toFunctorType
2853 // Purpose : Convert LDOMString to value of ElementType enumeration
2854 //=======================================================================
2855 static inline SMESH::ElementType toElementType( const LDOMString& theStr )
2856 {
2857   if      ( theStr.equals( "NODE"   ) ) return SMESH::NODE;
2858   else if ( theStr.equals( "EDGE"   ) ) return SMESH::EDGE;
2859   else if ( theStr.equals( "FACE"   ) ) return SMESH::FACE;
2860   else if ( theStr.equals( "VOLUME" ) ) return SMESH::VOLUME;
2861   else                                  return SMESH::ALL;
2862 }
2863
2864 //=======================================================================
2865 // name    : toString
2866 // Purpose : Convert ElementType to string
2867 //=======================================================================
2868 static inline LDOMString toString( const SMESH::ElementType theType )
2869 {
2870   switch ( theType )
2871   {
2872     case SMESH::NODE   : return "NODE";
2873     case SMESH::EDGE   : return "EDGE";
2874     case SMESH::FACE   : return "FACE";
2875     case SMESH::VOLUME : return "VOLUME";
2876     case SMESH::ALL    : return "ALL";
2877     default            : return "";
2878   }
2879 }
2880
2881 //=======================================================================
2882 // name    : findFilter
2883 // Purpose : Find filter in document
2884 //=======================================================================
2885 static LDOM_Element findFilter( const char* theFilterName,
2886                                 const LDOM_Document& theDoc,
2887                                 LDOM_Node* theParent = 0 )
2888 {
2889   LDOM_Element aRootElement = theDoc.getDocumentElement();
2890   if ( aRootElement.isNull() || !aRootElement.hasChildNodes() )
2891     return LDOM_Element();
2892
2893   for ( LDOM_Node aTypeNode = aRootElement.getFirstChild();
2894         !aTypeNode.isNull(); aTypeNode = aTypeNode.getNextSibling() )
2895   {
2896     for ( LDOM_Node aFilter = aTypeNode.getFirstChild();
2897           !aFilter.isNull(); aFilter = aFilter.getNextSibling() )
2898     {
2899       LDOM_Element* anElem = ( LDOM_Element* )&aFilter;
2900       if ( anElem->getTagName().equals( LDOMString( "filter" ) ) &&
2901            anElem->getAttribute( "name" ).equals( LDOMString( theFilterName ) ) )
2902       {
2903         if ( theParent != 0  )
2904           *theParent = aTypeNode;
2905         return (LDOM_Element&)aFilter;
2906       }
2907     }
2908   }
2909   return LDOM_Element();
2910 }
2911
2912 //=======================================================================
2913 // name    : getSectionName
2914 // Purpose : Get name of section of filters
2915 //=======================================================================
2916 static const char* getSectionName( const ElementType theType )
2917 {
2918   switch ( theType )
2919   {
2920     case SMESH::NODE   : return "Filters for nodes";
2921     case SMESH::EDGE   : return "Filters for edges";
2922     case SMESH::FACE   : return "Filters for faces";
2923     case SMESH::VOLUME : return "Filters for volumes";
2924     case SMESH::ALL    : return "Filters for elements";
2925     default            : return "";
2926   }
2927 }
2928
2929 //=======================================================================
2930 // name    : getSection
2931 // Purpose : Create section for filters corresponding to the entity type
2932 //=======================================================================
2933 static LDOM_Node getSection( const ElementType theType,
2934                              LDOM_Document&    theDoc,
2935                              const bool        toCreate = false )
2936 {
2937   LDOM_Element aRootElement = theDoc.getDocumentElement();
2938   if ( aRootElement.isNull() )
2939     return LDOM_Node();
2940
2941   // Find section
2942   bool anExist = false;
2943   const char* aSectionName = getSectionName( theType );
2944   if ( strcmp( aSectionName, "" ) == 0 )
2945     return LDOM_Node();
2946
2947   LDOM_NodeList aSections = theDoc.getElementsByTagName( "section" );
2948   LDOM_Node aNode;
2949   for ( int i = 0, n = aSections.getLength(); i < n; i++ )
2950   {
2951     aNode = aSections.item( i );
2952     LDOM_Element& anItem = ( LDOM_Element& )aNode;
2953     if ( anItem.getAttribute( "name" ).equals( LDOMString( aSectionName ) ) )
2954     {
2955       anExist = true;
2956       break;
2957     }
2958   }
2959
2960   // Create new section if necessary
2961   if ( !anExist )
2962   {
2963     if ( toCreate )
2964     {
2965       LDOM_Element aNewItem = theDoc.createElement( "section" );
2966       aNewItem.setAttribute( "name", aSectionName );
2967       aRootElement.appendChild( aNewItem );
2968       return aNewItem;
2969     }
2970     else
2971       return LDOM_Node();
2972   }
2973   return
2974     aNode;
2975 }
2976
2977 //=======================================================================
2978 // name    : createFilterItem
2979 // Purpose : Create filter item or LDOM document
2980 //=======================================================================
2981 static LDOM_Element createFilterItem( const char*       theName,
2982                                       SMESH::Filter_ptr theFilter,
2983                                       LDOM_Document&    theDoc )
2984 {
2985   // create new filter in document
2986   LDOM_Element aFilterItem = theDoc.createElement( "filter" );
2987   aFilterItem.setAttribute( "name", theName );
2988
2989   // save filter criterions
2990   SMESH::Filter::Criteria_var aCriteria = new SMESH::Filter::Criteria;
2991
2992   if ( !theFilter->GetCriteria( aCriteria ) )
2993     return LDOM_Element();
2994
2995   for ( CORBA::ULong i = 0, n = aCriteria->length(); i < n; i++ )
2996   {
2997     LDOM_Element aCriterionItem = theDoc.createElement( "criterion" );
2998     
2999     aCriterionItem.setAttribute( ATTR_TYPE         , toString(  aCriteria[ i ].Type) );
3000     aCriterionItem.setAttribute( ATTR_COMPARE      , toString(  aCriteria[ i ].Compare ) );
3001     aCriterionItem.setAttribute( ATTR_THRESHOLD    , toString(  aCriteria[ i ].Threshold ) );
3002     aCriterionItem.setAttribute( ATTR_UNARY        , toString(  aCriteria[ i ].UnaryOp ) );
3003     aCriterionItem.setAttribute( ATTR_BINARY       , toString(  aCriteria[ i ].BinaryOp ) );
3004
3005     aCriterionItem.setAttribute( ATTR_THRESHOLD_STR, (const char*)aCriteria[ i ].ThresholdStr );
3006     aCriterionItem.setAttribute( ATTR_TOLERANCE    , toString( aCriteria[ i ].Tolerance ) );
3007     aCriterionItem.setAttribute( ATTR_ELEMENT_TYPE ,
3008       toString( (SMESH::ElementType)aCriteria[ i ].TypeOfElement ) );
3009
3010     aFilterItem.appendChild( aCriterionItem );
3011   }
3012
3013   return aFilterItem;
3014 }
3015
3016 //=======================================================================
3017 // name    : FilterLibrary_i::FilterLibrary_i
3018 // Purpose : Constructor
3019 //=======================================================================
3020 FilterLibrary_i::FilterLibrary_i( const char* theFileName )
3021 {
3022   myFileName = strdup( theFileName );
3023   SMESH::FilterManager_i* aFilterMgr = new SMESH::FilterManager_i();
3024   myFilterMgr = aFilterMgr->_this();
3025
3026   LDOMParser aParser;
3027
3028   // Try to use existing library file
3029   bool anExists = false;
3030   if ( !aParser.parse( myFileName ) )
3031   {
3032     myDoc = aParser.getDocument();
3033     anExists = true;
3034   }
3035   // Create a new XML document if it doesn't exist
3036   else
3037     myDoc = LDOM_Document::createDocument( LDOMString() );
3038
3039   LDOM_Element aRootElement = myDoc.getDocumentElement();
3040   if ( aRootElement.isNull() )
3041   {
3042     // If the existing document is empty --> try to create a new one
3043     if ( anExists )
3044       myDoc = LDOM_Document::createDocument( LDOMString() );
3045   }
3046 }
3047
3048 //=======================================================================
3049 // name    : FilterLibrary_i::FilterLibrary_i
3050 // Purpose : Constructor
3051 //=======================================================================
3052 FilterLibrary_i::FilterLibrary_i()
3053 {
3054   myFileName = 0;
3055   SMESH::FilterManager_i* aFilter = new SMESH::FilterManager_i();
3056   myFilterMgr = aFilter->_this();
3057
3058   myDoc = LDOM_Document::createDocument( LDOMString() );
3059 }
3060
3061 FilterLibrary_i::~FilterLibrary_i()
3062 {
3063   delete myFileName;
3064   //TPythonDump()<<this<<".Destroy()";
3065 }
3066
3067 //=======================================================================
3068 // name    : FilterLibrary_i::Copy
3069 // Purpose : Create filter and initialize it with values from library
3070 //=======================================================================
3071 Filter_ptr FilterLibrary_i::Copy( const char* theFilterName )
3072 {
3073   Filter_ptr aRes = Filter::_nil();
3074   LDOM_Node aFilter = findFilter( theFilterName, myDoc );
3075
3076   if ( aFilter.isNull() )
3077     return aRes;
3078
3079   std::list<SMESH::Filter::Criterion> aCriteria;
3080
3081   for ( LDOM_Node aCritNode = aFilter.getFirstChild();
3082         !aCritNode.isNull() ; aCritNode = aCritNode.getNextSibling() )
3083   {
3084     LDOM_Element* aCrit = (LDOM_Element*)&aCritNode;
3085
3086     const char* aTypeStr      = aCrit->getAttribute( ATTR_TYPE          ).GetString();
3087     const char* aCompareStr   = aCrit->getAttribute( ATTR_COMPARE       ).GetString();
3088     const char* aUnaryStr     = aCrit->getAttribute( ATTR_UNARY         ).GetString();
3089     const char* aBinaryStr    = aCrit->getAttribute( ATTR_BINARY        ).GetString();
3090     const char* anElemTypeStr = aCrit->getAttribute( ATTR_ELEMENT_TYPE  ).GetString();
3091
3092     SMESH::Filter::Criterion aCriterion = createCriterion();
3093
3094     aCriterion.Type          = toFunctorType( aTypeStr );
3095     aCriterion.Compare       = toFunctorType( aCompareStr );
3096     aCriterion.UnaryOp       = toFunctorType( aUnaryStr );
3097     aCriterion.BinaryOp      = toFunctorType( aBinaryStr );
3098
3099     aCriterion.TypeOfElement = toElementType( anElemTypeStr );
3100
3101     LDOMString str = aCrit->getAttribute( ATTR_THRESHOLD );
3102     int val = 0;
3103     aCriterion.Threshold = str.Type() == LDOMBasicString::LDOM_Integer && str.GetInteger( val )
3104       ? val : atof( str.GetString() );
3105
3106     str = aCrit->getAttribute( ATTR_TOLERANCE );
3107     aCriterion.Tolerance = str.Type() == LDOMBasicString::LDOM_Integer && str.GetInteger( val )
3108       ? val : atof( str.GetString() );
3109
3110     str = aCrit->getAttribute( ATTR_THRESHOLD_STR );
3111     if ( str.Type() == LDOMBasicString::LDOM_Integer && str.GetInteger( val ) )
3112     {
3113       char a[ 255 ];
3114       sprintf( a, "%d", val );
3115       aCriterion.ThresholdStr = strdup( a );
3116     }
3117     else
3118       aCriterion.ThresholdStr = str.GetString();
3119
3120     aCriteria.push_back( aCriterion );
3121   }
3122
3123   SMESH::Filter::Criteria_var aCriteriaVar = new SMESH::Filter::Criteria;
3124   aCriteriaVar->length( aCriteria.size() );
3125
3126   CORBA::ULong i = 0;
3127   std::list<SMESH::Filter::Criterion>::iterator anIter = aCriteria.begin();
3128
3129   for( ; anIter != aCriteria.end(); ++anIter )
3130     aCriteriaVar[ i++ ] = *anIter;
3131
3132   aRes = myFilterMgr->CreateFilter();
3133   aRes->SetCriteria( aCriteriaVar.inout() );
3134
3135   TPythonDump()<<this<<".Copy('"<<theFilterName<<"')";
3136
3137   return aRes;
3138 }
3139
3140 //=======================================================================
3141 // name    : FilterLibrary_i::SetFileName
3142 // Purpose : Set file name for library
3143 //=======================================================================
3144 void FilterLibrary_i::SetFileName( const char* theFileName )
3145 {
3146   delete myFileName;
3147   myFileName = strdup( theFileName );
3148   TPythonDump()<<this<<".SetFileName('"<<theFileName<<"')";
3149 }
3150
3151 //=======================================================================
3152 // name    : FilterLibrary_i::GetFileName
3153 // Purpose : Get file name of library
3154 //=======================================================================
3155 char* FilterLibrary_i::GetFileName()
3156 {
3157   return CORBA::string_dup( myFileName );
3158 }
3159
3160 //=======================================================================
3161 // name    : FilterLibrary_i::Add
3162 // Purpose : Add new filter to library
3163 //=======================================================================
3164 CORBA::Boolean FilterLibrary_i::Add( const char* theFilterName, Filter_ptr theFilter )
3165 {
3166   // if filter already in library or entry filter is null do nothing
3167   LDOM_Node aFilterNode = findFilter( theFilterName, myDoc );
3168   if ( !aFilterNode.isNull() || theFilter->_is_nil() )
3169     return false;
3170
3171   // get section corresponding to the filter type
3172   ElementType anEntType = theFilter->GetElementType();
3173
3174   LDOM_Node aSection = getSection( anEntType, myDoc, true );
3175   if ( aSection.isNull() )
3176     return false;
3177
3178   // create filter item
3179   LDOM_Element aFilterItem = createFilterItem( theFilterName, theFilter, myDoc );
3180   if ( aFilterItem.isNull() )
3181     return false;
3182   else
3183   {
3184     aSection.appendChild( aFilterItem );
3185     if(Filter_i* aFilter = DownCast<Filter_i*>(theFilter))
3186       TPythonDump()<<this<<".Add('"<<theFilterName<<"',"<<aFilter<<")";
3187     return true;
3188   }
3189 }
3190
3191 //=======================================================================
3192 // name    : FilterLibrary_i::Add
3193 // Purpose : Add new filter to library
3194 //=======================================================================
3195 CORBA::Boolean FilterLibrary_i::AddEmpty( const char* theFilterName, ElementType theType )
3196 {
3197   // if filter already in library or entry filter is null do nothing
3198   LDOM_Node aFilterNode = findFilter( theFilterName, myDoc );
3199   if ( !aFilterNode.isNull() )
3200     return false;
3201
3202   LDOM_Node aSection = getSection( theType, myDoc, true );
3203   if ( aSection.isNull() )
3204     return false;
3205
3206   // create filter item
3207   Filter_var aFilter = myFilterMgr->CreateFilter();
3208
3209   LDOM_Element aFilterItem = createFilterItem( theFilterName, aFilter, myDoc );
3210   if ( aFilterItem.isNull() )
3211     return false;
3212   else
3213   {
3214     aSection.appendChild( aFilterItem );
3215     TPythonDump()<<this<<".AddEmpty('"<<theFilterName<<"',"<<theType<<")";
3216     return true;
3217   }
3218 }
3219
3220 //=======================================================================
3221 // name    : FilterLibrary_i::Delete
3222 // Purpose : Delete filter from library
3223 //=======================================================================
3224 CORBA::Boolean FilterLibrary_i::Delete ( const char* theFilterName )
3225 {
3226   LDOM_Node aParentNode;
3227   LDOM_Node aFilterNode = findFilter( theFilterName, myDoc, &aParentNode );
3228   if ( aFilterNode.isNull() || aParentNode.isNull() )
3229     return false;
3230
3231   aParentNode.removeChild( aFilterNode );
3232   TPythonDump()<<this<<".Delete('"<<theFilterName<<"')";
3233   return true;
3234 }
3235
3236 //=======================================================================
3237 // name      : FilterLibrary_i::Replace
3238 // Purpose   : Replace existing filter with entry filter.
3239 // IMPORTANT : If filter does not exist it is not created
3240 //=======================================================================
3241 CORBA::Boolean FilterLibrary_i::Replace( const char* theFilterName,
3242                                          const char* theNewName,
3243                                          Filter_ptr  theFilter )
3244 {
3245   LDOM_Element aFilterItem = findFilter( theFilterName, myDoc );
3246   if ( aFilterItem.isNull() || theFilter->_is_nil() )
3247     return false;
3248
3249   LDOM_Element aNewItem = createFilterItem( theNewName, theFilter, myDoc );
3250   if ( aNewItem.isNull() )
3251     return false;
3252   else
3253   {
3254     aFilterItem.ReplaceElement( aNewItem );
3255     if(Filter_i* aFilter = DownCast<Filter_i*>(theFilter))
3256       TPythonDump()<<this<<".Replace('"<<theFilterName<<"',"<<theNewName<<"',"<<aFilter<<")";
3257     return true;
3258   }
3259 }
3260
3261 //=======================================================================
3262 // name    : FilterLibrary_i::Save
3263 // Purpose : Save library on disk
3264 //=======================================================================
3265 CORBA::Boolean FilterLibrary_i::Save()
3266 {
3267   if ( myFileName == 0 || strlen( myFileName ) == 0 )
3268     return false;
3269
3270   FILE* aOutFile = fopen( myFileName, "wt" );
3271   if ( !aOutFile )
3272     return false;
3273
3274   LDOM_XmlWriter aWriter( aOutFile );
3275   aWriter.SetIndentation( 2 );
3276   aWriter << myDoc;
3277   fclose( aOutFile );
3278
3279   TPythonDump()<<this<<".Save()";
3280   return true;
3281 }
3282
3283 //=======================================================================
3284 // name    : FilterLibrary_i::SaveAs
3285 // Purpose : Save library on disk
3286 //=======================================================================
3287 CORBA::Boolean FilterLibrary_i::SaveAs( const char* aFileName )
3288 {
3289   myFileName = strdup ( aFileName );
3290   TPythonDump()<<this<<".SaveAs('"<<aFileName<<"')";
3291   return Save();
3292 }
3293
3294 //=======================================================================
3295 // name    : FilterLibrary_i::IsPresent
3296 // Purpose : Verify whether filter is in library
3297 //=======================================================================
3298 CORBA::Boolean FilterLibrary_i::IsPresent( const char* theFilterName )
3299 {
3300   return !findFilter( theFilterName, myDoc ).isNull();
3301 }
3302
3303 //=======================================================================
3304 // name    : FilterLibrary_i::NbFilters
3305 // Purpose : Return amount of filters in library
3306 //=======================================================================
3307 CORBA::Long FilterLibrary_i::NbFilters( ElementType theType )
3308 {
3309   string_array_var aNames = GetNames( theType );
3310   return aNames->length();
3311 }
3312
3313 //=======================================================================
3314 // name    : FilterLibrary_i::GetNames
3315 // Purpose : Get names of filters from library
3316 //=======================================================================
3317 string_array* FilterLibrary_i::GetNames( ElementType theType )
3318 {
3319   string_array_var anArray = new string_array;
3320   TColStd_SequenceOfHAsciiString aSeq;
3321
3322   LDOM_Node aSection = getSection( theType, myDoc, false );
3323
3324   if ( !aSection.isNull() )
3325   {
3326     for ( LDOM_Node aFilter = aSection.getFirstChild();
3327           !aFilter.isNull(); aFilter = aFilter.getNextSibling() )
3328     {
3329       LDOM_Element& anElem = ( LDOM_Element& )aFilter;
3330       aSeq.Append( new TCollection_HAsciiString(
3331          (Standard_CString)anElem.getAttribute( "name" ).GetString() ) );
3332     }
3333   }
3334
3335   anArray->length( aSeq.Length() );
3336   for ( int i = 1, n = aSeq.Length(); i <= n; i++ )
3337     anArray[ i - 1 ] = CORBA::string_dup( aSeq( i )->ToCString() );
3338
3339   return anArray._retn();
3340 }
3341
3342 //=======================================================================
3343 // name    : FilterLibrary_i::GetAllNames
3344 // Purpose : Get names of filters from library
3345 //=======================================================================
3346 string_array* FilterLibrary_i::GetAllNames()
3347 {
3348   string_array_var aResArray = new string_array;
3349   for ( int type = SMESH::ALL; type <= SMESH::VOLUME; type++ )
3350   {
3351     SMESH::string_array_var aNames = GetNames( (SMESH::ElementType)type );
3352
3353     int aPrevLength = aResArray->length();
3354     aResArray->length( aPrevLength + aNames->length() );
3355     for ( int i = 0, n = aNames->length(); i < n; i++ )
3356       aResArray[ aPrevLength + i ] = aNames[ i ];
3357   }
3358
3359   return aResArray._retn();
3360 }