]> Creatis software - bbtk.git/blob - kernel/src/bbtkBlackBox.cxx
744efd1f9295f972a106dd6bfd08afdd54177b4c
[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
799
800   //=========================================================================
801   IOStatus BlackBox::bbUpdateInputs()
802   {
803     bbtkBlackBoxDebugMessage("process",4,
804                         "=> BlackBox::bbUpdateInputs()"
805                         <<std::endl);   
806
807     IOStatus s = UPTODATE;
808
809     InputConnectorMapType::iterator i;
810     for ( i = bbGetInputConnectorMap().begin(); 
811           i!= bbGetInputConnectorMap().end(); ++i) 
812       {
813         //      if (i->first=="WinHide") continue;
814         // If input type is Void : no recurse
815         //if (  bbGetDescriptor()->GetInputDescriptor(i->first)->GetTypeInfo() 
816         //      == typeid(Void) ) 
817         //  continue;
818         bbtkBlackBoxDebugMessage("change",2,
819                             "Input '"<<i->first
820                             <<"': status before update = '"
821                             <<GetIOStatusString(i->second->GetStatus())
822                             <<"'"<<std::endl);
823         i->second->RecursiveExecute();
824         IOStatus t = i->second->GetStatus();
825         if (t > s) s = t;
826         bbtkBlackBoxDebugMessage("change",2,
827                                  "Input '"<<i->first
828                                  <<"': status before process = '"
829                                  <<GetIOStatusString(i->second->GetStatus())
830                                  <<"'"<<std::endl);
831       }
832     
833     bbtkBlackBoxDebugMessage("process",4,
834                         "<= BlackBox::bbUpdateInputs()"
835                         <<std::endl);
836     return s;
837   }
838   //=========================================================================
839
840   //==================================================================
841    void BlackBox::bbComputePostProcessStatus()
842   {
843     bbtkBlackBoxDebugMessage("process",4,
844                         "=> BlackBox::bbComputePostProcessStatus()"
845                         <<std::endl);   
846
847     IOStatus new_output_status = UPTODATE;
848     if (bbBoxProcessModeIsAlways()) new_output_status = OUTOFDATE;
849
850     // Update the input statuses
851     InputConnectorMapType::iterator i;
852     for ( i = bbGetInputConnectorMap().begin(); 
853           i!= bbGetInputConnectorMap().end(); ++i) 
854       {
855         IOStatus t = i->second->GetStatus();
856         if (t == OUTOFDATE) new_output_status = OUTOFDATE;
857         // A previously MODIFIED status turns to UPTODATE
858         if (t==MODIFIED) i->second->SetStatus(UPTODATE);
859         bbtkBlackBoxDebugMessage("change",2,
860                          "Input '"<<i->first<<"' : "
861                          << GetIOStatusString(t) << " -> "
862                          << GetIOStatusString(i->second->GetStatus())
863                          << std::endl);
864       }
865     bbtkBlackBoxDebugMessage("change",2,
866                              "New output status : "
867                              << GetIOStatusString(new_output_status)
868                              <<std::endl);
869     // Update the output statuses
870     OutputConnectorMapType::iterator o;
871     for ( o = bbGetOutputConnectorMap().begin(); 
872           o!= bbGetOutputConnectorMap().end(); ++o) 
873       {
874                 
875 //EED             if  ( ( bbBoxProcessModeIsManual()==false )  || 
876 //EED                       ( (bbBoxProcessModeIsManual()==true) && (bbLetRecursiveExecuteManualMode==true) ) 
877 //EED                     )
878 //EED             {
879                           o->second->SetStatus(new_output_status);
880 //EED             }  else  {
881 //EED                     if  (( (bbBoxProcessModeIsManual()==true) && (bbLetRecursiveExecuteManualMode==false) )  ) 
882 //EED                     {
883 //EED                             o->second->SetStatus(UPTODATE);
884 //EED                     }
885 //EED             } // Manual analysis
886                           
887       }
888
889     bbtkBlackBoxDebugMessage("process",4,
890                         "<= BlackBox::bbComputePostProcessStatus()"
891                         <<std::endl);
892   }
893   //==================================================================
894
895   //=========================================================================
896   void BlackBox::bbConnectInput( const std::string& name, Connection* c)
897   {
898     bbtkBlackBoxDebugMessage("connection",2,
899                         "==> BlackBox::bbConnectInput(\""
900                         <<name<<"\","<<c->GetFullName()<<")"
901                         <<std::endl);       
902
903     InputConnectorMapType::iterator i = bbGetInputConnectorMap().find(name);
904     if (i==bbGetInputConnectorMap().end())
905       {
906         bbtkError("no input called '"<<name<<"'");
907       }
908     i->second->SetConnection(c);
909     // The input *MUST* be set OUTOFDATE to update its input on next execution
910     bbSetStatusAndPropagate(i->second,OUTOFDATE);
911
912     bbtkBlackBoxDebugMessage("connection",2,
913                         "<== BlackBox::bbConnectInput(\""
914                         <<name<<"\","<<c->GetFullName()<<")"
915                         <<std::endl);
916   }
917   //=========================================================================
918
919
920   //=========================================================================  
921   void BlackBox::bbConnectOutput( const std::string& name, Connection* c)
922   {
923     bbtkBlackBoxDebugMessage("connection",2,
924                              "==> BlackBox::bbConnectOutput(\""<<name<<"\","
925                              <<c->GetFullName()<<")"
926                              <<std::endl);       
927
928     OutputConnectorMapType::iterator i = bbGetOutputConnectorMap().find(name);
929     if (i==bbGetOutputConnectorMap().end())
930       {
931         bbtkError("no output called '"<<name<<"'");
932       }
933     i->second->SetConnection(c);
934
935     bbtkBlackBoxDebugMessage("connection",2,
936                              "<== BlackBox::bbConnectOutput(\""<<name<<"\","
937                              <<c->GetFullName()<<")"
938                              <<std::endl);
939   }
940   //=========================================================================
941
942
943   //=========================================================================
944    void BlackBox::bbDisconnectInput( const std::string& name, Connection* c)
945   {
946
947     bbtkBlackBoxDebugMessage("connection",2,
948                      "==> BlackBox::bbDisconnectInput(\""<<name
949                      <<"\","<<c->GetFullName()<<")"
950                      <<std::endl);
951     if (!c) 
952       {
953
954         bbtkBlackBoxDebugMessage("connection",2,"c==0"<<std::endl);     
955         return;
956       }
957
958     InputConnectorMapType::iterator i = bbGetInputConnectorMap().find(name);
959     if (i==bbGetInputConnectorMap().end())
960       {
961         bbtkError("no input called '"<<name<<"'");
962       }
963     i->second->UnsetConnection(c);
964
965     bbtkBlackBoxDebugMessage("connection",2,
966                      "<== BlackBox::bbDisconnectInput(\""<<name
967                      <<"\","<<c->GetFullName()<<")"
968                      <<std::endl);      
969
970   }
971   //=========================================================================
972
973
974   //=========================================================================
975    void BlackBox::bbDisconnectOutput( const std::string& name, Connection* c)
976   {
977     bbtkBlackBoxDebugMessage("connection",2,
978                      "==> BlackBox::bbDisconnectOutput(\""<<name
979                      <<"\","<<c->GetFullName()<<")"
980                      <<std::endl);       
981     if (!c) 
982       {
983
984         bbtkBlackBoxDebugMessage("connection",2,"c==0"<<std::endl);     
985         return;
986       }
987
988     OutputConnectorMapType::iterator i = bbGetOutputConnectorMap().find(name);
989     if (i==bbGetOutputConnectorMap().end())
990       {
991         bbtkError("no output called '"<<name<<"'");
992       }
993     i->second->UnsetConnection(c);
994
995     bbtkBlackBoxDebugMessage("connection",2,
996                      "<== BlackBox::bbDisconnectOutput(\""<<name
997                      <<"\","<<c->GetFullName()<<")"
998                      <<std::endl);       
999   } 
1000   //=========================================================================
1001  
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024   //=========================================================================
1025   void BlackBox::bbWriteDotInputOutputName(FILE *ff,bool inputoutput,int detail, int level)
1026   {
1027     fprintf(ff,"%s%p",bbGetTypeName().c_str(),this);
1028   }
1029   //=========================================================================
1030
1031
1032   //=========================================================================
1033   std::string BlackBox::bbGetOutputAsString( const std::string &output ) 
1034   {
1035     std::string v;
1036     // Looks for the adaptor
1037     if (bbGetOutputType(output).name() != typeid(std::string).name() ) 
1038       {
1039         // Look for factory 
1040         Package::Pointer p = bbGetDescriptor()->GetPackage();
1041         if ((p != 0) && ( ! p->GetFactorySet().empty() ) )
1042           {
1043             Factory::Pointer f = p->GetFactorySet().begin()->lock();
1044             BlackBox::Pointer a;
1045             try
1046               {
1047                 a = f->NewAdaptor(  
1048                                   bbGetOutputType(output),
1049                                   typeid(std::string),
1050                                   "");
1051               } catch (bbtk::Exception e) 
1052               {
1053               }
1054             if (a){
1055               //                        bbUpdate();
1056               a->bbSetInput("In",bbGetOutput(output));
1057               a->bbExecute();
1058               v = a->bbGetOutput("Out").unsafe_get<std::string>() ;
1059             } else {
1060               v="? (no adaptor found)";
1061             }
1062           }
1063         else 
1064           {
1065             v="? (no factory found)";
1066           }
1067       } 
1068     else 
1069       {
1070         //         bbUpdate();
1071         v = bbGetOutput(output).unsafe_get<std::string>() ;
1072       }
1073     return v;
1074   }
1075   //=========================================================================
1076
1077   //=========================================================================
1078   std::string BlackBox::bbGetInputAsString( const std::string &input ) 
1079   {
1080     std::string v;
1081     // Looks for the adaptor
1082     if (bbGetInputType(input) != typeid(std::string)) 
1083       {
1084         // Look for factory 
1085         Package::Pointer p = bbGetDescriptor()->GetPackage();
1086         if ((p != 0) && ( ! p->GetFactorySet().empty() ) )
1087           {
1088             Factory::Pointer f = p->GetFactorySet().begin()->lock();
1089             BlackBox::Pointer a;
1090             try
1091               {
1092                 a = f->NewAdaptor(  
1093                                bbGetInputType(input),
1094                                typeid(std::string),
1095                                "");
1096               }catch (bbtk::Exception e) 
1097               {
1098               }
1099             if (a)
1100               {
1101                 //                      bbUpdate();
1102                 a->bbSetInput("In",bbGetInput(input));
1103                 a->bbExecute();
1104                 v = a->bbGetOutput("Out").unsafe_get<std::string>() ;
1105               } 
1106             else 
1107               {
1108                 v="? (no adaptor found)";
1109               }
1110           } 
1111         else 
1112           {
1113             v="? (no factory found)";
1114           }
1115       }
1116     else 
1117       {
1118         v = bbGetInput(input).unsafe_get<std::string>() ;
1119       }
1120     return v;
1121   }
1122   //=======================================================================
1123
1124   //=======================================================================
1125   // Replaces substrings "<" by "["
1126   void SubsBrackets ( std::string& s )
1127   {
1128     //   std::cout << "BEFORE=["<<s<<"]"<<std::endl;
1129     std::string ss("<");
1130     std::string::size_type pos = 0;
1131     pos = s.find(ss,0);
1132     std::string cr("[");
1133     while ( pos != std::string::npos )
1134       {
1135         //      std::cout << "*** find one "<<std::endl;
1136         s.replace(pos,1,cr.c_str(),1);
1137         pos = s.find(ss, pos);
1138       } 
1139     ss = ">";
1140     pos = 0;
1141     pos = s.find(ss,0);
1142     cr = "]";
1143     while ( pos != std::string::npos )
1144       {
1145         //      std::cout << "*** find one "<<std::endl;
1146         s.replace(pos,1,cr.c_str(),1);
1147         pos = s.find(ss, pos);
1148       } 
1149     ss = ",";
1150     pos = 0;
1151     pos = s.find(ss,0);
1152     cr = "-";
1153     while ( pos != std::string::npos )
1154       {
1155         //      std::cout << "*** find one "<<std::endl;
1156         s.replace(pos,1,cr.c_str(),1);
1157         pos = s.find(ss, pos);
1158       }     //    std::cout << "AFTER=["<<s<<"]"<<std::endl;
1159   }
1160   //=======================================================================
1161
1162   //=========================================================================
1163   /// Write Graphviz-dot description in file
1164   void BlackBox::bbWriteDotFileBlackBox(FILE *ff,
1165                                         BlackBox::Pointer parentblackbox, 
1166                                         int detail, int level,
1167                                         bool instanceOrtype,
1168                                         bool relative_link )
1169
1170   { 
1171     InputConnectorMapType::iterator i;
1172     // label
1173     std::string labelStr;
1174     std::string valueStr("");
1175
1176         if (detail==0) {
1177                 labelStr = bbGetName() ; 
1178 //EED 18 Fev 2008
1179                 labelStr = labelStr + "\\n[" +this->bbGetDescriptor()->GetPackage()->GetName()+"::"+ bbGetTypeName() + "]";
1180         } else {
1181                 labelStr = bbGetName();
1182                 labelStr = labelStr + "   [" +this->bbGetDescriptor()->GetPackage()->GetName()+"::"+ bbGetTypeName() + "]  ";
1183     }
1184
1185     SubsBrackets(labelStr);
1186     if (detail==1)
1187       {
1188         labelStr = labelStr + " | {{ "; 
1189         std::string tempStrTypeName;
1190         bool tmp; 
1191         tmp=false;
1192         for ( i = mInputConnectorMap.begin(); i != mInputConnectorMap.end(); ++i ) 
1193           {
1194             if (tmp==true)
1195               {
1196                 labelStr=labelStr+" | ";
1197               }
1198             tmp=true;
1199             if (instanceOrtype==true)
1200               {
1201                 valueStr = this->bbGetInputAsString(i->first) + " = ";
1202               } 
1203             const BlackBoxInputDescriptor* id = bbGetDescriptor()->GetInputDescriptor(i->first);
1204             tempStrTypeName=id->GetTypeName();
1205             SubsBrackets(tempStrTypeName);
1206             std::string Name(i->first);
1207             SubsBrackets(Name);
1208             labelStr=labelStr + "<"+i->first.c_str()+"> "  + valueStr +  Name.c_str() + "  [" + tempStrTypeName.c_str() + "]";
1209           }
1210         labelStr=labelStr+ " } | {";
1211         tmp = false;
1212         OutputConnectorMapType::iterator ii;
1213         for ( ii = mOutputConnectorMap.begin(); ii != mOutputConnectorMap.end(); ++ii ) 
1214         {
1215            if (tmp==true)
1216            {
1217                    labelStr=labelStr+" | ";
1218            }
1219            tmp = true;
1220            if (instanceOrtype==true)
1221            {
1222                    valueStr = this->bbGetOutputAsString(ii->first) + " = ";
1223            }
1224            const BlackBoxOutputDescriptor* id = bbGetDescriptor()->GetOutputDescriptor(ii->first); 
1225            tempStrTypeName=id->GetTypeName();
1226            SubsBrackets(tempStrTypeName);
1227            std::string Name(ii->first);
1228            SubsBrackets(Name);
1229            labelStr=labelStr+"<"+ii->first.c_str()+"> " + valueStr + Name.c_str() + "  ["+tempStrTypeName+"]";
1230         }
1231         labelStr = labelStr+ "      } }" ;
1232 } // detail
1233
1234     fprintf(ff,"  " );
1235     bbWriteDotInputOutputName(ff,true,detail,level);
1236     std::string tmp ( bbGetTypeName() );
1237     SubsBrackets(tmp);
1238     std::string url;
1239     if (relative_link) 
1240       url = this->bbGetDescriptor()->GetPackage()->GetDocRelativeURL() + "#" + tmp;
1241     else 
1242       url = this->bbGetDescriptor()->GetPackage()->GetDocURL() + "#" + tmp;
1243   
1244     fprintf( ff , " [shape=record, URL=\"%s\",label=\"%s\"]%s\n",url.c_str(),labelStr.c_str(),";" );
1245     //    std::cout  << labelStr << std::endl;
1246
1247     // Relation Input
1248     if (GetThisPointer<BlackBox>()!=parentblackbox){
1249       for ( i = mInputConnectorMap.begin(); i != mInputConnectorMap.end(); ++i ) 
1250         {
1251           if (i->second)
1252             {
1253               Connection* con = i->second->GetConnection();
1254               if (con!=NULL){
1255                 BlackBox::Pointer a=con->GetOriginalBlackBoxFrom();
1256                 BlackBox::Pointer b=con->GetOriginalBlackBoxTo();
1257                 fprintf(ff,"  ");
1258                 a->bbWriteDotInputOutputName(ff,false,detail,level);
1259                 if (detail==1)
1260                   {
1261                     fprintf(ff,":%s",con->GetOriginalBlackBoxFromOutput().c_str());
1262                   }
1263                 fprintf(ff,"->");
1264                 b->bbWriteDotInputOutputName(ff,true,detail,level);
1265                 if (detail==1)
1266                   {
1267                     fprintf(ff,":%s",con->GetOriginalBlackBoxToInput().c_str());
1268                   }
1269                 fprintf(ff,"%s\n",";");
1270               }  // if con
1271             } // if second
1272         } // for
1273     } // if parentblackbox
1274   }
1275   //=========================================================================
1276
1277
1278
1279
1280   //=========================================================================
1281   void BlackBox::bbPrintHelp(BlackBox::Pointer parentblackbox, 
1282                                  int detail, int level
1283                                  /*,Factory *factory*/ )
1284   {
1285      
1286     if (this->bbGetDescriptor()->GetPackage()) 
1287       {
1288              bbtkBlackBoxMessage("help",1,"Black Box '"<<bbGetName()<<"' <"<<
1289                     this->bbGetDescriptor()->GetPackage()->GetName()
1290                     <<"::"<<this->bbGetDescriptor()->GetTypeName()<<">"<<std::endl);
1291       }
1292     else 
1293       {
1294              bbtkBlackBoxMessage("help",1,"Black Box <::"<<this->bbGetDescriptor()->GetTypeName()<<">"<<std::endl);
1295       }
1296     /*
1297     if (bbIsUpToDate())
1298       {
1299              bbtkBlackBoxMessage("help",1,"Up-to-date ["<<mMaxInputChangeTime<<","
1300                     <<mMinOutputChangeTime<<"]"<<std::endl);
1301       }
1302     else 
1303       {
1304              bbtkBlackBoxMessage("help",1,"Out-of-date ["<<mMaxInputChangeTime<<","
1305                     <<mMinOutputChangeTime<<"]"<<std::endl);
1306       }
1307     */
1308     //    bbtkBlackBoxMessage("help",1," "<<GetDescription()<<std::endl);
1309     //    bbtkBlackBoxMessage("help",1," By : "<<GetAuthor()<<std::endl);
1310
1311     std::vector<std::string> iname;
1312     std::vector<std::string> ivalue;
1313     std::vector<std::string> iconn;
1314     std::vector<std::string> istatus;
1315
1316     InputConnectorMapType::iterator i;
1317     unsigned int namelmax = 0;
1318     unsigned int valuelmax = 0;
1319     //   unsigned int connlmax = 0;
1320     for ( i = mInputConnectorMap.begin(); i != mInputConnectorMap.end(); ++i ) 
1321     {
1322            iname.push_back(i->first);
1323            if (iname.back().size()>namelmax) namelmax = iname.back().size();
1324            ivalue.push_back(bbGetInputAsString(i->first));
1325            if (ivalue.back().size()>valuelmax) valuelmax = ivalue.back().size();
1326            std::string s("");
1327            Connection* con = i->second->GetConnection();
1328            if (con!=0){
1329               s = con->GetOriginalBlackBoxFrom()->bbGetName();
1330               s += ".";
1331               s += con->GetOriginalBlackBoxFromOutput();
1332            }  // if con
1333            iconn.push_back(s);
1334            istatus.push_back(GetIOStatusString(i->second->GetStatus()));
1335     }
1336     OutputConnectorMapType::iterator o;
1337     std::vector<std::string> oname;
1338     std::vector<std::string> ovalue;
1339     std::vector<std::vector<std::string> > oconn;
1340     std::vector<std::string> ostatus;
1341     for ( o = mOutputConnectorMap.begin(); o != mOutputConnectorMap.end(); ++o ) 
1342     {
1343            oname.push_back(o->first);
1344            if (oname.back().size()>namelmax)
1345           namelmax = oname.back().size();
1346            ovalue.push_back(bbGetOutputAsString(o->first));
1347            if (ovalue.back().size()>valuelmax) 
1348           valuelmax = ovalue.back().size();
1349            std::vector<std::string> ss;
1350            const std::vector<Connection*>& con 
1351                                     = o->second->GetConnectionVector();
1352            std::vector<Connection*>::const_iterator c;
1353            for (c=con.begin();c!=con.end();++c) 
1354            {
1355                std::string s;
1356                s = (*c)->GetOriginalBlackBoxTo()->bbGetName();
1357                s += ".";
1358                s += (*c)->GetOriginalBlackBoxToInput();
1359                ss.push_back(s);
1360             }  // if con
1361             oconn.push_back(ss);
1362             ostatus.push_back(GetIOStatusString(o->second->GetStatus()));
1363     }
1364
1365     if (iname.size()) 
1366       bbtkBlackBoxMessage("help",1," * Inputs : "<<std::endl);
1367     else 
1368       bbtkBlackBoxMessage("help",1," * No inputs"<<std::endl);
1369
1370     std::vector<std::string>::iterator i1,i2,i3,i4;
1371     for (i1=iname.begin(),i2=ivalue.begin(),i3=iconn.begin(),i4=istatus.begin();
1372              i1!=iname.end(),i2!=ivalue.end(),i3!=iconn.end(),i4!=istatus.end();
1373            ++i1,++i2,++i3,++i4)
1374      {
1375             std::string name(*i1);
1376             name += "'";
1377             name.append(1+namelmax-name.size(),' ');
1378             std::string value(*i2);
1379             value += "'";
1380             value.append(1+valuelmax-value.size(),' ');
1381             if (i3->size()) 
1382               bbtkBlackBoxMessage("help",1,"    '"<<name<<" = '"<<value<<" <-- '" <<*i3<<"'");
1383             else 
1384               bbtkBlackBoxMessage("help",1,"    '"<<name<<" = '"<<value);
1385             bbtkBlackBoxMessage("help",1," ["<<*i4<<"]"<<std::endl);
1386      }
1387
1388     if (oname.size()) 
1389        bbtkBlackBoxMessage("help",1," * Outputs : "<<std::endl);
1390     else 
1391        bbtkBlackBoxMessage("help",1," * No outputs"<<std::endl);
1392
1393     std::vector<std::vector<std::string> >::iterator i5;
1394
1395     for (i1=oname.begin(),i2=ovalue.begin(),i5=oconn.begin(),i4=ostatus.begin();
1396              i1!=oname.end(),i2!=ovalue.end(),i5!=oconn.end(),i4!=ostatus.end();
1397            ++i1,++i2,++i4,++i5)
1398     {
1399             std::string name(*i1);
1400             name += "'";
1401             name.append(1+namelmax-name.size(),' ');
1402             std::string value(*i2);
1403             value += "'";
1404             value.append(1+valuelmax-value.size(),' ');
1405             if (!(*i5).size())
1406               bbtkBlackBoxMessage("help",1,"    '"<<name<<" = '"<<value);
1407             else 
1408             {
1409                std::string pref = "    '"+name+" = '"+value;
1410                for (i3=i5->begin();i3!=i5->end();++i3)
1411                {
1412                       bbtkBlackBoxMessage("help",1,pref<<" --> '"<<*i3<<"'");
1413                       pref.replace(0,pref.size(),pref.size(),' ');
1414                }
1415             }
1416             bbtkBlackBoxMessage("help",1," ["<<*i4<<"]"<<std::endl);
1417     }
1418
1419    }
1420   //=========================================================================
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439   static bool bbmgGlobalProcessingExecutionList = false;
1440
1441   //=========================================================================
1442    void BlackBox::bbGlobalProcessExecutionList()
1443    {   
1444      bbtkDebugMessage("process",3,
1445                       "=> BlackBox::bbGlobalProcessExecutionList()"
1446                       <<std::endl);    
1447      if (bbmgGlobalProcessingExecutionList) 
1448        {
1449          bbtkDebugMessage("process",3,"BlackBox::bbGlobalProcessExecutionList() reentered !");
1450          return;
1451        }
1452      bbmgGlobalProcessingExecutionList = true;
1453
1454      std::set<BlackBox::WeakPointer>::iterator i; 
1455      while (bbmgExecutionList.size()>0)
1456        {
1457          i = bbmgExecutionList.begin();
1458          BlackBox::WeakPointer p = *i;
1459          bbmgExecutionList.erase(i);
1460          if (p.lock())
1461            {
1462              bbtkDebugMessage("process",4,
1463                               " -> Executing '"<<
1464                               p.lock()->bbGetName()<<"'"<<std::endl);
1465              p.lock()->bbExecute(true);
1466            }
1467          else 
1468            {
1469              bbtkGlobalError("Strange error in BlackBox::bbGlobalProcessExecutionList() : Weak bb pointer in bbmgExecutionList is no more valid...");
1470            }
1471        }
1472      
1473      bbmgExecutionList.clear();
1474      bbtkDebugMessage("process",3,
1475                          "<= BlackBox::bbGlobalProcessExecutionList()"
1476                          <<std::endl);     
1477      
1478      bbmgGlobalProcessingExecutionList = false;
1479
1480      
1481    }
1482   //=========================================================================
1483
1484     bool BlackBox::bbGlobalGetSomeBoxExecuting()
1485         { 
1486                 return bbmgSomeBoxExecuting; 
1487         }
1488
1489     void BlackBox::bbGlobalSetSomeBoxExecuting(bool b) 
1490         { 
1491                 bbmgSomeBoxExecuting = b; 
1492         }
1493
1494     void BlackBox::bbGlobalSetFreezeExecution(bool b) 
1495         { 
1496                 bbmgFreezeExecution = b;
1497         }
1498
1499     bool BlackBox::bbGlobalGetFreezeExecution() 
1500         { 
1501                 return bbmgFreezeExecution; 
1502         }
1503
1504   void BlackBox::bbGlobalAddToExecutionList( BlackBox::Pointer b )
1505   {  
1506     bbtkDebugMessage("process",3,"* bbGlobalAddToExecutionList("<<b->bbGetName()<<")"<<std::endl);
1507     if (bbmgGlobalProcessingExecutionList) 
1508       {
1509         bbtkDebugMessage("process",3,"bbGlobalAddToExecutionList called inside bbGlobalProcessExecutionList !");
1510       }
1511     bbmgExecutionList.insert(b); 
1512   } 
1513
1514
1515    //=========================================================================
1516
1517   //=========================================================================
1518   void BlackBox::Check(bool recursive)
1519   {
1520     bbtkBlackBoxMessage("debug",1,"*** Checking"
1521                         <<" ... OK"<<std::endl);
1522   }
1523   //=========================================================================
1524
1525
1526
1527
1528 }  // EO namespace bbtk
1529
1530 // EOF
1531