Salome HOME
Merge branch 'omu/py2yacsgui'
[modules/yacs.git] / src / engine / Switch.cxx
1 // Copyright (C) 2006-2016  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #include "Switch.hxx"
21 #include "Visitor.hxx"
22 #include "LinkInfo.hxx"
23
24 #include <iostream>
25 #include <sstream>
26 #include <cassert>
27
28 //#define _DEVDEBUG_
29 #include "YacsTrace.hxx"
30
31 using namespace YACS::ENGINE;
32 using namespace std;
33
34 const char Switch::DEFAULT_NODE_NAME[]="default";
35 const int Switch::ID_FOR_DEFAULT_NODE=-1973012217;
36 const char Switch::SELECTOR_INPUTPORT_NAME[]="select";
37
38 int CollectorSwOutPort::edGetNumberOfOutLinks() const
39 {
40   return 1;
41 }
42
43 std::set<InPort *> CollectorSwOutPort::edSetInPort() const
44 {
45   set<InPort *> ret;
46   if(_consumer)
47     ret.insert(_consumer);
48   return ret;
49 }
50
51 bool CollectorSwOutPort::isAlreadyLinkedWith(InPort *with) const
52 {
53   set<InPort *> s;
54   with->getAllRepresentants(s);
55   return s.find(_consumer)!=s.end();
56 }
57
58 std::string CollectorSwOutPort::getNameOfTypeOfCurrentInstance() const
59 {
60   return _className;
61 }
62
63 void CollectorSwOutPort::edRemoveAllLinksLinkedWithMe() throw(YACS::Exception)
64 {
65   map<int, OutPort *>::iterator pt;
66   if(_consumer)
67     for(pt=_potentialProducers.begin();pt!=_potentialProducers.end();pt++)
68       ((*pt).second)->removeInPort(_consumer,true);
69 }
70
71 TypeOfChannel CollectorSwOutPort::getTypeOfChannel() const
72 {
73   return (*(_potentialProducers.begin())).second->getTypeOfChannel();
74 }
75
76 void CollectorSwOutPort::getAllRepresented(std::set<OutPort *>& represented) const
77 {
78   map<int, OutPort *>::const_iterator pt;
79   for(pt=_potentialProducers.begin();pt!=_potentialProducers.end();pt++)
80     ((*pt).second)->getAllRepresented(represented);
81 }
82
83 bool CollectorSwOutPort::addInPort(InPort *inPort) throw(YACS::Exception)
84 {
85   if(_currentProducer)
86     {//a specific link is beeing done
87       bool ret=_currentProducer->addInPort(inPort);
88       _currentProducer=0;
89       return ret;
90     }
91   else//global links asked
92     for(map<int, OutPort *>::iterator iter=_potentialProducers.begin();iter!=_potentialProducers.end();iter++)
93       (*iter).second->addInPort(inPort);
94 }
95
96 int CollectorSwOutPort::removeInPort(InPort *inPort, bool forward) throw(YACS::Exception)
97 {
98   if(_currentProducer)
99     {
100       return _currentProducer->removeInPort(inPort,forward);
101     }
102   else
103     throw Exception("CollectorSwOutputPort::edRemoveInputPort : internal error on link removal.");
104   _currentProducer=0;
105 }
106
107 /*!
108  * \note : 'master' specifies the instance of Switch of which 'this' collects all of these direct 
109  *          or indirect outports going to the same port 'port' (which is out of scope of 'master').
110  */
111 CollectorSwOutPort::CollectorSwOutPort(Switch *master, InPort *port):OutPort("",master,port->edGetType()),
112                                                                      DataPort("",master,port->edGetType()),
113                                                                      Port(master),
114                                                                      _consumer(port),_currentProducer(0)
115 {
116   _name="Representant_of_"; _name+=master->getName(); _name+="_for_inport_"; _name+=master->getRootNode()->getInPortName(_consumer);
117 }
118
119 CollectorSwOutPort::CollectorSwOutPort(const CollectorSwOutPort& other, Switch *master):OutPort("",master,other.edGetType()),
120                                                                                         DataPort("",master,other.edGetType()),
121                                                                                         Port(master),
122                                                                                         _consumer(0),_currentProducer(0)
123 {
124   _name=other._name;
125   Switch *othSw=(Switch *)other._node;
126   for(map<int, OutPort *>::const_iterator iter=other._potentialProducers.begin();iter!=other._potentialProducers.end();iter++)
127     {
128       string name=othSw->getOutPortName((*iter).second);
129       _potentialProducers[(*iter).first]=master->getOutPort(name);
130     }
131 }
132
133 void CollectorSwOutPort::addPotentialProducerForMaster(OutPort *port)
134 {
135   int i=((Switch *)_node)->getRankOfNode(port->getNode());
136   map<int, OutPort *>::iterator pt=_potentialProducers.find(i);
137   if(pt==_potentialProducers.end())
138     {
139       _potentialProducers[i]=port;
140       _currentProducer=port;
141     }
142   else
143     {
144       _currentProducer=(*pt).second;
145       if(_currentProducer!=port)
146         {
147           string what("CollectorSwOutPort::addPotentialProducerForMaster : In switch node "); what+=_node->getName();
148           what+=" for input named \'"; what+=_consumer->getName(); what+="\' the output "; what+=_currentProducer->getName();
149           what+=" already got out for case of label "; 
150           what+=Switch::getRepresentationOfCase((*pt).first); 
151           throw Exception(what);
152         }
153     }
154   _className=port->getNameOfTypeOfCurrentInstance();
155 }
156
157 bool CollectorSwOutPort::removePotentialProducerForMaster()
158 {
159   int i;
160   map<int, OutPort *>::iterator result;
161   for(result=_potentialProducers.begin();result!=_potentialProducers.end();result++)
162     if((*result).second==_currentProducer)
163       {
164         i=(*result).first;
165         break;
166       }
167   if(result==_potentialProducers.end())
168     {
169       ostringstream stream; stream << "CollectorSwOutPort::removePotentialProducerForMaster : link from the branch whith id ";
170       stream << i << " not defined";
171       throw Exception(stream.str());
172     }
173   if((*result).second!=_currentProducer)
174     {
175       ostringstream stream; stream << "CollectorSwOutPort::removePotentialProducerForMaster : link from the branch whith id ";
176       stream << i << " defined but the output specified is not compatible";
177       throw Exception(stream.str());
178     }
179   _potentialProducers.erase(result);
180   return _potentialProducers.empty();
181 }
182
183 bool CollectorSwOutPort::checkManagementOfPort(OutPort *port) throw(YACS::Exception)
184 {
185   for(map<int, OutPort *>::iterator iter=_potentialProducers.begin();iter!=_potentialProducers.end();iter++)
186     if((*iter).second==port)
187       {
188         _currentProducer=port;
189         return _potentialProducers.size()==1;
190       }
191   throw Exception("CollectorSwOutPort::checkManagementOfPort : unexported port");
192 }
193
194 /*!
195  * Called by Switch::checkCFLinks.
196  */
197 void CollectorSwOutPort::checkConsistency(LinkInfo& info) const
198 {
199   if(((Switch *)_node)->getNbOfCases()!=_potentialProducers.size())
200     info.pushErrSwitch((CollectorSwOutPort *)this);
201   for(map<int, OutPort *>::const_iterator iter=_potentialProducers.begin();iter!=_potentialProducers.end();iter++)
202     (*iter).second->checkConsistency(info);
203 }
204
205 /*!
206  * Called by LinkInfo::getErrRepr to have a comprehensible message on throw.
207  * When called, typically checkCompletenessOfCases has detected that some potential producers were laking...
208  */
209 void CollectorSwOutPort::getHumanReprOfIncompleteCases(std::ostream& stream) const
210 {
211   set<int> lackingCases;
212   for(map< int ,Node * >::const_iterator iter=((Switch *)_node)->_mapOfNode.begin();iter!=((Switch *)_node)->_mapOfNode.end();iter++)
213     {
214       if(_potentialProducers.find((*iter).first)==_potentialProducers.end())
215         lackingCases.insert((*iter).first);
216     }
217   ostringstream streamForExc;
218   stream << "For link to " <<  _consumer->getName() << " of node " << _consumer->getNode()->getName() 
219          << " the cases of switch node named " << _node->getName() 
220          << " do not define links for following cases ids :";
221   for(set<int>::iterator iter=lackingCases.begin();iter!=lackingCases.end();iter++)
222       stream << Switch::getRepresentationOfCase(*iter) << " ";
223   stream << endl;
224 }
225
226 FakeNodeForSwitch::FakeNodeForSwitch(Switch *sw, bool normalFinish, bool internalError):ElementaryNode("thisIsAFakeNode"),
227                                                                                         _sw(sw),
228                                                                                         _normalFinish(normalFinish),
229                                                                                         _internalError(internalError)
230 {
231   _state=YACS::TOACTIVATE;
232   _father=_sw->getFather();
233 }
234
235 FakeNodeForSwitch::FakeNodeForSwitch(const FakeNodeForSwitch& other):ElementaryNode(other),_sw(0),
236                                                                      _normalFinish(false),
237                                                                      _internalError(true)
238 {
239 }
240
241 Node *FakeNodeForSwitch::simpleClone(ComposedNode *father, bool editionOnly) const
242 {
243   return new FakeNodeForSwitch(*this);
244 }
245
246 void FakeNodeForSwitch::exForwardFailed()
247 {
248   _sw->exForwardFailed();
249 }
250
251 void FakeNodeForSwitch::exForwardFinished()
252
253   _sw->exForwardFinished(); 
254 }
255
256 void FakeNodeForSwitch::execute()
257 {
258   if(!_normalFinish)
259     throw Exception("");//only to trigger ABORT on Executor
260 }
261
262 void FakeNodeForSwitch::aborted()
263 {
264   if(_internalError)
265     _sw->_state!=YACS::INTERNALERR;
266   else
267     _sw->setState(YACS::ERROR);
268 }
269
270 void FakeNodeForSwitch::finished()
271 {
272   _sw->setState(YACS::DONE);
273 }
274
275 /*! \class YACS::ENGINE::Switch
276  *  \brief Control node that emulates the C switch
277  *
278  *  \ingroup Nodes
279  */
280
281 Switch::Switch(const Switch& other, ComposedNode *father, bool editionOnly):StaticDefinedComposedNode(other,father),_condition(other._condition,this),
282                                                                             _undispatchableNotificationNode(0)
283 {
284   for(map<int,Node *>::const_iterator iter=other._mapOfNode.begin();iter!=other._mapOfNode.end();iter++)
285     _mapOfNode[(*iter).first]=(*iter).second->clone(this,editionOnly);
286   if(!editionOnly)
287     for(map<InPort *, CollectorSwOutPort * >::const_iterator iter2=other._outPortsCollector.begin();iter2!=other._outPortsCollector.end();iter2++)
288       {
289         CollectorSwOutPort *newCol=new CollectorSwOutPort(*((*iter2).second),this);
290         _alreadyExistingCollectors.push_back(newCol);
291       }
292 }
293
294 Switch::Switch(const std::string& name):StaticDefinedComposedNode(name),_condition(SELECTOR_INPUTPORT_NAME,this,Runtime::_tc_int),_undispatchableNotificationNode(0)
295 {
296 }
297
298 Switch::~Switch()
299 {
300   if(_undispatchableNotificationNode)delete _undispatchableNotificationNode;
301
302   for(map< int , Node * >::iterator iter=_mapOfNode.begin();iter!=_mapOfNode.end();iter++)
303     delete (*iter).second;
304   for(map<InPort *, CollectorSwOutPort * >::iterator iter2=_outPortsCollector.begin();iter2!=_outPortsCollector.end();iter2++)
305     delete (*iter2).second;
306   for(vector<CollectorSwOutPort *>::iterator iter3=_alreadyExistingCollectors.begin();iter3!=_alreadyExistingCollectors.end();iter3++)
307     delete (*iter3);
308 }
309
310 Node *Switch::simpleClone(ComposedNode *father, bool editionOnly) const
311 {
312   return new Switch(*this,father,editionOnly);
313 }
314
315 void Switch::exUpdateState()
316 {
317   DEBTRACE("Switch::exUpdateState " << _state);
318   if(_state == YACS::DISABLED)
319     return;
320   if(_inGate.exIsReady())
321     {
322       setState(YACS::ACTIVATED);
323       if(_condition.isEmpty())
324         _undispatchableNotificationNode=new FakeNodeForSwitch(this,false,true);
325       else
326         {
327           map< int , Node * >::iterator iter=_mapOfNode.find(_condition.getIntValue());
328           if(iter==_mapOfNode.end())
329             {
330               iter=_mapOfNode.find(ID_FOR_DEFAULT_NODE);
331               if(iter==_mapOfNode.end())
332                 {
333                   bool normalFinish=getAllOutPortsLeavingCurrentScope().empty();
334                   delete _undispatchableNotificationNode;
335                   _undispatchableNotificationNode=new FakeNodeForSwitch(this,normalFinish);
336                 }
337               else
338                 ((*iter).second)->exUpdateState();
339             }
340           else
341             ((*iter).second)->exUpdateState();
342         }
343     }
344 }
345
346 void Switch::init(bool start)
347 {
348   DEBTRACE("Switch::init " << start);
349   StaticDefinedComposedNode::init(start);
350   int i=0;
351   for(map< int , Node * >::iterator iter=_mapOfNode.begin();iter!=_mapOfNode.end();iter++, i++)
352     {
353       if(!(*iter).second)
354         {
355           ostringstream stream;
356           stream << "Switch::init : initialization failed due to unitialized branch of id " << (*iter).first;
357           throw Exception(stream.str());
358         }
359       ((*iter).second)->init(start);
360     }
361 }
362
363 void Switch::getReadyTasks(std::vector<Task *>& tasks)
364 {
365   /*
366    * To change the way ComposedNode state is handled, uncomment the following line
367    * see Bloc::getReadyTasks
368    */
369   if(_state==YACS::TOACTIVATE) setState(YACS::ACTIVATED);
370   if(_state==YACS::TOACTIVATE || _state==YACS::ACTIVATED)
371     {
372       map< int , Node * >::iterator iter=_mapOfNode.find(_condition.getIntValue());
373       if(iter!=_mapOfNode.end())
374         ((*iter).second)->getReadyTasks(tasks);
375       else
376         {
377           iter=_mapOfNode.find(ID_FOR_DEFAULT_NODE);
378           if(iter!=_mapOfNode.end())
379             (*iter).second->getReadyTasks(tasks);//Default Node is returned
380           else
381             if(_undispatchableNotificationNode)
382               _undispatchableNotificationNode->getReadyTasks(tasks);
383             else
384               throw Exception("Switch::getReadyTasks : internal error");
385         }
386     }
387 }
388
389 list<Node *> Switch::edGetDirectDescendants() const
390 {
391   list<Node *> ret;
392   for(map< int , Node * >::const_iterator iter=_mapOfNode.begin();iter!=_mapOfNode.end();iter++)
393     if((*iter).second)
394       ret.push_back((*iter).second);
395   return ret;
396 }
397
398 int Switch::getNumberOfInputPorts() const
399
400   return StaticDefinedComposedNode::getNumberOfInputPorts()+1;
401 }
402
403 int Switch::getMaxLevelOfParallelism() const
404 {
405   int ret(0);
406   for(std::map< int , Node * >::const_iterator it=_mapOfNode.begin();it!=_mapOfNode.end();it++)
407     ret=std::max(ret,((*it).second)->getMaxLevelOfParallelism());
408   return ret;
409 }
410
411 double Switch::getWeightRegardingDPL() const
412 {
413   double ret(0);
414   for(std::map< int , Node * >::const_iterator it=_mapOfNode.begin();it!=_mapOfNode.end();it++)
415     ret=std::max(ret,((*it).second)->getWeightRegardingDPL());
416   return ret;
417 }
418
419 void Switch::partitionRegardingDPL(const PartDefinition *pd, std::map<ComposedNode *, YACS::BASES::AutoRefCnt<PartDefinition> >& zeMap)
420 {
421   for(std::map< int , Node * >::const_iterator it=_mapOfNode.begin();it!=_mapOfNode.end();it++)
422     (*it).second->partitionRegardingDPL(pd,zeMap);
423 }
424
425 void Switch::edRemoveChild(Node *node) throw(YACS::Exception)
426 {
427   map< int , Node * >::iterator iter=_mapOfNode.begin();
428   for(;iter!=_mapOfNode.end();iter++)
429     if(node==(*iter).second)
430       {
431         edReleaseCase((*iter).first);
432         return;
433       }
434   ostringstream what; what << "Switch::edRemoveChild : node with name " << node->getName() << " is not a direct child of Switch node " << _name; 
435   throw Exception(what.str());
436 }
437
438 std::list<InputPort *> Switch::getSetOfInputPort() const
439 {
440   list<InputPort *> ret=StaticDefinedComposedNode::getSetOfInputPort();
441   ret.push_back((InputPort *)&_condition);
442   return ret;
443 }
444
445
446 std::list<InputPort *> Switch::getLocalInputPorts() const
447 {
448   list<InputPort *> ret=StaticDefinedComposedNode::getLocalInputPorts();
449   ret.push_back((InputPort *)&_condition);
450   return ret;
451 }
452 OutPort *Switch::getOutPort(const std::string& name) const throw(YACS::Exception)
453 {
454   for(map<InPort *, CollectorSwOutPort * >::const_iterator iter=_outPortsCollector.begin();iter!=_outPortsCollector.end();iter++)
455     if(name==(*iter).second->getName())
456       return (*iter).second;
457   for(vector<CollectorSwOutPort *>::const_iterator iter2=_alreadyExistingCollectors.begin();iter2!=_alreadyExistingCollectors.end();iter2++)
458     if(name==(*iter2)->getName())
459       return *iter2;
460   return StaticDefinedComposedNode::getOutPort(name);
461 }
462
463 InputPort *Switch::getInputPort(const std::string& name) const throw(YACS::Exception)
464 {
465   if(name==SELECTOR_INPUTPORT_NAME)
466     return (InputPort *)&_condition;
467   return StaticDefinedComposedNode::getInputPort(name);
468 }
469
470 Node *Switch::getChildByShortName(const std::string& name) const throw(YACS::Exception)
471 {
472   if(name==DEFAULT_NODE_NAME)
473     {
474       map< int , Node * >::const_iterator iter=_mapOfNode.find(ID_FOR_DEFAULT_NODE);
475       if(iter!=_mapOfNode.end())
476         return (Node *)((*iter).second);
477       else
478         {
479           string what("Switch::getChildByShortName : no default node defined for switch of name "); what+=getName();
480           throw Exception(what);
481         }
482     }
483   for(map< int , Node * >::const_iterator iter=_mapOfNode.begin();iter!=_mapOfNode.end();iter++)
484     {
485       if(name==((*iter).second)->getQualifiedName())
486         return (*iter).second;
487     }
488   string what("node "); what+= name ; what+=" is not a child of node switch "; what += getName();
489   throw Exception(what);
490 }
491
492 Node *Switch::edSetDefaultNode(Node *node)
493 {
494   return edSetNode(ID_FOR_DEFAULT_NODE,node);
495 }
496
497 Node *Switch::edReleaseDefaultNode() throw(YACS::Exception)
498 {
499   return edReleaseCase(ID_FOR_DEFAULT_NODE);
500 }
501
502 Node *Switch::edReleaseCase(int caseId) throw(YACS::Exception)
503 {
504   map< int , Node * >::iterator iter=_mapOfNode.find(caseId);
505   if(iter==_mapOfNode.end())
506     { 
507       string what("Switch::edReleaseCase : the case # "); what+=getRepresentationOfCase(caseId);  what+=" is not set yet.";
508       throw Exception(what);
509     }
510   else
511     {
512       Node *ret=(*iter).second;
513       StaticDefinedComposedNode::edRemoveChild(ret);
514       _mapOfNode.erase(iter);
515       modified();
516       return ret;
517     }
518 }
519
520 Node *Switch::edGetNode(int caseId)
521 {
522   if (!_mapOfNode.count(caseId)) return 0;
523   return _mapOfNode[caseId];
524 }
525
526
527 /*!
528  * \param caseId : the case ID chosen to place 'node'
529  * \param node   : the node for the specified 'caseId'
530  * \return : If an old node with id equal to 'caseId' exists before, this old node is returned so that to be deallocated.
531  *           0 is returned if caseId is a new ID.
532  *  \b WARNING : 'node' is held by 'this' after call, whereas returned node is no more held. 
533  */
534 Node *Switch::edSetNode(int caseId, Node *node) throw(YACS::Exception)
535 {
536   if(!node)
537     throw Exception("Switch::edSetNode : null node cannot be set as a case in switch node");
538   if(node->_father!=0)
539     throw Exception("Switch::edSetNode : node already held by another father");
540   checkNoCrossHierachyWith(node);
541   node->_father=this;
542   map< int , Node * >::iterator iter=_mapOfNode.find(caseId);
543   if(iter==_mapOfNode.end())
544     {
545       _mapOfNode[caseId]=node;
546       modified();
547       return 0;
548     }
549   else
550     {
551       if(node!=(*iter).second)
552         {
553           Node *ret=(*iter).second;
554           (*iter).second=node;
555           modified();
556           return ret;
557         }
558     }
559 }
560
561 //! Change the case of a node
562 /*!
563  *  \param oldCase : the case value to change
564  *  \param newCase : the new value to set
565  *  raise an exception if the old case does not exist or if the new case already exists
566  */
567 void Switch::edChangeCase(int oldCase, int newCase)
568 {
569   std::map< int , Node * >::iterator iter=_mapOfNode.find(oldCase);
570   if(iter==_mapOfNode.end())
571     {
572       //the case does not exists
573       throw Exception("Switch::edChangeCase : case does not exist");
574     }
575   iter=_mapOfNode.find(newCase);
576   if(iter != _mapOfNode.end())
577     {
578       //the new case exists
579       throw Exception("Switch::edChangeCase : new case exists");
580     }
581   Node* node=_mapOfNode[oldCase];
582   _mapOfNode.erase(oldCase);
583   _mapOfNode[newCase]=node;
584   modified();
585 }
586
587 int Switch::getMaxCase()
588 {
589   int aCase = 0;
590   map<int, Node*>::const_iterator it = _mapOfNode.begin();
591   for(; it != _mapOfNode.end(); ++it)
592     if ((*it).first > aCase)
593       aCase = (*it).first;
594   return aCase;
595 }
596
597 //! Get the progress weight of the graph
598 /*!
599  * Only elementary nodes have weight. If the switch node is not done, we add the weight of all his descendants,
600  * otherwise only the weight of the used case count.
601  */
602 list<ProgressWeight> Switch::getProgressWeight() const
603 {
604   list<ProgressWeight> ret;
605   list<Node *> setOfNode=edGetDirectDescendants();
606   if (getState() == YACS::DONE)
607     {
608       for(list<Node *>::const_iterator iter=setOfNode.begin();iter!=setOfNode.end();iter++)
609       {
610         if (getEffectiveState(*iter) == YACS::DONE)
611           ret=(*iter)->getProgressWeight();
612       }
613     }
614   else
615     {
616       for(list<Node *>::const_iterator iter=setOfNode.begin();iter!=setOfNode.end();iter++)
617         {
618           list<ProgressWeight> myCurrentSet=(*iter)->getProgressWeight();
619           ret.insert(ret.end(),myCurrentSet.begin(),myCurrentSet.end());
620         }
621     }
622   return ret;
623 }
624
625 bool Switch::edAddChild(Node *node) throw(YACS::Exception)
626 {
627   int aCase = getMaxCase() + 1;
628   DEBTRACE(aCase);
629   bool ret = edSetNode(aCase, node);
630   DEBTRACE(ret);
631   return ret;
632 }
633
634 YACS::Event Switch::updateStateOnFinishedEventFrom(Node *node)
635 {
636   setState(YACS::DONE);
637   return YACS::FINISH;//notify to father node that 'this' has becomed finished.
638 }
639
640 std::set<InPort *> Switch::getAllInPortsComingFromOutsideOfCurrentScope() const
641 {
642   set<InPort *> ret=StaticDefinedComposedNode::getAllInPortsComingFromOutsideOfCurrentScope();
643   set<OutPort *> temp2=_condition.edSetOutPort();
644   for(set<OutPort *>::iterator iter3=temp2.begin();iter3!=temp2.end();iter3++)
645     if(!isInMyDescendance((*iter3)->getNode()))
646       {
647         ret.insert((InPort *)&_condition);
648         break;
649       }
650   return ret;
651 }
652
653 void Switch::checkCFLinks(const std::list<OutPort *>& starts, InputPort *end, unsigned char& alreadyFed, bool direction, LinkInfo& info) const
654 {
655   map<InPort *, CollectorSwOutPort * >::const_iterator iter=_outPortsCollector.find(end);
656   if(iter!=_outPortsCollector.end())
657     {
658       set<OutPort *> represented;
659       (*iter).second->getAllRepresented(represented);
660       list<OutPort *> others;
661       for(list<OutPort *>::const_iterator iter2=starts.begin();iter2!=starts.end();iter2++)
662         if(represented.find(*iter2)==represented.end())
663           others.push_back(*iter2);
664       if(others.empty())
665         alreadyFed=FED_ST;
666       else
667         StaticDefinedComposedNode::checkCFLinks(others,end,alreadyFed,direction,info);//should never happend;
668     }
669   else
670     StaticDefinedComposedNode::checkCFLinks(starts,end,alreadyFed,direction,info);
671 }
672
673 void Switch::checkControlDependancy(OutPort *start, InPort *end, bool cross,
674                                     std::map < ComposedNode *,  std::list < OutPort * > >& fw,
675                                     std::vector<OutPort *>& fwCross,
676                                     std::map< ComposedNode *, std::list < OutPort *> >& bw,
677                                     LinkInfo& info) const
678 {
679   throw Exception("Switch::checkControlDependancy : a link was dectected between 2 cases of a switch. Impossible !");
680 }
681
682 void Switch::checkNoCyclePassingThrough(Node *node) throw(YACS::Exception)
683 {
684   throw Exception("Switch::checkNoCyclePassingThrough : uncorrect control flow link relative to switch");
685 }
686
687 void Switch::checkLinkPossibility(OutPort *start, const std::list<ComposedNode *>& pointsOfViewStart,
688                                   InPort *end, const std::list<ComposedNode *>& pointsOfViewEnd) throw(YACS::Exception)
689 {
690   throw Exception("Switch::checkLinkPossibility : A link between 2 different cases of a same Switch requested -> Impossible");
691 }
692
693 void Switch::buildDelegateOf(std::pair<OutPort *, OutPort *>& port, InPort *finalTarget, const std::list<ComposedNode *>& pointsOfView)
694 {
695   map<InPort *, CollectorSwOutPort * >::iterator result=_outPortsCollector.find(finalTarget);
696   CollectorSwOutPort *newCollector;
697   if(result!=_outPortsCollector.end())
698     newCollector=(*result).second;
699   else
700     {
701       newCollector=new CollectorSwOutPort(this,finalTarget);
702       newCollector->edSetType((port.first)->edGetType());
703       _outPortsCollector[finalTarget]=newCollector;
704     }
705   newCollector->addPotentialProducerForMaster(port.first);
706   port.second=newCollector;
707   port.first=newCollector;
708 }
709
710 void Switch::getDelegateOf(std::pair<OutPort *, OutPort *>& port, InPort *finalTarget, const std::list<ComposedNode *>& pointsOfView) throw(YACS::Exception)
711 {
712   map<InPort *, CollectorSwOutPort * >::iterator iter=_outPortsCollector.find(finalTarget);
713   if(iter==_outPortsCollector.end())
714     {
715       string what("Switch::getDelegateOf : not exported OuputPort with name "); what+=(port.first)->getName(); what+=" for target inport of name ";
716       what+=finalTarget->getName();
717       throw Exception(what);
718     }
719   ((*iter).second)->checkManagementOfPort(port.first);
720   port.second=(*iter).second;
721   port.first=(*iter).second;
722 }
723
724 void Switch::releaseDelegateOf(OutPort *portDwn, OutPort *portUp, InPort *finalTarget, const std::list<ComposedNode *>& pointsOfView) throw(YACS::Exception)
725 {
726   set<OutPort *> repr;
727   portDwn->getAllRepresented(repr);
728   if(repr.size()==1)
729     {
730       CollectorSwOutPort *portCasted=dynamic_cast<CollectorSwOutPort *>(portUp);
731       if(portCasted->removePotentialProducerForMaster())//normally always true
732         {
733           delete portCasted;
734           _outPortsCollector.erase(finalTarget);
735         }
736     }
737 }
738
739 int Switch::getNbOfCases() const
740 {
741   return _mapOfNode.size();
742 }
743
744 int Switch::getRankOfNode(Node *node) const
745 {
746   Node *directSon=isInMyDescendance(node);
747   for(map< int , Node * >::const_iterator iter=_mapOfNode.begin();iter!=_mapOfNode.end();iter++)
748     if((*iter).second==directSon)
749       return (*iter).first;
750   throw Exception("Switch::getRankOfNode : node not in switch");
751 }
752
753 string Switch::getRepresentationOfCase(int i)
754 {
755   if(i!=ID_FOR_DEFAULT_NODE)
756     {
757       ostringstream stream;
758       stream << i;
759       return stream.str();
760     }
761   else
762     return DEFAULT_NODE_NAME;
763 }
764
765 //! Return the effective state of a node in the context of this switch (its father)
766 /*!
767  * \param node: the node which effective state is queried
768  * \return the effective node state
769  */
770 YACS::StatesForNode Switch::getEffectiveState(const Node* node) const
771 {
772   YACS::StatesForNode effectiveState=Node::getEffectiveState();
773   if(effectiveState==YACS::READY)
774     return YACS::READY;
775   if(effectiveState==YACS::TOACTIVATE)
776     return YACS::READY;
777   if(effectiveState==YACS::DISABLED)
778     return YACS::DISABLED;
779
780   return node->getState();
781 }
782 YACS::StatesForNode Switch::getEffectiveState() const
783 {
784   return Node::getEffectiveState();
785 }
786
787 void Switch::writeDot(std::ostream &os) const
788 {
789   os << "  subgraph cluster_" << getId() << "  {\n" ;
790   for(map<int,Node*>::const_iterator iter=_mapOfNode.begin();iter!=_mapOfNode.end();iter++)
791     {
792       Node* n=(*iter).second;
793       n->writeDot(os);
794       os << getId() << " -> " << n->getId() << ";\n";
795     }
796   os << "}\n" ;
797   os << getId() << "[fillcolor=\"" ;
798   YACS::StatesForNode state=Node::getEffectiveState();
799   os << getColorState(state);
800   os << "\" label=\"" << "Switch:" ;
801   os << getQualifiedName() <<"\"];\n";
802 }
803
804 std::string Switch::getMyQualifiedName(const Node *directSon) const
805 {
806   string id=getCaseId(directSon);
807   id+=directSon->getName();
808   return id;
809 }
810
811 std::string Switch::getCaseId(const Node *node) const throw(YACS::Exception)
812 {
813   const char sep='_';
814   map<int, Node*>::const_iterator iter;
815   for (iter = _mapOfNode.begin(); iter != _mapOfNode.end(); iter++)
816       if (iter->second == node)
817         {
818           stringstream a;
819           if (iter->first == Switch::ID_FOR_DEFAULT_NODE)
820             a << DEFAULT_NODE_NAME << sep;
821           else if (iter->first <0)
822             a << "m" << -iter->first << sep;
823           else a  << "p" << iter->first << sep; 
824           return a.str();
825         }
826   string what("node "); what+= node->getName() ; what+=" is not a child of node "; what += getName();
827   throw Exception(what);  
828 }
829
830 void Switch::accept(Visitor *visitor)
831 {
832   visitor->visitSwitch(this);
833 }