]> Creatis software - bbtk.git/blobdiff - kernel/src/bbtkInterpreter.cxx
no message
[bbtk.git] / kernel / src / bbtkInterpreter.cxx
index 7356fd22d9f09f9321a445d86bbbd799815156b5..99a751447ae18c3cf0be902e357fd4a7dab8c8a3 100644 (file)
@@ -2,8 +2,8 @@
   Program:   bbtk
   Module:    $RCSfile: bbtkInterpreter.cxx,v $
   Language:  C++
-  Date:      $Date: 2008/12/12 12:56:28 $
-  Version:   $Revision: 1.80 $
+  Date:      $Date: 2012/05/30 17:17:00 $
+  Version:   $Revision: 1.92 $
 =========================================================================*/
 
 /* ---------------------------------------------------------------------
@@ -39,6 +39,7 @@
 #include "bbtkMessageManager.h"
 #include "bbtkConfigurationFile.h"
 #include "bbtkUtilities.h"
+#include "bbtkAtomicBlackBox.h"
 #include "bbtkWxBlackBox.h"
 #include <sys/stat.h>
 #include <algorithm>
@@ -55,7 +56,7 @@ namespace bbtk
  //=======================================================================
   Interpreter::Pointer Interpreter::New(const std::string& cpp_file) 
   {
-    bbtkDebugMessage("Kernel",9,"Interpreter::New('"<<cpp_file<<"')"<<std::endl);
+    bbtkDebugMessage("kernel",9,"Interpreter::New('"<<cpp_file<<"')"<<std::endl);
     return MakePointer(new Interpreter(cpp_file));
   }
  //=======================================================================
@@ -63,7 +64,7 @@ namespace bbtk
  //=======================================================================
   Interpreter::Pointer Interpreter::New(VirtualExec::Pointer e) 
   {
-    bbtkDebugMessage("Kernel",9,"Interpreter::New(VirtualExec)"<<std::endl);
+    bbtkDebugMessage("kernel",9,"Interpreter::New(VirtualExec)"<<std::endl);
     return MakePointer(new Interpreter(e));
   }
  //=======================================================================
@@ -71,27 +72,24 @@ namespace bbtk
  //=======================================================================
   Interpreter::Interpreter(const std::string& cpp_file) 
   {
+    bbtkDebugMessage("object",2,"==> Interpreter("<<cpp_file<<")"<<std::endl);
     Init(VirtualExec::Pointer(), cpp_file);
+    bbtkDebugMessage("object",2,"<== Interpreter("<<cpp_file<<")"<<std::endl);
   }
   //=======================================================================
 
  //=======================================================================
   Interpreter::Interpreter(VirtualExec::Pointer e) 
   {
+    bbtkDebugMessage("object",2,"==> Interpreter(VirtualExec)"<<std::endl);
     Init(e,"");
+    bbtkDebugMessage("object",2,"<== Interpreter(VirtualExec)"<<std::endl);
   }
   //=======================================================================
 
   //=======================================================================
   void Interpreter::Init(VirtualExec::Pointer e, const std::string& cpp_file) 
   {
-    mUser = 0;
-    mCommandLine = false;
-    mThrow = false;
-    bufferNb =0;  
-    bbtk::MessageManager::RegisterMessageType("echo","Level>0 : Prints the output of the 'print' commands of the user.\n\tLevel>1 : Prints the command being interpreted",1);
-    bbtk::MessageManager::RegisterMessageType("Interpreter","Messages of the interpreter",0);
-    bbtkDebugMessageInc("Interpreter",9,"Interpreter::Interpreter()" <<std::endl);
     if (e)
       {
        mVirtualExecuter = e;
@@ -107,263 +105,13 @@ namespace bbtk
        mVirtualExecuter = boost::static_pointer_cast<VirtualExec>(exe);
       }
 
+         
+         
     // Lock this pointer or will auto-destruct !!
     if (!e) mVirtualExecuter->SetInterpreter(MakePointer(this,true));
-    
-    // For the time being, comment out previous line, and
-    // uncomment next line to check Transcriptor
-
-    //mVirtualExecuter = new bbtk::Transcriptor("GeneratedProgram.txt");
-
-    // Builds the commands dict
-    CommandInfoType info;
-   
-    info.keyword = "new";
-    info.argmin = 2;
-    info.argmax = 2;
-    info.code = cNew;
-    info.syntax = "new <type> <name>";
-    info.help = "Creates a new black box of type <type> with name <name>";
-    mCommandDict[info.keyword] = info;
-    
-    info.keyword = "delete";
-    info.argmin = 1;
-    info.argmax = 1;
-    info.code = cDelete;
-    info.syntax = "delete <box>";
-    info.help = "Deletes the black box of name <box>";
-    mCommandDict[info.keyword] = info;
-
-    info.keyword = "clear";
-    info.argmin = 0;
-    info.argmax = 0;
-    info.code = cClear;
-    info.syntax = "clear";
-    info.help = "Clears the currently defined complex box (deletes all its boxes and connections)";
-    mCommandDict[info.keyword] = info;
-
-    info.keyword = "newgui";
-    info.argmin = 2;
-    info.argmax = 2;
-    info.code = cNewGUI;
-    info.syntax = "newgui <box> <name>";
-    info.help = "Automatically creates a graphical user interface with name <name> for the black box <box> and connects it to the box inputs";
-    mCommandDict[info.keyword] = info;
-
-    info.keyword = "connect";
-    info.argmin = 2;
-    info.argmax = 2;
-    info.code = cConnect;
-    info.syntax = "connect <box1.output> <box2.input>";
-    info.help = "Connects the ouput <output> of black box <box1> to the input <input> of black box <box2>";
-    mCommandDict[info.keyword] = info;
-
-    info.keyword = "print";
-    info.argmin = 1;
-    info.argmax = 1;
-    info.code = cPrint;
-    info.syntax = "print <string>";
-    info.help = "Prints the string. Substitutes any token of the form '$box.output$' by the string adaptation of the output of the box (requires the right adaptor). No carriage return is issued at the end, use '\\n' to add carriage returns. The level of 'echo' messages must be greater than 1 (see the command 'message').";
-    mCommandDict[info.keyword] = info;
-
-    info.keyword = "exec";
-    info.argmin = 1;
-    info.argmax = 2;
-    info.code = cExec;
-    info.syntax = "exec <box | 'freeze' | 'unfreeze' | 'freeze_no_error' >";
-    info.help = "Executes the black box of name <box> (and connected boxes if needed). If the special keyword 'freeze' is given then freezes any further execution command. 'unfreeze' reverts to normal execution mode. 'freeze_no_error' is like freeze but also skips any error.";
-    mCommandDict[info.keyword] = info;
-
-    info.keyword = "package";
-    info.argmin = 1;
-    info.argmax = 1;
-    info.code = cPackage;
-    info.syntax = "package <name>";
-    info.help = "Begins the definition of a package.";
-    mCommandDict[info.keyword] = info;
-    
-    info.keyword = "endpackage";
-    info.argmin = 0;
-    info.argmax = 0;
-    info.code = cEndPackage;
-    info.syntax = "endpackage";
-    info.help = "Ends the definition of a package.";
-    mCommandDict[info.keyword] = info;
-
-    info.keyword = "define";
-    info.argmin = 1;
-    info.argmax = 2;
-    info.code = cDefine;
-    info.syntax = "define <type> [<package>]";
-    info.help = "Begins the definition of a new type of complex black box called <type>. If <package> is provided will create it in the given package.";
-    mCommandDict[info.keyword] = info;
-    
-    info.keyword = "endefine";
-    info.argmin = 0;
-    info.argmax = 0;
-    info.code = cEndDefine;
-    info.syntax = "endefine";
-    info.help = "Ends the definition of a new type of complex black box";
-    mCommandDict[info.keyword] = info;
-
-    info.keyword = "kind";
-    info.argmin = 1;
-    info.argmax = 1;
-    info.code = cKind;
-    info.syntax = "kind <ADAPTOR|DEFAULT_ADAPTOR|WIDGET_ADAPTOR|DEFAULT_WIDGET_ADAPTOR>";
-    info.help = "Sets the kind of the currently defined complex black box";
-    mCommandDict[info.keyword] = info;
-
-    info.keyword = "input";
-    info.argmin = 3;
-    info.argmax = 3;
-    info.code = cInput;
-    info.syntax = "input <name> <box.input> <help>";
-    info.help = "Defines the input <name> of the current working black box as being an alias for the input <input> of the black box <box>. <help> defines the help string for the newly created input";
-    mCommandDict[info.keyword] = info;
-
-    info.keyword = "output";
-    info.argmin = 3;
-    info.argmax = 3;
-    info.code = cOutput;
-    info.syntax = "output <name> <box.output> <help>";
-    info.help = "Defines the output <name> of the current working black box as being an alias for the output <output> of the black box <box>. <help> defines the help string for the newly created output";
-    mCommandDict[info.keyword] = info;
-
-    info.keyword = "set";
-    info.argmin = 2;
-    info.argmax = 2;
-    info.code = cSet;
-    info.syntax = "set <box.input> <value>";
-    info.help = "Sets the value of the input <input> of the black box <box> to <value>. There must exist a string to the value type adaptor";
-    mCommandDict[info.keyword] = info;
-   
-    info.keyword = "config";  // JPR
-    info.argmin = 0;
-    info.argmax = 0;
-    info.code = cConfig;
-    info.syntax = "config";
-    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 [<filename> ['Initials'(default)|'Packages'|'Categories'|'Adaptors']]";
-    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 'Categories' is provided then the entries are either the packages names or the categories. If 'Adaptors' is provided then an alphabetical index of all adaptors is created.";
-    mCommandDict[info.keyword] = info;
-
-    info.keyword = "reset";  
-    info.argmin = 0;
-    info.argmax = 0;
-    info.code = cReset;
-    info.syntax = "reset";
-    info.help = "Deletes all boxes and unloads all packages (reset to start state)";
-    mCommandDict[info.keyword] = info;
-
-    info.keyword = "author";
-    info.argmin = 1;
-    info.argmax = 1;
-    info.code = cAuthor;
-    info.syntax = "author <string>";
-    info.help = "Adds the string <string> to the author information of the black box being defined";
-    mCommandDict[info.keyword] = info;
-    
-    info.keyword = "category"; //JP
-    info.argmin = 1;
-    info.argmax = 1;
-    info.code = cCategory;
-    info.syntax = "category <list of items, separated by ;>";
-    info.help = "Adds the string <string> to the category information of the black box being defined";
-    mCommandDict[info.keyword] = info;
-
-    info.keyword = "description";
-    info.argmin = 1;
-    info.argmax = 1;
-    info.code = cDescription;
-    info.syntax = "description <string>";
-    info.help = "Adds the string <string> to the descriptive information of the black box being defined";
-    mCommandDict[info.keyword] = info;
-
-    info.keyword = "help";
-    info.argmin = 0;
-    info.argmax = 2;
-    info.code = cHelp;
-    info.syntax = "help";
-    info.syntax = "\n         (1) help \n         (2) help <command name> \n         (3) help packages [all]\n         (4) help <package name> [all]\n         (5) help <black box type> \n         (6) help <black box name>";
-    info.help = "Effect :\n         (1) Lists all available commands;\n         (2) Prints help on a particular command; \n         (3) Lists the packages loaded and their black boxes.\n             Add 'all' to list adaptors; \n         (4) Prints short help on the black boxes of a package.\n             Add 'all' to include adaptors; \n         (5) Prints full help on a black box type; \n         (6) Prints information on the inputs, outputs and connections of a black box instance.";
-    mCommandDict[info.keyword] = info;
-
-    info.keyword = "message";
-    info.argmin = 0;
-    info.argmax = 2;
-    info.code = cMessage;
-    info.syntax = "message <kind> <level>";
-    info.help = "Sets the level of the kind of messages <kind> to <level>.\n  If kind='All' then sets the level for all kinds. If no kind nor level is passed then prints info on available kinds of messages and their current level.";  
-    mCommandDict[info.keyword] = info;
-
-    info.keyword = "include";
-    info.argmin = 1;
-    info.argmax = 2;
-    info.code = cInclude;
-    info.syntax = "include <filename> [source]";
-    info.help = "Includes the file <filename>.\n  'source' : If the keyword 'source' is provided then informs the interpreter that the included file is the source of the current box definition (Advanced; used to get the right 'Include' field in html doc of packages 'appli' scripts).";
-    mCommandDict[info.keyword] = info;
-
-    info.keyword = "quit";
-    info.argmin = 0;
-    info.argmax = 0;
-    info.code = cQuit;
-    info.syntax = "quit";
-    info.help = "Quits the program (during script execution it stops the complete execution)";
-    mCommandDict[info.keyword] = info;
-
-    info.keyword = "load";
-    info.argmin = 1;
-    info.argmax = 1;
-    info.code = cLoad;
-    info.syntax = "load <packagename>";
-    info.help = "Loads the black box package <packagename>";
-    mCommandDict[info.keyword] = info;
-
-    info.keyword = "unload";
-    info.argmin = 1;
-    info.argmax = 1;
-    info.code = cUnload;
-    info.syntax = "unload <packagename>";
-    info.help = "Unloads the black box package <packagename>";
-    mCommandDict[info.keyword] = info;
-
-    info.keyword = "graph";
-    info.argmin = 0;
-    info.argmax = 6;
-    info.code = cGraph;
-    info.syntax = "graph [ BlackBoxName [ Detail 0..1 [ Level 0..99999 [ Output html file [ Custom header [ Custom title ]]]]]] \n         graph [ BlackBoxNameType [ Detail 0..1 [ Level 0..99999 [ Output html file [ Custom header [ Custom title ]]]]]]";
-    info.help = "Shows a graphical view of a bbtk pipeline.\n- BlackBoxName : name of the box to view. Default '.' : current box.\n- BlackBoxNameType : name of the type of box to view, ex : 'workspace')";
-    mCommandDict[info.keyword] = info;
-
-    info.keyword = "debug";
-    info.argmin = 0;
-    info.argmax = 1;
-    info.code = cDebug;
-    info.syntax = "debug [expr|-C|-D]";
-    info.help = "Prints debug info on living bbtk objects containing the string 'expr' (default expr=''). -C checks the factory integrity. -D turns on objects debug info after main ends";
-    mCommandDict[info.keyword] = info;
-
-    /*
-    info.keyword = "workspace";
-    info.argmin = 1;
-    info.argmax = 2;
-    info.code = cWorkspace;
-    info.syntax = "workspace < ( freeze | unfreeze ) | ( rename <newname> ) >";
-    info.help = "Configures the workspace.\n        'freeze' allows to block execution commands while keeping definition commands active. 'unfreeze' turns back the worspace in 'normal' mode.\n      'rename' allow to set a new name to the workspace.";
-    mCommandDict[info.keyword] = info;
-    */
-
-    bbtkDebugDecTab("Interpreter",9);
 
+         
+         bbtk::InterpreterVirtual::Init();
   } 
   //=======================================================================
   
@@ -375,25 +123,28 @@ namespace bbtk
    */
   Interpreter::~Interpreter()
   {
-    bbtkDebugMessageInc("Interpreter",9,"==> Interpreter::~Interpreter()" <<std::endl);
+    bbtkDebugMessage("object",2,"==> ~Interpreter()" <<std::endl);
     mVirtualExecuter = VirtualExec::Pointer();
-    bbtkDebugMessageInc("Interpreter",9,"<== Interpreter::~Interpreter()" <<std::endl);
+    bbtkDebugMessage("object",2,"<== ~Interpreter()" <<std::endl);
   }
   //=======================================================================
 
-
-  InterpreterError::InterpreterError( const std::string& message,
+/*EED Borrame
+  //=======================================================================
+  InterpreterException::InterpreterException( const std::string& message,
                                      bool in_script_file,
                                      const std::string& script_file,
                                      int script_line 
                                      )
-    : Exception("Interpreter",0,message),
+    : Exception("interpreter",0,message),
       mInScriptFile(in_script_file),
       mScriptFile(script_file),
       mScriptLine(script_line)
   {
   }
-  InterpreterError::InterpreterError( const Exception& excep,
+  //=======================================================================
+  //=======================================================================
+  InterpreterException::InterpreterException( const Exception& excep,
                      bool in_script_file,
                      const std::string& script_file,
                      int script_line 
@@ -405,251 +156,197 @@ namespace bbtk
   {
   }
   //=======================================================================
-  void Interpreter::CatchInterpreterException( const InterpreterError& e )
+*/
+
+  //=======================================================================
+  void Interpreter::CatchInterpreterException( const InterpreterException& e )
   {
-    if (mThrow) 
-      {
-       CloseAllFiles();
-       throw InterpreterError(e);
-      }
-    else
+    if (GetExecuter()->GetNoErrorMode()) 
       {
-       std::stringstream mess;
-       mess << "* ERROR : "<<e.GetErrorMessage()<<std::endl;
-       if (e.IsInScriptFile())
-         {
-           mess << "* FILE  : \""<<e.GetScriptFile()<<"\""<<std::endl;
-           mess << "* LINE  : "<<e.GetScriptLine()<<std::endl;
-         }
-       std::cerr << mess.str();
+       bbtkWarning("ERROR :"<<e.GetErrorMessage()
+                   <<" ("<<e.GetScriptFile()<<":"<<e.GetScriptLine()
+                   <<" skipped");
+
+       return;
       }
+         
+         bbtk::InterpreterVirtual::CatchInterpreterException(  e );      
   }
   //=======================================================================
 
   //=======================================================================
   void Interpreter::CatchBbtkException( const bbtk::Exception& e )
   {
-    if (mThrow
+    if (GetExecuter()->GetNoErrorMode()
       {
-       bool in_script = false;
-       std::string file("");
+       std::string file("?");
        int line = 0;
        if (mFileName.size()) {
-         std::ifstream* fs = dynamic_cast<std::ifstream*>(mFile.back());
-         if (fs!=0) in_script = true;    
          file = mFileName.back();
          line = mLine.back();
-       }   
-       CloseAllFiles();
-       throw InterpreterError(e,in_script,file,line);
-      }
-    else
-      {
-       std::stringstream mess;
-       mess << "* ERROR : "<<e.GetErrorMessage()<<std::endl;
-       if (mFileName.size()) {
-         mess << "* FILE  : \""<<mFileName.back()<<"\""<<std::endl;
-         mess << "* LINE  : "<<mLine.back()<<std::endl;
        }    
-       std::cerr << mess.str();
+       bbtkWarning("ERROR '"<<e.GetErrorMessage()
+                   <<"' ("<<file<<":"<<line<<") skipped");
+       
+       return;
       }
+         
+         bbtk::InterpreterVirtual::CatchBbtkException(  e );     
   }
   //=======================================================================
   
   //=======================================================================
   void Interpreter::CatchStdException( const std::exception& e )
   {  
-    if (mThrow) 
-      {
-       bool in_script = false;
-       std::string file("");
-       int line = 0;
-       if (mFileName.size()) {
-         std::ifstream* fs = dynamic_cast<std::ifstream*>(mFile.back());
-         if (fs!=0) in_script = true;    
-         file = mFileName.back();
-         line = mLine.back();
-       }    
-       CloseAllFiles();
-       throw InterpreterError(e.what(),in_script,file,line);
-      }
-    else
-      {
-       std::stringstream mess;
-       mess << "* ERROR : "<<e.what()<<std::endl;
-       if (mFileName.size()) {
-         mess << "* FILE  : \""<<mFileName.back()<<"\""<<std::endl;
-         mess << "* LINE  : "<<mLine.back()<<std::endl;
-       }    
-       std::cerr << mess.str();
+       if (GetExecuter()->GetNoErrorMode()) 
+       {
+               std::string file("?");
+               int line = 0;
+               if (mFileName.size()) 
+               {
+                       file = mFileName.back();
+                       line = mLine.back();
+               }    
+               bbtkWarning("ERROR '"<<e.what() <<"' ("<<file<<":"<<line<<") skipped");
+               return;
       }
+         bbtk::InterpreterVirtual::CatchStdException(  e );      
   }
   //=======================================================================
 
   //=======================================================================
   void Interpreter::CatchUnknownException()
   {
-    if (mThrow) 
-      {
-       bool in_script = false;
-       std::string file("");
-       int line = 0;
-       if (mFileName.size()) {
-         std::ifstream* fs = dynamic_cast<std::ifstream*>(mFile.back());
-         if (fs!=0) in_script = true;    
-         file = mFileName.back();
-         line = mLine.back();
-       }    
-       CloseAllFiles();
-       throw InterpreterError("Unknown exception caught",
-                                  in_script,file,line);
-      }
-    else
-      {
-       std::stringstream mess;
-       mess << "* UNDEFINED ERROR (not a bbtk nor a std exception)" 
-            << std::endl;
-       if (mFileName.size()) {
-         mess << "* FILE  : \""<<mFileName.back()<<"\""<<std::endl;
-         mess << "* LINE  : "<<mLine.back()<<std::endl;
-       }    
-       std::cerr << mess.str();
-      }
+       if (GetExecuter()->GetNoErrorMode()) 
+       {
+               std::string file("?");
+               int line = 0;
+               if (mFileName.size()) 
+               {
+                       file = mFileName.back();
+                       line = mLine.back();
+               }  
+               bbtkWarning("UNDEFINED ERROR " <<"("<<file<<":"<<line<<") skipped");
+               return;
+       }
+
+         bbtk::InterpreterVirtual::CatchUnknownException( );     
   }
   //=======================================================================
 
   //=======================================================================
-
-#define CATCH_MACRO                            \
-  catch (QuitException e)                      \
-    {                                          \
-      status = Interpreter_QUIT;               \
-      if (mThrow) throw QuitException();       \
-    }                                          \
-  catch (InterpreterError e)                   \
-    {                                          \
-      status = Interpreter_ERROR;              \
+  
+#define CATCH_MACRO                                    \
+  catch (InterpreterException e)                       \
+    {                                                  \
       CatchInterpreterException(e);                    \
-    }                                          \
-  catch (bbtk::Exception e)                    \
-    {                                          \
-      status = Interpreter_ERROR;              \
-      CatchBbtkException(e);                   \
-    }                                          \
-  catch (std::exception& e)                    \
-    {                                          \
-      status = Interpreter_ERROR;              \
-      CatchStdException(e);                    \
-    }                                          \
-  catch (...)                                  \
-    {                                          \
-      status = Interpreter_ERROR;              \
-      CatchUnknownException();                 \
+    }                                                  \
+  catch (bbtk::Exception e)                            \
+    {                                                  \
+      CatchBbtkException(e);                           \
+    }                                                  \
+  catch (std::exception& e)                            \
+    {                                                  \
+      CatchStdException(e);                            \
+    }                                                  \
+  catch (...)                                          \
+    {                                                  \
+      CatchUnknownException();                         \
     }                                          
   //=======================================================================
    
-
+/*EED Borrame
   //=======================================================================
-  /**
-   *  
-   */
   Interpreter::ExitStatus Interpreter::InterpretFile( const std::string& filename, bool source )
   {
-    bbtkDebugMessageInc("Interpreter",9,"Interpreter::InterpretFile(\""<<filename<<"\")"<<std::endl);
+    bbtkDebugMessage("interpreter",4,"==> Interpreter::InterpretFile(\""<<filename<<"\")"<<std::endl);
 
     bool exm = mCommandLine;
     mCommandLine = false;
 
-    ExitStatus status = Interpreter_OK;
-
     try 
     {
+      mStatus = Interpreter_OK;
       SwitchToFile(filename,source);
-
-      bool insideComment = false; // for multiline comment
-      while (mFile.size()>0) 
-      {
-       while (!mFile.back()->eof()) {
-         mLine.back()++;
-         char buf[500];
-         mFile.back()->getline(buf,500);
-         std::string str(buf);
-         int size=str.length();
-         if ( str[ size-1 ]==13  )
-            {
-             str.erase(size-1,1);
-            }
-         try
-           {
-             InterpretLine(str, insideComment);
-           }
-         CATCH_MACRO;
-         
-       }//while !eof
-       CloseCurrentFile();
-      }//while >0
-    } // try
+      mInsideComment = false;
+      InterpretCurrentStreams();
+    } 
     CATCH_MACRO;
     
-    CloseAllFiles();
-    bbtkDebugMessage("Interpreter",9,"EO Interpreter::InterpretFile(\""<<filename<<"\")"<<std::endl);
-    bbtkDecTab("Interpreter",9);
+    bbtkDebugMessage("interpreter",4,
+                    "<== Interpreter::InterpretFile(\""
+                    <<filename<<"\")"<<std::endl);
+
 
     mCommandLine = exm;
     
-    return status;
+    return mStatus;
   }
   //=======================================================================
 
 
   //=======================================================================
-  /**
-   *  
-   */
   Interpreter::ExitStatus 
   Interpreter::InterpretBuffer( std::stringstream* buffer )
   {
-    bbtkDebugMessageInc("Interpreter",9,"Interpreter::InterpretBuffer()"<<std::endl);
+    bbtkDebugMessage("interpreter",4,"==> Interpreter::InterpretBuffer()"<<std::endl);
 
     bool exm = mCommandLine;
     mCommandLine = false;
 
-    ExitStatus status = Interpreter_OK;
-
     try 
     {
+      mStatus = Interpreter_OK;
       SwitchToStream(buffer);
-      bool insideComment = false; // for multiline comment
-      while (mFile.size()>0) 
+      mInsideComment = false;
+      InterpretCurrentStreams();
+    }
+    CATCH_MACRO;
+    
+    //    CloseAllFiles();
+    bbtkDebugMessage("interpreter",4,"<== Interpreter::InterpretBuffer()"<<std::endl);
+
+    
+    mCommandLine = exm;
+    return mStatus;
+  }
+  //=======================================================================
+
+  //=======================================================================
+  /// Interprets the currently open streams
+  Interpreter::ExitStatus Interpreter::InterpretCurrentStreams()
+  {
+    bbtkDebugMessage("interpreter",4,
+                    "==> Interpreter::InterpretCurrentStreams()"<<std::endl);
+
+    while (mFile.size()>0) 
       {
        while (!mFile.back()->eof()) {
          mLine.back()++;
          char buf[500];
          mFile.back()->getline(buf,500);
          std::string str(buf);
-         
+         //size 0 JCP 21-09-2009
          int size=str.length();
-         if ( str[ size-1 ]==13  )
+         if(size != 0){
+                 if ( str[ size-1 ]==13  )
             {
              str.erase(size-1,1);
             }
-         try
-           {
-             InterpretLine(str, insideComment);
-           }
-         CATCH_MACRO;
-       }//while
+                 try
+                       {
+                         DoInterpretLine(str);
+                       }
+                 CATCH_MACRO;
+         }
+         
+       } 
        CloseCurrentFile();
       }
-    }
-    CATCH_MACRO;
-    
-    CloseAllFiles();
-    bbtkDebugMessage("Interpreter",9,"EO Interpreter::InterpretBuffer()"<<std::endl);
-    bbtkDecTab("Interpreter",9);
-    
-    mCommandLine = exm;
-    return status;
+    bbtkDebugMessage("interpreter",4,
+                    "<== Interpreter::InterpretCurrentStreams()"<<std::endl);
+
+    return mStatus;
   }
   //=======================================================================
 
@@ -657,307 +354,524 @@ namespace bbtk
   /// Runs the interpretation of a command
   Interpreter::ExitStatus Interpreter::InterpretLine( const std::string& line )
   {
-    bbtkDebugMessageInc("Interpreter",9,"Interpreter::InterpretLine('"<<line<<"')"<<std::endl);
-
-    ExitStatus status = Interpreter_OK;
+    bbtkDebugMessage("interpreter",5,"==> Interpreter::InterpretLine('"<<line<<"')"<<std::endl);
 
     try 
     {
-      bool insideComment = false;
-      InterpretLine(line, insideComment);
+      mStatus = Interpreter_OK;
+      mInsideComment = false;
+//std::cout<<"JCP bbtkInterpreter.cxx Interpreter::InterpretLine("<<std::endl;
+      DoInterpretLine(line );
     }
     CATCH_MACRO;
-  
-
-    bbtkDebugMessage("Interpreter",9,"EO Interpreter::InterpretLine()"
-                    <<std::endl);
-    bbtkDecTab("Interpreter",9);
     
-    return status;
+    
+   bbtkDebugMessage("interpreter",5,"<== Interpreter::InterpretLine('"<<line<<"')"<<std::endl);
+    
+    return mStatus;
   }
-  
-
   //=======================================================================  
-  /**
-   *
-   */
-void Interpreter::InterpretLine( const std::string& line, bool &insideComment )
-{
-    bbtkDebugMessageInc("Interpreter",9,"Interpreter::InterpretLine(\""<<line<<"\")"<<std::endl);
+*/
+       
+       
+       void Interpreter::commandNew(const std::string &boxType,const  std::string &boxName)  //virtual
+    {
+               mVirtualExecuter->Create(boxType,boxName);
+    }
+       
+       void Interpreter::commandDelete(const std::string &boxName)  //virtual
+    {
+               mVirtualExecuter->Destroy(boxName);
+    }
+
+       void Interpreter::commandConnection(const std::string &nodeFrom,const  std::string &outputLabel,const  std::string &nodeTo,const  std::string &inputLabel) //virtual
+    {
+               mVirtualExecuter->Connect(nodeFrom,outputLabel,nodeTo,inputLabel);
+    }
+               
+       void Interpreter::commandPackage(const std::string &packageName) //virtual
+    {
+               mVirtualExecuter->BeginPackage(packageName);
+    }
+       
+       void Interpreter::commandEndPackage() //virtual
+    {
+               mVirtualExecuter->EndPackage();
+    }
+       
+       void Interpreter::commandDefine(const std::string &name,const  std::string &pack,const  std::string &scriptfilename) //virtual
+    {
+               mVirtualExecuter->Define(name,pack,scriptfilename);
+    }
+
+       void Interpreter::commandEndDefine() //virtual
+    {
+               mVirtualExecuter->EndDefine();
+    }
 
+       void Interpreter::commandKind(const std::string &kind) //virtual
+    {
+               mVirtualExecuter->Kind(kind);
+    }
+       
+       void Interpreter::commandPrint(const std::string &value) //virtual
+    {
+               mVirtualExecuter->Print(value);
+    }
+       
+       
+       void Interpreter::commandExec(const std::string &word) //virtual
+    {
+               if (word=="freeze") 
+               {
+                       mVirtualExecuter->SetNoExecMode(true);
+                       mThrow = false;
+               }
+               else if (word=="freeze_no_error") 
+               {
+                       mVirtualExecuter->SetNoExecMode(true);
+                       mVirtualExecuter->SetNoErrorMode(true);
+                       mThrow = false;
+               }
+               else if (word=="unfreeze") 
+               {
+                       mVirtualExecuter->SetNoExecMode(false);
+                       mVirtualExecuter->SetNoErrorMode(false);
+               }
+               else
+               {
+                       mVirtualExecuter->Execute(word);
+               } // if
+    }
+       
+       
+       void Interpreter::commandInput(const std::string &name,const std::string &box,const std::string &input,const std::string  &help) //virtual
+    {
+               mVirtualExecuter->DefineInput(name,box,input,help);
+    }
+       
+       void Interpreter::commandOutput(const std::string &name,const std::string &box,const std::string &output,const std::string  &help) //virtual
+    {
+               mVirtualExecuter->DefineOutput(name,box,output,help);
+    }
+       
+       void Interpreter::commandSet(const std::string &box,const std::string &input,const std::string &value) //virtual
+    {
+               mVirtualExecuter->Set(box,input,value);
+    }
+
+       void Interpreter::commandAuthor(const std::string &author) //virtual
+    {
+               mVirtualExecuter->Author(author);
+    }
+
+       void Interpreter::commandCategory(const std::string &categorytype) //virtual
+    {
+               mVirtualExecuter->Category(categorytype);
+    }
+       
+       void Interpreter::commandDescription(const std::string &description) //virtual
+    {
+               mVirtualExecuter->Description(description);
+    }
+
+       
+       void Interpreter::commandClear() //virtual
+    {
+               mVirtualExecuter->Clear();
+    }
+       
+       void Interpreter::commandInclude(const std::string &word, bool ok) //virtual
+    {
+               // if 'source' was given (words.size()==3) then tell to set the 
+               // source file name of the current complex box with the full file name included
+               if (mCommandLine)
+               {
+                       InterpretFile(word, ok ); 
+               }
+               else
+               {
+                       SwitchToFile(word , ok );
+               }
+    }
+       
+       
+       void Interpreter::commandLoad(const std::string &packageName) //virtual
+    {
+               printf("EED Interpreter::commandLoad %s\n", packageName.c_str());
+               GetExecuter()->LoadPackage(packageName);
+    }
+
+       void Interpreter::commandUnload(const std::string &packageName) //virtual
+    {
+               GetExecuter()->UnLoadPackage(packageName);
+    }
+       
+       void Interpreter::commandBreak() //virtual
+    {
+           /*
+                std::cout << "BreakException(" 
+                <<in_script<<","
+                <<file<<","
+                <<line<<")"<<std::endl;
+                */
+               bbtkError("break");//,in_script,file,line);
+           //      throw BreakException(in_script,file,line);
+    }
+       
+       void Interpreter::commandQuit() //virtual
+    {
+               bbtkError("quit");//,in_script,file,line);
+               //throw QuitException(in_script,file,line);
+    }
+       
+       void Interpreter::commandMessage() //virtual
+    {
+               mVirtualExecuter->HelpMessages();
+    }
+       
+       void Interpreter::commandMessage(const std::string &kind,const std::string &levelstr) //virtual
+    {
+               int level=0;
+               sscanf(levelstr.c_str(),"%d",&level);
+               mVirtualExecuter->SetMessageLevel(kind,level);
+
+    }
+       
+       
+/*EED Borrame  
+  //=======================================================================  
+  void Interpreter::DoInterpretLine( const std::string& line ) //virtual
+   {
+    bbtkDebugMessage("interpreter",6,"==> Interpreter::DoInterpretLine(\""
+                    <<line<<"\")"<<std::endl);
     std::vector<std::string> words;
     SplitLine(line,words);
 
     // Empty line
     if (words.size()<1) 
     {
-       bbtkDebugDecTab("Interpreter",9);
+       bbtkDebugDecTab("interpreter",9);
        return;
     }
 
     // Single line comment : # or //
     if ( words[0][0]=='#' || (words[0][0]=='/' && words[0][1]=='/') ) 
     {  
-       bbtkDebugDecTab("Interpreter",9);
-       bbtkMessage("Interpreter",9,"Comment"<<std::endl);
+       bbtkDebugDecTab("interpreter",9);
+       bbtkMessage("interpreter",9,"Comment"<<std::endl);
        return;
     }
 
-    // Multi line comment ( /* ... */ ) -delimiters on different lines !-
+    // Multi line comment ( / * ... * / ) -delimiters on different lines !-   <<<<<<<  / *     * /
     
     if (words[0][0]=='/' && words[0][1]=='*') 
     {  
-       bbtkDebugDecTab("Interpreter",9);
-       bbtkMessage("Interpreter",9,"In multiline comment"<<std::endl);
-       insideComment = true;
+       bbtkDebugDecTab("interpreter",9);
+       bbtkMessage("interpreter",9,"In multiline comment"<<std::endl);
+       mInsideComment = true;
        return;
     }
 
     if (words[0][0]=='*' && words[0][1]=='/') 
     {  
-       bbtkDebugDecTab("Interpreter",9);
-       bbtkMessage("Interpreter",9,"Out multiline comment"<<std::endl);
-       if ( !insideComment ) {
-          bbtkDebugDecTab("Interpreter",9);
-          bbtkMessage("Interpreter",9,"Comment mismatch : '*/' with no matching '/*'"<<std::endl);       
+       bbtkDebugDecTab("interpreter",9);
+       bbtkMessage("interpreter",9,"Out multiline comment"<<std::endl);
+       if ( !mInsideComment ) {
+          bbtkDebugDecTab("interpreter",9);
+          bbtkMessage("interpreter",9,"Comment mismatch : '* /' with no matching '/ *'"<<std::endl);        <<<<<<<<< * /       / * 
        }
-       insideComment = false;
+       mInsideComment = false;
        return;
     }
 
-    if (insideComment) 
+    if (mInsideComment) 
     {  
-       bbtkDebugDecTab("Interpreter",9);
-       bbtkMessage("Interpreter",9,"Multiline Comment"<<std::endl);
+       bbtkDebugDecTab("interpreter",9);
+       bbtkMessage("interpreter",9,"Multiline Comment"<<std::endl);
        return;
     }
 
     // Command 
     CommandInfoType command;
     InterpretCommand(words,command);
-
-    bbtkDebugMessage("Interpreter",9,
+//std::cout<<"JCP bbtkInterpreter command.keyword ="<<command.keyword<<std::endl;
+    bbtkDebugMessage("interpreter",9,
                      "Command='"<<command.keyword
                       <<"' code="<<command.code<<std::endl); 
-    int level=0;
+         
     std::string left,right,left2,right2;
     std::string filename;
+
+//ups1 EED borrame       
+    // message command
     if (command.code==cMessage)
       {
        if (words.size()<3)
          {
-           mVirtualExecuter->HelpMessages();
+                 commandMessage();
+//EED Borrame      mVirtualExecuter->HelpMessages();
          }
         else
          {
-           sscanf(words[2].c_str(),"%d",&level);
-           mVirtualExecuter->SetMessageLevel(words[1],level);
+               commandMessage(words[1],words[2]);
+//EED Borrame          sscanf(words[2].c_str(),"%d",&level);
+//EED Borrame      mVirtualExecuter->SetMessageLevel(words[1],level);
          }
+       return;
       }
     else 
       {
        bbtkMessage("echo",2,line<<std::endl);
       }
 
+    // break and quit commands
+    if ((command.code==cBreak) || (command.code==cQuit))
+      {
+       bool in_script = false;
+       std::string file("");
+       int line = 0;
+
+       if (mFileName.size()) 
+         {
+           std::ifstream* fs = dynamic_cast<std::ifstream*>(mFile.back());
+           if (fs!=0) in_script = true;          
+           file = mFileName.back();
+           line = mLine.back();
+         } 
+       if (command.code==cBreak)
+         {
+//         std::cout << "BreakException(" 
+//                   <<in_script<<","
+//                   <<file<<","
+//                   <<line<<")"<<std::endl;
+                 commandBreak();
+//EED Borrame      bbtkError("break");//,in_script,file,line);
+           //      throw BreakException(in_script,file,line);
+         }       
+       else 
+         {
+                 commandQuit();
+//EED Borrame      bbtkError("quit");//,in_script,file,line);
+             //throw QuitException(in_script,file,line);
+         }
+       return;
+      }   
+//std::cout<<" mVirtualExecuter->Create(words[1],words[2]); "<<line<<std::endl;
+    // other cammands
+
     switch (command.code) 
-    {
-      case cMessage : 
-      
-        break;
+      {
       case cNew :
-        mVirtualExecuter->Create(words[1],words[2]);
+               commandNew(words[1],words[2]);
+//EED Borrame        mVirtualExecuter->Create(words[1],words[2]);
         break;
 
       case cDelete :
-       mVirtualExecuter->Destroy(words[1]);
+                         commandDelete(words[1]);
+//EED Borrame  mVirtualExecuter->Destroy(words[1]);
         break;
 
       case cConnect :
         Utilities::SplitAroundFirstDot(words[1],left,right);
         Utilities::SplitAroundFirstDot(words[2],left2,right2);      
-        mVirtualExecuter->Connect(left,right,left2,right2);
+        commandConnection(left,right,left2,right2);
+//EED Borrame        mVirtualExecuter->Connect(left,right,left2,right2);
         break;
 
       case cPackage :
-        mVirtualExecuter->BeginPackage(words[1]);
+                         commandPackage(words[1]);
+//EED Borrame                mVirtualExecuter->BeginPackage(words[1]);
         break;
 
       case cEndPackage :
-        mVirtualExecuter->EndPackage();
+                         commandEndPackage();
+//EED Borrame        mVirtualExecuter->EndPackage();
         break;
 
       case cDefine :
         if (mFileName.size()>0) 
         {
+//???                  commandDefine(????);
                   filename = mFileName.back(); //mIncludeFileName.back(); //Utilities::get_file_name(mFileName.back());
         }
         if (words.size()==2) 
         {
-           mVirtualExecuter->Define(words[1],"",filename);
+                       commandDefine(words[1],"",filename);
+//EED Borrame           mVirtualExecuter->Define(words[1],"",filename);
         }
         else
         {
-           mVirtualExecuter->Define(words[1],words[2],filename);
+                       commandDefine(words[1],words[2],filename);
+//EED Borrame           mVirtualExecuter->Define(words[1],words[2],filename);
         }
         break;
 
       case cEndDefine :
-        mVirtualExecuter->EndDefine();
+               commandEndDefine();
+//EED Borrame        mVirtualExecuter->EndDefine();
         break;
 
       case cKind :
-        mVirtualExecuter->Kind(words[1]);
+                       commandKind(words[1]);
+//EED Borrame        mVirtualExecuter->Kind(words[1]);
         break;
 
       case cPrint :
-        mVirtualExecuter->Print(words[1]);
+                         commandPrint(words[1]);
+//EED Borrame        mVirtualExecuter->Print(words[1]);
         break;
-        
+                         
       case cExec :
-        if (words[1]=="freeze") 
-         {
-           mVirtualExecuter->SetNoExecMode(true);
-           mThrow = false;
-         }
-       else if (words[1]=="freeze_no_error ") 
-         {
-           mVirtualExecuter->SetNoExecMode(true);
-           mVirtualExecuter->SetNoErrorMode(true);
-           mThrow = false;
-         }
-       else if (words[1]=="unfreeze") 
-         {
-           mVirtualExecuter->SetNoExecMode(false);
-           mVirtualExecuter->SetNoErrorMode(false);
-         }
-       else
-         {
-           mVirtualExecuter->Execute(words[1]);
-         }
+                         commandExec(words[1]);
+//EED Borrame        if (words[1]=="freeze") 
+//EED Borrame    {
+//EED Borrame      mVirtualExecuter->SetNoExecMode(true);
+//EED Borrame      mThrow = false;
+//EED Borrame    }
+//EED Borrame  else if (words[1]=="freeze_no_error") 
+//EED Borrame    {
+//EED Borrame      mVirtualExecuter->SetNoExecMode(true);
+//EED Borrame      mVirtualExecuter->SetNoErrorMode(true);
+//EED Borrame      mThrow = false;
+//EED Borrame    }
+//EED Borrame  else if (words[1]=="unfreeze") 
+//EED Borrame    {
+//EED Borrame      mVirtualExecuter->SetNoExecMode(false);
+//EED Borrame      mVirtualExecuter->SetNoErrorMode(false);
+//EED Borrame    }
+//EED Borrame  else
+//EED Borrame    {
+//EED Borrame      mVirtualExecuter->Execute(words[1]);
+//EED Borrame    }
+                         
         break;
 
       case cInput :
         Utilities::SplitAroundFirstDot(words[2],left,right);
-        mVirtualExecuter->DefineInput(words[1],left,right,words[3]);
+                         commandInput(words[1],left,right,words[3]);
+//EED Borrame        mVirtualExecuter->DefineInput(words[1],left,right,words[3]);
         break;
 
       case cOutput :
         Utilities::SplitAroundFirstDot(words[2],left,right);
-        mVirtualExecuter->DefineOutput(words[1],left,right,words[3]);
+               commandOutput(words[1],left,right,words[3]);
+//EED Borrame         mVirtualExecuter->DefineOutput(words[1],left,right,words[3]);
         break;
 
       case cSet :
         Utilities::SplitAroundFirstDot(words[1],left,right);
-        mVirtualExecuter->Set(left,right,words[2]);
+               commandSet(left,right,words[2]);
+//EED Borrame        mVirtualExecuter->Set(left,right,words[2]);
         break;
 
       case cAuthor :
-        mVirtualExecuter->Author(words[1]);
+               commandAuthor(words[1]);
+//EED Borrame        mVirtualExecuter->Author(words[1]);
         break;
 
       case cNewGUI :
-        NewGUI(words[1],words[2]);
+               commandNewGUI(words[1],words[2]);
         break;
 
       case cCategory :
-        mVirtualExecuter->Category(words[1]);
+               commandCategory(words[1]);
+//EED Borrame   mVirtualExecuter->Category(words[1]);
         break;
 
       case cIndex :
         if (words.size()==1)
-            Index("tmp_index.html");
+                       commandIndex("tmp_index.html");
         else if (words.size()==2)
-            Index(words[1]);
+                       commandIndex(words[1]);
         else if (words.size()==3)
-            Index(words[1],words[2]);
+                       commandIndex(words[1],words[2]);
         break;
 
       case cDescription :
-        mVirtualExecuter->Description(words[1]);
+               commandDescription(words[1]);
+//EED Borrame        mVirtualExecuter->Description(words[1]);
         break;
 
       case cHelp :
-        Help(words);
+        commandHelp(words);
         break;
 
 
       case cGraph :
-        Graph(words);
+        commandGraph(words);
         break;
 
       case cConfig :
-        Config();
+        commandConfig();
         break;
 
       case cReset :  
-       Reset();
+       commandReset();
         break;
-
-     case cClear :  
-       mVirtualExecuter->Clear();
+       
+      case cClear :  
+               commandClear();
+//EED Borrame          mVirtualExecuter->Clear();
         break;
 
       case cInclude :
-               // if 'source' was given (words.size()==3) then tell to set the 
-               // source file name of the current complex box with the full file name included
-               if (mCommandLine)
-        {
-           InterpretFile(words[1],(words.size()==3)); 
-        }
-        else
-        {
-            SwitchToFile(words[1],(words.size()==3) );
-        }
+                         commandInclude( words[1] , (words.size()==3) );
+//EED Borrame          // if 'source' was given (words.size()==3) then tell to set the 
+//EED Borrame          // source file name of the current complex box with the full file name included
+//EED Borrame                  if (mCommandLine)
+//EED Borrame        {
+//EED Borrame           InterpretFile(words[1],(words.size()==3)); 
+//EED Borrame        } else{
+//EED Borrame            SwitchToFile(words[1],(words.size()==3) );
+//EED Borrame        }
                break;
 
       case cLoad:
-        GetExecuter()->LoadPackage(words[1]);
+               commandLoad( words[1] );
+//EED Borrame        GetExecuter()->LoadPackage(words[1]);
         break;
 
       case cUnload:
-        GetExecuter()->UnLoadPackage(words[1]);
-        break;
-
-      case cQuit :
-        throw QuitException();
+               commandUnload( words[1] );
+//EED Borrame        GetExecuter()->UnLoadPackage(words[1]);
         break;
 
       case cDebug :
-       if (words.size()==2) Debug(words[1]);
-       else Debug("");
+                         if (words.size()==2) commandDebug(words[1]);
+                               else commandDebug("");
         break;
-       /* obsolete
-      case cWorkspace :
-        if (words.size() == 2) 
-        {
-           if (words[1]=="freeze")        mVirtualExecuter->SetNoExecMode(true);
-           else if (words[1]=="unfreeze") mVirtualExecuter->SetNoExecMode(false);
-        }
-        else
-        {
-           mVirtualExecuter->SetWorkspaceName(words[2]);
-        }
-        break;
-        */
-      default:
+                         
+       // obsolete
+    //  case cWorkspace :
+    //    if (words.size() == 2) 
+    //    {
+    //       if (words[1]=="freeze")        mVirtualExecuter->SetNoExecMode(true);
+    //       else if (words[1]=="unfreeze") mVirtualExecuter->SetNoExecMode(false);
+    //    }
+    //    else
+    //    {
+    //       mVirtualExecuter->SetWorkspaceName(words[2]);
+    //    }
+    //    break;
+
+               default:
         bbtkInternalError("should not reach here !!!");
    }
 
-   bbtkDecTab("Interpreter",9);
-}
+    bbtkDebugMessage("interpreter",6,"<== Interpreter::DoInterpretLine(\""
+                    <<line<<"\")"<<std::endl);
+    
+  }
   //=======================================================================  
 
 
 
 
-
   //=======================================================================
-  /**
-   *
-   */
-void Interpreter::SplitLine ( const std::string& str, std::vector<std::string>& tokens)
+  void Interpreter::SplitLine ( const std::string& str, std::vector<std::string>& tokens)
 {
-    bbtkDebugMessageInc("Interpreter",9,"Interpreter::SplitLine(\""<<str<<"\")"<<std::endl);
+    bbtkDebugMessage("interpreter",9,"==> Interpreter::SplitLine(\""<<str<<"\")"<<std::endl);
 
     std::string delimiters = "\"";
     std::vector<std::string> quote;
@@ -971,7 +885,7 @@ void Interpreter::SplitLine ( const std::string& str, std::vector<std::string>&
        ++i;
        if (i!=quote.end()) 
        {
-        //    bbtkDebugMessage("Interpreter",0,"\""<<*i<<"\""<<std::endl);
+        //    bbtkDebugMessage("interpreter",0,"\""<<*i<<"\""<<std::endl);
           tokens.push_back(*i);
           ++i;
        }
@@ -979,20 +893,20 @@ void Interpreter::SplitLine ( const std::string& str, std::vector<std::string>&
 
     for (i=tokens.begin(); i!=tokens.end(); ++i) 
     {
-       bbtkDebugMessage("Interpreter",9,"["<<*i<<"] ");
+      bbtkDebugMessage("interpreter",9,"--["<<*i<<"]"<<std::endl);
     }
-    bbtkDebugMessageCont("Interpreter",9,std::endl);
+    bbtkDebugMessage("interpreter",9,"<== Interpreter::SplitLine(\""<<str<<"\")"<<std::endl);
 
-    bbtkDebugDecTab("Interpreter",9);
  }
   //=======================================================================
+*/
 
 
   //=======================================================================
-  void Interpreter::Reset()
+  void Interpreter::commandReset()  // virtual
   {
     // Cannot close all files if the reset command is read from a file !
-    //    CloseAllFiles();
+    CloseAllFiles();
     mFileNameHistory.clear();
     this->mVirtualExecuter->Reset();
   }
@@ -1007,7 +921,7 @@ void Interpreter::SplitLine ( const std::string& str, std::vector<std::string>&
   {
     if (mVirtualExecuter->GetNoExecMode()) return;
 
-    bbtkDebugMessageInc("Interpreter",9,"Interpreter::Print(\""<<str<<"\")"<<std::endl);
+    bbtkDebugMessageInc("interpreter",9,"Interpreter::Print(\""<<str<<"\")"<<std::endl);
 
  // TO DO :
  // InterpretLine ("load std")
@@ -1069,7 +983,7 @@ void Interpreter::SplitLine ( const std::string& str, std::vector<std::string>&
        std::cout << *i;
      }
      std::cout << std::endl;
-     bbtkDebugDecTab("Interpreter",9);
+     bbtkDebugDecTab("interpreter",9);
  }
 */
 
@@ -1077,7 +991,7 @@ void Interpreter::SplitLine ( const std::string& str, std::vector<std::string>&
   /**
    *
    */
-
+/*EED Borrame
   // =========================================================================
   void Interpreter::SwitchToFile( const std::string& name , bool source )
   {
@@ -1091,8 +1005,8 @@ void Interpreter::SplitLine ( const std::string& str, std::vector<std::string>&
   // use ./directory/subdir/scrname.bbs
   //
 
-    bbtkDebugMessageInc("Interpreter",9,"Interpreter::SwitchToFile( \""
-                         <<name<<"\")"<<std::endl);
+    bbtkDebugMessage("interpreter",4,"==> Interpreter::SwitchToFile( \""
+                    <<name<<"\")"<<std::endl);
 
     std::vector<std::string> script_paths;
     std::string fullPathScriptName;  // full path script name
@@ -1102,7 +1016,7 @@ void Interpreter::SplitLine ( const std::string& str, std::vector<std::string>&
     // The following is *NOT* a debug time message :
     // It's a user intended message.
     // Please don't remove it.
-    bbtkMessage("Interpreter",1,
+    bbtkMessage("interpreter",1,
         "look for : [" << name
         << "]" << std::endl);
 
@@ -1110,14 +1024,14 @@ void Interpreter::SplitLine ( const std::string& str, std::vector<std::string>&
     std::string upath;
     pkgname = Utilities::ExtractScriptName(name,upath);
 
-    bbtkMessage("Interpreter",3,
+    bbtkMessage("interpreter",3,
                "package name:[" << pkgname
                 << "] path:[" << upath << "]" << std::endl);
     bool fullnameGiven = false; 
     bool foundFile     = false;
 
     // ==== "*" provided : load all scripts in given path 
-    // relative (e.g. std/boxes/*) or absolute 
+    // relative (e.g. std/boxes/ *) or absolute      <<<<<<<< / *
     if (pkgname == "*") 
       {
 
@@ -1127,7 +1041,7 @@ void Interpreter::SplitLine ( const std::string& str, std::vector<std::string>&
        // ==== no path provided : look in root bbs path
        if (upath.size()==0)
          {
-           //      bbtkMessage("Interpreter",1,
+           //      bbtkMessage("interpreter",1,
            // LG : add all bbs path
            //  script_paths.push_back(  ConfigurationFile::GetInstance().Get_root_bbs_path() );
            std::vector<std::string>::const_iterator i;
@@ -1191,7 +1105,7 @@ void Interpreter::SplitLine ( const std::string& str, std::vector<std::string>&
        std::vector<std::string>::iterator i;
        for (i=script_paths.begin();i!=script_paths.end();i++)
          {
-           bbtkMessage("Interpreter",1,
+           bbtkMessage("interpreter",1,
                        "--> Looking in '" << *i << "'" << std::endl);
            
            Filenames.clear();
@@ -1207,7 +1121,7 @@ void Interpreter::SplitLine ( const std::string& str, std::vector<std::string>&
                if ( (*j).substr(lgr-4, 4) != ".bbp") continue; 
                
                (*stream) << "include \"" << *j << "\"\n";
-               bbtkMessage("Interpreter",2,"  --> Found '" << *j << "'" << std::endl);
+               bbtkMessage("interpreter",2,"  --> Found '" << *j << "'" << std::endl);
                
                nbBssFiles++;
              } // for (std::vector...
@@ -1216,12 +1130,12 @@ void Interpreter::SplitLine ( const std::string& str, std::vector<std::string>&
        // === Result ...
        if (nbBssFiles==0)
          {
-           bbtkMessage("Interpreter",1,
+           bbtkMessage("interpreter",1,
                        "  --> No .bbp found"<< std::endl);
          } 
        else 
          {
-           bbtkMessage("Interpreter",1,
+           bbtkMessage("interpreter",1,
                        "  --> "<<nbBssFiles<<" .bbp found"<< std::endl);
            SwitchToStream(stream);
          }
@@ -1295,49 +1209,52 @@ void Interpreter::SplitLine ( const std::string& str, std::vector<std::string>&
                }
          
                std::string tfullPathScriptName = Utilities::MakePkgnameFromPath(path, name, false);
-               if (tfullPathScriptName.substr(tfullPathScriptName.size()-4, 3)==".bb")
-               {
-                 fullPathScriptName = tfullPathScriptName;
-                       if ( ! Utilities::FileExists(fullPathScriptName) )
-                       {
-                               // The following is *NOT* a debug time message :
-                               // It's a user intended message.
-                               // Please don't remove it.
-                               bbtkMessage("Interpreter",2,
-                         "   [" <<fullPathScriptName <<"] : does not exist" 
-                         <<std::endl);
-                               continue;  // try next path
-                       }
-                       bbtkMessage("Interpreter",2,
-                             "   [" <<fullPathScriptName 
-                                 <<"] : found" <<std::endl);
-                       foundFile = true;
-                       break; // a script was found; we stop iterating
-               }
-               else 
-               {
-                       fullPathScriptName = tfullPathScriptName + ".bbs";
-                       // Check if library exists
-                       if ( ! Utilities::FileExists(fullPathScriptName) )
+//Addition JCP tfullPathScriptName.size()>=4 
+               if(tfullPathScriptName.size()>=4){
+                       if (tfullPathScriptName.substr(tfullPathScriptName.size()-4, 3)==".bb")
                        {
-                               fullPathScriptName = tfullPathScriptName + ".bbp";
+                         fullPathScriptName = tfullPathScriptName;
                                if ( ! Utilities::FileExists(fullPathScriptName) )
                                {
                                        // The following is *NOT* a debug time message :
                                        // It's a user intended message.
                                        // Please don't remove it.
-                                       bbtkMessage("Interpreter",2,
-                                       "   [" <<tfullPathScriptName <<".bbs/.bbp] : do not exist" 
-                                       <<std::endl);
+                                       bbtkMessage("interpreter",2,
+                                 "   [" <<fullPathScriptName <<"] : does not exist" 
+                                 <<std::endl);
                                        continue;  // try next path
                                }
+                               bbtkMessage("interpreter",2,
+                                         "   [" <<fullPathScriptName 
+                                         <<"] : found" <<std::endl);
+                               foundFile = true;
+                               break; // a script was found; we stop iterating
                        }
-                       bbtkMessage("Interpreter",2,
-                     "   [" <<fullPathScriptName 
-                     <<"] : found" <<std::endl);
-                       foundFile = true;
-                       break; // a script was found; we stop iterating
-               }
+                       else 
+                       {
+                               fullPathScriptName = tfullPathScriptName + ".bbs";
+                               // Check if library exists
+                               if ( ! Utilities::FileExists(fullPathScriptName) )
+                               {
+                                       fullPathScriptName = tfullPathScriptName + ".bbp";
+                                       if ( ! Utilities::FileExists(fullPathScriptName) )
+                                       {
+                                               // The following is *NOT* a debug time message :
+                                               // It's a user intended message.
+                                               // Please don't remove it.
+                                               bbtkMessage("interpreter",2,
+                                               "   [" <<tfullPathScriptName <<".bbs/.bbp] : do not exist" 
+                                               <<std::endl);
+                                               continue;  // try next path
+                                       }
+                               }
+                               bbtkMessage("interpreter",2,
+                                 "   [" <<fullPathScriptName 
+                                 <<"] : found" <<std::endl);
+                               foundFile = true;
+                               break; // a script was found; we stop iterating
+                       }
+               }               
        } //------------------ // end for ( package_paths.begin();i!=package_paths.end() )
   }
 
@@ -1355,18 +1272,28 @@ void Interpreter::SplitLine ( const std::string& str, std::vector<std::string>&
     else
        {
       LoadScript(fullPathScriptName,name);
-         if (source) GetExecuter()->SetCurrentFileName(fullPathScriptName);
+         if (source) SetCurrentFileName(fullPathScriptName);
        }
     
     return;
   }
   //=======================================================================
+*/
 
-
+       //=======================================================================
+       void Interpreter::SetCurrentFileName(const std::string &fullPathScriptName)  // virtual 
+       {
+               GetExecuter()->SetCurrentFileName(fullPathScriptName);
+       }       
+       //=======================================================================
+       
+/*EED Borrame  
   //=======================================================================
 void Interpreter::SwitchToStream( std::stringstream* stream )
 {
-    mFile.push_back(stream);
+  bbtkDebugMessage("interpreter",4,"==> Interpreter::SwitchToStream()"
+                  <<std::endl);
+   mFile.push_back(stream);
     std::ostringstream buffer_name;
     bufferNb++;
     buffer_name << "buffer_" ;
@@ -1380,13 +1307,18 @@ void Interpreter::SwitchToStream( std::stringstream* stream )
     mLine.push_back(0);
 }
   //=======================================================================
-
+*/
+       
+/*     
   //=======================================================================
-
   void Interpreter::LoadScript( std::string fullPathScriptName,
                                std::string includeScriptName)
   {
-     Utilities::replace( fullPathScriptName , 
+    bbtkDebugMessage("interpreter",4,"==> Interpreter::LoadScript("
+                    <<fullPathScriptName<<")"
+                    <<std::endl);
+
+    Utilities::replace( fullPathScriptName , 
                         INVALID_FILE_SEPARATOR , VALID_FILE_SEPARATOR);
    
      if (find(mFileNameHistory.begin(),
@@ -1405,7 +1337,7 @@ void Interpreter::SwitchToStream( std::stringstream* stream )
         return;
     }
 
-    bbtkMessage("Interpreter",1,"   -->[" << fullPathScriptName 
+    bbtkMessage("interpreter",1,"   -->[" << fullPathScriptName 
                << "] found" << std::endl);
 
     mFile.push_back(s);
@@ -1414,25 +1346,25 @@ void Interpreter::SwitchToStream( std::stringstream* stream )
     mIncludeFileName.push_back(includeScriptName);
     mLine.push_back(0);
 
-       return;
+    return;
   }
+  //=======================================================================
+*/
 
+/*EED Borrame
   //=======================================================================
-  /**
-   *  
-   */
   void Interpreter::CloseCurrentFile()
   {
-    bbtkDebugMessage("Interpreter",9,"Interpreter::CloseCurrentFile()"
+    bbtkDebugMessage("interpreter",9,"==> Interpreter::CloseCurrentFile()"
                       <<std::endl);
 
     if (mFile.size()==0)
     {
-      bbtkDebugMessage("Interpreter",9," -> no file left open"<<std::endl);
+      bbtkDebugMessage("interpreter",9," -> no file left open"<<std::endl);
       return;
     }
 
-    bbtkDebugMessage("Interpreter",9," Closing file '"<<mFileName.back()<<"'"<<std::endl);
+    bbtkDebugMessage("interpreter",9," Closing file '"<<mFileName.back()<<"'"<<std::endl);
 
     std::ifstream* file = dynamic_cast<std::ifstream*>(mFile.back());
     if (file!=0) file->close();
@@ -1443,42 +1375,35 @@ void Interpreter::SwitchToStream( std::stringstream* stream )
     mIncludeFileName.pop_back();
     mLine.pop_back();
 
-    bbtkDebugMessage("Interpreter",9," Remains "
+    bbtkDebugMessage("interpreter",9," Remains "
                      <<mFile.size()
                      <<" open"<<std::endl);
-    bbtkDebugMessage("Interpreter",9,"EO Interpreter::CloseCurrentFile()"
+    bbtkDebugMessage("interpreter",9,"<== Interpreter::CloseCurrentFile()"
                      <<std::endl);
   }
   //=======================================================================
 
  //=======================================================================
-  /**
-   *  
-   */
   void Interpreter::CloseAllFiles()
   {
-    bbtkDebugMessage("Interpreter",9,"Interpreter::CloseAllFiles()"
+    bbtkDebugMessage("interpreter",9,"==> Interpreter::CloseAllFiles()"
                       <<std::endl);
 
     while (mFile.size() != 0) 
     {
        CloseCurrentFile();
     }
-    bbtkDebugMessage("Interpreter",9,"EO Interpreter::CloseAllFiles()"
+    bbtkDebugMessage("interpreter",9,"<== Interpreter::CloseAllFiles()"
                       <<std::endl);
   }
   //=======================================================================
 
 
-
   //=======================================================================
-  /**
-   *  
-   */
   void Interpreter::InterpretCommand( const std::vector<std::string>& words,
                                       CommandInfoType& info )
   {
-    bbtkDebugMessageInc("Interpreter",9,"Interpreter::InterpretCommand(...)"<<std::endl);
+    bbtkDebugMessage("interpreter",9,"==> Interpreter::InterpretCommand(...)"<<std::endl);
 
     // searches the command keyword
     CommandDictType::iterator c;
@@ -1491,19 +1416,22 @@ void Interpreter::SwitchToStream( std::stringstream* stream )
     if ( ( ((int)words.size())-1 < c->second.argmin ) ||
          ( ((int)words.size())-1 > c->second.argmax ) )
     {
-       HelpCommand(words[0]);
+       commandHelp(words[0]);
        bbtkError(words[0]<<" : wrong number of arguments");
     }
-
+//std::cout<<"Interpreter::InterpretCommand( const std::vector<std::string>& words,"<<std::endl;
     info = c->second;
-    bbtkDecTab("Interpreter",9);
+
+    bbtkDebugMessage("interpreter",9,"<== Interpreter::InterpretCommand(...)"<<std::endl);
+
   }
   //=======================================================================
+ */
 
 
   //=======================================================================
   /// Displays help on all the commands
-void Interpreter::Help(const std::vector<std::string>& words)
+void Interpreter::commandHelp(const std::vector<std::string>& words)
 {
     unsigned int nbarg = words.size()-1;
 
@@ -1515,18 +1443,18 @@ void Interpreter::Help(const std::vector<std::string>& words)
     {
       if (words[1]=="packages") 
       {
-         GetExecuter()->GetFactory()->PrintPackages(true);
+         GetExecuter()->GetFactory()->PrintHelpListPackages(true);
          return;
       }
       try 
       {
-          HelpCommand(words[1]);
+          commandHelp(words[1]);
       }
       catch (bbtk::Exception e) 
       {
          try 
          {
-            GetExecuter()->GetFactory()->HelpPackage(words[1]);
+            GetExecuter()->GetFactory()->PrintHelpPackage(words[1]);
            if ( mUser != 0 )
              {
                std::string url = 
@@ -1543,7 +1471,8 @@ void Interpreter::Help(const std::vector<std::string>& words)
           try 
             {
               std::string package;
-              GetExecuter()->GetFactory()->HelpBlackBox(words[1],package);
+              GetExecuter()->GetFactory()->PrintHelpDescriptor(words[1],
+                                                               package);
               if ( mUser != 0 )
                 {
                   std::string url = 
@@ -1560,7 +1489,7 @@ void Interpreter::Help(const std::vector<std::string>& words)
             {
               try
                 {
-                  GetExecuter()->ShowRelations(words[1],"0","9999");
+                  GetExecuter()->PrintHelpBlackBox(words[1],"0","9999");
                 }
               catch (bbtk::Exception h){
                 bbtkError("\""<<words[1].c_str()
@@ -1576,12 +1505,12 @@ void Interpreter::Help(const std::vector<std::string>& words)
       {
          if ( words[1]=="packages" )
          {
-            GetExecuter()->GetFactory()->PrintPackages(true,true);
+            GetExecuter()->GetFactory()->PrintHelpListPackages(true,true);
             return;
           }
          try 
          {
-            GetExecuter()->GetFactory()->HelpPackage(words[1],true);
+            GetExecuter()->GetFactory()->PrintHelpPackage(words[1],true);
          }
          catch (bbtk::Exception f) 
          {
@@ -1589,7 +1518,7 @@ void Interpreter::Help(const std::vector<std::string>& words)
      }
      else 
      {
-        HelpCommand(words[0]);
+        commandHelp(words[0]);
         bbtkError(words[0]<<" : syntax error");
      }
   }
@@ -1602,7 +1531,7 @@ void Interpreter::Help(const std::vector<std::string>& words)
 
    //===================================================================    
   /// Displays the Configuration
-  void Interpreter::Config() const
+  void Interpreter::commandConfig() const
   {
     ConfigurationFile::GetInstance().GetHelp(1);
   }  
@@ -1626,9 +1555,10 @@ void Interpreter::Help(const std::vector<std::string>& words)
   //=======================================================================
 
 
+       
   //=======================================================================
   /// Displays help on a particular commands
-  void Interpreter::HelpCommand(const std::string& s)
+  void Interpreter::commandHelp(const std::string& s)
   {
     CommandDictType::iterator c;
     c = mCommandDict.find(s);
@@ -1646,7 +1576,7 @@ void Interpreter::Help(const std::vector<std::string>& words)
   }
   //=======================================================================
 
-
+/*EED Borrame
   //=======================================================================
   /// Fills the vector commands with the commands which 
   /// have the first n chars of buf for prefix
@@ -1664,9 +1594,10 @@ void Interpreter::Help(const std::vector<std::string>& words)
     }
   }
   //=======================================================================
+*/
 
-
-
+/*EED Borrame
   //=======================================================================
 #ifdef BBTK_USE_TERMIOS_BASED_PROMPT
   
@@ -1881,13 +1812,18 @@ void Interpreter::Help(const std::vector<std::string>& words)
   //=======================================================================  
 
 #endif
+*/
 
-
-
+       
+       
+       
+       
+       
+/*EED Borrame
   //=======================================================================
   void Interpreter::CommandLineInterpreter()
   {
-    bbtkDebugMessageInc("Interpreter",9,
+    bbtkDebugMessageInc("interpreter",9,
                         "Interpreter::CommandLineInterpreter()"<<std::endl);
 
 #ifdef BBTK_USE_TERMIOS_BASED_PROMPT  
@@ -1905,19 +1841,20 @@ void Interpreter::Help(const std::vector<std::string>& words)
     
     mCommandLine = true;
     bool again = true;
-    bool insideComment = false; // for multiline comment  
+    // bool insideComment = false; // for multiline comment  
+    mInsideComment = false;
     do 
     {
       try
       {
         std::string line;
         GetLineFromPrompt(line);
-        InterpretLine(line, insideComment);
+        DoInterpretLine(line); //, insideComment);
       }
-      catch (QuitException e)
-      {
      bbtkMessage("Interpreter",1,"Interpreter : Quit"<<std::endl);
-        again = false;
//     catch (QuitException e)
//     {
//    bbtkMessage("interpreter",1,"Interpreter : Quit"<<std::endl);
//        again = false;
       }
       catch (bbtk::Exception e) 
       {
@@ -1940,11 +1877,12 @@ void Interpreter::Help(const std::vector<std::string>& words)
 
     std::cout << "Good bye !" << std::endl;
 
-    bbtkDebugDecTab("Interpreter",9);
+    bbtkDebugDecTab("interpreter",9);
   }
-
+*/
+                 
 //=======================================================================
-void Interpreter::Graph(const std::vector<std::string>& words)
+void Interpreter::commandGraph(const std::vector<std::string>& words)
 {
   std::string page;
     bool system_display = true;
@@ -1989,7 +1927,7 @@ void Interpreter::Graph(const std::vector<std::string>& words)
 
 
 //=======================================================================
-void  Interpreter::Index(const std::string& filename, 
+void  Interpreter::commandIndex(const std::string& filename, 
                         const std::string& type)
 {
   Factory::IndexEntryType t;
@@ -2004,7 +1942,7 @@ void  Interpreter::Index(const std::string& filename,
 
 
 //=======================================================================
-void  Interpreter::NewGUI(const std::string& boxname,
+void  Interpreter::commandNewGUI(const std::string& boxname,
                             const std::string& instanceName)
 {
   if (mRealExecuter.expired())
@@ -2042,7 +1980,7 @@ void  Interpreter::NewGUI(const std::string& boxname,
   if (workspace==0)
     {
       delete s;
-      bbtkError("Interpreter::CreateGUI : could not access the executer currently defined complex box");
+      bbtkError("interpreter::CreateGUI : could not access the executer currently defined complex box");
     }
  
 
@@ -2063,9 +2001,14 @@ void  Interpreter::NewGUI(const std::string& boxname,
       // Get the input descriptor 
       const BlackBoxInputDescriptor* d = box->bbGetDescriptor()->GetInputDescriptor(i->first);
       // If it is a "system" input : skip it
+#ifdef USE_WXWIDGETS
       if ( ( d->GetCreatorTypeInfo() == typeid(AtomicBlackBoxDescriptor)) ||
           ( d->GetCreatorTypeInfo() == typeid(WxBlackBoxDescriptor)) )
        continue;
+#else
+      if ( ( d->GetCreatorTypeInfo() == typeid(AtomicBlackBoxDescriptor)) )
+       continue;
+#endif
       bool widok = true;
       std::string widget,adaptor;
       // try to find a widget adaptor
@@ -2176,7 +2119,7 @@ void  Interpreter::NewGUI(const std::string& boxname,
 
 
  //==========================================================================
-  void Interpreter::Debug(const std::string& name)
+  void Interpreter::commandDebug(const std::string& name)
   {
     if ((name.length()==2)&&(name[0]=='-'))
       {
@@ -2188,7 +2131,7 @@ void  Interpreter::NewGUI(const std::string& boxname,
          {
            //      int o = MessageManager::GetMessageLevel("debug");
            //      if (o<2) MessageManager::SetMessageLevel("debug",2);
-           mVirtualExecuter->GetFactory()->CheckPackages();
+           mVirtualExecuter->GetFactory()->Check();
            //      MessageManager::SetMessageLevel("debug",o);
          }
       }
@@ -2198,6 +2141,17 @@ void  Interpreter::NewGUI(const std::string& boxname,
       }
   }
  //==========================================================================
+
+  /*
+  //==========================================================================
+  // Adds a callback when 'break' command issued
+  void Interpreter::AddBreakObserver( BreakCallbackType c )
+  {
+    mBreakSignal.connect(c);
+  }
+ //==========================================================================
+ */
+
  //==========================================================================
   std::string Interpreter::GetObjectName() const
   {