tinySQL  0.1
A self-contained database management system
bpTree_block.h
1 #ifndef BPTREE_BLOCK_H
2 #define BPTREE_BLOCK_H
3 
4 #include "buffer/buffer_manager.h"
5 #include "share/config.h"
6 
7 #include <cassert>
8 
9 #define KEY_VALUE_T_DECLARE template<typename key_t, typename value_t>
10 #define MAPPING_T std::pair<key_t, value_t>
11 
12 #define LEAF_HEADER_SIZE 24
13 #define INTERNAL_HEADER_SIZE 24
14 #define MAX_LEAF_SIZE ((BLOCKSIZE - LEAF_HEADER_SIZE) / sizeof(std::pair<key_t, value_t>) - 1)
15 #define MAX_INTERNAL_SIZE ((BLOCKSIZE - INTERNAL_HEADER_SIZE) / sizeof(std::pair<key_t, value_t>) - 1)
16 #define INVALID_BLOCK_ID -1
17 
18 enum blockType_t{
19  INVALID_BLOCK,
20  LEAF_BLOCK,
21  INTERNAL_BLOCK
22 };
23 
39 struct bpTree_Block{
46  void init(blockId_t myBId, blockId_t parentId){
47  _blockType = INVALID_BLOCK;
48  _parent_block_id = parentId;
49  _block_id = myBId;
50  }
51 
52  bool isLeaf() const{
53  return _blockType == LEAF_BLOCK;
54  }
55 
56  blockType_t _blockType;
57  blockId_t _parent_block_id;
58  blockId_t _block_id;
59  db_size_t _size;
60  db_size_t _max_size;
61  blockId_t _next_block_id;
62 
63 };
64 
69 KEY_VALUE_T_DECLARE
70 struct bpTree_Leaf : public bpTree_Block{
77  void init(blockId_t myBId, blockId_t parentId, blockId_t next_block_id){
78  bpTree_Block::init(myBId, parentId);
79  bpTree_Block::_blockType = LEAF_BLOCK;
80  bpTree_Block::_next_block_id = next_block_id;
81  bpTree_Block::_size = 0;
82  bpTree_Block::_max_size = MAX_LEAF_SIZE;
83  }
84 
92  db_size_t leaf_biSearch(const key_t key){
93  int left = 0; // Every pair is used.
94  if (_size == 0)
95  return 0;
96  int right = _size - 1;
97  int mid;
98  while(left <= right){
99  mid = (left + right) / 2;
100  if (_k_rowid_pair[mid].first < key){
101  left = mid + 1;
102  }
103  else if (_k_rowid_pair[mid].first == key){
104  return mid;
105  }
106  else{
107  right = mid - 1;
108  }
109  }
110  assert(left >= 0);
111  return (db_size_t)left;
112  }
113 
114  MAPPING_T _k_rowid_pair[MAX_LEAF_SIZE + 1];
115 };
116 
121 KEY_VALUE_T_DECLARE
123 public:
129  void init(blockId_t myBId, blockId_t parentId){
130  bpTree_Block::init(myBId, parentId);
131  bpTree_Block::_blockType = INTERNAL_BLOCK;
132 
133  bpTree_Block::_size = 0;
134  bpTree_Block::_max_size = MAX_INTERNAL_SIZE;
135  }
136 
142  db_size_t internal_biSearch(const key_t key){
143  db_size_t left = 1; // The first _k_child_pair doesn't contain a valid key.
144  db_size_t right = _size - 1;
145  db_size_t mid;
146  while(left <= right){
147  mid = (left + right + 1) / 2;
148  if (_k_child_pair[mid].first < key){
149  left = mid + 1;
150  }
151  else if (_k_child_pair[mid].first == key){
152  return mid;
153  }
154  else{
155  right = mid - 1;
156  }
157  }
158  return right;
159  }
160 
161  MAPPING_T _k_child_pair[MAX_INTERNAL_SIZE + 1];
162 };
163 
164 
165 
166 #endif
bpTree_Internal::internal_biSearch
db_size_t internal_biSearch(const key_t key)
Definition: bpTree_block.h:142
bpTree_Block::init
void init(blockId_t myBId, blockId_t parentId)
Definition: bpTree_block.h:46
bpTree_Leaf
The storage detail of a leaf node of b-plus tree.
Definition: bpTree_block.h:70
bpTree_Internal::init
void init(blockId_t myBId, blockId_t parentId)
Definition: bpTree_block.h:129
bpTree_Leaf::leaf_biSearch
db_size_t leaf_biSearch(const key_t key)
Definition: bpTree_block.h:92
bpTree_Internal
The storage detail of an internal node of b-plus tree.
Definition: bpTree_block.h:122
bpTree_Leaf::init
void init(blockId_t myBId, blockId_t parentId, blockId_t next_block_id)
Definition: bpTree_block.h:77
bpTree_Leaf::_k_rowid_pair
MAPPING_T _k_rowid_pair[MAX_LEAF_SIZE+1]
One extra space for spanning.
Definition: bpTree_block.h:114
bpTree_Internal::_k_child_pair
MAPPING_T _k_child_pair[MAX_INTERNAL_SIZE+1]
One extra space for spanning.
Definition: bpTree_block.h:161
bpTree_Block
The storage detail of the header of each page in index files.
Definition: bpTree_block.h:39