tdbBtree.c 13.5 KB
Newer Older
H
Hongze Cheng 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
/*
 * Copyright (c) 2019 TAOS Data, Inc. <jhtao@taosdata.com>
 *
 * This program is free software: you can use, redistribute, and/or modify
 * it under the terms of the GNU Affero General Public License, version 3
 * or later ("AGPL"), as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
H
refact  
Hongze Cheng 已提交
14 15
 */

H
Hongze Cheng 已提交
16 17
#include "tdbInt.h"

H
Hongze Cheng 已提交
18 19 20 21 22
#define TDB_BTREE_ROOT 0x1
#define TDB_BTREE_LEAF 0x2

#define TDB_BTREE_PAGE_IS_ROOT(flags) TDB_FLAG_HAS(flags, TDB_BTREE_ROOT)
#define TDB_BTREE_PAGE_IS_LEAF(flags) TDB_FLAG_HAS(flags, TDB_BTREE_LEAF)
H
Hongze Cheng 已提交
23 24 25
#define TDB_BTREE_ASSERT_FLAG(flags)                                                 \
  ASSERT(TDB_FLAG_IS(flags, TDB_BTREE_ROOT) || TDB_FLAG_IS(flags, TDB_BTREE_LEAF) || \
         TDB_FLAG_IS(flags, TDB_BTREE_ROOT | TDB_BTREE_LEAF) || TDB_FLAG_IS(flags, 0))
H
Hongze Cheng 已提交
26

H
Hongze Cheng 已提交
27
struct SBTree {
H
more  
Hongze Cheng 已提交
28 29 30
  SPgno          root;
  int            keyLen;
  int            valLen;
H
Hongze Cheng 已提交
31
  SPager        *pPager;
H
more  
Hongze Cheng 已提交
32
  FKeyComparator kcmpr;
H
more  
Hongze Cheng 已提交
33
  u8             fanout;
H
Hongze Cheng 已提交
34
  int            pageSize;
H
more  
Hongze Cheng 已提交
35 36 37 38
  int            maxLocal;
  int            minLocal;
  int            maxLeaf;
  int            minLeaf;
H
Hongze Cheng 已提交
39 40
};

H
more  
Hongze Cheng 已提交
41 42 43 44 45
typedef struct SFreeCell {
  u16 size;
  u16 next;
} SFreeCell;

H
Hongze Cheng 已提交
46 47 48 49 50
typedef struct {
  u16     flags;
  SBTree *pBt;
} SBtreeZeroPageArg;

H
Hongze Cheng 已提交
51
static int tdbBtCursorMoveTo(SBtCursor *pCur, const void *pKey, int kLen);
H
more  
Hongze Cheng 已提交
52
static int tdbEncodeLength(u8 *pBuf, uint32_t len);
H
more  
Hongze Cheng 已提交
53
static int tdbCompareKeyAndCell(const void *pKey, int kLen, const void *pCell);
H
Hongze Cheng 已提交
54
static int tdbDefaultKeyCmprFn(const void *pKey1, int keyLen1, const void *pKey2, int keyLen2);
H
Hongze Cheng 已提交
55
static int tdbBtreeOpenImpl(SBTree *pBt);
H
Hongze Cheng 已提交
56 57
static int tdbBtreeZeroPage(SPage *pPage, void *arg);
static int tdbBtreeInitPage(SPage *pPage, void *arg);
H
Hongze Cheng 已提交
58

H
Hongze Cheng 已提交
59
int tdbBtreeOpen(int keyLen, int valLen, SPager *pPager, FKeyComparator kcmpr, SBTree **ppBt) {
H
Hongze Cheng 已提交
60
  SBTree *pBt;
H
Hongze Cheng 已提交
61
  int     ret;
H
more  
Hongze Cheng 已提交
62

H
Hongze Cheng 已提交
63
  *ppBt = NULL;
H
Hongze Cheng 已提交
64 65 66 67 68 69 70 71 72 73

  pBt = (SBTree *)calloc(1, sizeof(*pBt));
  if (pBt == NULL) {
    return -1;
  }

  // pBt->keyLen
  pBt->keyLen = keyLen;
  // pBt->valLen
  pBt->valLen = valLen;
H
refact  
Hongze Cheng 已提交
74 75
  // pBt->pPager
  pBt->pPager = pPager;
H
Hongze Cheng 已提交
76 77
  // pBt->kcmpr
  pBt->kcmpr = kcmpr ? kcmpr : tdbDefaultKeyCmprFn;
H
more  
Hongze Cheng 已提交
78 79 80 81 82 83 84
  // pBt->fanout
  if (keyLen == TDB_VARIANT_LEN) {
    pBt->fanout = TDB_DEFAULT_FANOUT;
  } else {
    ASSERT(0);
    // TODO: pBt->fanout = 0;
  }
H
Hongze Cheng 已提交
85 86 87 88
  // pBt->pageSize
  pBt->pageSize = tdbPagerGetPageSize(pPager);
  // pBt->maxLocal
  pBt->maxLocal = (pBt->pageSize - sizeof(SPageHdr)) / pBt->fanout;
H
Hongze Cheng 已提交
89
  // pBt->minLocal: Should not be allowed smaller than 15, which is [nPayload][nKey][nData]
H
Hongze Cheng 已提交
90 91 92 93 94
  pBt->minLocal = (pBt->pageSize - sizeof(SPageHdr)) / pBt->fanout / 2;
  // pBt->maxLeaf
  pBt->maxLeaf = pBt->pageSize - sizeof(SPageHdr);
  // pBt->minLeaf
  pBt->minLeaf = pBt->minLocal;
H
Hongze Cheng 已提交
95

H
Hongze Cheng 已提交
96 97 98 99 100 101 102
  // TODO: pBt->root
  ret = tdbBtreeOpenImpl(pBt);
  if (ret < 0) {
    free(pBt);
    return -1;
  }

H
Hongze Cheng 已提交
103
  *ppBt = pBt;
H
Hongze Cheng 已提交
104 105 106 107 108 109 110 111
  return 0;
}

int tdbBtreeClose(SBTree *pBt) {
  // TODO
  return 0;
}

H
more  
Hongze Cheng 已提交
112
int tdbBtreeCursor(SBtCursor *pCur, SBTree *pBt) {
H
more  
Hongze Cheng 已提交
113 114
  pCur->pBt = pBt;
  pCur->iPage = -1;
H
more  
Hongze Cheng 已提交
115
  pCur->pPage = NULL;
H
Hongze Cheng 已提交
116
  pCur->idx = -1;
H
more  
Hongze Cheng 已提交
117

H
more  
Hongze Cheng 已提交
118 119 120
  return 0;
}

H
Hongze Cheng 已提交
121
int tdbBtCursorInsert(SBtCursor *pCur, const void *pKey, int kLen, const void *pVal, int vLen) {
H
Hongze Cheng 已提交
122 123
  int     ret;
  SPager *pPager;
H
Hongze Cheng 已提交
124 125 126 127 128 129 130

  ret = tdbBtCursorMoveTo(pCur, pKey, kLen);
  if (ret < 0) {
    // TODO: handle error
    return -1;
  }

H
Hongze Cheng 已提交
131 132 133 134 135
  if (pCur->idx == -1) {
    ASSERT(pCur->pPage->pPageHdr->nCells == 0);
    // TODO: insert the K-V pair to idx 0
  }

H
more  
Hongze Cheng 已提交
136 137 138
  return 0;
}

H
Hongze Cheng 已提交
139
static int tdbBtCursorMoveTo(SBtCursor *pCur, const void *pKey, int kLen) {
H
Hongze Cheng 已提交
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 177 178 179 180 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
  int     ret;
  SBTree *pBt;
  SPager *pPager;

  pBt = pCur->pBt;
  pPager = pBt->pPager;

  if (pCur->iPage < 0) {
    ASSERT(pCur->iPage == -1);
    ASSERT(pCur->idx == -1);

    // Move from the root
    ret = tdbPagerFetchPage(pPager, pBt->root, &(pCur->pPage), tdbBtreeInitPage, pBt);
    if (ret < 0) {
      ASSERT(0);
      return -1;
    }

    pCur->iPage = 0;

    if (pCur->pPage->pPageHdr->nCells == 0) {
      // Current page is empty
      ASSERT(TDB_FLAG_IS(pCur->pPage->pPageHdr->flags, TDB_BTREE_ROOT | TDB_BTREE_LEAF));
      return 0;
    }

    // Search from root page down to leaf
    {
      // TODO
      ASSERT(0);
      // ret = tdbBtCursorMoveToRoot(pCur);
      // if (ret < 0) {
      //   return -1;
      // }

      // if (pCur->pPage->pHdr->nCells == 0) {
      //   // Tree is empty
      // } else {
      //   for (;;) {
      //     int lidx, ridx, midx, c;

      //     pBtPage = pCur->pPage;
      //     lidx = 0;
      //     ridx = pBtPage->pHdr->nCells - 1;
      //     while (lidx <= ridx) {
      //       midx = (lidx + ridx) >> 1;
      //       pCell = (void *)(pBtPage->aData + pBtPage->aCellIdx[midx]);

      //       c = tdbCompareKeyAndCell(pKey, kLen, pCell);
      //       if (c == 0) {
      //         break;
      //       } else if (c < 0) {
      //         lidx = lidx + 1;
      //       } else {
      //         ridx = ridx - 1;
      //       }
      //     }
      //   }

      //   /* code */
      // }
    }

  } else {
    // TODO: Move the cursor from a some position instead of a clear state
  }
H
more  
Hongze Cheng 已提交
206

H
Hongze Cheng 已提交
207 208
  return 0;
}
H
more  
Hongze Cheng 已提交
209

H
Hongze Cheng 已提交
210 211 212
static int tdbEncodeKeyValue(const void *pKey, int kLen, int kLenG, const void *pVal, int vLen, int vLenG, void *pBuf,
                             int *bLen) {
  u8 *pPtr;
H
more  
Hongze Cheng 已提交
213

H
Hongze Cheng 已提交
214 215 216 217 218 219 220 221 222 223 224
  ASSERT(kLen > 0 && vLen > 0);
  ASSERT(kLenG == TDB_VARIANT_LEN || kLenG == kLen);
  ASSERT(vLenG == TDB_VARIANT_LEN || vLenG == vLen);

  pPtr = (u8 *)pBuf;
  if (kLenG == TDB_VARIANT_LEN) {
    pPtr += tdbEncodeLength(pPtr, kLen);
  }

  if (vLenG == TDB_VARIANT_LEN) {
    pPtr += tdbEncodeLength(pPtr, vLen);
H
more  
Hongze Cheng 已提交
225
  }
H
more  
Hongze Cheng 已提交
226

H
Hongze Cheng 已提交
227 228 229 230 231 232 233
  memcpy(pPtr, pKey, kLen);
  pPtr += kLen;

  memcpy(pPtr, pVal, vLen);
  pPtr += vLen;

  *bLen = pPtr - (u8 *)pBuf;
H
more  
Hongze Cheng 已提交
234
  return 0;
H
Hongze Cheng 已提交
235 236 237
}

static int tdbDecodeKeyValue(const void *pBuf, void *pKey, int *kLen, void *pVal, int *vLen) {
H
more  
Hongze Cheng 已提交
238 239 240 241 242 243 244 245 246 247
  if (*kLen == TDB_VARIANT_LEN) {
    // Decode the key length
  }

  if (*vLen == TDB_VARIANT_LEN) {
    // Decode the value length
  }

  // TODO: decode the key and value

H
Hongze Cheng 已提交
248 249 250
  return 0;
}

H
more  
Hongze Cheng 已提交
251
static int tdbEncodeLength(u8 *pBuf, uint32_t len) {
H
Hongze Cheng 已提交
252 253 254 255 256 257 258 259 260 261
  int iCount = 0;

  while (len > 127) {
    pBuf[iCount++] = (u8)((len & 0xff) | 128);
    len >>= 7;
  }

  pBuf[iCount++] = (u8)len;

  return iCount;
H
more  
Hongze Cheng 已提交
262 263 264
}

static int tdbBtCursorMoveToRoot(SBtCursor *pCur) {
H
refact  
Hongze Cheng 已提交
265 266
  SBTree *pBt;
  SPager *pPager;
H
Hongze Cheng 已提交
267
  SPage  *pPage;
H
refact  
Hongze Cheng 已提交
268
  int     ret;
H
more  
Hongze Cheng 已提交
269 270

  pBt = pCur->pBt;
H
refact  
Hongze Cheng 已提交
271
  pPager = pBt->pPager;
H
more  
Hongze Cheng 已提交
272

H
Hongze Cheng 已提交
273 274 275 276
  // pPage = tdbPagerGet(pPager, pBt->root, true);
  // if (pPage == NULL) {
  //   // TODO: handle error
  // }
H
more  
Hongze Cheng 已提交
277

H
Hongze Cheng 已提交
278 279 280 281 282
  // ret = tdbInitBtPage(pPage, &pBtPage);
  // if (ret < 0) {
  //   // TODO
  //   return 0;
  // }
H
more  
Hongze Cheng 已提交
283

H
Hongze Cheng 已提交
284 285
  // pCur->pPage = pBtPage;
  // pCur->iPage = 0;
H
more  
Hongze Cheng 已提交
286 287 288 289

  return 0;
}

H
more  
Hongze Cheng 已提交
290 291
static int tdbCompareKeyAndCell(const void *pKey, int kLen, const void *pCell) {
  /* TODO */
H
more  
Hongze Cheng 已提交
292
  return 0;
H
Hongze Cheng 已提交
293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312
}

static int tdbDefaultKeyCmprFn(const void *pKey1, int keyLen1, const void *pKey2, int keyLen2) {
  int mlen;
  int cret;

  ASSERT(keyLen1 > 0 && keyLen2 > 0 && pKey1 != NULL && pKey2 != NULL);

  mlen = keyLen1 < keyLen2 ? keyLen1 : keyLen2;
  cret = memcmp(pKey1, pKey2, mlen);
  if (cret == 0) {
    if (keyLen1 < keyLen2) {
      cret = -1;
    } else if (keyLen1 > keyLen2) {
      cret = 1;
    } else {
      cret = 0;
    }
  }
  return cret;
H
Hongze Cheng 已提交
313 314 315 316 317 318 319 320 321 322
}

static int tdbBtreeOpenImpl(SBTree *pBt) {
  // Try to get the root page of the an existing btree

  SPgno  pgno;
  SPage *pPage;
  int    ret;

  {
H
Hongze Cheng 已提交
323
    // 1. TODO: Search the main DB to check if the DB exists
H
Hongze Cheng 已提交
324 325 326 327 328 329 330 331 332
    pgno = 0;
  }

  if (pgno != 0) {
    pBt->root = pgno;
    return 0;
  }

  // Try to create a new database
H
Hongze Cheng 已提交
333 334 335 336 337 338 339
  SBtreeZeroPageArg zArg = {.flags = TDB_BTREE_ROOT | TDB_BTREE_LEAF, .pBt = pBt};
  ret = tdbPagerNewPage(pBt->pPager, &pgno, &pPage, tdbBtreeZeroPage, &zArg);
  if (ret < 0) {
    return -1;
  }

  // TODO: Unref the page
H
Hongze Cheng 已提交
340

H
Hongze Cheng 已提交
341 342
  ASSERT(pgno != 0);
  pBt->root = pgno;
H
Hongze Cheng 已提交
343

H
Hongze Cheng 已提交
344 345 346 347
  return 0;
}

static int tdbBtreeZeroPage(SPage *pPage, void *arg) {
H
Hongze Cheng 已提交
348 349 350 351 352 353
  u16     flags;
  SBTree *pBt;

  flags = ((SBtreeZeroPageArg *)arg)->flags;
  pBt = ((SBtreeZeroPageArg *)arg)->pBt;

H
Hongze Cheng 已提交
354 355 356 357
  pPage->pPageHdr = (SPageHdr *)pPage->pData;
  pPage->aCellIdx = (u16 *)(&(pPage->pPageHdr[1]));

  // Init the page header
H
Hongze Cheng 已提交
358 359
  pPage->pPageHdr->flags = flags;
  pPage->pPageHdr->nCells = 0;
H
Hongze Cheng 已提交
360
  pPage->pPageHdr->cellCont = pBt->pageSize;
H
Hongze Cheng 已提交
361 362
  pPage->pPageHdr->freeCell = 0;
  pPage->pPageHdr->nFree = 0;
H
Hongze Cheng 已提交
363

H
Hongze Cheng 已提交
364 365 366 367 368 369 370 371 372 373 374 375 376
  TDB_BTREE_ASSERT_FLAG(flags);

  if (TDB_BTREE_PAGE_IS_LEAF(pPage->pPageHdr->flags)) {
    pPage->kLen = pBt->keyLen;
    pPage->vLen = pBt->valLen;
    pPage->maxLocal = pBt->maxLeaf;
    pPage->minLocal = pBt->minLeaf;
  } else {
    pPage->kLen = pBt->keyLen;
    pPage->vLen = sizeof(SPgno);
    pPage->maxLocal = pBt->maxLocal;
    pPage->minLocal = pBt->minLocal;
  }
H
Hongze Cheng 已提交
377 378 379 380 381

  return 0;
}

static int tdbBtreeInitPage(SPage *pPage, void *arg) {
H
Hongze Cheng 已提交
382 383 384 385
  SBTree *pBt;

  pBt = (SBTree *)arg;

H
Hongze Cheng 已提交
386 387 388
  pPage->pPageHdr = (SPageHdr *)pPage->pData;
  pPage->aCellIdx = (u16 *)(&(pPage->pPageHdr[1]));

H
Hongze Cheng 已提交
389 390
  TDB_BTREE_ASSERT_FLAG(pPage->pPageHdr->flags);

H
Hongze Cheng 已提交
391
  // Init other fields
H
Hongze Cheng 已提交
392 393 394 395 396 397 398 399 400 401
  if (TDB_BTREE_PAGE_IS_LEAF(pPage->pPageHdr->flags)) {
    pPage->kLen = pBt->keyLen;
    pPage->vLen = pBt->valLen;
    pPage->maxLocal = pBt->maxLeaf;
    pPage->minLocal = pBt->minLeaf;
  } else {
    pPage->kLen = pBt->keyLen;
    pPage->vLen = sizeof(SPgno);
    pPage->maxLocal = pBt->maxLocal;
    pPage->minLocal = pBt->minLocal;
H
Hongze Cheng 已提交
402 403
  }

H
Hongze Cheng 已提交
404
  return 0;
H
Hongze Cheng 已提交
405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448
}

#ifndef TDB_BTREE_BALANCE
static int tdbBtreeCopyPageContent(SPage *pFrom, SPage *pTo) {
  /* TODO */

  return 0;
}

static int tdbBtreeBalanceDeeper(SBTree *pBt, SPage *pRoot, SPage **ppChild) {
  SPager           *pPager;
  SPage            *pChild;
  SPgno             pgnoChild;
  int               ret;
  SBtreeZeroPageArg zArg;

  pPager = pRoot->pPager;

  // Allocate a new child page
  zArg.flags = TDB_BTREE_LEAF;
  zArg.pBt = pBt;
  ret = tdbPagerNewPage(pPager, &pgnoChild, &pChild, tdbBtreeZeroPage, &zArg);
  if (ret < 0) {
    return -1;
  }

  // Copy the root page content to the child page
  ret = tdbBtreeCopyPageContent(pRoot, pChild);
  if (ret < 0) {
    return -1;
  }

  {
    // TODO: Copy the over flow part of the page
  }

  // Reinitialize the root page
  zArg.flags = TDB_BTREE_ROOT;
  zArg.pBt = pBt;
  ret = tdbBtreeZeroPage(pRoot, &zArg);
  if (ret < 0) {
    return -1;
  }

H
Hongze Cheng 已提交
449 450 451 452
  *ppChild = pChild;
  return 0;
}

H
Hongze Cheng 已提交
453
static int tdbBtreeBalanceNonRoot(SBTree *pBt, SPage *pParent, int idx) {
H
Hongze Cheng 已提交
454 455 456 457
  int    nOldPages;
  SPage *pOldPages[3];
  int    nNewPages;
  SPage *pNewPages[5];
H
Hongze Cheng 已提交
458 459 460 461 462 463 464
  void  *pCell;
  SPgno  pgno;
  int    i;
  int    nDiv;
  int    ret;
  SPage *pPage;
  void  *pCellDiv[2];
H
Hongze Cheng 已提交
465

H
Hongze Cheng 已提交
466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547
  {
    // TODO: Find three or less sibling pages on either side
    i = pParent->pPageHdr->nCells + pParent->nOverflow;
    if (i < 1) {
      nDiv = 0;
    } else {
      if (idx == 0) {
        nDiv = 0;
      } else if (idx == i) {
        nDiv = i - 2;
      } else {
        nDiv = idx - 1;
      }
      i = 2;
    }
    nOldPages = i + 1;

    if (i + nDiv - pParent->nOverflow == pParent->pPageHdr->nCells) {
      pgno = pParent->pPageHdr->rChild;
    } else {
      ASSERT(0);
      // TODO
      pgno = 0;
    }
    for (;;) {
      ret = tdbPagerFetchPage(pBt->pPager, pgno, &pPage, tdbBtreeInitPage, pBt);
      if (ret < 0) {
        ASSERT(0);
        return -1;
      }

      pOldPages[i] = pPage;

      if ((i--) == 0) break;

      if (pParent->nOverflow && i + nDiv == pParent->aiOvfl[0]) {
        pCellDiv[i] = pParent->apOvfl[0];
        // pgno = 0;
        // szNew[i] = tdbPageCellSize(pPage, pCell);
        pParent->nOverflow = 0;
      } else {
        // pCellDiv[i] = TDB_PAGE_CELL_AT(pPage, i + nDiv - pParent->nOverflow);
        // pgno = 0;
        // szNew[i] = tdbPageCellSize(pPage, pCell);

        // Drop the cell from the page
        // ret = tdbPageDropCell(pPage, i + nDiv - pParent->nOverflow, szNew[i]);
        // if (ret < 0) {
        //   return -1;
        // }
      }
      /* code */
    }
  }

  {
      // TODO: Load all cells on the old page and the divider cells
  }

  {
      // TODO: Get the number of pages needed to hold all cells
  }

  {
      // TODO: Allocate enough new pages. Reuse old pages as much as possible
  }

  {
      // TODO: Insert new divider cells into pParent
  }

  {
      // TODO: Update the sibling pages
  }

  {
      // TODO: Reset states
  }

  {
    // TODO: Clear resources
  }
H
Hongze Cheng 已提交
548

H
Hongze Cheng 已提交
549 550 551 552 553
  return 0;
}

static int tdbBtreeBalance(SBtCursor *pCur) {
  int    iPage;
H
Hongze Cheng 已提交
554 555
  SPage *pParent;
  int    ret;
H
Hongze Cheng 已提交
556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572

  // Main loop to balance the BTree
  for (;;) {
    iPage = pCur->iPage;

    // TODO: Get the page free space if not get yet
    // if (pPage->nFree < 0) {
    //   if (tdbBtreeComputeFreeSpace(pPage) < 0) {
    //     return -1;
    //   }
    // }

    if (0 /*TODO: balance is over*/) {
      break;
    }

    if (iPage == 0) {
H
Hongze Cheng 已提交
573 574 575 576 577 578 579 580 581 582 583 584 585 586
      // Balance the root page by copy the root page content to
      // a child page and set the root page as empty first
      ASSERT(TDB_BTREE_PAGE_IS_ROOT(pCur->pPage->pPageHdr->flags));

      ret = tdbBtreeBalanceDeeper(pCur->pBt, pCur->pPage, &(pCur->pgStack[1]));
      if (ret < 0) {
        return -1;
      }

      pCur->idx = 0;
      pCur->idxStack[0] = 0;
      pCur->pgStack[0] = pCur->pPage;
      pCur->iPage = 1;
      pCur->pPage = pCur->pgStack[1];
H
Hongze Cheng 已提交
587 588

    } else {
H
Hongze Cheng 已提交
589 590 591
      // Generalized balance step
      pParent = pCur->pgStack[pCur->iPage - 1];

H
Hongze Cheng 已提交
592
      ret = tdbBtreeBalanceNonRoot(pCur->pBt, pParent, pCur->idxStack[pCur->iPage - 1]);
H
Hongze Cheng 已提交
593 594 595 596 597 598
      if (ret < 0) {
        return -1;
      }

      pCur->iPage--;
      pCur->pPage = pCur->pgStack[pCur->iPage];
H
Hongze Cheng 已提交
599 600 601 602 603 604
    }
  }

  return 0;
}
#endif