2012-09-03 16:14:03 -03:00
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
2016-12-31 15:01:21 -03:00
|
|
|
// Copyright (c) 2009-2016 The Bitcoin Core developers
|
2014-10-30 21:43:19 -03:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2012-09-03 16:14:03 -03:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
2013-04-13 02:13:08 -03:00
|
|
|
|
2014-11-03 12:16:40 -03:00
|
|
|
#ifndef BITCOIN_TXDB_H
|
|
|
|
#define BITCOIN_TXDB_H
|
2012-09-03 16:14:03 -03:00
|
|
|
|
2015-02-04 21:21:11 -03:00
|
|
|
#include "coins.h"
|
2015-10-22 22:33:06 -03:00
|
|
|
#include "dbwrapper.h"
|
2016-04-05 10:14:48 -03:00
|
|
|
#include "chain.h"
|
2013-04-13 02:13:08 -03:00
|
|
|
|
|
|
|
#include <map>
|
|
|
|
#include <string>
|
|
|
|
#include <utility>
|
|
|
|
#include <vector>
|
|
|
|
|
2015-02-04 21:21:11 -03:00
|
|
|
class CBlockIndex;
|
2016-04-05 10:14:48 -03:00
|
|
|
class CCoinsViewDBCursor;
|
2013-04-13 02:13:08 -03:00
|
|
|
class uint256;
|
2012-09-03 16:14:03 -03:00
|
|
|
|
2017-03-31 11:17:13 -03:00
|
|
|
//! Compensate for extra memory peak (x1.5-x1.9) at flush time.
|
|
|
|
static constexpr int DB_PEAK_USAGE_FACTOR = 2;
|
2017-03-31 11:26:25 -03:00
|
|
|
//! No need to periodic flush if at least this much space still available.
|
2017-04-25 15:29:44 -03:00
|
|
|
static constexpr int MAX_BLOCK_COINSDB_USAGE = 10 * DB_PEAK_USAGE_FACTOR;
|
2014-10-30 21:43:19 -03:00
|
|
|
//! -dbcache default (MiB)
|
2017-03-31 11:25:39 -03:00
|
|
|
static const int64_t nDefaultDbCache = 450;
|
2016-06-27 09:39:28 -04:00
|
|
|
//! max. -dbcache (MiB)
|
2015-05-03 20:56:42 -03:00
|
|
|
static const int64_t nMaxDbCache = sizeof(void*) > 4 ? 16384 : 1024;
|
2016-06-27 09:39:28 -04:00
|
|
|
//! min. -dbcache (MiB)
|
2014-02-18 13:12:48 -03:00
|
|
|
static const int64_t nMinDbCache = 4;
|
2016-06-27 09:39:28 -04:00
|
|
|
//! Max memory allocated to block tree DB specific cache, if no -txindex (MiB)
|
|
|
|
static const int64_t nMaxBlockDBCache = 2;
|
|
|
|
//! Max memory allocated to block tree DB specific cache, if -txindex (MiB)
|
|
|
|
// Unlike for the UTXO database, for the txindex scenario the leveldb cache make
|
|
|
|
// a meaningful difference: https://github.com/bitcoin/bitcoin/pull/8273#issuecomment-229601991
|
|
|
|
static const int64_t nMaxBlockDBAndTxIndexCache = 1024;
|
|
|
|
//! Max memory allocated to coin DB specific cache (MiB)
|
|
|
|
static const int64_t nMaxCoinsDBCache = 8;
|
2014-02-16 18:00:12 -03:00
|
|
|
|
2016-04-05 10:14:48 -03:00
|
|
|
struct CDiskTxPos : public CDiskBlockPos
|
|
|
|
{
|
|
|
|
unsigned int nTxOffset; // after header
|
|
|
|
|
|
|
|
ADD_SERIALIZE_METHODS;
|
|
|
|
|
|
|
|
template <typename Stream, typename Operation>
|
2016-10-28 20:29:17 -03:00
|
|
|
inline void SerializationOp(Stream& s, Operation ser_action) {
|
2016-04-05 10:14:48 -03:00
|
|
|
READWRITE(*(CDiskBlockPos*)this);
|
|
|
|
READWRITE(VARINT(nTxOffset));
|
|
|
|
}
|
|
|
|
|
|
|
|
CDiskTxPos(const CDiskBlockPos &blockIn, unsigned int nTxOffsetIn) : CDiskBlockPos(blockIn.nFile, blockIn.nPos), nTxOffset(nTxOffsetIn) {
|
|
|
|
}
|
|
|
|
|
|
|
|
CDiskTxPos() {
|
|
|
|
SetNull();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetNull() {
|
|
|
|
CDiskBlockPos::SetNull();
|
|
|
|
nTxOffset = 0;
|
|
|
|
}
|
|
|
|
};
|
2016-03-28 13:18:30 -03:00
|
|
|
|
2015-10-22 22:02:20 -03:00
|
|
|
/** CCoinsView backed by the coin database (chainstate/) */
|
2012-10-16 17:23:39 -03:00
|
|
|
class CCoinsViewDB : public CCoinsView
|
|
|
|
{
|
|
|
|
protected:
|
2015-10-22 22:02:20 -03:00
|
|
|
CDBWrapper db;
|
2012-10-16 17:23:39 -03:00
|
|
|
public:
|
2012-10-21 16:23:13 -03:00
|
|
|
CCoinsViewDB(size_t nCacheSize, bool fMemory = false, bool fWipe = false);
|
2012-10-16 17:23:39 -03:00
|
|
|
|
2017-05-30 20:58:54 -04:00
|
|
|
bool GetCoin(const COutPoint &outpoint, Coin &coin) const override;
|
|
|
|
bool HaveCoin(const COutPoint &outpoint) const override;
|
2017-04-25 15:29:39 -03:00
|
|
|
uint256 GetBestBlock() const override;
|
|
|
|
bool BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock) override;
|
|
|
|
CCoinsViewCursor *Cursor() const override;
|
2017-05-12 19:19:19 -03:00
|
|
|
|
2017-04-25 15:29:46 -03:00
|
|
|
//! Attempt to update from an older database format. Returns whether an error occurred.
|
|
|
|
bool Upgrade();
|
2017-05-12 19:19:19 -03:00
|
|
|
size_t EstimateSize() const override;
|
2016-03-28 13:18:30 -03:00
|
|
|
};
|
|
|
|
|
|
|
|
/** Specialization of CCoinsViewCursor to iterate over a CCoinsViewDB */
|
|
|
|
class CCoinsViewDBCursor: public CCoinsViewCursor
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
~CCoinsViewDBCursor() {}
|
|
|
|
|
2017-04-25 15:29:39 -03:00
|
|
|
bool GetKey(COutPoint &key) const;
|
|
|
|
bool GetValue(Coin &coin) const;
|
2016-03-28 13:18:30 -03:00
|
|
|
unsigned int GetValueSize() const;
|
|
|
|
|
|
|
|
bool Valid() const;
|
|
|
|
void Next();
|
|
|
|
|
|
|
|
private:
|
|
|
|
CCoinsViewDBCursor(CDBIterator* pcursorIn, const uint256 &hashBlockIn):
|
|
|
|
CCoinsViewCursor(hashBlockIn), pcursor(pcursorIn) {}
|
2016-08-30 17:41:56 -03:00
|
|
|
std::unique_ptr<CDBIterator> pcursor;
|
2017-04-25 15:29:39 -03:00
|
|
|
std::pair<char, COutPoint> keyTmp;
|
2016-03-28 13:18:30 -03:00
|
|
|
|
|
|
|
friend class CCoinsViewDB;
|
2012-10-16 17:23:39 -03:00
|
|
|
};
|
|
|
|
|
2013-01-28 17:05:26 -03:00
|
|
|
/** Access to the block database (blocks/index/) */
|
2015-10-22 22:02:20 -03:00
|
|
|
class CBlockTreeDB : public CDBWrapper
|
2012-10-16 17:23:39 -03:00
|
|
|
{
|
|
|
|
public:
|
2012-10-21 16:23:13 -03:00
|
|
|
CBlockTreeDB(size_t nCacheSize, bool fMemory = false, bool fWipe = false);
|
2012-10-16 17:23:39 -03:00
|
|
|
private:
|
|
|
|
CBlockTreeDB(const CBlockTreeDB&);
|
|
|
|
void operator=(const CBlockTreeDB&);
|
|
|
|
public:
|
2014-11-25 12:26:20 -03:00
|
|
|
bool WriteBatchSync(const std::vector<std::pair<int, const CBlockFileInfo*> >& fileInfo, int nLastFile, const std::vector<const CBlockIndex*>& blockinfo);
|
2012-10-16 17:23:39 -03:00
|
|
|
bool ReadBlockFileInfo(int nFile, CBlockFileInfo &fileinfo);
|
|
|
|
bool ReadLastBlockFile(int &nFile);
|
2012-10-21 16:23:13 -03:00
|
|
|
bool WriteReindexing(bool fReindex);
|
|
|
|
bool ReadReindexing(bool &fReindex);
|
2013-01-10 21:47:57 -03:00
|
|
|
bool ReadTxIndex(const uint256 &txid, CDiskTxPos &pos);
|
|
|
|
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);
|
2017-05-13 12:52:14 -03:00
|
|
|
bool LoadBlockIndexGuts(std::function<CBlockIndex*(const uint256&)> insertBlockIndex);
|
2012-10-16 17:23:39 -03:00
|
|
|
};
|
|
|
|
|
2014-11-03 12:16:40 -03:00
|
|
|
#endif // BITCOIN_TXDB_H
|