Salome HOME
Implementation of XTPLUGIN as a GEOM plugin (added files)
[plugins/xtplugin.git] / src / XTPlugin_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 "XTPlugin_OperationsCreator.hh"
22 #include "XTPlugin_Operations_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 //============================================================================
37 // function : Create
38 // purpose  :
39 //============================================================================
40 GEOM_IOperations_i* XTPlugin_OperationsCreator::Create( PortableServer::POA_ptr thePOA,
41                                                         int                     theStudyId,
42                                                         GEOM::GEOM_Gen_ptr      theEngine,
43                                                         ::GEOMImpl_Gen*         theGenImpl )
44 {
45   Unexpect aCatch( SALOME_SalomeException );
46   MESSAGE( "XTPlugin_OperationsCreator::Create" );
47
48   if (_mapOfOperations.find( theStudyId ) == _mapOfOperations.end() ) {
49     XTPlugin_IOperations* anOper = new XTPlugin_IOperations( theGenImpl, theStudyId );
50     _mapOfOperations[theStudyId] = anOper;
51
52     // Import XT
53     TFunction_DriverTable::Get()->AddDriver( XTPlugin_ImportDriver::GetID(),
54                                              new XTPlugin_ImportDriver() );
55
56     XTPlugin_IECallBack* XTCallBack = new XTPlugin_IECallBack( anOper );
57     GEOMImpl_IECallBack::Register( "XT", XTCallBack );
58   }
59
60   XTPlugin_Operations_i* aServant =
61     new XTPlugin_Operations_i( thePOA, theEngine, _mapOfOperations[theStudyId] );
62
63   return aServant;
64 }