Salome HOME
base64 is used to store pickelized objects into XML
[modules/yacs.git] / src / engine / ForEachLoop.cxx
1 // Copyright (C) 2006-2019  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 "ForEachLoop.hxx"
21 #include "TypeCode.hxx"
22 #include "Visitor.hxx"
23 #include "ComposedNode.hxx"
24 #include "Executor.hxx"
25 #include "AutoLocker.hxx"
26
27 #include <iostream>
28 #include <iomanip>
29 #include <sstream>
30 #include <algorithm>    // std::replace_if
31
32 //#define _DEVDEBUG_
33 #include "YacsTrace.hxx"
34
35 #ifdef WIN32
36 #include <functional>
37 #endif
38
39 using namespace YACS::ENGINE;
40 using namespace std;
41
42 /*! \class YACS::ENGINE::ForEachLoop
43  *  \brief Loop node for parametric calculation
44  *
45  *  \ingroup Nodes
46  */
47
48 const char FakeNodeForForEachLoop::NAME[]="thisIsAFakeNode";
49
50 const char SplitterNode::NAME_OF_SEQUENCE_INPUT[]="SmplsCollection";
51
52 const char ForEachLoop::NAME_OF_SPLITTERNODE[]="splitter";
53
54 const int ForEachLoop::NOT_RUNNING_BRANCH_ID=-1;
55
56 const char ForEachLoop::INTERCEPTOR_STR[]="_interceptor";
57
58 InterceptorInputPort::InterceptorInputPort(const std::string& name, Node *node, TypeCode* type):AnyInputPort(name,node,type),
59                                                                                                 DataPort(name,node,type),Port(node),
60                                                                                                 _repr(0)
61 {
62 }
63
64 InterceptorInputPort::InterceptorInputPort(const  InterceptorInputPort& other, Node *newHelder):AnyInputPort(other,newHelder),DataPort(other,newHelder),
65                                                                                                 Port(other,newHelder),
66                                                                                                 _repr(0)
67 {
68 }
69
70 void InterceptorInputPort::getAllRepresentants(std::set<InPort *>& repr) const
71 {
72   set<InPort *> ports=_repr->edSetInPort();
73   for(set<InPort *>::iterator iter=ports.begin();iter!=ports.end();iter++)
74     (*iter)->getAllRepresentants(repr);
75 }
76
77 InputPort *InterceptorInputPort::clone(Node *newHelder) const
78 {
79   return new InterceptorInputPort(*this,newHelder);
80 }
81
82 void InterceptorInputPort::setRepr(AnySplitOutputPort *repr)
83 {
84   _repr=repr;
85 }
86
87 bool AnySplitOutputPort::decrRef()
88 {
89   return (--_cnt==0);
90 }
91
92 void AnySplitOutputPort::incrRef() const
93 {
94   _cnt++;
95 }
96
97 AnySplitOutputPort::AnySplitOutputPort(const std::string& name, Node *node, TypeCode *type):OutputPort(name,node,type),
98                                                                                             DataPort(name,node,type),Port(node),
99                                                                                             _repr(0),_intercptr(0),_cnt(1)
100 {
101 }
102
103 AnySplitOutputPort::AnySplitOutputPort(const AnySplitOutputPort& other, Node *newHelder):OutputPort(other,newHelder),
104                                                                                          DataPort(other,newHelder),
105                                                                                          Port(other,newHelder),
106                                                                                          _repr(0),_intercptr(0),_cnt(1)
107 {
108 }
109
110 bool AnySplitOutputPort::addInPort(InPort *inPort) throw(YACS::Exception)
111 {
112   bool ret=OutputPort::addInPort(inPort);
113   if(_repr)
114     _repr->addInPort(_intercptr);
115   return ret;
116 }
117
118 void AnySplitOutputPort::getAllRepresented(std::set<OutPort *>& represented) const
119 {
120   if(!_repr)
121     OutPort::getAllRepresented(represented);
122   else
123     _repr->getAllRepresented(represented);
124 }
125
126 int AnySplitOutputPort::removeInPort(InPort *inPort, bool forward) throw(YACS::Exception)
127 {
128   bool ret=OutputPort::removeInPort(inPort,forward);
129   if(_repr)
130     if(_setOfInputPort.empty())
131       _repr->removeInPort(_intercptr,forward);
132   return ret;
133 }
134
135 void AnySplitOutputPort::addRepr(OutPort *repr, InterceptorInputPort *intercptr)
136 {
137   _repr=repr;
138   _intercptr=intercptr;
139 }
140
141 OutputPort *AnySplitOutputPort::clone(Node *newHelder) const
142 {
143   return new AnySplitOutputPort(*this,newHelder);
144 }
145
146 SeqAnyInputPort::SeqAnyInputPort(const std::string& name, Node *node, TypeCodeSeq* type):AnyInputPort(name,node,type),DataPort(name,node,type),Port(node)
147 {
148   _type->decrRef();
149 }
150
151 SeqAnyInputPort::SeqAnyInputPort(const  SeqAnyInputPort& other, Node *newHelder):AnyInputPort(other,newHelder),DataPort(other,newHelder),Port(other,newHelder)
152 {
153 }
154
155 InputPort *SeqAnyInputPort::clone(Node *newHelder) const
156 {
157   return new SeqAnyInputPort(*this,newHelder);
158 }
159
160 unsigned SeqAnyInputPort::getNumberOfElements() const
161 {
162   const SequenceAny * valCsted=(const SequenceAny *) _value;
163   if (valCsted) return valCsted->size();
164   return 0;
165 }
166
167 Any *SeqAnyInputPort::getValueAtRank(int i) const
168 {
169   const SequenceAny * valCsted=(const SequenceAny *) _value;
170   AnyPtr ret=(*valCsted)[i];
171   ret->incrRef();
172   return ret;
173 }
174
175 std::string SeqAnyInputPort::dump()
176 {
177   stringstream xmldump;
178   int nbElem = getNumberOfElements();
179   xmldump << "<value><array><data>" << endl;
180   for (int i = 0; i < nbElem; i++)
181     {
182       Any *val = getValueAtRank(i);
183       switch (((YACS::ENGINE::TypeCodeSeq *)edGetType())->contentType()->kind())
184         {
185         case Double:
186           xmldump << "<value><double>" << setprecision(16) << val->getDoubleValue() << "</double></value>" << endl;
187           break;
188         case Int:
189           xmldump << "<value><int>" << val->getIntValue() << "</int></value>" << endl;
190           break;
191         case Bool:
192           xmldump << "<value><boolean>" << val->getBoolValue() << "</boolean></value>" << endl;
193           break;
194         case String:
195           xmldump << "<value><string>" << val->getStringValue() << "</string></value>" << endl;
196           break;
197         case Objref:
198           xmldump << "<value><objref>" << ToBase64(val->getStringValue()) << "</objref></value>" << endl;
199           break;
200         default:
201           xmldump << "<value><error> NO_SERIALISATION_AVAILABLE </error></value>" << endl;
202           break;
203         }
204     }
205   xmldump << "</data></array></value>" << endl;
206   return xmldump.str();
207 }
208
209 SplitterNode::SplitterNode(const std::string& name, TypeCode *typeOfData, 
210                            ForEachLoop *father):ElementaryNode(name),
211                                                 _dataPortToDispatch(NAME_OF_SEQUENCE_INPUT,
212                                                                     this,(TypeCodeSeq *)TypeCode::sequenceTc("","",typeOfData))
213 {
214   _father=father;
215 }
216
217 SplitterNode::SplitterNode(const SplitterNode& other, ForEachLoop *father):ElementaryNode(other,father),
218                                                                            _dataPortToDispatch(other._dataPortToDispatch,this)
219 {
220 }
221
222 InputPort *SplitterNode::getInputPort(const std::string& name) const throw(YACS::Exception)
223 {
224   if(name==NAME_OF_SEQUENCE_INPUT)
225     return (InputPort *)&_dataPortToDispatch;
226   else
227     return ElementaryNode::getInputPort(name);
228 }
229
230 Node *SplitterNode::simpleClone(ComposedNode *father, bool editionOnly) const
231 {
232   return new SplitterNode(*this,(ForEachLoop *)father);
233 }
234
235 unsigned SplitterNode::getNumberOfElements() const
236 {
237   return _dataPortToDispatch.getNumberOfElements();
238 }
239
240 void SplitterNode::execute()
241 {
242   //Nothing : should never been called elsewhere big problem...
243 }
244
245 void SplitterNode::init(bool start)
246 {
247   ElementaryNode::init(start);
248   _dataPortToDispatch.exInit(start);
249 }
250
251 void SplitterNode::putSplittedValueOnRankTo(int rankInSeq, int branch, bool first)
252 {
253   Any *valueToDispatch=_dataPortToDispatch.getValueAtRank(rankInSeq);
254   ForEachLoop *fatherTyped=(ForEachLoop *)_father;
255   fatherTyped->putValueOnBranch(valueToDispatch,branch,first);
256   valueToDispatch->decrRef();
257 }
258
259 FakeNodeForForEachLoop::FakeNodeForForEachLoop(ForEachLoop *loop, bool normalFinish):ElementaryNode(NAME),
260                                                                                      _loop(loop),
261                                                                                      _normalFinish(normalFinish)
262 {
263   _state=YACS::TOACTIVATE;
264   _father=_loop->getFather();
265 }
266
267 FakeNodeForForEachLoop::FakeNodeForForEachLoop(const FakeNodeForForEachLoop& other):ElementaryNode(other),_loop(0),
268                                                                                     _normalFinish(false)
269 {
270 }
271
272 Node *FakeNodeForForEachLoop::simpleClone(ComposedNode *father, bool editionOnly) const
273 {
274   return new FakeNodeForForEachLoop(*this);
275 }
276
277 void FakeNodeForForEachLoop::exForwardFailed()
278 {
279   _loop->exForwardFailed();
280 }
281
282 void FakeNodeForForEachLoop::exForwardFinished()
283
284   _loop->exForwardFinished();
285 }
286
287 void FakeNodeForForEachLoop::execute()
288 {
289   if(!_normalFinish)
290     throw Exception("");//only to trigger ABORT on Executor
291   else
292     _loop->pushAllSequenceValues();
293 }
294
295 void FakeNodeForForEachLoop::aborted()
296 {
297   _loop->setState(YACS::ERROR);
298 }
299
300 void FakeNodeForForEachLoop::finished()
301 {
302   _loop->setState(YACS::DONE);
303 }
304
305 ForEachLoopPassedData::ForEachLoopPassedData(const std::vector<unsigned int>& passedIds, const std::vector<SequenceAny *>& passedOutputs, const std::vector<std::string>& nameOfOutputs):_passedIds(passedIds),_passedOutputs(passedOutputs),_nameOfOutputs(nameOfOutputs)
306 {
307   std::size_t sz(_passedIds.size()),sz1(passedOutputs.size()),sz2(nameOfOutputs.size());
308   if(sz1!=sz2)
309     throw YACS::Exception("ForEachLoopPassedData::ForEachLoopPassedData : nameOfOutputs and passedOutputs must have the same size !");
310   for(std::vector<SequenceAny *>::iterator it=_passedOutputs.begin();it!=_passedOutputs.end();it++)
311     {
312       const SequenceAny *elt(*it);
313       if(elt)
314         if(sz!=(std::size_t)elt->size())
315           throw YACS::Exception("ForEachLoopPassedData::ForEachLoopPassedData : incoherent input of passed data !");
316     }
317   for(std::vector<SequenceAny *>::iterator it=_passedOutputs.begin();it!=_passedOutputs.end();it++)
318     {
319       SequenceAny *elt(*it);
320       if(elt)
321         elt->incrRef();
322     }
323 }
324
325 ForEachLoopPassedData::ForEachLoopPassedData(const ForEachLoopPassedData& copy)
326 : _passedIds(copy._passedIds),
327   _passedOutputs(copy._passedOutputs),
328   _nameOfOutputs(copy._nameOfOutputs),
329   _flagsIds(copy._flagsIds)
330 {
331 }
332
333 ForEachLoopPassedData::~ForEachLoopPassedData()
334 {
335   for(std::vector<SequenceAny *>::iterator it=_passedOutputs.begin();it!=_passedOutputs.end();it++)
336     {
337       SequenceAny *elt(*it);
338       if(elt)
339         elt->decrRef();
340     }
341 }
342
343 void ForEachLoopPassedData::init()
344 {
345   _flagsIds.clear();
346 }
347
348 void ForEachLoopPassedData::checkCompatibilyWithNb(int nbOfElts) const
349 {
350   if(nbOfElts<0)
351     throw YACS::Exception("ForEachLoopPassedData::checkCompatibilyWithNb : nb of elts is expected to be > 0 !");
352   std::size_t sizeExp(_passedIds.size()),nbOfElts2(nbOfElts);
353   if(nbOfElts2<sizeExp)
354     throw YACS::Exception("ForEachLoopPassedData::checkCompatibilyWithNb : Invalid nb of elemts in input seq regarding passed data set !");
355   for(std::vector<unsigned int>::const_iterator it=_passedIds.begin();it!=_passedIds.end();it++)
356     {
357       if((*it)>=nbOfElts2)
358         throw YACS::Exception("ForEachLoopPassedData::checkCompatibilyWithNb : Invalid nb of elemts in input seq regarding passed data set 2 !");
359     }
360   _flagsIds.resize(nbOfElts);
361   std::fill(_flagsIds.begin(),_flagsIds.end(),false);
362   for(std::vector<unsigned int>::const_iterator it=_passedIds.begin();it!=_passedIds.end();it++)
363     {
364       if(*it<nbOfElts)
365         {
366           if(!_flagsIds[*it])
367             _flagsIds[*it]=true;
368           else
369             {
370               std::ostringstream oss; oss << "ForEachLoopPassedData::checkCompatibilyWithNb : id " << *it << " in list of ids appears more than once !";
371               throw YACS::Exception(oss.str());
372             }
373         }
374       else
375         {
376           std::ostringstream oss; oss << "ForEachLoopPassedData::checkCompatibilyWithNb : Presence of id " << *it << " in list of ids ! Must be in [0," <<  nbOfElts << ") !";
377           throw YACS::Exception(oss.str());
378         }
379     }
380 }
381
382 void ForEachLoopPassedData::checkLevel2(const std::vector<AnyInputPort *>& ports) const
383 {
384   std::size_t sz(_nameOfOutputs.size());
385   if(sz!=ports.size())
386     throw YACS::Exception("ForEachLoopPassedData::checkLevel2 : mismatch of size of vectors !");
387   for(std::size_t i=0;i<sz;i++)
388     {
389       AnyInputPort *elt(ports[i]);
390       if(!elt)
391         throw YACS::Exception("ForEachLoopPassedData::checkLevel2 : presence of null instance !");
392       if(_nameOfOutputs[i]!=elt->getName())
393         {
394           std::ostringstream oss; oss << "ForEachLoopPassedData::checkLevel2 : At pos #" << i << " the name is not OK !";
395           throw YACS::Exception(oss.str());
396         }
397     }
398 }
399
400 /*!
401  * performs local to abs id. Input \a localId refers to an id in all jobs to perform. Returned id refers to pos in whole output sequences.
402  */
403 int ForEachLoopPassedData::toAbsId(int localId) const
404 {
405   if(localId<0)
406     throw YACS::Exception("ForEachLoopPassedData::toAbsId : local pos must be >= 0 !");
407   int ret(0),curLocId(0);
408   for(std::vector<bool>::const_iterator it=_flagsIds.begin();it!=_flagsIds.end();it++,ret++)
409     {
410       if(!*it)
411         {
412           if(localId==curLocId)
413             return ret;
414           curLocId++;
415         }
416     }
417   throw YACS::Exception("ForEachLoopPassedData::toAbsId : not referenced Id !");
418 }
419
420 /*!
421  * Equivalent to toAbsId except that only ON are considered here.
422  */
423 int ForEachLoopPassedData::toAbsIdNot(int localId) const
424 {
425   if(localId<0)
426     throw YACS::Exception("ForEachLoopPassedData::toAbsIdNot : local pos must be >= 0 !");
427   int ret(0),curLocId(0);
428   for(std::vector<bool>::const_iterator it=_flagsIds.begin();it!=_flagsIds.end();it++,ret++)
429     {
430       if(*it)//<- diff is here !
431         {
432           if(localId==curLocId)
433             return ret;
434           curLocId++;
435         }
436     }
437   throw YACS::Exception("ForEachLoopPassedData::toAbsIdNot : not referenced Id !");
438 }
439
440 int ForEachLoopPassedData::getNumberOfElementsToDo() const
441 {
442   std::size_t nbAllElts(_flagsIds.size());
443   std::size_t ret(nbAllElts-_passedIds.size());
444   return ret;
445 }
446
447 void ForEachLoopPassedData::assignAlreadyDone(const std::vector<SequenceAny *>& execVals) const
448 {
449   std::size_t sz(execVals.size());
450   if(_passedOutputs.size()!=sz)
451     throw YACS::Exception("ForEachLoopPassedData::assignedAlreadyDone : mismatch of size of vectors !");
452   for(std::size_t i=0;i<sz;i++)
453     {
454       SequenceAny *elt(_passedOutputs[i]);
455       SequenceAny *eltDestination(execVals[i]);
456       if(!elt)
457         throw YACS::Exception("ForEachLoopPassedData::assignedAlreadyDone : presence of null elt !");
458       unsigned int szOfElt(elt->size());
459       for(unsigned int j=0;j<szOfElt;j++)
460         {
461           AnyPtr elt1((*elt)[j]);
462           int jAbs(toAbsIdNot(j));
463           eltDestination->setEltAtRank(jAbs,elt1);
464         }
465     }
466 }
467
468 ForEachLoop::ForEachLoop(const std::string& name, TypeCode *typeOfDataSplitted):DynParaLoop(name,typeOfDataSplitted),
469                                                                                 _splitterNode(NAME_OF_SPLITTERNODE,typeOfDataSplitted,this),
470                                                                                 _execCurrentId(0),_nodeForSpecialCases(0),_currentIndex(0),_passedData(0)
471 {
472 }
473
474 ForEachLoop::ForEachLoop(const ForEachLoop& other, ComposedNode *father, bool editionOnly):DynParaLoop(other,father,editionOnly),
475                                                                                            _splitterNode(other._splitterNode,this),
476                                                                                            _execCurrentId(0),_nodeForSpecialCases(0),_currentIndex(0),_passedData(0)
477 {
478   int i=0;
479   if(!editionOnly)
480     for(vector<AnySplitOutputPort *>::const_iterator iter2=other._outGoingPorts.begin();iter2!=other._outGoingPorts.end();iter2++,i++)
481       {
482         AnySplitOutputPort *temp=new AnySplitOutputPort(*(*iter2),this);
483         InterceptorInputPort *interc=new InterceptorInputPort(*other._intecptrsForOutGoingPorts[i],this);
484         temp->addRepr(getOutPort(other.getOutPortName((*iter2)->getRepr())),interc);
485         interc->setRepr(temp);
486         _outGoingPorts.push_back(temp);
487         _intecptrsForOutGoingPorts.push_back(interc);
488       }
489 }
490
491 Node *ForEachLoop::simpleClone(ComposedNode *father, bool editionOnly) const
492 {
493   return new ForEachLoop(*this,father,editionOnly);
494 }
495
496 ForEachLoop::~ForEachLoop()
497 {
498   cleanDynGraph();
499   for(vector<AnySplitOutputPort *>::iterator iter=_outGoingPorts.begin();iter!=_outGoingPorts.end();iter++)
500     delete *iter;
501   for(vector<InterceptorInputPort *>::iterator iter2=_intecptrsForOutGoingPorts.begin();iter2!=_intecptrsForOutGoingPorts.end();iter2++)
502     delete *iter2;
503   delete _passedData;
504 }
505
506 void ForEachLoop::init(bool start)
507 {
508   DynParaLoop::init(start);
509   _splitterNode.init(start);
510   _execCurrentId=0;
511   cleanDynGraph();
512   _currentIndex = 0;
513   exUpdateProgress();
514   if(_passedData)
515     _passedData->init();
516 }
517
518 void ForEachLoop::exUpdateState()
519 {
520   DEBTRACE("ForEachLoop::exUpdateState");
521   if(_state == YACS::DISABLED)
522     return;
523   if(_state == YACS::DONE)
524     return;
525   if(_inGate.exIsReady())
526     {
527       //internal graph update
528       int i;
529       int nbOfBr(_nbOfBranches.getIntValue()),nbOfElts(_splitterNode.getNumberOfElements()),nbOfEltsDone(0);
530       if(_passedData)
531         {
532           _passedData->checkCompatibilyWithNb(nbOfElts);
533           nbOfEltsDone=_passedData->getNumberOfEltsAlreadyDone();
534         }
535       int nbOfEltsToDo(nbOfElts-nbOfEltsDone);
536
537       DEBTRACE("nbOfElts=" << nbOfElts);
538       DEBTRACE("nbOfBr=" << nbOfBr);
539
540       if(nbOfEltsToDo==0)
541         {
542           prepareSequenceValues(0);
543           delete _nodeForSpecialCases;
544           _nodeForSpecialCases=new FakeNodeForForEachLoop(this,true);
545           setState(YACS::ACTIVATED);
546           return ;
547         }
548       if(nbOfBr<=0)
549         {
550           delete _nodeForSpecialCases;
551           _nodeForSpecialCases=new FakeNodeForForEachLoop(this,getAllOutPortsLeavingCurrentScope().empty());
552           setState(YACS::ACTIVATED);
553           return ;
554         }
555       if(nbOfBr>nbOfEltsToDo)
556         nbOfBr=nbOfEltsToDo;
557       _execNodes.resize(nbOfBr);
558       _execIds.resize(nbOfBr);
559       _execOutGoingPorts.resize(nbOfBr);
560       prepareSequenceValues(nbOfElts);
561       if(_initNode)
562         _execInitNodes.resize(nbOfBr);
563       _initializingCounter = 0;
564       if (_finalizeNode)
565         _execFinalizeNodes.resize(nbOfBr);
566
567       vector<Node *> origNodes;
568       origNodes.push_back(_initNode);
569       origNodes.push_back(_node);
570       origNodes.push_back(_finalizeNode);
571
572       //Conversion exceptions can be thrown by createOutputOutOfScopeInterceptors 
573       //so catch them to control errors
574       try
575         {
576           for(i=0;i<nbOfBr;i++)
577             {
578               DEBTRACE( "-------------- 2" );
579               vector<Node *> clonedNodes = cloneAndPlaceNodesCoherently(origNodes);
580               if(_initNode)
581                 _execInitNodes[i] = clonedNodes[0];
582               _execNodes[i] = clonedNodes[1];
583               if(_finalizeNode)
584                 _execFinalizeNodes[i] = clonedNodes[2];
585               DEBTRACE( "-------------- 4" );
586               prepareInputsFromOutOfScope(i);
587               DEBTRACE( "-------------- 5" );
588               createOutputOutOfScopeInterceptors(i);
589               DEBTRACE( "-------------- 6" );
590             }
591           for(i=0;i<nbOfBr;i++)
592             {
593               DEBTRACE( "-------------- 1 " << i << " " << _execCurrentId);
594               _execIds[i]=_execCurrentId;
595               int posInAbs(_execCurrentId);
596               if(_passedData)
597                 posInAbs=_passedData->toAbsId(_execCurrentId);
598               _splitterNode.putSplittedValueOnRankTo(posInAbs,i,true);
599               _execCurrentId++;
600               DEBTRACE( "-------------- 7" );
601             }
602           if(_passedData)
603             {
604               _passedData->checkLevel2(_execOutGoingPorts[0]);
605               _passedData->assignAlreadyDone(_execVals);
606             }
607         }
608       catch(YACS::Exception& ex)
609         {
610           //ForEachLoop must be put in error and the exception rethrown to notify the caller
611           DEBTRACE( "ForEachLoop::exUpdateState: " << ex.what() );
612           setState(YACS::ERROR);
613           setErrorDetails(ex.what());
614           exForwardFailed();
615           throw;
616         }
617
618       setState(YACS::ACTIVATED); // move the calling of setState method there for adding observers for clone nodes in GUI part
619
620       //let's go
621       for(i=0;i<nbOfBr;i++)
622         if(_initNode)
623           {
624             _execInitNodes[i]->exUpdateState();
625             _initializingCounter++;
626           }
627         else
628           {
629             _nbOfEltConsumed++;
630             _execNodes[i]->exUpdateState();
631           }
632
633       forwardExecStateToOriginalBody(_execNodes[nbOfBr-1]);
634     }
635 }
636
637 void ForEachLoop::exUpdateProgress()
638 {
639   // emit notification to all observers registered with the dispatcher on any change of the node's state
640   sendEvent("progress");
641 }
642
643 void ForEachLoop::getReadyTasks(std::vector<Task *>& tasks)
644 {
645   if(!_node)
646     return;
647   if(_state==YACS::TOACTIVATE) setState(YACS::ACTIVATED);
648   if(_state==YACS::TOACTIVATE || _state==YACS::ACTIVATED)
649     {
650       if(_nodeForSpecialCases)
651         {
652           _nodeForSpecialCases->getReadyTasks(tasks);
653           return ;
654         }
655       vector<Node *>::iterator iter;
656       for (iter=_execNodes.begin() ; iter!=_execNodes.end() ; iter++)
657         (*iter)->getReadyTasks(tasks);
658       for (iter=_execInitNodes.begin() ; iter!=_execInitNodes.end() ; iter++)
659         (*iter)->getReadyTasks(tasks);
660       for (iter=_execFinalizeNodes.begin() ; iter!=_execFinalizeNodes.end() ; iter++)
661         (*iter)->getReadyTasks(tasks);
662     }
663 }
664
665 int ForEachLoop::getNumberOfInputPorts() const
666 {
667   return DynParaLoop::getNumberOfInputPorts()+1;
668 }
669
670 void ForEachLoop::checkNoCyclePassingThrough(Node *node) throw(YACS::Exception)
671 {
672   //TO DO
673 }
674
675 void ForEachLoop::selectRunnableTasks(std::vector<Task *>& tasks)
676 {
677 }
678
679 std::list<InputPort *> ForEachLoop::getSetOfInputPort() const
680 {
681   list<InputPort *> ret=DynParaLoop::getSetOfInputPort();
682   ret.push_back((InputPort *)&_splitterNode._dataPortToDispatch);
683   return ret;
684 }
685
686 std::list<InputPort *> ForEachLoop::getLocalInputPorts() const
687 {
688   list<InputPort *> ret=DynParaLoop::getLocalInputPorts();
689   ret.push_back((InputPort *)&_splitterNode._dataPortToDispatch);
690   return ret;
691 }
692
693 InputPort *ForEachLoop::getInputPort(const std::string& name) const throw(YACS::Exception)
694 {
695   if(name==SplitterNode::NAME_OF_SEQUENCE_INPUT)
696     return (InputPort *)&_splitterNode._dataPortToDispatch;
697   else
698     return DynParaLoop::getInputPort(name);
699 }
700
701 OutputPort *ForEachLoop::getOutputPort(const std::string& name) const throw(YACS::Exception)
702 {
703   for(vector<AnySplitOutputPort *>::const_iterator iter=_outGoingPorts.begin();iter!=_outGoingPorts.end();iter++)
704     {
705       if(name==(*iter)->getName())
706         return (OutputPort *)(*iter);
707     }
708   return DynParaLoop::getOutputPort(name);
709 }
710
711 OutPort *ForEachLoop::getOutPort(const std::string& name) const throw(YACS::Exception)
712 {
713   for(vector<AnySplitOutputPort *>::const_iterator iter=_outGoingPorts.begin();iter!=_outGoingPorts.end();iter++)
714     {
715       if(name==(*iter)->getName())
716         return (OutPort *)(*iter);
717     }
718   return DynParaLoop::getOutPort(name);
719 }
720
721 Node *ForEachLoop::getChildByShortName(const std::string& name) const throw(YACS::Exception)
722 {
723   if(name==NAME_OF_SPLITTERNODE)
724     return (Node *)&_splitterNode;
725   else
726     return DynParaLoop::getChildByShortName(name);
727 }
728
729 //! Method used to notify the node that a child node has finished
730 /*!
731  * Update the current state and return the change state
732  *
733  *  \param node : the child node that has finished
734  *  \return the state change
735  */
736 YACS::Event ForEachLoop::updateStateOnFinishedEventFrom(Node *node)
737 {
738   DEBTRACE("updateStateOnFinishedEventFrom " << node->getName() << " " << node->getState());
739   unsigned int id;
740   switch(getIdentityOfNotifyerNode(node,id))
741     {
742     case INIT_NODE:
743       return updateStateForInitNodeOnFinishedEventFrom(node,id);
744     case WORK_NODE:
745       return updateStateForWorkNodeOnFinishedEventFrom(node,id,true);
746     case FINALIZE_NODE:
747       return updateStateForFinalizeNodeOnFinishedEventFrom(node,id);
748     default:
749       YASSERT(false);
750     }
751   return YACS::NOEVENT;
752 }
753
754 YACS::Event ForEachLoop::updateStateForInitNodeOnFinishedEventFrom(Node *node, unsigned int id)
755 {
756   _execNodes[id]->exUpdateState();
757   _nbOfEltConsumed++;
758   _initializingCounter--;
759   _currentIndex++;
760   if (_initializingCounter == 0)
761     _initNode->setState(DONE);
762   return YACS::NOEVENT;
763 }
764
765 /*!
766  * \param [in] isNormalFinish - if true
767  */
768 YACS::Event ForEachLoop::updateStateForWorkNodeOnFinishedEventFrom(Node *node, unsigned int id, bool isNormalFinish)
769 {
770   _currentIndex++;
771   exUpdateProgress();
772   if(isNormalFinish)
773     {
774       int globalId(_execIds[id]);
775       if(_passedData)
776         globalId=_passedData->toAbsId(globalId);
777       sendEvent2("progress_ok",&globalId);
778       storeOutValsInSeqForOutOfScopeUse(globalId,id);
779     }
780   else
781     {
782       int globalId(_execIds[id]);
783       if(_passedData)
784         globalId=_passedData->toAbsId(globalId);
785       sendEvent2("progress_ko",&globalId);
786     }
787   //
788   if(_execCurrentId==getFinishedId())
789     {//No more elements of _dataPortToDispatch to treat
790       _execIds[id]=NOT_RUNNING_BRANCH_ID;
791       //analyzing if some samples are still on treatment on other branches.
792       bool isFinished(true);
793       for(int i=0;i<_execIds.size() && isFinished;i++)
794         isFinished=(_execIds[i]==NOT_RUNNING_BRANCH_ID);
795       if(isFinished)
796         {
797           try
798           {
799               if(_failedCounter!=0)
800                 {// case of keepgoing mode + a failed
801                   std::ostringstream oss; oss << "Keep Going mode activated and some errors (" << _failedCounter << ")reported !";
802                   DEBTRACE("ForEachLoop::updateStateOnFinishedEventFrom : "<< oss.str());
803                   setState(YACS::FAILED);
804                   return YACS::ABORT;
805                 }
806               pushAllSequenceValues();
807
808               if (_node)
809                 {
810                   _node->setState(YACS::DONE);
811
812                   ComposedNode* compNode = dynamic_cast<ComposedNode*>(_node);
813                   if (compNode)
814                     {
815                       std::list<Node *> aChldn = compNode->getAllRecursiveConstituents();
816                       std::list<Node *>::iterator iter=aChldn.begin();
817                       for(;iter!=aChldn.end();iter++)
818                         (*iter)->setState(YACS::DONE);
819                     }
820                 }
821
822               if (_finalizeNode == NULL)
823                 {
824                   // No finalize node, we just finish the loop at the end of exec nodes execution
825                   setState(YACS::DONE);
826                   return YACS::FINISH;
827                 }
828               else
829                 {
830                   // Run the finalize nodes, the loop will be done only when they all finish
831                   _unfinishedCounter = 0;  // This counter indicates how many branches are not finished
832                   for (int i=0 ; i<_execIds.size() ; i++)
833                     {
834                       YASSERT(_execIds[i] == NOT_RUNNING_BRANCH_ID);
835                       DEBTRACE("Launching finalize node for branch " << i);
836                       _execFinalizeNodes[i]->exUpdateState();
837                       _unfinishedCounter++;
838                     }
839                   return YACS::NOEVENT;
840                 }
841           }
842           catch(YACS::Exception& ex)
843           {
844               DEBTRACE("ForEachLoop::updateStateOnFinishedEventFrom: "<<ex.what());
845               //no way to push results : put following nodes in FAILED state
846               //TODO could be more fine grain : put only concerned nodes in FAILED state
847               exForwardFailed();
848               setState(YACS::ERROR);
849               return YACS::ABORT;
850           }
851         }
852     }
853   else if(_state == YACS::ACTIVATED)
854     {//more elements to do and loop still activated
855       _execIds[id]=_execCurrentId;
856       node->init(false);
857       int posInAbs(_execCurrentId);
858       if(_passedData)
859         posInAbs=_passedData->toAbsId(_execCurrentId);
860       _splitterNode.putSplittedValueOnRankTo(posInAbs,id,false);
861       _execCurrentId++;
862       node->exUpdateState();
863       forwardExecStateToOriginalBody(node);
864       _nbOfEltConsumed++;
865     }
866   else
867     {//elements to process and loop no more activated
868       DEBTRACE("foreach loop state " << _state);
869     }
870   return YACS::NOEVENT;
871 }
872
873 YACS::Event ForEachLoop::updateStateForFinalizeNodeOnFinishedEventFrom(Node *node, unsigned int id)
874 {
875   DEBTRACE("Finalize node finished on branch " << id);
876   _unfinishedCounter--;
877   _currentIndex++;
878   exUpdateProgress();
879   DEBTRACE(_unfinishedCounter << " finalize nodes still running");
880   if (_unfinishedCounter == 0)
881     {
882       _finalizeNode->setState(YACS::DONE);
883       setState(YACS::DONE);
884       return YACS::FINISH;
885     }
886   else
887     return YACS::NOEVENT;
888 }
889
890 YACS::Event ForEachLoop::updateStateOnFailedEventFrom(Node *node, const Executor *execInst)
891 {
892   unsigned int id;
893   DynParaLoop::TypeOfNode ton(getIdentityOfNotifyerNode(node,id));
894   // TODO: deal with keepgoing without the dependency to Executor
895   if(ton!=WORK_NODE || !execInst->getKeepGoingProperty())
896     return DynParaLoop::updateStateOnFailedEventFrom(node,execInst);
897   else
898     {
899       _failedCounter++;
900       return updateStateForWorkNodeOnFinishedEventFrom(node,id,false);
901     }
902 }
903
904 void ForEachLoop::InterceptorizeNameOfPort(std::string& portName)
905 {
906   std::replace_if(portName.begin(), portName.end(), std::bind1st(std::equal_to<char>(), '.'), '_');
907   portName += INTERCEPTOR_STR;
908 }
909
910 void ForEachLoop::buildDelegateOf(std::pair<OutPort *, OutPort *>& port, InPort *finalTarget, const std::list<ComposedNode *>& pointsOfView)
911 {
912   DynParaLoop::buildDelegateOf(port,finalTarget,pointsOfView);
913   string typeOfPortInstance=(port.first)->getNameOfTypeOfCurrentInstance();
914   if(typeOfPortInstance==OutputPort::NAME)
915     {
916       vector<AnySplitOutputPort *>::iterator iter=_outGoingPorts.begin();
917       int i=0;
918       for(;iter!=_outGoingPorts.end();iter++,i++)
919         if((*iter)->getRepr()==port.first || *iter==port.first)
920           break;
921       if(iter!=_outGoingPorts.end())
922         {
923           if(*iter!=port.first)
924             {
925               (*iter)->incrRef();
926               (*iter)->addRepr(port.first,_intecptrsForOutGoingPorts[i]);
927             }
928           port.first=*iter;
929         }
930       else
931         {
932           TypeCode *tcTrad((YACS::ENGINE::TypeCode*)finalTarget->edGetType()->subContentType(getFEDeltaBetween(port.first,finalTarget)));
933           TypeCodeSeq *newTc=(TypeCodeSeq *)TypeCode::sequenceTc("","",tcTrad);
934           // The out going ports belong to the ForEachLoop, whereas
935           // the delegated port belongs to a node child of the ForEachLoop.
936           // The name of the delegated port contains dots (bloc.node.outport),
937           // whereas the name of the out going port shouldn't do.
938           std::string outputPortName(getPortName(port.first));
939           InterceptorizeNameOfPort(outputPortName);
940           AnySplitOutputPort *newPort(new AnySplitOutputPort(outputPortName,this,newTc));
941           InterceptorInputPort *intercptor(new InterceptorInputPort(outputPortName + "_in",this,tcTrad));
942           intercptor->setRepr(newPort);
943           newTc->decrRef();
944           newPort->addRepr(port.first,intercptor);
945           _outGoingPorts.push_back(newPort);
946           _intecptrsForOutGoingPorts.push_back(intercptor);
947           port.first=newPort;
948         }
949     }
950   else
951     throw Exception("ForEachLoop::buildDelegateOf : not implemented for DS because not specified");
952 }
953
954 void ForEachLoop::getDelegateOf(std::pair<OutPort *, OutPort *>& port, InPort *finalTarget, const std::list<ComposedNode *>& pointsOfView) throw(YACS::Exception)
955 {
956   string typeOfPortInstance=(port.first)->getNameOfTypeOfCurrentInstance();
957   if(typeOfPortInstance==OutputPort::NAME)
958     {
959       vector<AnySplitOutputPort *>::iterator iter=_outGoingPorts.begin();
960       for(;iter!=_outGoingPorts.end();iter++)
961         if((*iter)->getRepr()==port.first)
962           break;
963       if(iter==_outGoingPorts.end())
964         {
965           string what("ForEachLoop::getDelegateOf : Port with name "); what+=port.first->getName(); what+=" not exported by ForEachLoop "; what+=_name; 
966           throw Exception(what);
967         }
968       else
969         port.first=(*iter);
970     }
971   else
972     throw Exception("ForEachLoop::getDelegateOf : not implemented because not specified");
973 }
974
975 void ForEachLoop::releaseDelegateOf(OutPort *portDwn, OutPort *portUp, InPort *finalTarget, const std::list<ComposedNode *>& pointsOfView) throw(YACS::Exception)
976 {
977   string typeOfPortInstance=portDwn->getNameOfTypeOfCurrentInstance();
978   if(typeOfPortInstance==OutputPort::NAME)
979     {
980       vector<AnySplitOutputPort *>::iterator iter=_outGoingPorts.begin();
981       vector<InterceptorInputPort *>::iterator iter2=_intecptrsForOutGoingPorts.begin();
982       for(;iter!=_outGoingPorts.end();iter++,iter2++)
983         if((*iter)->getRepr()==portDwn)
984           break;
985       //ASSERT(portUp==*iter.second)
986       if((*iter)->decrRef())
987         {
988           AnySplitOutputPort *p=*iter;
989           _outGoingPorts.erase(iter);
990           delete p;
991           InterceptorInputPort *ip=*iter2;
992           _intecptrsForOutGoingPorts.erase(iter2);
993           delete ip;
994         }
995     }
996 }
997
998 OutPort *ForEachLoop::getDynOutPortByAbsName(int branchNb, const std::string& name)
999 {
1000   string portName, nodeName;
1001   splitNamesBySep(name,Node::SEP_CHAR_IN_PORT,nodeName,portName,false);
1002   Node *staticChild = getChildByName(nodeName);
1003   return _execNodes[branchNb]->getOutPort(portName);//It's impossible(garanteed by YACS::ENGINE::ForEachLoop::buildDelegateOf)
1004   //that a link starting from _initNode goes out of scope of 'this'.
1005 }
1006
1007 void ForEachLoop::cleanDynGraph()
1008 {
1009   DynParaLoop::cleanDynGraph();
1010   for(vector< SequenceAny *>::iterator iter3=_execVals.begin();iter3!=_execVals.end();iter3++)
1011     (*iter3)->decrRef();
1012   _execVals.clear();
1013   for(vector< vector<AnyInputPort *> >::iterator iter4=_execOutGoingPorts.begin();iter4!=_execOutGoingPorts.end();iter4++)
1014     for(vector<AnyInputPort *>::iterator iter5=(*iter4).begin();iter5!=(*iter4).end();iter5++)
1015       delete *iter5;
1016   _execOutGoingPorts.clear();
1017 }
1018
1019 void ForEachLoop::storeOutValsInSeqForOutOfScopeUse(int rank, int branchNb)
1020 {
1021   vector<AnyInputPort *>::iterator iter;
1022   int i=0;
1023   for(iter=_execOutGoingPorts[branchNb].begin();iter!=_execOutGoingPorts[branchNb].end();iter++,i++)
1024     {
1025       Any *val=(Any *)(*iter)->getValue();
1026       _execVals[i]->setEltAtRank(rank,val);
1027     }
1028 }
1029
1030 int ForEachLoop::getFinishedId()
1031 {
1032   if(!_passedData)
1033     return _splitterNode.getNumberOfElements();
1034   else
1035     return _passedData->getNumberOfElementsToDo();
1036 }
1037
1038 void ForEachLoop::prepareSequenceValues(int sizeOfSamples)
1039 {
1040   _execVals.resize(_outGoingPorts.size());
1041   vector<AnySplitOutputPort *>::iterator iter=_outGoingPorts.begin();
1042   for(int i=0;iter!=_outGoingPorts.end();iter++,i++)
1043     _execVals[i]=SequenceAny::New((*iter)->edGetType()->contentType(),sizeOfSamples);
1044 }
1045
1046 void ForEachLoop::pushAllSequenceValues()
1047 {
1048   vector<AnySplitOutputPort *>::iterator iter=_outGoingPorts.begin();
1049   int i=0;
1050   for(;iter!=_outGoingPorts.end();iter++,i++)
1051     (*iter)->put((const void *)_execVals[i]);
1052 }
1053
1054 void ForEachLoop::createOutputOutOfScopeInterceptors(int branchNb)
1055 {
1056   vector<AnySplitOutputPort *>::iterator iter=_outGoingPorts.begin();
1057   int i=0;
1058   for(;iter!=_outGoingPorts.end();iter++,i++)
1059     {
1060       DEBTRACE( (*iter)->getName() << " " << (*iter)->edGetType()->kind() );
1061       //AnyInputPort *interceptor=new AnyInputPort((*iter)->getName(),this,(*iter)->edGetType());
1062       OutPort *portOut=getDynOutPortByAbsName(branchNb,getOutPortName(((*iter)->getRepr())));
1063       DEBTRACE( portOut->getName() );
1064       TypeCode *tc((TypeCode *)(*iter)->edGetType()->contentType());
1065       AnyInputPort *interceptor=new AnyInputPort((*iter)->getName(),this,tc);
1066       portOut->addInPort(interceptor);
1067       _execOutGoingPorts[branchNb].push_back(interceptor);
1068     }
1069 }
1070
1071 void ForEachLoop::checkLinkPossibility(OutPort *start, const std::list<ComposedNode *>& pointsOfViewStart,
1072                                        InPort *end, const std::list<ComposedNode *>& pointsOfViewEnd) throw(YACS::Exception)
1073 {
1074   DynParaLoop::checkLinkPossibility(start, pointsOfViewStart, end, pointsOfViewEnd);
1075   if(end->getNode() == &_splitterNode)
1076     throw Exception("Illegal link within a foreach loop: \
1077 the 'SmplsCollection' port cannot be linked within the scope of the loop.");
1078   if(end == &_nbOfBranches)
1079     throw Exception("Illegal link within a foreach loop: \
1080 the 'nbBranches' port cannot be linked within the scope of the loop.");
1081 }
1082
1083 std::list<OutputPort *> ForEachLoop::getLocalOutputPorts() const
1084 {
1085   list<OutputPort *> ret;
1086   ret.push_back(getOutputPort(NAME_OF_SPLITTED_SEQ_OUT)); 
1087   return ret;
1088 }
1089
1090 void ForEachLoop::accept(Visitor *visitor)
1091 {
1092   visitor->visitForEachLoop(this);
1093 }
1094
1095 //! Dump the node state to a stream
1096 /*!
1097  * \param os : the output stream
1098  */
1099 void ForEachLoop::writeDot(std::ostream &os) const
1100 {
1101   os << "  subgraph cluster_" << getId() << "  {\n" ;
1102   //only one node in a loop
1103   if(_node)
1104     {
1105       _node->writeDot(os);
1106       os << getId() << " -> " << _node->getId() << ";\n";
1107     }
1108   os << "}\n" ;
1109   os << getId() << "[fillcolor=\"" ;
1110   YACS::StatesForNode state=getEffectiveState();
1111   os << getColorState(state);
1112   os << "\" label=\"" << "Loop:" ;
1113   os << getName() <<"\"];\n";
1114 }
1115
1116 //! Reset the state of the node and its children depending on the parameter level
1117 void ForEachLoop::resetState(int level)
1118 {
1119   if(level==0)return;
1120   DynParaLoop::resetState(level);
1121   _execCurrentId=0;
1122   //Note: cleanDynGraph is not a virtual method (must be called from ForEachLoop object) 
1123   cleanDynGraph();
1124 }
1125
1126 std::string ForEachLoop::getProgress() const
1127 {
1128   int nbElems(getNbOfElementsToBeProcessed());
1129   std::stringstream aProgress;
1130   if (nbElems > 0)
1131     aProgress << _currentIndex << "/" << nbElems;
1132   else
1133     aProgress << "0";
1134   return aProgress.str();
1135 }
1136
1137 //! Get the progress weight for all elementary nodes
1138 /*!
1139  * Only elementary nodes have weight. For each node in the loop, the weight done is multiplied
1140  * by the number of elements done and the weight total by the number total of elements
1141  */
1142 list<ProgressWeight> ForEachLoop::getProgressWeight() const
1143 {
1144   list<ProgressWeight> ret;
1145   list<Node *> setOfNode=edGetDirectDescendants();
1146   int elemDone=getCurrentIndex();
1147   int elemTotal=getNbOfElementsToBeProcessed();
1148   for(list<Node *>::const_iterator iter=setOfNode.begin();iter!=setOfNode.end();iter++)
1149     {
1150       list<ProgressWeight> myCurrentSet=(*iter)->getProgressWeight();
1151       for(list<ProgressWeight>::iterator iter=myCurrentSet.begin();iter!=myCurrentSet.end();iter++)
1152         {
1153           (*iter).weightDone=((*iter).weightTotal) * elemDone;
1154           (*iter).weightTotal*=elemTotal;
1155         }
1156       ret.insert(ret.end(),myCurrentSet.begin(),myCurrentSet.end());
1157     }
1158   return ret;
1159 }
1160
1161 int ForEachLoop::getNbOfElementsToBeProcessed() const
1162 {
1163   int nbBranches = _nbOfBranches.getIntValue();
1164   return _splitterNode.getNumberOfElements()
1165          + (_initNode ? nbBranches:0)
1166          + (_finalizeNode ? nbBranches:0) ;
1167 }
1168
1169 /*!
1170  * This method allows to retrieve the state of \a this during execution or after. This method works even if this is \b NOT complete, or during execution or after a failure in \a this.
1171  * The typical usage of this method is to retrieve the results of items that passed successfully to avoid to lose all of them if only one fails.
1172  * This method has one input \a execut and 3 outputs.
1173  *
1174  * \param [in] execut - The single input is for threadsafety reasons because this method can be called safely during the execution of \a this.
1175  * \param [out] outputs - For each output ports in \a this linked with nodes sharing the same father than \a this the passed results are stored.
1176  *                        All of the items in \a outputs have the same size.
1177  * \param [out] nameOfOutputs - The array with same size than \a outputs, that tells for each item in outputs the output port it refers to.
1178  * \return the list of ids among \c this->edGetSeqOfSamplesPort() that run successfully. The length of this returned array will be the length of all
1179  *         SequenceAny objects contained in \a outputs.
1180  *
1181  * \sa edGetSeqOfSamplesPort
1182  */
1183 std::vector<unsigned int> ForEachLoop::getPassedResults(Executor *execut, std::vector<SequenceAny *>& outputs, std::vector<std::string>& nameOfOutputs) const
1184 {
1185   YACS::BASES::AutoLocker<YACS::BASES::Mutex> alck(&(execut->getTheMutexForSchedulerUpdate()));
1186   if(_execVals.empty())
1187     return std::vector<unsigned int>();
1188   if(_execOutGoingPorts.empty())
1189     return std::vector<unsigned int>();
1190   std::size_t sz(_execVals.size());
1191   outputs.resize(sz);
1192   nameOfOutputs.resize(sz);
1193   const std::vector<AnyInputPort *>& ports(_execOutGoingPorts[0]);
1194   for(std::size_t i=0;i<sz;i++)
1195     {
1196       outputs[i]=_execVals[i]->removeUnsetItemsFromThis();
1197       nameOfOutputs[i]=ports[i]->getName();
1198     }
1199   return _execVals[0]->getSetItems();
1200 }
1201
1202 /*!
1203  * This method is typically useful for post-mortem relaunch to avoid to recompute already passed cases. This method takes in input exactly the parameters retrieved by
1204  * getPassedResults method.
1205  */
1206 void ForEachLoop::assignPassedResults(const std::vector<unsigned int>& passedIds, const std::vector<SequenceAny *>& passedOutputs, const std::vector<std::string>& nameOfOutputs)
1207 {
1208   delete _passedData;
1209   _failedCounter=0;
1210   _passedData=new ForEachLoopPassedData(passedIds,passedOutputs,nameOfOutputs);
1211 }
1212
1213 int ForEachLoop::getFEDeltaBetween(OutPort *start, InPort *end)
1214 {
1215   Node *ns(start->getNode()),*ne(end->getNode());
1216   ComposedNode *co(getLowestCommonAncestor(ns,ne));
1217   int ret(0);
1218   Node *work(ns);
1219   while(work!=co)
1220     {
1221       ForEachLoop *isFE(dynamic_cast<ForEachLoop *>(work));
1222       if(isFE)
1223         ret++;
1224       work=work->getFather();
1225     }
1226   if(dynamic_cast<AnySplitOutputPort *>(start))
1227     ret--;
1228   return ret;
1229 }
1230
1231 /*!
1232  * This method is used to obtain the values already processed by the ForEachLoop.
1233  * A new ForEachLoopPassedData object is returned. You have to delete it.
1234  */
1235 ForEachLoopPassedData* ForEachLoop::getProcessedData()const
1236 {
1237   std::vector<SequenceAny *> outputs;
1238   std::vector<std::string> nameOfOutputs;
1239   if(_execVals.empty() || _execOutGoingPorts.empty())
1240     return new ForEachLoopPassedData(std::vector<unsigned int>(), outputs, nameOfOutputs);
1241   std::size_t sz(_execVals.size());
1242   outputs.resize(sz);
1243   nameOfOutputs.resize(sz);
1244   const std::vector<AnyInputPort *>& ports(_execOutGoingPorts[0]);
1245   for(std::size_t i=0;i<sz;i++)
1246     {
1247       outputs[i]=_execVals[i]->removeUnsetItemsFromThis();
1248       nameOfOutputs[i]=ports[i]->getName();
1249     }
1250   return new ForEachLoopPassedData(_execVals[0]->getSetItems(), outputs, nameOfOutputs);
1251 }
1252
1253 void ForEachLoop::setProcessedData(ForEachLoopPassedData* processedData)
1254 {
1255   if(_passedData)
1256     delete _passedData;
1257   _passedData = processedData;
1258 }
1259
1260 /*!
1261  * \param portName : "interceptorized" name of port.
1262  */
1263 const YACS::ENGINE::TypeCode* ForEachLoop::getOutputPortType(const std::string& portName)const
1264 {
1265   const YACS::ENGINE::TypeCode* ret=NULL;
1266   vector<AnySplitOutputPort *>::const_iterator it;
1267   for(it=_outGoingPorts.begin();it!=_outGoingPorts.end() && ret==NULL;it++)
1268   {
1269     std::string originalPortName(getPortName(*it));
1270     //InterceptorizeNameOfPort(originalPortName);
1271     DEBTRACE("ForEachLoop::getOutputPortType compare " << portName << " == " << originalPortName);
1272     if(originalPortName == portName)
1273     {
1274       ret = (*it)->edGetType()->contentType();
1275     }
1276   }
1277   return ret;
1278 }