2012-09-03 16:14:03 -03:00
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
2020-01-14 16:17:38 -03:00
|
|
|
// Copyright (c) 2009-2020 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
|
|
|
|
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
|
|
|
|
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
|
2017-12-08 16:29:59 -03:00
|
|
|
static const int64_t nMaxTxIndexCache = 1024;
|
2018-08-30 02:15:50 -03:00
|
|
|
//! Max memory allocated to all block filter index caches combined in MiB.
|
|
|
|
static const int64_t max_filter_index_cache = 1024;
|
2016-06-27 09:39:28 -04:00
|
|
|
//! Max memory allocated to coin DB specific cache (MiB)
|
|
|
|
static const int64_t nMaxCoinsDBCache = 8;
|
2014-02-16 18:00:12 -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:
|
2019-07-24 13:23:48 -04:00
|
|
|
/**
|
|
|
|
* @param[in] ldb_path Location in the filesystem where leveldb data will be stored.
|
|
|
|
*/
|
|
|
|
explicit CCoinsViewDB(fs::path ldb_path, size_t nCacheSize, bool fMemory, bool fWipe);
|
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);
|
2018-07-27 02:22:42 -04:00
|
|
|
void ReadReindexing(bool &fReindexing);
|
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
|
|
|
};
|
|
|
|
|
2014-11-03 12:16:40 -03:00
|
|
|
#endif // BITCOIN_TXDB_H
|