Feathercoin  0.5.0
P2P Digital Currency
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros
Public Member Functions | Static Public Member Functions | Private Member Functions | List of all members
CWalletDB Class Reference

Access to the wallet database (wallet.dat) More...

#include <walletdb.h>

Inheritance diagram for CWalletDB:
Inheritance graph
[legend]
Collaboration diagram for CWalletDB:
Collaboration graph
[legend]

Public Member Functions

 CWalletDB (std::string strFilename, const char *pszMode="r+")
 
bool WriteName (const std::string &strAddress, const std::string &strName)
 
bool EraseName (const std::string &strAddress)
 
bool WriteTx (uint256 hash, const CWalletTx &wtx)
 
bool EraseTx (uint256 hash)
 
bool WriteKey (const CPubKey &vchPubKey, const CPrivKey &vchPrivKey)
 
bool WriteCryptedKey (const CPubKey &vchPubKey, const std::vector< unsigned char > &vchCryptedSecret, bool fEraseUnencryptedKey=true)
 
bool WriteMasterKey (unsigned int nID, const CMasterKey &kMasterKey)
 
bool WriteCScript (const uint160 &hash, const CScript &redeemScript)
 
bool WriteBestBlock (const CBlockLocator &locator)
 
bool ReadBestBlock (CBlockLocator &locator)
 
bool WriteOrderPosNext (int64 nOrderPosNext)
 
bool WriteDefaultKey (const CPubKey &vchPubKey)
 
bool ReadPool (int64 nPool, CKeyPool &keypool)
 
bool WritePool (int64 nPool, const CKeyPool &keypool)
 
bool ErasePool (int64 nPool)
 
template<typename T >
bool ReadSetting (const std::string &strKey, T &value)
 
template<typename T >
bool WriteSetting (const std::string &strKey, const T &value)
 
bool EraseSetting (const std::string &strKey)
 
bool WriteMinVersion (int nVersion)
 
bool ReadAccount (const std::string &strAccount, CAccount &account)
 
bool WriteAccount (const std::string &strAccount, const CAccount &account)
 
bool WriteAccountingEntry (const CAccountingEntry &acentry)
 
int64 GetAccountCreditDebit (const std::string &strAccount)
 
void ListAccountCreditDebit (const std::string &strAccount, std::list< CAccountingEntry > &acentries)
 
DBErrors ReorderTransactions (CWallet *)
 
DBErrors LoadWallet (CWallet *pwallet)
 
- Public Member Functions inherited from CDB
void Flush ()
 
void Close ()
 
bool TxnBegin ()
 
bool TxnCommit ()
 
bool TxnAbort ()
 
bool ReadVersion (int &nVersion)
 
bool WriteVersion (int nVersion)
 

Static Public Member Functions

static bool Recover (CDBEnv &dbenv, std::string filename, bool fOnlyKeys)
 
static bool Recover (CDBEnv &dbenv, std::string filename)
 
- Static Public Member Functions inherited from CDB
static bool Rewrite (const std::string &strFile, const char *pszSkip=NULL)
 

Private Member Functions

 CWalletDB (const CWalletDB &)
 
void operator= (const CWalletDB &)
 
bool WriteAccountingEntry (const uint64 nAccEntryNum, const CAccountingEntry &acentry)
 

Additional Inherited Members

- Protected Member Functions inherited from CDB
 CDB (const char *pszFile, const char *pszMode="r+")
 
 ~CDB ()
 
template<typename K , typename T >
bool Read (const K &key, T &value)
 
template<typename K , typename T >
bool Write (const K &key, const T &value, bool fOverwrite=true)
 
template<typename K >
bool Erase (const K &key)
 
template<typename K >
bool Exists (const K &key)
 
Dbc * GetCursor ()
 
int ReadAtCursor (Dbc *pcursor, CDataStream &ssKey, CDataStream &ssValue, unsigned int fFlags=DB_NEXT)
 
- Protected Attributes inherited from CDB
Db * pdb
 
std::string strFile
 
DbTxn * activeTxn
 
bool fReadOnly
 

Detailed Description

Access to the wallet database (wallet.dat)

Definition at line 27 of file walletdb.h.

Constructor & Destructor Documentation

CWalletDB::CWalletDB ( std::string  strFilename,
const char *  pszMode = "r+" 
)
inline

Definition at line 30 of file walletdb.h.

CWalletDB::CWalletDB ( const CWalletDB )
private

Member Function Documentation

bool CWalletDB::EraseName ( const std::string &  strAddress)

Definition at line 27 of file walletdb.cpp.

bool CWalletDB::ErasePool ( int64  nPool)
inline

Definition at line 118 of file walletdb.h.

bool CWalletDB::EraseSetting ( const std::string &  strKey)
inline

Definition at line 137 of file walletdb.h.

bool CWalletDB::EraseTx ( uint256  hash)
inline

Definition at line 47 of file walletdb.h.

int64 CWalletDB::GetAccountCreditDebit ( const std::string &  strAccount)

Definition at line 56 of file walletdb.cpp.

void CWalletDB::ListAccountCreditDebit ( const std::string &  strAccount,
std::list< CAccountingEntry > &  acentries 
)

Definition at line 68 of file walletdb.cpp.

DBErrors CWalletDB::LoadWallet ( CWallet pwallet)

Definition at line 371 of file walletdb.cpp.

void CWalletDB::operator= ( const CWalletDB )
private
bool CWalletDB::ReadAccount ( const std::string &  strAccount,
CAccount account 
)

Definition at line 35 of file walletdb.cpp.

bool CWalletDB::ReadBestBlock ( CBlockLocator locator)
inline

Definition at line 90 of file walletdb.h.

bool CWalletDB::ReadPool ( int64  nPool,
CKeyPool keypool 
)
inline

Definition at line 107 of file walletdb.h.

template<typename T >
bool CWalletDB::ReadSetting ( const std::string &  strKey,
T &  value 
)
inline

Definition at line 127 of file walletdb.h.

bool CWalletDB::Recover ( CDBEnv dbenv,
std::string  filename,
bool  fOnlyKeys 
)
static

Definition at line 574 of file walletdb.cpp.

bool CWalletDB::Recover ( CDBEnv dbenv,
std::string  filename 
)
static

Definition at line 657 of file walletdb.cpp.

DBErrors CWalletDB::ReorderTransactions ( CWallet pwallet)

Definition at line 113 of file walletdb.cpp.

bool CWalletDB::WriteAccount ( const std::string &  strAccount,
const CAccount account 
)

Definition at line 41 of file walletdb.cpp.

bool CWalletDB::WriteAccountingEntry ( const uint64  nAccEntryNum,
const CAccountingEntry acentry 
)
private

Definition at line 46 of file walletdb.cpp.

bool CWalletDB::WriteAccountingEntry ( const CAccountingEntry acentry)

Definition at line 51 of file walletdb.cpp.

bool CWalletDB::WriteBestBlock ( const CBlockLocator locator)
inline

Definition at line 84 of file walletdb.h.

bool CWalletDB::WriteCryptedKey ( const CPubKey vchPubKey,
const std::vector< unsigned char > &  vchCryptedSecret,
bool  fEraseUnencryptedKey = true 
)
inline

Definition at line 59 of file walletdb.h.

bool CWalletDB::WriteCScript ( const uint160 hash,
const CScript redeemScript 
)
inline

Definition at line 78 of file walletdb.h.

bool CWalletDB::WriteDefaultKey ( const CPubKey vchPubKey)
inline

Definition at line 101 of file walletdb.h.

bool CWalletDB::WriteKey ( const CPubKey vchPubKey,
const CPrivKey vchPrivKey 
)
inline

Definition at line 53 of file walletdb.h.

bool CWalletDB::WriteMasterKey ( unsigned int  nID,
const CMasterKey kMasterKey 
)
inline

Definition at line 72 of file walletdb.h.

bool CWalletDB::WriteMinVersion ( int  nVersion)
inline

Definition at line 143 of file walletdb.h.

bool CWalletDB::WriteName ( const std::string &  strAddress,
const std::string &  strName 
)

Definition at line 21 of file walletdb.cpp.

bool CWalletDB::WriteOrderPosNext ( int64  nOrderPosNext)
inline

Definition at line 95 of file walletdb.h.

bool CWalletDB::WritePool ( int64  nPool,
const CKeyPool keypool 
)
inline

Definition at line 112 of file walletdb.h.

template<typename T >
bool CWalletDB::WriteSetting ( const std::string &  strKey,
const T &  value 
)
inline

Definition at line 132 of file walletdb.h.

bool CWalletDB::WriteTx ( uint256  hash,
const CWalletTx wtx 
)
inline

Definition at line 41 of file walletdb.h.


The documentation for this class was generated from the following files: