![]() |
Bitcoin Core
22.99.0
P2P Digital Currency
|
An instance of this class represents one database. More...
#include <bdb.h>
Public Member Functions | |
BerkeleyDatabase ()=delete | |
BerkeleyDatabase (std::shared_ptr< BerkeleyEnvironment > env, std::string filename) | |
Create DB handle to real database. More... | |
~BerkeleyDatabase () override | |
void | Open () override |
Open the database if it is not already opened. More... | |
bool | Rewrite (const char *pszSkip=nullptr) override |
Rewrite the entire database on disk, with the exception of key pszSkip if non-zero. More... | |
void | AddRef () override |
Indicate that a new database user has begun using the database. More... | |
void | RemoveRef () override |
Indicate that database user has stopped using the database and that it could be flushed or closed. More... | |
bool | Backup (const std::string &strDest) const override |
Back up the entire database to a file. More... | |
void | Flush () override |
Make sure all changes are flushed to database file. More... | |
void | Close () override |
Flush to the database file and close the database. More... | |
bool | PeriodicFlush () override |
void | IncrementUpdateCounter () override |
void | ReloadDbEnv () override |
bool | Verify (bilingual_str &error) |
Verifies the environment and database file. More... | |
std::string | Filename () override |
Return path to main database filename. More... | |
std::string | Format () override |
std::unique_ptr< DatabaseBatch > | MakeBatch (bool flush_on_close=true) override |
Make a BerkeleyBatch connected to this database. More... | |
![]() | |
WalletDatabase () | |
Create dummy DB handle. More... | |
virtual | ~WalletDatabase () |
Public Attributes | |
std::shared_ptr< BerkeleyEnvironment > | env |
Pointer to shared database environment. More... | |
std::unique_ptr< Db > | m_db |
Database pointer. More... | |
std::string | strFile |
![]() | |
std::atomic< int > | m_refcount {0} |
Counts the number of active database users to be sure that the database is not closed while someone is using it. More... | |
std::atomic< unsigned int > | nUpdateCounter |
unsigned int | nLastSeen |
unsigned int | nLastFlushed |
int64_t | nLastWalletUpdate |
An instance of this class represents one database.
For BerkeleyDB this is just a (env, strFile) tuple.
|
delete |
|
inline |
|
override |
|
overridevirtual |
Indicate that a new database user has begun using the database.
Implements wallet::WalletDatabase.
Definition at line 805 of file bdb.cpp.
|
overridevirtual |
Back up the entire database to a file.
Implements wallet::WalletDatabase.
Definition at line 605 of file bdb.cpp.
|
overridevirtual |
Flush to the database file and close the database.
Also close the environment if no other databases are open in it.
Implements wallet::WalletDatabase.
|
inlineoverridevirtual |
Return path to main database filename.
Implements wallet::WalletDatabase.
Definition at line 145 of file bdb.h.
|
overridevirtual |
Make sure all changes are flushed to database file.
Implements wallet::WalletDatabase.
|
inlineoverridevirtual |
Implements wallet::WalletDatabase.
|
overridevirtual |
Implements wallet::WalletDatabase.
|
overridevirtual |
Make a BerkeleyBatch connected to this database.
Implements wallet::WalletDatabase.
|
overridevirtual |
Open the database if it is not already opened.
Implements wallet::WalletDatabase.
Definition at line 324 of file bdb.cpp.
|
overridevirtual |
Implements wallet::WalletDatabase.
Definition at line 578 of file bdb.cpp.
|
overridevirtual |
Implements wallet::WalletDatabase.
|
overridevirtual |
Indicate that database user has stopped using the database and that it could be flushed or closed.
Implements wallet::WalletDatabase.
Definition at line 815 of file bdb.cpp.
|
overridevirtual |
Rewrite the entire database on disk, with the exception of key pszSkip if non-zero.
Implements wallet::WalletDatabase.
Definition at line 451 of file bdb.cpp.
bool wallet::BerkeleyDatabase::Verify | ( | bilingual_str & | error | ) |
std::shared_ptr<BerkeleyEnvironment> wallet::BerkeleyDatabase::env |
Pointer to shared database environment.
Normally there is only one BerkeleyDatabase object per BerkeleyEnvivonment, but in the special, backwards compatible case where multiple wallet BDB data files are loaded from the same directory, this will point to a shared instance that gets freed when the last data file is closed.
std::unique_ptr<Db> wallet::BerkeleyDatabase::m_db |