]> Creatis software - bbtk.git/blobdiff - kernel/src/bbtkBlackBox.cxx
re indent
[bbtk.git] / kernel / src / bbtkBlackBox.cxx
index c74b2e9e1cf4a53a87ab398660813ffadc5d580a..dfdf6e5df63861b3c353e71d6e289b6e20ffdedd 100644 (file)
@@ -2,8 +2,8 @@
   Program:   bbtk
   Module:    $RCSfile: bbtkBlackBox.cxx,v $
   Language:  C++
-  Date:      $Date: 2009/06/08 14:50:02 $
-  Version:   $Revision: 1.48 $
+  Date:      $Date: 2011/07/22 17:42:50 $
+  Version:   $Revision: 1.54 $
 =========================================================================*/
 
 /* ---------------------------------------------------------------------
@@ -48,8 +48,6 @@
 
 namespace bbtk
 {
-
-
   static bool bbmgSomeBoxExecuting = false;
   static bool bbmgFreezeExecution = false;
   static std::set<BlackBox::WeakPointer> bbmgExecutionList;
@@ -114,6 +112,10 @@ namespace bbtk
     bbmParent()
     
   {
+         //JCP 02-11-09
+        // bbmBoxProcessMode = "Pipeline";     
+//std::cout<<"JCP BlackBox::BlackBox(const std::string &name) name=" <<name
+//               <<"bbmBoxProcessMode="<<bbmBoxProcessMode<<std::endl;
     bbtkBlackBoxDebugMessage("object",4,"==> BlackBox::BlackBox(\""
                     <<name<<"\")"<<std::endl);
     bbtkBlackBoxDebugMessage("object",4,"<== BlackBox::BlackBox(\""
@@ -136,6 +138,10 @@ namespace bbtk
     bbmParent()
     
   {
+         //JCP 02-11-09
+         //bbmBoxProcessMode = from.bbmBoxProcessMode;
+         //std::cout<<"JCP BlackBox::BlackBox(const std::string &name) name=" <<name
+               //  <<"bbmBoxProcessMode="<<bbmBoxProcessMode<<std::endl;
     bbtkBlackBoxDebugMessage("object",4,"==> BlackBox::BlackBox("
                     <<from.bbGetFullName()<<",\""
                     <<name<<"\")"<<std::endl);
@@ -273,7 +279,6 @@ namespace bbtk
        bbGetOutputConnectorMap()[o->second->GetName()] 
          = new BlackBoxOutputConnector(GetThisPointer<BlackBox>());
       }
-
   }
   //=========================================================================
 
@@ -300,8 +305,7 @@ namespace bbtk
        delete (o->second);
       }                                                                        
    
-    bbtkDebugDecTab("kernel",8);  
-
+    bbtkDebugDecTab("kernel",8);
   }
   //=========================================================================
 
@@ -337,7 +341,6 @@ namespace bbtk
       }
 
     bbtkDebugDecTab("kernel",9);
-
   }
   //=========================================================================
 
@@ -350,7 +353,7 @@ namespace bbtk
 #ifdef USE_WXWIDGETS
             || Wx::IsSomeWindowAlive() 
 #endif
-            ); 
+            );
   }
   //=========================================================================
 
@@ -362,13 +365,14 @@ namespace bbtk
     const std::string& p = bbmBoxProcessMode;
     if ( (p == "0") ||
         (p == "P") || (p == "p") ||
-        (p == "Pipeline") || (p == "pipeline") ) return Pipeline;
+        (p == "Pipeline") || (p == "pipeline") ) return bbPipeline;
     if ( (p == "1") ||
         (p == "A") || (p == "a") ||
-        (p == "Always") || (p == "always") ) return Always;
+        (p == "Always") || (p == "always") ) return bbAlways;
     if ( (p == "2") ||
         (p == "R") || (p == "r") ||
-        (p == "Reactive") || (p == "reactive") ) return Reactive;
+        (p == "Reactive") || (p == "reactive") ) 
+               return bbReactive;
     /*
     if ( (p == "3") ||
         (p == "F") || (p == "f") ||
@@ -387,14 +391,14 @@ namespace bbtk
   //=========================================================================
   bool  BlackBox::bbBoxProcessModeIsReactive() const
   {
-    return (bbGetBoxProcessModeValue() == Reactive);
+    return (bbGetBoxProcessModeValue() == bbReactive);
   }
   //=========================================================================
 
   //=========================================================================
   bool  BlackBox::bbBoxProcessModeIsAlways() const
   {
-    return (bbGetBoxProcessModeValue() == Always);
+    return (bbGetBoxProcessModeValue() == bbAlways);
   }
   //=========================================================================
 
@@ -447,11 +451,11 @@ namespace bbtk
            o->second->SetStatus(OUTOFDATE);
            o->second->SignalChange(GetThisPointer<BlackBox>(),o->first); 
          }
-      }                                                                        
+       }                                                               
     
-    if ( ( bbBoxProcessModeIsReactive()  ||
-          (c==bbGetInputConnectorMap().find("BoxExecute")->second))
-        && (bbCanReact() ) )
+    if (  ( bbBoxProcessModeIsReactive()
+          || (c==bbGetInputConnectorMap().find("BoxExecute")->second))
+          && (bbCanReact() ) )
       {
        bbtkBlackBoxDebugMessage("change",2,
                         "-> Execution triggered by Reactive mode or BoxExecute input change"<<std::endl);
@@ -471,7 +475,7 @@ namespace bbtk
                             "=> BlackBox::bbSignalOutputModification("
                             <<reaction<<")"
                             <<"]"<<std::endl);
-    
+
     OutputConnectorMapType::iterator i;
     for ( i  = bbGetOutputConnectorMap().begin(); 
          i != bbGetOutputConnectorMap().end(); ++i) 
@@ -485,16 +489,17 @@ namespace bbtk
        //        {
            i->second->SignalChange(GetThisPointer<BlackBox>(),i->first); 
            //    }
-      } 
+      } // for
 
     if (reaction) bbGlobalProcessExecutionList();
 
     bbtkBlackBoxDebugMessage("change",5,
                             "<= BlackBox::bbSignalOutputModification()"
                             <<std::endl);
-    
   }  
   //=========================================================================   
+
+
   //=========================================================================  
   void BlackBox::bbSignalOutputModification(const std::string& output,
                                            bool reaction)
@@ -532,7 +537,6 @@ namespace bbtk
                             "<= BlackBox::bbSignalOutputModification("
                             <<output<<")"
                             <<std::endl);
-    
   }  
   //=========================================================================   
   //=========================================================================  
@@ -576,7 +580,6 @@ namespace bbtk
     bbtkBlackBoxDebugMessage("change",5,
                             "<= BlackBox::bbSignalOutputModification(vector of outputs)"
                             <<std::endl);
-
   }  
   //=========================================================================   
 
@@ -724,8 +727,7 @@ namespace bbtk
     bbSetExecuting(false);
     bbGlobalSetSomeBoxExecuting(wasExecuting);
 
-    return; 
-
+    return;
   }
   //=========================================================================
   
@@ -768,9 +770,7 @@ namespace bbtk
     
     bbtkBlackBoxDebugMessage("process",4,
                        "<= BlackBox::bbUpdateInputs()"
-                       <<std::endl);   
-    
-    
+                       <<std::endl);
     return s;
   }
   //=========================================================================
@@ -814,8 +814,7 @@ namespace bbtk
 
     bbtkBlackBoxDebugMessage("process",4,
                        "<= BlackBox::bbComputePostProcessStatus()"
-                       <<std::endl);   
-
+                       <<std::endl);
   }
   //==================================================================
 
@@ -827,7 +826,6 @@ namespace bbtk
                        <<name<<"\","<<c->GetFullName()<<")"
                        <<std::endl);       
 
-
     InputConnectorMapType::iterator i = bbGetInputConnectorMap().find(name);
     if (i==bbGetInputConnectorMap().end())
       {
@@ -836,12 +834,11 @@ namespace bbtk
     i->second->SetConnection(c);
     // The input *MUST* be set OUTOFDATE to update its input on next execution
     bbSetStatusAndPropagate(i->second,OUTOFDATE);
-    
+
     bbtkBlackBoxDebugMessage("connection",2,
                        "<== BlackBox::bbConnectInput(\""
                        <<name<<"\","<<c->GetFullName()<<")"
-                       <<std::endl);       
-
+                       <<std::endl);
   }
   //=========================================================================
 
@@ -853,7 +850,7 @@ namespace bbtk
                             "==> BlackBox::bbConnectOutput(\""<<name<<"\","
                             <<c->GetFullName()<<")"
                             <<std::endl);       
-    
+
     OutputConnectorMapType::iterator i = bbGetOutputConnectorMap().find(name);
     if (i==bbGetOutputConnectorMap().end())
       {
@@ -864,8 +861,7 @@ namespace bbtk
     bbtkBlackBoxDebugMessage("connection",2,
                             "<== BlackBox::bbConnectOutput(\""<<name<<"\","
                             <<c->GetFullName()<<")"
-                            <<std::endl);       
-
+                            <<std::endl);
   }
   //=========================================================================
 
@@ -877,8 +873,7 @@ namespace bbtk
     bbtkBlackBoxDebugMessage("connection",2,
                     "==> BlackBox::bbDisconnectInput(\""<<name
                     <<"\","<<c->GetFullName()<<")"
-                    <<std::endl);      
-
+                    <<std::endl);
     if (!c) 
       {
 
@@ -1155,8 +1150,8 @@ namespace bbtk
           const BlackBoxOutputDescriptor* id = bbGetDescriptor()->GetOutputDescriptor(ii->first); 
           tempStrTypeName=id->GetTypeName();
           SubsBrackets(tempStrTypeName);
-           std::string Name(ii->first);
-           SubsBrackets(Name);
+          std::string Name(ii->first);
+          SubsBrackets(Name);
           labelStr=labelStr+"<"+ii->first.c_str()+"> " + valueStr + Name.c_str() + "  ["+tempStrTypeName+"]";
        }
        labelStr = labelStr+ "      } }" ;
@@ -1216,23 +1211,23 @@ namespace bbtk
      
     if (this->bbGetDescriptor()->GetPackage()) 
       {
-       bbtkBlackBoxMessage("help",1,"Black Box '"<<bbGetName()<<"' <"<<
+            bbtkBlackBoxMessage("help",1,"Black Box '"<<bbGetName()<<"' <"<<
                    this->bbGetDescriptor()->GetPackage()->GetName()
                    <<"::"<<this->bbGetDescriptor()->GetTypeName()<<">"<<std::endl);
       }
     else 
       {
-       bbtkBlackBoxMessage("help",1,"Black Box <::"<<this->bbGetDescriptor()->GetTypeName()<<">"<<std::endl);
+            bbtkBlackBoxMessage("help",1,"Black Box <::"<<this->bbGetDescriptor()->GetTypeName()<<">"<<std::endl);
       }
     /*
     if (bbIsUpToDate())
       {
-       bbtkBlackBoxMessage("help",1,"Up-to-date ["<<mMaxInputChangeTime<<","
+            bbtkBlackBoxMessage("help",1,"Up-to-date ["<<mMaxInputChangeTime<<","
                    <<mMinOutputChangeTime<<"]"<<std::endl);
       }
     else 
       {
-       bbtkBlackBoxMessage("help",1,"Out-of-date ["<<mMaxInputChangeTime<<","
+            bbtkBlackBoxMessage("help",1,"Out-of-date ["<<mMaxInputChangeTime<<","
                    <<mMinOutputChangeTime<<"]"<<std::endl);
       }
     */
@@ -1249,47 +1244,49 @@ namespace bbtk
     unsigned int valuelmax = 0;
     //   unsigned int connlmax = 0;
     for ( i = mInputConnectorMap.begin(); i != mInputConnectorMap.end(); ++i ) 
-      {
-       iname.push_back(i->first);
-       if (iname.back().size()>namelmax) namelmax = iname.back().size();
-       ivalue.push_back(bbGetInputAsString(i->first));
-       if (ivalue.back().size()>valuelmax) valuelmax = ivalue.back().size();
-       std::string s("");
-       Connection* con = i->second->GetConnection();
-       if (con!=0){
-         s = con->GetOriginalBlackBoxFrom()->bbGetName();
-         s += ".";
-         s += con->GetOriginalBlackBoxFromOutput();
-       }  // if con
-       iconn.push_back(s);
-       istatus.push_back(GetIOStatusString(i->second->GetStatus()));
-      }
+    {
+          iname.push_back(i->first);
+          if (iname.back().size()>namelmax) namelmax = iname.back().size();
+          ivalue.push_back(bbGetInputAsString(i->first));
+          if (ivalue.back().size()>valuelmax) valuelmax = ivalue.back().size();
+          std::string s("");
+          Connection* con = i->second->GetConnection();
+          if (con!=0){
+             s = con->GetOriginalBlackBoxFrom()->bbGetName();
+             s += ".";
+             s += con->GetOriginalBlackBoxFromOutput();
+          }  // if con
+          iconn.push_back(s);
+          istatus.push_back(GetIOStatusString(i->second->GetStatus()));
+    }
     OutputConnectorMapType::iterator o;
     std::vector<std::string> oname;
     std::vector<std::string> ovalue;
     std::vector<std::vector<std::string> > oconn;
     std::vector<std::string> ostatus;
     for ( o = mOutputConnectorMap.begin(); o != mOutputConnectorMap.end(); ++o ) 
-      {
-       oname.push_back(o->first);
-       if (oname.back().size()>namelmax) namelmax = oname.back().size();
-       ovalue.push_back(bbGetOutputAsString(o->first));
-       if (ovalue.back().size()>valuelmax) valuelmax = ovalue.back().size();
-       std::vector<std::string> ss;
-       const std::vector<Connection*>& con 
-         = o->second->GetConnectionVector();
-       std::vector<Connection*>::const_iterator c;
-       for (c=con.begin();c!=con.end();++c) 
-         {
-           std::string s;
-           s = (*c)->GetOriginalBlackBoxTo()->bbGetName();
-           s += ".";
-           s += (*c)->GetOriginalBlackBoxToInput();
-           ss.push_back(s);
-       }  // if con
-       oconn.push_back(ss);
-       ostatus.push_back(GetIOStatusString(o->second->GetStatus()));
-      }
+    {
+          oname.push_back(o->first);
+          if (oname.back().size()>namelmax)
+          namelmax = oname.back().size();
+          ovalue.push_back(bbGetOutputAsString(o->first));
+          if (ovalue.back().size()>valuelmax) 
+          valuelmax = ovalue.back().size();
+          std::vector<std::string> ss;
+          const std::vector<Connection*>& con 
+                                   = o->second->GetConnectionVector();
+          std::vector<Connection*>::const_iterator c;
+          for (c=con.begin();c!=con.end();++c) 
+          {
+              std::string s;
+              s = (*c)->GetOriginalBlackBoxTo()->bbGetName();
+              s += ".";
+              s += (*c)->GetOriginalBlackBoxToInput();
+              ss.push_back(s);
+           }  // if con
+           oconn.push_back(ss);
+           ostatus.push_back(GetIOStatusString(o->second->GetStatus()));
+    }
 
     if (iname.size()) 
       bbtkBlackBoxMessage("help",1," * Inputs : "<<std::endl);
@@ -1298,53 +1295,52 @@ namespace bbtk
 
     std::vector<std::string>::iterator i1,i2,i3,i4;
     for (i1=iname.begin(),i2=ivalue.begin(),i3=iconn.begin(),i4=istatus.begin();
-        i1!=iname.end(),i2!=ivalue.end(),i3!=iconn.end(),i4!=istatus.end();
-        ++i1,++i2,++i3,++i4)
-      {
-       std::string name(*i1);
-       name += "'";
-       name.append(1+namelmax-name.size(),' ');
-       std::string value(*i2);
-       value += "'";
-       value.append(1+valuelmax-value.size(),' ');
-       if (i3->size()) 
-         bbtkBlackBoxMessage("help",1,"    '"<<name<<" = '"<<value<<" <-- '"
-                     <<*i3<<"'");
-       else 
-         bbtkBlackBoxMessage("help",1,"    '"<<name<<" = '"<<value);
-       bbtkBlackBoxMessage("help",1," ["<<*i4<<"]"<<std::endl);
-      }
+            i1!=iname.end(),i2!=ivalue.end(),i3!=iconn.end(),i4!=istatus.end();
+          ++i1,++i2,++i3,++i4)
+     {
+           std::string name(*i1);
+           name += "'";
+           name.append(1+namelmax-name.size(),' ');
+           std::string value(*i2);
+           value += "'";
+           value.append(1+valuelmax-value.size(),' ');
+           if (i3->size()) 
+             bbtkBlackBoxMessage("help",1,"    '"<<name<<" = '"<<value<<" <-- '" <<*i3<<"'");
+           else 
+             bbtkBlackBoxMessage("help",1,"    '"<<name<<" = '"<<value);
+           bbtkBlackBoxMessage("help",1," ["<<*i4<<"]"<<std::endl);
+     }
 
     if (oname.size()) 
-      bbtkBlackBoxMessage("help",1," * Outputs : "<<std::endl);
+       bbtkBlackBoxMessage("help",1," * Outputs : "<<std::endl);
     else 
-      bbtkBlackBoxMessage("help",1," * No outputs"<<std::endl);
+       bbtkBlackBoxMessage("help",1," * No outputs"<<std::endl);
 
     std::vector<std::vector<std::string> >::iterator i5;
 
     for (i1=oname.begin(),i2=ovalue.begin(),i5=oconn.begin(),i4=ostatus.begin();
-        i1!=oname.end(),i2!=ovalue.end(),i5!=oconn.end(),i4!=ostatus.end();
-        ++i1,++i2,++i4,++i5)
-      {
-       std::string name(*i1);
-       name += "'";
-       name.append(1+namelmax-name.size(),' ');
-       std::string value(*i2);
-       value += "'";
-       value.append(1+valuelmax-value.size(),' ');
-       if (!(*i5).size())
-         bbtkBlackBoxMessage("help",1,"    '"<<name<<" = '"<<value);
-       else 
-         {
-           std::string pref = "    '"+name+" = '"+value;
-           for (i3=i5->begin();i3!=i5->end();++i3)
-             {
-               bbtkBlackBoxMessage("help",1,pref<<" --> '"<<*i3<<"'");
-               pref.replace(0,pref.size(),pref.size(),' ');
-             }
-         }
-       bbtkBlackBoxMessage("help",1," ["<<*i4<<"]"<<std::endl);
-      }
+            i1!=oname.end(),i2!=ovalue.end(),i5!=oconn.end(),i4!=ostatus.end();
+          ++i1,++i2,++i4,++i5)
+    {
+           std::string name(*i1);
+           name += "'";
+           name.append(1+namelmax-name.size(),' ');
+           std::string value(*i2);
+           value += "'";
+           value.append(1+valuelmax-value.size(),' ');
+           if (!(*i5).size())
+             bbtkBlackBoxMessage("help",1,"    '"<<name<<" = '"<<value);
+           else 
+           {
+              std::string pref = "    '"+name+" = '"+value;
+              for (i3=i5->begin();i3!=i5->end();++i3)
+              {
+                     bbtkBlackBoxMessage("help",1,pref<<" --> '"<<*i3<<"'");
+                     pref.replace(0,pref.size(),pref.size(),' ');
+              }
+           }
+           bbtkBlackBoxMessage("help",1," ["<<*i4<<"]"<<std::endl);
+    }
 
    }
   //=========================================================================