]> Creatis software - bbtk.git/blobdiff - kernel/src/bbtkInterpreter.cxx
*** empty log message ***
[bbtk.git] / kernel / src / bbtkInterpreter.cxx
index 22bd9fb69d3a20d0805876730979521c247c1065..2147d0ca35c1b84760ca57380c523ad77b85b89a 100644 (file)
@@ -3,8 +3,8 @@
   Program:   bbtk
   Module:    $RCSfile: bbtkInterpreter.cxx,v $ $
   Language:  C++
-  Date:      $Date: 2008/03/14 14:58:53 $
-  Version:   $Revision: 1.44 $
+  Date:      $Date: 2008/03/18 12:51:26 $
+  Version:   $Revision: 1.46 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -179,7 +179,7 @@ bufferNb =0;
     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.category] = info;
 
-    info.category = "reset";  //EED
+    info.category = "reset";  
     info.argmin = 0;
     info.argmax = 0;
     info.code = cReset;
@@ -290,8 +290,6 @@ bufferNb =0;
    */
   Interpreter::~Interpreter()
   {
-
-std::cout << "=========================================~Interpreter()" << std::endl;
     bbtkDebugMessageInc("Interpreter",9,"Interpreter::~Interpreter()" <<std::endl);
     delete mExecuter;
 
@@ -330,13 +328,10 @@ std::cout << "=========================================~Interpreter()" << std::e
             std::cout << "B=== [" << (*it) << "]" << std::endl;
          }
 */      
-//printf("EED --- %s --- Interpreter::InterpretFile \n", mFileName[0].c_str() );
-       //printf("EED --- %s --- Interpreter::InterpretFile \n", mFileName[0].c_str() );
 
          //while ((mFile.size()>0) && !mFile.back()->eof() ) 
          //{
 //      std::cout << "mFile.size() "<< mFile.size() << " mFileName.back() [" << mFileName.back() << "]" <<  std::endl;
-        
         while (!mFile.back()->eof()) {
                     mLine.back()++;
             char buf[500];
@@ -349,13 +344,11 @@ std::cout << "=========================================~Interpreter()" << std::e
                str.erase(size-1,1);
             }
       
-            InterpretLine(str, insideComment);
-
-//printf("EED Interpreter::InterpretFile %s\n", str.c_str() );
+               InterpretLine(str, insideComment);
 
-         }
-        //if (mFile.size()>0) 
-        CloseCurrentFile();
+       }//while
+       //if (mFile.size()>0) 
+       CloseCurrentFile();
       }
     }
     catch (QuitException e) 
@@ -395,6 +388,97 @@ std::cout << "=========================================~Interpreter()" << std::e
   //=======================================================================
 
 
+  //=======================================================================
+  /**
+   *  
+   */
+  void Interpreter::InterpretBuffer( std::stringstream* buffer )
+  {
+    bbtkDebugMessageInc("Interpreter",9,"Interpreter::InterpretBuffer()"<<std::endl);
+  //  std::cout << "==========================================Entree InterpretFile ["<<filename<<"] try SwitchToFile "<<std::endl;
+    bool exm = mCommandLine;
+    mCommandLine = false;
+
+    try 
+    {
+      SwitchToStream(buffer);
+
+/*
+      for( std::vector<std::string>::iterator it =mFileName.begin(); it!=mFileName.end(); ++it)
+      {
+         std::cout << "A=== [" << (*it) << "]" << std::endl;
+      }
+*/      
+      bool insideComment = false; // for multiline comment
+      while (mFile.size()>0) 
+      {
+/*
+         for( std::vector<std::string>::iterator it =mFileName.begin(); it!=mFileName.end(); ++it)
+         {
+            std::cout << "B=== [" << (*it) << "]" << std::endl;
+         }
+*/      
+
+         //while ((mFile.size()>0) && !mFile.back()->eof() ) 
+         //{
+//      std::cout << "mFile.size() "<< mFile.size() << " mFileName.back() [" << mFileName.back() << "]" <<  std::endl;
+        while (!mFile.back()->eof()) {
+                    mLine.back()++;
+            char buf[500];
+            mFile.back()->getline(buf,500);
+            std::string str(buf);
+// std::cout << " in InterpretFile mFile.back()->getline [" << str << "]" << std::endl;    
+            int size=str.length();
+            if ( str[ size-1 ]==13  )
+            {
+               str.erase(size-1,1);
+            }
+      
+               InterpretLine(str, insideComment);
+
+       }//while
+       //if (mFile.size()>0) 
+       CloseCurrentFile();
+      }
+    }
+    catch (QuitException e) 
+    { 
+      //      std::cout  << "**QuitException caught**"<<std::endl;
+    }
+    catch (bbtk::Exception e) 
+    {
+      std::cerr << "* ERROR : "<<e.GetMessage()<<std::endl;
+      if (mFileName.size()) {
+         std::cerr << "* FILE  : \""<<mFileName.back()<<"\""<<std::endl;
+         std::cerr << "* LINE  : "<<mLine.back()<<std::endl;
+      }    
+    }
+    catch (std::exception& e) 
+    {
+       std::cerr << "* ERROR : "<<e.what()<<" (not in bbtk)"<<std::endl;
+       if (mFileName.size()) {
+          std::cerr << "* FILE  : \""<<mFileName.back()<<"\""<<std::endl;
+          std::cerr << "* LINE  : "<<mLine.back()<<std::endl;
+       }    
+    }  
+    catch (...)
+    {
+       std::cout << "* UNDEFINED ERROR (not a bbtk nor a std exception)"<<std::endl;
+       if (mFileName.size()) {
+          std::cout << "* FILE  : \""<<mFileName.back()<<"\""<<std::endl;
+          std::cout << "* LINE  : "<<mLine.back()<<std::endl;
+      }    
+    }
+
+    CloseAllFiles();
+    bbtkDebugMessage("Interpreter",9,"EO Interpreter::InterpretBuffer()"<<std::endl);
+    bbtkDecTab("Interpreter",9);
+
+    mCommandLine = exm;
+  }
+  //=======================================================================
+
+
 
   //=======================================================================  
   /**
@@ -402,7 +486,6 @@ std::cout << "=========================================~Interpreter()" << std::e
    */
 void Interpreter::InterpretLine( const std::string& line, bool &insideComment )
 {
-
     bbtkDebugMessageInc("Interpreter",9,"Interpreter::InterpretLine(\""<<line<<"\")"<<std::endl);
     bbtkMessage("Echo",2,"\""<<line<<"\""<<std::endl);
 
@@ -580,7 +663,7 @@ void Interpreter::InterpretLine( const std::string& line, bool &insideComment )
         Config();
         break;
 
-      case cReset :  // EED
+      case cReset :  
         this->mExecuter->Reset();
         break;
 
@@ -836,17 +919,21 @@ void Interpreter::SplitLine ( const std::string& str, std::vector<std::string>&
               continue;      // ignore  '-appli.bbs' files
           }
           */
-           (*stream) << "include " << *i << "\n";
+
+       (*stream) << "include " << *i << "\n";
+//EED  InterpretFile(*i);
+
            nbBssFiles++;
-        }
-        if (nbBssFiles==0)
+        } // for vector
+               if (nbBssFiles==0){
            bbtkMessage("Interpreter",2,
                       "WARNING : No '.bbs' file found in [" 
                       << upath << "]" << std::endl);
-        else
-           SwitchToStream(stream);
+               } else {
+            SwitchToStream(stream);
+               }
         return;
-      }
+      }  // if upath
 
       std::string path;
       std::vector<std::string>::iterator i;
@@ -861,11 +948,10 @@ void Interpreter::SplitLine ( const std::string& str, std::vector<std::string>&
           char * currentDir = getcwd(buf, 2048);
           std::string cwd(currentDir);
           path = currentDir;
-        }
+        } // if path
 
         fullDirectoryName = Utilities::MakePkgnameFromPath(path, upath, false);
 
-        //EED 18 Fev 2008
         // without last slash "\"
         std::string fullDirectoryNameClean = fullDirectoryName.substr(0,fullDirectoryName.size()-1);
 
@@ -878,7 +964,7 @@ void Interpreter::SplitLine ( const std::string& str, std::vector<std::string>&
              bbtkMessage("Interpreter",1,"   [" <<fullDirectoryName 
                      <<"] : doesn't exist" <<std::endl);
           continue;  // try next path
-        }
+        } // if IsDirectory
         foundFile = true;
 
         Filenames.clear();
@@ -887,7 +973,6 @@ void Interpreter::SplitLine ( const std::string& str, std::vector<std::string>&
         nbBssFiles = 0;
         for (std::vector<std::string>::iterator i = Filenames.begin(); i!= Filenames.end(); ++i)
         {
-//EEDprintf("EED Interpreter::SwitchToFile %s\n",(*i).c_str() );
 // std::cout << "JPR==================  iterate [" << *i << "]" << std::endl;
            int lgr = (*i).size();
           if (lgr < 5)
@@ -901,21 +986,25 @@ void Interpreter::SplitLine ( const std::string& str, std::vector<std::string>&
               continue;      // ignore  '-appli.bbs' files
           }
           */
-           (*stream) << "include " << *i << "\n";
+
+      (*stream) << "include " << *i << "\n";
+//EED    InterpretFile(*i);
+
            nbBssFiles++;
-        }
-        if (nbBssFiles==0)
+        } // for vector
+               if (nbBssFiles==0){
            bbtkMessage("Interpreter",1,
                      "WARNING : No '.bbs' file found in [" 
                      << fullDirectoryName << "]" << std::endl);
-        else 
+               } else {
            SwitchToStream(stream);
+               }
 
         //break; // a directory was found; we stop iterating
        // LG : No! We want all files included !
-       }
+       } // for vector
        return;
-    }
+    }  // if *
 
     //std::string::size_type slash_position = name.find_last_of("/\\");
 
@@ -1014,7 +1103,8 @@ void Interpreter::SplitLine ( const std::string& str, std::vector<std::string>&
 void Interpreter::SwitchToStream( std::stringstream* stream )
 {
 //std::cout << "== 1 Entry in Interpreter::SwitchToStream " << std::endl;
-    mFile.push_back(stream);
+
+       mFile.push_back(stream);
     //std::cout << " mFile.size() " << mFile.size() << std::endl;
     std::ostringstream buffer_name;
     bufferNb++;
@@ -1054,18 +1144,14 @@ void Interpreter::SwitchToStream( std::stringstream* stream )
   void Interpreter::LoadScript( std::string fullPathScriptName,
                                std::string includeScriptName)
   {
-//std::cout << "--------------------------EED Interpreter::LoadScript >>01\n" << std::endl;
      Utilities::replace( fullPathScriptName , INVALID_FILE_SEPARATOR , VALID_FILE_SEPARATOR);
 
      bool okScriptExist=false;
      int iStrScript,sizeVecStricpt=mFileName.size();
      for ( iStrScript=0;iStrScript<sizeVecStricpt;iStrScript++)
      {
-//EED printf("  EED %d Interpreter::LoadScript %s __>>__ %s\n", iStrScript,mFileName[iStrScript].c_str(),fullPathScriptName.c_str() );
-
         if (mFileName[iStrScript] == fullPathScriptName )
         {
-           printf("  EED %d Interpreter::LoadScript iguales\n",iStrScript );
            okScriptExist=true;
         } // if
      } // for
@@ -1073,7 +1159,6 @@ void Interpreter::SwitchToStream( std::stringstream* stream )
      if (find(mFileName.begin(),mFileName.end(),fullPathScriptName)!=mFileName.end())
 //    if (okScriptExist==true)
      {
-//EED printf("EED Interpreter::LoadScript Exit method\n");
            bbtkMessage("Interpreter",1,"file '"<<fullPathScriptName
                    <<"' already open : I do not open it once more to prevent recursive inclusion"<<std::endl);
         return;
@@ -1095,7 +1180,6 @@ void Interpreter::SwitchToStream( std::stringstream* stream )
     mFileName.push_back(fullPathScriptName);
     mIncludeFileName.push_back(includeScriptName);
     mLine.push_back(0);
-//EED printf("EED Interpreter::LoadScript >>02\n");
     return;
   }
 
@@ -1124,15 +1208,6 @@ void Interpreter::SwitchToStream( std::stringstream* stream )
     mFileName.pop_back();
     mIncludeFileName.pop_back();
     mLine.pop_back();
-/*EED3
-    bbtkDebugMessage("Interpreter",9," Closing file '"<<mFileName[0]<<"'"<<std::endl);
-    mFile[0]->close();
-    delete mFile[0];
-    mFile.erase( mFile.begin() );
-    mFileName.erase( mFileName.begin() );
-    mIncludeFileName.erase( mIncludeFileName.begin() );
-    mLine.erase( mLine.begin() );
-*/
 
     bbtkDebugMessage("Interpreter",9," Remains "
                      <<mFile.size()