2012-09-03 16:14:03 -03:00
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
2018-01-02 14:12:05 -03:00
|
|
|
// Copyright (c) 2009-2017 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
|
|
|
|
2017-11-09 21:57:53 -03:00
|
|
|
#include <coins.h>
|
|
|
|
#include <dbwrapper.h>
|
|
|
|
#include <chain.h>
|
2017-12-11 21:58:25 -03:00
|
|
|
#include <primitives/block.h>
|
2013-04-13 02:13:08 -03:00
|
|
|
|
|
|
|
#include <map>
|
2018-04-02 15:31:40 -03:00
|
|
|
#include <memory>
|
2013-04-13 02:13:08 -03:00
|
|
|
#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:26:25 -03:00
|
|
|
//! No need to periodic flush if at least this much space still available.
|
2017-04-19 13:34:48 -03:00
|
|
|
static constexpr int MAX_BLOCK_COINSDB_USAGE = 10;
|
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;
|
2017-04-19 13:34:30 -03:00
|
|
|
//! -dbbatchsize default (bytes)
|
|
|
|
static const int64_t nDefaultDbBatchSize = 16 << 20;
|
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) {
|
2017-07-07 19:06:56 -04:00
|
|
|
READWRITEAS(CDiskBlockPos, *this);
|
2016-04-05 10:14:48 -03:00
|
|
|
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/) */
|
2017-07-12 16:48:36 -04:00
|
|
|
class CCoinsViewDB final : public CCoinsView
|
2012-10-16 17:23:39 -03:00
|
|
|
{
|
|
|
|
protected:
|
2015-10-22 22:02:20 -03:00
|
|
|
CDBWrapper db;
|
2012-10-16 17:23:39 -03:00
|
|
|
public:
|
2017-08-01 06:22:41 -04:00
|
|
|
explicit 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;
|
2017-04-19 13:34:30 -03:00
|
|
|
std::vector<uint256> GetHeadBlocks() const override;
|
2017-04-25 15:29:39 -03:00
|
|
|
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-06-20 15:58:56 -04:00
|
|
|
bool GetKey(COutPoint &key) const override;
|
|
|
|
bool GetValue(Coin &coin) const override;
|
|
|
|
unsigned int GetValueSize() const override;
|
2016-03-28 13:18:30 -03:00
|
|
|
|
2017-06-20 15:58:56 -04:00
|
|
|
bool Valid() const override;
|
|
|
|
void Next() override;
|
2016-03-28 13:18:30 -03:00
|
|
|
|
|
|
|
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:
|
2017-08-01 06:22:41 -04:00
|
|
|
explicit CBlockTreeDB(size_t nCacheSize, bool fMemory = false, bool fWipe = false);
|
2017-09-16 07:06:05 -03:00
|
|
|
|
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);
|
2017-08-23 22:58:28 -03:00
|
|
|
bool ReadBlockFileInfo(int nFile, CBlockFileInfo &info);
|
2012-10-16 17:23:39 -03:00
|
|
|
bool ReadLastBlockFile(int &nFile);
|
2017-08-23 22:58:28 -03:00
|
|
|
bool WriteReindexing(bool fReindexing);
|
|
|
|
bool ReadReindexing(bool &fReindexing);
|
2013-01-10 21:47:57 -03:00
|
|
|
bool ReadTxIndex(const uint256 &txid, CDiskTxPos &pos);
|
2017-08-23 22:58:28 -03:00
|
|
|
bool WriteTxIndex(const std::vector<std::pair<uint256, CDiskTxPos> > &vect);
|
2013-01-10 21:47:57 -03:00
|
|
|
bool WriteFlag(const std::string &name, bool fValue);
|
|
|
|
bool ReadFlag(const std::string &name, bool &fValue);
|
2016-11-07 19:31:55 -03:00
|
|
|
bool LoadBlockIndexGuts(const Consensus::Params& consensusParams, std::function<CBlockIndex*(const uint256&)> insertBlockIndex);
|
2012-10-16 17:23:39 -03:00
|
|
|
};
|
|
|
|
|
2017-12-11 21:58:25 -03:00
|
|
|
/**
|
|
|
|
* Access to the txindex database (indexes/txindex/)
|
|
|
|
*
|
|
|
|
* The database stores a block locator of the chain the database is synced to
|
|
|
|
* so that the TxIndex can efficiently determine the point it last stopped at.
|
|
|
|
* A locator is used instead of a simple hash of the chain tip because blocks
|
|
|
|
* and block index entries may not be flushed to disk until after this database
|
|
|
|
* is updated.
|
|
|
|
*/
|
|
|
|
class TxIndexDB : public CDBWrapper
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
explicit TxIndexDB(size_t n_cache_size, bool f_memory = false, bool f_wipe = false);
|
|
|
|
|
|
|
|
/// Read the disk location of the transaction data with the given hash. Returns false if the
|
|
|
|
/// transaction hash is not indexed.
|
|
|
|
bool ReadTxPos(const uint256& txid, CDiskTxPos& pos) const;
|
|
|
|
|
|
|
|
/// Write a batch of transaction positions to the DB.
|
|
|
|
bool WriteTxs(const std::vector<std::pair<uint256, CDiskTxPos>>& v_pos);
|
|
|
|
|
|
|
|
/// Read block locator of the chain that the txindex is in sync with.
|
|
|
|
bool ReadBestBlock(CBlockLocator& locator) const;
|
|
|
|
|
|
|
|
/// Write block locator of the chain that the txindex is in sync with.
|
|
|
|
bool WriteBestBlock(const CBlockLocator& locator);
|
2017-12-11 21:58:25 -03:00
|
|
|
|
|
|
|
/// Migrate txindex data from the block tree DB, where it may be for older nodes that have not
|
|
|
|
/// been upgraded yet to the new database.
|
|
|
|
bool MigrateData(CBlockTreeDB& block_tree_db, const CBlockLocator& best_locator);
|
2017-12-11 21:58:25 -03:00
|
|
|
};
|
|
|
|
|
2014-11-03 12:16:40 -03:00
|
|
|
#endif // BITCOIN_TXDB_H
|