12#ifndef BITCOIN_TXGRAPH_H
13#define BITCOIN_TXGRAPH_H
121 virtual
bool Exists(const
Ref& arg,
bool main_only = false) noexcept = 0;
199 Ref& operator=(
Ref&& other) noexcept;
200 Ref(
Ref&& other) noexcept;
TxGraph * m_graph
Which Graph the Entry lives in.
GraphIndex m_index
Index into the Graph's m_entries.
Ref() noexcept=default
Construct an empty Ref.
Data structure to encapsulate fees, sizes, and dependencies for a set of transactions.
virtual void UpdateRef(GraphIndex index, Ref &new_location) noexcept=0
Inform the TxGraph implementation that a TxGraph::Ref has moved.
static GraphIndex GetRefIndex(const Ref &arg) noexcept
virtual Ref AddTransaction(const FeePerWeight &feerate) noexcept=0
Construct a new transaction with the specified feerate, and return a Ref to it.
virtual std::vector< Ref * > GetDescendantsUnion(std::span< const Ref *const > args, bool main_only=false) noexcept=0
Like GetDescendants, but return the Refs for all transactions in the union of the provided arguments'...
virtual void SetTransactionFee(const Ref &arg, int64_t fee) noexcept=0
Modify the fee of the specified transaction, in both the main graph and the staging graph if it exist...
static GraphIndex & GetRefIndex(Ref &arg) noexcept
virtual std::vector< Ref * > GetAncestors(const Ref &arg, bool main_only=false) noexcept=0
Get pointers to all ancestors of the specified transaction (including the transaction itself),...
virtual void AddDependency(const Ref &parent, const Ref &child) noexcept=0
Add a dependency between two specified transactions.
virtual std::vector< Ref * > GetCluster(const Ref &arg, bool main_only=false) noexcept=0
Get pointers to all transactions in the cluster which arg is in.
virtual GraphIndex CountDistinctClusters(std::span< const Ref *const >, bool main_only=false) noexcept=0
Count the number of distinct clusters that the specified transactions belong to.
virtual void StartStaging() noexcept=0
Create a staging graph (which cannot exist already).
virtual std::vector< Ref * > GetAncestorsUnion(std::span< const Ref *const > args, bool main_only=false) noexcept=0
Like GetAncestors, but return the Refs for all transactions in the union of the provided arguments' a...
virtual void DoWork() noexcept=0
TxGraph is internally lazy, and will not compute many things until they are needed.
virtual bool Exists(const Ref &arg, bool main_only=false) noexcept=0
Determine whether arg exists in the graph (i.e., was not removed).
virtual GraphIndex GetTransactionCount(bool main_only=false) noexcept=0
Get the total number of transactions in the graph.
virtual void CommitStaging() noexcept=0
Replace the main graph with the staging graph (which must exist).
virtual bool HaveStaging() const noexcept=0
Check whether a staging graph exists.
static TxGraph * GetRefGraph(const Ref &arg) noexcept
virtual FeePerWeight GetMainChunkFeerate(const Ref &arg) noexcept=0
Get the feerate of the chunk which transaction arg is in, in the main graph.
virtual std::vector< Ref * > GetDescendants(const Ref &arg, bool main_only=false) noexcept=0
Get pointers to all descendants of the specified transaction (including the transaction itself),...
virtual void SanityCheck() const =0
Perform an internal consistency check on this object.
virtual bool IsOversized(bool main_only=false) noexcept=0
Determine whether the graph is oversized (contains a connected component of more than the configured ...
virtual void RemoveTransaction(const Ref &arg) noexcept=0
Remove the specified transaction.
virtual FeePerWeight GetIndividualFeerate(const Ref &arg) noexcept=0
Get the individual transaction feerate of transaction arg.
virtual ~TxGraph()=default
Virtual destructor, so inheriting is safe.
static TxGraph *& GetRefGraph(Ref &arg) noexcept
uint32_t GraphIndex
Internal identifier for a transaction within a TxGraph.
virtual std::strong_ordering CompareMainOrder(const Ref &a, const Ref &b) noexcept=0
Compare two transactions according to their order in the main graph.
virtual void AbortStaging() noexcept=0
Discard the existing active staging graph (which must exist).
virtual void UnlinkRef(GraphIndex index) noexcept=0
Inform the TxGraph implementation that a TxGraph::Ref was destroyed.
Tagged wrapper around FeeFrac to avoid unit confusion.
std::unique_ptr< TxGraph > MakeTxGraph(unsigned max_cluster_count) noexcept
Construct a new TxGraph with the specified limit on transactions within a cluster.
static constexpr unsigned MAX_CLUSTER_COUNT_LIMIT