Salome HOME
0020695: EDF 1076 GEOM: Add a new shape in GEOM: T-shape
[modules/geom.git] / src / GEOMImpl / GEOMImpl_Gen.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 #ifdef WNT
23 #pragma warning( disable:4786 )
24 #endif
25
26 #include <Standard_Stream.hxx>
27
28 #include <GEOMImpl_Gen.hxx>
29
30 #include "utilities.h"
31 #include <OpUtil.hxx>
32 #include <Utils_ExceptHandlers.hxx>
33
34 #include <TFunction_Driver.hxx>
35 #include <TFunction_DriverTable.hxx>
36
37 #include <GEOMImpl_PointDriver.hxx>
38 #include <GEOMImpl_VectorDriver.hxx>
39 #include <GEOMImpl_LineDriver.hxx>
40 #include <GEOMImpl_PlaneDriver.hxx>
41 #include <GEOMImpl_MarkerDriver.hxx>
42 #include <GEOMImpl_ArcDriver.hxx>
43 #include <GEOMImpl_CircleDriver.hxx>
44 #include <GEOMImpl_EllipseDriver.hxx>
45 #include <GEOMImpl_PolylineDriver.hxx>
46 #include <GEOMImpl_SplineDriver.hxx>
47 #include <GEOMImpl_SketcherDriver.hxx>
48 #include <GEOMImpl_3DSketcherDriver.hxx>
49 #include <GEOMImpl_BoxDriver.hxx>
50 #include <GEOMImpl_FaceDriver.hxx>
51 #include <GEOMImpl_DiskDriver.hxx>
52 #include <GEOMImpl_ConeDriver.hxx>
53 #include <GEOMImpl_CylinderDriver.hxx>
54 #include <GEOMImpl_PrismDriver.hxx>
55 #include <GEOMImpl_PipeDriver.hxx>
56 #include <GEOMImpl_ThruSectionsDriver.hxx>
57 #include <GEOMImpl_RevolutionDriver.hxx>
58 #include <GEOMImpl_ShapeDriver.hxx>
59 #include <GEOMImpl_BlockDriver.hxx>
60 #include <GEOMImpl_SphereDriver.hxx>
61 #include <GEOMImpl_TorusDriver.hxx>
62 #include <GEOMImpl_BooleanDriver.hxx>
63 #include <GEOMImpl_ChamferDriver.hxx>
64 #include <GEOMImpl_FilletDriver.hxx>
65 #include <GEOMImpl_Fillet1dDriver.hxx>
66 #include <GEOMImpl_Fillet2dDriver.hxx>
67 #include <GEOMImpl_TranslateDriver.hxx>
68 #include <GEOMImpl_RotateDriver.hxx>
69 #include <GEOMImpl_MirrorDriver.hxx>
70 #include <GEOMImpl_OffsetDriver.hxx>
71 #include <GEOMImpl_ScaleDriver.hxx>
72 #include <GEOMImpl_PositionDriver.hxx>
73 #include <GEOMImpl_PartitionDriver.hxx>
74 #include <GEOMImpl_CopyDriver.hxx>
75 #include <GEOMImpl_ExportDriver.hxx>
76 #include <GEOMImpl_ImportDriver.hxx>
77 #include <GEOMImpl_ArchimedeDriver.hxx>
78 #include <GEOMImpl_HealingDriver.hxx>
79 #include <GEOMImpl_FillingDriver.hxx>
80 #include <GEOMImpl_GlueDriver.hxx>
81 #include <GEOMImpl_MeasureDriver.hxx>
82 // Advanced operations
83 /*@@ insert new functions before this line @@*/
84
85 //=============================================================================
86 /*!
87  *  default constructor:
88  */
89 //=============================================================================
90
91 GEOMImpl_Gen::GEOMImpl_Gen()
92 {
93    MESSAGE("GEOMImpl_Gen::GEOMImpl_Gen");
94    _mapOfBasicOperations.clear();
95
96    // Basic elements
97    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_PointDriver::GetID(), new GEOMImpl_PointDriver());
98    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_VectorDriver::GetID(), new GEOMImpl_VectorDriver());
99    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_LineDriver::GetID(), new GEOMImpl_LineDriver());
100    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_PlaneDriver::GetID(), new GEOMImpl_PlaneDriver());
101    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_MarkerDriver::GetID(), new GEOMImpl_MarkerDriver());
102
103    // Curves
104    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_ArcDriver::GetID(), new GEOMImpl_ArcDriver());
105    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_CircleDriver::GetID(), new GEOMImpl_CircleDriver());
106    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_EllipseDriver::GetID(), new GEOMImpl_EllipseDriver());
107    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_PolylineDriver::GetID(), new GEOMImpl_PolylineDriver());
108    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_SplineDriver::GetID(), new GEOMImpl_SplineDriver());
109    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_SketcherDriver::GetID(), new GEOMImpl_SketcherDriver());
110    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_3DSketcherDriver::GetID(), new GEOMImpl_3DSketcherDriver());
111
112    // 3D Primitives
113    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_BoxDriver::GetID(), new GEOMImpl_BoxDriver());
114    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_FaceDriver::GetID(), new GEOMImpl_FaceDriver());
115    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_DiskDriver::GetID(), new GEOMImpl_DiskDriver());
116    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_ConeDriver::GetID(), new GEOMImpl_ConeDriver());
117    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_CylinderDriver::GetID(), new GEOMImpl_CylinderDriver());
118    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_PrismDriver::GetID(), new GEOMImpl_PrismDriver());
119    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_PipeDriver::GetID(), new GEOMImpl_PipeDriver());
120    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_ThruSectionsDriver::GetID(), new GEOMImpl_ThruSectionsDriver());
121    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_RevolutionDriver::GetID(), new GEOMImpl_RevolutionDriver());
122    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_SphereDriver::GetID(), new GEOMImpl_SphereDriver());
123    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_TorusDriver::GetID(), new GEOMImpl_TorusDriver());
124    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_FillingDriver::GetID(), new GEOMImpl_FillingDriver());
125
126    // Shapes Operations
127    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_ShapeDriver::GetID(), new GEOMImpl_ShapeDriver());
128    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_GlueDriver::GetID(), new GEOMImpl_GlueDriver());
129
130    // Blocks Operations
131    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_BlockDriver::GetID(), new GEOMImpl_BlockDriver());
132
133    // Boolean Operations, Partition
134    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_BooleanDriver::GetID(), new GEOMImpl_BooleanDriver());
135    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_PartitionDriver::GetID(), new GEOMImpl_PartitionDriver());
136
137    // Local Operations
138    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_ChamferDriver::GetID(), new GEOMImpl_ChamferDriver());
139    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_FilletDriver::GetID(), new GEOMImpl_FilletDriver());
140    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_Fillet1dDriver::GetID(), new GEOMImpl_Fillet1dDriver());
141    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_Fillet2dDriver::GetID(), new GEOMImpl_Fillet2dDriver());
142    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_ArchimedeDriver::GetID(), new GEOMImpl_ArchimedeDriver());
143
144    // Geometrical Transformations, Offset, Scale
145    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_TranslateDriver::GetID(), new GEOMImpl_TranslateDriver());
146    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_RotateDriver::GetID(), new GEOMImpl_RotateDriver());
147    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_MirrorDriver::GetID(), new GEOMImpl_MirrorDriver());
148    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_OffsetDriver::GetID(), new GEOMImpl_OffsetDriver());
149    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_ScaleDriver::GetID(), new GEOMImpl_ScaleDriver());
150    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_PositionDriver::GetID(), new GEOMImpl_PositionDriver());
151
152    // Insert Operations (Copy, Import/Export)
153    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_CopyDriver::GetID(), new GEOMImpl_CopyDriver());
154    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_ImportDriver::GetID(), new GEOMImpl_ImportDriver());
155    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_ExportDriver::GetID(), new GEOMImpl_ExportDriver());
156
157    // Shape Healing
158    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_HealingDriver::GetID(), new GEOMImpl_HealingDriver());
159
160    // Measurements
161    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_MeasureDriver::GetID(), new GEOMImpl_MeasureDriver());
162
163    // Advanced operations
164    /*@@ insert new functions before this line @@*/
165
166    SetEngine(this);
167 }
168
169 //=============================================================================
170 /*!
171  *
172  */
173 //=============================================================================
174
175 GEOMImpl_Gen::~GEOMImpl_Gen()
176 {
177   MESSAGE("GEOMImpl_Gen::~GEOMImpl_Gen");
178
179   std::map<int, GEOMImpl_IBasicOperations*>::iterator aBasicIter = _mapOfBasicOperations.begin();
180   for (; aBasicIter != _mapOfBasicOperations.end(); aBasicIter++)
181     delete (*aBasicIter).second;
182
183   std::map<int, GEOMImpl_ITransformOperations*>::iterator aTransformIter = _mapOfTransformOperations.begin();
184   for (; aTransformIter != _mapOfTransformOperations.end(); aTransformIter++)
185     delete (*aTransformIter).second;
186
187   std::map<int, GEOMImpl_I3DPrimOperations*>::iterator a3DPrimIter = _mapOf3DPrimOperations.begin();
188   for (; a3DPrimIter != _mapOf3DPrimOperations.end(); a3DPrimIter++)
189     delete (*a3DPrimIter).second;
190
191   std::map<int, GEOMImpl_IShapesOperations*>::iterator aShapesIter = _mapOfShapesOperations.begin();
192   for (; aShapesIter != _mapOfShapesOperations.end(); aShapesIter++)
193     delete (*aShapesIter).second;
194
195   std::map<int, GEOMImpl_IBlocksOperations*>::iterator aBlocksIter = _mapOfBlocksOperations.begin();
196   for (; aBlocksIter != _mapOfBlocksOperations.end(); aBlocksIter++)
197     delete (*aBlocksIter).second;
198
199   std::map<int, GEOMImpl_IBooleanOperations*>::iterator aBooleanIter = _mapOfBooleanOperations.begin();
200   for (; aBooleanIter != _mapOfBooleanOperations.end(); aBooleanIter++)
201     delete (*aBooleanIter).second;
202
203   std::map<int, GEOMImpl_IHealingOperations*>::iterator aHealingIter = _mapOfHealingOperations.begin();
204   for (; aHealingIter != _mapOfHealingOperations.end(); aHealingIter++)
205     delete (*aHealingIter).second;
206
207   std::map<int, GEOMImpl_ICurvesOperations*>::iterator aCurvesIter = _mapOfCurvesOperations.begin();
208   for (; aCurvesIter != _mapOfCurvesOperations.end(); aCurvesIter++)
209     delete (*aCurvesIter).second;
210
211   std::map<int, GEOMImpl_ILocalOperations*>::iterator aLocalIter = _mapOfLocalOperations.begin();
212   for (; aLocalIter != _mapOfLocalOperations.end(); aLocalIter++)
213     delete (*aLocalIter).second;
214
215   std::map<int, GEOMImpl_IInsertOperations*>::iterator aInsertIter = _mapOfInsertOperations.begin();
216   for (; aInsertIter != _mapOfInsertOperations.end(); aInsertIter++)
217     delete (*aInsertIter).second;
218
219   std::map<int, GEOMImpl_IMeasureOperations*>::iterator aMeasureIter = _mapOfMeasureOperations.begin();
220   for (; aMeasureIter != _mapOfMeasureOperations.end(); aMeasureIter++)
221     delete (*aMeasureIter).second;
222
223   std::map<int, GEOMImpl_IGroupOperations*>::iterator aGroupIter = _mapOfGroupOperations.begin();
224   for (; aGroupIter != _mapOfGroupOperations.end(); aGroupIter++)
225     delete (*aGroupIter).second;
226 }
227
228 //=============================================================================
229 /*!
230  * GetIBasicOperations
231  */
232 //=============================================================================
233 GEOMImpl_IBasicOperations* GEOMImpl_Gen::GetIBasicOperations(int theDocID)
234 {
235   if(_mapOfBasicOperations.find(theDocID) == _mapOfBasicOperations.end()) {
236     _mapOfBasicOperations[theDocID] = new GEOMImpl_IBasicOperations(this, theDocID);
237   }
238
239   return _mapOfBasicOperations[theDocID];
240 }
241
242 //=============================================================================
243 /*!
244  * GetITransformOperations
245  */
246 //=============================================================================
247 GEOMImpl_ITransformOperations* GEOMImpl_Gen::GetITransformOperations(int theDocID)
248 {
249   if(_mapOfTransformOperations.find(theDocID) == _mapOfTransformOperations.end()) {
250     _mapOfTransformOperations[theDocID] = new GEOMImpl_ITransformOperations(this, theDocID);
251   }
252
253   return _mapOfTransformOperations[theDocID];
254 }
255
256 //=============================================================================
257 /*!
258  * GetIBooleanOperations
259  */
260 //=============================================================================
261 GEOMImpl_IBooleanOperations* GEOMImpl_Gen::GetIBooleanOperations(int theDocID)
262 {
263   if(_mapOfBooleanOperations.find(theDocID) == _mapOfBooleanOperations.end()) {
264     _mapOfBooleanOperations[theDocID] = new GEOMImpl_IBooleanOperations(this, theDocID);
265   }
266
267   return _mapOfBooleanOperations[theDocID];
268 }
269
270 //=============================================================================
271 /*!
272  * GetIHealingOperations
273  */
274 //=============================================================================
275 GEOMImpl_IHealingOperations* GEOMImpl_Gen::GetIHealingOperations(int theDocID)
276 {
277   if(_mapOfHealingOperations.find(theDocID) == _mapOfHealingOperations.end()) {
278     _mapOfHealingOperations[theDocID] = new GEOMImpl_IHealingOperations(this, theDocID);
279   }
280
281   return _mapOfHealingOperations[theDocID];
282 }
283
284 //=============================================================================
285 /*!
286  * GetI3DPrimOperations
287  */
288 //=============================================================================
289 GEOMImpl_I3DPrimOperations* GEOMImpl_Gen::GetI3DPrimOperations(int theDocID)
290 {
291   if(_mapOf3DPrimOperations.find(theDocID) == _mapOf3DPrimOperations.end()) {
292     _mapOf3DPrimOperations[theDocID] = new GEOMImpl_I3DPrimOperations(this, theDocID);
293   }
294
295   return _mapOf3DPrimOperations[theDocID];
296 }
297
298 //=============================================================================
299 /*!
300  * GetIShapesOperations
301  */
302 //=============================================================================
303 GEOMImpl_IShapesOperations* GEOMImpl_Gen::GetIShapesOperations(int theDocID)
304 {
305   if(_mapOfShapesOperations.find(theDocID) == _mapOfShapesOperations.end()) {
306     _mapOfShapesOperations[theDocID] = new GEOMImpl_IShapesOperations(this, theDocID);
307   }
308
309   return _mapOfShapesOperations[theDocID];
310 }
311
312 //=============================================================================
313 /*!
314  * GetIBlocksOperations
315  */
316 //=============================================================================
317 GEOMImpl_IBlocksOperations* GEOMImpl_Gen::GetIBlocksOperations(int theDocID)
318 {
319   if(_mapOfBlocksOperations.find(theDocID) == _mapOfBlocksOperations.end()) {
320     _mapOfBlocksOperations[theDocID] = new GEOMImpl_IBlocksOperations(this, theDocID);
321   }
322
323   return _mapOfBlocksOperations[theDocID];
324 }
325
326 //=============================================================================
327 /*!
328  * GetICurvesOperations
329  */
330 //=============================================================================
331 GEOMImpl_ICurvesOperations* GEOMImpl_Gen::GetICurvesOperations(int theDocID)
332 {
333   if(_mapOfCurvesOperations.find(theDocID) == _mapOfCurvesOperations.end()) {
334     _mapOfCurvesOperations[theDocID] = new GEOMImpl_ICurvesOperations(this, theDocID);
335   }
336
337   return _mapOfCurvesOperations[theDocID];
338 }
339
340 //=============================================================================
341 /*!
342  * GetILocalOperations
343  */
344 //=============================================================================
345 GEOMImpl_ILocalOperations* GEOMImpl_Gen::GetILocalOperations(int theDocID)
346 {
347   if(_mapOfLocalOperations.find(theDocID) == _mapOfLocalOperations.end()) {
348     _mapOfLocalOperations[theDocID] = new GEOMImpl_ILocalOperations(this, theDocID);
349   }
350
351   return _mapOfLocalOperations[theDocID];
352 }
353
354 //=============================================================================
355 /*!
356  * GetIInsertOperations
357  */
358 //=============================================================================
359 GEOMImpl_IInsertOperations* GEOMImpl_Gen::GetIInsertOperations(int theDocID)
360 {
361   if(_mapOfInsertOperations.find(theDocID) == _mapOfInsertOperations.end()) {
362     _mapOfInsertOperations[theDocID] = new GEOMImpl_IInsertOperations(this, theDocID);
363   }
364
365   return _mapOfInsertOperations[theDocID];
366 }
367
368 //=============================================================================
369 /*!
370  * GetIMeasureOperations
371  */
372 //=============================================================================
373 GEOMImpl_IMeasureOperations* GEOMImpl_Gen::GetIMeasureOperations(int theDocID)
374 {
375   if(_mapOfMeasureOperations.find(theDocID) == _mapOfMeasureOperations.end()) {
376     _mapOfMeasureOperations[theDocID] = new GEOMImpl_IMeasureOperations(this, theDocID);
377   }
378
379   return _mapOfMeasureOperations[theDocID];
380 }
381
382 //=============================================================================
383 /*!
384  * GetIGroupOperations
385  */
386 //=============================================================================
387 GEOMImpl_IGroupOperations* GEOMImpl_Gen::GetIGroupOperations(int theDocID)
388 {
389   if(_mapOfGroupOperations.find(theDocID) == _mapOfGroupOperations.end()) {
390     _mapOfGroupOperations[theDocID] = new GEOMImpl_IGroupOperations(this, theDocID);
391   }
392
393   return _mapOfGroupOperations[theDocID];
394 }
395
396 //=============================================================================
397 /*!
398  * GetIAdvancedOperations
399  */
400 //=============================================================================
401 GEOMImpl_IAdvancedOperations* GEOMImpl_Gen::GetIAdvancedOperations(int theDocID)
402 {
403   if(_mapOfAdvancedOperations.find(theDocID) == _mapOfAdvancedOperations.end()) {
404     _mapOfAdvancedOperations[theDocID] = new GEOMImpl_IAdvancedOperations(this, theDocID);
405   }
406
407   return _mapOfAdvancedOperations[theDocID];
408 }
409