Salome HOME
Implementation of ACISPLUGIN as a GEOM plugin (added files)
[plugins/acisplugin.git] / src / ACISPlugin_OperationsCreator.cc
1 // Copyright (C) 2014  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 // internal includes
21 #include "ACISPlugin_OperationsCreator.hh"
22 #include "ACISPlugin_Operations_i.hh"
23 #include "ACISPlugin_ExportDriver.hxx"
24 #include "ACISPlugin_ImportDriver.hxx"
25 #include "ACISPlugin_IECallBack.hxx"
26
27 // KERNEL includes
28 #include <Utils_ExceptHandlers.hxx>
29 #include <utilities.h>
30
31 // GEOM includes
32 #include <GEOMImpl_IECallBack.hxx>
33
34 // OCCT includes
35 #include <TFunction_DriverTable.hxx>
36
37 //============================================================================
38 // function : Create
39 // purpose  :
40 //============================================================================
41 GEOM_IOperations_i* ACISPlugin_OperationsCreator::Create( PortableServer::POA_ptr thePOA,
42                                                           int                     theStudyId,
43                                                           GEOM::GEOM_Gen_ptr      theEngine,
44                                                           ::GEOMImpl_Gen*         theGenImpl )
45 {
46   Unexpect aCatch( SALOME_SalomeException );
47   MESSAGE( "ACISPlugin_OperationsCreator::Create" );
48
49   if (_mapOfOperations.find( theStudyId ) == _mapOfOperations.end() ) {
50     ACISPlugin_IOperations* anOper = new ACISPlugin_IOperations( theGenImpl, theStudyId );
51     _mapOfOperations[theStudyId] = anOper;
52
53     // Import/Export ACIS
54     TFunction_DriverTable::Get()->AddDriver( ACISPlugin_ExportDriver::GetID(),
55                                              new ACISPlugin_ExportDriver() );
56     TFunction_DriverTable::Get()->AddDriver( ACISPlugin_ImportDriver::GetID(),
57                                              new ACISPlugin_ImportDriver() );
58
59     ACISPlugin_IECallBack* ACISCallBack = new ACISPlugin_IECallBack( anOper );
60     GEOMImpl_IECallBack::Register( "ACIS", ACISCallBack );
61   }
62
63   ACISPlugin_Operations_i* aServant =
64     new ACISPlugin_Operations_i( thePOA, theEngine, _mapOfOperations[theStudyId] );
65
66   return aServant;
67 }