Salome HOME
Increment version: 8.2.0
[plugins/xtplugin.git] / src / XTPlugin_OperationsCreator.cxx
1 // Copyright (C) 2014-2016  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 "XTPlugin_OperationsCreator.hxx"
22 #include "XTPlugin_IOperations_i.hh"
23 #include "XTPlugin_ImportDriver.hxx"
24 #include "XTPlugin_IECallBack.hxx"
25
26 // KERNEL includes
27 #include <Utils_ExceptHandlers.hxx>
28 #include <utilities.h>
29
30 // GEOM includes
31 #include <GEOMImpl_IECallBack.hxx>
32
33 // OCCT includes
34 #include <TFunction_DriverTable.hxx>
35
36 std::map <int, XTPlugin_IOperations*> XTPlugin_OperationsCreator::_mapOfOperations;
37
38 XTPlugin_OperationsCreator::XTPlugin_OperationsCreator()
39 {
40   // Register drivers
41   TFunction_DriverTable::Get()->AddDriver( XTPlugin_ImportDriver::GetID(),
42                                            new XTPlugin_ImportDriver() );
43   // Register callback
44   XTPlugin_IECallBack* callback = new XTPlugin_IECallBack();
45   GEOMImpl_IECallBack::Register( "XT", callback );
46 }
47
48 XTPlugin_OperationsCreator::~XTPlugin_OperationsCreator()
49 {
50 }
51
52 GEOM_IOperations_i* XTPlugin_OperationsCreator::Create( PortableServer::POA_ptr thePOA,
53                                                         int                     theStudyId,
54                                                         GEOM::GEOM_Gen_ptr      theEngine,
55                                                         ::GEOMImpl_Gen*         theGenImpl )
56 {
57   Unexpect aCatch( SALOME_SalomeException );
58   MESSAGE( "XTPlugin_OperationsCreator::Create" );
59   return new XTPlugin_IOperations_i( thePOA, theEngine, get( theGenImpl, theStudyId ) );
60 }
61
62 XTPlugin_IOperations* XTPlugin_OperationsCreator::get( ::GEOMImpl_Gen* theGenImpl,
63                                                        int             theStudyId )
64 {
65   if (_mapOfOperations.find( theStudyId ) == _mapOfOperations.end() )
66     _mapOfOperations[theStudyId] = new XTPlugin_IOperations( theGenImpl, theStudyId );
67   return _mapOfOperations[theStudyId];
68 }