Salome HOME
Updated for PAL14857.
[modules/geom.git] / src / GEOMImpl / GEOMImpl_Gen.cxx
1 // Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 // 
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either 
7 // version 2.1 of the License.
8 // 
9 // This library is distributed in the hope that it will be useful 
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public  
15 // License along with this library; if not, write to the Free Software 
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 //
20 #ifdef WNT
21 #pragma warning( disable:4786 )
22 #endif
23
24 #include <Standard_Stream.hxx>
25
26 #include <GEOMImpl_Gen.hxx>
27
28 #include "utilities.h"
29 #include <OpUtil.hxx>
30 #include <Utils_ExceptHandlers.hxx>
31
32 #include <TFunction_Driver.hxx>
33 #include <TFunction_DriverTable.hxx>
34
35 #include <GEOMImpl_PointDriver.hxx>
36 #include <GEOMImpl_VectorDriver.hxx>
37 #include <GEOMImpl_LineDriver.hxx>
38 #include <GEOMImpl_PlaneDriver.hxx>
39 #include <GEOMImpl_MarkerDriver.hxx>
40 #include <GEOMImpl_ArcDriver.hxx>
41 #include <GEOMImpl_CircleDriver.hxx>
42 #include <GEOMImpl_EllipseDriver.hxx>
43 #include <GEOMImpl_PolylineDriver.hxx>
44 #include <GEOMImpl_SplineDriver.hxx>
45 #include <GEOMImpl_SketcherDriver.hxx>
46 #include <GEOMImpl_BoxDriver.hxx>
47 #include <GEOMImpl_ConeDriver.hxx>
48 #include <GEOMImpl_CylinderDriver.hxx>
49 #include <GEOMImpl_PrismDriver.hxx>
50 #include <GEOMImpl_PipeDriver.hxx>
51 #include <GEOMImpl_ThruSectionsDriver.hxx>
52 #include <GEOMImpl_RevolutionDriver.hxx>
53 #include <GEOMImpl_ShapeDriver.hxx>
54 #include <GEOMImpl_BlockDriver.hxx>
55 #include <GEOMImpl_SphereDriver.hxx>
56 #include <GEOMImpl_TorusDriver.hxx>
57 #include <GEOMImpl_BooleanDriver.hxx>
58 #include <GEOMImpl_ChamferDriver.hxx>
59 #include <GEOMImpl_FilletDriver.hxx>
60 #include <GEOMImpl_TranslateDriver.hxx>
61 #include <GEOMImpl_RotateDriver.hxx>
62 #include <GEOMImpl_MirrorDriver.hxx>
63 #include <GEOMImpl_OffsetDriver.hxx>
64 #include <GEOMImpl_ScaleDriver.hxx>
65 #include <GEOMImpl_PositionDriver.hxx>
66 #include <GEOMImpl_PartitionDriver.hxx>
67 #include <GEOMImpl_CopyDriver.hxx>
68 #include <GEOMImpl_ExportDriver.hxx>
69 #include <GEOMImpl_ImportDriver.hxx>
70 #include <GEOMImpl_ArchimedeDriver.hxx>
71 #include <GEOMImpl_HealingDriver.hxx>
72 #include <GEOMImpl_FillingDriver.hxx>
73 #include <GEOMImpl_GlueDriver.hxx>
74 #include <GEOMImpl_MeasureDriver.hxx>
75
76 //=============================================================================
77 /*!
78  *  default constructor:
79  */
80 //=============================================================================
81
82 GEOMImpl_Gen::GEOMImpl_Gen()
83 {
84    MESSAGE("GEOMImpl_Gen::GEOMImpl_Gen");
85    _mapOfBasicOperations.clear();
86
87    // Basic elements
88    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_PointDriver::GetID(), new GEOMImpl_PointDriver());
89    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_VectorDriver::GetID(), new GEOMImpl_VectorDriver());
90    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_LineDriver::GetID(), new GEOMImpl_LineDriver());
91    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_PlaneDriver::GetID(), new GEOMImpl_PlaneDriver());
92    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_MarkerDriver::GetID(), new GEOMImpl_MarkerDriver());
93
94    // Curves
95    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_ArcDriver::GetID(), new GEOMImpl_ArcDriver());
96    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_CircleDriver::GetID(), new GEOMImpl_CircleDriver());
97    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_EllipseDriver::GetID(), new GEOMImpl_EllipseDriver());
98    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_PolylineDriver::GetID(), new GEOMImpl_PolylineDriver());
99    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_SplineDriver::GetID(), new GEOMImpl_SplineDriver());
100    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_SketcherDriver::GetID(), new GEOMImpl_SketcherDriver());
101
102    // 3D Primitives
103    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_BoxDriver::GetID(), new GEOMImpl_BoxDriver());
104    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_ConeDriver::GetID(), new GEOMImpl_ConeDriver());
105    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_CylinderDriver::GetID(), new GEOMImpl_CylinderDriver());
106    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_PrismDriver::GetID(), new GEOMImpl_PrismDriver());
107    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_PipeDriver::GetID(), new GEOMImpl_PipeDriver());
108    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_ThruSectionsDriver::GetID(), new GEOMImpl_ThruSectionsDriver());
109    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_RevolutionDriver::GetID(), new GEOMImpl_RevolutionDriver());
110    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_SphereDriver::GetID(), new GEOMImpl_SphereDriver());
111    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_TorusDriver::GetID(), new GEOMImpl_TorusDriver());
112    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_FillingDriver::GetID(), new GEOMImpl_FillingDriver());
113
114    // Shapes Operations
115    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_ShapeDriver::GetID(), new GEOMImpl_ShapeDriver());
116    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_GlueDriver::GetID(), new GEOMImpl_GlueDriver());
117
118    // Blocks Operations
119    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_BlockDriver::GetID(), new GEOMImpl_BlockDriver());
120
121    // Boolean Operations, Partition
122    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_BooleanDriver::GetID(), new GEOMImpl_BooleanDriver());
123    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_PartitionDriver::GetID(), new GEOMImpl_PartitionDriver());
124
125    // Local Operations
126    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_ChamferDriver::GetID(), new GEOMImpl_ChamferDriver());
127    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_FilletDriver::GetID(), new GEOMImpl_FilletDriver());
128    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_ArchimedeDriver::GetID(), new GEOMImpl_ArchimedeDriver());
129
130    // Geometrical Transformations, Offset, Scale
131    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_TranslateDriver::GetID(), new GEOMImpl_TranslateDriver());
132    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_RotateDriver::GetID(), new GEOMImpl_RotateDriver());
133    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_MirrorDriver::GetID(), new GEOMImpl_MirrorDriver());
134    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_OffsetDriver::GetID(), new GEOMImpl_OffsetDriver());
135    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_ScaleDriver::GetID(), new GEOMImpl_ScaleDriver());
136    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_PositionDriver::GetID(), new GEOMImpl_PositionDriver());
137
138    // Insert Operations (Copy, Import/Export)
139    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_CopyDriver::GetID(), new GEOMImpl_CopyDriver());
140    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_ImportDriver::GetID(), new GEOMImpl_ImportDriver());
141    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_ExportDriver::GetID(), new GEOMImpl_ExportDriver());
142
143    // Shape Healing
144    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_HealingDriver::GetID(), new GEOMImpl_HealingDriver());
145
146    // Measurements
147    TFunction_DriverTable::Get()->AddDriver(GEOMImpl_MeasureDriver::GetID(), new GEOMImpl_MeasureDriver());
148
149    SetEngine(this);
150 }
151
152 //=============================================================================
153 /*!
154  *
155  */
156 //=============================================================================
157
158 GEOMImpl_Gen::~GEOMImpl_Gen()
159 {
160   MESSAGE("GEOMImpl_Gen::~GEOMImpl_Gen");
161
162   std::map<int, GEOMImpl_IBasicOperations*>::iterator aBasicIter = _mapOfBasicOperations.begin();
163   for (; aBasicIter != _mapOfBasicOperations.end(); aBasicIter++)
164     delete (*aBasicIter).second;
165
166   std::map<int, GEOMImpl_ITransformOperations*>::iterator aTransformIter = _mapOfTransformOperations.begin();
167   for (; aTransformIter != _mapOfTransformOperations.end(); aTransformIter++)
168     delete (*aTransformIter).second;
169
170   std::map<int, GEOMImpl_I3DPrimOperations*>::iterator a3DPrimIter = _mapOf3DPrimOperations.begin();
171   for (; a3DPrimIter != _mapOf3DPrimOperations.end(); a3DPrimIter++)
172     delete (*a3DPrimIter).second;
173
174   std::map<int, GEOMImpl_IShapesOperations*>::iterator aShapesIter = _mapOfShapesOperations.begin();
175   for (; aShapesIter != _mapOfShapesOperations.end(); aShapesIter++)
176     delete (*aShapesIter).second;
177
178   std::map<int, GEOMImpl_IBlocksOperations*>::iterator aBlocksIter = _mapOfBlocksOperations.begin();
179   for (; aBlocksIter != _mapOfBlocksOperations.end(); aBlocksIter++)
180     delete (*aBlocksIter).second;
181
182   std::map<int, GEOMImpl_IBooleanOperations*>::iterator aBooleanIter = _mapOfBooleanOperations.begin();
183   for (; aBooleanIter != _mapOfBooleanOperations.end(); aBooleanIter++)
184     delete (*aBooleanIter).second;
185
186   std::map<int, GEOMImpl_IHealingOperations*>::iterator aHealingIter = _mapOfHealingOperations.begin();
187   for (; aHealingIter != _mapOfHealingOperations.end(); aHealingIter++)
188     delete (*aHealingIter).second;
189
190   std::map<int, GEOMImpl_ICurvesOperations*>::iterator aCurvesIter = _mapOfCurvesOperations.begin();
191   for (; aCurvesIter != _mapOfCurvesOperations.end(); aCurvesIter++)
192     delete (*aCurvesIter).second;
193
194   std::map<int, GEOMImpl_ILocalOperations*>::iterator aLocalIter = _mapOfLocalOperations.begin();
195   for (; aLocalIter != _mapOfLocalOperations.end(); aLocalIter++)
196     delete (*aLocalIter).second;
197
198   std::map<int, GEOMImpl_IInsertOperations*>::iterator aInsertIter = _mapOfInsertOperations.begin();
199   for (; aInsertIter != _mapOfInsertOperations.end(); aInsertIter++)
200     delete (*aInsertIter).second;
201
202   std::map<int, GEOMImpl_IMeasureOperations*>::iterator aMeasureIter = _mapOfMeasureOperations.begin();
203   for (; aMeasureIter != _mapOfMeasureOperations.end(); aMeasureIter++)
204     delete (*aMeasureIter).second;
205
206   std::map<int, GEOMImpl_IGroupOperations*>::iterator aGroupIter = _mapOfGroupOperations.begin();
207   for (; aGroupIter != _mapOfGroupOperations.end(); aGroupIter++)
208     delete (*aGroupIter).second;
209 }
210
211 //=============================================================================
212 /*!
213  * GetIBasicOperations
214  */
215 //=============================================================================
216 GEOMImpl_IBasicOperations* GEOMImpl_Gen::GetIBasicOperations(int theDocID)
217 {
218   if(_mapOfBasicOperations.find(theDocID) == _mapOfBasicOperations.end()) {
219     _mapOfBasicOperations[theDocID] = new GEOMImpl_IBasicOperations(this, theDocID);
220   }
221
222   return _mapOfBasicOperations[theDocID];
223 }
224
225 //=============================================================================
226 /*!
227  * GetITransformOperations
228  */
229 //=============================================================================
230 GEOMImpl_ITransformOperations* GEOMImpl_Gen::GetITransformOperations(int theDocID)
231 {
232   if(_mapOfTransformOperations.find(theDocID) == _mapOfTransformOperations.end()) {
233     _mapOfTransformOperations[theDocID] = new GEOMImpl_ITransformOperations(this, theDocID);
234   }
235
236   return _mapOfTransformOperations[theDocID];
237 }
238
239 //=============================================================================
240 /*!
241  * GetIBooleanOperations
242  */
243 //=============================================================================
244 GEOMImpl_IBooleanOperations* GEOMImpl_Gen::GetIBooleanOperations(int theDocID)
245 {
246   if(_mapOfBooleanOperations.find(theDocID) == _mapOfBooleanOperations.end()) {
247     _mapOfBooleanOperations[theDocID] = new GEOMImpl_IBooleanOperations(this, theDocID);
248   }
249
250   return _mapOfBooleanOperations[theDocID];
251 }
252
253 //=============================================================================
254 /*!
255  * GetIHealingOperations
256  */
257 //=============================================================================
258 GEOMImpl_IHealingOperations* GEOMImpl_Gen::GetIHealingOperations(int theDocID)
259 {
260   if(_mapOfHealingOperations.find(theDocID) == _mapOfHealingOperations.end()) {
261     _mapOfHealingOperations[theDocID] = new GEOMImpl_IHealingOperations(this, theDocID);
262   }
263
264   return _mapOfHealingOperations[theDocID];
265 }
266
267 //=============================================================================
268 /*!
269  * GetI3DPrimOperations
270  */
271 //=============================================================================
272 GEOMImpl_I3DPrimOperations* GEOMImpl_Gen::GetI3DPrimOperations(int theDocID)
273 {
274   if(_mapOf3DPrimOperations.find(theDocID) == _mapOf3DPrimOperations.end()) {
275     _mapOf3DPrimOperations[theDocID] = new GEOMImpl_I3DPrimOperations(this, theDocID);
276   }
277
278   return _mapOf3DPrimOperations[theDocID];
279 }
280
281 //=============================================================================
282 /*!
283  * GetIShapesOperations
284  */
285 //=============================================================================
286 GEOMImpl_IShapesOperations* GEOMImpl_Gen::GetIShapesOperations(int theDocID)
287 {
288   if(_mapOfShapesOperations.find(theDocID) == _mapOfShapesOperations.end()) {
289     _mapOfShapesOperations[theDocID] = new GEOMImpl_IShapesOperations(this, theDocID);
290   }
291
292   return _mapOfShapesOperations[theDocID];
293 }
294
295 //=============================================================================
296 /*!
297  * GetIBlocksOperations
298  */
299 //=============================================================================
300 GEOMImpl_IBlocksOperations* GEOMImpl_Gen::GetIBlocksOperations(int theDocID)
301 {
302   if(_mapOfBlocksOperations.find(theDocID) == _mapOfBlocksOperations.end()) {
303     _mapOfBlocksOperations[theDocID] = new GEOMImpl_IBlocksOperations(this, theDocID);
304   }
305
306   return _mapOfBlocksOperations[theDocID];
307 }
308
309 //=============================================================================
310 /*!
311  * GetICurvesOperations
312  */
313 //=============================================================================
314 GEOMImpl_ICurvesOperations* GEOMImpl_Gen::GetICurvesOperations(int theDocID)
315 {
316   if(_mapOfCurvesOperations.find(theDocID) == _mapOfCurvesOperations.end()) {
317     _mapOfCurvesOperations[theDocID] = new GEOMImpl_ICurvesOperations(this, theDocID);
318   }
319
320   return _mapOfCurvesOperations[theDocID];
321 }
322
323 //=============================================================================
324 /*!
325  * GetILocalOperations
326  */
327 //=============================================================================
328 GEOMImpl_ILocalOperations* GEOMImpl_Gen::GetILocalOperations(int theDocID)
329 {
330   if(_mapOfLocalOperations.find(theDocID) == _mapOfLocalOperations.end()) {
331     _mapOfLocalOperations[theDocID] = new GEOMImpl_ILocalOperations(this, theDocID);
332   }
333
334   return _mapOfLocalOperations[theDocID];
335 }
336
337 //=============================================================================
338 /*!
339  * GetIInsertOperations
340  */
341 //=============================================================================
342 GEOMImpl_IInsertOperations* GEOMImpl_Gen::GetIInsertOperations(int theDocID)
343 {
344   if(_mapOfInsertOperations.find(theDocID) == _mapOfInsertOperations.end()) {
345     _mapOfInsertOperations[theDocID] = new GEOMImpl_IInsertOperations(this, theDocID);
346   }
347
348   return _mapOfInsertOperations[theDocID];
349 }
350
351 //=============================================================================
352 /*!
353  * GetIMeasureOperations
354  */
355 //=============================================================================
356 GEOMImpl_IMeasureOperations* GEOMImpl_Gen::GetIMeasureOperations(int theDocID)
357 {
358   if(_mapOfMeasureOperations.find(theDocID) == _mapOfMeasureOperations.end()) {
359     _mapOfMeasureOperations[theDocID] = new GEOMImpl_IMeasureOperations(this, theDocID);
360   }
361
362   return _mapOfMeasureOperations[theDocID];
363 }
364
365 //=============================================================================
366 /*!
367  * GetIGroupOperations
368  */
369 //=============================================================================
370 GEOMImpl_IGroupOperations* GEOMImpl_Gen::GetIGroupOperations(int theDocID)
371 {
372   if(_mapOfGroupOperations.find(theDocID) == _mapOfGroupOperations.end()) {
373     _mapOfGroupOperations[theDocID] = new GEOMImpl_IGroupOperations(this, theDocID);
374   }
375
376   return _mapOfGroupOperations[theDocID];
377 }