Salome HOME
NPAL17269: Performance pb. when creating a group with GUI.
[modules/geom.git] / src / NMTDS / NMTDS_Iterator.hxx
1 // Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 //
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either
7 // version 2.1 of the License.
8 //
9 // This library is distributed in the hope that it will be useful
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public
15 // License along with this library; if not, write to the Free Software
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19
20 #ifndef _NMTDS_Iterator_HeaderFile
21 #define _NMTDS_Iterator_HeaderFile
22
23 #ifndef _NMTDS_PShapesDataStructure_HeaderFile
24 #include <NMTDS_PShapesDataStructure.hxx>
25 #endif
26 #ifndef _NMTDS_ListOfPassKeyBoolean_HeaderFile
27 #include <NMTDS_ListOfPassKeyBoolean.hxx>
28 #endif
29 #ifndef _NMTDS_ListIteratorOfListOfPassKeyBoolean_HeaderFile
30 #include <NMTDS_ListIteratorOfListOfPassKeyBoolean.hxx>
31 #endif
32 #ifndef _Standard_Integer_HeaderFile
33 #include <Standard_Integer.hxx>
34 #endif
35 #ifndef _TColStd_DataMapOfIntegerListOfInteger_HeaderFile
36 #include <TColStd_DataMapOfIntegerListOfInteger.hxx>
37 #endif
38 #ifndef _TopAbs_ShapeEnum_HeaderFile
39 #include <TopAbs_ShapeEnum.hxx>
40 #endif
41 #ifndef _Standard_Boolean_HeaderFile
42 #include <Standard_Boolean.hxx>
43 #endif
44 class NMTDS_ShapesDataStructure;
45 class TColStd_DataMapOfIntegerListOfInteger;
46
47
48 #ifndef _Standard_HeaderFile
49 #include <Standard.hxx>
50 #endif
51 #ifndef _Standard_Macro_HeaderFile
52 #include <Standard_Macro.hxx>
53 #endif
54
55
56 class NMTDS_Iterator  {
57
58 public:
59
60     void* operator new(size_t,void* anAddress) 
61       {
62         return anAddress;
63       }
64     void* operator new(size_t size) 
65       { 
66         return Standard::Allocate(size); 
67       }
68     void  operator delete(void *anAddress) 
69       { 
70         if (anAddress) Standard::Free((Standard_Address&)anAddress); 
71       }
72  // Methods PUBLIC
73  // 
74
75
76 Standard_EXPORT NMTDS_Iterator();
77 Standard_EXPORT virtual ~NMTDS_Iterator();
78
79
80 Standard_EXPORT   void SetDS(const NMTDS_PShapesDataStructure& pDS) ;
81
82
83 Standard_EXPORT  const NMTDS_ShapesDataStructure& DS() const;
84
85
86 Standard_EXPORT   void Initialize(const TopAbs_ShapeEnum aType1,const TopAbs_ShapeEnum aType2) ;
87
88
89 Standard_EXPORT   Standard_Boolean More() const;
90
91
92 Standard_EXPORT   void Next() ;
93
94
95 Standard_EXPORT   void Current(Standard_Integer& aIndex1,Standard_Integer& aIndex2,Standard_Boolean& aWithSubShape) const;
96
97
98 Standard_EXPORT virtual  void Prepare() ;
99
100
101 Standard_EXPORT   Standard_Integer ExpectedLength() const;
102
103
104 Standard_EXPORT   Standard_Integer BlockLength() const;
105
106
107 Standard_EXPORT  const TColStd_DataMapOfIntegerListOfInteger& SDVertices() const;
108
109
110 Standard_EXPORT static  void FillMVSD(const TColStd_DataMapOfIntegerListOfInteger& aMVSD1,TColStd_DataMapOfIntegerListOfInteger& aMVSD2) ;
111
112
113
114
115
116 protected:
117
118  // Methods PROTECTED
119  // 
120
121
122 Standard_EXPORT virtual  void Intersect() ;
123
124
125  // Fields PROTECTED
126  //
127 NMTDS_PShapesDataStructure myDS;
128 NMTDS_ListOfPassKeyBoolean myLists[6];
129 NMTDS_ListIteratorOfListOfPassKeyBoolean myIterator;
130 NMTDS_ListOfPassKeyBoolean myEmptyList;
131 Standard_Integer myLength;
132 TColStd_DataMapOfIntegerListOfInteger myMVSD;
133
134
135 private: 
136
137  // Methods PRIVATE
138  // 
139
140
141  // Fields PRIVATE
142  //
143
144
145 };
146
147
148
149
150
151 // other Inline functions and methods (like "C++: function call" methods)
152 //
153
154
155 #endif