]> Creatis software - bbtk.git/blobdiff - kernel/src/bbtkTranscriptor.h
No longer 'Categories', only 'Kinds'!
[bbtk.git] / kernel / src / bbtkTranscriptor.h
index 5ab590a956df924e2fbb9414be54f324ca0c3b6b..82c95dafff346d1d747955cd512b51dc3f337944 100644 (file)
@@ -3,8 +3,8 @@
   Program:   bbtk
   Module:    $RCSfile: bbtkTranscriptor.h,v $ $
   Language:  C++
-  Date:      $Date: 2008/01/22 17:00:17 $
-  Version:   $Revision: 1.1 $
+  Date:      $Date: 2008/02/05 11:07:42 $
+  Version:   $Revision: 1.2 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
  */
  
 #ifndef __bbtkTranscriptor_h__
-#define __bbtkTranscriptor_h__ 
+#define __bbtkTranscriptor_h__
 
 #include "bbtkVirtualExec.h"
 
+#include "bbtkSystem.h"
+#include "bbtkComplexBlackBox.h"
+#include "bbtkFactory.h"
+#include <string>
+#include <deque>
 #include <iostream>
 
 namespace bbtk
@@ -37,11 +42,11 @@ namespace bbtk
   class /*BBTK_EXPORT*/ Transcriptor : public VirtualExec
   {
 
-  public:  
+  public:
 
     /// Constructor
     Transcriptor(std::string filename);
-      
+
     /// Destructor
     ~Transcriptor( );
     
@@ -54,20 +59,26 @@ namespace bbtk
     //void SetNoExecMode(bool b) { mNoExecMode = b; }
     void SetNoExecMode(bool b)
     {
-       m_Fp << "e->SetNoExecMode(true);" << std::endl;      
-    }    
+       m_Fp << "e->SetNoExecMode(true);" << std::endl;
+    }
 
     bool GetNoExecMode() const { return mNoExecMode; }
     /*
-    bool GetNoExecMode() const 
+    bool GetNoExecMode() const
     {
       // cannot compile, since ethos is 'const' !
-      //m_Fp << "e->GetNoExecMode(true);" << std::endl;      
+      //m_Fp << "e->GetNoExecMode(true);" << std::endl;
     }
     */
     /// Sets the mode of dialog of the executer for Root inputs 
     void SetDialogMode(DialogModeType t) { mDialogMode = t; }
 
+    /// Starts a package block 
+    void BeginPackage (const std::string &name );
+
+    /// Ends a package block
+    void EndPackage ();
+
     /// Starts the definition of a new ComplexBlackBox in package pack
     /// scriptfilename is the file from which the def is read
     void Define (const std::string &name,
@@ -117,9 +128,12 @@ namespace bbtk
     /// changes the workspace name
     void SetWorkspaceName( const std::string& n );
 
-    ///Adds the authorName to the Box's author list
+    ///Adds the authorName to the Box author list
     void Author(const std::string &authorName);
 
+    ///Adds the Keywords to the Box keyword list
+    void Keyword(const std::string &keyword);
+
     /// The description string which explains what does the ComplexBox
     void Description(const std::string & d);
 
@@ -143,7 +157,7 @@ namespace bbtk
 
       void Reset();
 
-  //  static const std::string& GetObjectDescription() 
+  //  static const std::string& GetObjectDescription()
   //  { static std::string s("Executer"); return s; }
 
   protected:
@@ -151,10 +165,11 @@ namespace bbtk
   private:
 
     /// Gets the current working black box 
-    ComplexBlackBoxDescriptor* Current() { return mCurrent.back().box; }
+    ComplexBlackBoxDescriptor* Current() 
+       { return mOpenDefinition.back().box; }
     
     /// Returns true when we are inside a define/endefine block
-    //    bool InDefinitionBlock() { return (mCurrent.size()>1); }
+    //    bool InDefinitionBlock() { return (mOpenDefinition.size()>1); }
 
     //==================================================================
     // ATTRIBUTES
@@ -168,7 +183,7 @@ namespace bbtk
     /// The root ComplexBlackBox, in which operations are done when outside a define/endefine block
     /// Its name in bbi is 'workspace'  
     ComplexBlackBoxDescriptor* mRoot;
-    
+
     /// Struct that stores info on user defined complex black boxes
     struct CBBDefinition
     {
@@ -181,7 +196,11 @@ namespace bbtk
     /// The stack of current working ComplexBlackBox
     /// (is a stack for nested definitions)
     /// only contains the root when outside a define/endefine block
-    std::deque<CBBDefinition> mCurrent;
+    std::deque<CBBDefinition> mOpenDefinition;
+
+    /// The stack of current working package
+    /// (is a stack for nested definitions)
+    std::deque<Package*> mOpenPackage;
 
     /// flag which is true when we are inside a Define/EndDefine block
     //    bool mDefineFlag;
@@ -196,8 +215,8 @@ namespace bbtk
     DialogModeType mDialogMode;
     
     /// File Pointer, to hold generated C++ code.
-   // std::ofstream *m_Fp;
-   std::ofstream m_Fp;
+    // std::ofstream *m_Fp;
+    std::ofstream m_Fp;
   };
 }
 #endif