X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=kernel%2Fsrc%2FbbtkInterpreter.cxx;h=5f6b3e65b9853a38c5f2e6316faf8e3a003a227c;hb=8c0188cb0a3b4c491a4c5498ee04c754ec0fac2b;hp=224861d5773bf17bf0fac7e34305c9a8c8f0a780;hpb=f1575da9353486cb8dcc2cf260201334fbba3599;p=bbtk.git diff --git a/kernel/src/bbtkInterpreter.cxx b/kernel/src/bbtkInterpreter.cxx index 224861d..5f6b3e6 100644 --- a/kernel/src/bbtkInterpreter.cxx +++ b/kernel/src/bbtkInterpreter.cxx @@ -3,8 +3,8 @@ Program: bbtk Module: $RCSfile: bbtkInterpreter.cxx,v $ $ Language: C++ - Date: $Date: 2008/01/30 15:29:07 $ - Version: $Revision: 1.16 $ + Date: $Date: 2008/02/04 13:02:58 $ + Version: $Revision: 1.18 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -163,6 +163,14 @@ Interpreter* Interpreter::mGlobalInterpreter = NULL; info.help = "Prints the value of all configuration parameters"; mCommandDict[info.keyword] = info; + info.keyword = "index"; // LG + info.argmin = 0; + info.argmax = 2; + info.code = cIndex; + info.syntax = "index [ ['Initials'(default)|'Packages'|'Keywords']]"; + info.help = "Creates an html index of known boxes. If filename is provided then save it to the file 'filename'. The default index entries are the initial letters of the names of the boxes. If 'Packages' or 'Keywords' is provided then the entries are either the package names or the keywords"; + mCommandDict[info.keyword] = info; + info.keyword = "reset"; //EED info.argmin = 0; info.argmax = 0; @@ -503,12 +511,20 @@ void Interpreter::InterpretLine( const std::string& line, bool &insideComment ) mExecuter->Author(words[1]); break; - case cKeyword : - mExecuter->Keyword(words[1]); - break; - - case cDescription : - mExecuter->Description(words[1]); + case cKeyword : + mExecuter->Keyword(words[1]); + break; + + case cIndex : + if (words.size()==1) + Index("tmp_index.html"); + else if (words.size()==2) + Index(words[1]); + else if (words.size()==3) + Index(words[1],words[2]); + break; + case cDescription : + mExecuter->Description(words[1]); break; case cHelp : @@ -588,28 +604,6 @@ void Interpreter::InterpretLine( const std::string& line, bool &insideComment ) - //======================================================================= - void SplitString ( const std::string& str, const std::string& delimiters, - std::vector& tokens) - { - // Skip delimiters at beginning. - std::string::size_type lastPos = str.find_first_not_of(delimiters, 0); - // Find first delimiter. - std::string::size_type pos = str.find_first_of(delimiters, lastPos); - - while (std::string::npos != pos || std::string::npos != lastPos) - { - // Found a token, add it to the vector. - tokens.push_back(str.substr(lastPos, pos - lastPos)); - // Skip delimiters. Note the "not_of" - lastPos = str.find_first_not_of(delimiters, pos); - // Find next delimiter - pos = str.find_first_of(delimiters, lastPos); - } - - } - //======================================================================= - //======================================================================= @@ -622,13 +616,13 @@ void Interpreter::SplitLine ( const std::string& str, std::vector& std::string delimiters = "\""; std::vector quote; - SplitString(str,delimiters,quote); + Utilities::SplitString(str,delimiters,quote); delimiters = " \t"; std::vector::iterator i; for (i=quote.begin(); i!=quote.end(); ) { - SplitString(*i,delimiters,tokens); + Utilities::SplitString(*i,delimiters,tokens); ++i; if (i!=quote.end()) { @@ -749,7 +743,7 @@ void Interpreter::SplitLine ( const std::string& str, std::vector& bbtkDebugMessageInc("Interpreter",9,"Interpreter::SwitchToFile( \"" < script_paths; @@ -1507,10 +1501,10 @@ void Interpreter::Help(const std::vector& words) bbtkDebugDecTab("Interpreter",9); } - //======================================================================= - void Interpreter::Graph(const std::vector& words) - { - std::string page; +//======================================================================= +void Interpreter::Graph(const std::vector& words) +{ + std::string page; bool system_display = true; #ifdef _USE_WXWIDGETS_ @@ -1542,18 +1536,31 @@ void Interpreter::Help(const std::vector& words) page = mExecuter->ShowGraph(words[1],words[2],words[3],words[4],words[5],"",system_display); } else if (words.size()==7) - { - page = mExecuter->ShowGraph(words[1],words[2],words[3],words[4],words[5],words[6],system_display); - } - + { + page = mExecuter->ShowGraph(words[1],words[2],words[3],words[4],words[5],words[6],system_display); + } + #ifdef _USE_WXWIDGETS_ if ( WxConsole::GetInstance() != 0 ) WxConsole::GetInstance()->ShowHtmlPage(page); #endif } - //======================================================================= +//======================================================================= +//======================================================================= +void Interpreter::Index(const std::string& filename, + const std::string& type) +{ + Factory::IndexEntryType t; + if (type=="Initials") t = Factory::Initials; + else if (type=="Keywords") t = Factory::Keywords; + else if (type=="Packages") t = Factory::Packages; + + GetGlobalFactory()->CreateHtmlIndex(t,filename); +} +//======================================================================= + }//namespace