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