From bcd025153a2f57dd5513b88bd30756a4be686f98 Mon Sep 17 00:00:00 2001 From: Brandon Jackson <1drummer@att.net> Date: Wed, 23 Sep 2015 02:47:08 -0500 Subject: [PATCH] Create Parserv4.cpp --- Parserv4.cpp | 429 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 429 insertions(+) create mode 100644 Parserv4.cpp diff --git a/Parserv4.cpp b/Parserv4.cpp new file mode 100644 index 0000000..8d5f17b --- /dev/null +++ b/Parserv4.cpp @@ -0,0 +1,429 @@ +#include // std::string +#include // std::cout +#include // std::stringstream +#include +#include +#include "Parserv3.h" + +using namespace std; + +vector tokenize(string ss) +{ + string tempString; + stringstream lineStream(ss); + vector output; + + while (lineStream >> tempString) + { + output.push_back(tempString); + } + + //testing--------------- + cout<<"TokenList: "; + + for (int i = 0; i input) +{ + cout<<"TokenList: "< showCMD(vector input) +{ + if (input.size() > 3) + { + cout<<"Syntax error!"< saveCMD(vector input) +{ + if (input.size() > 3) + { + cout<<"Syntax error!"< closeCMD(vector input) +{ + if (input.size() > 3) + { + cout<<"Syntax error!"< openCMD(vector input) +{ + if (input.size() > 3) + { + cout<<"Syntax error!"< exitCMD(vector input) +{ + if (input[1] != ";") + { + cout<<"ERROR: missing semicolon!"< createCMD(vector input) +{ + //relation name will be the first element of the vector of data returned by this function + + if (input[0] == "CREATE" && input[1] == "TABLE") + { + input.erase(input.begin()); + input.erase(input.begin()); + + Relation r; + r.setRelation(input[0]); + + input.erase(input.begin()); + + if(input[0] == "(") + { + input.erase(input.begin()); + + vector e1; + + while(input[0] != ")") //inserting all values to relation + { + if (input[0] == ",") + { + input.erase(input.begin()); + } + + e1.push_back(input[0]); + + input.erase(input.begin()); + } + + vector e2; + + if(input[0] == "PRIMARY" && input[1] == "KEY") + { + input.erase(input.begin()); + input.erase(input.begin()); + + if(input[0] == "(") + { + + while(input[0] != ")") //inserting all values to relation + { + if (input[0] == ",") + { + input.erase(input.begin()); + } + + e2.push_back(input[0]); + + input.erase(input.begin()); + } + + cout << "Creating a table: " << r.getName() << "\n"; + cout << "Primary key: "; + while(!e2.empty()) + { + cout << e2[0].getExpression() << " "; + e2.erase(e2.begin()); + } + + return input; + } + } + } + + else cout<<"Syntax error!"< insertCMD(vector input) +{ + //relation name will be the first element of the vector of data returned by this function + + if (input[0] == "INTO") + { + input.erase(input.begin()); + + Relation r(input[0]); + + input.erase(input.begin()); + + if (input[0] == "VALUES" && input[1] == "FROM") + { + input.erase(input.begin()); + input.erase(input.begin()); + + + if(input[0] == "(") + { + vector e; + input.erase(input.begin()); + + while(input[0] != ")") //inserting all values to relation + //for (int i = 0; i < 2; ++i) + { + if (input[0] == ",") input.erase(input.begin()); + + e.push_back(input[0]); + + input.erase(input.begin()); + } + + cout << "Inserting: "; + while(!e.empty()) + { + cout << e[0].getExpression() << " "; + e.erase(e.begin()); + } + cout << "into " << r.getName() << ".\n"; + + return input; + + } + + else if (input[0] == "RELATION") + { + input.erase(input.begin()); + + Expression e; + + while(input[0] != ";") + { + e.setExpression(e.getExpression() + input[0]); + } + + cout << "Inserting: " << e.getExpression() << " into " << r.getName() << ".\n"; + + return input; + } + + else cout<<"Syntax error!"< updateCMD(vector input) +{ + //parse Relation r + + //parse out SET + if(input[0] == "SET") + { + input.erase(input.begin()); + + Relation r(input[0]); + + input.erase(input.begin()); + + //parse out ( and send everything until ) into an Expression vector + if(input[0] == "(") + { + + vector e; + input.erase(input.begin()); + + while(input[0] != ")") + { + e.push_back(input[0]); + } + } + + if(input[0] == "WHERE") + { + Condition c; + while(input[0] != ";") + { + c.setCondition(/*c.getCondition +*/ input[0]); + } + } + } + + else cout<<"Syntax error!"< deleteCMD(vector input) +{ + // parse out DELETE FROM + if (input[0] == "DELETE" && input[1] == "FROM") + { + input.erase(input.begin()); + input.erase(input.begin()); + + Relation r(input[0]); + if(input[0] == "(") + { + vector e; + input.erase(input.begin()); + + while(input[0] != ")") + { + if (input[0] == ",") input.erase(input.begin()); + + e.push_back(input[0]); + + input.erase(input.begin()); + } + + cout << "Deleting: "; + while(!e.empty()) + { + cout << e[0].getExpression() << " "; + e.erase(e.begin()); + } + cout << "from " << r.getName() << ".\n"; + + return input; + + } + else cout<<"Syntax error!"< input) //calls par_command() or par_query() depending on first item from token list +{ +/* +• Match the first item in the token list and determine weather this is a command or a query. +• Call functions par_command() or par_query(); +• After either par_command() or par_query() returns, make sure the line ends properly with “;” token +*/ + string tempChar = input.back(); + + if (tempChar != ";") + { + cout<<"ERROR! missing semicolon "< insertInput = insertCMD(input); + cout<<"arguments: "< insertInput = insertCMD(input); + cout<<"arguments: "< listOfTokens = tokenize(ss); + vector listOfTokens2 = tokenize(ss2); + vector listOfTokens3 = tokenize(ss3); + + par_line(listOfTokens); + par_line(listOfTokens2); + par_line(listOfTokens3); + + +}