tinySQL  0.1
A self-contained database management system
exec_engine.cpp
1 #include "API/exec_engine.h"
2 #include <algorithm>
3 
4 void Exec_Engine::createTable(std::string &table_name, Attribute &attr){
5  catalog_manager.CreateTable(table_name, attr); // Must run this first
6  record_manager.CreateTableFile(table_name);
7 }
8 
9 void Exec_Engine::dropTable(std::string &table_name){
10  catalog_manager.DropTable(table_name); // Must run this first
11  record_manager.DropTableFile(table_name);
12 }
13 
14 void Exec_Engine::createIndex(std::string &table_name, std::string &index_name, std::string &attr_name){
15  catalog_manager.UpdateIndex(table_name,attr_name,index_name);
16  index_manager.CreateIndex(index_name);
17  record_manager.CreateIndex(table_name, attr_name);
18 }
19 
20 void Exec_Engine::dropIndex(std::string &index_name){
21  std::string table_name = catalog_manager.indexName2table(index_name); // May throw here
22  catalog_manager.DropIndex(table_name, index_name); // Must run this first
23  index_manager.DropIndex(index_name);
24 }
25 
26 
27 void Exec_Engine::deleteRecord(std::string &table_name, std::vector<Where>& wheres){
28  record_manager.DeleteRecord(table_name, wheres);
29 }
30 
31 void Exec_Engine::selectRecord(std::string &table_name, std::vector<std::string>& attr_names, std::vector<Where>& wheres, std::vector<MemoryTuple>& result){
32  if(attr_names.empty()){
33  if (wheres.empty()){
34  result = record_manager.SelectRecord(table_name);
35  }
36  else{
37  result = record_manager.SelectRecord(table_name, wheres);
38  }
39  }
40  else {
41  if (wheres.empty()){
42  result = record_manager.SelectRecord(table_name, attr_names);
43  }
44  else{
45  result = record_manager.SelectRecord(table_name, attr_names, wheres);
46  }
47  }
48  std::sort(result.begin(), result.end());
49 }
50 
51 Attribute Exec_Engine::getTableAttributes(const std::string &table_name) {
52  return catalog_manager.getAttribute(table_name);
53 }
54 
55 void Exec_Engine::insertRecord(std::string &table_name, MemoryTuple &row){
56  record_manager.InsertRecord(table_name, row);
57 }
exec_engine.h
Exec_Engine::deleteRecord
void deleteRecord(std::string &table_name, std::vector< Where > &data)
Delete records by conditions.
Definition: exec_engine.cpp:27
RecordManager::DropTableFile
void DropTableFile(const std::string &table_name)
Drop a Table File object.
Definition: record_manager.cpp:50
RecordManager::CreateIndex
void CreateIndex(std::string table_name, const std::string &target_attr)
Create a Index on an attribute that has already exists.
Definition: record_manager.cpp:521
CatalogManager::UpdateIndex
void UpdateIndex(const std::string &table_name, const std::string &attr_name, const std::string &index_name)
Update Index.
Definition: Catalog_Manager.cpp:172
CatalogManager::CreateTable
void CreateTable(const std::string &table_name, Attribute &attr)
Create a Table object.
Definition: Catalog_Manager.cpp:113
RecordManager::CreateTableFile
void CreateTableFile(const std::string &table_name)
Create a Table File object.
Definition: record_manager.cpp:41
RecordManager::SelectRecord
std::vector< MemoryTuple > SelectRecord(std::string table_name)
返回整张表
Definition: record_manager.cpp:276
Exec_Engine::createTable
void createTable(std::string &table_name, Attribute &attr)
Create a Table.
Definition: exec_engine.cpp:4
Exec_Engine::selectRecord
void selectRecord(std::string &table_name, std::vector< std::string > &attr_names, std::vector< Where > &wheres, std::vector< MemoryTuple > &result)
Select records by conditions.
Definition: exec_engine.cpp:31
Exec_Engine::getTableAttributes
Attribute getTableAttributes(const std::string &table_name)
Get the Table Attributes.
Definition: exec_engine.cpp:51
IndexManager::DropIndex
void DropIndex(const std::string &indexName)
Drop an Index of an attr. User should make sure the table exists.
Definition: index.cpp:21
RecordManager::DeleteRecord
int DeleteRecord(std::string table_name)
删除对应表中所有记录(不删除表文件)
Definition: record_manager.cpp:151
Exec_Engine::createIndex
void createIndex(std::string &table_name, std::string &index_name, std::string &attr_name)
Create Index on a table's attribute.
Definition: exec_engine.cpp:14
Exec_Engine::dropTable
void dropTable(std::string &table_name)
Delete a Table.
Definition: exec_engine.cpp:9
CatalogManager::DropIndex
void DropIndex(const std::string &table_name, const std::string &index_name)
Delete an index file.
Definition: Catalog_Manager.cpp:213
Exec_Engine::dropIndex
void dropIndex(std::string &index_name)
Delete the index of a certain index on a table.
Definition: exec_engine.cpp:20
Attribute
The attributes for a schema.
Definition: data_t.h:172
CatalogManager::getAttribute
Attribute getAttribute(const std::string &table_name)
Get the Attribute from table name.
Definition: Catalog_Manager.cpp:285
CatalogManager::DropTable
void DropTable(const std::string &table_name)
Delete a table.
Definition: Catalog_Manager.cpp:164
RecordManager::InsertRecord
void InsertRecord(std::string table_name, const MemoryTuple &tuple)
向对应表中插入一条记录
Definition: record_manager.cpp:61
IndexManager::CreateIndex
void CreateIndex(const std::string &indexName)
Create an Index of an attr. Actually creates an has_index file with a head block. File name conventio...
Definition: index.cpp:8
Exec_Engine::insertRecord
void insertRecord(std::string &table_name, MemoryTuple &row)
Insert a piece of record.
Definition: exec_engine.cpp:55