2012-09-03 21:14:03 +02:00
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
2018-07-27 00:36:45 +02:00
|
|
|
// Copyright (c) 2009-2018 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
|
|
|
|
2017-11-10 01:57:53 +01:00
|
|
|
#include <coins.h>
|
|
|
|
#include <chain.h>
|
2017-12-12 01:58:25 +01:00
|
|
|
#include <primitives/block.h>
|
2013-04-13 07:13:08 +02:00
|
|
|
|
|
|
|
#include <map>
|
2018-04-02 20:31:40 +02:00
|
|
|
#include <memory>
|
2013-04-13 07:13:08 +02:00
|
|
|
#include <string>
|
|
|
|
#include <utility>
|
|
|
|
#include <vector>
|
|
|
|
|
2019-12-06 00:41:22 +01:00
|
|
|
#include <sqlite/sqlite3.h>
|
|
|
|
|
|
|
|
namespace sqlite {
|
|
|
|
inline int bind_col_in_db(sqlite3_stmt* stmt, int inx, const CScript& val) {
|
|
|
|
return sqlite3_bind_blob(stmt, inx, val.data(), int(val.size()), SQLITE_STATIC);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void store_result_in_db(sqlite3_context* db, const CScript& val) {
|
|
|
|
sqlite3_result_blob(db, val.data(), int(val.size()), SQLITE_TRANSIENT);
|
|
|
|
}
|
|
|
|
}
|
2019-12-16 13:29:51 +01:00
|
|
|
|
2019-12-06 00:41:22 +01:00
|
|
|
#include <sqlite.h>
|
2019-12-16 13:29:51 +01:00
|
|
|
|
2019-12-06 00:41:22 +01:00
|
|
|
namespace sqlite {
|
|
|
|
template<>
|
|
|
|
struct has_sqlite_type<CScript, SQLITE_BLOB, void> : std::true_type {};
|
|
|
|
|
|
|
|
inline CScript get_col_from_db(sqlite3_stmt* stmt, int inx, result_type<CScript>) {
|
|
|
|
auto ptr = (const unsigned char*)sqlite3_column_blob(stmt, inx);
|
|
|
|
if (!ptr) return {};
|
|
|
|
int bytes = sqlite3_column_bytes(stmt, inx);
|
2019-12-13 17:06:11 +01:00
|
|
|
assert(bytes >= 0);
|
2019-12-06 00:41:22 +01:00
|
|
|
return CScript(ptr, ptr + bytes);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-05 01:21:11 +01:00
|
|
|
class CBlockIndex;
|
2016-04-05 15:14:48 +02:00
|
|
|
class CCoinsViewDBCursor;
|
2013-04-13 07:13:08 +02:00
|
|
|
class uint256;
|
2012-09-03 21:14:03 +02:00
|
|
|
|
2017-03-31 16:26:25 +02:00
|
|
|
//! No need to periodic flush if at least this much space still available.
|
2017-04-19 18:34:48 +02:00
|
|
|
static constexpr int MAX_BLOCK_COINSDB_USAGE = 10;
|
2014-10-31 01:43:19 +01:00
|
|
|
//! -dbcache default (MiB)
|
2019-12-06 00:41:22 +01:00
|
|
|
static const int64_t nDefaultDbCache = 480;
|
2017-04-19 18:34:30 +02:00
|
|
|
//! -dbbatchsize default (bytes)
|
|
|
|
static const int64_t nDefaultDbBatchSize = 16 << 20;
|
2016-06-27 15:39:28 +02:00
|
|
|
//! max. -dbcache (MiB)
|
2015-05-04 01:56:42 +02:00
|
|
|
static const int64_t nMaxDbCache = sizeof(void*) > 4 ? 16384 : 1024;
|
2016-06-27 15:39:28 +02:00
|
|
|
//! min. -dbcache (MiB)
|
2014-02-18 17:12:48 +01:00
|
|
|
static const int64_t nMinDbCache = 4;
|
2019-12-06 00:41:22 +01:00
|
|
|
//! Max memory allocated to block tree DB specific cache
|
|
|
|
static const int64_t nMaxBlockDBCache = 260;
|
2016-06-27 15:39:28 +02:00
|
|
|
//! Max memory allocated to coin DB specific cache (MiB)
|
2019-12-06 00:41:22 +01:00
|
|
|
static const int64_t nMaxCoinsDBCache = 40;
|
|
|
|
|
|
|
|
|
|
|
|
struct CDiskTxPos : public CDiskBlockPos
|
|
|
|
{
|
|
|
|
unsigned int nTxOffset; // after header
|
|
|
|
|
|
|
|
ADD_SERIALIZE_METHODS;
|
|
|
|
|
|
|
|
template <typename Stream, typename Operation>
|
|
|
|
inline void SerializationOp(Stream& s, Operation ser_action) {
|
|
|
|
READWRITEAS(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;
|
|
|
|
}
|
|
|
|
};
|
2014-02-16 22:00:12 +01:00
|
|
|
|
2015-10-23 03:02:20 +02:00
|
|
|
/** CCoinsView backed by the coin database (chainstate/) */
|
2017-07-12 22:48:36 +02:00
|
|
|
class CCoinsViewDB final : public CCoinsView
|
2012-10-16 22:23:39 +02:00
|
|
|
{
|
2019-12-06 00:41:22 +01:00
|
|
|
friend CCoinsViewDBCursor;
|
|
|
|
mutable sqlite::database db;
|
|
|
|
|
2012-10-16 22:23:39 +02:00
|
|
|
public:
|
2017-08-01 12:22:41 +02:00
|
|
|
explicit CCoinsViewDB(size_t nCacheSize, bool fMemory = false, bool fWipe = false);
|
2012-10-16 22:23:39 +02:00
|
|
|
|
2017-05-31 02:58:54 +02:00
|
|
|
bool GetCoin(const COutPoint &outpoint, Coin &coin) const override;
|
|
|
|
bool HaveCoin(const COutPoint &outpoint) const override;
|
2017-04-25 20:29:39 +02:00
|
|
|
uint256 GetBestBlock() const override;
|
2017-04-19 18:34:30 +02:00
|
|
|
std::vector<uint256> GetHeadBlocks() const override;
|
2019-12-06 00:41:22 +01:00
|
|
|
bool BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock, bool sync) override;
|
2017-04-25 20:29:39 +02:00
|
|
|
CCoinsViewCursor *Cursor() const override;
|
2017-05-13 00:19:19 +02:00
|
|
|
size_t EstimateSize() const override;
|
2016-03-28 18:18:30 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/** Specialization of CCoinsViewCursor to iterate over a CCoinsViewDB */
|
|
|
|
class CCoinsViewDBCursor: public CCoinsViewCursor
|
|
|
|
{
|
|
|
|
public:
|
2019-12-06 00:41:22 +01:00
|
|
|
~CCoinsViewDBCursor() noexcept override {}
|
2016-03-28 18:18:30 +02:00
|
|
|
|
2017-06-20 21:58:56 +02:00
|
|
|
bool GetKey(COutPoint &key) const override;
|
|
|
|
bool GetValue(Coin &coin) const override;
|
2016-03-28 18:18:30 +02:00
|
|
|
|
2017-06-20 21:58:56 +02:00
|
|
|
bool Valid() const override;
|
|
|
|
void Next() override;
|
2016-03-28 18:18:30 +02:00
|
|
|
|
|
|
|
private:
|
2019-12-06 00:41:22 +01:00
|
|
|
friend CCoinsViewDB;
|
|
|
|
explicit CCoinsViewDBCursor(const uint256 &hashBlockIn, const CCoinsViewDB* view);
|
|
|
|
const CCoinsViewDB* owner;
|
|
|
|
mutable sqlite::database_binder query;
|
|
|
|
mutable sqlite::row_iterator iter;
|
2012-10-16 22:23:39 +02:00
|
|
|
};
|
|
|
|
|
2013-01-28 21:05:26 +01:00
|
|
|
/** Access to the block database (blocks/index/) */
|
2019-12-06 00:41:22 +01:00
|
|
|
class CBlockTreeDB
|
2012-10-16 22:23:39 +02:00
|
|
|
{
|
2019-12-06 00:41:22 +01:00
|
|
|
sqlite::database db;
|
|
|
|
|
2012-10-16 22:23:39 +02:00
|
|
|
public:
|
2017-08-01 12:22:41 +02:00
|
|
|
explicit CBlockTreeDB(size_t nCacheSize, bool fMemory = false, bool fWipe = false);
|
2017-09-16 12:06:05 +02:00
|
|
|
|
2019-12-06 00:41:22 +01:00
|
|
|
bool BatchWrite(const std::vector<std::pair<int, const CBlockFileInfo*> >& fileInfo,
|
|
|
|
int nLastFile, const std::vector<const CBlockIndex*>& blockInfo, bool sync);
|
2017-08-24 03:58:28 +02:00
|
|
|
bool ReadBlockFileInfo(int nFile, CBlockFileInfo &info);
|
2012-10-16 22:23:39 +02:00
|
|
|
bool ReadLastBlockFile(int &nFile);
|
2017-08-24 03:58:28 +02:00
|
|
|
bool WriteReindexing(bool fReindexing);
|
2018-07-27 08:22:42 +02:00
|
|
|
void ReadReindexing(bool &fReindexing);
|
2018-08-06 21:40:20 +02:00
|
|
|
bool ReadTxIndex(const uint256 &txid, CDiskTxPos &pos);
|
2019-12-06 00:41:22 +01:00
|
|
|
bool WriteTxIndex(const std::vector<std::pair<uint256, CDiskTxPos>> &list);
|
2013-01-11 01:47:57 +01:00
|
|
|
bool WriteFlag(const std::string &name, bool fValue);
|
|
|
|
bool ReadFlag(const std::string &name, bool &fValue);
|
2016-11-07 23:31:55 +01:00
|
|
|
bool LoadBlockIndexGuts(const Consensus::Params& consensusParams, std::function<CBlockIndex*(const uint256&)> insertBlockIndex);
|
2012-10-16 22:23:39 +02:00
|
|
|
};
|
|
|
|
|
2014-11-03 16:16:40 +01:00
|
|
|
#endif // BITCOIN_TXDB_H
|