]> Creatis software - bbtk.git/commitdiff
Test code
authoreduardo.davila@creatis.insa-lyon.fr <eduardo.davila@creatis.insa-lyon.fr>
Thu, 16 Jan 2025 07:32:54 +0000 (08:32 +0100)
committereduardo.davila@creatis.insa-lyon.fr <eduardo.davila@creatis.insa-lyon.fr>
Thu, 16 Jan 2025 07:32:54 +0000 (08:32 +0100)
kernel/src/bbtkBlackBox.cxx
kernel/src/bbtkComplexBlackBox.cxx
kernel/src/bbtkExecuter.cxx

index 0b76e372fd937c90dec927f63321d3ab46b5d1f1..4eccbb123ad67201e4960af584d48149110bbef9 100644 (file)
@@ -656,10 +656,14 @@ namespace bbtk
   /// Main processing method of the box.
   void BlackBox::bbExecute(bool force)
   {
+      
     bbtkBlackBoxDebugMessage("process",2,
                             "=> BlackBox::bbExecute("<<(int)force<<")"
                             <<std::endl);
+
+      printf("-- EED BlackBox::bbExecute Start \n");
+      bbGlobalSetInConstruction(true);
+
     // If already executing : return
     /*
     if (bbGetExecuting()) 
@@ -694,11 +698,15 @@ namespace bbtk
        {
                bbLetRecursiveExecuteManualMode = false;
        }
-         
+
+      printf("-- EED BlackBox::bbExecute End \n");
+      bbGlobalSetInConstruction(false);
          
     bbtkBlackBoxDebugMessage("process",2,
                             "<= BlackBox::bbExecute()"
                             <<std::endl);
+      
+      
   }
   //=========================================================================
 
@@ -1532,14 +1540,16 @@ namespace bbtk
   }
   //=========================================================================
 
-
+//EED2025-01-15
 bool BlackBox::bbGlobalGetInConstruction()
 {
+//    printf("EED BlackBox::bbGlobalGetInConstruction \n");
     return bbmgInConstruction;
 }
 
 void BlackBox::bbGlobalSetInConstruction(bool b)
 {
+    printf("EED BlackBox::bbGlobalSetInConstruction --)-)--)---)-)-)-)--)--)-\n");
     bbmgInConstruction =  b;
 }
 
index b13f5aaa9f01ba3cf7c0464ad618a0086328534e..4d011212f769ec499cdec13337c1466dd0c297f6 100644 (file)
@@ -274,14 +274,9 @@ namespace bbtk
     bbtkBlackBoxDebugMessage("process",2,
                             "**> ComplexBlackBox::bbExecute()"
                             <<std::endl);
-    
-    bbGlobalSetInConstruction(true);
-    
     Wx::BusyCursor wait;
-    
     if (mExecutionList.size() != 0) 
       {
-       
         std::vector<std::string>::const_iterator i;
         for (i=mExecutionList.begin(); 
             i!=mExecutionList.end();
@@ -297,13 +292,9 @@ namespace bbtk
               i->second->bbExecute(force);
           } // for i
     }
-      
-    bbGlobalSetInConstruction(false);
-
     bbtkBlackBoxDebugMessage("process",2,
                             "<** ComplexBlackBox::bbExecute()"
                             <<std::endl);
-    
   }
   //==================================================================
 
@@ -316,8 +307,6 @@ namespace bbtk
                             <<std::endl);
     
     mExecutionList.push_back( name );
-    
-    
   }
   //==================================================================
 
index 79380c4271072db6ca5671156e5cecdfae5ca706..52c553ffcc81d0ac15a15f2873fc4419089fd303 100644 (file)
@@ -349,9 +349,7 @@ namespace bbtk
         {
            GetCurrentDescriptor()->GetPrototype()->bbGetBlackBox(nodeName)->bbExecute(true);
         }
-     }
-     else 
-     {
+     } else {
         GetCurrentDescriptor()->AddToExecutionList(nodeName) ;
      }
   }