Salome HOME
SMH: 3.0.0 preparation = merged version (POLYWORK + RTVDEBUG01) + adopation for new GUI
[modules/superv.git] / src / Supervision / Graph_Impl.hxx
1 //  SUPERV Supervision : contains the implementation of interfaces of SuperVision described in SUPERV.idl
2 //
3 //  Copyright (C) 2003  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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : Graph_Impl.hxx
25 //  Author : Jean Rahuel
26 //  Module : SUPERV
27 //  $Header: 
28
29 #ifndef _GRAPH_IMPL_HXX_
30 #define _GRAPH_IMPL_HXX_
31
32 //#include <iostream.h>
33
34 #include "CORBA.h"
35
36 #include <SALOMEconfig.h>
37 #include "SALOME_Component_i.hxx"
38 #include "SALOME_LifeCycleCORBA.hxx"
39
40 #include "StreamLink_Impl.hxx"
41 #include "FNode_Impl.hxx"
42 #include "GNode_Impl.hxx"
43 #include "LNode_Impl.hxx"
44 #include "ELNode_Impl.hxx"
45 #include "SNode_Impl.hxx"
46 #include "ESNode_Impl.hxx"
47
48 #include "DataFlowEditor_DataFlow.hxx"
49 #include "DataFlowExecutor_DataFlow.hxx"
50
51 class Graph_Impl : public POA_SUPERV::Graph ,
52                    public GNode_Impl {
53   private:
54
55     CORBA::ORB_ptr             _Orb ;
56     PortableServer::POA_ptr    _Poa ;
57     PortableServer::ObjectId * _ContId ;
58
59     SALOME_NamingService *     _NamingService ;
60     char * _DebugFileName ;
61
62     pthread_mutex_t            _MutexExecutorWait ;
63 //    GraphExecutor::DataFlow *  _DataFlowExecutor ;
64
65     SUPERV::Graph_var          myServant; // mpv 23.12.2002: store servant of graph to get constant IOR
66
67   public:
68     Graph_Impl();
69     Graph_Impl( CORBA::ORB_ptr orb ,
70                 PortableServer::POA_ptr poa ,
71                 PortableServer::ObjectId * contId , 
72                 const char *instanceName ,
73                 const char *interfaceName ,
74                 const char *aDataFlowName ,
75                 const SUPERV::KindOfNode aKindOfNode ) ;
76     Graph_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 * DataFlowEditor ,
82                 GraphEditor::InNode * DataFlowNode ) ;
83     virtual SUPERV::Graph_ptr Copy() ;
84
85     virtual ~Graph_Impl() ;
86     virtual void destroy() ;
87
88     void DebugFileName( char * aDebugFileName ) {
89          _DebugFileName = my_strdup( aDebugFileName ) ; } ;
90     char * DebugFileName() {
91            return _DebugFileName ; } ;
92
93     virtual char* getIOR();
94
95     virtual void ReadOnly() ;
96
97     virtual SUPERV::INode_ptr Node() ;
98
99 //    virtual char * DataFlowInfo() ;
100 //    virtual char * DataNodeInfo() ;
101 //    virtual char * NodeInfo( const char * aNodeName ) ;
102
103     virtual GraphBase::ListOfSGraphs * GetGraphs() ;
104
105     virtual bool LoadGraphs( GraphBase::ListOfSGraphs *aListOfGraphs ) ;
106     virtual bool Import(const char * aXmlFile ) ;
107
108     virtual bool Export(const char * aXmlFile ) ;
109
110     virtual char * SavePY( bool importSuperV ) ;
111
112     virtual SUPERV::CNode_ptr CNode(
113                           const SALOME_ModuleCatalog::Service &NodeService ) ;
114     virtual SUPERV::FNode_ptr FNode(
115                           const char * NodeComponentName ,
116                           const char * InterfaceName ,
117                           const SALOME_ModuleCatalog::Service &NodeService ) ;
118     virtual SUPERV::INode_ptr INode(
119                           const char * FuncName ,
120                           const SUPERV::ListOfStrings & PythonFunction ) ;
121     virtual SUPERV::GNode_ptr GNode(
122                           const char * FuncName ,
123                           const SUPERV::ListOfStrings & PythonFunction ,
124                           const char * anInLineNode ) ;
125     virtual SUPERV::LNode_ptr LNode(
126                           const char * InitName ,
127                           const SUPERV::ListOfStrings & InitFunction ,
128                           const char * MoreName ,
129                           const SUPERV::ListOfStrings & MoreFunction ,
130                           const char * NextName ,
131                           const SUPERV::ListOfStrings & NextFunction ,
132                           SUPERV::INode_out anEndOfLoop ) ;
133     virtual SUPERV::SNode_ptr SNode(
134                           const char * FuncName ,
135                           const SUPERV::ListOfStrings & PythonFunction ,
136                           SUPERV::INode_out anEndOfSwitch ) ;
137
138     SUPERV::Graph_var LoadDataFlows( GraphEditor::DataFlow * aDataFlowEditor ,
139                                      GraphBase::ListOfSGraphs * aListOfDataFlows ,
140                                      int index ) ;
141     SUPERV::Graph_var LoadDataFlows( GraphExecutor::DataFlow * aDataFlowExecutor ,
142                                      GraphBase::ListOfSGraphs * aListOfDataFlows ,
143                                      int index ) ;
144     virtual SUPERV::Graph_ptr MNode( const char * aXmlFileName ) ;
145
146     virtual SUPERV::Graph_ptr MNode( GraphEditor::DataFlow * aDataFlowEditor ,
147                                      GraphBase::ListOfSGraphs * aListOfDataFlows ) ;
148
149     virtual SUPERV::Graph_ptr GraphMNode( SUPERV::Graph_ptr aGraph ) ;
150
151     virtual SUPERV::Graph_ptr FlowObjRef() ;
152
153     virtual SUPERV::StreamGraph_ptr StreamObjRef() ;
154
155     virtual SUPERV::CNode_ptr Node( const char * NodeName );
156
157     virtual SUPERV::Link_ptr Link( SUPERV::Port_ptr OutPort ,
158                                    SUPERV::Port_ptr InPort ) ;
159
160     virtual SUPERV::ListOfNodes_var Graph_Impl::SetNode( SUPERV::ListOfNodes_var RetVal ,
161                                                          GraphBase::ComputingNode * aNode ) ;
162     virtual SUPERV::ListOfNodes * Nodes() ;
163     virtual void SetNodeObjRef( GraphEditor::InNode * anInNode ) ;
164
165     virtual SUPERV::ListOfLinks * GLinks() ;
166     virtual SUPERV::ListOfLinks * Links( GraphBase::ComputingNode * aNode ,
167                                          const char * anInputParam ) ;
168
169     virtual Engines::Component_ptr ComponentRef( const char * aComputerContainer ,
170                                                  const char * aComponentName ) ;
171
172     virtual bool IsValid() ;
173     virtual bool IsExecutable() ;
174
175     virtual bool IsEditing() ;
176     virtual bool IsExecuting() ;
177
178     virtual bool IsReadOnly() ;
179
180     virtual long LevelMax() ;
181     virtual SUPERV::ListOfNodes * LevelNodes(long aLevel ) ;
182     virtual long ThreadsMax() ;
183     virtual long Threads() ;
184     virtual long SuspendedThreads() ;
185
186     virtual bool Run() ;   // called on "Execute Graph" command
187     virtual bool Start() ; // called on "Execute Graph Step-by-Step" command
188  
189     virtual bool Begin() ;
190     virtual long LastLevelDone() ;
191
192     virtual bool EventNoW( SUPERV::CNode_out aNode ,
193                            SUPERV::GraphEvent & anEvent ,
194                            SUPERV::GraphState & aState ) ;
195     virtual bool Event( SUPERV::CNode_out aNode ,
196                         SUPERV::GraphEvent & anEvent ,
197                         SUPERV::GraphState & aState ) ;
198     virtual bool EventW( SUPERV::CNode_out aNode ,
199                          SUPERV::GraphEvent & anEvent ,
200                          SUPERV::GraphState & aState ) ;
201     virtual long EventQSize() ;
202
203     virtual long SubGraphsNumber() ;
204     virtual SUPERV::ListOfNodes * SubGraphsNodes( const long aSubGraphNumber ) ;
205
206     virtual bool Merge(const SUPERV::Graph_ptr aGraph ) ;
207     virtual bool Merge(const SUPERV::Graph_ptr aGraph , map< string , int > & aMapOfNodes ) ;
208
209     virtual SUPERV::StreamGraph_ptr ToStreamGraph() ;
210
211     virtual void Editing(); // Destroy Executor and use only Editor and its data model
212
213 private:
214     bool run( const bool andSuspend = false ); // Run() calls run( false ), Start() calls run( true );
215
216 };
217
218
219 #endif