2012-09-03 21:14:03 +02:00
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
2015-12-13 14:51:43 +01:00
|
|
|
// Copyright (c) 2009-2015 The Bitcoin Core developers
|
2014-10-31 01:43:19 +01:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2012-09-03 21:14:03 +02:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
2013-04-13 07:13:08 +02:00
|
|
|
|
2014-11-03 16:16:40 +01:00
|
|
|
#ifndef BITCOIN_TXDB_H
|
|
|
|
#define BITCOIN_TXDB_H
|
2012-09-03 21:14:03 +02:00
|
|
|
|
2015-02-05 01:21:11 +01:00
|
|
|
#include "coins.h"
|
2015-10-23 03:33:06 +02:00
|
|
|
#include "dbwrapper.h"
|
2013-04-13 07:13:08 +02:00
|
|
|
|
|
|
|
#include <map>
|
|
|
|
#include <string>
|
|
|
|
#include <utility>
|
|
|
|
#include <vector>
|
|
|
|
|
2015-02-05 01:21:11 +01:00
|
|
|
class CBlockFileInfo;
|
|
|
|
class CBlockIndex;
|
2015-03-29 13:45:05 +02:00
|
|
|
struct CDiskTxPos;
|
2016-03-29 21:17:30 +02:00
|
|
|
struct CAddressUnspentKey;
|
|
|
|
struct CAddressUnspentValue;
|
2016-03-05 22:31:10 +01:00
|
|
|
struct CAddressIndexKey;
|
2016-03-09 17:27:30 +01:00
|
|
|
struct CAddressIndexIteratorKey;
|
2016-04-13 02:33:18 +02:00
|
|
|
struct CAddressIndexIteratorHeightKey;
|
2016-03-22 23:11:04 +01:00
|
|
|
struct CTimestampIndexKey;
|
|
|
|
struct CTimestampIndexIteratorKey;
|
2016-04-05 21:53:38 +02:00
|
|
|
struct CSpentIndexKey;
|
|
|
|
struct CSpentIndexValue;
|
2013-04-13 07:13:08 +02:00
|
|
|
class uint256;
|
2012-09-03 21:14:03 +02:00
|
|
|
|
2014-10-31 01:43:19 +01:00
|
|
|
//! -dbcache default (MiB)
|
2014-02-18 17:12:48 +01:00
|
|
|
static const int64_t nDefaultDbCache = 100;
|
2014-10-31 01:43:19 +01:00
|
|
|
//! max. -dbcache in (MiB)
|
2015-05-04 01:56:42 +02:00
|
|
|
static const int64_t nMaxDbCache = sizeof(void*) > 4 ? 16384 : 1024;
|
2014-10-31 01:43:19 +01:00
|
|
|
//! min. -dbcache in (MiB)
|
2014-02-18 17:12:48 +01:00
|
|
|
static const int64_t nMinDbCache = 4;
|
2014-02-16 22:00:12 +01:00
|
|
|
|
2015-10-23 03:02:20 +02:00
|
|
|
/** CCoinsView backed by the coin database (chainstate/) */
|
2012-10-16 22:23:39 +02:00
|
|
|
class CCoinsViewDB : public CCoinsView
|
|
|
|
{
|
|
|
|
protected:
|
2015-10-23 03:02:20 +02:00
|
|
|
CDBWrapper db;
|
2012-10-16 22:23:39 +02:00
|
|
|
public:
|
2012-10-21 21:23:13 +02:00
|
|
|
CCoinsViewDB(size_t nCacheSize, bool fMemory = false, bool fWipe = false);
|
2012-10-16 22:23:39 +02:00
|
|
|
|
2014-07-19 16:42:48 +02:00
|
|
|
bool GetCoins(const uint256 &txid, CCoins &coins) const;
|
|
|
|
bool HaveCoins(const uint256 &txid) const;
|
|
|
|
uint256 GetBestBlock() const;
|
2014-08-24 02:08:05 +02:00
|
|
|
bool BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock);
|
2014-07-19 16:42:48 +02:00
|
|
|
bool GetStats(CCoinsStats &stats) const;
|
2012-10-16 22:23:39 +02:00
|
|
|
};
|
|
|
|
|
2013-01-28 21:05:26 +01:00
|
|
|
/** Access to the block database (blocks/index/) */
|
2015-10-23 03:02:20 +02:00
|
|
|
class CBlockTreeDB : public CDBWrapper
|
2012-10-16 22:23:39 +02:00
|
|
|
{
|
|
|
|
public:
|
2012-10-21 21:23:13 +02:00
|
|
|
CBlockTreeDB(size_t nCacheSize, bool fMemory = false, bool fWipe = false);
|
2012-10-16 22:23:39 +02:00
|
|
|
private:
|
|
|
|
CBlockTreeDB(const CBlockTreeDB&);
|
|
|
|
void operator=(const CBlockTreeDB&);
|
|
|
|
public:
|
2014-11-25 16:26:20 +01:00
|
|
|
bool WriteBatchSync(const std::vector<std::pair<int, const CBlockFileInfo*> >& fileInfo, int nLastFile, const std::vector<const CBlockIndex*>& blockinfo);
|
2012-10-16 22:23:39 +02:00
|
|
|
bool ReadBlockFileInfo(int nFile, CBlockFileInfo &fileinfo);
|
|
|
|
bool ReadLastBlockFile(int &nFile);
|
2012-10-21 21:23:13 +02:00
|
|
|
bool WriteReindexing(bool fReindex);
|
|
|
|
bool ReadReindexing(bool &fReindex);
|
2013-01-11 01:47:57 +01:00
|
|
|
bool ReadTxIndex(const uint256 &txid, CDiskTxPos &pos);
|
|
|
|
bool WriteTxIndex(const std::vector<std::pair<uint256, CDiskTxPos> > &list);
|
2016-04-05 21:53:38 +02:00
|
|
|
bool ReadSpentIndex(CSpentIndexKey &key, CSpentIndexValue &value);
|
|
|
|
bool UpdateSpentIndex(const std::vector<std::pair<CSpentIndexKey, CSpentIndexValue> >&vect);
|
2016-03-29 21:17:30 +02:00
|
|
|
bool UpdateAddressUnspentIndex(const std::vector<std::pair<CAddressUnspentKey, CAddressUnspentValue > >&vect);
|
|
|
|
bool ReadAddressUnspentIndex(uint160 addressHash, int type,
|
|
|
|
std::vector<std::pair<CAddressUnspentKey, CAddressUnspentValue> > &vect);
|
2016-03-05 22:31:10 +01:00
|
|
|
bool WriteAddressIndex(const std::vector<std::pair<CAddressIndexKey, CAmount> > &vect);
|
2016-03-28 22:47:20 +02:00
|
|
|
bool EraseAddressIndex(const std::vector<std::pair<CAddressIndexKey, CAmount> > &vect);
|
2016-03-24 20:44:23 +01:00
|
|
|
bool ReadAddressIndex(uint160 addressHash, int type,
|
|
|
|
std::vector<std::pair<CAddressIndexKey, CAmount> > &addressIndex,
|
|
|
|
int start = 0, int end = 0);
|
2016-03-22 23:11:04 +01:00
|
|
|
bool WriteTimestampIndex(const CTimestampIndexKey ×tampIndex);
|
|
|
|
bool ReadTimestampIndex(const unsigned int &high, const unsigned int &low, std::vector<uint256> &vect);
|
2013-01-11 01:47:57 +01:00
|
|
|
bool WriteFlag(const std::string &name, bool fValue);
|
|
|
|
bool ReadFlag(const std::string &name, bool &fValue);
|
2012-10-16 22:23:39 +02:00
|
|
|
bool LoadBlockIndexGuts();
|
|
|
|
};
|
|
|
|
|
2014-11-03 16:16:40 +01:00
|
|
|
#endif // BITCOIN_TXDB_H
|