]> Creatis software - bbtk.git/blob - kernel/src/bbtkBlackBox.cxx
* Viewer2D now works !!!
[bbtk.git] / kernel / src / bbtkBlackBox.cxx
1 /*=========================================================================                                                                               
2   Program:   bbtk
3   Module:    $RCSfile: bbtkBlackBox.cxx,v $
4   Language:  C++
5   Date:      $Date: 2008/12/09 12:54:02 $
6   Version:   $Revision: 1.34 $
7 =========================================================================*/
8
9 /* ---------------------------------------------------------------------
10
11 * Copyright (c) CREATIS-LRMN (Centre de Recherche en Imagerie Medicale)
12 * Authors : Eduardo Davila, Laurent Guigues, Jean-Pierre Roux
13 *
14 *  This software is governed by the CeCILL-B license under French law and 
15 *  abiding by the rules of distribution of free software. You can  use, 
16 *  modify and/ or redistribute the software under the terms of the CeCILL-B 
17 *  license as circulated by CEA, CNRS and INRIA at the following URL 
18 *  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html 
19 *  or in the file LICENSE.txt.
20 *
21 *  As a counterpart to the access to the source code and  rights to copy,
22 *  modify and redistribute granted by the license, users are provided only
23 *  with a limited warranty  and the software's author,  the holder of the
24 *  economic rights,  and the successive licensors  have only  limited
25 *  liability. 
26 *
27 *  The fact that you are presently reading this means that you have had
28 *  knowledge of the CeCILL-B license and that you accept its terms.
29 * ------------------------------------------------------------------------ */                                                                         
30
31 /**
32  *  \file 
33  *  \brief Class bbtk::BlackBox : abstract black-box interface. 
34  */
35 #include "bbtkBlackBox.h"
36 #include "bbtkPackage.h"
37 #include "bbtkMessageManager.h"
38 #include "bbtkFactory.h"
39 #include "bbtkBlackBoxOutputConnector.h"
40
41 #include "bbtkConfigurationFile.h"
42 #include "bbtkWxBlackBox.h"
43
44 #include <fstream>
45 //#include <vector>
46
47
48 namespace bbtk
49 {
50
51
52   static bool bbmgSomeBoxExecuting = false;
53   static bool bbmgFreezeExecution = false;
54   static std::set<BlackBox::WeakPointer> bbmgExecutionList;
55
56   //=========================================================================
57   BlackBox::Deleter::Deleter()
58   {
59   }
60   //=========================================================================
61   
62   //=========================================================================
63   void BlackBox::Deleter::Delete(Object* p)
64   {
65     BlackBox* b = dynamic_cast<BlackBox*>(p);
66     if (!b)
67       {
68         bbtkInternalError("BlackBox::Deleter::Delete("<<p->GetObjectName()
69                           <<"["<<p<<"]) : "
70                           <<"dynamic cast to BlackBox* failed !");
71       }
72     std::string name = p->GetObjectName();//b->bbGetNameWithParent();
73     bbtkDebugMessage("object",2,"##> BlackBox::Deleter(\""<<name<<"\")"<<std::endl);
74
75
76     BlackBoxDescriptor::WeakPointer desc = b->bbGetDescriptor();
77     bbtkDebugMessage("object",2,"##> BlackBox::Deleter(\""<<name<<"\") : deleting black box"<<std::endl);
78     
79     b->bbDelete();
80
81     bbtkDebugMessage("object",2,"##> BlackBox::Deleter(\""<<name<<"\") : releasing descriptor ["<<desc.lock()<<"]"<<std::endl);
82     
83     if (!desc.expired()) 
84       {
85         Package::WeakPointer pack = desc.lock()->GetPackage();
86         if (!pack.expired()) 
87           {
88             Package::ReleaseBlackBoxDescriptor(pack,desc);
89           }
90         else 
91           {
92             bbtkDebugMessage("object",2,"##> BlackBox::Deleter(\""<<name<<"\") : descriptor package expired (was not held by a package and the box was the last instance)"<<std::endl);
93           }
94       }
95     else
96       {
97         bbtkDebugMessage("object",2,"##> BlackBox::Deleter(\""<<name<<"\") : descriptor expired : nothing to do (was not held by a package or the box is a complex black box prototype)"<<std::endl);
98       }
99     bbtkDebugMessage("object",2,"<## BlackBox::Deleter(\""<<name<<"\")"<<std::endl);
100   }
101   //=========================================================================
102
103   //=========================================================================
104   BlackBox::BlackBox(const std::string &name) 
105     : 
106     //    bbmStatus(MODIFIED), 
107     bbmExecuting(false),
108     bbmName(name),
109     bbmBoxProcessMode("Pipeline"),
110     bbmParent()
111     
112   {
113     bbtkDebugMessage("object",4,"==> BlackBox::BlackBox(\""
114                      <<name<<"\")"<<std::endl);
115     bbtkDebugMessage("object",4,"<== BlackBox::BlackBox(\""
116                      <<name<<"\")"<<std::endl);
117   }
118   //=========================================================================
119
120   //=========================================================================
121   BlackBox::BlackBox(const BlackBox&)
122   {}
123
124   //=========================================================================
125   BlackBox::BlackBox(BlackBox& from, const std::string &name) 
126     :
127     //    bbmStatus(from.bbmStatus), 
128       bbmExecuting(false),
129       bbmName(name), 
130       bbmBoxProcessMode(from.bbmBoxProcessMode),
131       bbmParent()
132
133   {
134     bbtkDebugMessage("object",4,"==> BlackBox::BlackBox("
135                      <<from.bbGetFullName()<<",\""
136                      <<name<<"\")"<<std::endl);
137     bbtkDebugMessage("object",4,"<== BlackBox::BlackBox("
138                      <<from.bbGetFullName()<<",\""
139                      <<name<<"\")"<<std::endl);
140   }
141   //=========================================================================
142
143
144   //=========================================================================
145   BlackBox::~BlackBox()
146   {
147     bbtkDebugMessage("object",4,"==> BlackBox::~BlackBox() ["<<bbmName
148                      <<"]"<<std::endl);
149     this->bbDesallocateConnectors();
150     bbtkDebugMessage("object",4,"<== BlackBox::~BlackBox() ["<<bbmName
151                      <<"]"<<std::endl);
152   }
153   //=========================================================================
154
155
156   //=========================================================================
157   /// Main processing method of the box.
158   void BlackBox::bbExecute(bool force)
159   {
160     bbtkDebugMessageInc("process",2,
161                         "=> BlackBox::bbExecute("<<(int)force<<") ["
162                         <<bbGetFullName()<<"]"<<std::endl);
163  
164     // If already executing : return
165     if (bbGetExecuting()) 
166       {
167         bbtkDebugMessage("process",2,
168                          " -> already executing : bailing out"<<std::endl);
169         return;
170       }
171
172     // If execution frozen : return
173     if (bbGlobalGetFreezeExecution()) 
174       {
175         bbtkDebugMessage("process",2,
176                          " -> FreezeExecution global flag is 'true' : abort execution"<<std::endl);
177       }
178
179     BBTK_BUSY_CURSOR;
180
181     // If force is true then update is triggered even if the box is UPTODATE
182     //    if (force) bbSetModifiedStatus();
183
184     // Calls the main recursive update method 
185     bbBackwardUpdate(Connection::Pointer());
186
187     bbtkDebugMessageDec("process",2,
188                         "<= BlackBox::bbExecute() ["
189                         <<bbGetFullName()<<"]"<<std::endl);
190   }
191   //=========================================================================
192
193   //=========================================================================
194   std::string BlackBox::bbGetFullName() const
195   { 
196     return this->bbGetNameWithParent()+"<"+this->bbGetDescriptor()->GetTypeName()+">";
197   }
198   //=========================================================================
199      
200
201
202   //=========================================================================
203   /// Returns the name with the name of the parent prepended if any
204   std::string BlackBox::bbGetNameWithParent() const
205   {
206     if (bbmParent.lock()) 
207       {
208         return bbmParent.lock()->bbGetNameWithParent() + ":" + bbmName;
209       }
210     else 
211       {
212         return bbmName;
213       }
214   } 
215   //=========================================================================
216
217   //=========================================================================
218   /// Prints the Help on the BlackBox type 
219   void BlackBox::bbGetHelp(bool full) const
220   {
221     bbGetDescriptor()->GetHelp(full); 
222   }
223   //=========================================================================
224
225
226   //=========================================================================
227   /// Returns true if the UserBlackBox has an input of name name
228   bool BlackBox::bbHasInput(const std::string& name) const
229   {
230     bbtkDebugMessageInc("Kernel",8,
231                         "BlackBox::bbHasInput(\""
232                         <<name<<"\") ["<<bbGetFullName()<<"]"
233                         <<std::endl);
234     bool r = ( bbGetDescriptor()->GetInputDescriptorMap().find(name)
235                != bbGetDescriptor()->GetInputDescriptorMap().end());
236     bbtkDebugDecTab("Kernel",8);
237     return r;
238   }
239   //=========================================================================
240
241
242   //=========================================================================  
243   /// Returns true if the UserBlackBox has an output of name name
244   bool BlackBox::bbHasOutput(const std::string& name) const
245   {
246     bbtkDebugMessageInc("Kernel",8,"BlackBox::bbHasOutput(\""
247                         <<name<<"\") ["<<bbGetFullName()<<"]"<<std::endl);
248     bool r = ( bbGetDescriptor()->GetOutputDescriptorMap().find(name)
249                != bbGetDescriptor()->GetOutputDescriptorMap().end());
250     bbtkDebugDecTab("Kernel",8);
251     return r;
252   }
253   //=========================================================================
254
255
256   //=========================================================================  
257   ///  Gets the output type of a given name
258   TypeInfo BlackBox::bbGetOutputType( const std::string &name ) const 
259   {
260     bbtkDebugMessageInc("Kernel",8,
261                         "BlackBox::bbGetOutputType(\""
262                         <<name<<"\") ["<<bbGetFullName()<<"]"<<std::endl);
263     TypeInfo r = bbGetDescriptor()->GetOutputDescriptor(name)->GetTypeInfo();
264     bbtkDebugDecTab("Kernel",8); 
265     return r;
266   }
267   //=========================================================================
268
269   //=========================================================================
270   ///  Gets the input type of a given name
271   TypeInfo BlackBox::bbGetInputType( const std::string &name ) const
272   {
273     bbtkDebugMessageInc("Kernel",8,
274                         "BlackBox::bbGetInputType(\""
275                         <<name<<"\") ["<<bbGetFullName()<<"]"<<std::endl);
276     TypeInfo r = bbGetDescriptor()->GetInputDescriptor(name)->GetTypeInfo();
277     bbtkDebugDecTab("Kernel",8);
278     return r;
279   }
280   //=========================================================================
281
282
283   //=========================================================================
284   /// Allocates the i/o connectors of the black box
285   void BlackBox::bbAllocateConnectors()
286   {  
287     bbtkDebugMessageInc("Kernel",8,
288                         "BlackBox::bbAllocateConnectors() ["
289                         <<bbGetFullName()<<"]"
290                         <<std::endl);                                   
291     const BlackBoxDescriptor::InputDescriptorMapType& imap 
292       = bbGetDescriptor()->GetInputDescriptorMap(); 
293     BlackBoxDescriptor::InputDescriptorMapType::const_iterator i;       
294     for ( i = imap.begin(); i != imap.end(); ++i )                      
295       {                                                                 
296         bbtkDebugMessage("Kernel",8,"* Allocate \""<<i->first<<"\""<<std::endl);
297         bbGetInputConnectorMap()[i->second->GetName()] 
298           = new BlackBoxInputConnector(GetThisPointer<BlackBox>());
299       }                                                                 
300     const BlackBoxDescriptor::OutputDescriptorMapType& omap 
301       = bbGetDescriptor()->GetOutputDescriptorMap();                   
302     BlackBoxDescriptor::OutputDescriptorMapType::const_iterator o; 
303     for ( o = omap.begin(); o != omap.end(); ++o )
304       {                                                 
305         bbtkDebugMessage("Kernel",8,"* Allocate \""<<o->first<<"\""<<std::endl);
306         bbGetOutputConnectorMap()[o->second->GetName()] 
307           = new BlackBoxOutputConnector();
308       }
309     bbtkDebugDecTab("Kernel",8);  
310   }
311   //=========================================================================
312
313
314   //=========================================================================
315   /// Desallocates the i/o connectors of the black box
316   void BlackBox::bbDesallocateConnectors()
317   {
318     bbtkDebugMessageInc("Kernel",8,
319                         "BlackBox::bbDesallocateConnectors()"
320                         <<std::endl);                                   
321
322     InputConnectorMapType::const_iterator i;
323     for ( i = bbGetInputConnectorMap().begin();
324           i != bbGetInputConnectorMap().end(); ++i )                   
325       {                                                                 
326         bbtkDebugMessage("Kernel",8,"* Delete \""<<i->first<<"\""<<std::endl);
327         delete (i->second);
328       }                                                                 
329     OutputConnectorMapType::const_iterator o;   
330     for ( o = bbGetOutputConnectorMap().begin(); 
331           o != bbGetOutputConnectorMap().end(); ++o )                   
332       {                                                                 
333         bbtkDebugMessage("Kernel",8,"* Delete \""<<o->first<<"\""<<std::endl);         
334         delete (o->second);
335       }                                                                 
336    
337     bbtkDebugDecTab("Kernel",8);  
338
339   }
340   //=========================================================================
341
342
343   //=========================================================================
344   /// Copies the input / output values from another box
345   void BlackBox::bbCopyIOValues(BlackBox& from)
346   {
347     bbtkDebugMessageInc("Kernel",1,
348                         "BlackBox::bbCopyIOValues("
349                         <<from.bbGetFullName()<<") ["
350                         <<bbGetFullName()<<"]"<<std::endl);
351     // copies the input values
352     const BlackBoxDescriptor::InputDescriptorMapType& imap 
353       = bbGetDescriptor()->GetInputDescriptorMap(); 
354     BlackBoxDescriptor::InputDescriptorMapType::const_iterator i;       
355     for ( i = imap.begin(); i != imap.end(); ++i )                      
356       {         
357         if (! i->second->GetCopyConstruct() ) continue;
358         std::string input = i->second->GetName();
359         bbtkDebugMessage("Kernel",2,"* Copying input "<<input<<std::endl);
360         this->bbSetInput(input, from.bbGetInput(input) );
361       }                                                                 
362     // copies the output values
363     const BlackBoxDescriptor::OutputDescriptorMapType& omap 
364       = bbGetDescriptor()->GetOutputDescriptorMap();                   
365     BlackBoxDescriptor::OutputDescriptorMapType::const_iterator o; 
366     for ( o = omap.begin(); o != omap.end(); ++o )
367       {                                                 
368         if (! o->second->GetCopyConstruct() ) continue;
369         std::string output = o->second->GetName();
370         bbtkDebugMessage("Kernel",2,"* Copying output "<<output<<std::endl);
371         this->bbSetOutput(output, from.bbGetOutput(output) );
372       }
373
374     bbtkDebugDecTab("Kernel",9);
375
376   }
377   //=========================================================================
378
379
380
381   //=========================================================================
382   bool BlackBox::bbCanReact() const 
383   { 
384     return ( bbGlobalGetSomeBoxExecuting() 
385 #ifdef _USE_WXWIDGETS_
386              || Wx::IsSomeWindowAlive() 
387 #endif
388              ); 
389   }
390   //=========================================================================
391
392
393
394   //=========================================================================
395   /// User overloadable destruction method of a black box
396   void BlackBox::bbUserDelete() 
397   {   
398     bbtkDebugMessage("process",5,
399                      "=> BlackBox::bbUserDelete() ["
400                      <<bbGetFullName()<<"]"
401                      <<" : not overloaded; using standard deletion"
402                      <<std::endl);
403     delete this;
404   }
405   //=========================================================================
406
407
408   //=========================================================================
409   BlackBox::BoxProcessModeValue BlackBox::bbGetBoxProcessModeValue() const
410   {
411     const std::string& p = bbmBoxProcessMode;
412     if ( (p == "0") ||
413          (p == "P") || (p == "p") ||
414          (p == "Pipeline") || (p == "pipeline") ) return Pipeline;
415     if ( (p == "1") ||
416          (p == "A") || (p == "a") ||
417          (p == "Always") || (p == "always") ) return Always;
418     if ( (p == "2") ||
419          (p == "R") || (p == "r") ||
420          (p == "Reactive") || (p == "reactive") ) return Reactive;
421     bbtkError(bbGetFullName()<<" : BoxProcessMode value '"<<p
422               <<"' unknown. Possible values : "
423               <<"'0'/'P'/'p'/'Pipeline'/'pipeline' | "
424               <<"'1'/'A'/'a'/'Always'/'always' | "
425               <<"'2'/'R'/'r'/'Reactive'/'reactive'"<<std::endl);
426   }
427   //=========================================================================
428   
429   //=========================================================================
430   bool  BlackBox::bbBoxProcessModeIsReactive() const
431   {
432     return (bbGetBoxProcessModeValue() == Reactive);
433   }
434   //=========================================================================
435
436   //=========================================================================
437   bool  BlackBox::bbBoxProcessModeIsAlways() const
438   {
439     return (bbGetBoxProcessModeValue() == Always);
440   }
441   //=========================================================================
442
443
444
445
446   //=========================================================================
447   void BlackBox::AddChangeObserver(const std::string& output_name, 
448                                    OutputChangeCallbackType f)
449   {
450   }  
451   //=========================================================================
452
453   //=========================================================================
454   void BlackBox::RemoveChangeObserver(const std::string& output_name, 
455                                       OutputChangeCallbackType f)
456   {
457   }
458   //=========================================================================
459
460
461   /*
462   //=========================================================================
463   ///  Sets the ChangeTime of input 
464   void BlackBox::bbSetInputChangeTime(BlackBoxInputConnector* c, 
465                                       const ChangeTime& t)
466   {
467     bbtkDebugMessage("change",1,
468                      "==> BlackBox::bbSetInputChangeTime("<<c<<","<<t<<") ["
469                      <<bbGetFullName()<<"]"<<std::endl);
470     
471     // If new time is greater than old one
472     if ( c->SetChangeTime(t) ) 
473       {
474         bool was_up_to_date = bbIsUpToDate();
475         // If new time is greater than the old max time of inputs
476         if ( mMaxInputChangeTime.Set(t) ) 
477           {
478             // If the box turned out-of-date
479             if ( was_up_to_date && bbIsOutOfDate() )
480               {
481                 // 
482                 if ( ( bbBoxProcessModeIsReactive()  ||
483                        (c==bbGetInputConnectorMap().find("BoxExecute")->second))
484                      && (bbCanReact() ) )
485                   {
486                     bbtkDebugMessage("change",2,
487                                      "an input of "
488                                      <<bbGetFullName()
489                                      <<" changed and box is in Reactive mode or BoxExecute input changed : adding it to the global execution list"
490                                      <<std::endl);
491                     bbGlobalAddToExecutionList( GetThisPointer<BlackBox>() );
492                   }
493                 // Have to propagate the modification to aval boxes
494                 OutputConnectorMapType::iterator i;
495                 for (i = bbGetOutputConnectorMap().begin();
496                      i != bbGetOutputConnectorMap().end();
497                      ++i)
498                   {
499                     i->second->SetChangeTime(t);
500                   }
501                 // update the MinOutputChangeTime
502                 mMinOutputChangeTime.Set(t);
503               }
504           }
505       }
506   }
507   //=========================================================================
508
509  //=========================================================================
510   ///  Sets the ChangeTime of output 
511   void BlackBox::bbSetOutputChangeTime(BlackBoxOutputConnector* c, 
512                                        const ChangeTime& t)
513   {
514     bbtkDebugMessage("change",1,
515                      "==> BlackBox::bbSetOutputChangeTime("<<c<<","<<t<<") ["
516                      <<bbGetFullName()<<"]"<<std::endl);
517     
518     //ChangeTime old = 
519     c->SetChangeTime(t);
520     // c->GetChangeTime() = t;
521     //    bbUpdateMinOutputChangeTime(t);
522     // propagate
523     
524   }
525   //=========================================================================
526   */
527
528   /*
529   //=========================================================================
530   void BlackBox::bbUpdateMaxInputChangeTime(const ChangeTime& t)
531   {    
532
533     
534     if ( t > mMaxInputChangeTime ) 
535       {
536         mMaxInputChangeTime = t;
537         if ( mMinOutputChangeTime > mMaxInputChangeTime )
538           {
539             
540           }
541       }
542     
543   }
544   //=========================================================================
545
546   //=========================================================================
547   void bbUpdateMinOutputChangeTime(const ChangeTime& t)
548   {
549     ChangeTime old = mMinOutputChangeTime;
550     mMinOutputChangeTime = MAXLONG;
551     OutputConnectorMapType::iterator i;
552     for (i = bbGetOutputConnectorMap.begin();
553          i != bbGetOutputConnectorMap.end();
554          ++i)
555       {
556         if (i->second->GetChangeTime() < mMinOutputChangeTime)
557           mMinOutputChangeTime = i->second->GetChangeTime();
558       }
559     if ( mMinOutputChangeTime < old )
560       {
561       }
562    
563   }
564   //=========================================================================
565   */
566
567   //=========================================================================
568   /// Signals that the BlackBox has been modified through 
569   /// the input connector c
570   /// and propagates it downward
571   /// ** NOT USER INTENDED **
572   void BlackBox::bbSetStatusAndPropagate(BlackBoxInputConnector* c,
573                                          IOStatus s)
574   {
575     bbtkDebugMessageInc("change",5,
576                         "=> BlackBox::bbSetStatusAndPropagate(input,"
577                         <<GetIOStatusString(s)<<") ["
578                         <<bbGetFullName()<<"]"<<std::endl);
579
580     if (s==UPTODATE) bbtkError("bbSetStatusAndPropagate with status UPTODATE!");
581     c->SetStatus(s);
582     OutputConnectorMapType::const_iterator o;   
583     for ( o = bbGetOutputConnectorMap().begin(); 
584           o != bbGetOutputConnectorMap().end(); ++o )                   
585       {                                                                 
586         //      bbSetStatusAndPropagate(o->second, OUTOFDATE);
587         if (o->second->GetStatus()==UPTODATE) 
588           {
589             o->second->SetStatus(OUTOFDATE);
590             o->second->SignalChange(GetThisPointer<BlackBox>(),o->first); 
591           }
592       }                                                                 
593     
594     if ( ( bbBoxProcessModeIsReactive()  ||
595            (c==bbGetInputConnectorMap().find("BoxExecute")->second))
596          && (bbCanReact() ) )
597       {
598         bbtkDebugMessage("change",2,
599                          "-> Execution triggered by Reactive mode or BoxExecute input change"<<std::endl);
600         bbGlobalAddToExecutionList( GetThisPointer<BlackBox>() );
601       }    
602     bbtkDebugMessageInc("change",5,
603                         "<= BlackBox::bbSetStatusAndPropagate(input) ["
604                         <<bbGetFullName()<<"]"<<std::endl);
605   }
606   //=========================================================================
607
608   //=========================================================================
609   void BlackBox::bbSetStatusAndPropagate(BlackBoxOutputConnector* c,
610                                          IOStatus s)
611   {
612     bbtkError("bbSetStatusAndPropagate(BlackBoxOutputConnector* c,IOStatus s)");
613     /*
614     if (i->GetStatus()==UPTODATE) 
615       {
616         i->second->SetStatus(s);
617         i->second->SignalChange(GetThisPointer<BlackBox>(),i->first); 
618       }
619     */
620   }
621   //=========================================================================
622  
623
624  ///  Signals that the BlackBox has been modified
625   /*
626   void BlackBox::bbSetModifiedStatus(BlackBoxInputConnector* c)
627   {
628     bbtkDebugMessage("modified",1,
629                      "==> BlackBox::bbSetModifiedStatus("<<c<<") ["
630                      <<bbGetFullName()<<"]"<<std::endl);
631     
632     if ( (c==bbGetInputConnectorMap().find("WinHide")->second) )
633       //         && (bbCanReact()))
634       {
635         bbtkDebugMessage("modified",2,
636                          "-> Hide triggered by WinHide input change"
637                          <<std::endl);
638         this->bbHideWindow();
639         this->bbSetStatus(MODIFIED); 
640         return;
641       }
642     if ( (c==bbGetInputConnectorMap().find("WinClose")->second) )
643       //         && (bbCanReact()))
644       {
645         bbtkDebugMessage("modified",2,
646                          "-> Close triggered by WinClose input change"
647                          <<std::endl);
648         this->bbHideWindow();
649         this->bbSetStatus(MODIFIED); 
650         return;
651       }
652     
653     if ( ( bbBoxProcessModeIsReactive()  ||
654            (c==bbGetInputConnectorMap().find("BoxExecute")->second))
655          && (bbCanReact() ) )
656       {
657         bbtkDebugMessage("modified",2,
658                          "-> Execution triggered by Reactive mode or BoxExecute input change"<<std::endl);
659         this->bbSetStatus(MODIFIED); 
660         bbGlobalAddToExecutionList( GetThisPointer<BlackBox>() );
661       }
662     
663     //else if ( bbGetStatus() == MODIFIED ) //! this->bbIsUptodate()) 
664      // { 
665 //      bbtkDebugMessage("modified",2,"-> Already modified"<<std::endl);
666 //      return;
667  //     }
668    
669     else 
670       {
671         bbtkDebugMessage("modified",2,"-> Status set to modified"<<std::endl);
672         this->bbSetStatus(MODIFIED); 
673       }
674  
675     this->bbSignalOutputModification(false);
676
677   bbtkDebugMessageDec("process",5,
678                         "<= BlackBox::bbSetModifiedStatus("<<c<<") ["
679                         <<bbGetFullName()<<"]"<<std::endl);
680   }  
681 */
682   //=========================================================================
683
684   //=========================================================================  
685   void BlackBox::bbSignalOutputModification(bool reaction)
686   {
687     bbtkDebugMessageInc("change",5,
688                         "=> BlackBox::bbSignalOutputModification("
689                         <<reaction<<") ["
690                         <<bbGetFullName()<<"]"<<std::endl);
691     
692     OutputConnectorMapType::iterator i;
693     for ( i  = bbGetOutputConnectorMap().begin(); 
694           i != bbGetOutputConnectorMap().end(); ++i) 
695       {
696         if (i->second->GetStatus()==UPTODATE) 
697           {
698             //      i->second->SetStatus(MODIFIED);
699             i->second->SignalChange(GetThisPointer<BlackBox>(),i->first); 
700           }
701       } 
702
703     if (reaction) bbGlobalProcessExecutionList();
704
705     bbtkDebugMessageDec("change",5,
706                         "<= BlackBox::bbSignalOutputModification() ["
707                         <<bbGetFullName()<<"]"<<std::endl);
708     
709   }  
710   //=========================================================================   
711   //=========================================================================  
712   void BlackBox::bbSignalOutputModification(const std::string& output,
713                                             bool reaction)
714   {
715     bbtkDebugMessageInc("change",5,
716                         "=> BlackBox::bbSignalOutputModification("
717                         <<output<<","<<reaction<<") ["
718                         <<bbGetFullName()<<"]"<<std::endl);
719     
720     OutputConnectorMapType::iterator i = 
721       bbGetOutputConnectorMap().find(output);
722
723
724     if ( i == bbGetOutputConnectorMap().end() ) 
725         {
726           bbtkError("BlackBox["<<bbGetFullName()<<"]::bbSignalOutputModification("<<output<<") : unknown output");
727         }
728
729     if (i->second->GetStatus()==UPTODATE) 
730       {
731         //      i->second->SetStatus(MODIFIED);
732         i->second->SignalChange(GetThisPointer<BlackBox>(),i->first); 
733         // Has to notify the output "BoxChange" also
734         if (output != "BoxChange") 
735           {
736             i = bbGetOutputConnectorMap().find("BoxChange");
737             if ( i != bbGetOutputConnectorMap().end() ) 
738               {
739                 //              i->second->SetStatus(MODIFIED);
740                 i->second->SignalChange(GetThisPointer<BlackBox>(),i->first); 
741               }
742           }
743         if (reaction) bbGlobalProcessExecutionList();
744       }
745
746     bbtkDebugMessageDec("change",5,
747                         "<= BlackBox::bbSignalOutputModification("
748                         <<output<<") ["
749                         <<bbGetFullName()<<"]"<<std::endl);
750     
751   }  
752   //=========================================================================   
753   //=========================================================================  
754   void BlackBox::bbSignalOutputModification(const std::vector<std::string>& output,
755         bool reaction)
756   {
757     bbtkDebugMessageInc("change",5,
758                         "=> BlackBox::bbSignalOutputModification(vector of outputs) ["
759                         <<bbGetFullName()<<"]"<<std::endl);
760     OutputConnectorMapType::iterator i;
761     std::vector<std::string>::const_iterator o;
762     bool changed = false;
763     for (o=output.begin();o!=output.end();++o) 
764       {
765         // the output "BoxChange" must be signaled **AFTER** all others
766         if (*o == "BoxChange") continue;
767         // Look for the connector
768         i = bbGetOutputConnectorMap().find(*o);
769         if ( i == bbGetOutputConnectorMap().end() ) 
770           {
771             bbtkError("BlackBox["<<bbGetFullName()<<"]::bbSignalOutputModification("<<*o<<") : unknown output");
772           }
773         // Already OUTOFDATE : noting to do
774         if (i->second->GetStatus()==UPTODATE)
775           {
776             //  i->second->SetStatus(MODIFIED);
777             i->second->SignalChange(GetThisPointer<BlackBox>(),i->first); 
778             changed = true;
779           }
780       }
781     // Has to notify the output "BoxChange" also
782     i = bbGetOutputConnectorMap().find("BoxChange");
783     if ( changed && (i != bbGetOutputConnectorMap().end())) 
784       {
785         // Already OUTOFDATE : noting to do
786         if (i->second->GetStatus()==UPTODATE) 
787           {
788             //  i->second->SetStatus(MODIFIED);
789             i->second->SignalChange(GetThisPointer<BlackBox>(),i->first); 
790             if (reaction) bbGlobalProcessExecutionList();
791           }
792       }
793
794     bbtkDebugMessageDec("change",5,
795                         "<= BlackBox::bbSignalOutputModification(vector of outputs) ["
796                         <<bbGetFullName()<<"]"<<std::endl);
797
798   }  
799   //=========================================================================   
800
801   //=========================================================================
802   /// Updates the BlackBox inputs
803   /// Calls BackwardUpdate on all BlackBoxInputConnector
804   /// \returns The maximum of final IOStatus after each input update
805   IOStatus BlackBox::bbUpdateInputs()
806   {
807     bbtkDebugMessageInc("process",4,
808                         "=> BlackBox::bbUpdateInputs() ["
809                         <<bbGetFullName()<<"]"
810                         <<std::endl);   
811
812     IOStatus s = UPTODATE;
813
814     InputConnectorMapType::iterator i;
815     for ( i = bbGetInputConnectorMap().begin(); 
816           i!= bbGetInputConnectorMap().end(); ++i) 
817       {
818         //      if (i->first=="WinHide") continue;
819         // If input type is Void : no recurse
820         //if (  bbGetDescriptor()->GetInputDescriptor(i->first)->GetTypeInfo() 
821         //      == typeid(Void) ) 
822         //  continue;
823         bbtkDebugMessageDec("change",2,
824                             bbGetName()<<"."<<i->first
825                             <<" ["<<i->second<<"] "
826                             <<" status before update = '"
827                             <<GetIOStatusString(i->second->GetStatus())
828                             <<"'"<<std::endl);
829         i->second->BackwardUpdate();
830         IOStatus t = i->second->GetStatus();
831         if (t > s) s = t;
832         bbtkDebugMessageDec("change",2,
833                             bbGetName()<<"."<<i->first
834                             <<" ["<<i->second<<"] "
835                             <<" status before process = '"
836                             <<GetIOStatusString(i->second->GetStatus())
837                             <<"'"<<std::endl);
838       }
839     
840     bbtkDebugMessageDec("process",4,
841                         "<= BlackBox::bbUpdateInputs() ["
842                         <<bbGetFullName()<<"]"
843                         <<std::endl);   
844     
845     
846     return s;
847   }
848   //=========================================================================
849
850   //==================================================================
851   /// Computes the final IOStatus of inputs and outputs after processing
852   void BlackBox::bbComputePostProcessStatus()
853   {
854     bbtkDebugMessageInc("process",4,
855                         "=> BlackBox::bbComputePostProcessStatus() ["
856                         <<bbGetFullName()<<"]"
857                         <<std::endl);   
858
859     IOStatus new_output_status = UPTODATE;
860     if (bbBoxProcessModeIsAlways()) new_output_status = OUTOFDATE;
861
862     // Update the input statuses
863     InputConnectorMapType::iterator i;
864     for ( i = bbGetInputConnectorMap().begin(); 
865           i!= bbGetInputConnectorMap().end(); ++i) 
866       {
867         IOStatus t = i->second->GetStatus();
868         if (t == OUTOFDATE) new_output_status = OUTOFDATE;
869         // A previously MODIFIED status turns to UPTODATE
870         if (t==MODIFIED) i->second->SetStatus(UPTODATE);
871         bbtkDebugMessage("change",2,
872                          bbGetName()<<"."<<i->first<<" : "
873                          << GetIOStatusString(t) << " -> "
874                          << GetIOStatusString(i->second->GetStatus())
875                          << std::endl);
876       }
877         bbtkDebugMessage("change",2,
878                          bbGetName()<<" new output status : "
879                          << GetIOStatusString(new_output_status)
880                          <<std::endl);
881     // Update the output statuses
882     OutputConnectorMapType::iterator o;
883     for ( o = bbGetOutputConnectorMap().begin(); 
884           o!= bbGetOutputConnectorMap().end(); ++o) 
885       {
886         o->second->SetStatus(new_output_status);
887       }
888
889     bbtkDebugMessageInc("process",4,
890                         "<= BlackBox::bbComputePostProcessStatus() ["
891                         <<bbGetFullName()<<"]"
892                         <<std::endl);   
893
894   }
895   //==================================================================
896
897   //=========================================================================
898   /// Connects the input <name> to the connection c
899   void BlackBox::bbConnectInput( const std::string& name, Connection* c)
900   {
901     bbtkDebugMessage("connection",2,
902                         "==> BlackBox::bbConnectInput(\""
903                         <<name<<"\","<<c->GetFullName()<<") ["
904                         <<bbGetFullName()<<"]"
905                         <<std::endl);       
906
907
908     InputConnectorMapType::iterator i = bbGetInputConnectorMap().find(name);
909     if (i==bbGetInputConnectorMap().end())
910       {
911         bbtkError("no input called '"<<name<<"'");
912       }
913     i->second->SetConnection(c);
914     // The input *MUST* be set OUTOFDATE to update its input on next execution
915     bbSetStatusAndPropagate(i->second,OUTOFDATE);
916     
917     bbtkDebugMessage("connection",2,
918                         "<== BlackBox::bbConnectInput(\""
919                         <<name<<"\","<<c->GetFullName()<<") ["
920                         <<bbGetFullName()<<"]"
921                         <<std::endl);       
922
923   }
924   //=========================================================================
925
926
927   //=========================================================================  
928   /// Connects the output <name> to the connection c
929   void BlackBox::bbConnectOutput( const std::string& name, Connection* c)
930   {
931     bbtkDebugMessage("connection",2,
932                      "==> BlackBox::bbConnectOutput(\""<<name<<"\","
933                      <<c->GetFullName()<<") ["
934                      <<bbGetFullName()<<"]"<<std::endl);       
935     
936     OutputConnectorMapType::iterator i = bbGetOutputConnectorMap().find(name);
937     if (i==bbGetOutputConnectorMap().end())
938       {
939         bbtkError("no output called '"<<name<<"'");
940       }
941     i->second->SetConnection(c);
942
943     bbtkDebugMessage("connection",2,
944                      "<== BlackBox::bbConnectOutput(\""<<name<<"\","
945                      <<c->GetFullName()<<") ["
946                      <<bbGetFullName()<<"]"<<std::endl);       
947
948   }
949   //=========================================================================
950
951
952   //=========================================================================
953   /// Disconnects the input <name> from the connection c
954   void BlackBox::bbDisconnectInput( const std::string& name, Connection* c)
955   {
956
957     bbtkDebugMessage("connection",2,
958                      "==> BlackBox::bbDisconnectInput(\""<<name
959                      <<"\","<<c->GetFullName()<<") ["
960                      <<bbGetFullName()<<"]"
961                      <<std::endl);      
962
963     if (!c) 
964       {
965
966         bbtkDebugMessage("connection",2,"c==0"<<std::endl);     
967         return;
968       }
969
970     InputConnectorMapType::iterator i = bbGetInputConnectorMap().find(name);
971     if (i==bbGetInputConnectorMap().end())
972       {
973         bbtkError("no input called '"<<name<<"'");
974       }
975     i->second->UnsetConnection(c);
976
977     bbtkDebugMessage("connection",2,
978                      "<== BlackBox::bbDisconnectInput(\""<<name
979                      <<"\","<<c->GetFullName()<<") ["
980                      <<bbGetFullName()<<"]"
981                      <<std::endl);      
982
983   }
984   //=========================================================================
985
986
987   //=========================================================================
988   /// Disconnects the output <name> from the connection c
989   void BlackBox::bbDisconnectOutput( const std::string& name, Connection* c)
990   {
991     bbtkDebugMessage("connection",2,
992                      "==> BlackBox::bbDisconnectOutput(\""<<name
993                      <<"\","<<c->GetFullName()<<") ["
994                      <<bbGetFullName()<<"]"
995                      <<std::endl);       
996     if (!c) 
997       {
998
999         bbtkDebugMessage("connection",2,"c==0"<<std::endl);     
1000         return;
1001       }
1002
1003     OutputConnectorMapType::iterator i = bbGetOutputConnectorMap().find(name);
1004     if (i==bbGetOutputConnectorMap().end())
1005       {
1006         bbtkError("no output called '"<<name<<"'");
1007       }
1008     i->second->UnsetConnection(c);
1009
1010     bbtkDebugMessage("connection",2,
1011                      "<== BlackBox::bbDisconnectOutput(\""<<name
1012                      <<"\","<<c->GetFullName()<<") ["
1013                      <<bbGetFullName()<<"]"
1014                      <<std::endl);       
1015   } 
1016   //=========================================================================
1017  
1018
1019   //=========================================================================
1020   /// Virtual
1021   void BlackBox::bbWriteDotInputOutputName(FILE *ff,bool inputoutput,int detail, int level)
1022   {
1023     fprintf(ff,"%s%p",bbGetTypeName().c_str(),this);
1024   }
1025   //=========================================================================
1026
1027
1028   //=========================================================================
1029   std::string BlackBox::bbGetOutputAsString( const std::string &output ) 
1030   {
1031     std::string v;
1032     // Looks for the adaptor
1033     if (bbGetOutputType(output).name() != typeid(std::string).name() ) 
1034       {
1035         // Look for factory 
1036         Package::Pointer p = bbGetDescriptor()->GetPackage();
1037         if ((p != 0) && ( ! p->GetFactorySet().empty() ) )
1038           {
1039             Factory::Pointer f = p->GetFactorySet().begin()->lock();
1040             BlackBox::Pointer a;
1041             try
1042               {
1043                 a = f->NewAdaptor(  
1044                                   bbGetOutputType(output),
1045                                   typeid(std::string),
1046                                   "");
1047               } catch (bbtk::Exception e) 
1048               {
1049               }
1050             if (a){
1051               //                        bbUpdate();
1052               a->bbSetInput("In",bbGetOutput(output));
1053               a->bbExecute();
1054               v = a->bbGetOutput("Out").unsafe_get<std::string>() ;
1055             } else {
1056               v="? (no adaptor found)";
1057             }
1058           }
1059         else 
1060           {
1061             v="? (no factory found)";
1062           }
1063       } 
1064     else 
1065       {
1066         //         bbUpdate();
1067         v = bbGetOutput(output).unsafe_get<std::string>() ;
1068       }
1069     return v;
1070   }
1071   //=========================================================================
1072
1073   //=========================================================================
1074   std::string BlackBox::bbGetInputAsString( const std::string &input ) 
1075   {
1076     std::string v;
1077     // Looks for the adaptor
1078     if (bbGetInputType(input) != typeid(std::string)) 
1079       {
1080         // Look for factory 
1081         Package::Pointer p = bbGetDescriptor()->GetPackage();
1082         if ((p != 0) && ( ! p->GetFactorySet().empty() ) )
1083           {
1084             Factory::Pointer f = p->GetFactorySet().begin()->lock();
1085             BlackBox::Pointer a;
1086             try
1087               {
1088                 a = f->NewAdaptor(  
1089                                bbGetInputType(input),
1090                                typeid(std::string),
1091                                "");
1092               }catch (bbtk::Exception e) 
1093               {
1094               }
1095             if (a)
1096               {
1097                 //                      bbUpdate();
1098                 a->bbSetInput("In",bbGetInput(input));
1099                 a->bbExecute();
1100                 v = a->bbGetOutput("Out").unsafe_get<std::string>() ;
1101               } 
1102             else 
1103               {
1104                 v="? (no adaptor found)";
1105               }
1106           } 
1107         else 
1108           {
1109             v="? (no factory found)";
1110           }
1111       }
1112     else 
1113       {
1114         v = bbGetInput(input).unsafe_get<std::string>() ;
1115       }
1116     return v;
1117   }
1118   //=======================================================================
1119
1120   //=======================================================================
1121   // Replaces substrings "<" by "["
1122   void SubsBrackets ( std::string& s )
1123   {
1124     //   std::cout << "BEFORE=["<<s<<"]"<<std::endl;
1125     std::string ss("<");
1126     std::string::size_type pos = 0;
1127     pos = s.find(ss,0);
1128     std::string cr("[");
1129     while ( pos != std::string::npos )
1130       {
1131         //      std::cout << "*** find one "<<std::endl;
1132         s.replace(pos,1,cr.c_str(),1);
1133         pos = s.find(ss, pos);
1134       } 
1135     ss = ">";
1136     pos = 0;
1137     pos = s.find(ss,0);
1138     cr = "]";
1139     while ( pos != std::string::npos )
1140       {
1141         //      std::cout << "*** find one "<<std::endl;
1142         s.replace(pos,1,cr.c_str(),1);
1143         pos = s.find(ss, pos);
1144       } 
1145     ss = ",";
1146     pos = 0;
1147     pos = s.find(ss,0);
1148     cr = "-";
1149     while ( pos != std::string::npos )
1150       {
1151         //      std::cout << "*** find one "<<std::endl;
1152         s.replace(pos,1,cr.c_str(),1);
1153         pos = s.find(ss, pos);
1154       }     //    std::cout << "AFTER=["<<s<<"]"<<std::endl;
1155   }
1156   //=======================================================================
1157
1158   //=========================================================================
1159   /// Write Graphviz-dot description in file
1160   void BlackBox::bbWriteDotFileBlackBox(FILE *ff,
1161                                         BlackBox::Pointer parentblackbox, 
1162                                         int detail, int level,
1163                                         bool instanceOrtype,
1164                                         bool relative_link )
1165
1166   { 
1167     InputConnectorMapType::iterator i;
1168     // label
1169     std::string labelStr;
1170     std::string valueStr("");
1171
1172         if (detail==0) {
1173                 labelStr = bbGetName() ; 
1174 //EED 18 Fev 2008
1175                 labelStr = labelStr + "\\n[" +this->bbGetDescriptor()->GetPackage()->GetName()+"::"+ bbGetTypeName() + "]";
1176         } else {
1177                 labelStr = bbGetName();
1178                 labelStr = labelStr + "   [" +this->bbGetDescriptor()->GetPackage()->GetName()+"::"+ bbGetTypeName() + "]  ";
1179     }
1180
1181     SubsBrackets(labelStr);
1182     if (detail==1)
1183       {
1184         labelStr = labelStr + " | {{ "; 
1185         std::string tempStrTypeName;
1186         bool tmp; 
1187         tmp=false;
1188         for ( i = mInputConnectorMap.begin(); i != mInputConnectorMap.end(); ++i ) 
1189           {
1190             if (tmp==true)
1191               {
1192                 labelStr=labelStr+" | ";
1193               }
1194             tmp=true;
1195             if (instanceOrtype==true)
1196               {
1197                 valueStr = this->bbGetInputAsString(i->first) + " = ";
1198               } 
1199             const BlackBoxInputDescriptor* id = bbGetDescriptor()->GetInputDescriptor(i->first);
1200             tempStrTypeName=id->GetTypeName();
1201             SubsBrackets(tempStrTypeName);
1202             std::string Name(i->first);
1203             SubsBrackets(Name);
1204             labelStr=labelStr + "<"+i->first.c_str()+"> "  + valueStr +  Name.c_str() + "  [" + tempStrTypeName.c_str() + "]";
1205           }
1206         labelStr=labelStr+ " } | {";
1207         tmp = false;
1208         OutputConnectorMapType::iterator ii;
1209         for ( ii = mOutputConnectorMap.begin(); ii != mOutputConnectorMap.end(); ++ii ) 
1210         {
1211            if (tmp==true)
1212            {
1213                    labelStr=labelStr+" | ";
1214            }
1215            tmp = true;
1216            if (instanceOrtype==true)
1217            {
1218                    valueStr = this->bbGetOutputAsString(ii->first) + " = ";
1219            }
1220            const BlackBoxOutputDescriptor* id = bbGetDescriptor()->GetOutputDescriptor(ii->first); 
1221            tempStrTypeName=id->GetTypeName();
1222            SubsBrackets(tempStrTypeName);
1223             std::string Name(ii->first);
1224             SubsBrackets(Name);
1225            labelStr=labelStr+"<"+ii->first.c_str()+"> " + valueStr + Name.c_str() + "  ["+tempStrTypeName+"]";
1226         }
1227         labelStr = labelStr+ "      } }" ;
1228 } // detail
1229
1230     fprintf(ff,"  " );
1231     bbWriteDotInputOutputName(ff,true,detail,level);
1232     std::string tmp ( bbGetTypeName() );
1233     SubsBrackets(tmp);
1234     std::string url;
1235     if (relative_link) 
1236       url = this->bbGetDescriptor()->GetPackage()->GetDocRelativeURL() + "#" + tmp;
1237     else 
1238       url = this->bbGetDescriptor()->GetPackage()->GetDocURL() + "#" + tmp;
1239   
1240     fprintf( ff , " [shape=record, URL=\"%s\",label=\"%s\"]%s\n",url.c_str(),labelStr.c_str(),";" );
1241     //    std::cout  << labelStr << std::endl;
1242
1243     // Relation Input
1244     if (GetThisPointer<BlackBox>()!=parentblackbox){
1245       for ( i = mInputConnectorMap.begin(); i != mInputConnectorMap.end(); ++i ) 
1246         {
1247           if (i->second)
1248             {
1249               Connection* con = i->second->GetConnection();
1250               if (con!=NULL){
1251                 BlackBox::Pointer a=con->GetOriginalBlackBoxFrom();
1252                 BlackBox::Pointer b=con->GetOriginalBlackBoxTo();
1253                 fprintf(ff,"  ");
1254                 a->bbWriteDotInputOutputName(ff,false,detail,level);
1255                 if (detail==1)
1256                   {
1257                     fprintf(ff,":%s",con->GetOriginalBlackBoxFromOutput().c_str());
1258                   }
1259                 fprintf(ff,"->");
1260                 b->bbWriteDotInputOutputName(ff,true,detail,level);
1261                 if (detail==1)
1262                   {
1263                     fprintf(ff,":%s",con->GetOriginalBlackBoxToInput().c_str());
1264                   }
1265                 fprintf(ff,"%s\n",";");
1266               }  // if con
1267             } // if second
1268         } // for
1269     } // if parentblackbox
1270   }
1271   //=========================================================================
1272
1273
1274
1275
1276   //=========================================================================
1277   void BlackBox::bbShowRelations(BlackBox::Pointer parentblackbox, 
1278                                  int detail, int level
1279                                  /*,Factory *factory*/ )
1280   {
1281      
1282     if (this->bbGetDescriptor()->GetPackage()) 
1283       {
1284         bbtkMessage("Help",1,"Black Box '"<<bbGetName()<<"' <"<<
1285                     this->bbGetDescriptor()->GetPackage()->GetName()
1286                     <<"::"<<this->bbGetDescriptor()->GetTypeName()<<">"<<std::endl);
1287       }
1288     else 
1289       {
1290         bbtkMessage("Help",1,"Black Box <::"<<this->bbGetDescriptor()->GetTypeName()<<">"<<std::endl);
1291       }
1292     /*
1293     if (bbIsUpToDate())
1294       {
1295         bbtkMessage("Help",1,"Up-to-date ["<<mMaxInputChangeTime<<","
1296                     <<mMinOutputChangeTime<<"]"<<std::endl);
1297       }
1298     else 
1299       {
1300         bbtkMessage("Help",1,"Out-of-date ["<<mMaxInputChangeTime<<","
1301                     <<mMinOutputChangeTime<<"]"<<std::endl);
1302       }
1303     */
1304     //    bbtkMessage("Help",1," "<<GetDescription()<<std::endl);
1305     //    bbtkMessage("Help",1," By : "<<GetAuthor()<<std::endl);
1306
1307     std::vector<std::string> iname;
1308     std::vector<std::string> ivalue;
1309     std::vector<std::string> iconn;
1310     std::vector<std::string> istatus;
1311
1312     InputConnectorMapType::iterator i;
1313     unsigned int namelmax = 0;
1314     unsigned int valuelmax = 0;
1315     //   unsigned int connlmax = 0;
1316     for ( i = mInputConnectorMap.begin(); i != mInputConnectorMap.end(); ++i ) 
1317       {
1318         iname.push_back(i->first);
1319         if (iname.back().size()>namelmax) namelmax = iname.back().size();
1320         ivalue.push_back(bbGetInputAsString(i->first));
1321         if (ivalue.back().size()>valuelmax) valuelmax = ivalue.back().size();
1322         std::string s("");
1323         Connection* con = i->second->GetConnection();
1324         if (con!=0){
1325           s = con->GetOriginalBlackBoxFrom()->bbGetName();
1326           s += ".";
1327           s += con->GetOriginalBlackBoxFromOutput();
1328         }  // if con
1329         iconn.push_back(s);
1330         istatus.push_back(GetIOStatusString(i->second->GetStatus()));
1331       }
1332     OutputConnectorMapType::iterator o;
1333     std::vector<std::string> oname;
1334     std::vector<std::string> ovalue;
1335     std::vector<std::vector<std::string> > oconn;
1336     std::vector<std::string> ostatus;
1337     for ( o = mOutputConnectorMap.begin(); o != mOutputConnectorMap.end(); ++o ) 
1338       {
1339         oname.push_back(o->first);
1340         if (oname.back().size()>namelmax) namelmax = oname.back().size();
1341         ovalue.push_back(bbGetOutputAsString(o->first));
1342         if (ovalue.back().size()>valuelmax) valuelmax = ovalue.back().size();
1343         std::vector<std::string> ss;
1344         const std::vector<Connection*>& con 
1345           = o->second->GetConnectionVector();
1346         std::vector<Connection*>::const_iterator c;
1347         for (c=con.begin();c!=con.end();++c) 
1348           {
1349             std::string s;
1350             s = (*c)->GetOriginalBlackBoxTo()->bbGetName();
1351             s += ".";
1352             s += (*c)->GetOriginalBlackBoxToInput();
1353             ss.push_back(s);
1354         }  // if con
1355         oconn.push_back(ss);
1356         ostatus.push_back(GetIOStatusString(o->second->GetStatus()));
1357       }
1358
1359     if (iname.size()) 
1360       bbtkMessage("Help",1," * Inputs : "<<std::endl);
1361     else 
1362       bbtkMessage("Help",1," * No inputs"<<std::endl);
1363
1364     std::vector<std::string>::iterator i1,i2,i3,i4;
1365     for (i1=iname.begin(),i2=ivalue.begin(),i3=iconn.begin(),i4=istatus.begin();
1366          i1!=iname.end(),i2!=ivalue.end(),i3!=iconn.end(),i4!=istatus.end();
1367          ++i1,++i2,++i3,++i4)
1368       {
1369         std::string name(*i1);
1370         name += "'";
1371         name.append(1+namelmax-name.size(),' ');
1372         std::string value(*i2);
1373         value += "'";
1374         value.append(1+valuelmax-value.size(),' ');
1375         if (i3->size()) 
1376           bbtkMessage("Help",1,"    '"<<name<<" = '"<<value<<" <-- '"
1377                       <<*i3<<"'");
1378         else 
1379           bbtkMessage("Help",1,"    '"<<name<<" = '"<<value);
1380         bbtkMessage("Help",1," ["<<*i4<<"]"<<std::endl);
1381       }
1382
1383     if (oname.size()) 
1384       bbtkMessage("Help",1," * Outputs : "<<std::endl);
1385     else 
1386       bbtkMessage("Help",1," * No outputs"<<std::endl);
1387
1388     std::vector<std::vector<std::string> >::iterator i5;
1389
1390     for (i1=oname.begin(),i2=ovalue.begin(),i5=oconn.begin(),i4=ostatus.begin();
1391          i1!=oname.end(),i2!=ovalue.end(),i5!=oconn.end(),i4!=ostatus.end();
1392          ++i1,++i2,++i4,++i5)
1393       {
1394         std::string name(*i1);
1395         name += "'";
1396         name.append(1+namelmax-name.size(),' ');
1397         std::string value(*i2);
1398         value += "'";
1399         value.append(1+valuelmax-value.size(),' ');
1400         if (!(*i5).size())
1401           bbtkMessage("Help",1,"    '"<<name<<" = '"<<value);
1402         else 
1403           {
1404             std::string pref = "    '"+name+" = '"+value;
1405             for (i3=i5->begin();i3!=i5->end();++i3)
1406               {
1407                 bbtkMessage("Help",1,pref<<" --> '"<<*i3<<"'");
1408                 pref.replace(0,pref.size(),pref.size(),' ');
1409               }
1410           }
1411         bbtkMessage("Help",1," ["<<*i4<<"]"<<std::endl);
1412       }
1413
1414    }
1415   //=========================================================================
1416
1417   static bool bbmgGlobalProcessingExecutionList = false;
1418
1419   //=========================================================================
1420    void BlackBox::bbGlobalProcessExecutionList()
1421    {   
1422      bbtkDebugMessageInc("process",3,
1423                          "=> BlackBox::bbGlobalProcessExecutionList()"
1424                          <<std::endl);    
1425      if (bbmgGlobalProcessingExecutionList) 
1426        {
1427          bbtkDebugMessage("process",3,"BlackBox::bbGlobalProcessExecutionList() reentered !");
1428          return;
1429        }
1430      bbmgGlobalProcessingExecutionList = true;
1431
1432      std::set<BlackBox::WeakPointer>::iterator i; 
1433      while (bbmgExecutionList.size()>0)
1434        {
1435          i = bbmgExecutionList.begin();
1436          BlackBox::WeakPointer p = *i;
1437          bbmgExecutionList.erase(i);
1438          if (p.lock())
1439            {
1440              bbtkDebugMessage("process",4,
1441                               " -> Executing "<<
1442                               p.lock()->bbGetFullName()<<std::endl);
1443              p.lock()->bbExecute(true);
1444            }
1445          else 
1446            {
1447              bbtkGlobalError("Strange error in BlackBox::bbGlobalProcessExecutionList() : Weak bb pointer in bbmgExecutionList is no more valid...");
1448            }
1449        }
1450      
1451      bbmgExecutionList.clear();
1452      bbtkDebugMessageDec("process",3,
1453                          "<= BlackBox::bbGlobalProcessExecutionList()"
1454                          <<std::endl);     
1455      
1456      bbmgGlobalProcessingExecutionList = false;
1457      
1458    }
1459   //=========================================================================
1460
1461     bool BlackBox::bbGlobalGetSomeBoxExecuting()
1462         { 
1463                 return bbmgSomeBoxExecuting; 
1464         }
1465
1466     void BlackBox::bbGlobalSetSomeBoxExecuting(bool b) 
1467         { 
1468                 bbmgSomeBoxExecuting = b; 
1469         }
1470
1471     void BlackBox::bbGlobalSetFreezeExecution(bool b) 
1472         { 
1473                 bbmgFreezeExecution = b;
1474         }
1475
1476     bool BlackBox::bbGlobalGetFreezeExecution() 
1477         { 
1478                 return bbmgFreezeExecution; 
1479         }
1480
1481   void BlackBox::bbGlobalAddToExecutionList( BlackBox::Pointer b )
1482   {  
1483     bbtkDebugMessage("process",3,"* bbGlobalAddToExecutionList("<<b->bbGetFullName()<<")"<<std::endl);
1484     if (bbmgGlobalProcessingExecutionList) 
1485       {
1486         bbtkDebugMessage("process",3,"bbGlobalAddToExecutionList called inside bbGlobalProcessExecutionList !");
1487       }
1488     bbmgExecutionList.insert(b); 
1489   } 
1490
1491
1492    //=========================================================================
1493
1494   //=========================================================================
1495   void BlackBox::Check(bool recursive)
1496   {
1497     bbtkMessage("debug",1,"*** Checking Black Box "<<(void*)this<<" ["<<bbGetFullName()
1498                 <<"] ... OK"<<std::endl);
1499   }
1500   //=========================================================================
1501
1502   void BlackBox::bbUserOnShowWidget(std::string nameInput)
1503   {
1504           bbtk::BlackBoxInputConnector *cc;
1505           cc = this->bbGetInputConnectorMap().find( nameInput.c_str() )->second;
1506           if (cc->GetConnection()!=NULL) 
1507           {
1508                   cc->GetConnection()->GetBlackBoxFrom()->bbUserOnShow();
1509           }
1510   }
1511
1512
1513
1514 }  // EO namespace bbtk
1515
1516 // EOF
1517