tinySQL  0.1
A self-contained database management system
record_manager.cpp
1 
11 #include "record/record_manager.h"
12 #include <algorithm>
13 
14 bool judge(const Data& a , const Data& b , Operator relation){
15  switch(relation) {
16  case Operator::LT:{
17  return a < b;
18  }
19  case Operator::LE:{
20  return a <= b;
21  }
22  case Operator::EQ:{
23  return a == b;
24  }
25  case Operator::GE:{
26  return a >= b;
27  }
28  case Operator::GT:{
29  return a > b;
30  }
31  case Operator::NE:{
32  return a != b;
33  }
34  }
35 }
36 
37 //输入:表名
38 //输出:void
39 //功能:建立表文件
40 //异常:无异常处理(由catalog manager处理)
41 void RecordManager::CreateTableFile(const std::string& table_name) {
42  auto table_path = PATH::RECORD_PATH + table_name;
43  buffer_manager->createEmptyFile(table_path);
44 }
45 
46 //输入:表名
47 //输出:void
48 //功能:删除表文件
49 //异常:无异常处理(由catalog manager处理)
50 void RecordManager::DropTableFile(const std::string& table_name) {
51  std::string table_path = PATH::RECORD_PATH + table_name;
52  buffer_manager->removeFile(table_path);
53 }
54 
55 //输入:表名,一个元组
56 //输出:void
57 //功能:向对应表中插入一条记录
58 //异常:如果元组类型不匹配,抛出tuple_type_conflict异常。如果
59 //主键冲突,抛出primary_key_conflict异常。如果unique属性冲突,
60 //抛出unique_conflict异常。如果表不存在,抛出table_not_exist异常。
61 void RecordManager::InsertRecord(std::string table_name , const MemoryTuple& tuple) {
62  std::string tmp_name = table_name;
63  table_name = PATH::RECORD_PATH + table_name;
64 // CatalogManager catalog_manager(buffer_manager);
65  //检测表是否存在
66  if (!catalog_manager->existTable(tmp_name)) {
67  throw DB_TABLE_NOT_EXIST;
68  }
69  Attribute attr = catalog_manager->getAttribute(tmp_name);
70  //检测插入的元组的各个属性是否合法
71  for (int i = 0; i < tuple.size(); i++) {
72  if (tuple[i].type != attr.type[i])
73  throw DB_TUPLE_TYPE_CONFLICT;
74  }
75 
76 // std::vector<MemoryTuple> tuples = SelectRecord(tmp_name);
77 
78  //检测是否存在主键冲突
79  if (attr.primary_Key >= 0) {
80  if (isConflict(tuple, tmp_name, attr.primary_Key))
81  throw DB_PRIMARY_KEY_CONFLICT;
82  }
83  //检测是否存在unique冲突
84  for (int i = 0;i < attr.num;i++) {
85  if (attr.is_unique[i]) {
86  if (isConflict(tuple, tmp_name, i))
87  throw DB_UNIQUE_CONFLICT;
88  }
89  }
90 
91  //异常检测完成
92 
93  int block_num = getBlockNum(table_name);
94  //处理表文件大小为0的特殊情况
95  if (block_num <= 0)
96  block_num = 1;
97 
98  //获取表的最后一块的句柄
99  pageId_t page_id;
100  char* p = buffer_manager->getPage(table_name , block_num - 1, page_id);
101  record_page* r_page;
102  int block_id;
103  r_page = reinterpret_cast<record_page*> (p);
104  if( p[0] == '\0') // Nothing in the page, i.e., empty file.
105  {
106  block_id = block_num - 1;
107 // memcpy(r_page->tuples + r_page->tuple_num, tuple, tuple_bytes);
108  r_page->tuple_num = 1;
109  r_page->tuple_at(0).serializeFromMemory(tuple);
110  r_page->record_bytes = sizeof(record_page) + r_page->tuple_at(0).getBytes();
111  buffer_manager->modifyPage(page_id);
112  buffer_manager->flushPage(page_id);
113  }
114  else if(r_page->record_bytes + r_page->tuple_at(0).getBytes() <= PAGESIZE){
115  block_id = block_num - 1;
116 // memcpy(r_page->tuples + r_page->tuple_num, tuple, tuple_bytes);
117  r_page->tuple_num += 1;
118  r_page->tuple_at(r_page->tuple_num - 1).serializeFromMemory(tuple);
119  r_page->record_bytes += r_page->tuple_at(0).getBytes();
120  buffer_manager->modifyPage(page_id);
121  }
122  else{ // Create a new page
123  block_id = block_num;
124  pageId_t new_pId;
125  p = buffer_manager->getPage(table_name , block_num, new_pId);
126  r_page = reinterpret_cast<record_page*> (p);
127  r_page->tuple_num = 1;
128  r_page->tuple_at(0).serializeFromMemory(tuple);
129  r_page->record_bytes = sizeof(record_page) + r_page->tuple_at(0).getBytes();
130 // memcpy(r_page->tuples + r_page->tuple_num - 1, tuple, tuple_bytes);
131  buffer_manager->modifyPage(new_pId);
132  buffer_manager->flushPage(new_pId); // Make sure that the file size is correct. --CGF
133  }
134 
135  for(int i = 0; i < attr.num; i++)
136  {
137  if(attr.has_index[i])
138  {
139  std::string attr_name = attr.name[i];
140  std::string index_name = catalog_manager->getIndexName(tmp_name, attr_name);
141  Data d = tuple.at(i);
142  index_manager->InsertId(index_name , d, block_id * 1000 + r_page->tuple_num - 1);
143  }
144  }
145 }
146 
147 // 输入:表名
148 // 输出:int(删除的记录数)
149 // 功能:删除对应表中所有记录(不删除表文件)
150 // 异常:如果表不存在,抛出table_not_exist异常
151 int RecordManager::DeleteRecord(std::string table_name) {
152  std::string tmp_name = table_name;
153  table_name = PATH::RECORD_PATH + table_name;
154  //检测表是否存在
155  if (!catalog_manager->existTable(tmp_name)) {
156  throw DB_TABLE_NOT_EXIST;
157  }
158  //获取文件所占块的数量
159  // int block_num = getFileSize(table_name) / PAGESIZE;
160  // 改为
161  int block_num = getBlockNum(table_name);
162  //表文件大小为0时直接返回
163  if (block_num <= 0)
164  return 0;
165  Attribute attr = catalog_manager->getAttribute(tmp_name);
166  int count = 0;
167  //遍历所有块
168  for (int i = 0;i < block_num;i++) {
169  char* p = buffer_manager->getPage(table_name , i);
170  record_page* r;
171  r = reinterpret_cast<record_page*> (p);
172  for(int k = 0; k < r->record_bytes; k++)
173  {
174  r->tuple_at(i).setDeleted();
175  for(int j = 0; j < attr.num; j++)
176  {
177  if(attr.has_index[j]){
178  std::string attr_name = attr.name[j];
179  std::string index_name = catalog_manager->getIndexName(tmp_name, attr_name);
180  std::vector<Data> d = r->tuple_at(k).getData();
181  index_manager->DeleteId(index_name , d[j]);
182  }
183  }
184  count++;
185  }
186 
187  //将块写回表文件
188  int page_id = buffer_manager->getPageId(table_name , i);
189  buffer_manager->modifyPage(page_id);
190  }
191  return count;
192 }
193 
194 //输入:表名,目标属性,一个Where类型的对象
195 //输出:int(删除的记录数)
196 //功能:删除对应表中所有目标属性值满足Where条件的记录
197 //异常:如果表不存在,抛出table_not_exist异常。如果属性不存在,抛出attribute_not_exist异常。
198 //如果Where条件中的两个数据类型不匹配,抛出data_type_conflict异常。
199 int RecordManager::DeleteRecord(std::string table_name , std::vector<Where> where) {
200  std::string table_path = PATH::RECORD_PATH + table_name;
201  //检测表是否存在
202  if (!catalog_manager->existTable(table_name)) {
203  throw DB_TABLE_NOT_EXIST;
204  }
205  Attribute attr = catalog_manager->getAttribute(table_name);
206  int index = -1;
207  bool flag = false;
208  std::vector<Index_t> result_record_id;
209  //获取目标属性对应的编号
210  for(int j = 0; j < where.size(); j++)
211  {
212  for (int i = 0;i < attr.num;i++) {
213  if (attr.name[i] == where[j].attr_name) {
214  index = i;
215  if (attr.has_index[i])
216  flag = true;
217  break;
218  }
219  }
220  //目标属性不存在,抛出异常
221  if (index == -1) {
222  throw DB_ATTRIBUTE_NOT_EXIST;
223  }
224  //where条件中的两个数据的类型不匹配,抛出异常
225  else if (attr.type[index] != where[j].data.type) {
226  throw DB_TYPE_ERR;
227  }
228 
229  //异常处理完成
230 
231  if(j == 0){
232  if (flag && where[j].relation_operator != Operator::NE) {
233  //通过索引获取满足条件的记录所在的块号
234  searchWithIndex(table_name , where[j].attr_name , where[j] , result_record_id);
235  }
236  else {
237  int block_num = getBlockNum(table_path);
238  //文件大小为0,直接返回
239  if (block_num <= 0)
240  return 0;
241  //遍历所有的块
242  for (int i = 0;i < block_num;i++) {
243  DeleteInBlock(table_name , i , attr , index , where[j] , result_record_id);
244  }
245  }
246  }
247  else{
248  std::vector<Index_t> tmp_record_id;
249  if (flag && where[j].relation_operator != Operator::NE) {
250  //通过索引获取满足条件的记录所在的块号
251  searchWithIndex(table_name , where[j].attr_name , where[j] , tmp_record_id);
252  }
253  else {
254  int block_num = getBlockNum(table_path);
255  //文件大小为0,直接返回
256  if (block_num <= 0)
257  return 0;
258  //遍历所有的块
259  for (int i = 0;i < block_num;i++) {
260  DeleteInBlock(table_name , i , attr , index , where[j] , tmp_record_id);
261  }
262  }
263  result_record_id = Union(result_record_id, tmp_record_id);
264  tmp_record_id.resize(0);
265  }
266  }
267 
268  return conditionDeleteInBlock(table_name, result_record_id);
269 }
270 
271 
272 //输入:表名
273 //输出:Table类型对象
274 //功能:返回整张表
275 //异常:如果表不存在,抛出table_not_exist异常
276 std::vector<MemoryTuple> RecordManager::SelectRecord(std::string table_name) {
277  std::string tmp_name = table_name;
278  table_name = PATH::RECORD_PATH + table_name;
279  //检测表是否存在
280  if (!catalog_manager->existTable(tmp_name)) {
281  throw DB_TABLE_NOT_EXIST;
282  }
283  int block_num = getBlockNum(table_name);
284  //获取表的属性
285  std::vector<MemoryTuple> result{};
286  for(int i = 0; i < block_num; i++)
287  {
288  char* p = buffer_manager->getPage(table_name , i);
289 
290  record_page* r_page = reinterpret_cast<record_page*> (p);
291  for(int j = 0; j < r_page->tuple_num; j++)
292  {
293  if(!r_page->tuple_at(j).isDeleted())
294  result.emplace_back(r_page->tuple_at(j).deserializeToMemory());
295  }
296  }
297  return result;
298 }
299 
300 //TODO : 检查Attribute的存在性.
301 std::vector<MemoryTuple> RecordManager::SelectRecord(const std::string& table_name, const std::vector<std::string>& target_attr){
302  std::string table_path = PATH::RECORD_PATH + table_name;
303  //record* r = new record;
304  //检测表是否存在
305  if (!catalog_manager->existTable(table_name)) {
306  throw DB_TABLE_NOT_EXIST;
307  }
308  int block_num = getBlockNum(table_path);
309  //处理文件大小为0的特殊情况
310  if (block_num <= 0)
311  block_num = 1;
312  //获取表的属性
313  Attribute attr = catalog_manager->getAttribute(table_name);
314  std::vector<int> position;
315  for(auto & i : target_attr)
316  {
317  for(int j = 0; j < attr.num; j++)
318  {
319  if(attr.name[j] == i)
320  {
321  position.push_back(j);
322  }
323  }
324  }
325 
326  if(position.empty()) throw DB_COLUMN_NAME_NOT_EXIST;
327 
328  std::vector<MemoryTuple> result{};
329  for(int i = 0; i < block_num; i++)
330  {
331  char* p = buffer_manager->getPage(table_path , i);
332 
333  record_page* r = reinterpret_cast<record_page*> (p);
334  for(int j = 0; j < r->tuple_num; j++)
335  {
336  if(!r->tuple_at(j).isDeleted())
337  result.emplace_back(r->tuple_at(j).deserializeToMemory(position));
338  }
339  }
340 
341  return result;
342 }
343 //输入:表名,目标属性,一个Where类型的对象
344 //输出:Table类型对象
345 //功能:返回包含所有目标属性满足Where条件的记录的表
346 //异常:如果表不存在,抛出table_not_exist异常。如果属性不存在,抛出attribute_not_exist异常。
347 //如果Where条件中的两个数据类型不匹配,抛出data_type_conflict异常。
348 std::vector<MemoryTuple> RecordManager::SelectRecord(std::string table_name , std::vector<Where> where){
349  std::string table_path = PATH::RECORD_PATH + table_name;
350  //检测表是否存在
351  if (!catalog_manager->existTable(table_name)) {
352  throw DB_TABLE_NOT_EXIST;
353  }
354  Attribute attr = catalog_manager->getAttribute(table_name);
355  int index = -1;
356  bool exist_index = false;
357  std::vector<Index_t> result_record_id;
358  for(int j = 0; j < where.size(); j++)
359  {
360  for (int i = 0;i < attr.num;i++) {
361  if (attr.name[i] == where[j].attr_name) {
362  index = i;
363  if (attr.has_index[i])
364  exist_index = true;
365  break;
366  }
367  }
368  if (index == -1) {
369  throw DB_ATTRIBUTE_NOT_EXIST;
370  }
371  //where条件中的两个数据的类型不匹配,抛出异常
372  else if (attr.type[index] != where[j].data.type) {
373  throw DB_TYPE_ERR;
374  }
375  // Return tuples length should equal attribute number of the table.
376 // MemoryTuple tmp_tuple(attr.num);
377  std::vector<MemoryTuple> tmp_tuples;
378  std::vector<Index_t> tmp_record_id;
379  if(j == 0){
380  if (exist_index && where[j].relation_operator != Operator::NE) {
381  std::vector<Index_t> record_ids;
382  //使用索引获取满足条件的记录所在块号
383  searchWithIndex(table_name , where[j].attr_name , where[j] , result_record_id);
384  }
385  else {
386  int block_num = getBlockNum(table_path);
387  //处理文件大小为0的特殊情况
388  if (block_num <= 0)
389  block_num = 1;
390  //遍历所有块
391  for (int i = 0;i < block_num;i++) {
392  SelectInBlock(table_name , i , attr , index , where[j] , result_record_id);
393  }
394  }
395  }
396  else{
397  if (exist_index && where[j].relation_operator != Operator::NE) {
398  std::vector<Index_t> record_ids;
399  //使用索引获取满足条件的记录所在块号
400  searchWithIndex(table_name , where[j].attr_name , where[j] , tmp_record_id);
401  }
402  else {
403  int block_num = getBlockNum(table_path);
404  //处理文件大小为0的特殊情况
405  if (block_num <= 0)
406  block_num = 1;
407  //遍历所有块
408  for (int i = 0;i < block_num;i++) {
409  SelectInBlock(table_name , i , attr , index , where[j] , tmp_record_id);
410  }
411  }
412  result_record_id = Union(result_record_id, tmp_record_id);
413  tmp_record_id.resize(0);
414  }
415  }
416  std::vector<MemoryTuple> result;
417  conditionSelectInBlock(table_name , result_record_id, result);
418  return result;
419 }
420 
421 //TODO : 加入对target_attr是否存在的判断;或Catalog应直接提供target_attr对应的下标,以防止重复访问
422 std::vector<MemoryTuple> RecordManager::SelectRecord(std::string table_name , const std::vector<std::string>& target_attr , std::vector<Where> where) {
423  std::string tmp_name = table_name;
424  table_name = PATH::RECORD_PATH + table_name;
425  //检测表是否存在
426  if (!catalog_manager->existTable(tmp_name)) {
427  throw DB_TABLE_NOT_EXIST;
428  }
429  Attribute attr = catalog_manager->getAttribute(tmp_name);
430  int index = -1;
431  bool flag = false;
432 
433  std::vector<Index_t> result_record_id;
434  for(int j = 0; j < where.size(); j++)
435  {
436  for (int i = 0;i < attr.num;i++) {
437  if (attr.name[i] == where[j].attr_name) {
438  index = i;
439  if (attr.has_index[i])
440  flag = true;
441  break;
442  }
443  }
444  if (index == -1) {
445  throw DB_ATTRIBUTE_NOT_EXIST;
446  }
447  //where条件中的两个数据的类型不匹配,抛出异常
448  else if (attr.type[index] != where[j].data.type) {
449  throw DB_TYPE_ERR;
450  }
451  std::vector<Index_t> tmp_record_id;
452  if(j == 0){
453  if (flag && where[j].relation_operator != Operator::NE) {
454  std::vector<Index_t> record_ids;
455  //使用索引获取满足条件的记录所在块号
456  searchWithIndex(tmp_name , where[j].attr_name , where[j] , result_record_id);
457  }
458  else {
459  int block_num = getBlockNum(table_name);
460  //处理文件大小为0的特殊情况
461  if (block_num <= 0)
462  block_num = 1;
463  //遍历所有块
464  for (int i = 0;i < block_num;i++) {
465  SelectInBlock(tmp_name , i , attr , index , where[j] , result_record_id);
466  }
467  }
468  }
469  else{
470  if (flag && where[j].relation_operator != Operator::NE) {
471  std::vector<Index_t> record_ids;
472  //使用索引获取满足条件的记录所在块号
473  searchWithIndex(tmp_name , where[j].attr_name , where[j] , tmp_record_id);
474  }
475  else {
476  int block_num = getBlockNum(table_name);
477  //处理文件大小为0的特殊情况
478  if (block_num <= 0)
479  block_num = 1;
480  //遍历所有块
481  for (int i = 0;i < block_num;i++) {
482  SelectInBlock(tmp_name , i , attr , index , where[j] , tmp_record_id);
483  }
484  }
485  result_record_id = Union(result_record_id, tmp_record_id);
486  tmp_record_id.resize(0);
487  }
488  }
489 
490  std::vector<MemoryTuple> v;
491  conditionSelectInBlock(tmp_name , result_record_id, v);
492  std::vector<int> position;
493 
494  for(auto & i : target_attr)
495  {
496  for(int j = 0; j < attr.num; j++)
497  {
498  if(attr.name[j] == i)
499  {
500  position.push_back(j);
501  }
502  }
503  }
504  std::vector<MemoryTuple> result;
505 // std::vector<Data> tmp{};
506  for(auto & i : v)
507  {
508  MemoryTuple tmp_Tuple(target_attr.size());
509  for(int j : position)
510  {
511  tmp_Tuple.emplace_back(i.at(j));
512  }
513  result.push_back(tmp_Tuple);
514  }
515  return result;
516 }
517 //输入:表名,目标属性名
518 //输出:void
519 //功能:对表中已经存在的记录建立索引
520 //异常:如果表不存在,抛出table_not_exist异常。如果属性不存在,抛出attribute_not_exist异常。
521 void RecordManager::CreateIndex(std::string table_name , const std::string& target_attr) {
522  std::string tmp_name = table_name;
523  table_name = PATH::RECORD_PATH + table_name;
524  //检测表是否存在
525  if (!catalog_manager->existTable(tmp_name)) {
526  throw DB_TABLE_NOT_EXIST;
527  }
528  Attribute attr = catalog_manager->getAttribute(tmp_name);
529  int index = -1;
530  //获取目标属性的编号
531  for (int i = 0;i < attr.num;i++) {
532  if (attr.name[i] == target_attr) {
533  index = i;
534  break;
535  }
536  }
537  //目标属性不存在,抛出异常
538  if (index == -1) {
539  throw DB_ATTRIBUTE_NOT_EXIST;
540  }
541  //异常检测完成
542 
543  //获取文件所占的块的数量
544  // int block_num = getFileSize(table_name) / PAGESIZE;
545  // 改为
546  int block_num = getBlockNum(table_name);
547  //处理文件大小为0的特殊情况
548  if (block_num <= 0)
549  block_num = 1;
550  //获取表的属性
551  std::string index_name = catalog_manager->getIndexName(tmp_name, target_attr);
552  //遍历所有块
553  record_page* r;
554  for(int i = 0; i < block_num; i++)
555  {
556  char* p = buffer_manager->getPage(table_name , i);
557  r = reinterpret_cast<record_page*>(p);
558  for(int j = 0; j < r->tuple_num; j++)
559  {
560  if(!r->tuple_at(j).isDeleted()){
561  std::vector<Data> v = r->tuple_at(j).getData();
562  index_manager->InsertId(index_name , v[index] , i * 1000 + j);
563  }
564  }
565  }
566 }
567 
568 //获取文件大小
569 int RecordManager::getBlockNum(std::string &table_fname) {
570  size_t f_size = BufferManager::getFileSize(table_fname);
571  int block_num = (int)((f_size + BLOCKSIZE - 1) / BLOCKSIZE);
572  return block_num;
573 }
574 
575 //int RecordManager::getTupleLength(DiskTuple tuples)
576 //{
577 // return (int)(sizeof(Data) * tuples.getSize() + sizeof(bool));
578 //}
579 
580 //判断插入的记录是否和其他记录冲突
581 // CGF: 加速 and 防止返回的表过大而内存装不下
582 // CGF: Only need to check conflict when the check_index is unique or primary key.
583 // So there must be a index on it.
584 bool RecordManager::isConflict(const MemoryTuple & v, const std::string &table_name , int check_index) {
585  std::string table_path = PATH::RECORD_PATH + table_name;
586 
587  std::string index_name;
588  auto index_info = catalog_manager->getIndex(table_name);
589  for (int i = 0; i < index_info.number; ++i){
590  if (index_info.location[i] == check_index){
591  index_name = index_info.index_name[i];
592  }
593  }
594  Index_t nearest;
595  auto ret = index_manager->CheckExistance(index_name, v.at(check_index), nearest);
596  if (ret){
597  std::cout << "Conflict -------------------------------------- ";
598  }
599  return index_manager->CheckExistance(index_name, v.at(check_index), nearest);
600 
601 // int block_num = getBlockNum(table_path);
602 // //获取表的属性
603 // for(int i = 0; i < block_num; i++)
604 // {
605 // char* p = buffer_manager->getPage(table_path , i);
606 // record_page* r_page = reinterpret_cast<record_page*> (p);
607 // for(int j = 0; j < r_page->tuple_num; j++)
608 // {
609 // if(!r_page->tuple_at(j).isDeleted() && (r_page->tuple_at(j).cell[check_index] == v.at(check_index))){
610 // return true;
611 // }
612 // }
613 // }
614 // return false;
615 }
616 
617 void RecordManager::DeleteInBlock(std::string table_name , int block_id , const Attribute& attr , int index , Where where, std::vector<Index_t>& record_ids){
618  //获取当前块的句柄
619  table_name = PATH::RECORD_PATH + table_name;//新增
620  pageId_t pId;
621  char* p = buffer_manager->getPage(table_name , block_id, pId);
622  record_page* r;
623  r = reinterpret_cast<record_page*> (p);
624  buffer_manager->modifyPage(pId);
625  //将当前块写回文件
626  for(int i = 0; i < r->tuple_num; i++)
627  {
628  std::vector<Data> d = r->tuple_at(i).getData();
629  if (judge(d[index], where.data, where.relation_operator)){
630  r->tuple_at(i).setDeleted();
631  record_ids.push_back(block_id * 1000 + i);
632  }
633 // switch(attr.type[index]){
634 // case BASE_SQL_ValType::INT:{
635 // if(judge(d[index].data_meta.i_data, where.data.data_meta.i_data, where) == true){
636 // record_ids.push_back(block_id * 1000 + i);
637 // }
638 // };break;
639 // case BASE_SQL_ValType::FLOAT:{
640 // if(judge(d[index].data_meta.f_data, where.data.data_meta.f_data, where) == true){
641 // r->tuple_at(i).setDeleted();
642 // record_ids.push_back(block_id * 1000 + i);
643 // }
644 // }break;
645 // default:{
646 // if(judge(d[index].data_meta.s_data, where.data.data_meta.s_data, where) == true){
647 // r->tuple_at(i).setDeleted();
648 // record_ids.push_back(block_id * 1000 + i);
649 // }
650 // }
651 // }
652  }
653 }
654 
655 void RecordManager::SelectInBlock(std::string table_name , int block_id , const Attribute& attr , int index , Where where , std::vector<Index_t>& record_ids){
656  table_name = PATH::RECORD_PATH + table_name;//新增
657  char* p = buffer_manager->getPage(table_name , block_id);
658  record_page* r;
659  r = reinterpret_cast<record_page*>(p);
660  for(int i = 0; i < r->tuple_num; i++)
661  {
662  if(!r->tuple_at(i).isDeleted()){
663  std::vector<Data> d = r->tuple_at(i).getData();
664  if (judge(d[index], where.data, where.relation_operator)){
665  record_ids.push_back(block_id * 1000 + i);
666  }
667  }
668 // if(!r->tuple_at(i).isDeleted())
669 // {
670 // std::vector<Data> d = r->tuple_at(i).getData();
671 // switch(attr.type[index]){
672 // case BASE_SQL_ValType::INT:{
673 // if(judge(d[index].data_meta.i_data, where.data.data_meta.i_data, where) == true){
674 // record_ids.push_back(block_id * 1000 + i);
675 // }
676 // }break;
677 // case BASE_SQL_ValType::FLOAT:{
678 // if(judge(d[index].data_meta.f_data, where.data.data_meta.f_data, where) == true){
679 // record_ids.push_back(block_id * 1000 + i);
680 // }
681 // }break;
682 // default:{
683 // if(judge(d[index].data_meta.s_data, where.data.data_meta.s_data, where) == true){
684 // record_ids.push_back(block_id * 1000 + i);
685 // }
686 // }
687 // }
688 // }
689  }
690 }
691 void RecordManager::searchWithIndex(std::string &table_name , std::string &target_attr , const Where& where , std::vector<Index_t>& record_ids) {
692  Data tmp_data;
693  Index_t recordID;
694  std::string index_name = catalog_manager->getIndexName(table_name, target_attr);
695  if (where.relation_operator == Operator::LT || where.relation_operator == Operator::LE) {
696  if (where.data.type == BASE_SQL_ValType::INT) {
697  tmp_data.type = BASE_SQL_ValType::INT;
698  tmp_data.data_meta.i_data = -INF;
699  }
700  else if (where.data.type == BASE_SQL_ValType::FLOAT) {
701  tmp_data.type = BASE_SQL_ValType::FLOAT;
702  tmp_data.data_meta.f_data = -INF;
703  }
704  else {
705  tmp_data.type = BASE_SQL_ValType::STRING;
706  strcpy(tmp_data.data_meta.s_data, "");
707  }
708  index_manager->FindId(index_name , tmp_data , where.data , record_ids);
709 // if(where.relation_operator == Operator::LE){
710 // index_manager->FindId(index_name, where.data, recordID);
711 // record_ids.push_back(recordID);
712 // }
713  if(where.relation_operator == Operator::LT){
714  if (index_manager->FindId(index_name, where.data, recordID)){
715  // The key exists in the tree. Remove it.
716  record_ids.pop_back();
717  }
718  }
719  }
720  else if (where.relation_operator == Operator::GT|| where.relation_operator == Operator::GE) {
721  if (where.data.type == BASE_SQL_ValType::INT) {
722  tmp_data.type = BASE_SQL_ValType::INT;
723  tmp_data.data_meta.i_data = INF;
724  }
725  else if (where.data.type == BASE_SQL_ValType::FLOAT) {
726  tmp_data.type = BASE_SQL_ValType::FLOAT;
727  tmp_data.data_meta.f_data = INF;
728  }
729  else {
730  tmp_data.type = BASE_SQL_ValType::STRING;
731  strcpy(tmp_data.data_meta.s_data, "~~~~~~~~");
732  }
733  index_manager->FindId(index_name , where.data , tmp_data , record_ids);
734 // if(where.relation_operator == Operator::GE){
735 // index_manager->FindId(index_name, where.data, recordID);
736 // record_ids.push_back(recordID);
737 // }
738  if (where.relation_operator == Operator::GT){
739  if(index_manager->FindId(index_name, where.data, recordID)){
740  record_ids.erase(record_ids.begin());
741  }
742  }
743  }
744  else{
745  if(index_manager->FindId(index_name, where.data, recordID)){
746  // FindId returns true when the key actually exists.
747  record_ids.push_back(recordID);
748  }
749  }
750 // std::sort(record_ids.begin(), record_ids.end());
751 }
752 
753 //在块中进行条件删除
754 int RecordManager::conditionDeleteInBlock(const std::string& table_name , const std::vector<Index_t>& record_id) {
755  //获取当前块的句柄
756  std::string table_path = PATH::RECORD_PATH + table_name;//新增
757  Index index_head = catalog_manager->getIndex(table_name);
758  for(unsigned int i : record_id)
759  {
760  int block_id = i / 1000;
761  int tuple_id = i % 1000;
762  char* p = buffer_manager->getPage(table_path , block_id);
763  record_page* r = reinterpret_cast<record_page*> (p);
764  r->tuple_at(tuple_id).setDeleted();
765  int page_id = buffer_manager->getPageId(table_path , block_id);
766 
767  for (int j = 0; j < index_head.number; ++j){
768  index_manager->DeleteId(index_head.index_name[j],
769  r->tuple_at(tuple_id).getData().at(index_head.location[j]));
770  }
771 
772  buffer_manager->modifyPage(page_id);
773  }
774  return (int)record_id.size();
775 }
776 
777 //在块中进行条件查询
778 void RecordManager::conditionSelectInBlock(std::string table_name , const std::vector<Index_t>& record_id , std::vector<MemoryTuple>& v)
779 {
780  table_name = PATH::RECORD_PATH + table_name;
781  for(Index_t i : record_id)
782  {
783  int block_id = i / 1000;
784  int tuple_id = i % 1000;
785  char* p = buffer_manager->getPage(table_name , block_id);
786  record_page* r = reinterpret_cast<record_page*>(p);
787  if (!r->tuple_at(tuple_id).isDeleted()){
788  v.emplace_back(r->tuple_at(tuple_id).deserializeToMemory());
789  }
790  }
791 }
792 
793 std::vector<Index_t> Union(const std::vector<Index_t>& a, const std::vector<Index_t>& b){
794  std::vector<Index_t> result;
795  for(const unsigned int & i : a)
796  {
797  for(unsigned int j : b)
798  {
799  if(i == j){
800  result.push_back(i);
801  }
802  }
803  }
804  return result;
805 }
Attribute::name
std::string name[32]
property name
Definition: data_t.h:175
Where
Definition: data_t.h:161
CatalogManager::existTable
bool existTable(const std::string &table_name)
Judge if the table exists.
Definition: Catalog_Manager.cpp:65
record_manager.h
Index::location
int location[10]
where it is in Attribute
Definition: data_t.h:187
CatalogManager::getIndex
Index getIndex(const std::string &table_name)
Get the Index object from table name.
Definition: Catalog_Manager.cpp:240
BufferManager::getPageId
int getPageId(const std::string &file_name, int block_id)
简单遍历获取页号
Definition: buffer_manager.cpp:258
Index::index_name
std::string index_name[10]
has_index name
Definition: data_t.h:188
RecordManager::DropTableFile
void DropTableFile(const std::string &table_name)
Drop a Table File object.
Definition: record_manager.cpp:50
RecordManager::CreateIndex
void CreateIndex(std::string table_name, const std::string &target_attr)
Create a Index on an attribute that has already exists.
Definition: record_manager.cpp:521
RecordManager::CreateTableFile
void CreateTableFile(const std::string &table_name)
Create a Table File object.
Definition: record_manager.cpp:41
Attribute::is_unique
bool is_unique[32]
uniqure or not
Definition: data_t.h:176
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
Attribute::primary_Key
int primary_Key
-1 not exist, 1-32 exist and the place where the primary key are
Definition: data_t.h:178
RecordManager::SelectRecord
std::vector< MemoryTuple > SelectRecord(std::string table_name)
返回整张表
Definition: record_manager.cpp:276
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
RecordManager::DeleteRecord
int DeleteRecord(std::string table_name)
删除对应表中所有记录(不删除表文件)
Definition: record_manager.cpp:151
BufferManager::flushPage
int flushPage(pageId_t page_id)
核心函数之一。内存和磁盘交互的接口。
Definition: buffer_manager.cpp:227
Attribute::num
int num
number of property
Definition: data_t.h:173
record_page
Page storage details of tables. Never explicit initialize.
Definition: record_manager.h:32
Index::number
int number
number of indexes
Definition: data_t.h:186
BufferManager::modifyPage
void modifyPage(int page_id)
标记页是否被修改
Definition: buffer_manager.cpp:155
Attribute::has_index
bool has_index[32]
index exist or not
Definition: data_t.h:177
BufferManager::getPage
char * getPage(const std::string &file_name, int block_id)
获取一页
Definition: buffer_manager.cpp:130
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
RecordManager::InsertRecord
void InsertRecord(std::string table_name, const MemoryTuple &tuple)
向对应表中插入一条记录
Definition: record_manager.cpp:61
Data
Basic cell element in a tuples.
Definition: data_t.h:44
Index
Index desciption for a table.
Definition: data_t.h:185