bplus_tree.cpp 60.1 KB
Newer Older
羽飞's avatar
羽飞 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/* Copyright (c) 2021 Xie Meiyi(xiemeiyi@hust.edu.cn) and OceanBase and/or its affiliates. All rights reserved.
miniob is licensed under Mulan PSL v2.
You can use this software according to the terms and conditions of the Mulan PSL v2.
You may obtain a copy of Mulan PSL v2 at:
         http://license.coscl.org.cn/MulanPSL2
THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
See the Mulan PSL v2 for more details. */

//
// Created by Xie Meiyi
// Rewritten by Longda & Wangyunlai
//
#include "storage/index/bplus_tree.h"
#include "storage/default/disk_buffer_pool.h"
#include "rc.h"
#include "common/log/log.h"
#include "sql/parser/parse_defs.h"
羽飞's avatar
羽飞 已提交
20
#include "common/lang/lower_bound.h"
羽飞's avatar
羽飞 已提交
21 22 23 24 25 26 27

#define FIRST_INDEX_PAGE 1

int calc_internal_page_capacity(int attr_length)
{
  int item_size = attr_length + sizeof(RID) + sizeof(PageNum);

L
Longda Feng 已提交
28
  int capacity = ((int)BP_PAGE_DATA_SIZE - InternalIndexNode::HEADER_SIZE) / item_size;
羽飞's avatar
羽飞 已提交
29 30 31 32 33 34
  return capacity;
}

int calc_leaf_page_capacity(int attr_length)
{
  int item_size = attr_length + sizeof(RID) + sizeof(RID);
L
Longda Feng 已提交
35
  int capacity = ((int)BP_PAGE_DATA_SIZE - LeafIndexNode::HEADER_SIZE) / item_size;
羽飞's avatar
羽飞 已提交
36 37 38 39
  return capacity;
}

/////////////////////////////////////////////////////////////////////////////////
羽飞's avatar
羽飞 已提交
40
IndexNodeHandler::IndexNodeHandler(const IndexFileHeader &header, Frame *frame)
L
Longda Feng 已提交
41
    : header_(header), page_num_(frame->page_num()), node_((IndexNode *)frame->data())
羽飞's avatar
羽飞 已提交
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
{}

bool IndexNodeHandler::is_leaf() const
{
  return node_->is_leaf;
}
void IndexNodeHandler::init_empty(bool leaf)
{
  node_->is_leaf = leaf;
  node_->key_num = 0;
  node_->parent = BP_INVALID_PAGE_NUM;
}
PageNum IndexNodeHandler::page_num() const
{
  return page_num_;
}

int IndexNodeHandler::key_size() const
{
  return header_.key_length;
}

int IndexNodeHandler::value_size() const
{
  // return header_.value_size;
  return sizeof(RID);
}

int IndexNodeHandler::item_size() const
{
  return key_size() + value_size();
}

int IndexNodeHandler::size() const
{
  return node_->key_num;
}

void IndexNodeHandler::increase_size(int n)
{
  node_->key_num += n;
}

PageNum IndexNodeHandler::parent_page_num() const
{
  return node_->parent;
}

void IndexNodeHandler::set_parent_page_num(PageNum page_num)
{
  this->node_->parent = page_num;
}
std::string to_string(const IndexNodeHandler &handler)
{
  std::stringstream ss;

L
Longda Feng 已提交
98
  ss << "PageNum:" << handler.page_num() << ",is_leaf:" << handler.is_leaf() << ","
羽飞's avatar
羽飞 已提交
99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
     << "key_num:" << handler.size() << ","
     << "parent:" << handler.parent_page_num() << ",";

  return ss.str();
}

bool IndexNodeHandler::validate() const
{
  if (parent_page_num() == BP_INVALID_PAGE_NUM) {
    // this is a root page
    if (size() < 1) {
      LOG_WARN("root page has no item");
      return false;
    }

    if (!is_leaf() && size() < 2) {
      LOG_WARN("root page internal node has less than 2 child. size=%d", size());
      return false;
    }
  }
  return true;
}

/////////////////////////////////////////////////////////////////////////////////
羽飞's avatar
羽飞 已提交
123
LeafIndexNodeHandler::LeafIndexNodeHandler(const IndexFileHeader &header, Frame *frame)
L
Longda Feng 已提交
124
    : IndexNodeHandler(header, frame), leaf_node_((LeafIndexNode *)frame->data())
羽飞's avatar
羽飞 已提交
125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
{}

void LeafIndexNodeHandler::init_empty()
{
  IndexNodeHandler::init_empty(true);
  leaf_node_->prev_brother = BP_INVALID_PAGE_NUM;
  leaf_node_->next_brother = BP_INVALID_PAGE_NUM;
}

void LeafIndexNodeHandler::set_next_page(PageNum page_num)
{
  leaf_node_->next_brother = page_num;
}

void LeafIndexNodeHandler::set_prev_page(PageNum page_num)
{
  leaf_node_->prev_brother = page_num;
}
PageNum LeafIndexNodeHandler::next_page() const
{
  return leaf_node_->next_brother;
}
PageNum LeafIndexNodeHandler::prev_page() const
{
  return leaf_node_->prev_brother;
}

char *LeafIndexNodeHandler::key_at(int index)
{
  assert(index >= 0 && index < size());
  return __key_at(index);
}

char *LeafIndexNodeHandler::value_at(int index)
{
  assert(index >= 0 && index < size());
  return __value_at(index);
}

int LeafIndexNodeHandler::max_size() const
{
  return header_.leaf_max_size;
}

int LeafIndexNodeHandler::min_size() const
{
  return header_.leaf_max_size - header_.leaf_max_size / 2;
}

int LeafIndexNodeHandler::lookup(const KeyComparator &comparator, const char *key, bool *found /* = nullptr */) const
{
  const int size = this->size();
羽飞's avatar
羽飞 已提交
177 178 179 180
  common::BinaryIterator<char> iter_begin(item_size(), __key_at(0));
  common::BinaryIterator<char> iter_end(item_size(), __key_at(size));
  common::BinaryIterator<char> iter = lower_bound(iter_begin, iter_end, key, comparator, found);
  return iter - iter_begin;
羽飞's avatar
羽飞 已提交
181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211
}

void LeafIndexNodeHandler::insert(int index, const char *key, const char *value)
{
  if (index < size()) {
    memmove(__item_at(index + 1), __item_at(index), (size() - index) * item_size());
  }
  memcpy(__item_at(index), key, key_size());
  memcpy(__item_at(index) + key_size(), value, value_size());
  increase_size(1);
}
void LeafIndexNodeHandler::remove(int index)
{
  assert(index >= 0 && index < size());
  if (index < size() - 1) {
    memmove(__item_at(index), __item_at(index + 1), (size() - index - 1) * item_size());
  }
  increase_size(-1);
}

int LeafIndexNodeHandler::remove(const char *key, const KeyComparator &comparator)
{
  bool found = false;
  int index = lookup(comparator, key, &found);
  if (found) {
    this->remove(index);
    return 1;
  }
  return 0;
}

羽飞's avatar
羽飞 已提交
212
RC LeafIndexNodeHandler::move_half_to(LeafIndexNodeHandler &other, DiskBufferPool *bp)
羽飞's avatar
羽飞 已提交
213 214 215 216 217 218
{
  const int size = this->size();
  const int move_index = size / 2;

  memcpy(other.__item_at(0), this->__item_at(move_index), item_size() * (size - move_index));
  other.increase_size(size - move_index);
L
Longda Feng 已提交
219
  this->increase_size(-(size - move_index));
羽飞's avatar
羽飞 已提交
220 221
  return RC::SUCCESS;
}
羽飞's avatar
羽飞 已提交
222
RC LeafIndexNodeHandler::move_first_to_end(LeafIndexNodeHandler &other, DiskBufferPool *disk_buffer_pool)
羽飞's avatar
羽飞 已提交
223 224 225 226
{
  other.append(__item_at(0));

  if (size() >= 1) {
L
Longda Feng 已提交
227
    memmove(__item_at(0), __item_at(1), (size() - 1) * item_size());
羽飞's avatar
羽飞 已提交
228 229 230 231 232
  }
  increase_size(-1);
  return RC::SUCCESS;
}

羽飞's avatar
羽飞 已提交
233
RC LeafIndexNodeHandler::move_last_to_front(LeafIndexNodeHandler &other, DiskBufferPool *bp)
羽飞's avatar
羽飞 已提交
234 235 236 237 238 239 240 241 242
{
  other.preappend(__item_at(size() - 1));

  increase_size(-1);
  return RC::SUCCESS;
}
/**
 * move all items to left page
 */
羽飞's avatar
羽飞 已提交
243
RC LeafIndexNodeHandler::move_to(LeafIndexNodeHandler &other, DiskBufferPool *bp)
羽飞's avatar
羽飞 已提交
244 245 246
{
  memcpy(other.__item_at(other.size()), this->__item_at(0), this->size() * item_size());
  other.increase_size(this->size());
L
Longda Feng 已提交
247
  this->increase_size(-this->size());
羽飞's avatar
羽飞 已提交
248 249 250 251 252

  other.set_next_page(this->next_page());

  PageNum next_right_page_num = this->next_page();
  if (next_right_page_num != BP_INVALID_PAGE_NUM) {
羽飞's avatar
羽飞 已提交
253 254
    Frame *next_right_frame;
    RC rc = bp->get_this_page(next_right_page_num, &next_right_frame);
羽飞's avatar
羽飞 已提交
255 256 257 258 259
    if (rc != RC::SUCCESS) {
      LOG_WARN("failed to fetch next right page. page number:%d. rc=%d:%s", next_right_page_num, rc, strrc(rc));
      return rc;
    }

羽飞's avatar
羽飞 已提交
260
    LeafIndexNodeHandler next_right_node(header_, next_right_frame);
羽飞's avatar
羽飞 已提交
261
    next_right_node.set_prev_page(other.page_num());
羽飞's avatar
羽飞 已提交
262 263
    next_right_frame->mark_dirty();
    bp->unpin_page(next_right_frame);
羽飞's avatar
羽飞 已提交
264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298
  }
  return RC::SUCCESS;
}

void LeafIndexNodeHandler::append(const char *item)
{
  memcpy(__item_at(size()), item, item_size());
  increase_size(1);
}

void LeafIndexNodeHandler::preappend(const char *item)
{
  if (size() > 0) {
    memmove(__item_at(1), __item_at(0), size() * item_size());
  }
  memcpy(__item_at(0), item, item_size());
  increase_size(1);
}

char *LeafIndexNodeHandler::__item_at(int index) const
{
  return leaf_node_->array + (index * item_size());
}
char *LeafIndexNodeHandler::__key_at(int index) const
{
  return __item_at(index);
}
char *LeafIndexNodeHandler::__value_at(int index) const
{
  return __item_at(index) + key_size();
}

std::string to_string(const LeafIndexNodeHandler &handler, const KeyPrinter &printer)
{
  std::stringstream ss;
L
Longda Feng 已提交
299
  ss << to_string((const IndexNodeHandler &)handler) << ",prev page:" << handler.prev_page()
羽飞's avatar
羽飞 已提交
300
     << ",next page:" << handler.next_page();
L
Longda Feng 已提交
301
  ss << ",values=[" << printer(handler.__key_at(0));
羽飞's avatar
羽飞 已提交
302 303 304 305 306 307 308
  for (int i = 1; i < handler.size(); i++) {
    ss << "," << printer(handler.__key_at(i));
  }
  ss << "]";
  return ss.str();
}

羽飞's avatar
羽飞 已提交
309
bool LeafIndexNodeHandler::validate(const KeyComparator &comparator, DiskBufferPool *bp) const
羽飞's avatar
羽飞 已提交
310 311 312 313 314 315 316 317 318 319
{
  bool result = IndexNodeHandler::validate();
  if (false == result) {
    return false;
  }

  const int node_size = size();
  for (int i = 1; i < node_size; i++) {
    if (comparator(__key_at(i - 1), __key_at(i)) >= 0) {
      LOG_WARN("page number = %d, invalid key order. id1=%d,id2=%d, this=%s",
L
Longda Feng 已提交
320 321 322 323
          page_num(),
          i - 1,
          i,
          to_string(*this).c_str());
羽飞's avatar
羽飞 已提交
324 325 326 327 328 329 330 331 332
      return false;
    }
  }

  PageNum parent_page_num = this->parent_page_num();
  if (parent_page_num == BP_INVALID_PAGE_NUM) {
    return true;
  }

羽飞's avatar
羽飞 已提交
333 334
  Frame *parent_frame;
  RC rc = bp->get_this_page(parent_page_num, &parent_frame);
羽飞's avatar
羽飞 已提交
335
  if (rc != RC::SUCCESS) {
L
Longda Feng 已提交
336
    LOG_WARN("failed to fetch parent page. page num=%d, rc=%d:%s", parent_page_num, rc, strrc(rc));
羽飞's avatar
羽飞 已提交
337 338 339
    return false;
  }

羽飞's avatar
羽飞 已提交
340
  InternalIndexNodeHandler parent_node(header_, parent_frame);
羽飞's avatar
羽飞 已提交
341 342 343
  int index_in_parent = parent_node.value_index(this->page_num());
  if (index_in_parent < 0) {
    LOG_WARN("invalid leaf node. cannot find index in parent. this page num=%d, parent page num=%d",
L
Longda Feng 已提交
344 345
        this->page_num(),
        parent_page_num);
羽飞's avatar
羽飞 已提交
346
    bp->unpin_page(parent_frame);
羽飞's avatar
羽飞 已提交
347 348 349 350 351 352
    return false;
  }

  if (0 != index_in_parent) {
    int cmp_result = comparator(__key_at(0), parent_node.key_at(index_in_parent));
    if (cmp_result < 0) {
L
Longda Feng 已提交
353 354 355 356 357
      LOG_WARN("invalid leaf node. first item should be greate than or equal to parent item. "
               "this page num=%d, parent page num=%d, index in parent=%d",
          this->page_num(),
          parent_node.page_num(),
          index_in_parent);
羽飞's avatar
羽飞 已提交
358
      bp->unpin_page(parent_frame);
羽飞's avatar
羽飞 已提交
359 360 361 362 363 364 365
      return false;
    }
  }

  if (index_in_parent < parent_node.size() - 1) {
    int cmp_result = comparator(__key_at(size() - 1), parent_node.key_at(index_in_parent + 1));
    if (cmp_result >= 0) {
L
Longda Feng 已提交
366 367 368 369 370
      LOG_WARN("invalid leaf node. last item should be less than the item at the first after item in parent."
               "this page num=%d, parent page num=%d, parent item to compare=%d",
          this->page_num(),
          parent_node.page_num(),
          index_in_parent + 1);
羽飞's avatar
羽飞 已提交
371
      bp->unpin_page(parent_frame);
羽飞's avatar
羽飞 已提交
372 373 374
      return false;
    }
  }
羽飞's avatar
羽飞 已提交
375
  bp->unpin_page(parent_frame);
羽飞's avatar
羽飞 已提交
376 377 378 379
  return true;
}

/////////////////////////////////////////////////////////////////////////////////
羽飞's avatar
羽飞 已提交
380
InternalIndexNodeHandler::InternalIndexNodeHandler(const IndexFileHeader &header, Frame *frame)
L
Longda Feng 已提交
381
    : IndexNodeHandler(header, frame), internal_node_((InternalIndexNode *)frame->data())
羽飞's avatar
羽飞 已提交
382 383 384 385 386 387 388 389 390 391 392
{}

std::string to_string(const InternalIndexNodeHandler &node, const KeyPrinter &printer)
{
  std::stringstream ss;
  ss << to_string((const IndexNodeHandler &)node);
  ss << ",children:["
     << "{key:" << printer(node.__key_at(0)) << ","
     << "value:" << *(PageNum *)node.__value_at(0) << "}";

  for (int i = 1; i < node.size(); i++) {
L
Longda Feng 已提交
393
    ss << ",{key:" << printer(node.__key_at(i)) << ",value:" << *(PageNum *)node.__value_at(i) << "}";
羽飞's avatar
羽飞 已提交
394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428
  }
  ss << "]";
  return ss.str();
}

void InternalIndexNodeHandler::init_empty()
{
  IndexNodeHandler::init_empty(false);
}
void InternalIndexNodeHandler::create_new_root(PageNum first_page_num, const char *key, PageNum page_num)
{
  memset(__key_at(0), 0, key_size());
  memcpy(__value_at(0), &first_page_num, value_size());
  memcpy(__item_at(1), key, key_size());
  memcpy(__value_at(1), &page_num, value_size());
  increase_size(2);
}

/**
 * insert one entry
 * the entry to be inserted will never at the first slot.
 * the right child page after split will always have bigger keys.
 */
void InternalIndexNodeHandler::insert(const char *key, PageNum page_num, const KeyComparator &comparator)
{
  int insert_position = -1;
  lookup(comparator, key, nullptr, &insert_position);
  if (insert_position < size()) {
    memmove(__item_at(insert_position + 1), __item_at(insert_position), (size() - insert_position) * item_size());
  }
  memcpy(__item_at(insert_position), key, key_size());
  memcpy(__value_at(insert_position), &page_num, value_size());
  increase_size(1);
}

羽飞's avatar
羽飞 已提交
429
RC InternalIndexNodeHandler::move_half_to(InternalIndexNodeHandler &other, DiskBufferPool *bp)
羽飞's avatar
羽飞 已提交
430 431 432
{
  const int size = this->size();
  const int move_index = size / 2;
羽飞's avatar
羽飞 已提交
433
  RC rc = other.copy_from(this->__item_at(move_index), size - move_index, bp);
羽飞's avatar
羽飞 已提交
434 435 436 437 438
  if (rc != RC::SUCCESS) {
    LOG_WARN("failed to copy item to new node. rc=%d:%s", rc, strrc(rc));
    return rc;
  }

L
Longda Feng 已提交
439
  increase_size(-(size - move_index));
羽飞's avatar
羽飞 已提交
440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455
  return rc;
}

int InternalIndexNodeHandler::max_size() const
{
  return header_.internal_max_size;
}

int InternalIndexNodeHandler::min_size() const
{
  return header_.internal_max_size - header_.internal_max_size / 2;
}

/**
 * lookup the first item which key <= item
 * @return unlike the leafNode, the return value is not the insert position,
L
Longda Feng 已提交
456
 * but only the index of child to find.
羽飞's avatar
羽飞 已提交
457
 */
L
Longda Feng 已提交
458 459
int InternalIndexNodeHandler::lookup(const KeyComparator &comparator, const char *key, bool *found /* = nullptr */,
    int *insert_position /*= nullptr */) const
羽飞's avatar
羽飞 已提交
460 461
{
  const int size = this->size();
羽飞's avatar
羽飞 已提交
462 463 464
  if (size == 0) {
    if (insert_position) {
      *insert_position = 1;
羽飞's avatar
羽飞 已提交
465
    }
羽飞's avatar
羽飞 已提交
466 467
    if (found) {
      *found = false;
羽飞's avatar
羽飞 已提交
468
    }
羽飞's avatar
羽飞 已提交
469
    return 0;
羽飞's avatar
羽飞 已提交
470
  }
羽飞's avatar
羽飞 已提交
471 472 473 474 475

  common::BinaryIterator<char> iter_begin(item_size(), __key_at(1));
  common::BinaryIterator<char> iter_end(item_size(), __key_at(size));
  common::BinaryIterator<char> iter = lower_bound(iter_begin, iter_end, key, comparator, found);
  int ret = static_cast<int>(iter - iter_begin) + 1;
羽飞's avatar
羽飞 已提交
476
  if (insert_position) {
羽飞's avatar
羽飞 已提交
477
    *insert_position = ret;
羽飞's avatar
羽飞 已提交
478
  }
羽飞's avatar
羽飞 已提交
479 480 481 482 483

  if (ret >= size || comparator(key, __key_at(ret)) < 0) {
    return ret - 1;
  }
  return ret;
羽飞's avatar
羽飞 已提交
484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506
}

char *InternalIndexNodeHandler::key_at(int index)
{
  assert(index >= 0 && index < size());
  return __key_at(index);
}

void InternalIndexNodeHandler::set_key_at(int index, const char *key)
{
  assert(index >= 0 && index < size());
  memcpy(__key_at(index), key, key_size());
}

PageNum InternalIndexNodeHandler::value_at(int index)
{
  assert(index >= 0 && index < size());
  return *(PageNum *)__value_at(index);
}

int InternalIndexNodeHandler::value_index(PageNum page_num)
{
  for (int i = 0; i < size(); i++) {
L
Longda Feng 已提交
507
    if (page_num == *(PageNum *)__value_at(i)) {
羽飞's avatar
羽飞 已提交
508 509 510 511 512 513 514 515 516 517 518 519 520 521 522
      return i;
    }
  }
  return -1;
}

void InternalIndexNodeHandler::remove(int index)
{
  assert(index >= 0 && index < size());
  if (index < size() - 1) {
    memmove(__item_at(index), __item_at(index + 1), (size() - index - 1) * item_size());
  }
  increase_size(-1);
}

羽飞's avatar
羽飞 已提交
523
RC InternalIndexNodeHandler::move_to(InternalIndexNodeHandler &other, DiskBufferPool *disk_buffer_pool)
羽飞's avatar
羽飞 已提交
524
{
羽飞's avatar
羽飞 已提交
525
  RC rc = other.copy_from(__item_at(0), size(), disk_buffer_pool);
羽飞's avatar
羽飞 已提交
526 527 528 529 530
  if (rc != RC::SUCCESS) {
    LOG_WARN("failed to copy items to other node. rc=%d:%s", rc, strrc(rc));
    return rc;
  }

L
Longda Feng 已提交
531
  increase_size(-this->size());
羽飞's avatar
羽飞 已提交
532 533 534
  return RC::SUCCESS;
}

羽飞's avatar
羽飞 已提交
535
RC InternalIndexNodeHandler::move_first_to_end(InternalIndexNodeHandler &other, DiskBufferPool *disk_buffer_pool)
羽飞's avatar
羽飞 已提交
536
{
羽飞's avatar
羽飞 已提交
537
  RC rc = other.append(__item_at(0), disk_buffer_pool);
羽飞's avatar
羽飞 已提交
538 539 540 541 542 543
  if (rc != RC::SUCCESS) {
    LOG_WARN("failed to append item to others.");
    return rc;
  }

  if (size() >= 1) {
L
Longda Feng 已提交
544
    memmove(__item_at(0), __item_at(1), (size() - 1) * item_size());
羽飞's avatar
羽飞 已提交
545 546 547 548 549
  }
  increase_size(-1);
  return rc;
}

羽飞's avatar
羽飞 已提交
550
RC InternalIndexNodeHandler::move_last_to_front(InternalIndexNodeHandler &other, DiskBufferPool *bp)
羽飞's avatar
羽飞 已提交
551
{
羽飞's avatar
羽飞 已提交
552
  RC rc = other.preappend(__item_at(size() - 1), bp);
羽飞's avatar
羽飞 已提交
553 554 555 556 557 558 559 560 561 562 563
  if (rc != RC::SUCCESS) {
    LOG_WARN("failed to preappend to others");
    return rc;
  }

  increase_size(-1);
  return rc;
}
/**
 * copy items from other node to self's right
 */
羽飞's avatar
羽飞 已提交
564
RC InternalIndexNodeHandler::copy_from(const char *items, int num, DiskBufferPool *disk_buffer_pool)
羽飞's avatar
羽飞 已提交
565 566 567 568 569
{
  memcpy(__item_at(this->size()), items, num * item_size());

  RC rc = RC::SUCCESS;
  PageNum this_page_num = this->page_num();
羽飞's avatar
羽飞 已提交
570
  Frame *frame = nullptr;
羽飞's avatar
羽飞 已提交
571 572
  for (int i = 0; i < num; i++) {
    const PageNum page_num = *(const PageNum *)((items + i * item_size()) + key_size());
羽飞's avatar
羽飞 已提交
573
    rc = disk_buffer_pool->get_this_page(page_num, &frame);
羽飞's avatar
羽飞 已提交
574 575
    if (rc != RC::SUCCESS) {
      LOG_WARN("failed to set child's page num. child page num:%d, this page num=%d, rc=%d:%s",
L
Longda Feng 已提交
576 577 578 579
          page_num,
          this_page_num,
          rc,
          strrc(rc));
羽飞's avatar
羽飞 已提交
580 581
      return rc;
    }
羽飞's avatar
羽飞 已提交
582
    IndexNodeHandler child_node(header_, frame);
羽飞's avatar
羽飞 已提交
583
    child_node.set_parent_page_num(this_page_num);
羽飞's avatar
羽飞 已提交
584 585
    frame->mark_dirty();
    disk_buffer_pool->unpin_page(frame);
羽飞's avatar
羽飞 已提交
586 587 588 589 590
  }
  increase_size(num);
  return rc;
}

羽飞's avatar
羽飞 已提交
591
RC InternalIndexNodeHandler::append(const char *item, DiskBufferPool *bp)
羽飞's avatar
羽飞 已提交
592
{
羽飞's avatar
羽飞 已提交
593
  return this->copy_from(item, 1, bp);
羽飞's avatar
羽飞 已提交
594 595
}

羽飞's avatar
羽飞 已提交
596
RC InternalIndexNodeHandler::preappend(const char *item, DiskBufferPool *bp)
羽飞's avatar
羽飞 已提交
597 598
{
  PageNum child_page_num = *(PageNum *)(item + key_size());
羽飞's avatar
羽飞 已提交
599 600
  Frame *frame = nullptr;
  RC rc = bp->get_this_page(child_page_num, &frame);
羽飞's avatar
羽飞 已提交
601 602 603 604 605
  if (rc != RC::SUCCESS) {
    LOG_WARN("failed to fetch child page. rc=%d:%s", rc, strrc(rc));
    return rc;
  }

羽飞's avatar
羽飞 已提交
606
  IndexNodeHandler child_node(header_, frame);
羽飞's avatar
羽飞 已提交
607 608
  child_node.set_parent_page_num(this->page_num());

羽飞's avatar
羽飞 已提交
609 610
  frame->mark_dirty();
  bp->unpin_page(frame);
羽飞's avatar
羽飞 已提交
611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645

  if (this->size() > 0) {
    memmove(__item_at(1), __item_at(0), this->size() * item_size());
  }

  memcpy(__item_at(0), item, item_size());
  increase_size(1);
  return RC::SUCCESS;
}

char *InternalIndexNodeHandler::__item_at(int index) const
{
  return internal_node_->array + (index * item_size());
}

char *InternalIndexNodeHandler::__key_at(int index) const
{
  return __item_at(index);
}

char *InternalIndexNodeHandler::__value_at(int index) const
{
  return __item_at(index) + key_size();
}

int InternalIndexNodeHandler::value_size() const
{
  return sizeof(PageNum);
}

int InternalIndexNodeHandler::item_size() const
{
  return key_size() + this->value_size();
}

羽飞's avatar
羽飞 已提交
646
bool InternalIndexNodeHandler::validate(const KeyComparator &comparator, DiskBufferPool *bp) const
羽飞's avatar
羽飞 已提交
647 648 649 650 651 652 653 654 655 656
{
  bool result = IndexNodeHandler::validate();
  if (false == result) {
    return false;
  }

  const int node_size = size();
  for (int i = 2; i < node_size; i++) {
    if (comparator(__key_at(i - 1), __key_at(i)) >= 0) {
      LOG_WARN("page number = %d, invalid key order. id1=%d,id2=%d, this=%s",
L
Longda Feng 已提交
657 658 659 660
          page_num(),
          i - 1,
          i,
          to_string(*this).c_str());
羽飞's avatar
羽飞 已提交
661 662 663 664 665 666 667 668 669
      return false;
    }
  }

  for (int i = 0; result && i < node_size; i++) {
    PageNum page_num = *(PageNum *)__value_at(i);
    if (page_num < 0) {
      LOG_WARN("this page num=%d, got invalid child page. page num=%d", this->page_num(), page_num);
    } else {
羽飞's avatar
羽飞 已提交
670 671
      Frame *child_frame;
      RC rc = bp->get_this_page(page_num, &child_frame);
羽飞's avatar
羽飞 已提交
672
      if (rc != RC::SUCCESS) {
L
Longda Feng 已提交
673 674
        LOG_WARN(
            "failed to fetch child page while validate internal page. page num=%d, rc=%d:%s", page_num, rc, strrc(rc));
羽飞's avatar
羽飞 已提交
675
      } else {
L
Longda Feng 已提交
676 677 678 679 680 681 682 683 684
        IndexNodeHandler child_node(header_, child_frame);
        if (child_node.parent_page_num() != this->page_num()) {
          LOG_WARN("child's parent page num is invalid. child page num=%d, parent page num=%d, this page num=%d",
              child_node.page_num(),
              child_node.parent_page_num(),
              this->page_num());
          result = false;
        }
        bp->unpin_page(child_frame);
羽飞's avatar
羽飞 已提交
685 686 687 688 689 690 691 692 693 694 695 696 697
      }
    }
  }

  if (!result) {
    return result;
  }

  const PageNum parent_page_num = this->parent_page_num();
  if (parent_page_num == BP_INVALID_PAGE_NUM) {
    return result;
  }

羽飞's avatar
羽飞 已提交
698 699
  Frame *parent_frame;
  RC rc = bp->get_this_page(parent_page_num, &parent_frame);
羽飞's avatar
羽飞 已提交
700 701 702 703 704
  if (rc != RC::SUCCESS) {
    LOG_WARN("failed to fetch parent page. page num=%d, rc=%d:%s", parent_page_num, rc, strrc(rc));
    return false;
  }

羽飞's avatar
羽飞 已提交
705
  InternalIndexNodeHandler parent_node(header_, parent_frame);
羽飞's avatar
羽飞 已提交
706 707 708
  int index_in_parent = parent_node.value_index(this->page_num());
  if (index_in_parent < 0) {
    LOG_WARN("invalid internal node. cannot find index in parent. this page num=%d, parent page num=%d",
L
Longda Feng 已提交
709 710
        this->page_num(),
        parent_page_num);
羽飞's avatar
羽飞 已提交
711
    bp->unpin_page(parent_frame);
羽飞's avatar
羽飞 已提交
712 713 714 715 716 717
    return false;
  }

  if (0 != index_in_parent) {
    int cmp_result = comparator(__key_at(1), parent_node.key_at(index_in_parent));
    if (cmp_result < 0) {
L
Longda Feng 已提交
718 719 720 721 722
      LOG_WARN("invalid internal node. the second item should be greate than or equal to parent item. "
               "this page num=%d, parent page num=%d, index in parent=%d",
          this->page_num(),
          parent_node.page_num(),
          index_in_parent);
羽飞's avatar
羽飞 已提交
723
      bp->unpin_page(parent_frame);
羽飞's avatar
羽飞 已提交
724 725 726 727 728 729 730
      return false;
    }
  }

  if (index_in_parent < parent_node.size() - 1) {
    int cmp_result = comparator(__key_at(size() - 1), parent_node.key_at(index_in_parent + 1));
    if (cmp_result >= 0) {
L
Longda Feng 已提交
731 732 733 734 735
      LOG_WARN("invalid internal node. last item should be less than the item at the first after item in parent."
               "this page num=%d, parent page num=%d, parent item to compare=%d",
          this->page_num(),
          parent_node.page_num(),
          index_in_parent + 1);
羽飞's avatar
羽飞 已提交
736
      bp->unpin_page(parent_frame);
羽飞's avatar
羽飞 已提交
737 738 739
      return false;
    }
  }
羽飞's avatar
羽飞 已提交
740
  bp->unpin_page(parent_frame);
羽飞's avatar
羽飞 已提交
741 742 743 744 745 746 747 748

  return result;
}

/////////////////////////////////////////////////////////////////////////////////

RC BplusTreeHandler::sync()
{
羽飞's avatar
羽飞 已提交
749
  return disk_buffer_pool_->flush_all_pages();
羽飞's avatar
羽飞 已提交
750 751
}

L
Longda Feng 已提交
752 753
RC BplusTreeHandler::create(const char *file_name, AttrType attr_type, int attr_length, int internal_max_size /* = -1*/,
    int leaf_max_size /* = -1 */)
羽飞's avatar
羽飞 已提交
754
{
羽飞's avatar
羽飞 已提交
755 756
  BufferPoolManager &bpm = BufferPoolManager::instance();
  RC rc = bpm.create_file(file_name);
羽飞's avatar
羽飞 已提交
757 758 759 760 761 762
  if (rc != RC::SUCCESS) {
    LOG_WARN("Failed to create file. file name=%s, rc=%d:%s", file_name, rc, strrc(rc));
    return rc;
  }
  LOG_INFO("Successfully create index file:%s", file_name);

羽飞's avatar
羽飞 已提交
763 764
  DiskBufferPool *bp = nullptr;
  rc = bpm.open_file(file_name, bp);
羽飞's avatar
羽飞 已提交
765 766 767 768 769 770
  if (rc != RC::SUCCESS) {
    LOG_WARN("Failed to open file. file name=%s, rc=%d:%s", file_name, rc, strrc(rc));
    return rc;
  }
  LOG_INFO("Successfully open index file %s.", file_name);

羽飞's avatar
羽飞 已提交
771 772
  Frame *header_frame;
  rc = bp->allocate_page(&header_frame);
羽飞's avatar
羽飞 已提交
773 774
  if (rc != RC::SUCCESS) {
    LOG_WARN("failed to allocate header page for bplus tree. rc=%d:%s", rc, strrc(rc));
羽飞's avatar
羽飞 已提交
775
    bpm.close_file(file_name);
羽飞's avatar
羽飞 已提交
776 777 778
    return rc;
  }

羽飞's avatar
羽飞 已提交
779
  if (header_frame->page_num() != FIRST_INDEX_PAGE) {
羽飞's avatar
羽飞 已提交
780
    LOG_WARN("header page num should be %d but got %d. is it a new file : %s",
L
Longda Feng 已提交
781 782 783
        FIRST_INDEX_PAGE,
        header_frame->page_num(),
        file_name);
羽飞's avatar
羽飞 已提交
784
    bpm.close_file(file_name);
羽飞's avatar
羽飞 已提交
785 786 787 788 789 790 791 792 793
    return RC::INTERNAL;
  }

  if (internal_max_size < 0) {
    internal_max_size = calc_internal_page_capacity(attr_length);
  }
  if (leaf_max_size < 0) {
    leaf_max_size = calc_leaf_page_capacity(attr_length);
  }
羽飞's avatar
羽飞 已提交
794 795

  char *pdata = header_frame->data();
羽飞's avatar
羽飞 已提交
796 797 798 799 800 801 802 803
  IndexFileHeader *file_header = (IndexFileHeader *)pdata;
  file_header->attr_length = attr_length;
  file_header->key_length = attr_length + sizeof(RID);
  file_header->attr_type = attr_type;
  file_header->internal_max_size = internal_max_size;
  file_header->leaf_max_size = leaf_max_size;
  file_header->root_page = BP_INVALID_PAGE_NUM;

羽飞's avatar
羽飞 已提交
804
  header_frame->mark_dirty();
羽飞's avatar
羽飞 已提交
805

羽飞's avatar
羽飞 已提交
806
  disk_buffer_pool_ = bp;
羽飞's avatar
羽飞 已提交
807 808 809

  memcpy(&file_header_, pdata, sizeof(file_header_));
  header_dirty_ = false;
羽飞's avatar
羽飞 已提交
810
  bp->unpin_page(header_frame);
羽飞's avatar
羽飞 已提交
811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826

  mem_pool_item_ = new common::MemPoolItem(file_name);
  if (mem_pool_item_->init(file_header->key_length) < 0) {
    LOG_WARN("Failed to init memory pool for index %s", file_name);
    close();
    return RC::NOMEM;
  }

  key_comparator_.init(file_header->attr_type, file_header->attr_length);
  key_printer_.init(file_header->attr_type, file_header->attr_length);
  LOG_INFO("Successfully create index %s", file_name);
  return RC::SUCCESS;
}

RC BplusTreeHandler::open(const char *file_name)
{
羽飞's avatar
羽飞 已提交
827
  if (disk_buffer_pool_ != nullptr) {
羽飞's avatar
羽飞 已提交
828 829 830 831
    LOG_WARN("%s has been opened before index.open.", file_name);
    return RC::RECORD_OPENNED;
  }

羽飞's avatar
羽飞 已提交
832 833 834
  BufferPoolManager &bpm = BufferPoolManager::instance();
  DiskBufferPool *disk_buffer_pool;
  RC rc = bpm.open_file(file_name, disk_buffer_pool);
羽飞's avatar
羽飞 已提交
835 836 837 838 839
  if (rc != RC::SUCCESS) {
    LOG_WARN("Failed to open file name=%s, rc=%d:%s", file_name, rc, strrc(rc));
    return rc;
  }

羽飞's avatar
羽飞 已提交
840 841
  Frame *frame;
  rc = disk_buffer_pool->get_this_page(FIRST_INDEX_PAGE, &frame);
羽飞's avatar
羽飞 已提交
842 843
  if (rc != RC::SUCCESS) {
    LOG_WARN("Failed to get first page file name=%s, rc=%d:%s", file_name, rc, strrc(rc));
羽飞's avatar
羽飞 已提交
844
    bpm.close_file(file_name);
羽飞's avatar
羽飞 已提交
845 846 847
    return rc;
  }

羽飞's avatar
羽飞 已提交
848
  char *pdata = frame->data();
羽飞's avatar
羽飞 已提交
849 850 851 852 853 854 855 856 857 858 859 860
  memcpy(&file_header_, pdata, sizeof(IndexFileHeader));
  header_dirty_ = false;
  disk_buffer_pool_ = disk_buffer_pool;

  mem_pool_item_ = new common::MemPoolItem(file_name);
  if (mem_pool_item_->init(file_header_.key_length) < 0) {
    LOG_WARN("Failed to init memory pool for index %s", file_name);
    close();
    return RC::NOMEM;
  }

  // close old page_handle
羽飞's avatar
羽飞 已提交
861
  disk_buffer_pool->unpin_page(frame);
羽飞's avatar
羽飞 已提交
862 863

  key_comparator_.init(file_header_.attr_type, file_header_.attr_length);
羽飞's avatar
羽飞 已提交
864
  key_printer_.init(file_header_.attr_type, file_header_.attr_length);
羽飞's avatar
羽飞 已提交
865 866 867 868 869 870
  LOG_INFO("Successfully open index %s", file_name);
  return RC::SUCCESS;
}

RC BplusTreeHandler::close()
{
羽飞's avatar
羽飞 已提交
871
  if (disk_buffer_pool_ != nullptr) {
羽飞's avatar
羽飞 已提交
872

L
Longda Feng 已提交
873
    disk_buffer_pool_->close_file();  // TODO
羽飞's avatar
羽飞 已提交
874 875 876 877 878 879 880 881 882

    delete mem_pool_item_;
    mem_pool_item_ = nullptr;
  }

  disk_buffer_pool_ = nullptr;
  return RC::SUCCESS;
}

羽飞's avatar
羽飞 已提交
883
RC BplusTreeHandler::print_leaf(Frame *frame)
羽飞's avatar
羽飞 已提交
884
{
羽飞's avatar
羽飞 已提交
885
  LeafIndexNodeHandler leaf_node(file_header_, frame);
羽飞's avatar
羽飞 已提交
886
  LOG_INFO("leaf node: %s", to_string(leaf_node, key_printer_).c_str());
羽飞's avatar
羽飞 已提交
887
  disk_buffer_pool_->unpin_page(frame);
羽飞's avatar
羽飞 已提交
888 889 890
  return RC::SUCCESS;
}

羽飞's avatar
羽飞 已提交
891
RC BplusTreeHandler::print_internal_node_recursive(Frame *frame)
羽飞's avatar
羽飞 已提交
892 893 894
{
  RC rc = RC::SUCCESS;
  LOG_INFO("bplus tree. file header: %s", file_header_.to_string().c_str());
羽飞's avatar
羽飞 已提交
895
  InternalIndexNodeHandler internal_node(file_header_, frame);
羽飞's avatar
羽飞 已提交
896 897 898 899 900
  LOG_INFO("internal node: %s", to_string(internal_node, key_printer_).c_str());

  int node_size = internal_node.size();
  for (int i = 0; i < node_size; i++) {
    PageNum page_num = internal_node.value_at(i);
羽飞's avatar
羽飞 已提交
901 902
    Frame *child_frame;
    rc = disk_buffer_pool_->get_this_page(page_num, &child_frame);
羽飞's avatar
羽飞 已提交
903 904
    if (rc != RC::SUCCESS) {
      LOG_WARN("failed to fetch child page. page id=%d, rc=%d:%s", page_num, rc, strrc(rc));
羽飞's avatar
羽飞 已提交
905
      disk_buffer_pool_->unpin_page(frame);
羽飞's avatar
羽飞 已提交
906 907 908
      return rc;
    }

羽飞's avatar
羽飞 已提交
909
    IndexNodeHandler node(file_header_, child_frame);
羽飞's avatar
羽飞 已提交
910
    if (node.is_leaf()) {
羽飞's avatar
羽飞 已提交
911
      rc = print_leaf(child_frame);
羽飞's avatar
羽飞 已提交
912
    } else {
羽飞's avatar
羽飞 已提交
913
      rc = print_internal_node_recursive(child_frame);
羽飞's avatar
羽飞 已提交
914 915
    }
    if (rc != RC::SUCCESS) {
羽飞's avatar
羽飞 已提交
916 917
      LOG_WARN("failed to print node. page id=%d, rc=%d:%s", child_frame->page_num(), rc, strrc(rc));
      disk_buffer_pool_->unpin_page(frame);
羽飞's avatar
羽飞 已提交
918 919 920 921
      return rc;
    }
  }

羽飞's avatar
羽飞 已提交
922
  disk_buffer_pool_->unpin_page(frame);
羽飞's avatar
羽飞 已提交
923 924 925 926 927
  return RC::SUCCESS;
}

RC BplusTreeHandler::print_tree()
{
羽飞's avatar
羽飞 已提交
928
  if (disk_buffer_pool_ == nullptr) {
羽飞's avatar
羽飞 已提交
929 930 931 932 933 934 935 936
    LOG_WARN("Index hasn't been created or opened, fail to print");
    return RC::SUCCESS;
  }
  if (is_empty()) {
    LOG_INFO("tree is empty");
    return RC::SUCCESS;
  }

羽飞's avatar
羽飞 已提交
937
  Frame *frame;
羽飞's avatar
羽飞 已提交
938
  PageNum page_num = file_header_.root_page;
羽飞's avatar
羽飞 已提交
939
  RC rc = disk_buffer_pool_->get_this_page(page_num, &frame);
羽飞's avatar
羽飞 已提交
940 941 942 943
  if (rc != RC::SUCCESS) {
    LOG_WARN("failed to fetch page. page id=%d, rc=%d:%s", page_num, rc, strrc(rc));
    return rc;
  }
L
Longda Feng 已提交
944

羽飞's avatar
羽飞 已提交
945
  IndexNodeHandler node(file_header_, frame);
羽飞's avatar
羽飞 已提交
946
  if (node.is_leaf()) {
羽飞's avatar
羽飞 已提交
947
    rc = print_leaf(frame);
羽飞's avatar
羽飞 已提交
948
  } else {
羽飞's avatar
羽飞 已提交
949
    rc = print_internal_node_recursive(frame);
羽飞's avatar
羽飞 已提交
950 951 952 953 954 955 956 957 958 959 960
  }
  return rc;
}

RC BplusTreeHandler::print_leafs()
{
  if (is_empty()) {
    LOG_INFO("empty tree");
    return RC::SUCCESS;
  }

羽飞's avatar
羽飞 已提交
961
  Frame *frame;
L
Longda Feng 已提交
962

羽飞's avatar
羽飞 已提交
963
  RC rc = left_most_page(frame);
羽飞's avatar
羽飞 已提交
964 965 966 967 968
  if (rc != RC::SUCCESS) {
    LOG_WARN("failed to get left most page. rc=%d:%s", rc, strrc(rc));
    return rc;
  }

羽飞's avatar
羽飞 已提交
969 970
  while (frame->page_num() != BP_INVALID_PAGE_NUM) {
    LeafIndexNodeHandler leaf_node(file_header_, frame);
羽飞's avatar
羽飞 已提交
971 972 973
    LOG_INFO("leaf info: %s", to_string(leaf_node, key_printer_).c_str());

    PageNum next_page_num = leaf_node.next_page();
羽飞's avatar
羽飞 已提交
974
    disk_buffer_pool_->unpin_page(frame);
羽飞's avatar
羽飞 已提交
975 976 977 978 979

    if (next_page_num == BP_INVALID_PAGE_NUM) {
      break;
    }

羽飞's avatar
羽飞 已提交
980
    rc = disk_buffer_pool_->get_this_page(next_page_num, &frame);
羽飞's avatar
羽飞 已提交
981 982 983 984 985 986 987 988
    if (rc != RC::SUCCESS) {
      LOG_WARN("failed to get next page. page id=%d, rc=%d:%s", next_page_num, rc, strrc(rc));
      return rc;
    }
  }
  return rc;
}

羽飞's avatar
羽飞 已提交
989
bool BplusTreeHandler::validate_node_recursive(Frame *frame)
羽飞's avatar
羽飞 已提交
990 991
{
  bool result = true;
羽飞's avatar
羽飞 已提交
992
  IndexNodeHandler node(file_header_, frame);
羽飞's avatar
羽飞 已提交
993
  if (node.is_leaf()) {
羽飞's avatar
羽飞 已提交
994 995
    LeafIndexNodeHandler leaf_node(file_header_, frame);
    result = leaf_node.validate(key_comparator_, disk_buffer_pool_);
羽飞's avatar
羽飞 已提交
996
  } else {
羽飞's avatar
羽飞 已提交
997 998
    InternalIndexNodeHandler internal_node(file_header_, frame);
    result = internal_node.validate(key_comparator_, disk_buffer_pool_);
羽飞's avatar
羽飞 已提交
999 1000
    for (int i = 0; result && i < internal_node.size(); i++) {
      PageNum page_num = internal_node.value_at(i);
羽飞's avatar
羽飞 已提交
1001 1002
      Frame *child_frame;
      RC rc = disk_buffer_pool_->get_this_page(page_num, &child_frame);
羽飞's avatar
羽飞 已提交
1003 1004 1005 1006 1007 1008
      if (rc != RC::SUCCESS) {
        LOG_WARN("failed to fetch child page.page id=%d, rc=%d:%s", page_num, rc, strrc(rc));
        result = false;
        break;
      }

羽飞's avatar
羽飞 已提交
1009
      result = validate_node_recursive(child_frame);
羽飞's avatar
羽飞 已提交
1010 1011 1012
    }
  }

羽飞's avatar
羽飞 已提交
1013
  disk_buffer_pool_->unpin_page(frame);
羽飞's avatar
羽飞 已提交
1014 1015 1016 1017 1018 1019 1020 1021 1022
  return result;
}

bool BplusTreeHandler::validate_leaf_link()
{
  if (is_empty()) {
    return true;
  }

羽飞's avatar
羽飞 已提交
1023 1024
  Frame *frame;
  RC rc = left_most_page(frame);
羽飞's avatar
羽飞 已提交
1025 1026 1027 1028 1029 1030 1031
  if (rc != RC::SUCCESS) {
    LOG_WARN("failed to fetch left most page. rc=%d:%s", rc, strrc(rc));
    return false;
  }

  PageNum prev_page_num = BP_INVALID_PAGE_NUM;

羽飞's avatar
羽飞 已提交
1032
  LeafIndexNodeHandler leaf_node(file_header_, frame);
羽飞's avatar
羽飞 已提交
1033 1034
  if (leaf_node.prev_page() != prev_page_num) {
    LOG_WARN("invalid page. current_page_num=%d, prev page num should be %d but got %d",
L
Longda Feng 已提交
1035 1036 1037
        frame->page_num(),
        prev_page_num,
        leaf_node.prev_page());
羽飞's avatar
羽飞 已提交
1038 1039 1040 1041
    return false;
  }
  PageNum next_page_num = leaf_node.next_page();

羽飞's avatar
羽飞 已提交
1042
  prev_page_num = frame->page_num();
羽飞's avatar
羽飞 已提交
1043 1044
  char *prev_key = (char *)mem_pool_item_->alloc();
  memcpy(prev_key, leaf_node.key_at(leaf_node.size() - 1), file_header_.key_length);
羽飞's avatar
羽飞 已提交
1045
  disk_buffer_pool_->unpin_page(frame);
羽飞's avatar
羽飞 已提交
1046 1047 1048

  bool result = true;
  while (result && next_page_num != BP_INVALID_PAGE_NUM) {
羽飞's avatar
羽飞 已提交
1049
    rc = disk_buffer_pool_->get_this_page(next_page_num, &frame);
羽飞's avatar
羽飞 已提交
1050
    if (rc != RC::SUCCESS) {
羽飞's avatar
羽飞 已提交
1051
      free_key(prev_key);
羽飞's avatar
羽飞 已提交
1052 1053 1054 1055
      LOG_WARN("failed to fetch next page. page num=%d, rc=%d:%s", next_page_num, rc, strrc(rc));
      return false;
    }

羽飞's avatar
羽飞 已提交
1056
    LeafIndexNodeHandler leaf_node(file_header_, frame);
羽飞's avatar
羽飞 已提交
1057 1058
    if (leaf_node.prev_page() != prev_page_num) {
      LOG_WARN("invalid page. current_page_num=%d, prev page num should be %d but got %d",
L
Longda Feng 已提交
1059 1060 1061
          frame->page_num(),
          prev_page_num,
          leaf_node.prev_page());
羽飞's avatar
羽飞 已提交
1062 1063 1064 1065 1066 1067 1068 1069 1070
      result = false;
    }
    if (key_comparator_(prev_key, leaf_node.key_at(0)) >= 0) {
      LOG_WARN("invalid page. current first key is not bigger than last");
      result = false;
    }

    next_page_num = leaf_node.next_page();
    memcpy(prev_key, leaf_node.key_at(leaf_node.size() - 1), file_header_.key_length);
羽飞's avatar
羽飞 已提交
1071 1072
    prev_page_num = frame->page_num();
    disk_buffer_pool_->unpin_page(frame);
羽飞's avatar
羽飞 已提交
1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085
  }

  free_key(prev_key);
  // can do more things
  return result;
}

bool BplusTreeHandler::validate_tree()
{
  if (is_empty()) {
    return true;
  }

羽飞's avatar
羽飞 已提交
1086 1087
  Frame *frame;
  RC rc = disk_buffer_pool_->get_this_page(file_header_.root_page, &frame);
羽飞's avatar
羽飞 已提交
1088 1089 1090 1091 1092
  if (rc != RC::SUCCESS) {
    LOG_WARN("failed to fetch root page. page id=%d, rc=%d:%s", file_header_.root_page, rc, strrc(rc));
    return rc;
  }

羽飞's avatar
羽飞 已提交
1093
  if (!validate_node_recursive(frame) || !validate_leaf_link()) {
羽飞's avatar
羽飞 已提交
1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107
    LOG_WARN("Current B+ Tree is invalid");
    print_tree();
    return false;
  }

  LOG_INFO("great! current tree is valid");
  return true;
}

bool BplusTreeHandler::is_empty() const
{
  return file_header_.root_page == BP_INVALID_PAGE_NUM;
}

羽飞's avatar
羽飞 已提交
1108
RC BplusTreeHandler::find_leaf(const char *key, Frame *&frame)
羽飞's avatar
羽飞 已提交
1109 1110
{
  return find_leaf_internal(
L
Longda Feng 已提交
1111 1112 1113 1114
      [&](InternalIndexNodeHandler &internal_node) {
        return internal_node.value_at(internal_node.lookup(key_comparator_, key));
      },
      frame);
羽飞's avatar
羽飞 已提交
1115 1116
}

羽飞's avatar
羽飞 已提交
1117
RC BplusTreeHandler::left_most_page(Frame *&frame)
羽飞's avatar
羽飞 已提交
1118
{
L
Longda Feng 已提交
1119
  return find_leaf_internal([&](InternalIndexNodeHandler &internal_node) { return internal_node.value_at(0); }, frame);
羽飞's avatar
羽飞 已提交
1120
}
羽飞's avatar
羽飞 已提交
1121
RC BplusTreeHandler::right_most_page(Frame *&frame)
羽飞's avatar
羽飞 已提交
1122 1123
{
  return find_leaf_internal(
L
Longda Feng 已提交
1124
      [&](InternalIndexNodeHandler &internal_node) { return internal_node.value_at(internal_node.size() - 1); }, frame);
羽飞's avatar
羽飞 已提交
1125 1126
}

L
Longda Feng 已提交
1127 1128
RC BplusTreeHandler::find_leaf_internal(
    const std::function<PageNum(InternalIndexNodeHandler &)> &child_page_getter, Frame *&frame)
羽飞's avatar
羽飞 已提交
1129 1130 1131 1132 1133
{
  if (is_empty()) {
    return RC::EMPTY;
  }

羽飞's avatar
羽飞 已提交
1134
  RC rc = disk_buffer_pool_->get_this_page(file_header_.root_page, &frame);
羽飞's avatar
羽飞 已提交
1135 1136 1137 1138 1139
  if (rc != RC::SUCCESS) {
    LOG_WARN("failed to fetch root page. page id=%d, rc=%d:%s", file_header_.root_page, rc, strrc(rc));
    return rc;
  }

羽飞's avatar
羽飞 已提交
1140
  IndexNode *node = (IndexNode *)frame->data();
羽飞's avatar
羽飞 已提交
1141
  while (false == node->is_leaf) {
羽飞's avatar
羽飞 已提交
1142
    InternalIndexNodeHandler internal_node(file_header_, frame);
羽飞's avatar
羽飞 已提交
1143 1144
    PageNum page_num = child_page_getter(internal_node);

羽飞's avatar
羽飞 已提交
1145
    disk_buffer_pool_->unpin_page(frame);
羽飞's avatar
羽飞 已提交
1146

羽飞's avatar
羽飞 已提交
1147
    rc = disk_buffer_pool_->get_this_page(page_num, &frame);
羽飞's avatar
羽飞 已提交
1148
    if (rc != RC::SUCCESS) {
羽飞's avatar
羽飞 已提交
1149
      LOG_WARN("Failed to load page page_num:%d", page_num);
羽飞's avatar
羽飞 已提交
1150 1151
      return rc;
    }
羽飞's avatar
羽飞 已提交
1152
    node = (IndexNode *)frame->data();
羽飞's avatar
羽飞 已提交
1153 1154 1155 1156 1157
  }

  return RC::SUCCESS;
}

羽飞's avatar
羽飞 已提交
1158
RC BplusTreeHandler::insert_entry_into_leaf_node(Frame *frame, const char *key, const RID *rid)
羽飞's avatar
羽飞 已提交
1159
{
羽飞's avatar
羽飞 已提交
1160
  LeafIndexNodeHandler leaf_node(file_header_, frame);
羽飞's avatar
羽飞 已提交
1161 1162 1163 1164 1165 1166 1167 1168 1169
  bool exists = false;
  int insert_position = leaf_node.lookup(key_comparator_, key, &exists);
  if (exists) {
    LOG_TRACE("entry exists");
    return RC::RECORD_DUPLICATE_KEY;
  }

  if (leaf_node.size() < leaf_node.max_size()) {
    leaf_node.insert(insert_position, key, (const char *)rid);
羽飞's avatar
羽飞 已提交
1170 1171
    frame->mark_dirty();
    disk_buffer_pool_->unpin_page(frame);
羽飞's avatar
羽飞 已提交
1172 1173 1174
    return RC::SUCCESS;
  }

L
Longda Feng 已提交
1175
  Frame *new_frame = nullptr;
羽飞's avatar
羽飞 已提交
1176
  RC rc = split<LeafIndexNodeHandler>(frame, new_frame);
羽飞's avatar
羽飞 已提交
1177 1178 1179 1180 1181
  if (rc != RC::SUCCESS) {
    LOG_WARN("failed to split leaf node. rc=%d:%s", rc, strrc(rc));
    return rc;
  }

羽飞's avatar
羽飞 已提交
1182 1183
  LeafIndexNodeHandler new_index_node(file_header_, new_frame);
  new_index_node.set_prev_page(frame->page_num());
羽飞's avatar
羽飞 已提交
1184 1185
  new_index_node.set_next_page(leaf_node.next_page());
  new_index_node.set_parent_page_num(leaf_node.parent_page_num());
羽飞's avatar
羽飞 已提交
1186
  leaf_node.set_next_page(new_frame->page_num());
羽飞's avatar
羽飞 已提交
1187 1188 1189

  PageNum next_page_num = new_index_node.next_page();
  if (next_page_num != BP_INVALID_PAGE_NUM) {
L
Longda Feng 已提交
1190
    Frame *next_frame;
羽飞's avatar
羽飞 已提交
1191
    rc = disk_buffer_pool_->get_this_page(next_page_num, &next_frame);
羽飞's avatar
羽飞 已提交
1192 1193 1194 1195 1196
    if (rc != RC::SUCCESS) {
      LOG_WARN("failed to fetch next page. page num=%d, rc=%d:%s", next_page_num, rc, strrc(rc));
      return rc;
    }

羽飞's avatar
羽飞 已提交
1197 1198 1199
    LeafIndexNodeHandler next_node(file_header_, next_frame);
    next_node.set_prev_page(new_frame->page_num());
    disk_buffer_pool_->unpin_page(next_frame);
羽飞's avatar
羽飞 已提交
1200 1201 1202 1203 1204 1205 1206 1207
  }

  if (insert_position < leaf_node.size()) {
    leaf_node.insert(insert_position, key, (const char *)rid);
  } else {
    new_index_node.insert(insert_position - leaf_node.size(), key, (const char *)rid);
  }

羽飞's avatar
羽飞 已提交
1208
  return insert_entry_into_parent(frame, new_frame, new_index_node.key_at(0));
羽飞's avatar
羽飞 已提交
1209 1210
}

羽飞's avatar
羽飞 已提交
1211
RC BplusTreeHandler::insert_entry_into_parent(Frame *frame, Frame *new_frame, const char *key)
羽飞's avatar
羽飞 已提交
1212 1213 1214
{
  RC rc = RC::SUCCESS;

羽飞's avatar
羽飞 已提交
1215 1216
  IndexNodeHandler node_handler(file_header_, frame);
  IndexNodeHandler new_node_handler(file_header_, new_frame);
羽飞's avatar
羽飞 已提交
1217 1218 1219 1220 1221
  PageNum parent_page_num = node_handler.parent_page_num();

  if (parent_page_num == BP_INVALID_PAGE_NUM) {

    // create new root page
羽飞's avatar
羽飞 已提交
1222 1223
    Frame *root_frame;
    rc = disk_buffer_pool_->allocate_page(&root_frame);
羽飞's avatar
羽飞 已提交
1224 1225 1226 1227 1228
    if (rc != RC::SUCCESS) {
      LOG_WARN("failed to allocate new root page. rc=%d:%s", rc, strrc(rc));
      return rc;
    }

羽飞's avatar
羽飞 已提交
1229
    InternalIndexNodeHandler root_node(file_header_, root_frame);
羽飞's avatar
羽飞 已提交
1230
    root_node.init_empty();
羽飞's avatar
羽飞 已提交
1231 1232 1233
    root_node.create_new_root(frame->page_num(), key, new_frame->page_num());
    node_handler.set_parent_page_num(root_frame->page_num());
    new_node_handler.set_parent_page_num(root_frame->page_num());
羽飞's avatar
羽飞 已提交
1234

羽飞's avatar
羽飞 已提交
1235 1236 1237 1238
    frame->mark_dirty();
    new_frame->mark_dirty();
    disk_buffer_pool_->unpin_page(frame);
    disk_buffer_pool_->unpin_page(new_frame);
羽飞's avatar
羽飞 已提交
1239

羽飞's avatar
羽飞 已提交
1240
    file_header_.root_page = root_frame->page_num();
L
Longda Feng 已提交
1241
    update_root_page_num();  // TODO
羽飞's avatar
羽飞 已提交
1242 1243
    root_frame->mark_dirty();
    disk_buffer_pool_->unpin_page(root_frame);
羽飞's avatar
羽飞 已提交
1244 1245 1246 1247 1248

    return RC::SUCCESS;

  } else {

羽飞's avatar
羽飞 已提交
1249 1250
    Frame *parent_frame;
    rc = disk_buffer_pool_->get_this_page(parent_page_num, &parent_frame);
羽飞's avatar
羽飞 已提交
1251 1252 1253 1254 1255 1256
    if (rc != RC::SUCCESS) {
      LOG_WARN("failed to insert entry into leaf. rc=%d:%s", rc, strrc(rc));
      // should do more things to recover
      return rc;
    }

羽飞's avatar
羽飞 已提交
1257
    InternalIndexNodeHandler node(file_header_, parent_frame);
羽飞's avatar
羽飞 已提交
1258 1259 1260

    /// current node is not in full mode, insert the entry and return
    if (node.size() < node.max_size()) {
羽飞's avatar
羽飞 已提交
1261
      node.insert(key, new_frame->page_num(), key_comparator_);
羽飞's avatar
羽飞 已提交
1262 1263
      new_node_handler.set_parent_page_num(parent_page_num);

羽飞's avatar
羽飞 已提交
1264 1265 1266 1267 1268 1269
      frame->mark_dirty();
      new_frame->mark_dirty();
      parent_frame->mark_dirty();
      disk_buffer_pool_->unpin_page(frame);
      disk_buffer_pool_->unpin_page(new_frame);
      disk_buffer_pool_->unpin_page(parent_frame);
羽飞's avatar
羽飞 已提交
1270 1271 1272 1273

    } else {

      // we should split the node and insert the entry and then insert new entry to current node's parent
L
Longda Feng 已提交
1274
      Frame *new_parent_frame;
羽飞's avatar
羽飞 已提交
1275
      rc = split<InternalIndexNodeHandler>(parent_frame, new_parent_frame);
羽飞's avatar
羽飞 已提交
1276
      if (rc != RC::SUCCESS) {
L
Longda Feng 已提交
1277 1278 1279 1280
        LOG_WARN("failed to split internal node. rc=%d:%s", rc, strrc(rc));
        disk_buffer_pool_->unpin_page(frame);
        disk_buffer_pool_->unpin_page(new_frame);
        disk_buffer_pool_->unpin_page(parent_frame);
羽飞's avatar
羽飞 已提交
1281
      } else {
L
Longda Feng 已提交
1282 1283 1284 1285
        // insert into left or right ? decide by key compare result
        InternalIndexNodeHandler new_node(file_header_, new_parent_frame);
        if (key_comparator_(key, new_node.key_at(0)) > 0) {
          new_node.insert(key, new_frame->page_num(), key_comparator_);
羽飞's avatar
羽飞 已提交
1286
          new_node_handler.set_parent_page_num(new_node.page_num());
L
Longda Feng 已提交
1287 1288
        } else {
          node.insert(key, new_frame->page_num(), key_comparator_);
羽飞's avatar
羽飞 已提交
1289
          new_node_handler.set_parent_page_num(node.page_num());
L
Longda Feng 已提交
1290
        }
羽飞's avatar
羽飞 已提交
1291

L
Longda Feng 已提交
1292 1293 1294 1295
        disk_buffer_pool_->unpin_page(frame);
        disk_buffer_pool_->unpin_page(new_frame);

        rc = insert_entry_into_parent(parent_frame, new_parent_frame, new_node.key_at(0));
羽飞's avatar
羽飞 已提交
1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308
      }
    }
  }
  return rc;
}

/**
 * split one full node into two
 * @param page_handle[inout] the node to split
 * @param new_page_handle[out] the new node after split
 * @param intert_position the intert position of new key
 */
template <typename IndexNodeHandlerType>
羽飞's avatar
羽飞 已提交
1309
RC BplusTreeHandler::split(Frame *frame, Frame *&new_frame)
羽飞's avatar
羽飞 已提交
1310
{
羽飞's avatar
羽飞 已提交
1311
  IndexNodeHandlerType old_node(file_header_, frame);
羽飞's avatar
羽飞 已提交
1312 1313

  // add a new node
羽飞's avatar
羽飞 已提交
1314
  RC rc = disk_buffer_pool_->allocate_page(&new_frame);
羽飞's avatar
羽飞 已提交
1315
  if (rc != RC::SUCCESS) {
羽飞's avatar
羽飞 已提交
1316
    LOG_WARN("Failed to split index page due to failed to allocate page, rc=%d:%s", rc, strrc(rc));
羽飞's avatar
羽飞 已提交
1317 1318 1319
    return rc;
  }

羽飞's avatar
羽飞 已提交
1320
  IndexNodeHandlerType new_node(file_header_, new_frame);
羽飞's avatar
羽飞 已提交
1321 1322 1323
  new_node.init_empty();
  new_node.set_parent_page_num(old_node.parent_page_num());

羽飞's avatar
羽飞 已提交
1324
  old_node.move_half_to(new_node, disk_buffer_pool_);
羽飞's avatar
羽飞 已提交
1325

羽飞's avatar
羽飞 已提交
1326 1327
  frame->mark_dirty();
  new_frame->mark_dirty();
羽飞's avatar
羽飞 已提交
1328 1329 1330 1331 1332
  return RC::SUCCESS;
}

RC BplusTreeHandler::update_root_page_num()
{
L
Longda Feng 已提交
1333
  Frame *header_frame;
羽飞's avatar
羽飞 已提交
1334
  RC rc = disk_buffer_pool_->get_this_page(FIRST_INDEX_PAGE, &header_frame);
羽飞's avatar
羽飞 已提交
1335 1336 1337 1338 1339
  if (rc != RC::SUCCESS) {
    LOG_WARN("failed to fetch header page. rc=%d:%s", rc, strrc(rc));
    return rc;
  }

羽飞's avatar
羽飞 已提交
1340
  IndexFileHeader *header = (IndexFileHeader *)header_frame->data();
羽飞's avatar
羽飞 已提交
1341
  header->root_page = file_header_.root_page;
羽飞's avatar
羽飞 已提交
1342 1343
  header_frame->mark_dirty();
  disk_buffer_pool_->unpin_page(header_frame);
羽飞's avatar
羽飞 已提交
1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355
  return rc;
}

RC BplusTreeHandler::create_new_tree(const char *key, const RID *rid)
{
  RC rc = RC::SUCCESS;
  if (file_header_.root_page != BP_INVALID_PAGE_NUM) {
    rc = RC::INTERNAL;
    LOG_WARN("cannot create new tree while root page is valid. root page id=%d", file_header_.root_page);
    return rc;
  }

羽飞's avatar
羽飞 已提交
1356 1357
  Frame *frame;
  rc = disk_buffer_pool_->allocate_page(&frame);
羽飞's avatar
羽飞 已提交
1358 1359 1360 1361 1362
  if (rc != RC::SUCCESS) {
    LOG_WARN("failed to allocate root page. rc=%d:%s", rc, strrc(rc));
    return rc;
  }

羽飞's avatar
羽飞 已提交
1363
  LeafIndexNodeHandler leaf_node(file_header_, frame);
羽飞's avatar
羽飞 已提交
1364 1365
  leaf_node.init_empty();
  leaf_node.insert(0, key, (const char *)rid);
羽飞's avatar
羽飞 已提交
1366 1367 1368
  file_header_.root_page = frame->page_num();
  frame->mark_dirty();
  disk_buffer_pool_->unpin_page(frame);
羽飞's avatar
羽飞 已提交
1369 1370 1371 1372 1373 1374 1375 1376 1377 1378

  rc = update_root_page_num();
  // disk_buffer_pool_->check_all_pages_unpinned(file_id_);
  return rc;
}

char *BplusTreeHandler::make_key(const char *user_key, const RID &rid)
{
  char *key = (char *)mem_pool_item_->alloc();
  if (key == nullptr) {
羽飞's avatar
羽飞 已提交
1379
    LOG_WARN("Failed to alloc memory for key.");
羽飞's avatar
羽飞 已提交
1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400
    return nullptr;
  }
  memcpy(key, user_key, file_header_.attr_length);
  memcpy(key + file_header_.attr_length, &rid, sizeof(rid));
  return key;
}

void BplusTreeHandler::free_key(char *key)
{
  mem_pool_item_->free(key);
}

RC BplusTreeHandler::insert_entry(const char *user_key, const RID *rid)
{
  if (user_key == nullptr || rid == nullptr) {
    LOG_WARN("Invalid arguments, key is empty or rid is empty");
    return RC::INVALID_ARGUMENT;
  }

  char *key = make_key(user_key, *rid);
  if (key == nullptr) {
羽飞's avatar
羽飞 已提交
1401
    LOG_WARN("Failed to alloc memory for key.");
羽飞's avatar
羽飞 已提交
1402 1403 1404 1405
    return RC::NOMEM;
  }

  if (is_empty()) {
羽飞's avatar
羽飞 已提交
1406 1407 1408
    RC rc = create_new_tree(key, rid);
    mem_pool_item_->free(key);
    return rc;
羽飞's avatar
羽飞 已提交
1409 1410
  }

羽飞's avatar
羽飞 已提交
1411 1412
  Frame *frame;
  RC rc = find_leaf(key, frame);
羽飞's avatar
羽飞 已提交
1413
  if (rc != RC::SUCCESS) {
羽飞's avatar
羽飞 已提交
1414
    LOG_WARN("Failed to find leaf %s. rc=%d:%s", rid->to_string().c_str(), rc, strrc(rc));
羽飞's avatar
羽飞 已提交
1415 1416 1417 1418
    mem_pool_item_->free(key);
    return rc;
  }

羽飞's avatar
羽飞 已提交
1419
  rc = insert_entry_into_leaf_node(frame, key, rid);
羽飞's avatar
羽飞 已提交
1420
  if (rc != RC::SUCCESS) {
羽飞's avatar
羽飞 已提交
1421 1422
    LOG_TRACE("Failed to insert into leaf of index, rid:%s", rid->to_string().c_str());
    disk_buffer_pool_->unpin_page(frame);
羽飞's avatar
羽飞 已提交
1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433
    mem_pool_item_->free(key);
    // disk_buffer_pool_->check_all_pages_unpinned(file_id_);
    return rc;
  }

  mem_pool_item_->free(key);
  LOG_TRACE("insert entry success");
  // disk_buffer_pool_->check_all_pages_unpinned(file_id_);
  return RC::SUCCESS;
}

羽飞's avatar
羽飞 已提交
1434
RC BplusTreeHandler::get_entry(const char *user_key, int key_len, std::list<RID> &rids)
羽飞's avatar
羽飞 已提交
1435 1436
{
  BplusTreeScanner scanner(*this);
L
Longda Feng 已提交
1437
  RC rc = scanner.open(user_key, key_len, true /*left_inclusive*/, user_key, key_len, true /*right_inclusive*/);
羽飞's avatar
羽飞 已提交
1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456
  if (rc != RC::SUCCESS) {
    LOG_WARN("failed to open scanner. rc=%d:%s", rc, strrc(rc));
    return rc;
  }

  RID rid;
  while ((rc = scanner.next_entry(&rid)) == RC::SUCCESS) {
    rids.push_back(rid);
  }

  scanner.close();
  if (rc != RC::RECORD_EOF) {
    LOG_WARN("scanner return error. rc=%d:%s", rc, strrc(rc));
  } else {
    rc = RC::SUCCESS;
  }
  return rc;
}

羽飞's avatar
羽飞 已提交
1457
RC BplusTreeHandler::adjust_root(Frame *root_frame)
羽飞's avatar
羽飞 已提交
1458
{
羽飞's avatar
羽飞 已提交
1459
  IndexNodeHandler root_node(file_header_, root_frame);
羽飞's avatar
羽飞 已提交
1460
  if (root_node.is_leaf() && root_node.size() > 0) {
羽飞's avatar
羽飞 已提交
1461 1462
    root_frame->mark_dirty();
    disk_buffer_pool_->unpin_page(root_frame);
羽飞's avatar
羽飞 已提交
1463 1464 1465 1466 1467 1468 1469 1470
    return RC::SUCCESS;
  }

  if (root_node.is_leaf()) {
    // this is a leaf and an empty node
    file_header_.root_page = BP_INVALID_PAGE_NUM;
  } else {
    // this is an internal node and has only one child node
羽飞's avatar
羽飞 已提交
1471
    InternalIndexNodeHandler internal_node(file_header_, root_frame);
羽飞's avatar
羽飞 已提交
1472 1473

    const PageNum child_page_num = internal_node.value_at(0);
L
Longda Feng 已提交
1474
    Frame *child_frame;
羽飞's avatar
羽飞 已提交
1475
    RC rc = disk_buffer_pool_->get_this_page(child_page_num, &child_frame);
羽飞's avatar
羽飞 已提交
1476 1477 1478 1479 1480
    if (rc != RC::SUCCESS) {
      LOG_WARN("failed to fetch child page. page num=%d, rc=%d:%s", child_page_num, rc, strrc(rc));
      return rc;
    }

羽飞's avatar
羽飞 已提交
1481
    IndexNodeHandler child_node(file_header_, child_frame);
羽飞's avatar
羽飞 已提交
1482
    child_node.set_parent_page_num(BP_INVALID_PAGE_NUM);
羽飞's avatar
羽飞 已提交
1483
    disk_buffer_pool_->unpin_page(child_frame);
L
Longda Feng 已提交
1484

羽飞's avatar
羽飞 已提交
1485 1486 1487 1488 1489
    file_header_.root_page = child_page_num;
  }

  update_root_page_num();

羽飞's avatar
羽飞 已提交
1490 1491 1492
  PageNum old_root_page_num = root_frame->page_num();
  disk_buffer_pool_->unpin_page(root_frame);
  disk_buffer_pool_->dispose_page(old_root_page_num);
羽飞's avatar
羽飞 已提交
1493 1494 1495
  return RC::SUCCESS;
}
template <typename IndexNodeHandlerType>
羽飞's avatar
羽飞 已提交
1496
RC BplusTreeHandler::coalesce_or_redistribute(Frame *frame)
羽飞's avatar
羽飞 已提交
1497
{
羽飞's avatar
羽飞 已提交
1498
  IndexNodeHandlerType index_node(file_header_, frame);
羽飞's avatar
羽飞 已提交
1499
  if (index_node.size() >= index_node.min_size()) {
羽飞's avatar
羽飞 已提交
1500
    disk_buffer_pool_->unpin_page(frame);
羽飞's avatar
羽飞 已提交
1501 1502 1503 1504 1505 1506 1507
    return RC::SUCCESS;
  }

  const PageNum parent_page_num = index_node.parent_page_num();
  if (BP_INVALID_PAGE_NUM == parent_page_num) {
    // this is the root page
    if (index_node.size() > 1) {
羽飞's avatar
羽飞 已提交
1508
      disk_buffer_pool_->unpin_page(frame);
羽飞's avatar
羽飞 已提交
1509 1510
    } else {
      // adjust the root node
羽飞's avatar
羽飞 已提交
1511
      adjust_root(frame);
羽飞's avatar
羽飞 已提交
1512 1513 1514 1515
    }
    return RC::SUCCESS;
  }

L
Longda Feng 已提交
1516
  Frame *parent_frame;
羽飞's avatar
羽飞 已提交
1517
  RC rc = disk_buffer_pool_->get_this_page(parent_page_num, &parent_frame);
羽飞's avatar
羽飞 已提交
1518 1519
  if (rc != RC::SUCCESS) {
    LOG_WARN("failed to fetch parent page. page id=%d, rc=%d:%s", parent_page_num, rc, strrc(rc));
羽飞's avatar
羽飞 已提交
1520
    disk_buffer_pool_->unpin_page(frame);
羽飞's avatar
羽飞 已提交
1521 1522 1523
    return rc;
  }

羽飞's avatar
羽飞 已提交
1524
  InternalIndexNodeHandler parent_index_node(file_header_, parent_frame);
羽飞's avatar
羽飞 已提交
1525
  int index = parent_index_node.lookup(key_comparator_, index_node.key_at(index_node.size() - 1));
羽飞's avatar
羽飞 已提交
1526
  if (parent_index_node.value_at(index) != frame->page_num()) {
羽飞's avatar
羽飞 已提交
1527
    LOG_ERROR("lookup return an invalid value. index=%d, this page num=%d, but got %d",
L
Longda Feng 已提交
1528 1529 1530
        index,
        frame->page_num(),
        parent_index_node.value_at(index));
羽飞's avatar
羽飞 已提交
1531 1532 1533 1534 1535 1536 1537 1538
  }
  PageNum neighbor_page_num;
  if (index == 0) {
    neighbor_page_num = parent_index_node.value_at(1);
  } else {
    neighbor_page_num = parent_index_node.value_at(index - 1);
  }

L
Longda Feng 已提交
1539
  Frame *neighbor_frame;
羽飞's avatar
羽飞 已提交
1540
  rc = disk_buffer_pool_->get_this_page(neighbor_page_num, &neighbor_frame);
羽飞's avatar
羽飞 已提交
1541 1542 1543
  if (rc != RC::SUCCESS) {
    LOG_WARN("failed to fetch neighbor page. page id=%d, rc=%d:%s", neighbor_page_num, rc, strrc(rc));
    // TODO do more thing to release resource
羽飞's avatar
羽飞 已提交
1544 1545
    disk_buffer_pool_->unpin_page(frame);
    disk_buffer_pool_->unpin_page(parent_frame);
羽飞's avatar
羽飞 已提交
1546 1547 1548
    return rc;
  }

羽飞's avatar
羽飞 已提交
1549
  IndexNodeHandlerType neighbor_node(file_header_, neighbor_frame);
羽飞's avatar
羽飞 已提交
1550
  if (index_node.size() + neighbor_node.size() > index_node.max_size()) {
羽飞's avatar
羽飞 已提交
1551
    rc = redistribute<IndexNodeHandlerType>(neighbor_frame, frame, parent_frame, index);
羽飞's avatar
羽飞 已提交
1552
  } else {
羽飞's avatar
羽飞 已提交
1553
    rc = coalesce<IndexNodeHandlerType>(neighbor_frame, frame, parent_frame, index);
羽飞's avatar
羽飞 已提交
1554 1555 1556 1557 1558
  }
  return rc;
}

template <typename IndexNodeHandlerType>
羽飞's avatar
羽飞 已提交
1559
RC BplusTreeHandler::coalesce(Frame *neighbor_frame, Frame *frame, Frame *parent_frame, int index)
羽飞's avatar
羽飞 已提交
1560
{
羽飞's avatar
羽飞 已提交
1561 1562
  IndexNodeHandlerType neighbor_node(file_header_, neighbor_frame);
  IndexNodeHandlerType node(file_header_, frame);
羽飞's avatar
羽飞 已提交
1563

羽飞's avatar
羽飞 已提交
1564
  InternalIndexNodeHandler parent_node(file_header_, parent_frame);
羽飞's avatar
羽飞 已提交
1565

羽飞's avatar
羽飞 已提交
1566 1567
  Frame *left_frame = nullptr;
  Frame *right_frame = nullptr;
羽飞's avatar
羽飞 已提交
1568 1569
  if (index == 0) {
    // neighbor node is at right
L
Longda Feng 已提交
1570
    left_frame = frame;
羽飞's avatar
羽飞 已提交
1571
    right_frame = neighbor_frame;
羽飞's avatar
羽飞 已提交
1572 1573
    index++;
  } else {
L
Longda Feng 已提交
1574
    left_frame = neighbor_frame;
羽飞's avatar
羽飞 已提交
1575
    right_frame = frame;
羽飞's avatar
羽飞 已提交
1576 1577 1578
    // neighbor is at left
  }

羽飞's avatar
羽飞 已提交
1579 1580
  IndexNodeHandlerType left_node(file_header_, left_frame);
  IndexNodeHandlerType right_node(file_header_, right_frame);
羽飞's avatar
羽飞 已提交
1581 1582 1583

  parent_node.remove(index);
  // parent_node.validate(key_comparator_, disk_buffer_pool_, file_id_);
羽飞's avatar
羽飞 已提交
1584
  RC rc = right_node.move_to(left_node, disk_buffer_pool_);
羽飞's avatar
羽飞 已提交
1585 1586 1587 1588 1589 1590 1591
  if (rc != RC::SUCCESS) {
    LOG_WARN("failed to move right node to left. rc=%d:%s", rc, strrc(rc));
    return rc;
  }
  // left_node.validate(key_comparator_);

  if (left_node.is_leaf()) {
羽飞's avatar
羽飞 已提交
1592 1593
    LeafIndexNodeHandler left_leaf_node(file_header_, left_frame);
    LeafIndexNodeHandler right_leaf_node(file_header_, right_frame);
羽飞's avatar
羽飞 已提交
1594 1595 1596 1597
    left_leaf_node.set_next_page(right_leaf_node.next_page());

    PageNum next_right_page_num = right_leaf_node.next_page();
    if (next_right_page_num != BP_INVALID_PAGE_NUM) {
羽飞's avatar
羽飞 已提交
1598 1599
      Frame *next_right_frame;
      rc = disk_buffer_pool_->get_this_page(next_right_page_num, &next_right_frame);
羽飞's avatar
羽飞 已提交
1600 1601
      if (rc != RC::SUCCESS) {
        LOG_WARN("failed to fetch next right page. page number:%d. rc=%d:%s", next_right_page_num, rc, strrc(rc));
L
Longda Feng 已提交
1602 1603 1604
        disk_buffer_pool_->unpin_page(frame);
        disk_buffer_pool_->unpin_page(neighbor_frame);
        disk_buffer_pool_->unpin_page(parent_frame);
羽飞's avatar
羽飞 已提交
1605 1606 1607
        return rc;
      }

羽飞's avatar
羽飞 已提交
1608
      LeafIndexNodeHandler next_right_node(file_header_, next_right_frame);
羽飞's avatar
羽飞 已提交
1609
      next_right_node.set_prev_page(left_node.page_num());
羽飞's avatar
羽飞 已提交
1610
      disk_buffer_pool_->unpin_page(next_right_frame);
羽飞's avatar
羽飞 已提交
1611 1612 1613
    }
  }

羽飞's avatar
羽飞 已提交
1614 1615 1616 1617 1618
  PageNum right_page_num = right_frame->page_num();
  disk_buffer_pool_->unpin_page(left_frame);
  disk_buffer_pool_->unpin_page(right_frame);
  disk_buffer_pool_->dispose_page(right_page_num);
  return coalesce_or_redistribute<InternalIndexNodeHandler>(parent_frame);
羽飞's avatar
羽飞 已提交
1619 1620 1621
}

template <typename IndexNodeHandlerType>
羽飞's avatar
羽飞 已提交
1622
RC BplusTreeHandler::redistribute(Frame *neighbor_frame, Frame *frame, Frame *parent_frame, int index)
羽飞's avatar
羽飞 已提交
1623
{
羽飞's avatar
羽飞 已提交
1624 1625 1626
  InternalIndexNodeHandler parent_node(file_header_, parent_frame);
  IndexNodeHandlerType neighbor_node(file_header_, neighbor_frame);
  IndexNodeHandlerType node(file_header_, frame);
羽飞's avatar
羽飞 已提交
1627
  if (neighbor_node.size() < node.size()) {
L
Longda Feng 已提交
1628
    LOG_ERROR("got invalid nodes. neighbor node size %d, this node size %d", neighbor_node.size(), node.size());
羽飞's avatar
羽飞 已提交
1629 1630 1631
  }
  if (index == 0) {
    // the neighbor is at right
羽飞's avatar
羽飞 已提交
1632
    neighbor_node.move_first_to_end(node, disk_buffer_pool_);
羽飞's avatar
羽飞 已提交
1633 1634 1635 1636 1637 1638
    // neighbor_node.validate(key_comparator_, disk_buffer_pool_, file_id_);
    // node.validate(key_comparator_, disk_buffer_pool_, file_id_);
    parent_node.set_key_at(index + 1, neighbor_node.key_at(0));
    // parent_node.validate(key_comparator_, disk_buffer_pool_, file_id_);
  } else {
    // the neighbor is at left
羽飞's avatar
羽飞 已提交
1639
    neighbor_node.move_last_to_front(node, disk_buffer_pool_);
羽飞's avatar
羽飞 已提交
1640 1641 1642 1643 1644 1645
    // neighbor_node.validate(key_comparator_, disk_buffer_pool_, file_id_);
    // node.validate(key_comparator_, disk_buffer_pool_, file_id_);
    parent_node.set_key_at(index, node.key_at(0));
    // parent_node.validate(key_comparator_, disk_buffer_pool_, file_id_);
  }

羽飞's avatar
羽飞 已提交
1646 1647 1648 1649 1650 1651
  neighbor_frame->mark_dirty();
  frame->mark_dirty();
  parent_frame->mark_dirty();
  disk_buffer_pool_->unpin_page(parent_frame);
  disk_buffer_pool_->unpin_page(neighbor_frame);
  disk_buffer_pool_->unpin_page(frame);
羽飞's avatar
羽飞 已提交
1652 1653 1654
  return RC::SUCCESS;
}

羽飞's avatar
羽飞 已提交
1655
RC BplusTreeHandler::delete_entry_internal(Frame *leaf_frame, const char *key)
羽飞's avatar
羽飞 已提交
1656
{
羽飞's avatar
羽飞 已提交
1657
  LeafIndexNodeHandler leaf_index_node(file_header_, leaf_frame);
羽飞's avatar
羽飞 已提交
1658 1659 1660 1661

  const int remove_count = leaf_index_node.remove(key, key_comparator_);
  if (remove_count == 0) {
    LOG_TRACE("no data to remove");
羽飞's avatar
羽飞 已提交
1662
    disk_buffer_pool_->unpin_page(leaf_frame);
羽飞's avatar
羽飞 已提交
1663 1664 1665 1666
    return RC::RECORD_RECORD_NOT_EXIST;
  }
  // leaf_index_node.validate(key_comparator_, disk_buffer_pool_, file_id_);

羽飞's avatar
羽飞 已提交
1667
  leaf_frame->mark_dirty();
羽飞's avatar
羽飞 已提交
1668 1669

  if (leaf_index_node.size() >= leaf_index_node.min_size()) {
羽飞's avatar
羽飞 已提交
1670
    disk_buffer_pool_->unpin_page(leaf_frame);
羽飞's avatar
羽飞 已提交
1671 1672 1673
    return RC::SUCCESS;
  }

羽飞's avatar
羽飞 已提交
1674
  return coalesce_or_redistribute<LeafIndexNodeHandler>(leaf_frame);
羽飞's avatar
羽飞 已提交
1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686
}

RC BplusTreeHandler::delete_entry(const char *user_key, const RID *rid)
{
  char *key = (char *)mem_pool_item_->alloc();
  if (nullptr == key) {
    LOG_WARN("Failed to alloc memory for key. size=%d", file_header_.key_length);
    return RC::NOMEM;
  }
  memcpy(key, user_key, file_header_.attr_length);
  memcpy(key + file_header_.attr_length, rid, sizeof(*rid));

羽飞's avatar
羽飞 已提交
1687 1688
  Frame *leaf_frame;
  RC rc = find_leaf(key, leaf_frame);
羽飞's avatar
羽飞 已提交
1689 1690 1691 1692 1693
  if (rc != RC::SUCCESS) {
    LOG_WARN("failed to find leaf page. rc =%d:%s", rc, strrc(rc));
    mem_pool_item_->free(key);
    return rc;
  }
羽飞's avatar
羽飞 已提交
1694
  rc = delete_entry_internal(leaf_frame, key);
羽飞's avatar
羽飞 已提交
1695
  if (rc != RC::SUCCESS) {
羽飞's avatar
羽飞 已提交
1696
    LOG_WARN("Failed to delete index");
羽飞's avatar
羽飞 已提交
1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711
    mem_pool_item_->free(key);
    return rc;
  }
  mem_pool_item_->free(key);
  return RC::SUCCESS;
}

BplusTreeScanner::BplusTreeScanner(BplusTreeHandler &tree_handler) : tree_handler_(tree_handler)
{}

BplusTreeScanner::~BplusTreeScanner()
{
  close();
}

L
Longda Feng 已提交
1712 1713
RC BplusTreeScanner::open(const char *left_user_key, int left_len, bool left_inclusive, const char *right_user_key,
    int right_len, bool right_inclusive)
羽飞's avatar
羽飞 已提交
1714 1715 1716 1717 1718 1719 1720 1721
{
  RC rc = RC::SUCCESS;
  if (inited_) {
    LOG_WARN("tree scanner has been inited");
    return RC::INTERNAL;
  }

  inited_ = true;
L
Longda Feng 已提交
1722

羽飞's avatar
羽飞 已提交
1723 1724 1725 1726
  // 校验输入的键值是否是合法范围
  if (left_user_key && right_user_key) {
    const auto &attr_comparator = tree_handler_.key_comparator_.attr_comparator();
    const int result = attr_comparator(left_user_key, right_user_key);
L
Longda Feng 已提交
1727 1728 1729
    if (result > 0 ||  // left < right
                       // left == right but is (left,right)/[left,right) or (left,right]
        (result == 0 && (left_inclusive == false || right_inclusive == false))) {
羽飞's avatar
羽飞 已提交
1730 1731 1732 1733 1734
      return RC::INVALID_ARGUMENT;
    }
  }

  if (nullptr == left_user_key) {
羽飞's avatar
羽飞 已提交
1735
    rc = tree_handler_.left_most_page(left_frame_);
羽飞's avatar
羽飞 已提交
1736 1737 1738 1739 1740 1741 1742 1743
    if (rc != RC::SUCCESS) {
      LOG_WARN("failed to find left most page. rc=%d:%s", rc, strrc(rc));
      return rc;
    }

    iter_index_ = 0;
  } else {
    char *left_key = nullptr;
羽飞's avatar
羽飞 已提交
1744 1745 1746 1747

    char *fixed_left_key = const_cast<char *>(left_user_key);
    if (tree_handler_.file_header_.attr_type == CHARS) {
      bool should_inclusive_after_fix = false;
L
Longda Feng 已提交
1748
      rc = fix_user_key(left_user_key, left_len, true /*greater*/, &fixed_left_key, &should_inclusive_after_fix);
羽飞's avatar
羽飞 已提交
1749
      if (rc != RC::SUCCESS) {
羽飞's avatar
羽飞 已提交
1750 1751
        LOG_WARN("failed to fix left user key. rc=%s", strrc(rc));
        return rc;
羽飞's avatar
羽飞 已提交
1752 1753 1754
      }

      if (should_inclusive_after_fix) {
L
Longda Feng 已提交
1755
        left_inclusive = true;
羽飞's avatar
羽飞 已提交
1756 1757 1758 1759 1760
      }
    }

    if (left_inclusive) {
      left_key = tree_handler_.make_key(fixed_left_key, *RID::min());
羽飞's avatar
羽飞 已提交
1761
    } else {
羽飞's avatar
羽飞 已提交
1762 1763 1764 1765 1766 1767
      left_key = tree_handler_.make_key(fixed_left_key, *RID::max());
    }

    if (fixed_left_key != left_user_key) {
      delete[] fixed_left_key;
      fixed_left_key = nullptr;
羽飞's avatar
羽飞 已提交
1768
    }
羽飞's avatar
羽飞 已提交
1769
    rc = tree_handler_.find_leaf(left_key, left_frame_);
羽飞's avatar
羽飞 已提交
1770 1771 1772 1773 1774 1775

    if (rc != RC::SUCCESS) {
      LOG_WARN("failed to find left page. rc=%d:%s", rc, strrc(rc));
      tree_handler_.free_key(left_key);
      return rc;
    }
羽飞's avatar
羽飞 已提交
1776
    LeafIndexNodeHandler left_node(tree_handler_.file_header_, left_frame_);
羽飞's avatar
羽飞 已提交
1777 1778 1779
    int left_index = left_node.lookup(tree_handler_.key_comparator_, left_key);
    tree_handler_.free_key(left_key);
    // lookup 返回的是适合插入的位置,还需要判断一下是否在合适的边界范围内
L
Longda Feng 已提交
1780
    if (left_index >= left_node.size()) {  // 超出了当前页,就需要向后移动一个位置
羽飞's avatar
羽飞 已提交
1781
      const PageNum next_page_num = left_node.next_page();
L
Longda Feng 已提交
1782 1783
      if (next_page_num == BP_INVALID_PAGE_NUM) {  // 这里已经是最后一页,说明当前扫描,没有数据
        return RC::SUCCESS;
羽飞's avatar
羽飞 已提交
1784 1785
      }

羽飞's avatar
羽飞 已提交
1786 1787
      tree_handler_.disk_buffer_pool_->unpin_page(left_frame_);
      rc = tree_handler_.disk_buffer_pool_->get_this_page(next_page_num, &left_frame_);
羽飞's avatar
羽飞 已提交
1788
      if (rc != RC::SUCCESS) {
羽飞's avatar
羽飞 已提交
1789 1790
        LOG_WARN("failed to fetch next page. page num=%d, rc=%d:%s", next_page_num, rc, strrc(rc));
        return rc;
羽飞's avatar
羽飞 已提交
1791 1792 1793 1794 1795 1796 1797 1798 1799
      }

      left_index = 0;
    }
    iter_index_ = left_index;
  }

  // 没有指定右边界范围,那么就返回右边界最大值
  if (nullptr == right_user_key) {
羽飞's avatar
羽飞 已提交
1800
    rc = tree_handler_.right_most_page(right_frame_);
羽飞's avatar
羽飞 已提交
1801 1802 1803 1804 1805
    if (rc != RC::SUCCESS) {
      LOG_WARN("failed to fetch right most page. rc=%d:%s", rc, strrc(rc));
      return rc;
    }

羽飞's avatar
羽飞 已提交
1806
    LeafIndexNodeHandler node(tree_handler_.file_header_, right_frame_);
羽飞's avatar
羽飞 已提交
1807 1808 1809 1810
    end_index_ = node.size() - 1;
  } else {

    char *right_key = nullptr;
羽飞's avatar
羽飞 已提交
1811 1812 1813
    char *fixed_right_key = const_cast<char *>(right_user_key);
    bool should_include_after_fix = false;
    if (tree_handler_.file_header_.attr_type == CHARS) {
L
Longda Feng 已提交
1814
      rc = fix_user_key(right_user_key, right_len, false /*want_greater*/, &fixed_right_key, &should_include_after_fix);
羽飞's avatar
羽飞 已提交
1815
      if (rc != RC::SUCCESS) {
羽飞's avatar
羽飞 已提交
1816 1817
        LOG_WARN("failed to fix right user key. rc=%s", strrc(rc));
        return rc;
羽飞's avatar
羽飞 已提交
1818 1819 1820
      }

      if (should_include_after_fix) {
L
Longda Feng 已提交
1821
        right_inclusive = true;
羽飞's avatar
羽飞 已提交
1822 1823
      }
    }
羽飞's avatar
羽飞 已提交
1824
    if (right_inclusive) {
羽飞's avatar
羽飞 已提交
1825
      right_key = tree_handler_.make_key(fixed_right_key, *RID::max());
羽飞's avatar
羽飞 已提交
1826
    } else {
羽飞's avatar
羽飞 已提交
1827 1828 1829 1830 1831 1832
      right_key = tree_handler_.make_key(fixed_right_key, *RID::min());
    }

    if (fixed_right_key != right_user_key) {
      delete[] fixed_right_key;
      fixed_right_key = nullptr;
羽飞's avatar
羽飞 已提交
1833 1834
    }

羽飞's avatar
羽飞 已提交
1835
    rc = tree_handler_.find_leaf(right_key, right_frame_);
羽飞's avatar
羽飞 已提交
1836 1837 1838 1839 1840 1841
    if (rc != RC::SUCCESS) {
      LOG_WARN("failed to find left page. rc=%d:%s", rc, strrc(rc));
      tree_handler_.free_key(right_key);
      return rc;
    }

羽飞's avatar
羽飞 已提交
1842
    LeafIndexNodeHandler right_node(tree_handler_.file_header_, right_frame_);
羽飞's avatar
羽飞 已提交
1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853
    int right_index = right_node.lookup(tree_handler_.key_comparator_, right_key);
    tree_handler_.free_key(right_key);
    // lookup 返回的是适合插入的位置,需要根据实际情况做调整
    // 通常情况下需要找到上一个位置
    if (right_index > 0) {
      right_index--;
    } else {
      // 实际上,只有最左边的叶子节点查找时,lookup 才可能返回0
      // 其它的叶子节点都不可能返回0,所以这段逻辑其实是可以简化的
      const PageNum prev_page_num = right_node.prev_page();
      if (prev_page_num == BP_INVALID_PAGE_NUM) {
羽飞's avatar
羽飞 已提交
1854 1855
        end_index_ = -1;
        return RC::SUCCESS;
羽飞's avatar
羽飞 已提交
1856 1857
      }

羽飞's avatar
羽飞 已提交
1858 1859
      tree_handler_.disk_buffer_pool_->unpin_page(right_frame_);
      rc = tree_handler_.disk_buffer_pool_->get_this_page(prev_page_num, &right_frame_);
羽飞's avatar
羽飞 已提交
1860
      if (rc != RC::SUCCESS) {
羽飞's avatar
羽飞 已提交
1861 1862
        LOG_WARN("failed to fetch prev page num. page num=%d, rc=%d:%s", prev_page_num, rc, strrc(rc));
        return rc;
羽飞's avatar
羽飞 已提交
1863 1864
      }

羽飞's avatar
羽飞 已提交
1865
      LeafIndexNodeHandler tmp_node(tree_handler_.file_header_, right_frame_);
羽飞's avatar
羽飞 已提交
1866 1867 1868 1869 1870 1871 1872 1873
      right_index = tmp_node.size() - 1;
    }
    end_index_ = right_index;
  }

  // 判断是否左边界比右边界要靠后
  // 两个边界最多会多一页
  // 查找不存在的元素,或者不存在的范围数据时,可能会存在这个问题
L
Longda Feng 已提交
1874
  if (left_frame_->page_num() == right_frame_->page_num() && iter_index_ > end_index_) {
羽飞's avatar
羽飞 已提交
1875 1876
    end_index_ = -1;
  } else {
羽飞's avatar
羽飞 已提交
1877 1878
    LeafIndexNodeHandler left_node(tree_handler_.file_header_, left_frame_);
    LeafIndexNodeHandler right_node(tree_handler_.file_header_, right_frame_);
羽飞's avatar
羽飞 已提交
1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891
    if (left_node.prev_page() == right_node.page_num()) {
      end_index_ = -1;
    }
  }
  return RC::SUCCESS;
}

RC BplusTreeScanner::next_entry(RID *rid)
{
  if (-1 == end_index_) {
    return RC::RECORD_EOF;
  }

羽飞's avatar
羽飞 已提交
1892
  LeafIndexNodeHandler node(tree_handler_.file_header_, left_frame_);
羽飞's avatar
羽飞 已提交
1893 1894
  memcpy(rid, node.value_at(iter_index_), sizeof(*rid));

L
Longda Feng 已提交
1895
  if (left_frame_->page_num() == right_frame_->page_num() && iter_index_ == end_index_) {
羽飞's avatar
羽飞 已提交
1896 1897 1898 1899 1900 1901 1902 1903 1904 1905
    end_index_ = -1;
    return RC::SUCCESS;
  }

  if (iter_index_ < node.size() - 1) {
    ++iter_index_;
    return RC::SUCCESS;
  }

  RC rc = RC::SUCCESS;
羽飞's avatar
羽飞 已提交
1906
  if (left_frame_->page_num() != right_frame_->page_num()) {
羽飞's avatar
羽飞 已提交
1907
    PageNum page_num = node.next_page();
羽飞's avatar
羽飞 已提交
1908
    tree_handler_.disk_buffer_pool_->unpin_page(left_frame_);
羽飞's avatar
羽飞 已提交
1909
    if (page_num == BP_INVALID_PAGE_NUM) {
羽飞's avatar
羽飞 已提交
1910
      left_frame_ = nullptr;
羽飞's avatar
羽飞 已提交
1911 1912 1913
      LOG_WARN("got invalid next page. page num=%d", page_num);
      rc = RC::INTERNAL;
    } else {
羽飞's avatar
羽飞 已提交
1914
      rc = tree_handler_.disk_buffer_pool_->get_this_page(page_num, &left_frame_);
羽飞's avatar
羽飞 已提交
1915
      if (rc != RC::SUCCESS) {
L
Longda Feng 已提交
1916
        left_frame_ = nullptr;
羽飞's avatar
羽飞 已提交
1917 1918 1919 1920 1921 1922 1923 1924
        LOG_WARN("failed to fetch next page. page num=%d, rc=%d:%s", page_num, rc, strrc(rc));
        return rc;
      }

      iter_index_ = 0;
    }
  } else if (end_index_ != -1) {
    LOG_WARN("should have more pages but not. left page=%d, right page=%d",
L
Longda Feng 已提交
1925 1926
        left_frame_->page_num(),
        right_frame_->page_num());
羽飞's avatar
羽飞 已提交
1927 1928 1929 1930 1931 1932 1933
    rc = RC::INTERNAL;
  }
  return rc;
}

RC BplusTreeScanner::close()
{
羽飞's avatar
羽飞 已提交
1934 1935
  if (left_frame_ != nullptr) {
    tree_handler_.disk_buffer_pool_->unpin_page(left_frame_);
羽飞's avatar
羽飞 已提交
1936
    left_frame_ = nullptr;
羽飞's avatar
羽飞 已提交
1937
  }
羽飞's avatar
羽飞 已提交
1938 1939
  if (right_frame_ != nullptr) {
    tree_handler_.disk_buffer_pool_->unpin_page(right_frame_);
羽飞's avatar
羽飞 已提交
1940
    right_frame_ = nullptr;
羽飞's avatar
羽飞 已提交
1941 1942 1943 1944 1945 1946
  }
  end_index_ = -1;
  inited_ = false;
  LOG_INFO("bplus tree scanner closed");
  return RC::SUCCESS;
}
羽飞's avatar
羽飞 已提交
1947

L
Longda Feng 已提交
1948 1949
RC BplusTreeScanner::fix_user_key(
    const char *user_key, int key_len, bool want_greater, char **fixed_key, bool *should_inclusive)
羽飞's avatar
羽飞 已提交
1950 1951 1952 1953 1954 1955 1956 1957
{
  if (nullptr == fixed_key || nullptr == should_inclusive) {
    return RC::INVALID_ARGUMENT;
  }

  // 这里很粗暴,变长字段才需要做调整,其它默认都不需要做调整
  assert(tree_handler_.file_header_.attr_type == CHARS);
  assert(strlen(user_key) >= static_cast<size_t>(key_len));
L
Longda Feng 已提交
1958

羽飞's avatar
羽飞 已提交
1959
  *should_inclusive = false;
L
Longda Feng 已提交
1960

羽飞's avatar
羽飞 已提交
1961
  int32_t attr_length = tree_handler_.file_header_.attr_length;
L
Longda Feng 已提交
1962
  char *key_buf = new (std::nothrow) char[attr_length];
羽飞's avatar
羽飞 已提交
1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992
  if (nullptr == key_buf) {
    return RC::NOMEM;
  }

  if (key_len <= attr_length) {
    memcpy(key_buf, user_key, key_len);
    memset(key_buf + key_len, 0, attr_length - key_len);

    *fixed_key = key_buf;
    return RC::SUCCESS;
  }

  // key_len > attr_length
  memcpy(key_buf, user_key, attr_length);

  char c = user_key[attr_length];
  if (c == 0) {
    *fixed_key = key_buf;
    return RC::SUCCESS;
  }

  // 扫描 >=/> user_key 的数据
  // 示例:>=/> ABCD1 的数据,attr_length=4,
  //      等价于扫描 >= ABCE 的数据
  // 如果是扫描 <=/< user_key的数据
  // 示例:<=/< ABCD1  <==> <= ABCD  (attr_length=4)
  *should_inclusive = true;
  if (want_greater) {
    key_buf[attr_length - 1]++;
  }
L
Longda Feng 已提交
1993

羽飞's avatar
羽飞 已提交
1994 1995 1996
  *fixed_key = key_buf;
  return RC::SUCCESS;
}