Salome HOME
Join modifications from branch OCC_development_for_3_2_0a2
[modules/smesh.git] / src / SMESH / SMESH_HypoFilter.hxx
1 //  SMESH SMESH : implementaion of SMESH idl descriptions
2 //
3 //  Copyright (C) 2003  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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : SMESH_HypoFilter.hxx
25 //  Module : SMESH
26 //  $Header$
27
28
29 #ifndef SMESH_HypoFilter_HeaderFile
30 #define SMESH_HypoFilter_HeaderFile
31
32 // ===========================
33 // Filter of SMESH_Hypothesis
34 // ===========================
35
36 #include <list>
37 #include <string>
38 #include <TopoDS_Shape.hxx>
39
40 class SMESH_HypoFilter;
41 class SMESH_Hypothesis;
42
43 class SMESH_HypoPredicate {
44  public:
45   virtual bool IsOk(const SMESH_Hypothesis* aHyp,
46                     const TopoDS_Shape&     aShape) const = 0;
47   // check aHyp or/and aShape it is assigned to
48   virtual ~SMESH_HypoPredicate() {}
49  private:
50   int _logical_op;
51   friend class SMESH_HypoFilter;
52 };
53
54 class SMESH_HypoFilter: public SMESH_HypoPredicate
55 {
56  public:
57   // Create and add predicates.
58   // Added predicates will be destroyed by filter when it dies
59   SMESH_HypoFilter();
60   SMESH_HypoFilter( SMESH_HypoPredicate* aPredicate, bool notNagate = true );
61   // notNagate==false means !aPredicate->IsOk()
62   SMESH_HypoFilter & Init  ( SMESH_HypoPredicate* aPredicate, bool notNagate = true );
63   SMESH_HypoFilter & And   ( SMESH_HypoPredicate* aPredicate );
64   SMESH_HypoFilter & AndNot( SMESH_HypoPredicate* aPredicate );
65   SMESH_HypoFilter & Or    ( SMESH_HypoPredicate* aPredicate );
66   SMESH_HypoFilter & OrNot ( SMESH_HypoPredicate* aPredicate );
67
68   // Create predicates
69   static SMESH_HypoPredicate* IsAlgo();
70   static SMESH_HypoPredicate* IsAuxiliary();
71   static SMESH_HypoPredicate* IsApplicableTo(const TopoDS_Shape& theShape);
72   static SMESH_HypoPredicate* IsAssignedTo(const TopoDS_Shape& theShape);
73   static SMESH_HypoPredicate* Is(const SMESH_Hypothesis* theHypo);
74   static SMESH_HypoPredicate* IsGlobal(const TopoDS_Shape& theMainShape);
75   static SMESH_HypoPredicate* HasName(const std::string & theName);
76   static SMESH_HypoPredicate* HasDim(const int theDim);
77   static SMESH_HypoPredicate* HasType(const int theHypType);
78
79   bool IsOk (const SMESH_Hypothesis* aHyp,
80              const TopoDS_Shape&     aShape) const;
81   // check aHyp or/and aShape it is assigned to
82
83   ~SMESH_HypoFilter();
84
85
86  protected:
87   // fields
88
89   std::list<SMESH_HypoPredicate*> myPredicates;
90
91   // private methods
92
93   enum Logical { AND, AND_NOT, OR, OR_NOT };
94   enum Comparison { EQUAL, NOT_EQUAL, MORE, LESS };
95
96   SMESH_HypoFilter(const SMESH_HypoFilter& other){}
97
98   void add( Logical bool_op, SMESH_HypoPredicate* pred )
99   {
100     if ( pred ) {
101       pred->_logical_op = bool_op;
102       myPredicates.push_back( pred );
103     }
104   }
105
106   // predicates implementation
107
108   template <typename TValue>
109     struct templPredicate: public SMESH_HypoPredicate {
110       Comparison _comp;
111       TValue     _val;
112       virtual TValue Value(const SMESH_Hypothesis* aHyp) const = 0;
113       virtual bool IsOk(const SMESH_Hypothesis* aHyp, const TopoDS_Shape& ) const
114       {
115         if      ( _comp == EQUAL )     return _val == Value( aHyp );
116         else if ( _comp == NOT_EQUAL ) return _val != Value( aHyp );
117         else if ( _comp == MORE )      return _val < Value( aHyp );
118         else                           return _val > Value( aHyp );
119       }
120     };
121
122   struct NamePredicate : public SMESH_HypoPredicate {
123     std::string _name;
124     NamePredicate( std::string name ): _name(name){}
125     bool IsOk(const SMESH_Hypothesis* aHyp,
126               const TopoDS_Shape&     aShape) const;
127   };
128   
129   struct TypePredicate : public templPredicate< int > {
130     TypePredicate( Comparison comp, int hypType )
131     { _comp = comp; _val = hypType; }
132     int Value( const SMESH_Hypothesis* aHyp ) const;
133   };
134   
135   struct DimPredicate : public templPredicate< int > {
136     DimPredicate( Comparison comp, int dim )
137     { _comp = comp; _val = dim; }
138     int Value( const SMESH_Hypothesis* aHyp ) const;
139   };
140   
141   struct ApplicablePredicate : public SMESH_HypoPredicate {
142     int _shapeType;
143     ApplicablePredicate( const TopoDS_Shape& theShape );
144     bool IsOk(const SMESH_Hypothesis* aHyp,
145               const TopoDS_Shape&     aShape) const;
146   };
147         
148   struct InstancePredicate : public SMESH_HypoPredicate {
149     const SMESH_Hypothesis* _hypo;
150     InstancePredicate( const SMESH_Hypothesis* hypo ):_hypo(hypo){}
151     bool IsOk(const SMESH_Hypothesis* aHyp,
152               const TopoDS_Shape&     aShape) const;
153   };
154         
155   struct IsAssignedToPredicate : public SMESH_HypoPredicate {
156     TopoDS_Shape _mainShape;
157     IsAssignedToPredicate( const TopoDS_Shape& mainShape ):_mainShape(mainShape){}
158     bool IsOk(const SMESH_Hypothesis* aHyp,
159               const TopoDS_Shape&     aShape) const;
160   };
161         
162   struct IsAuxiliaryPredicate : public SMESH_HypoPredicate {
163     bool IsOk(const SMESH_Hypothesis* aHyp,
164               const TopoDS_Shape&     aShape) const;
165   };
166         
167 };
168
169
170 #endif