Salome HOME
436a59eff60baca4b19047dd02a06322d1cb71b5
[modules/superv.git] / src / Supervision / LNode_Impl.cxx
1 //  SUPERV Supervision : contains the implementation of interfaces of SuperVision described in SUPERV.idl
2 //
3 //  Copyright (C) 2003  CEA/DEN, EDF R&D
4 //
5 //
6 //
7 //  File   : LNode_Impl.cxx
8 //  Author : Jean Rahuel
9 //  Module : SUPERV
10 //  $Header: 
11
12 using namespace std;
13 #include <stdio.h>
14 #include <fstream>
15 //#include <sstream>
16 #include <string>
17
18 //#include "utilities.h"
19
20 #include "LNode_Impl.hxx"
21
22 LNode_Impl::LNode_Impl() {
23 }
24
25 LNode_Impl::LNode_Impl( CORBA::ORB_ptr orb ,
26                         PortableServer::POA_ptr poa ,
27                         PortableServer::ObjectId * contId , 
28                         const char *instanceName ,
29                         const char *interfaceName ,
30                         GraphEditor::DataFlow * aDataFlowEditor ,
31                         GraphBase::ListOfFuncName FuncNameList ,
32                         GraphBase::ListOfPythonFunctions PythonFunctionList ,
33 //                        const char * InitName , 
34 //                        const SUPERV::ListOfStrings & anInitPythonFunction ,
35 //                        const char * MoreName , 
36 //                        const SUPERV::ListOfStrings & aMorePythonFunction ,
37 //                        const char * NextName , 
38 //                        const SUPERV::ListOfStrings & aNextPythonFunction ,
39                         const SUPERV::KindOfNode NodeKindOfNode ) :
40 //  Engines_Component_i(orb, poa, contId, instanceName, interfaceName, false, false) {
41 //  GNode_Impl( orb , poa , contId , instanceName , interfaceName , aDataFlowEditor , InitName , anInitPythonFunction , NodeKindOfNode ) {
42   GNode_Impl( orb , poa , contId , instanceName , interfaceName , aDataFlowEditor , FuncNameList , PythonFunctionList , NodeKindOfNode ) {
43 //  MESSAGE( NodeName << " " );
44   beginService( "LNode_Impl::LNode_Impl" );
45   _thisObj = this ;
46   _id = _poa->activate_object(_thisObj);
47   _Orb = CORBA::ORB::_duplicate(orb);
48   _Poa = poa ;
49   _ContId = contId ;
50 //  DataFlowNode()->SetPyMorePythonFunction( MoreName , aMorePythonFunction ) ;
51 //  DataFlowNode()->SetPyNextPythonFunction( NextName , aNextPythonFunction ) ;
52   endService( "LNode_Impl::LNode_Impl" );  
53 }
54
55 LNode_Impl::LNode_Impl( CORBA::ORB_ptr orb ,
56                       PortableServer::POA_ptr poa ,
57                       PortableServer::ObjectId * contId , 
58                       const char *instanceName ,
59                       const char *interfaceName ,
60                       GraphEditor::DataFlow * aDataFlowEditor ,
61                       GraphEditor::InNode * aDataFlowNode ) :
62 //  Engines_Component_i(orb, poa, contId, instanceName, interfaceName, false, false) {
63   GNode_Impl( orb , poa , contId , instanceName , interfaceName , aDataFlowEditor , aDataFlowNode ) {
64   MESSAGE( DataFlowNode()->Name() << " " );
65   beginService( "LNode_Impl::LNode_Impl" );
66   _thisObj = this ;
67   _id = _poa->activate_object(_thisObj);
68   _Orb = CORBA::ORB::_duplicate(orb);
69   _Poa = poa ;
70   _ContId = contId ;
71   endService( "LNode_Impl::LNode_Impl" );  
72 }
73
74 LNode_Impl::~LNode_Impl() {
75   beginService( "LNode_Impl::~LNode_Impl" );
76   endService( "LNode_Impl::~LNode_Impl" );
77 }
78
79 void LNode_Impl::destroy() {
80   beginService( "LNode_Impl::Destroy" );
81   if ( DataFlowEditor()->IsEditing() ) {
82     SUPERV::GNode_ptr aCoupled = SUPERV::GNode::_narrow( Coupled() ) ;
83     if ( Delete() ) {
84       _poa->deactivate_object(*_id) ;
85       CORBA::release(_poa) ;
86       delete(_id) ;
87       _thisObj->_remove_ref();
88     }
89     if ( !CORBA::is_nil( aCoupled ) ) {
90       aCoupled->SetCoupled( "" ) ;
91       aCoupled->destroy() ;
92     }
93   }
94   endService( "LNode_Impl::Destroy" );
95 }
96
97 bool LNode_Impl::Delete() {
98   beginService( "LNode_Impl::Delete" );
99   bool RetVal = false ;
100   if ( DataFlowEditor()->IsEditing() ) {
101     RetVal = DataFlowEditor()->RemoveNode( Name() ) ;
102     if ( RetVal ) {
103       RetVal = DataFlowEditor()->IsValid() ;
104     }
105   }
106   endService( "LNode_Impl::Delete" );
107   return RetVal ;
108 }
109
110 void LNode_Impl::SetPyInit( const char * InitName ,
111                             const SUPERV::ListOfStrings & aPyInit ) {
112   beginService( "LNode_Impl::SetPyInit" );
113   SetPyFunction( InitName , aPyInit ) ;
114   endService( "LNode_Impl::SetPyInit" );
115   return ;
116 }
117
118 SUPERV::ListOfStrings * LNode_Impl::PyInit() {
119   SUPERV::ListOfStrings * aPythonFunction ;
120   beginService( "LNode_Impl::PyInit" );
121   aPythonFunction = PyFunction() ;
122   endService( "LNode_Impl::PyInit" );
123   return aPythonFunction ;
124 }
125
126 char * LNode_Impl::PyInitName() {
127   beginService( "LNode_Impl::PyInitName" );
128   char * RetVal = PyFuncName() ;
129   endService( "LNode_Impl::PyInitName" );
130   return CORBA::string_dup( RetVal ) ;
131 }
132
133 void LNode_Impl::SetPyMore( const char * MoreName ,
134                             const SUPERV::ListOfStrings & aPyMore ) {
135   beginService( "LNode_Impl::SetPyMore" );
136   DataFlowNode()->SetPyMorePythonFunction( MoreName , aPyMore ) ;
137   endService( "LNode_Impl::SetPyMore" );
138   return ;
139 }
140
141 SUPERV::ListOfStrings * LNode_Impl::PyMore() {
142   SUPERV::ListOfStrings * aPythonFunction ;
143   beginService( "LNode_Impl::PyMore" );
144   aPythonFunction = DataFlowNode()->PyMorePythonFunction() ;
145   endService( "LNode_Impl::PyMore" );
146   return aPythonFunction ;
147 }
148
149 char * LNode_Impl::PyMoreName() {
150   beginService( "LNode_Impl::PyMoreName" );
151   char * RetVal = DataFlowNode()->PyMoreName() ;
152   endService( "LNode_Impl::PyMoreName" );
153   return CORBA::string_dup( RetVal ) ;
154 }
155
156 void LNode_Impl::SetPyNext( const char * NextName ,
157                             const SUPERV::ListOfStrings & aPyNext ) {
158   beginService( "LNode_Impl::SetPyNext" );
159   DataFlowNode()->SetPyNextPythonFunction( NextName , aPyNext ) ;
160   endService( "LNode_Impl::SetPyNext" );
161   return ;
162 }
163
164 SUPERV::ListOfStrings * LNode_Impl::PyNext() {
165   SUPERV::ListOfStrings * aPythonFunction ;
166   beginService( "LNode_Impl::PyNext" );
167   aPythonFunction = DataFlowNode()->PyNextPythonFunction() ;
168   endService( "LNode_Impl::PyNext" );
169   return aPythonFunction ;
170 }
171
172 char * LNode_Impl::PyNextName() {
173   beginService( "LNode_Impl::PyNextName" );
174   char * RetVal = DataFlowNode()->PyNextName() ;
175   endService( "LNode_Impl::PyNextName" );
176   return CORBA::string_dup( RetVal );
177 }
178
179