tinySQL
0.1
A self-contained database management system
|
17 #include "share/data_t.h"
19 #include "index/Index.h"
20 #include "buffer/buffer_manager.h"
24 #define ALL_TABLE_PATH PATH::CATALOG_PATH+"All_TableNames"
52 void UpdateIndex(
const std::string& table_name,
const std::string& attr_name,
const std::string& index_name);
59 void DropTable(
const std::string& table_name);
67 void DropIndex(
const std::string& table_name,
const std::string& index_name);
76 bool existTable(
const std::string& table_name);
86 bool existAttribute(
const std::string& table_name,
const std::string& attr_name);
104 std::string getIndexName(
const std::string& table_name,
const std::string& attr_name);
114 std::string
Index2Attr(
const std::string& table_name,
const std::string& attr_name,
const std::string& index_name);
121 void ShowTable(
const std::string& table_name);
125 std::string indexName2table(std::string &index_name)
const{
126 auto iter = indexName2tableName.find(index_name);
127 if (iter == indexName2tableName.end())
throw DB_INDEX_NOT_FOUND;
132 std::map<std::string, std::string> indexName2tableName;
140 void rewriteAttribute(
const std::string &table_name,
const Attribute &attr,
const Index &index);
144 std::set<std::string> tableNames;
bool existTable(const std::string &table_name)
Judge if the table exists.
Index getIndex(const std::string &table_name)
Get the Index object from table name.
Manage all the table names, attritbutes, and index existence.
Buffer manager is an abstraction of memory on computer for modules at higher level.
void UpdateIndex(const std::string &table_name, const std::string &attr_name, const std::string &index_name)
Update Index.
void CreateTable(const std::string &table_name, Attribute &attr)
Create a Table object.
void ShowTable(const std::string &table_name)
std::string Index2Attr(const std::string &table_name, const std::string &attr_name, const std::string &index_name)
void DropIndex(const std::string &table_name, const std::string &index_name)
Delete an index file.
bool existAttribute(const std::string &table_name, const std::string &attr_name)
Judge if an attribute in of a table exists.
The attributes for a schema.
Attribute getAttribute(const std::string &table_name)
Get the Attribute from table name.
void DropTable(const std::string &table_name)
Delete a table.
Index desciption for a table.