Salome HOME
ed3fd90d45eefaf22266468970a0447c2634afc7
[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   TopAbs_ShapeEnum aType;
147   BRep_Builder aBB;
148   BOPCol_MapOfShape aM;
149   BOPCol_ListIteratorOfListOfShape aIt, aItIm;
150   //
151   aIt.Initialize(myArguments);
152   for (; aIt.More(); aIt.Next()) {
153     const TopoDS_Shape& aS=aIt.Value();
154     aType=aS.ShapeType();
155     if (aType==theType && !myMapTools.Contains(aS)) {
156       if (myImages.IsBound(aS)) {
157         const BOPCol_ListOfShape& aLSIm=myImages.Find(aS);
158         aItIm.Initialize(aLSIm);
159         for (; aItIm.More(); aItIm.Next()) {
160           const TopoDS_Shape& aSIm=aItIm.Value();
161           if (aM.Add(aSIm)) {
162             aBB.Add(myShape, aSIm);
163           }
164         }
165       }
166       else {
167         if (aM.Add(aS)) {
168           aBB.Add(myShape, aS);
169         }
170       }
171     }
172   }
173 }
174 //=======================================================================
175 //function : PostTreat
176 //purpose  : 
177 //=======================================================================
178 void GEOMAlgo_Splitter::PostTreat()
179 {
180   if (myLimit!=TopAbs_SHAPE) {
181     Standard_Integer i, aNbS;
182     BRep_Builder aBB;
183     TopoDS_Compound aC;
184     BOPCol_IndexedMapOfShape aMx;
185     //
186     aBB.MakeCompound(aC);
187     //
188     BOPTools::MapShapes(myShape, myLimit, aMx);
189     aNbS=aMx.Extent();
190     for (i=1; i<=aNbS; ++i) {
191       const TopoDS_Shape& aS=aMx(i);
192       aBB.Add(aC, aS);
193     }
194     if (myLimitMode) {
195       Standard_Integer iType, iLimit, iTypeX;
196       TopAbs_ShapeEnum aType, aTypeX;
197       BOPCol_ListOfShape aLSP, aLSX;
198       BOPCol_ListIteratorOfListOfShape aIt, aItX, aItIm;
199       BOPCol_MapOfShape  aM;
200       //
201       iLimit=(Standard_Integer)myLimit; 
202       //
203       // 1. Collect the shapes to process aLSP
204       aIt.Initialize(myArguments);
205       for (; aIt.More(); aIt.Next()) {
206         const TopoDS_Shape& aS=aIt.Value();
207         if (myMapTools.Contains(aS)) {
208           continue;
209         }
210         //
211         aType=aS.ShapeType();
212         iType=(Standard_Integer)aType;
213         //
214         if (iType>iLimit) {
215           aLSP.Append(aS);
216         }
217         //
218         else if (aType==TopAbs_COMPOUND) {
219           aLSX.Clear();
220           //
221           TreatCompound(aS, aLSX);
222           //
223           aItX.Initialize(aLSX);
224           for (; aItX.More(); aItX.Next()) {
225             const TopoDS_Shape& aSX=aItX.Value();
226             aTypeX=aSX.ShapeType();
227             iTypeX=(Standard_Integer)aTypeX;
228             //
229             if (iTypeX>iLimit) {
230               aLSP.Append(aSX);
231             }
232           }
233         }
234       }// for (; aIt.More(); aIt.Next()) {
235       //
236       aMx.Clear();
237       BOPTools::MapShapes(aC, aMx);
238        // 2. Add them to aC
239       aIt.Initialize(aLSP);
240       for (; aIt.More(); aIt.Next()) {
241         const TopoDS_Shape& aS=aIt.Value();
242         if (myImages.IsBound(aS)) {
243           const BOPCol_ListOfShape& aLSIm=myImages.Find(aS);
244           aItIm.Initialize(aLSIm);
245           for (; aItIm.More(); aItIm.Next()) {
246             const TopoDS_Shape& aSIm=aItIm.Value();
247             if (aM.Add(aSIm)) {
248               if (!aMx.Contains(aSIm)) {
249                 aBB.Add(aC, aSIm);
250               }
251             }
252           }
253         }
254         else {
255           if (aM.Add(aS)) {
256             if (!aMx.Contains(aS)) {
257               aBB.Add(aC, aS);
258             }
259           }
260         }
261       }
262     }// if (myLimitMode) {
263     myShape=aC;
264   }//if (myLimit!=TopAbs_SHAPE) {
265   //
266   Standard_Integer aNbS;
267   TopoDS_Iterator aIt;
268   BOPCol_ListOfShape aLS;
269   //
270   aIt.Initialize(myShape);
271   for (; aIt.More(); aIt.Next()) {
272     const TopoDS_Shape& aS=aIt.Value();
273     aLS.Append(aS);
274   }
275   aNbS=aLS.Extent();
276   if (aNbS==1) {
277     myShape=aLS.First();
278   }
279   //
280   BOPAlgo_Builder::PostTreat();
281 }
282 //=======================================================================
283 //function : TreatCompound
284 //purpose  : 
285 //=======================================================================
286 void TreatCompound(const TopoDS_Shape& aC1, 
287                    BOPCol_ListOfShape& aLSX)
288 {
289   Standard_Integer aNbC1;
290   TopAbs_ShapeEnum aType;
291   BOPCol_ListOfShape aLC, aLC1;
292   BOPCol_ListIteratorOfListOfShape aIt, aIt1;
293   TopoDS_Iterator aItC;
294   //
295   aLC.Append (aC1);
296   while(1) {
297     aLC1.Clear();
298     aIt.Initialize(aLC);
299     for (; aIt.More(); aIt.Next()) {
300       const TopoDS_Shape& aC=aIt.Value(); //C is compound
301       //
302       aItC.Initialize(aC);
303       for (; aItC.More(); aItC.Next()) {
304         const TopoDS_Shape& aS=aItC.Value();
305         aType=aS.ShapeType();
306         if (aType==TopAbs_COMPOUND) {
307           aLC1.Append(aS);
308         }
309         else {
310           aLSX.Append(aS);
311         }
312       }
313     }
314     //
315     aNbC1=aLC1.Extent();
316     if (!aNbC1) {
317       break;
318     }
319     //
320     aLC.Clear();
321     aIt.Initialize(aLC1);
322     for (; aIt.More(); aIt.Next()) {
323       const TopoDS_Shape& aSC=aIt.Value();
324       aLC.Append(aSC);
325     }
326   }// while(1)
327 }
328 //
329 // myErrorStatus
330 // 
331 // 0  - Ok
332 // 1  - The object is just initialized
333 // 2  - PaveFiller is failed
334 // 10 - No shapes to process
335 // 30 - SolidBuilder failed