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