Salome HOME
Delete : ignore the return value of UnValid
[modules/superv.git] / src / Supervision / INode_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   : INode_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 INode_Impl::INode_Impl( CORBA::ORB_ptr orb ,
23                        PortableServer::POA_ptr poa ,
24                        PortableServer::ObjectId * contId , 
25                        const char *instanceName ,
26                        const char *interfaceName ,
27                        const char *aDataFlowName ,
28                        const SUPERV::KindOfNode aKindOfNode ) :
29 //  Engines_Component_i(orb, poa, contId, instanceName, interfaceName, false, false) {
30   CNode_Impl( orb , poa , contId , instanceName , interfaceName , aDataFlowName , aKindOfNode ) {
31 //  MESSAGE("INode_Impl::INode_Impl activate object instanceName("
32 //          << instanceName << ") interfaceName(" << interfaceName << ") --> "
33 //          << hex << (void *) this << dec )
34 //  _thisObj = this ;
35 //  _id = _poa->activate_object(_thisObj);
36 //  MESSAGE( "INode_Impl::INode_Impl " << aDataFlowName );
37 //  beginService( "INode_Impl::INode_Impl" );
38   _Orb = CORBA::ORB::_duplicate(orb);
39   _Poa = poa ;
40   _ContId = contId ;
41 //  endService( "INode_Impl::INode_Impl" );  
42 }
43
44 INode_Impl::INode_Impl() {
45 }
46
47 INode_Impl::INode_Impl( CORBA::ORB_ptr orb ,
48                         PortableServer::POA_ptr poa ,
49                         PortableServer::ObjectId * contId , 
50                         const char *instanceName ,
51                         const char *interfaceName ,
52                         GraphEditor::DataFlow * aDataFlowEditor ,
53                         const char * FuncName , 
54                         const SUPERV::ListOfStrings & aPythonFunction ,
55                         const SUPERV::KindOfNode NodeKindOfNode ) :
56 //  Engines_Component_i(orb, poa, contId, instanceName, interfaceName, false, false) {
57   CNode_Impl( orb , poa , contId , instanceName , interfaceName , aDataFlowEditor , SALOME_ModuleCatalog::Service() , FuncName , NodeKindOfNode , FuncName , aPythonFunction ) {
58 //  beginService( "INode_Impl::INode_Impl" );
59   if ( FuncName ) {
60 //    cout << "INode_Impl::CNode_Impl " << (void *) FuncName << " " << FuncName
61 //         << " " << strlen( FuncName ) << endl ;
62   }
63   if ( NodeKindOfNode == SUPERV::InLineNode ) {
64 //    MESSAGE( "INode_Impl::INode_Impl " << FuncName << " _poa->activate_object" );
65     _thisObj = this ;
66     _id = _poa->activate_object(_thisObj);
67   }
68 //  MESSAGE("INode_Impl::INode_Impl " << FuncName << " " << strlen( FuncName ) ) ;
69   _Orb = CORBA::ORB::_duplicate(orb);
70   _Poa = poa ;
71   _ContId = contId ;
72 //  DataFlowNode()->SetPythonFunction( FuncName , aPythonFunction ) ;
73 //  endService( "INode_Impl::INode_Impl" );  
74 }
75
76 INode_Impl::INode_Impl( CORBA::ORB_ptr orb ,
77                         PortableServer::POA_ptr poa ,
78                         PortableServer::ObjectId * contId , 
79                         const char *instanceName ,
80                         const char *interfaceName ,
81                         GraphEditor::DataFlow * aDataFlowEditor ,
82                         const GraphBase::ListOfFuncName FuncName , 
83                         const GraphBase::ListOfPythonFunctions aPythonFunction ,
84                         const SUPERV::KindOfNode NodeKindOfNode ) :
85 //  Engines_Component_i(orb, poa, contId, instanceName, interfaceName, false, false) {
86   CNode_Impl( orb , poa , contId , instanceName , interfaceName , aDataFlowEditor , SALOME_ModuleCatalog::Service() , FuncName[0].c_str() , NodeKindOfNode , FuncName , aPythonFunction ) {
87 //  beginService( "INode_Impl::INode_Impl" );
88   if ( NodeKindOfNode == SUPERV::InLineNode ) {
89 //    MESSAGE( "INode_Impl::INode_Impl " << FuncName[0] << " _poa->activate_object" );
90     _thisObj = this ;
91     _id = _poa->activate_object(_thisObj);
92   }
93 //  MESSAGE("INode_Impl::INode_Impl " << FuncName[0].c_str() << " " << strlen( FuncName[0].c_str() ) ) ;
94   _Orb = CORBA::ORB::_duplicate(orb);
95   _Poa = poa ;
96   _ContId = contId ;
97 //  DataFlowNode()->SetPythonFunction( FuncName , aPythonFunction ) ;
98 //  endService( "INode_Impl::INode_Impl" );  
99 }
100
101 INode_Impl::INode_Impl( CORBA::ORB_ptr orb ,
102                         PortableServer::POA_ptr poa ,
103                         PortableServer::ObjectId * contId , 
104                         const char *instanceName ,
105                         const char *interfaceName ,
106                         GraphEditor::DataFlow * aDataFlowEditor ,
107                         GraphEditor::InNode * aDataFlowNode ) :
108 //  Engines_Component_i(orb, poa, contId, instanceName, interfaceName, false, false) {
109   CNode_Impl( orb , poa , contId , instanceName , interfaceName , aDataFlowEditor , aDataFlowNode ) {
110 //  beginService( "INode_Impl::INode_Impl" );
111   if ( DataFlowNode() && DataFlowNode()->IsInLineNode() ) {
112 //    MESSAGE( "INode_Impl::INode_Impl " << DataFlowNode()->PyFuncName()
113 //             << " _poa->activate_object" );
114     _thisObj = this ;
115     _id = _poa->activate_object(_thisObj);
116   }
117   else {
118 //    MESSAGE( "INode_Impl::INode_Impl NO _poa->activate_object" );
119   }
120   _Orb = CORBA::ORB::_duplicate(orb);
121   _Poa = poa ;
122   _ContId = contId ;
123 //  endService( "INode_Impl::INode_Impl" );  
124 }
125
126 INode_Impl::~INode_Impl() {
127   beginService( "INode_Impl::~INode_Impl" );
128   endService( "INode_Impl::~INode_Impl" );
129 }
130
131 void INode_Impl::destroy() {
132   beginService( "INode_Impl::Destroy" );
133   if ( DataFlowEditor()->IsEditing() ) {
134     if ( Delete() ) {
135       _poa->deactivate_object(*_id) ;
136       CORBA::release(_poa) ;
137       delete(_id) ;
138       _thisObj->_remove_ref();
139     }
140     else {
141       MESSAGE("INode_Impl::destroy ERROR ") ;
142     }
143   }
144   endService( "INode_Impl::Destroy" );
145 }
146
147 bool INode_Impl::Delete() {
148 //  beginService( "INode_Impl::Delete" );
149   bool RetVal = false ;
150   if ( DataFlowEditor()->IsEditing() ) {
151     DeletePorts() ;
152     RetVal = DataFlowEditor()->RemoveNode( Name() ) ;
153     if ( RetVal )
154       DataFlowEditor()->UnValid() ;
155   }
156 //  endService( "INode_Impl::Delete" );
157   return RetVal ;
158 }
159
160 void INode_Impl::SetPyFunction( const char * FuncName ,
161                                 const SUPERV::ListOfStrings & aPyFunction ) {
162   beginService( "INode_Impl::SetPyFunction" );
163   if ( DataFlowEditor()->IsEditing() ) {
164     DataFlowNode()->SetPythonFunction( FuncName , aPyFunction ) ;
165   }
166   endService( "INode_Impl::SetPyFunction" );
167   return ;
168 }
169
170 SUPERV::ListOfStrings * INode_Impl::PyFunction() {
171   beginService( "INode_Impl::PyFunction" );
172   SUPERV::ListOfStrings * aPyFunc = NULL ;
173   if ( DataFlowEditor()->IsEditing() ) {
174     aPyFunc = new SUPERV::ListOfStrings( *DataFlowNode()->PythonFunction() ) ;
175   }
176   else {
177     aPyFunc = new SUPERV::ListOfStrings() ;
178   }
179   endService( "INode_Impl::PyFunction" );
180   return aPyFunc ;
181 }
182
183 char * INode_Impl::PyFuncName() {
184   return CORBA::string_dup( DataFlowNode()->PyFuncName() ) ;
185 }
186
187 SUPERV::Port_ptr INode_Impl::InPort( const char *aParameterName ,
188                                      const char *aParameterType ) {
189   SUPERV::Port_ptr Inobject = SUPERV::Port::_nil() ;
190   SUPERV::Port_ptr Outobject = SUPERV::Port::_nil() ;
191   SUPERV::Port_ptr InEndobject = SUPERV::Port::_nil() ;
192   Port_Impl * myInPort = NULL ;
193   bool InPortCreated = false ;
194 //  MESSAGE( "CNode_Impl::InPort " << DataFlowNode()->Name() << "->AddInPort( " << aParameterName << " , "
195 //           << aParameterType << " )" ) ;
196   GraphBase::InPort * anInPort = DataFlowNode()->GetChangeInPort( aParameterName ) ;
197   if ( anInPort == NULL ) {
198     anInPort = DataFlowNode()->AddInPort( aParameterName , aParameterType , SUPERV::InLineParameter ) ;
199     InPortCreated = true ;
200   }
201   if ( anInPort ) {
202     Inobject = anInPort->ObjRef() ;
203     if ( CORBA::is_nil( Inobject ) ) {
204       myInPort = new Port_Impl( _Orb , _Poa , _ContId ,
205                                 instanceName() , interfaceName() ,
206                                 DataFlowEditor() ,
207                                 DataFlowNode() ,
208                                 (GraphBase::Port * ) anInPort ,
209                                 true ) ;
210       if ( myInPort ) {
211         PortableServer::ObjectId * id = myInPort->getId() ;
212         CORBA::Object_var obj = _poa->id_to_reference(*id) ;
213         Inobject = SUPERV::Port::_narrow(obj) ;
214       }      
215     }
216   }
217
218   if ( !CORBA::is_nil( Inobject ) && InPortCreated &&
219        ( DataFlowNode()->IsLoopNode() || DataFlowNode()->IsEndLoopNode() ) ) {
220 //         || DataFlowNode()->IsEndSwitchNode() ) ) {
221     Outobject = OutPort( aParameterName , aParameterType ) ;
222     if ( DataFlowNode()->IsLoopNode() ) {
223       LNode_Impl * myLoopNode = (LNode_Impl * ) this ;
224       InEndobject = myLoopNode->Coupled()->InPort( aParameterName , aParameterType ) ;
225       DataFlowEditor()->AddLink( Outobject->Node()->Name() , Outobject->Name() ,
226                                  InEndobject->Node()->Name() , InEndobject->Name() ) ;
227     }
228   }
229   DataFlowEditor()->UnValid() ;
230   return SUPERV::Port::_duplicate( Inobject ) ;
231 }
232
233 SUPERV::Port_ptr INode_Impl::OutPort( const char *aParameterName ,
234                                       const char *aParameterType ) {
235   Port_Impl * myOutPort = NULL ;
236   SUPERV::Port_ptr Outobject = SUPERV::Port::_nil() ;
237 //  MESSAGE( "CNode_Impl::OutPort " << DataFlowNode()->Name() << "->AddOutPort( " << aParameterName << " , "
238 //           << aParameterType << " )" ) ;
239   GraphBase::OutPort * anOutPort = DataFlowNode()->GetChangeOutPort( aParameterName ) ;
240   if ( anOutPort == NULL ) {
241     anOutPort = DataFlowNode()->AddOutPort( aParameterName , aParameterType , SUPERV::InLineParameter ) ;
242   }
243   if ( anOutPort ) {
244     Outobject = anOutPort->ObjRef() ;
245     if ( CORBA::is_nil( Outobject ) ) {
246       const CORBA::Any * anAny = anOutPort->Value() ;
247       myOutPort = new Port_Impl( _Orb , _Poa , _ContId ,
248                                  instanceName() , interfaceName() ,
249                                  DataFlowEditor() ,
250                                  DataFlowNode() ,
251                                  (GraphBase::Port * ) anOutPort ,
252                                  false ,
253                                  anAny ) ;
254       if ( myOutPort ) {
255         PortableServer::ObjectId * id = myOutPort->getId() ;
256         CORBA::Object_var obj = _poa->id_to_reference(*id) ;
257         Outobject = SUPERV::Port::_narrow(obj) ;
258       }
259     }
260   }
261   DataFlowEditor()->UnValid() ;
262   return SUPERV::Port::_duplicate( Outobject );
263 }
264
265 SUPERV::StreamPort_ptr INode_Impl::InStreamPort( const char *aParameterName ,
266                                                  const SALOME_ModuleCatalog::DataStreamType aParameterType ,
267                                                  const SALOME_ModuleCatalog::DataStreamDependency aDependency ) {
268   SUPERV::StreamPort_ptr Inobject = SUPERV::StreamPort::_nil() ;
269   if ( DataFlowEditor()->Graph()->IsDataStreamNode() ) {
270     StreamPort_Impl * myInStreamPort = NULL ;
271     bool InPortCreated = false ;
272     MESSAGE( "INode_Impl::InStreamPort " << DataFlowNode()->Name() << "->AddInPort( " << aParameterName << " , "
273              << aParameterType << " )" ) ;
274     GraphBase::InPort * anInPort = DataFlowNode()->GetChangeInPort( aParameterName ) ;
275     if ( anInPort && !anInPort->IsDataStream() ) {
276       MESSAGE( "INode_Impl::InStreamPort ERROR !IsDataStream " ) ;
277     }
278     else if ( DataFlowEditor()->Graph()->IsDataStreamNode() ) {
279       if ( anInPort == NULL ) {
280         anInPort = DataFlowNode()->ComputingNode()->AddInDataStreamPort( aParameterName , aParameterType , aDependency , SUPERV::DataStreamParameter ) ;
281         InPortCreated = true ;
282       }
283
284       if ( anInPort ) {
285         Inobject = SUPERV::StreamPort::_narrow( anInPort->ObjRef() ) ;
286         if ( CORBA::is_nil( Inobject ) ) {
287           myInStreamPort = new StreamPort_Impl( _Orb , _Poa , _ContId ,
288                                 instanceName() , interfaceName() ,
289                                 DataFlowEditor() ,
290                                 DataFlowNode() ,
291                                 (GraphBase::Port * ) anInPort ,
292                                 true ) ;
293           if ( myInStreamPort ) {
294             PortableServer::ObjectId * id = myInStreamPort->getId() ;
295             CORBA::Object_var obj = _poa->id_to_reference(*id) ;
296             Inobject = SUPERV::StreamPort::_narrow(obj) ;
297             anInPort->ObjRef( SUPERV::StreamPort::_duplicate( Inobject ) ) ;
298           }
299         }
300       }
301     }
302
303 //    if ( !CORBA::is_nil( Inobject ) && InPortCreated &&
304 //         ( DataFlowNode()->IsLoopNode() || DataFlowNode()->IsEndLoopNode() ||
305 //           DataFlowNode()->IsEndSwitchNode() ) ) {
306 //      Outobject = OutPort( aParameterName , aParameterType ) ;
307 //      if ( DataFlowNode()->IsLoopNode() ) {
308 //        LNode_Impl * myLoopNode = (LNode_Impl * ) this ;
309 //        InEndobject = myLoopNode->Coupled()->InPort( aParameterName , aParameterType ) ;
310 //        DataFlowEditor()->AddLink( Outobject->Node()->Name() , Outobject->Name() ,
311 //                                   InEndobject->Node()->Name() , InEndobject->Name() ) ;
312 //      }
313 //    }
314     DataFlowEditor()->UnValid() ;
315   }
316   return SUPERV::StreamPort::_duplicate( Inobject ) ;
317 }
318
319 SUPERV::StreamPort_ptr INode_Impl::OutStreamPort( const char * aParameterName ,
320                                                   const SALOME_ModuleCatalog::DataStreamType aParameterType ,
321                                                   const SALOME_ModuleCatalog::DataStreamDependency aDependency ) {
322   StreamPort_Impl * myOutStreamPort = NULL ;
323   SUPERV::StreamPort_ptr Outobject = SUPERV::StreamPort::_nil() ;
324   if ( DataFlowEditor()->Graph()->IsDataStreamNode() ) {
325     MESSAGE( "INode_Impl::OutStreamPort " << DataFlowNode()->Name() << "->AddOutPort( " << aParameterName << " , "
326              << aParameterType << " )" ) ;
327     GraphBase::OutPort * anOutPort = DataFlowNode()->GetChangeOutPort( aParameterName ) ;
328     if ( anOutPort && !anOutPort->IsDataStream() ) {
329       MESSAGE( "INode_Impl::OutStreamPort ERROR !IsDataStream " ) ;
330     }
331     else if ( DataFlowEditor()->Graph()->IsDataStreamNode() ) {
332       if ( anOutPort == NULL ) {
333         anOutPort = DataFlowNode()->ComputingNode()->AddOutDataStreamPort( aParameterName , aParameterType , aDependency , SUPERV::DataStreamParameter ) ;
334       }
335
336       if ( anOutPort ) {
337         Outobject = SUPERV::StreamPort::_narrow( anOutPort->ObjRef() ) ;
338         if ( CORBA::is_nil( Outobject ) ) {
339           const CORBA::Any * anAny = anOutPort->Value() ;
340           myOutStreamPort = new StreamPort_Impl( _Orb , _Poa , _ContId ,
341                                  instanceName() , interfaceName() ,
342                                  DataFlowEditor() ,
343                                  DataFlowNode() ,
344                                  (GraphBase::Port * ) anOutPort ,
345                                  false ,
346                                  anAny ) ;
347           if ( myOutStreamPort ) {
348             PortableServer::ObjectId * id = myOutStreamPort->getId() ;
349             CORBA::Object_var obj = _poa->id_to_reference(*id) ;
350             Outobject = SUPERV::StreamPort::_narrow(obj) ;
351             anOutPort->ObjRef( SUPERV::StreamPort::_duplicate( Outobject ) ) ;
352           }
353         }
354       }
355     }
356     DataFlowEditor()->UnValid() ;
357   }
358   return SUPERV::StreamPort::_duplicate( Outobject );
359 }
360
361