twister-core/src/txdb.h

63 lines
2.5 KiB
C
Raw Normal View History

// Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2012 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
2012-10-16 20:23:39 +00:00
#ifndef BITCOIN_TXDB_LEVELDB_H
#define BITCOIN_TXDB_LEVELDB_H
2012-10-16 20:23:39 +00:00
#include "main.h"
#include "leveldb.h"
2013-01-28 20:05:26 +00:00
/** CCoinsView backed by the LevelDB coin database (chainstate/) */
2012-10-16 20:23:39 +00:00
class CCoinsViewDB : public CCoinsView
{
protected:
CLevelDB db;
public:
CCoinsViewDB(size_t nCacheSize, bool fMemory = false, bool fWipe = false);
2012-10-16 20:23:39 +00:00
2013-07-24 21:23:05 +00:00
/*
bool GetCoins(const uint256 &txid, CCoins &coins);
bool SetCoins(const uint256 &txid, const CCoins &coins);
bool HaveCoins(const uint256 &txid);
2013-07-24 21:23:05 +00:00
*/
2012-10-16 20:23:39 +00:00
CBlockIndex *GetBestBlock();
bool SetBestBlock(CBlockIndex *pindex);
bool BatchWrite(const std::map<uint256, CCoins> &mapCoins, CBlockIndex *pindex);
bool GetStats(CCoinsStats &stats);
};
2013-01-28 20:05:26 +00:00
/** Access to the block database (blocks/index/) */
2012-10-16 20:23:39 +00:00
class CBlockTreeDB : public CLevelDB
{
public:
CBlockTreeDB(size_t nCacheSize, bool fMemory = false, bool fWipe = false);
2012-10-16 20:23:39 +00:00
private:
CBlockTreeDB(const CBlockTreeDB&);
void operator=(const CBlockTreeDB&);
public:
bool WriteBlockIndex(const CDiskBlockIndex& blockindex);
bool ReadBestInvalidWork(CBigNum& bnBestInvalidWork);
bool WriteBestInvalidWork(const CBigNum& bnBestInvalidWork);
bool ReadBlockFileInfo(int nFile, CBlockFileInfo &fileinfo);
bool WriteBlockFileInfo(int nFile, const CBlockFileInfo &fileinfo);
bool ReadLastBlockFile(int &nFile);
bool WriteLastBlockFile(int nFile);
bool WriteReindexing(bool fReindex);
bool ReadReindexing(bool &fReindex);
bool ReadTxIndex(const uint256 &txid, CDiskTxPos &pos);
bool HaveTxIndex(const uint256 &txid);
bool EraseTxIndex(const uint256 &txid);
bool WriteTxIndex(const std::vector<std::pair<uint256, CDiskTxPos> > &list);
bool WriteFlag(const std::string &name, bool fValue);
bool ReadFlag(const std::string &name, bool &fValue);
bool WritePartialNameTree(const std::string &partialName, const std::string &nextChars);
bool ReadPartialNameTree(const std::string &partialName, std::string &nextChars);
bool AddCharToPartialNameTree(const std::string &partialName, char ch);
bool AddNameToPartialNameTree(const std::string &name);
void GetNamesFromPartial(const std::string &partial, std::set< std::string > &names, size_t count);
2012-10-16 20:23:39 +00:00
bool LoadBlockIndexGuts();
};
#endif // BITCOIN_TXDB_LEVELDB_H