]> git.donarmstrong.com Git - mothur.git/blobdiff - engine.cpp
modified read.otu and shared command
[mothur.git] / engine.cpp
index ddd6776cfc78f48f371ba677fd268c7a46964ade..55617bc3f80a97e1832ff61c3e09678de8eca1ca 100644 (file)
@@ -10,7 +10,7 @@
  *  Fix later, don't have time now.
  *
  */
-using namespace std;
+
 
 #include "engine.hpp"
 
@@ -22,12 +22,6 @@ InteractEngine::InteractEngine(string path){
        globaldata->argv = path;
        
        system("clear");
-//     char buffer = ' ';
-//     ifstream header("introtext.txt");
-//     while(!header.eof()){
-//             cout << buffer;
-//             buffer = header.get();
-//     }
 }
 
 /***********************************************************************/
@@ -42,56 +36,45 @@ bool InteractEngine::getInput(){
        try {
                string input = "";
                string commandName = "";
+               string options = "";
                int quitCommandCalled = 0;
-               bool errorFree;
-               ErrorCheck* errorCheckor = new ErrorCheck();
                
-               cout << "mothur v.1.3.0" << endl;
-               cout << "Last updated: 4/25/2009" << endl << endl;
-               cout << "by" << endl;
-               cout << "Patrick D. Schloss" << endl << endl;
-               cout << "Department of Microbiology" << endl;
-               cout << "The University of Massachusetts" << endl;
-               cout << "pschloss@micro.umass.edu" << endl;
-               cout << "http://schloss.micro.umass.edu/mothur" << endl << endl << endl;
-               cout << "Distributed under the GNU General Public License" << endl << endl;
-               cout << "Type 'help()' for information on the commands that are available" << endl << endl;
-               cout << "Type 'quit()' to exit program" << endl;
-
+                               
                while(quitCommandCalled != 1){
-
-                       cout << endl << "mothur > ";
+                       
+                       mothurOutEndLine();
+                       mothurOut("mothur > ");
                        getline(cin, input);
                        if (cin.eof()) { input = "quit()"; }
                        
+                       mothurOutJustToLog(input);
+                       mothurOutEndLine();
+                       
                        //allow user to omit the () on the quit command
                        if (input == "quit") { input = "quit()"; }
                        
-                       errorFree = errorCheckor->checkInput(input);
-                       if (errorFree == true) {
-                               CommandOptionParser parser(input);
-                               commandName = parser.getCommandString();
+                       CommandOptionParser parser(input);
+                       commandName = parser.getCommandString();
+                       options = parser.getOptionString();
+                       
+                       if (commandName != "") {
                        
                                //executes valid command
                                CommandFactory cFactory;
-                               Command* command = cFactory.getCommand(commandName);
+                               Command* command = cFactory.getCommand(commandName, options);
                                quitCommandCalled = command->execute();
-               
+                               
                        }else {
-                                       cout << "Your input contains errors. Please try again." << endl;
+                               mothurOut("Your input contains errors. Please try again."); 
+                               mothurOutEndLine();
                        }
                }       
                return 1;
        }
        catch(exception& e) {
-               cout << "Standard Error: " << e.what() << " has occurred in the InteractEngine class Function getInput. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
-               exit(1);
-       }
-       catch(...) {
-               cout << "An unknown error has occurred in the InteractEngine class function getInput. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
+               errorOut(e, "InteractEngine", "getInput");
                exit(1);
        }
-
 }
 
 /***********************************************************************/
@@ -99,9 +82,10 @@ bool InteractEngine::getInput(){
 BatchEngine::BatchEngine(string path, string batchFileName){
        try {
                globaldata = GlobalData::getInstance();
+       
                openedBatch = openInputFile(batchFileName, inputBatchFile);
                globaldata->argv = path;
-
+                               
                system("clear");
        
        //      char buffer = ' ';
@@ -112,11 +96,7 @@ BatchEngine::BatchEngine(string path, string batchFileName){
        //      }
        }
        catch(exception& e) {
-               cout << "Standard Error: " << e.what() << " has occurred in the BatchEngine class Function BatchEngine. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
-               exit(1);
-       }
-       catch(...) {
-               cout << "An unknown error has occurred in the BatchEngine class function BatchEngine. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
+               errorOut(e, "BatchEngine", "BatchEngine");
                exit(1);
        }
 }
@@ -131,60 +111,168 @@ BatchEngine::~BatchEngine(){
 bool BatchEngine::getInput(){
        try {
                //check if this is a valid batchfile
-               if (openedBatch == 1) {  cout << "unable to open batchfile" << endl;  return 1; }
+               if (openedBatch == 1) {  
+                       mothurOut("unable to open batchfile");  
+                       mothurOutEndLine();
+                       return 1; 
+               }
        
                string input = "";
                string commandName = "";
-               bool errorFree;
-               ErrorCheck* errorCheckor = new ErrorCheck();
-
-               CommandFactory cFactory;
+               string options = "";
+               
+               //CommandFactory cFactory;
                int quitCommandCalled = 0;
        
                while(quitCommandCalled == 0){
-               
-                       getline(inputBatchFile, input);
-                       if (input[0] != '#') {
-                               if (inputBatchFile.eof()) { input = "quit()"; }
+       
+                       if (inputBatchFile.eof()) { input = "quit()"; }
+                       else { getline(inputBatchFile, input); }
+                       
                        
-                               cout << endl << "mothur > " << input << endl;
+                       
+                       if (input[0] != '#') {
+                               
+                               mothurOutEndLine();
+                               mothurOut("mothur > " + input);
+                               mothurOutEndLine();
+                               
                                
                                //allow user to omit the () on the quit command
                                if (input == "quit") { input = "quit()"; }
 
-                               errorFree = errorCheckor->checkInput(input);
-                               if (errorFree == true) {
-                                       CommandOptionParser parser(input);
-                                       commandName = parser.getCommandString();
-                                       ifstream filehandle;
-               
-                                       if (openedBatch == 0) { //able to open batchfile
-                                               //executes valid command
-                                               CommandFactory cFactory;
-                                               Command* command = cFactory.getCommand(commandName);
-                                               quitCommandCalled = command->execute();
-                                       }
-                                       else {
-                                               cout << "Invalid." << endl;
-                                       }
-                               }
-                               else {
-                                       cout << "Unable to open batchfile." << endl;
+                               CommandOptionParser parser(input);
+                               commandName = parser.getCommandString();
+                               options = parser.getOptionString();
+                                                                               
+                               if (commandName != "") {
+
+                                       //executes valid command
+                                       CommandFactory cFactory;
+                                       Command* command = cFactory.getCommand(commandName, options);
+                                       quitCommandCalled = command->execute();
+                               }else {         
+                                       mothurOut("Invalid."); 
+                                       mothurOutEndLine();
                                }
-                       }else { if (inputBatchFile.eof()) { input = "quit()"; } }
+                               
+                       }
+                       gobble(inputBatchFile);
                }
+               
+               inputBatchFile.close();
                return 1;
        }
        catch(exception& e) {
-               cout << "Standard Error: " << e.what() << " has occurred in the BatchEngine class Function getInput. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
+               errorOut(e, "BatchEngine", "getInput");
                exit(1);
        }
-       catch(...) {
-               cout << "An unknown error has occurred in the BatchEngine class function getInput. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
+}
+
+
+/***********************************************************************/
+/***********************************************************************/
+//This function opens the batchfile to be used by BatchEngine::getInput.
+ScriptEngine::ScriptEngine(string path, string commandString){
+       try {
+               globaldata = GlobalData::getInstance();
+               
+               //remove quotes
+               listOfCommands = commandString.substr(1, (commandString.length()-1));
+
+               globaldata->argv = path;
+               
+               system("clear");
+       
+       }
+       catch(exception& e) {
+               errorOut(e, "ScriptEngine", "ScriptEngine");
                exit(1);
        }
 }
 
+/***********************************************************************/
+
+ScriptEngine::~ScriptEngine(){
+       }
 
 /***********************************************************************/
+//This Function allows the user to run a batchfile containing several commands on mothur
+bool ScriptEngine::getInput(){
+       try {
+                       
+               string input = "";
+               string commandName = "";
+               string options = "";
+               
+               
+               //CommandFactory cFactory;
+               int quitCommandCalled = 0;
+       
+               while(quitCommandCalled == 0){
+               
+                       input = getNextCommand(listOfCommands); 
+                       
+                       if (input == "") { input = "quit()"; }
+                       
+                       
+                       mothurOutEndLine();
+                       mothurOut("mothur > " + input);
+                       mothurOutEndLine();
 
+                               
+                       //allow user to omit the () on the quit command
+                       if (input == "quit") { input = "quit()"; }
+
+                       CommandOptionParser parser(input);
+                       commandName = parser.getCommandString();
+                       options = parser.getOptionString();
+                                                                               
+                       if (commandName != "") {
+
+                               //executes valid command
+                               CommandFactory cFactory;
+                               Command* command = cFactory.getCommand(commandName, options);
+                               quitCommandCalled = command->execute();
+                       }else {         
+                               mothurOut("Invalid."); 
+                               mothurOutEndLine();
+                       }
+                       
+               }
+               
+               return 1;
+       }
+       catch(exception& e) {
+               errorOut(e, "ScriptEngine", "getInput");
+               exit(1);
+       }
+}
+/***********************************************************************/
+string ScriptEngine::getNextCommand(string& commandString) {
+       try {
+               string nextcommand = "";
+               
+               nextcommand = commandString.substr(0,commandString.find_first_of(';'));
+
+                               
+               if ((commandString.find_first_of(';')+1) <= commandString.length()) {
+                       commandString = commandString.substr(commandString.find_first_of(';')+1, commandString.length());
+               }else { commandString = ""; } //you have reached the last command.
+               
+               //get rid of spaces in between commands if any
+               if (commandString.length() > 0) {
+                       while (commandString[0] == ' ') {  
+                               commandString = commandString.substr(1,commandString.length());
+                               if (commandString.length() == 0) {  break;  }
+                       }
+               }
+                                       
+               return nextcommand;
+       }
+       catch(exception& e) {
+               errorOut(e, "ScriptEngine", "getNextCommand");
+               exit(1);
+       }
+}
+/***********************************************************************/