Salome HOME
3ea6fc73d818fa7d1e7e21277404b17e4ae5af23
[modules/geom.git] / src / IGESPlugin / IGESPlugin_OperationsCreator.cxx
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 "IGESPlugin_OperationsCreator.hxx"
22 #include "IGESPlugin_IOperations_i.hh"
23 #include "IGESPlugin_IOperations.hxx"
24 #include "IGESPlugin_ExportDriver.hxx"
25 #include "IGESPlugin_ImportDriver.hxx"
26 #include "IGESPlugin_IECallBack.hxx"
27
28 // KERNEL includes
29 #include <Utils_ExceptHandlers.hxx>
30 #include <utilities.h>
31
32 // OCCT includes
33 #include <TFunction_DriverTable.hxx>
34
35 std::map <int, IGESPlugin_IOperations*> IGESPlugin_OperationsCreator::_mapOfOperations;
36
37 IGESPlugin_OperationsCreator::IGESPlugin_OperationsCreator()
38 {
39   // Register drivers
40   TFunction_DriverTable::Get()->AddDriver( IGESPlugin_ExportDriver::GetID(),
41                                            new IGESPlugin_ExportDriver() );
42   TFunction_DriverTable::Get()->AddDriver( IGESPlugin_ImportDriver::GetID(),
43                                            new IGESPlugin_ImportDriver() );
44   
45   // Register callback
46   IGESPlugin_IECallBack* callback = new IGESPlugin_IECallBack();
47   GEOMImpl_IECallBack::Register( "IGES",       callback );
48   GEOMImpl_IECallBack::Register( "IGES_5_3",   callback );
49   GEOMImpl_IECallBack::Register( "IGES_SCALE", callback );
50 }
51
52 IGESPlugin_OperationsCreator::~IGESPlugin_OperationsCreator()
53 {
54 }
55
56 GEOM_IOperations_i* IGESPlugin_OperationsCreator::Create( PortableServer::POA_ptr thePOA,
57                                                           int                     theStudyId,
58                                                           GEOM::GEOM_Gen_ptr      theEngine,
59                                                           ::GEOMImpl_Gen*         theGenImpl )
60 {
61   Unexpect aCatch( SALOME_SalomeException );
62   MESSAGE( "IGESPlugin_OperationsCreator::Create" );
63   return new IGESPlugin_IOperations_i( thePOA, theEngine, get( theGenImpl, theStudyId ) );
64 }
65
66 IGESPlugin_IOperations* IGESPlugin_OperationsCreator::get( ::GEOMImpl_Gen* theGenImpl,
67                                                            int             theStudyId )
68 {
69   if (_mapOfOperations.find( theStudyId ) == _mapOfOperations.end() )
70     _mapOfOperations[theStudyId] = new IGESPlugin_IOperations( theGenImpl, theStudyId );
71   return _mapOfOperations[theStudyId];
72 }