Salome HOME
Merge branch 'Pre_2.8.0_development'
[modules/shaper.git] / src / GeomAlgoImpl / GEOMAlgo_Splitter.cxx
1 // Copyright (C) 2007-2015  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 #include <GEOMAlgo_Splitter.hxx>
24
25 #include <TopAbs_ShapeEnum.hxx>
26
27 #include <TopoDS_Shape.hxx>
28 #include <TopoDS_Compound.hxx>
29 #include <TopoDS_Iterator.hxx>
30
31 #include <BRep_Builder.hxx>
32
33 #include <BOPCol_MapOfShape.hxx>
34 #include <BOPCol_ListOfShape.hxx>
35
36 #include <BOPTools.hxx>
37
38
39 static 
40   void TreatCompound(const TopoDS_Shape& aC, 
41                      BOPCol_ListOfShape& aLSX);
42
43 //=======================================================================
44 //function : 
45 //purpose  : 
46 //=======================================================================
47 GEOMAlgo_Splitter::GEOMAlgo_Splitter()
48 :
49   BOPAlgo_Builder(),
50   myTools(myAllocator),
51   myMapTools(100, myAllocator)
52 {
53   myLimit=TopAbs_SHAPE;
54   myLimitMode=0;
55 }
56 //=======================================================================
57 //function : 
58 //purpose  : 
59 //=======================================================================
60 GEOMAlgo_Splitter::GEOMAlgo_Splitter
61   (const Handle(NCollection_BaseAllocator)& theAllocator)
62 :
63   BOPAlgo_Builder(theAllocator),
64   myTools(myAllocator),
65   myMapTools(100, myAllocator)
66 {
67   myLimit=TopAbs_SHAPE;
68   myLimitMode=0;
69 }
70 //=======================================================================
71 //function : ~
72 //purpose  : 
73 //=======================================================================
74 GEOMAlgo_Splitter::~GEOMAlgo_Splitter()
75 {
76 }
77 //=======================================================================
78 //function : AddTool
79 //purpose  : 
80 //=======================================================================
81 void GEOMAlgo_Splitter::AddTool(const TopoDS_Shape& theShape)
82 {
83   if (myMapTools.Add(theShape)) {
84     myTools.Append(theShape);
85     //
86     AddArgument(theShape);
87   }
88 }
89 //=======================================================================
90 //function : Tools
91 //purpose  : 
92 //=======================================================================
93 const BOPCol_ListOfShape& GEOMAlgo_Splitter::Tools()const
94 {
95   return myTools;
96 }
97 //=======================================================================
98 //function : SetLimit
99 //purpose  : 
100 //=======================================================================
101 void GEOMAlgo_Splitter::SetLimit(const TopAbs_ShapeEnum aLimit) 
102 {
103   myLimit=aLimit;
104 }
105 //=======================================================================
106 //function : Limit
107 //purpose  : 
108 //=======================================================================
109 TopAbs_ShapeEnum GEOMAlgo_Splitter::Limit()const
110 {
111   return myLimit;
112 }
113 //=======================================================================
114 //function : SetLimitMode
115 //purpose  : 
116 //=======================================================================
117 void GEOMAlgo_Splitter::SetLimitMode(const Standard_Integer aMode)
118 {
119   myLimitMode=aMode;
120 }
121 //=======================================================================
122 //function : LimitMode
123 //purpose  : 
124 //=======================================================================
125 Standard_Integer GEOMAlgo_Splitter::LimitMode()const
126 {
127   return myLimitMode;
128 }
129 //=======================================================================
130 //function : Clear
131 //purpose  : 
132 //=======================================================================
133 void GEOMAlgo_Splitter::Clear()
134 {
135   myTools.Clear();
136   myMapTools.Clear();
137   myLimit=TopAbs_SHAPE;
138   BOPAlgo_Builder::Clear();
139 }
140 //=======================================================================
141 //function : BuildResult
142 //purpose  : 
143 //=======================================================================
144 void GEOMAlgo_Splitter::BuildResult(const TopAbs_ShapeEnum theType)
145 {
146   myErrorStatus=0;
147   //
148   TopAbs_ShapeEnum aType;
149   BRep_Builder aBB;
150   BOPCol_MapOfShape aM;
151   BOPCol_ListIteratorOfListOfShape aIt, aItIm;
152   //
153   aIt.Initialize(myArguments);
154   for (; aIt.More(); aIt.Next()) {
155     const TopoDS_Shape& aS=aIt.Value();
156     aType=aS.ShapeType();
157     if (aType==theType && !myMapTools.Contains(aS)) {
158       if (myImages.IsBound(aS)) {
159         const BOPCol_ListOfShape& aLSIm=myImages.Find(aS);
160         aItIm.Initialize(aLSIm);
161         for (; aItIm.More(); aItIm.Next()) {
162           const TopoDS_Shape& aSIm=aItIm.Value();
163           if (aM.Add(aSIm)) {
164             aBB.Add(myShape, aSIm);
165           }
166         }
167       }
168       else {
169         if (aM.Add(aS)) {
170           aBB.Add(myShape, aS);
171         }
172       }
173     }
174   }
175 }
176 //=======================================================================
177 //function : PostTreat
178 //purpose  : 
179 //=======================================================================
180 void GEOMAlgo_Splitter::PostTreat()
181 {
182   if (myLimit!=TopAbs_SHAPE) {
183     Standard_Integer i, aNbS;
184     BRep_Builder aBB;
185     TopoDS_Compound aC;
186     BOPCol_IndexedMapOfShape aMx;
187     //
188     aBB.MakeCompound(aC);
189     //
190     BOPTools::MapShapes(myShape, myLimit, aMx);
191     aNbS=aMx.Extent();
192     for (i=1; i<=aNbS; ++i) {
193       const TopoDS_Shape& aS=aMx(i);
194       aBB.Add(aC, aS);
195     }
196     if (myLimitMode) {
197       Standard_Integer iType, iLimit, iTypeX;
198       TopAbs_ShapeEnum aType, aTypeX;
199       BOPCol_ListOfShape aLSP, aLSX;
200       BOPCol_ListIteratorOfListOfShape aIt, aItX, aItIm;
201       BOPCol_MapOfShape  aM;
202       //
203       iLimit=(Standard_Integer)myLimit; 
204       //
205       // 1. Collect the shapes to process aLSP
206       aIt.Initialize(myArguments);
207       for (; aIt.More(); aIt.Next()) {
208         const TopoDS_Shape& aS=aIt.Value();
209         if (myMapTools.Contains(aS)) {
210           continue;
211         }
212         //
213         aType=aS.ShapeType();
214         iType=(Standard_Integer)aType;
215         //
216         if (iType>iLimit) {
217           aLSP.Append(aS);
218         }
219         //
220         else if (aType==TopAbs_COMPOUND) {
221           aLSX.Clear();
222           //
223           TreatCompound(aS, aLSX);
224           //
225           aItX.Initialize(aLSX);
226           for (; aItX.More(); aItX.Next()) {
227             const TopoDS_Shape& aSX=aItX.Value();
228             aTypeX=aSX.ShapeType();
229             iTypeX=(Standard_Integer)aTypeX;
230             //
231             if (iTypeX>iLimit) {
232               aLSP.Append(aSX);
233             }
234           }
235         }
236       }// for (; aIt.More(); aIt.Next()) {
237       //
238       aMx.Clear();
239       BOPTools::MapShapes(aC, aMx);
240        // 2. Add them to aC
241       aIt.Initialize(aLSP);
242       for (; aIt.More(); aIt.Next()) {
243         const TopoDS_Shape& aS=aIt.Value();
244         if (myImages.IsBound(aS)) {
245           const BOPCol_ListOfShape& aLSIm=myImages.Find(aS);
246           aItIm.Initialize(aLSIm);
247           for (; aItIm.More(); aItIm.Next()) {
248             const TopoDS_Shape& aSIm=aItIm.Value();
249             if (aM.Add(aSIm)) {
250               if (!aMx.Contains(aSIm)) {
251                 aBB.Add(aC, aSIm);
252               }
253             }
254           }
255         }
256         else {
257           if (aM.Add(aS)) {
258             if (!aMx.Contains(aS)) {
259               aBB.Add(aC, aS);
260             }
261           }
262         }
263       }
264     }// if (myLimitMode) {
265     myShape=aC;
266   }//if (myLimit!=TopAbs_SHAPE) {
267   //
268   Standard_Integer aNbS;
269   TopoDS_Iterator aIt;
270   BOPCol_ListOfShape aLS;
271   //
272   aIt.Initialize(myShape);
273   for (; aIt.More(); aIt.Next()) {
274     const TopoDS_Shape& aS=aIt.Value();
275     aLS.Append(aS);
276   }
277   aNbS=aLS.Extent();
278   if (aNbS==1) {
279     myShape=aLS.First();
280   }
281   //
282   BOPAlgo_Builder::PostTreat();
283 }
284 //=======================================================================
285 //function : TreatCompound
286 //purpose  : 
287 //=======================================================================
288 void TreatCompound(const TopoDS_Shape& aC1, 
289                    BOPCol_ListOfShape& aLSX)
290 {
291   Standard_Integer aNbC1;
292   TopAbs_ShapeEnum aType;
293   BOPCol_ListOfShape aLC, aLC1;
294   BOPCol_ListIteratorOfListOfShape aIt, aIt1;
295   TopoDS_Iterator aItC;
296   //
297   aLC.Append (aC1);
298   while(1) {
299     aLC1.Clear();
300     aIt.Initialize(aLC);
301     for (; aIt.More(); aIt.Next()) {
302       const TopoDS_Shape& aC=aIt.Value(); //C is compound
303       //
304       aItC.Initialize(aC);
305       for (; aItC.More(); aItC.Next()) {
306         const TopoDS_Shape& aS=aItC.Value();
307         aType=aS.ShapeType();
308         if (aType==TopAbs_COMPOUND) {
309           aLC1.Append(aS);
310         }
311         else {
312           aLSX.Append(aS);
313         }
314       }
315     }
316     //
317     aNbC1=aLC1.Extent();
318     if (!aNbC1) {
319       break;
320     }
321     //
322     aLC.Clear();
323     aIt.Initialize(aLC1);
324     for (; aIt.More(); aIt.Next()) {
325       const TopoDS_Shape& aSC=aIt.Value();
326       aLC.Append(aSC);
327     }
328   }// while(1)
329 }
330 //
331 // myErrorStatus
332 // 
333 // 0  - Ok
334 // 1  - The object is just initialized
335 // 2  - PaveFiller is failed
336 // 10 - No shapes to process
337 // 30 - SolidBuilder failed