5 #include "API/interface.h"
6 #include "share/data_t.h"
7 #include "share/timer.h"
21 void sortAttrNames(std::vector<std::string> &attr_names,
Attribute& attr){
22 if (attr_names.empty())
return;
23 std::vector<std::string> sorted;
24 for (
int i = 0; i < attr.
num; ++i){
26 for (j = 0; j < attr_names.size(); ++j){
27 if (attr_names.at(j) == attr.
name[i]){
28 sorted.emplace_back(attr_names.at(j));
32 if (j == attr_names.size()){
33 throw DB_COLUMN_NAME_NOT_EXIST;
39 void Interface::parseWhere(hsql::Expr *Clause, std::vector<Where> &where_vec){
41 if (Clause ==
nullptr)
return;
42 if (Clause->expr->type == hsql::kExprOperator){
43 assert(Clause->expr2->type == hsql::kExprOperator);
44 parseWhere(Clause->expr, where_vec);
45 parseWhere(Clause->expr2, where_vec);
48 assert(Clause->expr->type == hsql::kExprColumnRef);
52 w.relation_operator = op_map.at(Clause->opType);
53 w.data =
Data(Clause->expr2);
55 where_vec.push_back(w);
61 case DB_KEY_NOT_FOUND:{
62 _os <<
"Table doesn't have the given attribute or value\n";
65 case DB_FILE_NOT_FOUND:{
66 _os <<
"File doesn't exist\n";
69 case DB_TABLE_ALREADY_EXIST:{
70 _os <<
"Table already exist\n";
74 case DB_COLUMN_NAME_NOT_EXIST:{
75 _os <<
"Table attribute not exist\n";
79 case DB_INDEX_ALREADY_EXIST:{
80 _os <<
"Index already exist on given attribute or has_index name already exist\n";
84 case DB_INDEX_NOT_FOUND:{
85 _os <<
"Index doesn't exist\n" ;
89 case DB_PRIMARY_KEY_CONFLICT:{
90 _os <<
"DB PRIMARY CONFLICT!\n";
93 case DB_TABLE_NOT_EXIST:{
94 _os <<
"Table doesn't exist!\n";
97 _os <<
"DB ERROR: " << ERR_STR_MAP.at(dbErr) << std::endl;
102 void Interface::readFromFile(std::string &query) {
103 std::string file_path;
104 _os <<
"Input file name(relative path, end with ENTER): > ";
112 ifs.open(file_path, std::fstream::in);
114 _os <<
"File doesn't exist." << std::endl;
119 std::ostrstream str_buf;
121 while(str_buf && ifs.get(ch)){
124 query = str_buf.str();
130 hsql::SQLParserResult result;
131 const hsql::SQLStatement* statement;
133 _os <<
"TinySQL started.\nInput below.\n";
138 int loop_counter = 0;
141 std::getline(_is, query,
';');
143 if (query.front() ==
'\n') query.erase(0, 1);
144 if (query.back() ==
'\n') query.erase(query.size() - 1, 1);
146 if (query ==
"READ FILE"){
153 hsql::SQLParser::parse(query, &result);
155 if (result.isValid() && result.size() > 0){
159 for (
size_t k = 0; k < result.size(); ++k){
161 statement = result.getStatement(k);
162 switch (statement->type()) {
163 case hsql::kStmtSelect:{
164 const auto* select =
dynamic_cast<const hsql::SelectStatement*
>(statement);
166 std::string tableName = select->fromTable->getName();
168 std::vector<std::string> attr_names;
169 for (
auto sel : *(select->selectList)){
170 if (sel->isType(hsql::kExprStar))
continue;
171 attr_names.emplace_back(sel->name);
174 std::vector<Where> where_clauses;
175 parseWhere(select->whereClause, where_clauses);
180 sortAttrNames(attr_names, tableAttr);
182 catch(db_err_t &db_err){
186 std::vector<MemoryTuple> res;
189 executor->
selectRecord(tableName, attr_names, where_clauses, res);
191 catch (db_err_t &db_err){
196 if (attr_names.empty()) {
197 for(
int i = 0; i < tableAttr.
num; ++i){
198 attr_names.emplace_back(tableAttr.
name[i]);
204 case hsql::kStmtCreate :{
205 const auto* create =
dynamic_cast<const hsql::CreateStatement*
>(statement);
206 if (create->type == hsql::kCreateTable){
207 std::string tableName = create->tableName;
210 for (
auto stmt : *(create->columns)){
211 attr.
name[i] = stmt->name;
212 attr.type[i] = type_map.at(stmt->type.data_type);
218 for (
auto cons : *(create->tableConstraints)){
219 for (j = 0; j < i; ++j){
220 if (cons->type == hsql::ConstraintType::PrimaryKey){
221 if (attr.
name[j] == std::string(cons->columnNames->at(0))){
233 catch (db_err_t &db_err){
238 else if(create->type == hsql::kCreateIndex){
239 std::string tableName = create->tableName;
240 std::string indexName = create->indexName;
241 std::string attrName;
242 for(
auto col : *(create->indexColumns)){
247 executor->
createIndex(tableName, indexName, attrName);
249 catch (db_err_t &db_err){
255 _os <<
"Invalid operation" << std::endl;
260 case hsql::kStmtInsert :{
261 const auto* insert =
dynamic_cast<const hsql::InsertStatement*
>(statement);
263 if (insert->select ==
nullptr){
264 std::string tableName = insert->tableName;
266 for(
auto val : *(insert->values)){
267 row.emplace_back(val);
273 catch (db_err_t &db_err){
285 case hsql::kStmtDelete :{
286 const auto* del =
dynamic_cast<const hsql::DeleteStatement*
>(statement);
287 std::string tableName = del->tableName;
289 std::vector<Where> where_clause_dat;
290 parseWhere(del->expr, where_clause_dat);
294 catch (db_err_t &db_err){
301 case hsql::kStmtDrop :{
302 const auto* drop =
dynamic_cast<const hsql::DropStatement*
>(statement);
303 if (drop->type == hsql::kDropTable){
304 std::string tableName(drop->name);
307 else if(drop->type == hsql::kDropIndex){
308 std::string indexName(drop->indexName);
313 catch (db_err_t &db_err){
329 case hsql::kStmtShow :{
330 const auto* show =
dynamic_cast<const hsql::ShowStatement*
>(statement);
335 _os <<
">> Unsupported valid SQL command. May support later. \n";
338 _os <<
">>> Success." << std::endl;
340 if (result.size() > 1){
341 _os <<
"---------------------------------------------\n";
342 _os <<
">>> File query successfully executed!\n";
344 _os <<
"Executed " << result.size() <<
" queries in " << timer.getTimerMilliSec() <<
" ms.\n";
347 for (
auto character : query){
348 if (character !=
' '){
349 _os <<
">>" << result.errorMsg() << std::endl;
356 _os <<
">>Execute: " << loop_counter <<
" queries." << std::endl;
357 _os <<
">>Goodbye." << std::endl;
362 for (
const auto& tuple : tuples){
363 for (
auto dat : tuple){
372 for(
const auto& i : attr_names){
373 _os << std::setw(6) <<
"|" << std::setw(12) << i;
379 _os <<
"------------------";
383 for(
const auto& tuple : tuples){
384 for(
auto dat : tuple){
385 if(dat.type==(BASE_SQL_ValType::INT)){
386 _os <<std::setw(6)<<
"|"<<std::setw(12)<<dat.data_meta.i_data;
388 else if(dat.type==BASE_SQL_ValType::FLOAT){
389 _os <<std::setw(6)<<
"|"<<std::setw(12)<<dat.data_meta.f_data;
392 _os <<std::setw(6)<<
"|"<<std::setw(12)<<dat.data_meta.s_data;
396 _os <<
" Output " << tuples.size() <<
" records." << std::endl;