diff --git a/source/libs/tdb/inc/tdb.h b/source/libs/tdb/inc/tdb.h index 9318e4655b57b98120382a2992854df82b17f835..25216089b8b93bd7228570a2409c8a7580d7a27c 100644 --- a/source/libs/tdb/inc/tdb.h +++ b/source/libs/tdb/inc/tdb.h @@ -50,7 +50,7 @@ int tdbDbPGet(TDB *pDb, const void *pKey, int kLen, void **ppKey, int *pkLen, vo #define TDB_FLG_CMP_GT 0x4 // greater than int tdbDbcOpen(TDB *pDb, TDBC **ppDbc, TXN *pTxn); -int tdbDbcMoveTo(TDBC *pDbc, const void *pKey, int kLen, int flags); +int tdbDbcMoveTo(TDBC *pDbc, const void *pKey, int kLen); int tdbDbcPut(TDBC *pDbc, const void *pKey, int keyLen, const void *pVal, int valLen); int tdbDbcUpdate(TDBC *pDbc, const void *pKey, int kLen, const void *pVal, int vLen); int tdbDbcDrop(TDBC *pDbc); diff --git a/source/libs/tdb/src/db/tdbBtree.c b/source/libs/tdb/src/db/tdbBtree.c index 83d89617bbea46c8155025e2c5dd980bf26d890c..74e56d8d14fc7b92c53a2f3d072a5121fd2fac16 100644 --- a/source/libs/tdb/src/db/tdbBtree.c +++ b/source/libs/tdb/src/db/tdbBtree.c @@ -68,7 +68,6 @@ typedef struct { } SCellDecoder; static int tdbDefaultKeyCmprFn(const void *pKey1, int keyLen1, const void *pKey2, int keyLen2); -static int tdbBtcMoveTo(SBTC *pBtc, const void *pKey, int kLen, int *pCRst); static int tdbBtreeOpenImpl(SBTree *pBt); static int tdbBtreeInitPage(SPage *pPage, void *arg, int init); static int tdbBtreeEncodeCell(SPage *pPage, const void *pKey, int kLen, const void *pVal, int vLen, SCell *pCell, @@ -1307,7 +1306,7 @@ static int tdbBtcMoveUpward(SBTC *pBtc) { return 0; } -static int tdbBtcMoveTo(SBTC *pBtc, const void *pKey, int kLen, int *pCRst) { +int tdbBtcMoveTo(SBTC *pBtc, const void *pKey, int kLen, int *pCRst) { int ret; int nCells; int c; @@ -1504,146 +1503,4 @@ void tdbBtPageInfo(SPage *pPage, int idx) { pBtPageInfo->nOvfl = pPage->nOverflow; } #endif -// TDB_BTREE_DEBUG - -static void tdbBSearch(int *lidx, int *ridx, int midx, int c, int flags) { - if (flags & TDB_FLG_CMP_EQ) { - if (c < 0) { - *lidx = midx + 1; - } else if (c == 0) { - *lidx = *ridx + 1; - } else { - *ridx = midx - 1; - } - } else if (flags & TDB_FLG_CMP_GT) { - if (c <= 0) { - *lidx = midx + 1; - } else { - *ridx = midx - 1; - } - } else if (flags & TDB_FLG_CMP_LT) { - if (c < 0) { - *lidx = midx + 1; - } else { - *ridx = midx - 1; - } - } else { - ASSERT(0); - } -} - -int tdbBtcMoveTo2(SBTC *pBtc, const void *pKey, int kLen, int flags) { - SBTree *pBt = pBtc->pBt; - SPager *pPager = pBt->pPager; - SPgno root = pBt->root; - SCellDecoder cd = {0}; - int nCells = 0; - SCell *pCell = NULL; - int ret = 0; - int c; - u8 leaf; - tdb_cmpr_fn_t cmprFn; - - cmprFn = pBt->kcmpr; - - // move cursor to a level - if (pBtc->iPage < 0) { - // move from clear cursor - ret = tdbPagerFetchPage(pPager, &root, &(pBtc->pPage), tdbBtreeInitPage, - &((SBtreeInitPageArg){.pBt = pBt, .flags = TDB_BTREE_ROOT | TDB_BTREE_LEAF}), pBtc->pTxn); - if (ret < 0) { - // TODO - ASSERT(0); - return -1; - } - - pBtc->iPage = 0; - pBtc->idx = -1; - // for empty tree, just return with an invalid position - if (TDB_PAGE_TOTAL_CELLS(pBtc->pPage) == 0) return 0; - } else { - // move from a position (TODO) - ASSERT(0); - } - - // search downward - for (;;) { - int lidx, ridx, midx; - SPage *pPage; - - pPage = pBtc->pPage; - nCells = TDB_PAGE_TOTAL_CELLS(pPage); - lidx = 0; - ridx = nCells - 1; - - ASSERT(nCells > 0); - ASSERT(pBtc->idx == -1); - - // search two ends - // compare first cell - midx = lidx; - pCell = tdbPageGetCell(pPage, midx); - tdbBtreeDecodeCell(pPage, pCell, &cd); - c = cmprFn(cd.pKey, cd.kLen, pKey, kLen); - tdbBSearch(&lidx, &ridx, midx, c, flags); - - // compare last cell - if (lidx <= ridx) { - midx = ridx; - pCell = tdbPageGetCell(pPage, midx); - tdbBtreeDecodeCell(pPage, pCell, &cd); - c = cmprFn(cd.pKey, cd.kLen, pKey, kLen); - tdbBSearch(&lidx, &ridx, midx, c, flags); - } - - // binary search - for (;;) { - if (lidx > ridx) break; - - midx = (lidx + ridx) >> 1; - pCell = tdbPageGetCell(pPage, midx); - tdbBtreeDecodeCell(pPage, pCell, &cd); - c = cmprFn(pKey, kLen, cd.pKey, cd.kLen); - tdbBSearch(&lidx, &ridx, midx, c, flags); - } - - // keep search downward or break - leaf = TDB_BTREE_PAGE_IS_LEAF(pPage); - if (!leaf) { - if (flags & 0x7 == TDB_FLG_CMP_EQ) { - if (c < 0) { - pBtc->idx = midx + 1; - } else { - pBtc->idx = midx; - } - } else if (flags & 0x7 == TDB_FLG_CMP_LT) { - if (c < 0) { - pBtc->idx = midx; - } else if (c == 0) { - } else { - } - } else if (flags & 0x7 == TDB_FLG_CMP_GT) { - if (c < 0) { - } else if (c == 0) { - } else { - } - } else if (flags & 0x7 == TDB_FLG_CMP_LT | TDB_FLG_CMP_EQ) { - if (c < 0) { - } else if (c == 0) { - } else { - } - } else if (flags & 0x7 == TDB_FLG_CMP_GT | TDB_FLG_CMP_EQ) { - if (c < 0) { - } else if (c == 0) { - } else { - } - } - - tdbBtcMoveDownward(pBtc); - } else { - // non-leaf (TODO) - } - } - - return 0; -} \ No newline at end of file +// TDB_BTREE_DEBUG \ No newline at end of file diff --git a/source/libs/tdb/src/db/tdbDb.c b/source/libs/tdb/src/db/tdbDb.c index e89c39053c408a571aee29c8c5a34ff1d4ca5209..d7b5d0df34463ecc962d124f2a58e271d38c0838 100644 --- a/source/libs/tdb/src/db/tdbDb.c +++ b/source/libs/tdb/src/db/tdbDb.c @@ -111,17 +111,9 @@ int tdbDbcOpen(TDB *pDb, TDBC **ppDbc, TXN *pTxn) { return 0; } -int tdbDbcMoveTo(TDBC *pDbc, const void *pKey, int kLen, int flags) { - int tflags; - - // set/check flags - if (flags == 0) { - flags |= TDB_FLG_CMP_EQ; - } else { - if (flags & TDB_FLG_CMP_LT && flags & TDB_FLG_CMP_GT) return -1; - } - - return tdbBtcMoveTo2(&pDbc->btc, pKey, kLen, flags); +int tdbDbcMoveTo(TDBC *pDbc, const void *pKey, int kLen) { + // return tdbBtcMoveTo(&pDbc->btc, pKey, kLen, flags); + return 0; } int tdbDbcPut(TDBC *pDbc, const void *pKey, int keyLen, const void *pVal, int valLen) { diff --git a/source/libs/tdb/src/inc/tdbInt.h b/source/libs/tdb/src/inc/tdbInt.h index eaf1f9d9883139455683804b59f1106b575fbe91..c8907163661c551fcb96a742ea3be6faecc6054d 100644 --- a/source/libs/tdb/src/inc/tdbInt.h +++ b/source/libs/tdb/src/inc/tdbInt.h @@ -123,7 +123,7 @@ int tdbBtreePGet(SBTree *pBt, const void *pKey, int kLen, void **ppKey, int *pkL // SBTC int tdbBtcOpen(SBTC *pBtc, SBTree *pBt, TXN *pTxn); -int tdbBtcMoveTo2(SBTC *pBtc, const void *pKey, int kLen, int flags); +int tdbBtcMoveTo(SBTC *pBtc, const void *pKey, int kLen, int *pCRst); int tdbBtcMoveToFirst(SBTC *pBtc); int tdbBtcMoveToLast(SBTC *pBtc); int tdbBtreeNext(SBTC *pBtc, void **ppKey, int *kLen, void **ppVal, int *vLen);