14 bool judge(
const Data& a ,
const Data& b , Operator relation){
42 auto table_path = PATH::RECORD_PATH + table_name;
43 buffer_manager->createEmptyFile(table_path);
51 std::string table_path = PATH::RECORD_PATH + table_name;
52 buffer_manager->removeFile(table_path);
62 std::string tmp_name = table_name;
63 table_name = PATH::RECORD_PATH + table_name;
67 throw DB_TABLE_NOT_EXIST;
71 for (
int i = 0; i < tuple.size(); i++) {
72 if (tuple[i].type != attr.type[i])
73 throw DB_TUPLE_TYPE_CONFLICT;
81 throw DB_PRIMARY_KEY_CONFLICT;
84 for (
int i = 0;i < attr.
num;i++) {
86 if (isConflict(tuple, tmp_name, i))
87 throw DB_UNIQUE_CONFLICT;
93 int block_num = getBlockNum(table_name);
100 char* p = buffer_manager->
getPage(table_name , block_num - 1, page_id);
106 block_id = block_num - 1;
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();
114 else if(r_page->record_bytes + r_page->tuple_at(0).getBytes() <= PAGESIZE){
115 block_id = block_num - 1;
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();
123 block_id = block_num;
125 p = buffer_manager->
getPage(table_name , block_num, new_pId);
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();
135 for(
int i = 0; i < attr.
num; i++)
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);
152 std::string tmp_name = table_name;
153 table_name = PATH::RECORD_PATH + table_name;
156 throw DB_TABLE_NOT_EXIST;
161 int block_num = getBlockNum(table_name);
168 for (
int i = 0;i < block_num;i++) {
169 char* p = buffer_manager->
getPage(table_name , i);
172 for(
int k = 0; k < r->record_bytes; k++)
174 r->tuple_at(i).setDeleted();
175 for(
int j = 0; j < attr.
num; 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]);
188 int page_id = buffer_manager->
getPageId(table_name , i);
200 std::string table_path = PATH::RECORD_PATH + table_name;
202 if (!catalog_manager->
existTable(table_name)) {
203 throw DB_TABLE_NOT_EXIST;
208 std::vector<Index_t> result_record_id;
210 for(
int j = 0; j < where.size(); j++)
212 for (
int i = 0;i < attr.
num;i++) {
213 if (attr.
name[i] == where[j].attr_name) {
222 throw DB_ATTRIBUTE_NOT_EXIST;
225 else if (attr.type[index] != where[j].data.type) {
232 if (flag && where[j].relation_operator != Operator::NE) {
234 searchWithIndex(table_name , where[j].attr_name , where[j] , result_record_id);
237 int block_num = getBlockNum(table_path);
242 for (
int i = 0;i < block_num;i++) {
243 DeleteInBlock(table_name , i , attr , index , where[j] , result_record_id);
248 std::vector<Index_t> tmp_record_id;
249 if (flag && where[j].relation_operator != Operator::NE) {
251 searchWithIndex(table_name , where[j].attr_name , where[j] , tmp_record_id);
254 int block_num = getBlockNum(table_path);
259 for (
int i = 0;i < block_num;i++) {
260 DeleteInBlock(table_name , i , attr , index , where[j] , tmp_record_id);
263 result_record_id = Union(result_record_id, tmp_record_id);
264 tmp_record_id.resize(0);
268 return conditionDeleteInBlock(table_name, result_record_id);
277 std::string tmp_name = table_name;
278 table_name = PATH::RECORD_PATH + table_name;
281 throw DB_TABLE_NOT_EXIST;
283 int block_num = getBlockNum(table_name);
285 std::vector<MemoryTuple> result{};
286 for(
int i = 0; i < block_num; i++)
288 char* p = buffer_manager->
getPage(table_name , i);
291 for(
int j = 0; j < r_page->tuple_num; j++)
293 if(!r_page->tuple_at(j).isDeleted())
294 result.emplace_back(r_page->tuple_at(j).deserializeToMemory());
302 std::string table_path = PATH::RECORD_PATH + table_name;
305 if (!catalog_manager->
existTable(table_name)) {
306 throw DB_TABLE_NOT_EXIST;
308 int block_num = getBlockNum(table_path);
314 std::vector<int> position;
315 for(
auto & i : target_attr)
317 for(
int j = 0; j < attr.
num; j++)
319 if(attr.
name[j] == i)
321 position.push_back(j);
326 if(position.empty())
throw DB_COLUMN_NAME_NOT_EXIST;
328 std::vector<MemoryTuple> result{};
329 for(
int i = 0; i < block_num; i++)
331 char* p = buffer_manager->
getPage(table_path , i);
334 for(
int j = 0; j < r->tuple_num; j++)
336 if(!r->tuple_at(j).isDeleted())
337 result.emplace_back(r->tuple_at(j).deserializeToMemory(position));
349 std::string table_path = PATH::RECORD_PATH + table_name;
351 if (!catalog_manager->
existTable(table_name)) {
352 throw DB_TABLE_NOT_EXIST;
356 bool exist_index =
false;
357 std::vector<Index_t> result_record_id;
358 for(
int j = 0; j < where.size(); j++)
360 for (
int i = 0;i < attr.
num;i++) {
361 if (attr.
name[i] == where[j].attr_name) {
369 throw DB_ATTRIBUTE_NOT_EXIST;
372 else if (attr.type[index] != where[j].data.type) {
377 std::vector<MemoryTuple> tmp_tuples;
378 std::vector<Index_t> tmp_record_id;
380 if (exist_index && where[j].relation_operator != Operator::NE) {
381 std::vector<Index_t> record_ids;
383 searchWithIndex(table_name , where[j].attr_name , where[j] , result_record_id);
386 int block_num = getBlockNum(table_path);
391 for (
int i = 0;i < block_num;i++) {
392 SelectInBlock(table_name , i , attr , index , where[j] , result_record_id);
397 if (exist_index && where[j].relation_operator != Operator::NE) {
398 std::vector<Index_t> record_ids;
400 searchWithIndex(table_name , where[j].attr_name , where[j] , tmp_record_id);
403 int block_num = getBlockNum(table_path);
408 for (
int i = 0;i < block_num;i++) {
409 SelectInBlock(table_name , i , attr , index , where[j] , tmp_record_id);
412 result_record_id = Union(result_record_id, tmp_record_id);
413 tmp_record_id.resize(0);
416 std::vector<MemoryTuple> result;
417 conditionSelectInBlock(table_name , result_record_id, result);
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;
427 throw DB_TABLE_NOT_EXIST;
433 std::vector<Index_t> result_record_id;
434 for(
int j = 0; j < where.size(); j++)
436 for (
int i = 0;i < attr.
num;i++) {
437 if (attr.
name[i] == where[j].attr_name) {
445 throw DB_ATTRIBUTE_NOT_EXIST;
448 else if (attr.type[index] != where[j].data.type) {
451 std::vector<Index_t> tmp_record_id;
453 if (flag && where[j].relation_operator != Operator::NE) {
454 std::vector<Index_t> record_ids;
456 searchWithIndex(tmp_name , where[j].attr_name , where[j] , result_record_id);
459 int block_num = getBlockNum(table_name);
464 for (
int i = 0;i < block_num;i++) {
465 SelectInBlock(tmp_name , i , attr , index , where[j] , result_record_id);
470 if (flag && where[j].relation_operator != Operator::NE) {
471 std::vector<Index_t> record_ids;
473 searchWithIndex(tmp_name , where[j].attr_name , where[j] , tmp_record_id);
476 int block_num = getBlockNum(table_name);
481 for (
int i = 0;i < block_num;i++) {
482 SelectInBlock(tmp_name , i , attr , index , where[j] , tmp_record_id);
485 result_record_id = Union(result_record_id, tmp_record_id);
486 tmp_record_id.resize(0);
490 std::vector<MemoryTuple> v;
491 conditionSelectInBlock(tmp_name , result_record_id, v);
492 std::vector<int> position;
494 for(
auto & i : target_attr)
496 for(
int j = 0; j < attr.
num; j++)
498 if(attr.
name[j] == i)
500 position.push_back(j);
504 std::vector<MemoryTuple> result;
508 MemoryTuple tmp_Tuple(target_attr.size());
509 for(
int j : position)
511 tmp_Tuple.emplace_back(i.at(j));
513 result.push_back(tmp_Tuple);
522 std::string tmp_name = table_name;
523 table_name = PATH::RECORD_PATH + table_name;
526 throw DB_TABLE_NOT_EXIST;
531 for (
int i = 0;i < attr.
num;i++) {
532 if (attr.
name[i] == target_attr) {
539 throw DB_ATTRIBUTE_NOT_EXIST;
546 int block_num = getBlockNum(table_name);
551 std::string index_name = catalog_manager->getIndexName(tmp_name, target_attr);
554 for(
int i = 0; i < block_num; i++)
556 char* p = buffer_manager->
getPage(table_name , i);
558 for(
int j = 0; j < r->tuple_num; j++)
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);
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);
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;
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){
595 auto ret = index_manager->CheckExistance(index_name, v.at(check_index), nearest);
597 std::cout <<
"Conflict -------------------------------------- ";
599 return index_manager->CheckExistance(index_name, v.at(check_index), nearest);
617 void RecordManager::DeleteInBlock(std::string table_name ,
int block_id ,
const Attribute& attr ,
int index ,
Where where, std::vector<Index_t>& record_ids){
619 table_name = PATH::RECORD_PATH + table_name;
621 char* p = buffer_manager->
getPage(table_name , block_id, pId);
626 for(
int i = 0; i < r->tuple_num; i++)
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);
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);
660 for(
int i = 0; i < r->tuple_num; i++)
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);
691 void RecordManager::searchWithIndex(std::string &table_name , std::string &target_attr ,
const Where& where , std::vector<Index_t>& record_ids) {
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;
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;
705 tmp_data.type = BASE_SQL_ValType::STRING;
706 strcpy(tmp_data.data_meta.s_data,
"");
708 index_manager->
FindId(index_name , tmp_data , where.data , record_ids);
713 if(where.relation_operator == Operator::LT){
714 if (index_manager->
FindId(index_name, where.data, recordID)){
716 record_ids.pop_back();
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;
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;
730 tmp_data.type = BASE_SQL_ValType::STRING;
731 strcpy(tmp_data.data_meta.s_data,
"~~~~~~~~");
733 index_manager->
FindId(index_name , where.data , tmp_data , record_ids);
738 if (where.relation_operator == Operator::GT){
739 if(index_manager->
FindId(index_name, where.data, recordID)){
740 record_ids.erase(record_ids.begin());
745 if(index_manager->
FindId(index_name, where.data, recordID)){
747 record_ids.push_back(recordID);
754 int RecordManager::conditionDeleteInBlock(
const std::string& table_name ,
const std::vector<Index_t>& record_id) {
756 std::string table_path = PATH::RECORD_PATH + table_name;
758 for(
unsigned int i : record_id)
760 int block_id = i / 1000;
761 int tuple_id = i % 1000;
762 char* p = buffer_manager->
getPage(table_path , block_id);
764 r->tuple_at(tuple_id).setDeleted();
765 int page_id = buffer_manager->
getPageId(table_path , block_id);
767 for (
int j = 0; j < index_head.
number; ++j){
769 r->tuple_at(tuple_id).getData().at(index_head.
location[j]));
774 return (
int)record_id.size();
778 void RecordManager::conditionSelectInBlock(std::string table_name ,
const std::vector<Index_t>& record_id , std::vector<MemoryTuple>& v)
780 table_name = PATH::RECORD_PATH + table_name;
781 for(Index_t i : record_id)
783 int block_id = i / 1000;
784 int tuple_id = i % 1000;
785 char* p = buffer_manager->
getPage(table_name , block_id);
787 if (!r->tuple_at(tuple_id).isDeleted()){
788 v.emplace_back(r->tuple_at(tuple_id).deserializeToMemory());
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)
797 for(
unsigned int j : b)