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