]> SALOME platform Git repositories - modules/med.git/blob - src/MEDOP/cmp/MEDOPFactory_i.cxx
Salome HOME
Merge from V6_main (04/10/2012)
[modules/med.git] / src / MEDOP / cmp / MEDOPFactory_i.cxx
1 // Copyright (C) 2007-2012  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 // Authors : Guillaume Boulant (EDF) - 01/06/2011
24
25 #include "MEDOPFactory_i.hxx"
26 #include "utilities.h"
27
28 #include <string>
29
30 #include "MEDDataManager_i.hxx"
31 #include "MEDCalculator_i.hxx"
32
33 using namespace std;
34
35 //=============================================================================
36 /*!
37  *  standard constructor
38  */
39 //=============================================================================
40
41 MEDOPFactory_i::MEDOPFactory_i(CORBA::ORB_ptr orb,
42         PortableServer::POA_ptr poa,
43         PortableServer::ObjectId * contId, 
44         const char *instanceName, 
45         const char *interfaceName) :
46   Engines_Component_i(orb, poa, contId, instanceName, interfaceName)
47 {
48   MESSAGE("activate object");
49   _thisObj = this ;
50   _id = _poa->activate_object(_thisObj);
51 }
52
53 MEDOPFactory_i::~MEDOPFactory_i()
54 {
55 }
56
57 MEDOP::MEDDataManager_ptr MEDOPFactory_i::getDataManager() {
58   MEDDataManager_i * medDataManager = MEDDataManager_i::getInstance();
59   MEDOP::MEDDataManager_ptr medDataManagerPtr = medDataManager->_this();
60   return medDataManagerPtr;
61 }
62
63 MEDOP::MEDCalculator_ptr MEDOPFactory_i::getCalculator() {
64   MEDCalculator_i * medCalculator = MEDCalculator_i::getInstance();
65   MEDOP::MEDCalculator_ptr medCalculatorPtr = medCalculator->_this();
66   return medCalculatorPtr;
67 }
68
69 extern "C"
70 {
71   PortableServer::ObjectId * MEDOPFactoryEngine_factory(
72                                CORBA::ORB_ptr orb,
73                                PortableServer::POA_ptr poa, 
74                                PortableServer::ObjectId * contId,
75                                const char *instanceName, 
76                                const char *interfaceName)
77   {
78     MESSAGE("PortableServer::ObjectId * MEDOPEngine_factory()");
79     SCRUTE(interfaceName);
80     MEDOPFactory_i * factory = new MEDOPFactory_i(orb, poa, contId,
81                                                   instanceName,
82                                                   interfaceName);
83     return factory->getId() ;
84   }
85 }