Fabcoin Core  0.16.2
P2P Digital Currency
Public Member Functions | List of all members
CCoinsView Class Reference

Abstract view on the open txout dataset. More...

#include <coins.h>

Inheritance diagram for CCoinsView:
[legend]

Public Member Functions

virtual bool GetCoin (const COutPoint &outpoint, Coin &coin) const
 Retrieve the Coin (unspent transaction output) for a given outpoint. More...
 
virtual bool HaveCoin (const COutPoint &outpoint) const
 Just check whether a given outpoint is unspent. More...
 
virtual uint256 GetBestBlock () const
 Retrieve the block hash whose state this CCoinsView currently represents. More...
 
virtual std::vector< uint256GetHeadBlocks () const
 Retrieve the range of blocks that may have been only partially written. More...
 
virtual bool BatchWrite (CCoinsMap &mapCoins, const uint256 &hashBlock)
 Do a bulk modification (multiple Coin changes + BestBlock change). More...
 
virtual CCoinsViewCursorCursor () const
 Get a cursor to iterate over the whole state. More...
 
virtual ~CCoinsView ()
 As we use CCoinsViews polymorphically, have a virtual destructor. More...
 
virtual size_t EstimateSize () const
 Estimate database size (0 if not implemented) More...
 

Detailed Description

Abstract view on the open txout dataset.

Definition at line 145 of file coins.h.

Constructor & Destructor Documentation

virtual CCoinsView::~CCoinsView ( )
inlinevirtual

As we use CCoinsViews polymorphically, have a virtual destructor.

Definition at line 174 of file coins.h.

Member Function Documentation

bool CCoinsView::BatchWrite ( CCoinsMap mapCoins,
const uint256 hashBlock 
)
virtual

Do a bulk modification (multiple Coin changes + BestBlock change).

The passed mapCoins can be modified.

Reimplemented in CCoinsViewCache, CCoinsViewBacked, and CCoinsViewDB.

Definition at line 16 of file coins.cpp.

Here is the caller graph for this function:

CCoinsViewCursor * CCoinsView::Cursor ( ) const
virtual

Get a cursor to iterate over the whole state.

Reimplemented in CCoinsViewCache, CCoinsViewBacked, and CCoinsViewDB.

Definition at line 17 of file coins.cpp.

Here is the caller graph for this function:

virtual size_t CCoinsView::EstimateSize ( ) const
inlinevirtual

Estimate database size (0 if not implemented)

Reimplemented in CCoinsViewBacked, and CCoinsViewDB.

Definition at line 177 of file coins.h.

Here is the caller graph for this function:

uint256 CCoinsView::GetBestBlock ( ) const
virtual

Retrieve the block hash whose state this CCoinsView currently represents.

Reimplemented in CCoinsViewCache, CCoinsViewBacked, and CCoinsViewDB.

Definition at line 14 of file coins.cpp.

Here is the caller graph for this function:

bool CCoinsView::GetCoin ( const COutPoint outpoint,
Coin coin 
) const
virtual

Retrieve the Coin (unspent transaction output) for a given outpoint.

Returns true only when an unspent coin was found, which is returned in coin. When false is returned, coin's value is unspecified.

Reimplemented in CCoinsViewMemPool, CCoinsViewCache, CCoinsViewBacked, CCoinsViewErrorCatcher, and CCoinsViewDB.

Definition at line 13 of file coins.cpp.

Here is the caller graph for this function:

std::vector< uint256 > CCoinsView::GetHeadBlocks ( ) const
virtual

Retrieve the range of blocks that may have been only partially written.

If the database is in a consistent state, the result is the empty vector. Otherwise, a two-element vector is returned consisting of the new and the old block hash, in that order.

Reimplemented in CCoinsViewBacked, and CCoinsViewDB.

Definition at line 15 of file coins.cpp.

Here is the caller graph for this function:

bool CCoinsView::HaveCoin ( const COutPoint outpoint) const
virtual

Just check whether a given outpoint is unspent.

Reimplemented in CCoinsViewMemPool, CCoinsViewCache, CCoinsViewBacked, and CCoinsViewDB.

Definition at line 19 of file coins.cpp.

Here is the call graph for this function:

Here is the caller graph for this function:


The documentation for this class was generated from the following files: