]> SALOME platform Git repositories - modules/geom.git/blob - src/GEOMImpl/GEOMImpl_FillingDriver.cxx
Salome HOME
Fix of 20764 bug ('Error SIGSEGV on Filling operation, if Edges Compound is created...
[modules/geom.git] / src / GEOMImpl / GEOMImpl_FillingDriver.cxx
1 //  Copyright (C) 2007-2008  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 #include <Standard_Stream.hxx>
23
24 #include <GEOMImpl_FillingDriver.hxx>
25 #include <GEOM_Function.hxx>
26 #include <GEOMImpl_IFilling.hxx>
27 #include <GEOMImpl_Types.hxx>
28
29 #include <BRep_Tool.hxx>
30 #include <BRepAlgo.hxx>
31 #include <BRepBuilderAPI_MakeFace.hxx>
32
33 #include <TopAbs.hxx>
34 #include <TopoDS.hxx>
35 #include <TopoDS_Shape.hxx>
36 #include <TopExp_Explorer.hxx>
37
38 #include <Geom_Curve.hxx>
39 #include <Geom_Surface.hxx>
40 #include <Geom_TrimmedCurve.hxx>
41 #include <Geom_BSplineSurface.hxx>
42 #include <GeomFill_Line.hxx>
43 #include <GeomFill_AppSurf.hxx>
44 #include <GeomFill_SectionGenerator.hxx>
45
46 #include <Precision.hxx>
47 #include <Standard_ConstructionError.hxx>
48
49 #include <TColGeom_SequenceOfCurve.hxx>
50 #include <ShapeFix_Face.hxx>
51 #include <GeomAPI_PointsToBSplineSurface.hxx>
52 #include <Geom_BSplineCurve.hxx>
53
54 //=======================================================================
55 //function : GetID
56 //purpose  :
57 //=======================================================================
58 const Standard_GUID& GEOMImpl_FillingDriver::GetID()
59 {
60   static Standard_GUID aFillingDriver ("FF1BBB62-5D14-4df2-980B-3A668264EA16");
61   return aFillingDriver;
62 }
63
64
65 //=======================================================================
66 //function : GEOMImpl_FillingDriver
67 //purpose  :
68 //=======================================================================
69
70 GEOMImpl_FillingDriver::GEOMImpl_FillingDriver()
71 {
72 }
73
74 //=======================================================================
75 //function : Execute
76 //purpose  :
77 //=======================================================================
78 Standard_Integer GEOMImpl_FillingDriver::Execute(TFunction_Logbook& log) const
79 {
80   if (Label().IsNull()) return 0;
81   Handle(GEOM_Function) aFunction = GEOM_Function::GetFunction(Label());
82   if (aFunction.IsNull()) return 0;
83
84   if (aFunction->GetType() != BASIC_FILLING) return 0;
85
86   GEOMImpl_IFilling IF (aFunction);
87   Handle(GEOM_Function) aShapeFunction = IF.GetShape();
88   if (aShapeFunction.IsNull()) return 0;
89   TopoDS_Shape aShape = aShapeFunction->GetValue();
90   if (aShape.IsNull() || aShape.ShapeType() != TopAbs_COMPOUND) return 0;
91
92   Standard_Integer mindeg = IF.GetMinDeg();
93   Standard_Integer maxdeg = IF.GetMaxDeg();
94   Standard_Real tol3d = IF.GetTol2D();
95   Standard_Real tol2d = IF.GetTol3D();
96   Standard_Integer nbiter = IF.GetNbIter();
97   Standard_Boolean isApprox = IF.GetApprox();
98
99   if (mindeg > maxdeg) {
100     Standard_RangeError::Raise("Minimal degree can not be more than maximal degree");
101   }
102
103   /* we verify the contents of the shape */
104   TopExp_Explorer Ex;
105   TopoDS_Shape Scurrent;
106   Standard_Real First, Last;
107   Handle(Geom_Curve) C;
108
109   if(!isApprox) {
110     // make filling as in old version of SALOME (before 4.1.1)
111     GeomFill_SectionGenerator Section;
112     Standard_Integer i = 0;
113     for (Ex.Init(aShape, TopAbs_EDGE); Ex.More(); Ex.Next()) {
114       Scurrent = Ex.Current() ;
115       if (Scurrent.IsNull() || Scurrent.ShapeType() != TopAbs_EDGE) return 0;
116       if (BRep_Tool::Degenerated(TopoDS::Edge(Scurrent))) continue;
117       C = BRep_Tool::Curve(TopoDS::Edge(Scurrent), First, Last);
118       C = new Geom_TrimmedCurve(C, First, Last);
119       Section.AddCurve(C);
120       i++;
121     }
122     
123     /* a 'tolerance' is used to compare 2 knots : see GeomFill_Generator.cdl */
124     Section.Perform(Precision::Confusion());
125     Handle(GeomFill_Line) Line = new GeomFill_Line(i);
126     
127     GeomFill_AppSurf App (mindeg, maxdeg, tol3d, tol2d, nbiter); /* user parameters */
128     App.Perform(Line, Section);
129     
130     if (!App.IsDone()) return 0;
131     Standard_Integer UDegree, VDegree, NbUPoles, NbVPoles, NbUKnots, NbVKnots;
132     App.SurfShape(UDegree, VDegree, NbUPoles, NbVPoles, NbUKnots, NbVKnots);
133     Handle(Geom_BSplineSurface) GBS = new Geom_BSplineSurface
134       (App.SurfPoles(), App.SurfWeights(), App.SurfUKnots(), App.SurfVKnots(),
135        App.SurfUMults(), App.SurfVMults(), App.UDegree(), App.VDegree());
136     
137     if (GBS.IsNull()) return 0;
138     aShape = BRepBuilderAPI_MakeFace(GBS);
139   }    
140   else {
141     // implemented by skl 20.03.2008 for bug 16568
142     // make approximation - try to create bspline surface
143     // using GeomAPI_PointsToBSplineSurface
144     TColGeom_SequenceOfCurve aSeq;
145     int MaxNbPoles = 0;
146     // add curves from edges to sequence and find maximal
147     // number of poles if some of them are bsplines
148     for (Ex.Init(aShape, TopAbs_EDGE); Ex.More(); Ex.Next()) {
149       Scurrent = Ex.Current() ;
150       if (Scurrent.IsNull() || Scurrent.ShapeType() != TopAbs_EDGE) return 0;
151       if (BRep_Tool::Degenerated(TopoDS::Edge(Scurrent))) continue;
152       C = BRep_Tool::Curve(TopoDS::Edge(Scurrent), First, Last);
153       Handle(Geom_TrimmedCurve) TC = Handle(Geom_TrimmedCurve)::DownCast(C);
154       if(TC.IsNull()) {
155         Handle(Geom_BSplineCurve) BC = Handle(Geom_BSplineCurve)::DownCast(C);
156         if(!BC.IsNull()) {
157           MaxNbPoles = Max(MaxNbPoles,BC->NbPoles());
158         }
159       }
160       else {
161         Handle(Geom_BSplineCurve) BC = Handle(Geom_BSplineCurve)::DownCast(TC->BasisCurve());
162         if(BC.IsNull()) {
163           Handle(Geom_TrimmedCurve) TC1 = Handle(Geom_TrimmedCurve)::DownCast(TC->BasisCurve());
164           if(!TC1.IsNull()) {
165             BC = Handle(Geom_BSplineCurve)::DownCast(TC1->BasisCurve());
166           }
167         }
168         if(!BC.IsNull()) {
169           MaxNbPoles = Max(MaxNbPoles,BC->NbPoles());
170         }
171       }
172       aSeq.Append(C);
173     }
174     // prepare array of points for creation bspline surface
175     // size of this array: by U parameter - number of curves,
176     // by V parameter - determ using MaxNbPoles but it's
177     // value must be between 21(min) and 101(max)
178     int nbc = aSeq.Length();
179     int nbp = Max(21,2*MaxNbPoles-1);
180     if(nbp>101) nbp = 101;
181     TColgp_Array2OfPnt Points(1,nbc,1,nbp);
182     int ic = 1;
183     for(; ic<=nbc; ic++) {
184       Handle(Geom_Curve) C = aSeq.Value(ic);
185       double fp = C->FirstParameter();
186       double lp = C->LastParameter();
187       double dp = (lp-fp)/(nbp-1);
188       int j = 0;
189       gp_Pnt P;
190       for(; j<nbp; j++) {
191         C->D0(fp+dp*j,P);
192         Points.SetValue(ic,j+1,P);
193       }
194     }
195     GeomAPI_PointsToBSplineSurface PTB(Points,mindeg,maxdeg,GeomAbs_C2,tol3d);
196     Handle(Geom_BSplineSurface) BS = PTB.Surface();
197     BRepBuilderAPI_MakeFace BB(BS);
198     TopoDS_Face NewF = BB.Face();
199     Handle(ShapeFix_Face) sff = new ShapeFix_Face(NewF);
200     sff->Perform();
201     sff->FixOrientation();
202     aShape = sff->Face();
203   }
204
205   /* We test the validity of resulting shape */
206   if (!BRepAlgo::IsValid((aShape))) {
207     Standard_ConstructionError::Raise("Algorithm have produced an invalid shape result");
208     return 0;
209   }
210
211   aFunction->SetValue(aShape);
212
213   log.SetTouched(Label());
214   return 1;
215 }
216
217
218 //=======================================================================
219 //function :  GEOMImpl_FillingDriver_Type_
220 //purpose  :
221 //=======================================================================
222 Standard_EXPORT Handle_Standard_Type& GEOMImpl_FillingDriver_Type_()
223 {
224
225   static Handle_Standard_Type aType1 = STANDARD_TYPE(TFunction_Driver);
226   if ( aType1.IsNull()) aType1 = STANDARD_TYPE(TFunction_Driver);
227   static Handle_Standard_Type aType2 = STANDARD_TYPE(MMgt_TShared);
228   if ( aType2.IsNull()) aType2 = STANDARD_TYPE(MMgt_TShared);
229   static Handle_Standard_Type aType3 = STANDARD_TYPE(Standard_Transient);
230   if ( aType3.IsNull()) aType3 = STANDARD_TYPE(Standard_Transient);
231
232
233   static Handle_Standard_Transient _Ancestors[]= {aType1,aType2,aType3,NULL};
234   static Handle_Standard_Type _aType = new Standard_Type("GEOMImpl_FillingDriver",
235                                                          sizeof(GEOMImpl_FillingDriver),
236                                                          1,
237                                                          (Standard_Address)_Ancestors,
238                                                          (Standard_Address)NULL);
239
240   return _aType;
241 }
242
243 //=======================================================================
244 //function : DownCast
245 //purpose  :
246 //=======================================================================
247
248 const Handle(GEOMImpl_FillingDriver) Handle(GEOMImpl_FillingDriver)::DownCast(const Handle(Standard_Transient)& AnObject)
249 {
250   Handle(GEOMImpl_FillingDriver) _anOtherObject;
251
252   if (!AnObject.IsNull()) {
253      if (AnObject->IsKind(STANDARD_TYPE(GEOMImpl_FillingDriver))) {
254        _anOtherObject = Handle(GEOMImpl_FillingDriver)((Handle(GEOMImpl_FillingDriver)&)AnObject);
255      }
256   }
257
258   return _anOtherObject ;
259 }
260
261