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