X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=kernel%2Fsrc%2FbbtkInterpreter.h;h=bc60dd33d67d1eca728e226d9f1ff220eedbf990;hb=fb4178612a6d5b670bb5991d4427ddd7b7bcd6ae;hp=b078a5884d5c5f8a579a89e6a39bae0427332be5;hpb=a26195c366a89795288009cf7e20f11afa494970;p=bbtk.git diff --git a/kernel/src/bbtkInterpreter.h b/kernel/src/bbtkInterpreter.h index b078a58..bc60dd3 100644 --- a/kernel/src/bbtkInterpreter.h +++ b/kernel/src/bbtkInterpreter.h @@ -3,8 +3,8 @@ Program: bbtk Module: $RCSfile: bbtkInterpreter.h,v $ $ Language: C++ - Date: $Date: 2008/01/22 15:02:00 $ - Version: $Revision: 1.1 $ + Date: $Date: 2008/01/28 10:50:54 $ + 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 @@ -27,15 +27,15 @@ #ifndef __bbtkInterpreter_h__ #define __bbtkInterpreter_h__ - +#include "bbtkVirtualExec.h" #include "bbtkExecuter.h" +#include "bbtkTranscriptor.h" + #include #include namespace bbtk { - - class BBTK_EXPORT Interpreter { @@ -67,7 +67,7 @@ namespace bbtk cPrint, cWorkspace // LG } CommandCodeType; - + /// The structure storing the informations on a command typedef struct { @@ -78,14 +78,13 @@ namespace bbtk std::string help; } CommandInfoType; - - /// The type of dictionnary of commands typedef std::map CommandDictType; public: /// Constructor - Interpreter(); + Interpreter(); + /// Destructor ~Interpreter(); @@ -104,7 +103,8 @@ namespace bbtk void SetNoExecMode(bool b) { mExecuter->SetNoExecMode(b); } /// - typedef Executer::DialogModeType DialogModeType; + //typedef Executer::DialogModeType DialogModeType; + typedef VirtualExec::DialogModeType DialogModeType; void SetDialogMode(DialogModeType t) { mExecuter->SetDialogMode(t); } @@ -150,48 +150,46 @@ namespace bbtk void Config(bool verbose) const; // JPR /// void Print(const std::string&); - - /// Splits the string in around the first dot encountered - void SplitAroundFirstDot( const std::string& in, - std::string& left, - std::string& right); + /// void FindCommandsWithPrefix( char* buf, int n, std::vector& commands ); - + /// Sets the bool that indicates wether we are in command line context void SetCommandLine(bool v = true) { mCommandLine = v; } + private: + private: - /// the methods for include bbs - bool FileExists(std::string strFilename); - std::string ExtractScriptName(const std::string &name); - std::string ExpandLibName(const std::string &name, bool v); - std::string MakeLibnameFromPath(std::string path, std::string pkgname); - bool IsAtRoot(std::string cwd); - - private: - + //================================================================== // ATTRIBUTES + /// The factory // bbtk::Factory* mFactory; - /// The command executer - bbtk::Executer* mExecuter; - /// Vector of opened files - std::vector mFile; - /// Vector of names of open files - std::vector mFileName; + + /// The command executer + bbtk::VirtualExec* mExecuter; + + /// Vector of opened files + std::vector mFile; + + /// Vector of names of open files + std::vector mFileName; + /// Stores the current line number in each open file - std::vector mLine; + std::vector mLine; + /// The dictionnary of commands CommandDictType mCommandDict; + /// Are we in a command line context ? bool mCommandLine; - /// The history of commands - std::deque< char* > mHistory; - + + /// The history of commands + std::deque< char* > mHistory; + bool verbose; // true -> displays the search results (for packages) }; @@ -202,7 +200,5 @@ namespace bbtk QuitException() : bbtk::Exception("","","") {} }; - - } #endif