1 // Copyright (C) 2007-2016 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
24 #pragma warning( disable:4786 )
27 #include <Standard_Stream.hxx>
29 #include <GEOMImpl_Gen.hxx>
31 #include "utilities.h"
33 #include <Utils_ExceptHandlers.hxx>
35 #include <TFunction_Driver.hxx>
36 #include <TFunction_DriverTable.hxx>
38 #include <GEOMImpl_PointDriver.hxx>
39 #include <GEOMImpl_VectorDriver.hxx>
40 #include <GEOMImpl_LineDriver.hxx>
41 #include <GEOMImpl_PlaneDriver.hxx>
42 #include <GEOMImpl_MarkerDriver.hxx>
43 #include <GEOMImpl_ArcDriver.hxx>
44 #include <GEOMImpl_CircleDriver.hxx>
45 #include <GEOMImpl_EllipseDriver.hxx>
46 #include <GEOMImpl_PolylineDriver.hxx>
47 #include <GEOMImpl_SplineDriver.hxx>
48 #include <GEOMImpl_SketcherDriver.hxx>
49 #include <GEOMImpl_3DSketcherDriver.hxx>
50 #include <GEOMImpl_BoxDriver.hxx>
51 #include <GEOMImpl_FaceDriver.hxx>
52 #include <GEOMImpl_DiskDriver.hxx>
53 #include <GEOMImpl_ConeDriver.hxx>
54 #include <GEOMImpl_CylinderDriver.hxx>
55 #include <GEOMImpl_PrismDriver.hxx>
56 #include <GEOMImpl_PipeDriver.hxx>
57 #include <GEOMImpl_PipePathDriver.hxx>
58 #include <GEOMImpl_ThruSectionsDriver.hxx>
59 #include <GEOMImpl_RevolutionDriver.hxx>
60 #include <GEOMImpl_ShapeDriver.hxx>
61 #include <GEOMImpl_BlockDriver.hxx>
62 #include <GEOMImpl_SphereDriver.hxx>
63 #include <GEOMImpl_TorusDriver.hxx>
64 #include <GEOMImpl_BooleanDriver.hxx>
65 #include <GEOMImpl_ChamferDriver.hxx>
66 #include <GEOMImpl_FilletDriver.hxx>
67 #include <GEOMImpl_Fillet1dDriver.hxx>
68 #include <GEOMImpl_Fillet2dDriver.hxx>
69 #include <GEOMImpl_TranslateDriver.hxx>
70 #include <GEOMImpl_RotateDriver.hxx>
71 #include <GEOMImpl_MirrorDriver.hxx>
72 #include <GEOMImpl_ProjectionDriver.hxx>
73 #include <GEOMImpl_OffsetDriver.hxx>
74 #include <GEOMImpl_ScaleDriver.hxx>
75 #include <GEOMImpl_PositionDriver.hxx>
76 #include <GEOMImpl_PartitionDriver.hxx>
77 #include <GEOMImpl_CopyDriver.hxx>
78 #include <GEOMImpl_ExportDriver.hxx>
79 #include <GEOMImpl_ImportDriver.hxx>
80 #include <GEOMImpl_ArchimedeDriver.hxx>
81 #include <GEOMImpl_HealingDriver.hxx>
82 #include <GEOMImpl_FillingDriver.hxx>
83 #include <GEOMImpl_GlueDriver.hxx>
84 #include <GEOMImpl_MeasureDriver.hxx>
85 #include <GEOMImpl_FieldDriver.hxx>
87 //=============================================================================
89 * default constructor:
91 //=============================================================================
93 GEOMImpl_Gen::GEOMImpl_Gen()
95 MESSAGE("GEOMImpl_Gen::GEOMImpl_Gen");
96 _mapOfBasicOperations.clear();
99 TFunction_DriverTable::Get()->AddDriver(GEOMImpl_PointDriver::GetID(), new GEOMImpl_PointDriver());
100 TFunction_DriverTable::Get()->AddDriver(GEOMImpl_VectorDriver::GetID(), new GEOMImpl_VectorDriver());
101 TFunction_DriverTable::Get()->AddDriver(GEOMImpl_LineDriver::GetID(), new GEOMImpl_LineDriver());
102 TFunction_DriverTable::Get()->AddDriver(GEOMImpl_PlaneDriver::GetID(), new GEOMImpl_PlaneDriver());
103 TFunction_DriverTable::Get()->AddDriver(GEOMImpl_MarkerDriver::GetID(), new GEOMImpl_MarkerDriver());
106 TFunction_DriverTable::Get()->AddDriver(GEOMImpl_ArcDriver::GetID(), new GEOMImpl_ArcDriver());
107 TFunction_DriverTable::Get()->AddDriver(GEOMImpl_CircleDriver::GetID(), new GEOMImpl_CircleDriver());
108 TFunction_DriverTable::Get()->AddDriver(GEOMImpl_EllipseDriver::GetID(), new GEOMImpl_EllipseDriver());
109 TFunction_DriverTable::Get()->AddDriver(GEOMImpl_PolylineDriver::GetID(), new GEOMImpl_PolylineDriver());
110 TFunction_DriverTable::Get()->AddDriver(GEOMImpl_SplineDriver::GetID(), new GEOMImpl_SplineDriver());
111 TFunction_DriverTable::Get()->AddDriver(GEOMImpl_SketcherDriver::GetID(), new GEOMImpl_SketcherDriver());
112 TFunction_DriverTable::Get()->AddDriver(GEOMImpl_3DSketcherDriver::GetID(), new GEOMImpl_3DSketcherDriver());
115 TFunction_DriverTable::Get()->AddDriver(GEOMImpl_BoxDriver::GetID(), new GEOMImpl_BoxDriver());
116 TFunction_DriverTable::Get()->AddDriver(GEOMImpl_FaceDriver::GetID(), new GEOMImpl_FaceDriver());
117 TFunction_DriverTable::Get()->AddDriver(GEOMImpl_DiskDriver::GetID(), new GEOMImpl_DiskDriver());
118 TFunction_DriverTable::Get()->AddDriver(GEOMImpl_ConeDriver::GetID(), new GEOMImpl_ConeDriver());
119 TFunction_DriverTable::Get()->AddDriver(GEOMImpl_CylinderDriver::GetID(), new GEOMImpl_CylinderDriver());
120 TFunction_DriverTable::Get()->AddDriver(GEOMImpl_PrismDriver::GetID(), new GEOMImpl_PrismDriver());
121 TFunction_DriverTable::Get()->AddDriver(GEOMImpl_PipeDriver::GetID(), new GEOMImpl_PipeDriver());
122 TFunction_DriverTable::Get()->AddDriver(GEOMImpl_PipePathDriver::GetID(), new GEOMImpl_PipePathDriver());
123 TFunction_DriverTable::Get()->AddDriver(GEOMImpl_ThruSectionsDriver::GetID(), new GEOMImpl_ThruSectionsDriver());
124 TFunction_DriverTable::Get()->AddDriver(GEOMImpl_RevolutionDriver::GetID(), new GEOMImpl_RevolutionDriver());
125 TFunction_DriverTable::Get()->AddDriver(GEOMImpl_SphereDriver::GetID(), new GEOMImpl_SphereDriver());
126 TFunction_DriverTable::Get()->AddDriver(GEOMImpl_TorusDriver::GetID(), new GEOMImpl_TorusDriver());
127 TFunction_DriverTable::Get()->AddDriver(GEOMImpl_FillingDriver::GetID(), new GEOMImpl_FillingDriver());
130 TFunction_DriverTable::Get()->AddDriver(GEOMImpl_ShapeDriver::GetID(), new GEOMImpl_ShapeDriver());
131 TFunction_DriverTable::Get()->AddDriver(GEOMImpl_GlueDriver::GetID(), new GEOMImpl_GlueDriver());
134 TFunction_DriverTable::Get()->AddDriver(GEOMImpl_BlockDriver::GetID(), new GEOMImpl_BlockDriver());
136 // Boolean Operations, Partition
137 TFunction_DriverTable::Get()->AddDriver(GEOMImpl_BooleanDriver::GetID(), new GEOMImpl_BooleanDriver());
138 TFunction_DriverTable::Get()->AddDriver(GEOMImpl_PartitionDriver::GetID(), new GEOMImpl_PartitionDriver());
141 TFunction_DriverTable::Get()->AddDriver(GEOMImpl_ChamferDriver::GetID(), new GEOMImpl_ChamferDriver());
142 TFunction_DriverTable::Get()->AddDriver(GEOMImpl_FilletDriver::GetID(), new GEOMImpl_FilletDriver());
143 TFunction_DriverTable::Get()->AddDriver(GEOMImpl_Fillet1dDriver::GetID(), new GEOMImpl_Fillet1dDriver());
144 TFunction_DriverTable::Get()->AddDriver(GEOMImpl_Fillet2dDriver::GetID(), new GEOMImpl_Fillet2dDriver());
145 TFunction_DriverTable::Get()->AddDriver(GEOMImpl_ArchimedeDriver::GetID(), new GEOMImpl_ArchimedeDriver());
147 // Geometrical Transformations, Offset, Scale
148 TFunction_DriverTable::Get()->AddDriver(GEOMImpl_TranslateDriver::GetID(), new GEOMImpl_TranslateDriver());
149 TFunction_DriverTable::Get()->AddDriver(GEOMImpl_RotateDriver::GetID(), new GEOMImpl_RotateDriver());
150 TFunction_DriverTable::Get()->AddDriver(GEOMImpl_MirrorDriver::GetID(), new GEOMImpl_MirrorDriver());
151 TFunction_DriverTable::Get()->AddDriver(GEOMImpl_ProjectionDriver::GetID(), new GEOMImpl_ProjectionDriver());
152 TFunction_DriverTable::Get()->AddDriver(GEOMImpl_OffsetDriver::GetID(), new GEOMImpl_OffsetDriver());
153 TFunction_DriverTable::Get()->AddDriver(GEOMImpl_ScaleDriver::GetID(), new GEOMImpl_ScaleDriver());
154 TFunction_DriverTable::Get()->AddDriver(GEOMImpl_PositionDriver::GetID(), new GEOMImpl_PositionDriver());
156 // Insert Operations (Copy, Import/Export)
157 TFunction_DriverTable::Get()->AddDriver(GEOMImpl_CopyDriver::GetID(), new GEOMImpl_CopyDriver());
158 TFunction_DriverTable::Get()->AddDriver(GEOMImpl_ImportDriver::GetID(), new GEOMImpl_ImportDriver());
159 TFunction_DriverTable::Get()->AddDriver(GEOMImpl_ExportDriver::GetID(), new GEOMImpl_ExportDriver());
162 TFunction_DriverTable::Get()->AddDriver(GEOMImpl_HealingDriver::GetID(), new GEOMImpl_HealingDriver());
165 TFunction_DriverTable::Get()->AddDriver(GEOMImpl_MeasureDriver::GetID(), new GEOMImpl_MeasureDriver());
168 TFunction_DriverTable::Get()->AddDriver(GEOMImpl_FieldDriver::GetID(), new GEOMImpl_FieldDriver());
170 /*@@ insert new functions before this line @@ do not remove this line @@ do not remove this line @@*/
175 //=============================================================================
179 //=============================================================================
181 GEOMImpl_Gen::~GEOMImpl_Gen()
183 MESSAGE("GEOMImpl_Gen::~GEOMImpl_Gen");
185 std::map<int, GEOMImpl_IBasicOperations*>::iterator aBasicIter = _mapOfBasicOperations.begin();
186 for (; aBasicIter != _mapOfBasicOperations.end(); aBasicIter++)
187 delete (*aBasicIter).second;
189 std::map<int, GEOMImpl_ITransformOperations*>::iterator aTransformIter = _mapOfTransformOperations.begin();
190 for (; aTransformIter != _mapOfTransformOperations.end(); aTransformIter++)
191 delete (*aTransformIter).second;
193 std::map<int, GEOMImpl_I3DPrimOperations*>::iterator a3DPrimIter = _mapOf3DPrimOperations.begin();
194 for (; a3DPrimIter != _mapOf3DPrimOperations.end(); a3DPrimIter++)
195 delete (*a3DPrimIter).second;
197 std::map<int, GEOMImpl_IShapesOperations*>::iterator aShapesIter = _mapOfShapesOperations.begin();
198 for (; aShapesIter != _mapOfShapesOperations.end(); aShapesIter++)
199 delete (*aShapesIter).second;
201 std::map<int, GEOMImpl_IBlocksOperations*>::iterator aBlocksIter = _mapOfBlocksOperations.begin();
202 for (; aBlocksIter != _mapOfBlocksOperations.end(); aBlocksIter++)
203 delete (*aBlocksIter).second;
205 std::map<int, GEOMImpl_IBooleanOperations*>::iterator aBooleanIter = _mapOfBooleanOperations.begin();
206 for (; aBooleanIter != _mapOfBooleanOperations.end(); aBooleanIter++)
207 delete (*aBooleanIter).second;
209 std::map<int, GEOMImpl_IHealingOperations*>::iterator aHealingIter = _mapOfHealingOperations.begin();
210 for (; aHealingIter != _mapOfHealingOperations.end(); aHealingIter++)
211 delete (*aHealingIter).second;
213 std::map<int, GEOMImpl_ICurvesOperations*>::iterator aCurvesIter = _mapOfCurvesOperations.begin();
214 for (; aCurvesIter != _mapOfCurvesOperations.end(); aCurvesIter++)
215 delete (*aCurvesIter).second;
217 std::map<int, GEOMImpl_ILocalOperations*>::iterator aLocalIter = _mapOfLocalOperations.begin();
218 for (; aLocalIter != _mapOfLocalOperations.end(); aLocalIter++)
219 delete (*aLocalIter).second;
221 std::map<int, GEOMImpl_IInsertOperations*>::iterator aInsertIter = _mapOfInsertOperations.begin();
222 for (; aInsertIter != _mapOfInsertOperations.end(); aInsertIter++)
223 delete (*aInsertIter).second;
225 std::map<int, GEOMImpl_IMeasureOperations*>::iterator aMeasureIter = _mapOfMeasureOperations.begin();
226 for (; aMeasureIter != _mapOfMeasureOperations.end(); aMeasureIter++)
227 delete (*aMeasureIter).second;
229 std::map<int, GEOMImpl_IGroupOperations*>::iterator aGroupIter = _mapOfGroupOperations.begin();
230 for (; aGroupIter != _mapOfGroupOperations.end(); aGroupIter++)
231 delete (*aGroupIter).second;
233 std::map<int, GEOMImpl_IFieldOperations*>::iterator aFieldIter = _mapOfFieldOperations.begin();
234 for (; aFieldIter != _mapOfFieldOperations.end(); aFieldIter++)
235 delete (*aFieldIter).second;
238 //=============================================================================
240 * GetIBasicOperations
242 //=============================================================================
243 GEOMImpl_IBasicOperations* GEOMImpl_Gen::GetIBasicOperations(int theDocID)
245 if(_mapOfBasicOperations.find(theDocID) == _mapOfBasicOperations.end()) {
246 _mapOfBasicOperations[theDocID] = new GEOMImpl_IBasicOperations(this, theDocID);
249 return _mapOfBasicOperations[theDocID];
252 //=============================================================================
254 * GetITransformOperations
256 //=============================================================================
257 GEOMImpl_ITransformOperations* GEOMImpl_Gen::GetITransformOperations(int theDocID)
259 if(_mapOfTransformOperations.find(theDocID) == _mapOfTransformOperations.end()) {
260 _mapOfTransformOperations[theDocID] = new GEOMImpl_ITransformOperations(this, theDocID);
263 return _mapOfTransformOperations[theDocID];
266 //=============================================================================
268 * GetIBooleanOperations
270 //=============================================================================
271 GEOMImpl_IBooleanOperations* GEOMImpl_Gen::GetIBooleanOperations(int theDocID)
273 if(_mapOfBooleanOperations.find(theDocID) == _mapOfBooleanOperations.end()) {
274 _mapOfBooleanOperations[theDocID] = new GEOMImpl_IBooleanOperations(this, theDocID);
277 return _mapOfBooleanOperations[theDocID];
280 //=============================================================================
282 * GetIHealingOperations
284 //=============================================================================
285 GEOMImpl_IHealingOperations* GEOMImpl_Gen::GetIHealingOperations(int theDocID)
287 if(_mapOfHealingOperations.find(theDocID) == _mapOfHealingOperations.end()) {
288 _mapOfHealingOperations[theDocID] = new GEOMImpl_IHealingOperations(this, theDocID);
291 return _mapOfHealingOperations[theDocID];
294 //=============================================================================
296 * GetI3DPrimOperations
298 //=============================================================================
299 GEOMImpl_I3DPrimOperations* GEOMImpl_Gen::GetI3DPrimOperations(int theDocID)
301 if(_mapOf3DPrimOperations.find(theDocID) == _mapOf3DPrimOperations.end()) {
302 _mapOf3DPrimOperations[theDocID] = new GEOMImpl_I3DPrimOperations(this, theDocID);
305 return _mapOf3DPrimOperations[theDocID];
308 //=============================================================================
310 * GetIShapesOperations
312 //=============================================================================
313 GEOMImpl_IShapesOperations* GEOMImpl_Gen::GetIShapesOperations(int theDocID)
315 if(_mapOfShapesOperations.find(theDocID) == _mapOfShapesOperations.end()) {
316 _mapOfShapesOperations[theDocID] = new GEOMImpl_IShapesOperations(this, theDocID);
319 return _mapOfShapesOperations[theDocID];
322 //=============================================================================
324 * GetIBlocksOperations
326 //=============================================================================
327 GEOMImpl_IBlocksOperations* GEOMImpl_Gen::GetIBlocksOperations(int theDocID)
329 if(_mapOfBlocksOperations.find(theDocID) == _mapOfBlocksOperations.end()) {
330 _mapOfBlocksOperations[theDocID] = new GEOMImpl_IBlocksOperations(this, theDocID);
333 return _mapOfBlocksOperations[theDocID];
336 //=============================================================================
338 * GetICurvesOperations
340 //=============================================================================
341 GEOMImpl_ICurvesOperations* GEOMImpl_Gen::GetICurvesOperations(int theDocID)
343 if(_mapOfCurvesOperations.find(theDocID) == _mapOfCurvesOperations.end()) {
344 _mapOfCurvesOperations[theDocID] = new GEOMImpl_ICurvesOperations(this, theDocID);
347 return _mapOfCurvesOperations[theDocID];
350 //=============================================================================
352 * GetILocalOperations
354 //=============================================================================
355 GEOMImpl_ILocalOperations* GEOMImpl_Gen::GetILocalOperations(int theDocID)
357 if(_mapOfLocalOperations.find(theDocID) == _mapOfLocalOperations.end()) {
358 _mapOfLocalOperations[theDocID] = new GEOMImpl_ILocalOperations(this, theDocID);
361 return _mapOfLocalOperations[theDocID];
364 //=============================================================================
366 * GetIInsertOperations
368 //=============================================================================
369 GEOMImpl_IInsertOperations* GEOMImpl_Gen::GetIInsertOperations(int theDocID)
371 if(_mapOfInsertOperations.find(theDocID) == _mapOfInsertOperations.end()) {
372 _mapOfInsertOperations[theDocID] = new GEOMImpl_IInsertOperations(this, theDocID);
375 return _mapOfInsertOperations[theDocID];
378 //=============================================================================
380 * GetIMeasureOperations
382 //=============================================================================
383 GEOMImpl_IMeasureOperations* GEOMImpl_Gen::GetIMeasureOperations(int theDocID)
385 if(_mapOfMeasureOperations.find(theDocID) == _mapOfMeasureOperations.end()) {
386 _mapOfMeasureOperations[theDocID] = new GEOMImpl_IMeasureOperations(this, theDocID);
389 return _mapOfMeasureOperations[theDocID];
392 //=============================================================================
394 * GetIGroupOperations
396 //=============================================================================
397 GEOMImpl_IGroupOperations* GEOMImpl_Gen::GetIGroupOperations(int theDocID)
399 if(_mapOfGroupOperations.find(theDocID) == _mapOfGroupOperations.end()) {
400 _mapOfGroupOperations[theDocID] = new GEOMImpl_IGroupOperations(this, theDocID);
403 return _mapOfGroupOperations[theDocID];
406 //=============================================================================
408 * GetIFieldOperations
410 //=============================================================================
411 GEOMImpl_IFieldOperations* GEOMImpl_Gen::GetIFieldOperations(int theDocID)
413 if(_mapOfFieldOperations.find(theDocID) == _mapOfFieldOperations.end()) {
414 _mapOfFieldOperations[theDocID] = new GEOMImpl_IFieldOperations(this, theDocID);
417 return _mapOfFieldOperations[theDocID];