Salome HOME
Join modifications from BR_Dev_For_4_0 tag V4_1_1.
[modules/superv.git] / src / GraphBase / DataFlowBase_InPort.cxx
1 //  SUPERV GraphBase : contains fondamental classes for Services, Input Ports, Output Ports Links and Nodes.
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.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 //
23 //
24 //  File   : DataFlowBase_InPort.cxx
25 //  Author : Jean Rahuel, CEA
26 //  Module : SUPERV
27 //  $Header:
28
29 using namespace std;
30 #include "DataFlowBase_InPort.hxx"
31 #include "DataFlowBase_OutPort.hxx"
32
33 char ** _PortStateName ;
34
35 GraphBase::InPort::InPort() :
36            Port() {
37   _PortState = SUPERV::UndefinedState ;
38   _OutPort = NULL ;
39   _InitialOutPort = NULL ;
40 }
41
42 GraphBase::InPort::InPort(
43             const char *const * Name  ,
44             const SALOME_ModuleCatalog::ServicesParameter aserviceParameter ,
45             const SUPERV::KindOfPort aKind ,
46             const SALOME_ModuleCatalog::DataStreamDependency aDependency ) :
47           Port( Name , aserviceParameter , aKind , aDependency ) {
48   _PortState = SUPERV::UndefinedState ;
49   _OutPort = NULL ;
50   _InitialOutPort = NULL ;
51 }
52
53 //GraphBase::InPort::~InPort() {
54 //  cout << "InPort::~InPort()" << endl ;
55 //}
56
57 const StatusOfPort GraphBase::InPort::PortStatus() const {
58   if ( GetOutPort() ) {
59     return GetOutPort()->PortStatus() ;
60   }
61   return NotConnected ;
62 }
63
64 bool GraphBase::InPort::IsNotConnected() const {
65   return ( GetOutPort() == NULL || GetOutPort()->IsNotConnected() ) ;
66 }
67
68 //bool GraphBase::InPort::IsConnected() const {
69 //  return ( GetOutPort() && ( GetOutPort()->IsPortConnected() || GetOutPort()->IsExternConnected() ) ) ;
70 //}
71
72 bool GraphBase::InPort::IsPortConnected() const {
73   return ( GetOutPort() && GetOutPort()->IsPortConnected() ) ;
74 }
75
76 bool GraphBase::InPort::IsDataConnected() const {
77   return ( GetOutPort() && GetOutPort()->IsDataConnected() ) ;
78 }
79
80 bool GraphBase::InPort::IsExternConnected() const {
81   return ( GetOutPort() && GetOutPort()->IsExternConnected() ) ;
82 }
83
84 void GraphBase::InPort::StringValue(ostream & f ) const {
85   if ( GetOutPort() )
86     GetOutPort()->StringValue( f ) ;
87   else
88     f << "(undefined)" ;
89 }
90
91 bool GraphBase::InPort::ChangeOutPort( OutPort * anOutPort ) {
92   if ( _OutPort ) {
93 //    cdebug << "InPort::ChangeOutPort OutPort of InPort " << NodeName() << "( "
94 //           << PortName() << " ) : " << _OutPort->NodeName() << "( "
95 //           << _OutPort->PortName() << " ) changed to " << anOutPort->NodeName()
96 //           << "( " << anOutPort->PortName() << " )" << endl ;
97 //    cout << "InPort::ChangeOutPort OutPort of InPort " << NodeName() << "( "
98 //         << PortName() << " ) : " << _OutPort->NodeName() << "( "
99 //         << _OutPort->PortName() << " ) changed to " << anOutPort->NodeName()
100 //         << "( " << anOutPort->PortName() << " )" << endl ;
101   }
102   if ( _InitialOutPort == NULL ) {
103     _InitialOutPort = _OutPort ;
104   }
105   _OutPort = anOutPort ;
106   return true ;
107 }
108
109 bool GraphBase::InPort::RemoveOutPort( bool DoRemoveInPort ) {
110 // Before to return the real status, callers should be checked ...
111   if ( _OutPort == NULL ) {
112     cdebug << "InPort::RemoveOutPort no OutPort in InPort " << PortName() << " of " << NodeName() << endl ;
113     return false ;
114   }
115   cdebug << "InPort::RemoveOutPort " << _OutPort->NodeName() << "(" << _OutPort->PortName() << ") --> "
116          << NodeName() << "(" << PortName() << ") in InPort " << PortName() << " of " << NodeName() << endl ;
117   if ( !IsEndSwitch() ) {
118 //JR 08.06.2005 : RemoveOutPort <==> delete of a link ==> RemoveInPort corresponding
119     if ( DoRemoveInPort ) {
120       _OutPort->RemoveInPort( this ) ;
121     }
122     RemoveCoords() ;
123     _OutPort = NULL ;
124   }
125   else {
126     _OutPort = NULL ;
127     Kind( SUPERV::InLineParameter ) ;
128   }
129   return true ;
130 }
131
132 ostream & operator<< (ostream &f ,const GraphBase::InPort &P) {
133   f << P.PortName() << ", " << "type : " << P.PortType() << ", " << P.PortStatus() << ", " ;
134   f << "from Node " << P.NodeName() << ", ";
135   f << "kind " << P.Kind() << ", ";
136   f << "Status " << P.PortStatus() << ", ";
137   GraphBase::OutPort * anOutPort = P.GetOutPort() ;
138   if ( anOutPort ) {
139     f << "Linked from OutPort " << anOutPort->PortName() << ", " << "type : " << anOutPort->PortType() << ", " ;
140     f << "from Node " << anOutPort->NodeName() << ", ";
141     f << "kind " << anOutPort->Kind() << ", ";
142     f << "Status " << anOutPort->PortStatus() << ", ";
143   }
144   return f;
145 }
146
147 ostream & operator<< (ostream &f ,const SUPERV::GraphState & aPortState ) {
148   switch (aPortState) {
149   case SUPERV::UndefinedState :
150     f << "UndefinedState";
151     break;
152   case SUPERV::NoState :
153     f << "NoState";
154     break;
155   case SUPERV::EditingState :
156     f << "EditingState";
157     break;
158   case SUPERV::SuspendState :
159     f << "SuspendState";
160     break;
161   case SUPERV::WaitingState :
162     f << "WaitingState";
163     break;
164   case SUPERV::ReadyState :
165     f << "ReadyState";
166     break;
167   case SUPERV::SuspendReadyState :
168     f << "SuspendReadyState";
169     break;
170   case SUPERV::RunningState :
171     f << "RunningState";
172     break;
173   case SUPERV::DoneState :
174     f << "DoneState";
175     break;
176   case SUPERV::ErrorState :
177     f << "ErrorState";
178     break;
179   case SUPERV::SuspendDoneState :
180     f << "SuspendDoneState";
181     break;
182   case SUPERV::SuspendErroredState :
183     f << "SuspendErroredState";
184     break;
185   case SUPERV::KillState :
186     f << "KillState";
187     break;
188   case SUPERV::StopState :
189     f << "StopState";
190     break;
191   default :
192     f << "SUPERV::GraphState_?";
193     break;
194   }
195
196   return f;
197 }
198