tinySQL  0.1
A self-contained database management system
catalog.h
1 
14 #ifndef CATALOG_H
15 #define CATALOG_H
16 
17 #include "share/data_t.h"
18 #include <string>
19 #include "index/Index.h"
20 #include "buffer/buffer_manager.h"
21 #include <set>
22 
23 
24 #define ALL_TABLE_PATH PATH::CATALOG_PATH+"All_TableNames"
25 
31 public:
33 
34  ~CatalogManager();
43  void CreateTable(const std::string& table_name, Attribute &attr);
44 
52  void UpdateIndex(const std::string& table_name,const std::string& attr_name,const std::string& index_name);
53 
59  void DropTable(const std::string& table_name);
60 
67  void DropIndex(const std::string& table_name,const std::string& index_name);
68 
76  bool existTable(const std::string& table_name);
77 
86  bool existAttribute(const std::string& table_name, const std::string& attr_name);
87 
94  Attribute getAttribute(const std::string& table_name);
95 
102  Index getIndex(const std::string& table_name);
103 
104  std::string getIndexName(const std::string& table_name, const std::string& attr_name);
105 
114  std::string Index2Attr(const std::string& table_name, const std::string& attr_name,const std::string& index_name);
115 
121  void ShowTable(const std::string& table_name);
122 
123  void ShowAllTable();
124 
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;
128  return iter->second;
129  }
130 
131 private:
132  std::map<std::string, std::string> indexName2tableName;
133 
140  void rewriteAttribute(const std::string &table_name, const Attribute &attr, const Index &index);
141 
142 private:
143  BufferManager *_bfm;
144  std::set<std::string> tableNames;
145 };
146 
147 #endif
CatalogManager::existTable
bool existTable(const std::string &table_name)
Judge if the table exists.
Definition: Catalog_Manager.cpp:65
CatalogManager::getIndex
Index getIndex(const std::string &table_name)
Get the Index object from table name.
Definition: Catalog_Manager.cpp:240
CatalogManager
Manage all the table names, attritbutes, and index existence.
Definition: catalog.h:30
BufferManager
Buffer manager is an abstraction of memory on computer for modules at higher level.
Definition: buffer_manager.h:69
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
CatalogManager::ShowTable
void ShowTable(const std::string &table_name)
Definition: Catalog_Manager.cpp:372
CatalogManager::Index2Attr
std::string Index2Attr(const std::string &table_name, const std::string &attr_name, const std::string &index_name)
Definition: Catalog_Manager.cpp:353
CatalogManager::DropIndex
void DropIndex(const std::string &table_name, const std::string &index_name)
Delete an index file.
Definition: Catalog_Manager.cpp:213
CatalogManager::existAttribute
bool existAttribute(const std::string &table_name, const std::string &attr_name)
Judge if an attribute in of a table exists.
Definition: Catalog_Manager.cpp:70
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
Index
Index desciption for a table.
Definition: data_t.h:185