tinySQL  0.1
A self-contained database management system
index.cpp
1 #include "index/Index.h"
2 #include <cstdio>
3 
4 namespace fs = std::filesystem;
5 
6 IndexManager::IndexManager(BufferManager* bfm): _bfm(bfm), _index_tree(bfm) {}
7 
8 void IndexManager::CreateIndex(const std::string& indexName) {
9  std::string fileName = PATH::INDEX_PATH + indexName;
10  _bfm->createEmptyFile(fileName);
11 
12  pageId_t header_id;
13  char* raw = _bfm->getPage(fileName, 0, header_id);
14  _bfm->modifyPage(header_id);
15  bpTree_Block* b = reinterpret_cast<bpTree_Block*>(raw);
16 
17  b->init(0, INVALID_BLOCK_ID);
18  _bfm->flushPage(header_id);
19 }
20 
21 void IndexManager::DropIndex(const std::string &indexName) {
22  std::string file_path = PATH::INDEX_PATH + indexName;
23  _bfm->removeFile(file_path);
24 }
25 
26 void IndexManager::InsertId(const std::string &indexName, const Data &Key, const Index_t &rec_ptr) {
27  std::string fileName = PATH::INDEX_PATH + indexName;
28  // TODO : Be more efficient by using same tree for multiple times
29  if (_index_tree.getName() != fileName){
30  _index_tree.InitRoot(fileName);
31  }
32  _index_tree.Insert(Key, rec_ptr);
33 }
34 
35 void IndexManager::UpdateId(const std::string &indexName, const Data &key, const Index_t &new_rec_ptr) {
36  std::string fileName = PATH::INDEX_PATH + indexName;
37  if (_index_tree.getName() != fileName){
38  _index_tree.InitRoot(fileName); // May throw here
39  }
40 
41  _index_tree.UpdateValue(key, new_rec_ptr); // May throw here
42 }
43 
44 void IndexManager::UpdateKey(const std::string &indexName, const Data &key, const Data &new_key) {
45  std::string fileName = PATH::INDEX_PATH + indexName;
46  if (_index_tree.getName() != fileName){
47  _index_tree.InitRoot(fileName); // May throw here
48  }
49 
50  _index_tree.UpdateKey(key, new_key); // May throw here
51 }
52 
53 bool IndexManager::CheckExistance(const std::string &indexName, const Data &key, Index_t &id) {
54  std::string fileName = PATH::INDEX_PATH + indexName;
55  if (_index_tree.getName() != fileName){
56  _index_tree.InitRoot(fileName); // TODO : Flush all pages when init.
57  }
58  bool exists = false;
59  try {
60  exists = _index_tree.FindValue(key, id);
61  }
62  catch(db_err_t& db_err){
63  if (db_err == DB_BPTREE_EMPTY) exists = false; // When the index file is empty
64  else throw db_err;
65  }
66  return exists;
67 }
68 
69 bool IndexManager::FindId(const std::string &indexName, const Data &key, Index_t &result) {
70  std::string fileName = PATH::INDEX_PATH + indexName;
71  if (_index_tree.getName() != fileName){
72  _index_tree.InitRoot(fileName); // May throw here
73  }
74  return _index_tree.FindValue(key, result); // May throw here
75 }
76 
77 bool IndexManager::FindId(const std::string &indexName, const Data &lower_key, const Data &upper_key, std::vector<Index_t> &result) {
78  std::string fileName = PATH::INDEX_PATH + indexName;
79  if (_index_tree.getName() != fileName){
80  _index_tree.InitRoot(fileName); // May throw here
81  }
82  return _index_tree.FindRange(lower_key, upper_key, result);
83 }
84 
85 void IndexManager::DeleteId(const std::string &indexName, const Data &key) {
86  std::string fileName = PATH::INDEX_PATH + indexName;
87  if (_index_tree.getName() != fileName){
88  _index_tree.InitRoot(fileName);
89  }
90  _index_tree.Delete(key);
91 }
92 
93 // db_err_t IndexManager::CreateIndex()
Bp_tree::Delete
bool Delete(const key_t &key)
Basic deletion from the tree.
Bp_tree::Insert
bool Insert(const key_t &key, const value_t &val)
Basic insertion to the tree.
Bp_tree::InitRoot
void InitRoot(std::string indexFileName)
Bp_tree::FindValue
bool FindValue(const key_t &key, value_t &result) const
Find the values by key (normally, we may say "pointers" for "values")
bpTree_Block::init
void init(blockId_t myBId, blockId_t parentId)
Definition: bpTree_block.h:46
BufferManager
Buffer manager is an abstraction of memory on computer for modules at higher level.
Definition: buffer_manager.h:69
Bp_tree::UpdateValue
bool UpdateValue(const key_t &key, const value_t &new_val)
Update a certain value.
IndexManager::FindId
bool FindId(const std::string &indexName, const Data &key, Index_t &result)
Find the Index based on the key (cell)
Definition: index.cpp:69
IndexManager::DeleteId
void DeleteId(const std::string &indexName, const Data &key)
Delete an has_index of a certain key.
Definition: index.cpp:85
IndexManager::InsertId
void InsertId(const std::string &indexName, const Data &Key, const Index_t &rec_ptr)
Insert a key into the has_index table The user should make sure that the file exists....
Definition: index.cpp:26
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
IndexManager::UpdateId
void UpdateId(const std::string &indexName, const Data &key, const Index_t &new_rec_ptr)
Update the pointer of a record in the has_index file.
Definition: index.cpp:35
BufferManager::flushPage
int flushPage(pageId_t page_id)
核心函数之一。内存和磁盘交互的接口。
Definition: buffer_manager.cpp:227
BufferManager::modifyPage
void modifyPage(int page_id)
标记页是否被修改
Definition: buffer_manager.cpp:155
BufferManager::getPage
char * getPage(const std::string &file_name, int block_id)
获取一页
Definition: buffer_manager.cpp:130
bpTree_Block
The storage detail of the header of each page in index files.
Definition: bpTree_block.h:39
Bp_tree::FindRange
bool FindRange(const key_t &lower_key, const key_t &upper_key, std::vector< value_t > &result) const
Find the value(pointer) based on the given lower and upper key.
Bp_tree::UpdateKey
bool UpdateKey(const key_t &former_key, const key_t &new_key)
Update a certain key.
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
Data
Basic cell element in a tuples.
Definition: data_t.h:44