From f3fa9e4dd88fce43b7f11c6418762335b37fc9a4 Mon Sep 17 00:00:00 2001 From: Hongze Cheng Date: Tue, 17 May 2022 12:47:00 +0000 Subject: [PATCH] tdb debug --- source/libs/tdb/src/db/tdbPCache.c | 17 +++++++----- source/libs/tdb/src/db/tdbPager.c | 2 +- source/libs/tdb/src/inc/tdbInt.h | 44 ++++++++++++++++++------------ 3 files changed, 38 insertions(+), 25 deletions(-) diff --git a/source/libs/tdb/src/db/tdbPCache.c b/source/libs/tdb/src/db/tdbPCache.c index 661412b567..4c45e82261 100644 --- a/source/libs/tdb/src/db/tdbPCache.c +++ b/source/libs/tdb/src/db/tdbPCache.c @@ -85,7 +85,7 @@ SPage *tdbPCacheFetch(SPCache *pCache, const SPgid *pPgid, TXN *pTxn) { pPage = tdbPCacheFetchImpl(pCache, pPgid, pTxn); if (pPage) { - TDB_REF_PAGE(pPage); + tdbRefPage(pPage); } tdbPCacheUnlock(pCache); @@ -98,7 +98,7 @@ void tdbPCacheRelease(SPCache *pCache, SPage *pPage, TXN *pTxn) { ASSERT(pTxn); - nRef = TDB_UNREF_PAGE(pPage); + nRef = tdbUnrefPage(pPage); ASSERT(nRef >= 0); if (nRef == 0) { @@ -106,7 +106,7 @@ void tdbPCacheRelease(SPCache *pCache, SPage *pPage, TXN *pTxn) { // test the nRef again to make sure // it is safe th handle the page - nRef = TDB_GET_PAGE_REF(pPage); + nRef = tdbGetPageRef(pPage); if (nRef == 0) { if (pPage->isLocal) { tdbPCacheUnpinPage(pCache, pPage); @@ -179,7 +179,8 @@ static SPage *tdbPCacheFetchImpl(SPCache *pCache, const SPgid *pPgid, TXN *pTxn) // init the page fields pPage->isAnchor = 0; pPage->isLocal = 0; - TDB_INIT_PAGE_REF(pPage); + pPage->nRef = 0; + pPage->id = -1; } // 5. Page here are just created from a free list @@ -213,7 +214,9 @@ static SPage *tdbPCacheFetchImpl(SPCache *pCache, const SPgid *pPgid, TXN *pTxn) } static void tdbPCachePinPage(SPCache *pCache, SPage *pPage) { - if (!PAGE_IS_PINNED(pPage)) { + if (pPage->pLruNext != NULL) { + ASSERT(tdbGetPageRef(pPage) == 0); + pPage->pLruPrev->pLruNext = pPage->pLruNext; pPage->pLruNext->pLruPrev = pPage->pLruPrev; pPage->pLruNext = NULL; @@ -229,7 +232,7 @@ static void tdbPCacheUnpinPage(SPCache *pCache, SPage *pPage) { ASSERT(pPage->isLocal); ASSERT(!pPage->isDirty); - ASSERT(TDB_GET_PAGE_REF(pPage) == 0); + ASSERT(tdbGetPageRef(pPage) == 0); ASSERT(pPage->pLruNext == NULL); @@ -292,7 +295,7 @@ static int tdbPCacheOpenImpl(SPCache *pCache) { // pPage->pgid = 0; pPage->isAnchor = 0; pPage->isLocal = 1; - TDB_INIT_PAGE_REF(pPage); + pPage->nRef = 0; pPage->pHashNext = NULL; pPage->pLruNext = NULL; pPage->pLruPrev = NULL; diff --git a/source/libs/tdb/src/db/tdbPager.c b/source/libs/tdb/src/db/tdbPager.c index dc36c76027..6b5a3af347 100644 --- a/source/libs/tdb/src/db/tdbPager.c +++ b/source/libs/tdb/src/db/tdbPager.c @@ -149,7 +149,7 @@ int tdbPagerWrite(SPager *pPager, SPage *pPage) { if (pPage->isDirty) return 0; // ref page one more time so the page will not be release - TDB_REF_PAGE(pPage); + tdbRefPage(pPage); // Set page as dirty pPage->isDirty = 1; diff --git a/source/libs/tdb/src/inc/tdbInt.h b/source/libs/tdb/src/inc/tdbInt.h index c0253909f4..cb114b1489 100644 --- a/source/libs/tdb/src/inc/tdbInt.h +++ b/source/libs/tdb/src/inc/tdbInt.h @@ -174,25 +174,21 @@ void tdbPagerReturnPage(SPager *pPager, SPage *pPage, TXN *pTxn); int tdbPagerAllocPage(SPager *pPager, SPgno *ppgno); // tdbPCache.c ==================================== -#define TDB_PCACHE_PAGE \ - u8 isAnchor; \ - u8 isLocal; \ - u8 isDirty; \ - i32 nRef; \ - i32 id; \ - SPage *pFreeNext; \ - SPage *pHashNext; \ - SPage *pLruNext; \ - SPage *pLruPrev; \ - SPage *pDirtyNext; \ - SPager *pPager; \ - SPgid pgid; +#define TDB_PCACHE_PAGE \ + u8 isAnchor; \ + u8 isLocal; \ + u8 isDirty; \ + volatile i32 nRef; \ + i32 id; \ + SPage *pFreeNext; \ + SPage *pHashNext; \ + SPage *pLruNext; \ + SPage *pLruPrev; \ + SPage *pDirtyNext; \ + SPager *pPager; \ + SPgid pgid; // For page ref -#define TDB_INIT_PAGE_REF(pPage) ((pPage)->nRef = 0) -#define TDB_REF_PAGE(pPage) atomic_add_fetch_32(&((pPage)->nRef), 1) -#define TDB_UNREF_PAGE(pPage) atomic_sub_fetch_32(&((pPage)->nRef), 1) -#define TDB_GET_PAGE_REF(pPage) atomic_load_32(&((pPage)->nRef)) int tdbPCacheOpen(int pageSize, int cacheSize, SPCache **ppCache); int tdbPCacheClose(SPCache *pCache); @@ -259,6 +255,20 @@ struct SPage { TDB_PCACHE_PAGE }; +static inline i32 tdbRefPage(SPage *pPage) { + i32 nRef = atomic_add_fetch_32(&((pPage)->nRef), 1); + tdbInfo("ref page %d, nRef %d", pPage->id, nRef); + return nRef; +} + +static inline i32 tdbUnrefPage(SPage *pPage) { + i32 nRef = atomic_sub_fetch_32(&((pPage)->nRef), 1); + tdbInfo("unref page %d, nRef %d", pPage->id, nRef); + return nRef; +} + +#define tdbGetPageRef(pPage) atomic_load_32(&((pPage)->nRef)) + // For page lock #define P_LOCK_SUCC 0 #define P_LOCK_BUSY 1 -- GitLab