X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=kernel%2Fsrc%2FbbtkTranscriptor.h;h=c0a2c4f2a4dd4eab2aca849c0fd626dcb74db2b9;hb=82709d667857071eb7211e7fe7d22237d3a9ddf3;hp=5ab590a956df924e2fbb9414be54f324ca0c3b6b;hpb=a914433b82d5681eadfb1612306c707104c03576;p=bbtk.git diff --git a/kernel/src/bbtkTranscriptor.h b/kernel/src/bbtkTranscriptor.h index 5ab590a..c0a2c4f 100644 --- a/kernel/src/bbtkTranscriptor.h +++ b/kernel/src/bbtkTranscriptor.h @@ -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 12:16:55 $ + Version: $Revision: 1.3 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -25,10 +25,15 @@ */ #ifndef __bbtkTranscriptor_h__ -#define __bbtkTranscriptor_h__ +#define __bbtkTranscriptor_h__ #include "bbtkVirtualExec.h" +#include "bbtkSystem.h" +#include "bbtkComplexBlackBox.h" +#include "bbtkFactory.h" +#include +#include #include 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 Categories to the Box category list + void Category(const std::string &category); + /// 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 mCurrent; + std::deque mOpenDefinition; + + /// The stack of current working package + /// (is a stack for nested definitions) + std::deque 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