]> SALOME platform Git repositories - plugins/canrecplugin.git/blob - src/CANRECPLUGINEngine/CANRECPluginEngine_OperationsCreator.cc
Salome HOME
8a78b2a87bafb96161f1e41823ce521765833501
[plugins/canrecplugin.git] / src / CANRECPLUGINEngine / CANRECPluginEngine_OperationsCreator.cc
1 // Copyright (C) 2014-2015  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 #include "CANRECPluginEngine_OperationsCreator.hh"
20 #include "CANRECPluginEngine_IOperations_i.hh"
21 #include "CANRECPluginImpl_IOperations.hxx"
22 #include "CANRECPluginImpl_Driver.hxx"
23
24 #include <TFunction_DriverTable.hxx>
25
26 #include <Utils_ExceptHandlers.hxx>
27
28 std::map <int, CANRECPluginImpl_IOperations*> CANRECPluginEngine_OperationsCreator::_mapOfOperations;
29
30 CANRECPluginEngine_OperationsCreator::CANRECPluginEngine_OperationsCreator()
31 {
32   // Register drivers
33   TFunction_DriverTable::Get()->AddDriver( CANRECPluginImpl_Driver::GetID(),
34                                            new CANRECPluginImpl_Driver() );
35 }
36
37 CANRECPluginEngine_OperationsCreator::~CANRECPluginEngine_OperationsCreator()
38 {
39 }
40
41 GEOM_IOperations_i* CANRECPluginEngine_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( "CANRECPluginEngine_OperationsCreator::Create" );
48   return new CANRECPluginEngine_IOperations_i( thePOA, theEngine, get( theGenImpl, theStudyId ) );
49 }
50
51 CANRECPluginImpl_IOperations* CANRECPluginEngine_OperationsCreator::get( ::GEOMImpl_Gen* theGenImpl,
52                                                                          int             theStudyId )
53 {
54
55   if ( _mapOfOperations.find( theStudyId ) == _mapOfOperations.end() )
56     _mapOfOperations[theStudyId] = new CANRECPluginImpl_IOperations( theGenImpl, theStudyId );
57   return _mapOfOperations[theStudyId];
58 }