Salome HOME
811c480b6f923a2785249396f1b83939efd1c687
[modules/geom.git] / src / AdvancedEngine / AdvancedEngine_OperationsCreator.cc
1 // Copyright (C) 2007-2013  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 "GEOM_AdvancedEngine.hxx"
23
24 #include "AdvancedEngine_OperationsCreator.hh"
25
26 #include "GEOM_IAdvancedOperations_i.hh"
27
28 // Operations
29 #include <GEOMImpl_PipeTShapeDriver.hxx>
30 #include <GEOMImpl_DividedDiskDriver.hxx>
31 // #include <GEOMImpl_DividedCylinderDriver.hxx>
32 #include <GEOMImpl_SmoothingSurfaceDriver.hxx>
33 /*@@ insert new functions before this line @@ do not remove this line @@ do not remove this line @@*/
34
35 #include <TFunction_Driver.hxx>
36 #include <TFunction_DriverTable.hxx>
37
38 #include "Utils_ExceptHandlers.hxx"
39 #include "utilities.h"
40
41 //============================================================================
42 // function : Create
43 // purpose  :
44 //============================================================================
45 GEOM_IOperations_i* AdvancedEngine_OperationsCreator::Create (PortableServer::POA_ptr thePOA,
46                                                               int                     theStudyId,
47                                                               GEOM::GEOM_Gen_ptr      theEngine,
48                                                               ::GEOMImpl_Gen*         theGenImpl)
49 {
50   Unexpect aCatch(SALOME_SalomeException);
51   MESSAGE( "AdvancedEngine_OperationsCreator::Create" );
52
53   if (_mapOfOperations.find(theStudyId) == _mapOfOperations.end()) {
54     _mapOfOperations[theStudyId] = new GEOMImpl_IAdvancedOperations (theGenImpl, theStudyId);
55
56     // Advanced operations
57     TFunction_DriverTable::Get()->AddDriver(GEOMImpl_PipeTShapeDriver::GetID(),
58                                             new GEOMImpl_PipeTShapeDriver());
59     TFunction_DriverTable::Get()->AddDriver(GEOMImpl_DividedDiskDriver::GetID(),
60                                             new GEOMImpl_DividedDiskDriver());
61     //TFunction_DriverTable::Get()->AddDriver(GEOMImpl_DividedCylinderDriver::GetID(),
62     //                                        new GEOMImpl_DividedCylinderDriver());
63     TFunction_DriverTable::Get()->AddDriver(GEOMImpl_SmoothingSurfaceDriver::GetID(),
64                                             new GEOMImpl_SmoothingSurfaceDriver());
65     /*@@ insert new functions before this line @@ do not remove this line @@ do not remove this line @@*/
66   }
67
68   GEOM_IAdvancedOperations_i* aServant =
69     new GEOM_IAdvancedOperations_i (thePOA, theEngine, _mapOfOperations[theStudyId]);
70
71   return aServant;
72 }