tinySQL
0.1
A self-contained database management system
|
1 #include "index/Index.h"
4 namespace fs = std::filesystem;
6 IndexManager::IndexManager(
BufferManager* bfm): _bfm(bfm), _index_tree(bfm) {}
9 std::string fileName = PATH::INDEX_PATH + indexName;
10 _bfm->createEmptyFile(fileName);
13 char* raw = _bfm->
getPage(fileName, 0, header_id);
17 b->
init(0, INVALID_BLOCK_ID);
22 std::string file_path = PATH::INDEX_PATH + indexName;
23 _bfm->removeFile(file_path);
27 std::string fileName = PATH::INDEX_PATH + indexName;
29 if (_index_tree.getName() != fileName){
32 _index_tree.
Insert(Key, rec_ptr);
36 std::string fileName = PATH::INDEX_PATH + indexName;
37 if (_index_tree.getName() != fileName){
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){
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){
62 catch(db_err_t& db_err){
63 if (db_err == DB_BPTREE_EMPTY) exists =
false;
70 std::string fileName = PATH::INDEX_PATH + indexName;
71 if (_index_tree.getName() != fileName){
74 return _index_tree.
FindValue(key, result);
78 std::string fileName = PATH::INDEX_PATH + indexName;
79 if (_index_tree.getName() != fileName){
82 return _index_tree.
FindRange(lower_key, upper_key, result);
86 std::string fileName = PATH::INDEX_PATH + indexName;
87 if (_index_tree.getName() != fileName){
bool Delete(const key_t &key)
Basic deletion from the tree.
bool Insert(const key_t &key, const value_t &val)
Basic insertion to the tree.
void InitRoot(std::string indexFileName)
bool FindValue(const key_t &key, value_t &result) const
Find the values by key (normally, we may say "pointers" for "values")
void init(blockId_t myBId, blockId_t parentId)
Buffer manager is an abstraction of memory on computer for modules at higher level.
bool UpdateValue(const key_t &key, const value_t &new_val)
Update a certain value.
bool FindId(const std::string &indexName, const Data &key, Index_t &result)
Find the Index based on the key (cell)
void DeleteId(const std::string &indexName, const Data &key)
Delete an has_index of a certain key.
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....
void DropIndex(const std::string &indexName)
Drop an Index of an attr. User should make sure the table exists.
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.
int flushPage(pageId_t page_id)
核心函数之一。内存和磁盘交互的接口。
void modifyPage(int page_id)
标记页是否被修改
char * getPage(const std::string &file_name, int block_id)
获取一页
The storage detail of the header of each page in index files.
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.
bool UpdateKey(const key_t &former_key, const key_t &new_key)
Update a certain key.
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...
Basic cell element in a tuples.