1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
|
//
// scriptengine.cpp
// Mothur
//
// Created by Sarah Westcott on 10/21/19.
// Copyright © 2019 Schloss Lab. All rights reserved.
//
#include "scriptengine.hpp"
/***********************************************************************/
ScriptEngine::ScriptEngine(string tpath, string commandString, map<string, string> ev) : Engine(tpath){
try {
//remove quotes
listOfCommands = commandString.substr(1, (commandString.length()-1));
noBufferNeeded = true;
int pos = listOfCommands.find("set.logfile");
if (pos != string::npos) { noBufferNeeded = false; }
if (noBufferNeeded) {
if (m->getLogFileName() == "") {
time_t ltime = time(nullptr); /* calendar time */
string outputPath = current->getOutputDir();
string logFileName = outputPath + "mothur." + toString(ltime) + ".logfile";
m->setLogFileName(logFileName, false);
m->mothurOut("\n");
}
}
setEnvironmentVariables(ev);
}
catch(exception& e) {
m->errorOut(e, "ScriptEngine", "ScriptEngine");
exit(1);
}
}
/***********************************************************************/
ScriptEngine::~ScriptEngine(){
time_t end = time(nullptr);
m->mothurOut("\n\nIt took " + toString(end-start) + " seconds to run " + toString(numCommandsRun) + " commands from your script.\n\n");
}
/***********************************************************************/
//This Function allows the user to run a batchfile containing several commands on mothur
bool ScriptEngine::getInput(){
try {
string input = "";
string commandName = "";
string options = "";
int quitCommandCalled = 0;
while(quitCommandCalled != 1){
input = getNextCommand(listOfCommands);
if (input == "") { input = "quit()"; }
CommandOptionParser parser(input);
commandName = parser.getCommandString();
options = parser.getOptionString();
m->mothurOut("\nmothur > " + input + "\n");
if (m->getControl_pressed()) { input = "quit()"; }
if (commandName != "") {
numCommandsRun++;
m->setExecuting(true); m->resetCommandErrors(); m->setChangedSeqNames(true); m->setChangedGroupNames(true);
//executes valid command
Command* command = cFactory->getCommand(commandName, options);
quitCommandCalled = command->execute();
delete command;
//if we aborted command
if (quitCommandCalled == 2) { m->mothurOut("[ERROR]: did not complete " + commandName + ".\n"); }
if (m->getControl_pressed()) { break; }
m->setControl_pressed(false);
m->setExecuting(false);
}else { m->mothurOut("[ERROR]: Invalid.\n"); }
}
return true;
}
catch(exception& e) {
m->errorOut(e, "ScriptEngine", "getInput");
exit(1);
}
}
/***********************************************************************/
string ScriptEngine::getNextCommand(string& commandString) {
try {
string nextcommand = "";
int count = 0;
bool ignoreSemiColons = false;
//go through string until you reach ; or end
while (count < commandString.length()) {
//you want to ignore any ; until you reach the next '
if ((commandString[count] == '\'') && (!ignoreSemiColons)) { ignoreSemiColons = true; }
else if ((commandString[count] == '\'') && (ignoreSemiColons)) { ignoreSemiColons = false; }
if ((commandString[count] == ';') && (!ignoreSemiColons)) { break; }
else { nextcommand += commandString[count]; }
count++;
}
//if you are not at the end
if (count != commandString.length()) { commandString = commandString.substr(count+1, commandString.length()); }
else { commandString = ""; }
//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; }
}
}
//allow user to omit the () on the quit command
if (nextcommand == "quit") { nextcommand = "quit()"; }
if (nextcommand == "help") { nextcommand = "help()"; }
string type = findType(nextcommand);
if (type == "environment") {
//set environmental variables
string key, value; value = nextcommand;
util.splitAtEquals(key, value);
map<string, string>::iterator it = environmentalVariables.find(key);
if (it == environmentalVariables.end()) { environmentalVariables[key] = value; }
else { it->second = value; }
m->mothurOut("Setting environment variable " + key + " to " + value + "\n");
nextcommand = getNextCommand(commandString);
}else { //assume command, look for environmental variables to replace
int evPos = nextcommand.find_first_of('$');
if (evPos == string::npos) { //no '$' , check for mothurhome
evPos = nextcommand.find("mothurhome");
if (evPos != string::npos) { replaceVariables(nextcommand); }
}else { replaceVariables(nextcommand); }
}
if (m->getDebug()) {
double ramUsed, total;
ramUsed = util.getRAMUsed(); total = util.getTotalRAM();
m->mothurOut("RAM used: " + toString(ramUsed/(double)GIG) + " Gigabytes. Total Ram: " + toString(total/(double)GIG) + " Gigabytes.\n\n");
}
return nextcommand;
}
catch(exception& e) {
m->errorOut(e, "ScriptEngine", "getNextCommand");
exit(1);
}
}
/***********************************************************************/
|