25#include <unordered_map>
63 template<
typename Stream>
71 template<
typename Stream>
130 if (!pair.second.m_flags) {
131 Assume(!pair.second.m_prev && !pair.second.m_next);
132 pair.second.m_prev = sentinel.second.m_prev;
133 pair.second.m_next = &sentinel;
134 sentinel.second.m_prev = &pair;
135 pair.second.m_prev->second.m_next = &pair;
137 Assume(pair.second.m_prev && pair.second.m_next);
138 pair.second.m_flags |=
flags;
203 Assume(&pair.second ==
this);
222 std::equal_to<COutPoint>,
272 bool will_erase) noexcept
281 const auto next_entry{current.second.Next()};
286 if (current.second.coin.IsSpent()) {
287 assert(current.second.coin.DynamicMemoryUsage() == 0);
288 m_map.erase(current.first);
290 current.second.SetClean();
339 virtual std::unique_ptr<CCoinsViewCursor>
Cursor()
const = 0;
366 std::unique_ptr<CCoinsViewCursor>
Cursor()
const override {
return {}; }
418 void Reset() noexcept;
439 throw std::logic_error(
"CCoinsViewCache cursor iteration not supported.");
490 void Flush(
bool reallocate_cache =
true);
#define Assert(val)
Identity function.
#define Assume(val)
Assume is the identity function.
CCoinsView backed by another CCoinsView.
bool HaveCoin(const COutPoint &outpoint) const override
Just check whether a given outpoint is unspent.
size_t EstimateSize() const override
Estimate database size.
uint256 GetBestBlock() const override
Retrieve the block hash whose state this CCoinsView currently represents.
std::optional< Coin > PeekCoin(const COutPoint &outpoint) const override
Retrieve the Coin (unspent transaction output) for a given outpoint, without caching results.
CCoinsViewBacked(CCoinsView *in_view)
std::optional< Coin > GetCoin(const COutPoint &outpoint) const override
Retrieve the Coin (unspent transaction output) for a given outpoint.
std::unique_ptr< CCoinsViewCursor > Cursor() const override
Get a cursor to iterate over the whole state. Implementations may return nullptr.
void BatchWrite(CoinsViewCacheCursor &cursor, const uint256 &block_hash) override
Do a bulk modification (multiple Coin changes + BestBlock change).
void SetBackend(CCoinsView &in_view)
std::vector< uint256 > GetHeadBlocks() const override
Retrieve the range of blocks that may have been only partially written.
CCoinsViewCache & m_cache
ResetGuard(const ResetGuard &)=delete
ResetGuard & operator=(ResetGuard &&)=delete
ResetGuard(ResetGuard &&)=delete
ResetGuard & operator=(const ResetGuard &)=delete
ResetGuard(CCoinsViewCache &cache LIFETIMEBOUND) noexcept
CCoinsView that adds a memory cache for transactions to another CCoinsView.
void Sync()
Push the modifications applied to this cache to its base while retaining the contents of this cache (...
const bool m_deterministic
std::unique_ptr< CCoinsViewCursor > Cursor() const override
Get a cursor to iterate over the whole state. Implementations may return nullptr.
size_t GetDirtyCount() const noexcept
Number of dirty cache entries (transaction outputs)
CCoinsMapMemoryResource m_cache_coins_memory_resource
bool SpendCoin(const COutPoint &outpoint, Coin *moveto=nullptr)
Spend a coin.
uint256 m_block_hash
Make mutable so that we can "fill the cache" even from Get-methods declared as "const".
ResetGuard CreateResetGuard() noexcept
Create a scoped guard that will call Reset() on this cache when it goes out of scope.
void Uncache(const COutPoint &outpoint)
Removes the UTXO with the given outpoint from the cache, if it is not modified.
bool HaveInputs(const CTransaction &tx) const
Check whether all prevouts of the transaction are present in the UTXO set represented by this view.
void AddCoin(const COutPoint &outpoint, Coin &&coin, bool possible_overwrite)
Add a coin.
virtual std::optional< Coin > FetchCoinFromBase(const COutPoint &outpoint) const
CCoinsViewCache(CCoinsView *in_base, bool deterministic=false)
void Flush(bool reallocate_cache=true)
Push the modifications applied to this cache to its base and wipe local state.
void SetBestBlock(const uint256 &block_hash)
void Reset() noexcept
Discard all modifications made to this cache without flushing to the base view.
unsigned int GetCacheSize() const
Size of the cache (in number of transaction outputs)
uint256 GetBestBlock() const override
Retrieve the block hash whose state this CCoinsView currently represents.
CCoinsMap::iterator FetchCoin(const COutPoint &outpoint) const
bool HaveCoinInCache(const COutPoint &outpoint) const
Check if we have the given utxo already loaded in this cache.
CoinsCachePair m_sentinel
size_t DynamicMemoryUsage() const
Calculate the size of the cache (in bytes)
void BatchWrite(CoinsViewCacheCursor &cursor, const uint256 &block_hash) override
Do a bulk modification (multiple Coin changes + BestBlock change).
std::optional< Coin > PeekCoin(const COutPoint &outpoint) const override
Retrieve the Coin (unspent transaction output) for a given outpoint, without caching results.
void EmplaceCoinInternalDANGER(COutPoint &&outpoint, Coin &&coin)
Emplace a coin into cacheCoins without performing any checks, marking the emplaced coin as dirty.
bool HaveCoin(const COutPoint &outpoint) const override
Just check whether a given outpoint is unspent.
void SanityCheck() const
Run an internal sanity check on the cache data structure. */.
std::optional< Coin > GetCoin(const COutPoint &outpoint) const override
Retrieve the Coin (unspent transaction output) for a given outpoint.
const Coin & AccessCoin(const COutPoint &output) const
Return a reference to Coin in the cache, or coinEmpty if not found.
void ReallocateCache()
Force a reallocation of the cache map.
Cursor for iterating over CoinsView state.
const uint256 & GetBestBlock() const
Get best block at the time this cursor was created.
virtual bool Valid() const =0
CCoinsViewCursor(const uint256 &in_block_hash)
virtual ~CCoinsViewCursor()=default
virtual bool GetKey(COutPoint &key) const =0
virtual bool GetValue(Coin &coin) const =0
This is a minimally invasive approach to shutdown on LevelDB read errors from the chainstate,...
void AddReadErrCallback(std::function< void()> f)
std::optional< Coin > GetCoin(const COutPoint &outpoint) const override
Retrieve the Coin (unspent transaction output) for a given outpoint.
std::vector< std::function< void()> > m_err_callbacks
A list of callbacks to execute upon leveldb read error.
bool HaveCoin(const COutPoint &outpoint) const override
Just check whether a given outpoint is unspent.
CCoinsViewErrorCatcher(CCoinsView *view)
std::optional< Coin > PeekCoin(const COutPoint &outpoint) const override
Retrieve the Coin (unspent transaction output) for a given outpoint, without caching results.
Pure abstract view on the open txout dataset.
virtual size_t EstimateSize() const =0
Estimate database size.
virtual std::vector< uint256 > GetHeadBlocks() const =0
Retrieve the range of blocks that may have been only partially written.
virtual std::optional< Coin > PeekCoin(const COutPoint &outpoint) const =0
Retrieve the Coin (unspent transaction output) for a given outpoint, without caching results.
virtual std::optional< Coin > GetCoin(const COutPoint &outpoint) const =0
Retrieve the Coin (unspent transaction output) for a given outpoint.
virtual ~CCoinsView()=default
As we use CCoinsViews polymorphically, have a virtual destructor.
virtual void BatchWrite(CoinsViewCacheCursor &cursor, const uint256 &block_hash)=0
Do a bulk modification (multiple Coin changes + BestBlock change).
virtual std::unique_ptr< CCoinsViewCursor > Cursor() const =0
Get a cursor to iterate over the whole state. Implementations may return nullptr.
virtual bool HaveCoin(const COutPoint &outpoint) const =0
Just check whether a given outpoint is unspent.
virtual uint256 GetBestBlock() const =0
Retrieve the block hash whose state this CCoinsView currently represents.
An outpoint - a combination of a transaction hash and an index n into its vout.
The basic transaction that is broadcasted on the network and contained in blocks.
An output of a transaction.
void Serialize(Stream &s) const
Coin(CTxOut &&outIn, int nHeightIn, bool fCoinBaseIn)
construct a Coin from a CTxOut and height/coinbase information.
CTxOut out
unspent transaction output
bool IsSpent() const
Either this coin never existed (see e.g.
Coin(const CTxOut &outIn, int nHeightIn, bool fCoinBaseIn)
bool fCoinBase
whether containing transaction was a coinbase
void Unserialize(Stream &s)
uint32_t nHeight
at which height this containing transaction was included in the active block chain
size_t DynamicMemoryUsage() const
CoinsViewEmpty & operator=(const CoinsViewEmpty &)=delete
size_t EstimateSize() const override
Estimate database size.
void BatchWrite(CoinsViewCacheCursor &cursor, const uint256 &) override
Do a bulk modification (multiple Coin changes + BestBlock change).
bool HaveCoin(const COutPoint &outpoint) const override
Just check whether a given outpoint is unspent.
uint256 GetBestBlock() const override
Retrieve the block hash whose state this CCoinsView currently represents.
std::unique_ptr< CCoinsViewCursor > Cursor() const override
Get a cursor to iterate over the whole state. Implementations may return nullptr.
std::optional< Coin > PeekCoin(const COutPoint &outpoint) const override
Retrieve the Coin (unspent transaction output) for a given outpoint, without caching results.
std::optional< Coin > GetCoin(const COutPoint &) const override
Retrieve the Coin (unspent transaction output) for a given outpoint.
CoinsViewEmpty(const CoinsViewEmpty &)=delete
static CoinsViewEmpty & Get()
std::vector< uint256 > GetHeadBlocks() const override
Retrieve the range of blocks that may have been only partially written.
CCoinsViewCache overlay that avoids populating/mutating parent cache layers on cache misses.
std::optional< Coin > FetchCoinFromBase(const COutPoint &outpoint) const override
Forwards all allocations/deallocations to the PoolResource.
void AddCoins(CCoinsViewCache &cache, const CTransaction &tx, int nHeight, bool check=false)
Utility function to add all of a transaction's outputs to a cache.
std::pair< const COutPoint, CCoinsCacheEntry > CoinsCachePair
std::unordered_map< COutPoint, CCoinsCacheEntry, SaltedOutpointHasher, std::equal_to< COutPoint >, PoolAllocator< CoinsCachePair, sizeof(CoinsCachePair)+sizeof(void *) *4 > > CCoinsMap
PoolAllocator's MAX_BLOCK_SIZE_BYTES parameter here uses sizeof the data, and adds the size of 4 poin...
const Coin & AccessByTxid(const CCoinsViewCache &cache, const Txid &txid)
Utility function to find any unspent output with a given txid.
CCoinsMap::allocator_type::ResourceType CCoinsMapMemoryResource
static size_t DynamicUsage(const int8_t &v)
Dynamic memory usage for built-in types is zero.
constexpr bool TrySub(T &i, const U j) noexcept
A Coin in one level of the coins database caching hierarchy.
CCoinsCacheEntry() noexcept=default
@ FRESH
FRESH means the parent cache does not have this coin or that it is a spent coin in the parent cache.
@ DIRTY
DIRTY means the CCoinsCacheEntry is potentially different from the version in the parent cache.
static void SetFresh(CoinsCachePair &pair, CoinsCachePair &sentinel) noexcept
static void AddFlags(uint8_t flags, CoinsCachePair &pair, CoinsCachePair &sentinel) noexcept
Adding a flag requires a reference to the sentinel of the flagged pair linked list.
bool IsFresh() const noexcept
static void SetDirty(CoinsCachePair &pair, CoinsCachePair &sentinel) noexcept
void SelfRef(CoinsCachePair &pair) noexcept
Only use this for initializing the linked list sentinel.
bool IsDirty() const noexcept
CoinsCachePair * m_prev
These are used to create a doubly linked list of flagged entries.
CoinsCachePair * Next() const noexcept
Only call Next when this entry is DIRTY, FRESH, or both.
CoinsCachePair * Prev() const noexcept
Only call Prev when this entry is DIRTY, FRESH, or both.
Cursor for iterating over the linked list of flagged entries in CCoinsViewCache.
CoinsCachePair & m_sentinel
CoinsCachePair * NextAndMaybeErase(CoinsCachePair ¤t) noexcept
Return the next entry after current, possibly erasing current.
size_t GetTotalCount() const noexcept
bool WillErase(CoinsCachePair ¤t) const noexcept
size_t GetDirtyCount() const noexcept
CoinsCachePair * Begin() const noexcept
CoinsViewCacheCursor(size_t &dirty_count LIFETIMEBOUND, CoinsCachePair &sentinel LIFETIMEBOUND, CCoinsMap &map LIFETIMEBOUND, bool will_erase) noexcept
If will_erase is not set, iterating through the cursor will erase spent coins from the map,...
CoinsCachePair * End() const noexcept