]> Creatis software - bbtk.git/blobdiff - kernel/src/bbtkAtomicBlackBoxMacros.h
re indent
[bbtk.git] / kernel / src / bbtkAtomicBlackBoxMacros.h
index 8d8df46887321cba621ccdd968e863dbad63de29..17e1c05369619f7103aacceec0b68f65c70b4798 100644 (file)
@@ -2,8 +2,8 @@
   Program:   bbtk
   Module:    $RCSfile: bbtkAtomicBlackBoxMacros.h,v $
   Language:  C++
-  Date:      $Date: 2009/04/08 07:56:11 $
-  Version:   $Revision: 1.14 $
+  Date:      $Date: 2009/06/10 11:36:51 $
+  Version:   $Revision: 1.19 $
 =========================================================================*/
 
 /* ---------------------------------------------------------------------
@@ -41,7 +41,7 @@
 /// Declares the standard interface of a AtomicBlackBox 
 /// (ctor, New, descriptor related methods)
 #define BBTK_BLACK_BOX_INTERFACE_INTERNAL_WITHOUT_NEW(CLASS,PARENT)    \
-  BBTK_OBJECT_MINIMAL_INTERFACE;                               \
+  BBTK_OBJECT_MINIMAL_INTERFACE;                                       \
   private:                                                             \
   protected:                                                           \
   CLASS(const std::string& name, bool allocate_connectors = true);     \
   { return std::string(#CLASS)+std::string(" '")                       \
       +bbGetNameWithParent()+std::string("'"); }                       \
   virtual void bbLockDescriptor();                                     \
+  virtual void bbUserSetDefaultValues();                               \
+  virtual void bbUserInitializeProcessing();                           \
+  virtual void bbUserFinalizeProcessing();                             \
+  virtual void bbRecursiveInitializeProcessing()                       \
+  {                                                                    \
+    PARENT::bbRecursiveInitializeProcessing();                         \
+    CLASS::bbUserInitializeProcessing();                               \
+  }                                                                    \
+  virtual void bbRecursiveFinalizeProcessing()                         \
+  {                                                                    \
+    CLASS::bbUserFinalizeProcessing();                                 \
+    PARENT::bbRecursiveFinalizeProcessing();                           \
+  }                                                                    \
   private:                                                             \
   CLASS() : PARENT("") {}                                              \
   CLASS(const CLASS&) : PARENT("") {}                                  
-
+  
 //============================================================================
 
 //============================================================================
   }                                                                    \
   inline bbtk::BlackBox::Pointer bbClone(const std::string& name)      \
   {                                                                    \
-    bbtkDebugMessage("object",1,"##> "<<#CLASS                         \
-                    <<"::bbClone(\""<<name<<"\")"<<std::endl);         \
+    bbtkBlackBoxDebugMessage("object",1,"##> "<<#CLASS                 \
+                            <<"::bbClone(\""<<name<<"\")"<<std::endl); \
     Pointer p = MakeBlackBoxPointer(new Self(*this,name));             \
-    bbtkDebugMessage("object",1,"<## "<<#CLASS                         \
+    bbtkBlackBoxDebugMessage("object",1,"<## "<<#CLASS                 \
                     <<"::bbClone(\""<<name<<"\")"<<std::endl);         \
     return p;                                                          \
   }                                                                    \
   virtual void bbLockDescriptor();                                     \
+  virtual void bbUserSetDefaultValues();                               \
+  virtual void bbUserInitializeProcessing();                           \
+  virtual void bbUserFinalizeProcessing();                             \
+  virtual void bbRecursiveInitializeProcessing()                       \
+  {                                                                    \
+    PARENT::bbRecursiveInitializeProcessing();                         \
+    CLASS::bbUserInitializeProcessing();                               \
+  }                                                                    \
+  virtual void bbRecursiveFinalizeProcessing()                         \
+  {                                                                    \
+    CLASS::bbUserFinalizeProcessing();                                 \
+    PARENT::bbRecursiveFinalizeProcessing();                           \
+  }                                                                    \
   private:                                                             \
   CLASS() : PARENT("") {}                                              \
   CLASS(const CLASS&) : PARENT("") {}                                  
   public:                                                              \
   inline void bbUserProcess()                                          \
   {                                                                    \
-    bbtkDebugMessage("process",1,"**> Processing ["<<bbGetFullName()   \
-                    <<"]"<<std::endl);                                 \
+    bbtkBlackBoxDebugMessage("process",1,"**> Processing..."           \
+                            <<std::endl);                              \
     CALLBACK();                                                                \
-    bbtkDebugMessage("process",1,"<** Processing ["<<bbGetFullName()   \
-                    <<"]"<<std::endl);                                 \
+    bbtkBlackBoxDebugMessage("process",1,"<** Processing"              \
+                            <<std::endl);                              \
   }
 //============================================================================
 
 
 //============================================================================
 #define BBTK_BEGIN_BLACK_BOX_CONSTRUCTOR(CLASS,ALLOC)                  \
-  bbtkDebugMessage("object",2,"==> "<<#CLASS<<"::"<<#CLASS             \
-                  <<"(\""<<bbGetName()<<"\")"<<std::endl);             \
+  bbtkBlackBoxDebugMessage("object",2,"==> "<<#CLASS<<"::"<<#CLASS     \
+                          <<"()"<<std::endl);                          \
   if (ALLOC)                                                           \
     {                                                                  \
       bbLockDescriptor();                                              \
       bbAllocateConnectors();                                          \
-    }
+    }                                                                  
+
 //============================================================================
 
 //============================================================================
 #define BBTK_END_BLACK_BOX_CONSTRUCTOR(CLASS)                          \
-  bbtkDebugMessage("object",2,"<== "<<#CLASS<<"::"<<#CLASS             \
-                  <<"(\""<<bbGetName()<<"\")"<<std::endl);             
+  bbtkBlackBoxDebugMessage("object",2,"<== "<<#CLASS<<"::"<<#CLASS     \
+                          <<"()"<<std::endl);          
 //============================================================================
 
 //============================================================================
 #define BBTK_BEGIN_BLACK_BOX_COPY_CONSTRUCTOR(CLASS,FROM,ALLOC)                \
-  bbtkDebugMessageInc("object",2,"==> "<<#CLASS<<"::"<<#CLASS          \
-                     <<"("<<FROM.bbGetFullName()<<",\""                \
-                     <<bbGetName()<<"\")"<<std::endl);                 \
+  bbtkBlackBoxDebugMessage("object",2,"==> "<<#CLASS<<"::"<<#CLASS     \
+                          <<"("<<FROM.bbGetFullName()                  \
+                          <<")"<<std::endl);                           \
   if (ALLOC)                                                           \
     {                                                                  \
       bbLockDescriptor();                                              \
       bbAllocateConnectors();                                          \
-      bbCopyIOValues(FROM);                                            \
-   }
+    }
 //============================================================================
 
 //============================================================================
-#define BBTK_END_BLACK_BOX_COPY_CONSTRUCTOR(CLASS,FROM)                        \
-  bbtkDebugMessage("object",2,"<== "<<#CLASS<<"::"<<#CLASS             \
-                  <<"("<<FROM.bbGetFullName()<<",\""                   \
-                  <<bbGetName()<<"\")"<<std::endl);            
+#define BBTK_END_BLACK_BOX_COPY_CONSTRUCTOR(CLASS,FROM,ALLOC)          \
+  bbtkBlackBoxDebugMessage("object",2,"<== "<<#CLASS<<"::"<<#CLASS     \
+                          <<"("<<FROM.bbGetFullName()                  \
+                          <<")"<<std::endl);                           \
+  if (ALLOC)                                                           \
+    {                                                                  \
+      bbCopyIOValues(FROM);                                            \
+    }
 //============================================================================
 
 //============================================================================
 #define BBTK_BEGIN_BLACK_BOX_DESTRUCTOR(CLASS)                         \
-  bbtkDebugMessage("object",2,"==> "<<#CLASS <<"::~"<< #CLASS          \
-                  <<"() ["<<this->bbGetFullName()<<"]"<<std::endl);
+  bbtkBlackBoxDebugMessage("object",2,"==> "<<#CLASS <<"::~"<< #CLASS  \
+                          <<"()"<<std::endl); \
+  bbFinalizeProcessing();                                              
+
+
 //============================================================================
 
 //============================================================================
 #define BBTK_END_BLACK_BOX_DESTRUCTOR(CLASS)                           \
-  bbtkDebugMessage("object",2,"<== "<<#CLASS <<"::~"<< #CLASS          \
-                  <<"() ["<<this->bbGetFullName()<<"]"<<std::endl);
+  bbtkBlackBoxDebugMessage("object",2,"<== "<<#CLASS <<"::~"<< #CLASS  \
+                          <<"()"<<std::endl);
 
 //============================================================================
 
     : PARENT(name,false)                                               \
   {                                                                    \
     BBTK_BEGIN_BLACK_BOX_CONSTRUCTOR(CLASS,allocate_connectors);       \
-    CLASS::bbUserConstructor();                                                \
+    CLASS::bbUserSetDefaultValues();                                           \
     BBTK_END_BLACK_BOX_CONSTRUCTOR(CLASS);                             \
   }                                                                    \
   CLASS::CLASS(CLASS& from,                                            \
     : PARENT(from,name,false)                                          \
   {                                                                    \
     BBTK_BEGIN_BLACK_BOX_COPY_CONSTRUCTOR(CLASS,from,allocate_connectors); \
-    CLASS::bbUserCopyConstructor(from.GetThisPointer<bbtk::BlackBox>()); \
-    BBTK_END_BLACK_BOX_COPY_CONSTRUCTOR(CLASS,from);                   \
+    CLASS::bbUserSetDefaultValues();                                           \
+    BBTK_END_BLACK_BOX_COPY_CONSTRUCTOR(CLASS,from,allocate_connectors);                       \
   }                                                                    \
   CLASS::~CLASS()                                                      \
   {                                                                    \
     BBTK_BEGIN_BLACK_BOX_DESTRUCTOR(CLASS);                            \
-    CLASS::bbUserDestructor();                                         \
     BBTK_END_BLACK_BOX_DESTRUCTOR(CLASS);                              \
   }                                                                    \
   void CLASS::bbLockDescriptor()                                       \
       {                                                                        \
        return Instance();                                              \
       }                                                                        \
-    static bbtk::AtomicBlackBoxDescriptor::Pointer Instance()                  \
+    static bbtk::AtomicBlackBoxDescriptor::Pointer Instance()          \
       {                                                                        \
-       static bbtk::AtomicBlackBoxDescriptor::WeakPointer i;                   \
-       bbtk::AtomicBlackBoxDescriptor::Pointer j;                              \
+       static bbtk::AtomicBlackBoxDescriptor::WeakPointer i;           \
+       bbtk::AtomicBlackBoxDescriptor::Pointer j;                      \
        if (!i.lock()) { j = Self::New(); i = j; }                      \
        return i.lock();                                                \
       }                                                                        \
                       (&CLASS<T>::bbSetOutput##NAME) ) )
 //============================================================================
 
+
+//JCP 09JUIN2009 BBTK_EXPORT
+
 //============================================================================
 /// Template AtomicBlackBox std implementation of ctor and dtor
 #define BBTK_BLACK_BOX_TEMPLATE_IMPLEMENTATION(CLASS,PARENT)           \
     : PARENT(name,false)                                               \
   {                                                                    \
     BBTK_BEGIN_BLACK_BOX_CONSTRUCTOR(CLASS,alloc);                     \
-    CLASS<T>::bbUserConstructor();                                     \
+    CLASS<T>::bbUserSetDefaultValues();                                        \
     BBTK_END_BLACK_BOX_CONSTRUCTOR(CLASS);                             \
   }                                                                    \
   template <class T>                                                   \
     : PARENT(from,name,false)                                          \
   {                                                                    \
     BBTK_BEGIN_BLACK_BOX_COPY_CONSTRUCTOR(CLASS,from,allocate_connectors); \
-    CLASS<T>::bbUserCopyConstructor(from.GetThisPointer<bbtk::BlackBox>()); \
-    BBTK_END_BLACK_BOX_COPY_CONSTRUCTOR(CLASS,from);                   \
+    CLASS<T>::bbUserSetDefaultValues();                                        \
+    BBTK_END_BLACK_BOX_COPY_CONSTRUCTOR(CLASS,from,allocate_connectors);                       \
   }                                                                    \
   template <class T>                                                   \
   CLASS<T>::~CLASS()                                                   \
   {                                                                    \
     BBTK_BEGIN_BLACK_BOX_DESTRUCTOR(CLASS);                            \
-    CLASS<T>::bbUserDestructor();                                      \
     BBTK_END_BLACK_BOX_DESTRUCTOR(CLASS);                              \
   }                                                                    \
   template <class T>                                                   \
     : PARENT(name,false)                                               \
   {                                                                    \
     BBTK_BEGIN_BLACK_BOX_CONSTRUCTOR(CLASS,alloc);                     \
-    CLASS<T1,T2>::bbUserConstructor();                                 \
+    CLASS<T1,T2>::bbUserSetDefaultValues();                            \
     BBTK_END_BLACK_BOX_CONSTRUCTOR(CLASS);                             \
   }                                                                    \
   template <class T1, class T2>                                                \
     : PARENT(from,name,false)                                          \
   {                                                                    \
     BBTK_BEGIN_BLACK_BOX_COPY_CONSTRUCTOR(CLASS,from,allocate_connectors); \
-    CLASS<T1,T2>::bbUserCopyConstructor(from.GetThisPointer<bbtk::BlackBox>());        \
-    BBTK_END_BLACK_BOX_COPY_CONSTRUCTOR(CLASS,from);                   \
+    CLASS<T1,T2>::bbUserSetDefaultValues();                            \
+    BBTK_END_BLACK_BOX_COPY_CONSTRUCTOR(CLASS,from,allocate_connectors);                       \
   }                                                                    \
   template <class T1, class T2>                                                \
   CLASS<T1,T2>::~CLASS()                                               \
   {                                                                    \
     BBTK_BEGIN_BLACK_BOX_DESTRUCTOR(CLASS);                            \
-    CLASS<T1,T2>::bbUserDestructor();                                  \
     BBTK_END_BLACK_BOX_DESTRUCTOR(CLASS);                              \
   }                                                                    \
   template <class T1, class T2>                                                \
 //============================================================================
 
 
-/*
-//============================================================================
-/// Template AtomicBlackBox std implementation of ctor and dtor
-#define BBTK_BLACK_BOX_TEMPLATE2_WITH_TYPES_IMPLEMENTATION(CLASS,PARENT,TYPE1,TYPE2) \
-  template <TYPE1 T1, TYPE2 T2>                                                \
-  CLASS<T1,T2>::CLASS(const std::string& name, bool alloc)             \
-    : PARENT(name,false)                                               \
-  {                                                                    \
-    BBTK_BEGIN_BLACK_BOX_CONSTRUCTOR(CLASS,alloc);                     \
-    this->bbUserConstructor();                                         \
-    BBTK_END_BLACK_BOX_CONSTRUCTOR;                                    \
-  }                                                                    \
-  template <TYPE1 T1, TYPE2 T2>                                                \
-  CLASS<T1,T2>::CLASS(CLASS<T1,T2>& from,                              \
-                     const std::string& name, bool allocate_connectors) \
-    : PARENT(from,name,false)                                          \
-  {                                                                    \
-    BBTK_BEGIN_BLACK_BOX_COPY_CONSTRUCTOR(CLASS,from,allocate_connectors); \
-    this->bbUserCopyConstructor();                                     \
-    BBTK_END_BLACK_BOX_CONSTRUCTOR;                                    \
-  }                                                                    \
-  template <TYPE1 T1, TYPE2 T2>                                                \
-  CLASS<T1,T2>::~CLASS()                                               \
-  {                                                                    \
-    BBTK_BEGIN_BLACK_BOX_DESTRUCTOR(CLASS);                            \
-    this->bbUserDestructor();                                          \
-    BBTK_END_BLACK_BOX_DESTRUCTOR;                                     \
-  }                                                                    \
-  template <class T1, class T2>                                                \
-  void CLASS<T1,T2>::bbLockDescriptor()                                        \
-  {                                                                    \
-    bbmDescriptorPointer = CLASS ## Descriptor<T1,T2>::Instance();     \
-  }
-//============================================================================
-
-*/
-
-
-
-