// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-present The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_TXDB_H #define BITCOIN_TXDB_H #include #include #include #include #include #include #include #include #include #include #include #include #include class COutPoint; class uint256; //! User-controlled performance and debug options. struct CoinsViewOptions { //! Maximum database write batch size in bytes. uint64_t batch_write_bytes{DEFAULT_DB_CACHE_BATCH}; //! If non-zero, randomly exit when the database is flushed with (1/ratio) probability. int simulate_crash_ratio{0}; }; /** CCoinsView backed by the coin database (chainstate/) */ class CCoinsViewDB final : public CCoinsView { protected: DBParams m_db_params; CoinsViewOptions m_options; //! Prevents CompactFull() from using m_db while ResizeCache() replaces it. Mutex m_db_mutex; std::unique_ptr m_db; std::shared_future m_compaction; public: explicit CCoinsViewDB(DBParams db_params, CoinsViewOptions options); ~CCoinsViewDB() override; std::optional GetCoin(const COutPoint& outpoint) const override; std::optional PeekCoin(const COutPoint& outpoint) const override; bool HaveCoin(const COutPoint& outpoint) const override; uint256 GetBestBlock() const override; std::vector GetHeadBlocks() const override; void BatchWrite(CoinsViewCacheCursor& cursor, const uint256& block_hash) override; std::unique_ptr Cursor() const override; //! Whether an unsupported database format is used. bool NeedsUpgrade(); size_t EstimateSize() const override; //! Dynamically alter the underlying leveldb cache size. void ResizeCache(size_t new_cache_size) EXCLUSIVE_LOCKS_REQUIRED(cs_main, !m_db_mutex); //! Perform a full compaction of the underlying LevelDB on a one-shot background thread. std::shared_future CompactFullAsync() EXCLUSIVE_LOCKS_REQUIRED(cs_main, !m_db_mutex); //! Return an underlying LevelDB property value, if available. std::optional GetDBProperty(const std::string& property); }; #endif // BITCOIN_TXDB_H