tinySQL  0.1
A self-contained database management system
interface.h
1 //
2 // Created by luke on 22-6-3.
3 //
4 
5 #ifndef TINYSQL_TEST_INTERFACE_H
6 #define TINYSQL_TEST_INTERFACE_H
7 
8 #include "API/exec_engine.h"
9 #include "hsql/SQLParser.h"
10 #include <iostream>
11 
16 class Interface{
17 public:
24  Interface(std::istream &is, std::ostream &os):_is(is), _os(os){
25  executor = new Exec_Engine();
26  }
27  ~Interface(){
28  delete executor;
29  }
34  void run();
40  void showErrMsg(db_err_t &dbErr);
46  void serialOutput(std::vector<MemoryTuple> &tuples);
47 
54  void serialOutput(std::vector<MemoryTuple> &tuples, std::vector<std::string> &attr_names);
55 
56 private:
57  Exec_Engine *executor;
58  std::istream &_is;
59  std::ostream &_os;
60  void parseWhere(hsql::Expr *Clause, std::vector<Where> &where_vec);
65  void readFromFile(std::string &query);
66 };
67 
68 #endif //TINYSQL_TEST_INTERFACE_H
exec_engine.h
Interface::showErrMsg
void showErrMsg(db_err_t &dbErr)
Display the error message thrown.
Definition: interface.cpp:59
Interface::serialOutput
void serialOutput(std::vector< MemoryTuple > &tuples)
Serialize the records to a standard output.
Definition: interface.cpp:361
Interface::run
void run()
Should be called after initialized.
Definition: interface.cpp:128
Interface
The interface of the entire database.
Definition: interface.h:16
Interface::Interface
Interface(std::istream &is, std::ostream &os)
Construct a new Interface object.
Definition: interface.h:24
Exec_Engine
Execute commands from the interface.
Definition: exec_engine.h:23