walletdb: Introduce AddRef and RemoveRef functions

Refactor mapFileUseCount increment and decrement to separate functions
AddRef and RemoveRef
This commit is contained in:
Andrew Chow
2020-06-19 20:51:07 -04:00
parent 27b2766384
commit 71d28e7cdc
2 changed files with 24 additions and 7 deletions

View File

@@ -121,6 +121,11 @@ public:
*/
bool Rewrite(const char* pszSkip=nullptr);
/** Indicate the a new database user has began using the database. */
void AddRef();
/** Indicate that database user has stopped using the database and that it could be flushed or closed. */
void RemoveRef();
/** Back up the entire database to a file.
*/
bool Backup(const std::string& strDest) const;
@@ -212,6 +217,7 @@ protected:
bool fReadOnly;
bool fFlushOnClose;
BerkeleyEnvironment *env;
BerkeleyDatabase& m_database;
public:
explicit BerkeleyBatch(BerkeleyDatabase& database, const char* pszMode = "r+", bool fFlushOnCloseIn=true);