tinySQL  0.1
A self-contained database management system
record_manager.h
Go to the documentation of this file.
1 
11 #ifndef _RECORD_MANAGER_H_
12 #define _RECORD_MANAGER_H_
13 #define INF 1000000
14 
15 #include <cstdio>
16 #include <iostream>
17 #include <string>
18 #include <vector>
19 #include <sstream>
20 #include "share/data_t.h"
21 #include "share/config.h"
22 #include "index/Index.h"
23 #include "catalog/catalog.h"
24 #include "share/err_type.h"
25 #include "buffer/buffer_manager.h"
26 #include "share/singleton.h"
27 
28 
32 struct record_page{
33  int tuple_num;
34  db_size_t record_bytes;
35  DiskTuple tuples[];
36 
37  DiskTuple& tuple_at(int offset){
38  if (offset == 0) return tuples[0];
39  else{
40  if (offset >= tuple_num){
41  throw;
42  }
43  else{
44  char* start = (char*)tuples;
45  start = start + offset * tuples[0].getBytes();
46  return *((DiskTuple*)start);
47  }
48  }
49  }
50 
52  template<class T>
53  DiskTuple& operator[](T offset) = delete;
54 };
55 
56 
57 std::vector<Index_t> Union(const std::vector<Index_t>& a, const std::vector<Index_t>& b);
58 
64 public:
65  RecordManager(BufferManager *bfm, CatalogManager *clm, IndexManager *idm): buffer_manager(bfm), catalog_manager(clm), index_manager(idm){}
71  void CreateTableFile(const std::string& table_name);
77  void DropTableFile(const std::string& table_name);
84  void InsertRecord(std::string table_name , const MemoryTuple& tuple);
91  int DeleteRecord(std::string table_name);
100  int DeleteRecord(std::string table_path, std::vector<Where> where);
101 
109  std::vector<MemoryTuple> SelectRecord(std::string table_name);
110  std::vector<MemoryTuple> SelectRecord(const std::string& table_path , const std::vector<std::string>& target_attr);
120  std::vector<MemoryTuple> SelectRecord(std::string table_path , std::vector<Where> where);
121  std::vector<MemoryTuple> SelectRecord(std::string table_name , const std::vector<std::string>& target_attr , std::vector<Where> where);
130  void CreateIndex(std::string table_name , const std::string& target_attr);
131 private:
138  static int getBlockNum(std::string &table_name);
139  //insertRecord的辅助函数
140 // static int getTupleLength(DiskTuple tuples);
141 
142  //判断插入的记录是否和其他记录冲突
143  bool isConflict(const MemoryTuple &v, const std::string& tableName, int check_index);
144  //带索引查找
145  void searchWithIndex(std::string &table_name , std::string &target_attr , const Where& where , std::vector<Index_t>& record_ids);
146 
147 // void deleteInIndex(std::string &table_path, std::string &target_attr, std::ve)
148  //在块中进行条件删除
149  int conditionDeleteInBlock(const std::string& table_name , const std::vector<Index_t>& record_id);
150  void DeleteInBlock(std::string table_name , int block_id , const Attribute& attr , int index , Where where, std::vector<Index_t>& record_ids);
151  //在块中进行条件查询
152  void conditionSelectInBlock(std::string table_name , const std::vector<Index_t>& record_id , std::vector<MemoryTuple>& v);
153  void SelectInBlock(std::string table_name , int block_id , const Attribute& attr , int index , Where where , std::vector<Index_t>& record_ids);
154  BufferManager *buffer_manager;
155  CatalogManager *catalog_manager;
156  IndexManager *index_manager;
157 };
158 
159 #endif
Where
Definition: data_t.h:161
CatalogManager
Manage all the table names, attritbutes, and index existence.
Definition: catalog.h:30
RecordManager::DropTableFile
void DropTableFile(const std::string &table_name)
Drop a Table File object.
Definition: record_manager.cpp:50
BufferManager
Buffer manager is an abstraction of memory on computer for modules at higher level.
Definition: buffer_manager.h:69
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
RecordManager::SelectRecord
std::vector< MemoryTuple > SelectRecord(std::string table_name)
返回整张表
Definition: record_manager.cpp:276
IndexManager
Manage index files.
Definition: Index.h:15
DiskTuple
One row in a table.
Definition: data_t.h:206
RecordManager
The class manages the table's data.
Definition: record_manager.h:63
RecordManager::DeleteRecord
int DeleteRecord(std::string table_name)
删除对应表中所有记录(不删除表文件)
Definition: record_manager.cpp:151
record_page
Page storage details of tables. Never explicit initialize.
Definition: record_manager.h:32
Attribute
The attributes for a schema.
Definition: data_t.h:172
RecordManager::InsertRecord
void InsertRecord(std::string table_name, const MemoryTuple &tuple)
向对应表中插入一条记录
Definition: record_manager.cpp:61