Bitcoin Core 29.99.0
P2P Digital Currency
txgraph.h
Go to the documentation of this file.
1// Copyright (c) The Bitcoin Core developers
2// Distributed under the MIT software license, see the accompanying
3// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
5#include <compare>
6#include <stdint.h>
7#include <memory>
8#include <vector>
9
10#include <util/feefrac.h>
11
12#ifndef BITCOIN_TXGRAPH_H
13#define BITCOIN_TXGRAPH_H
14
15static constexpr unsigned MAX_CLUSTER_COUNT_LIMIT{64};
16
45{
46public:
48 using GraphIndex = uint32_t;
49
59 class Ref;
60
62 virtual ~TxGraph() = default;
68 [[nodiscard]] virtual Ref AddTransaction(const FeePerWeight& feerate) noexcept = 0;
83 virtual void RemoveTransaction(const Ref& arg) noexcept = 0;
88 virtual void AddDependency(const Ref& parent, const Ref& child) noexcept = 0;
92 virtual void SetTransactionFee(const Ref& arg, int64_t fee) noexcept = 0;
93
97 virtual void DoWork() noexcept = 0;
98
103 virtual void StartStaging() noexcept = 0;
105 virtual void AbortStaging() noexcept = 0;
107 virtual void CommitStaging() noexcept = 0;
109 virtual bool HaveStaging() const noexcept = 0;
110
117 virtual bool IsOversized(bool main_only = false) noexcept = 0;
121 virtual bool Exists(const Ref& arg, bool main_only = false) noexcept = 0;
125 virtual FeePerWeight GetIndividualFeerate(const Ref& arg) noexcept = 0;
129 virtual FeePerWeight GetMainChunkFeerate(const Ref& arg) noexcept = 0;
134 virtual std::vector<Ref*> GetCluster(const Ref& arg, bool main_only = false) noexcept = 0;
139 virtual std::vector<Ref*> GetAncestors(const Ref& arg, bool main_only = false) noexcept = 0;
144 virtual std::vector<Ref*> GetDescendants(const Ref& arg, bool main_only = false) noexcept = 0;
148 virtual std::vector<Ref*> GetAncestorsUnion(std::span<const Ref* const> args, bool main_only = false) noexcept = 0;
152 virtual std::vector<Ref*> GetDescendantsUnion(std::span<const Ref* const> args, bool main_only = false) noexcept = 0;
156 virtual GraphIndex GetTransactionCount(bool main_only = false) noexcept = 0;
159 virtual std::strong_ordering CompareMainOrder(const Ref& a, const Ref& b) noexcept = 0;
164 virtual GraphIndex CountDistinctClusters(std::span<const Ref* const>, bool main_only = false) noexcept = 0;
165
167 virtual void SanityCheck() const = 0;
168
169protected:
170 // Allow TxGraph::Ref to call UpdateRef and UnlinkRef.
171 friend class TxGraph::Ref;
173 virtual void UpdateRef(GraphIndex index, Ref& new_location) noexcept = 0;
175 virtual void UnlinkRef(GraphIndex index) noexcept = 0;
176 // Allow TxGraph implementations (inheriting from it) to access Ref internals.
177 static TxGraph*& GetRefGraph(Ref& arg) noexcept { return arg.m_graph; }
178 static TxGraph* GetRefGraph(const Ref& arg) noexcept { return arg.m_graph; }
179 static GraphIndex& GetRefIndex(Ref& arg) noexcept { return arg.m_index; }
180 static GraphIndex GetRefIndex(const Ref& arg) noexcept { return arg.m_index; }
181
182public:
183 class Ref
184 {
185 // Allow TxGraph's GetRefGraph and GetRefIndex to access internals.
186 friend class TxGraph;
188 TxGraph* m_graph = nullptr;
191 public:
194 Ref() noexcept = default;
197 virtual ~Ref();
198 // Support moving a Ref.
199 Ref& operator=(Ref&& other) noexcept;
200 Ref(Ref&& other) noexcept;
201 // Do not permit copy constructing or copy assignment. A TxGraph entry can have at most one
202 // Ref pointing to it.
203 Ref& operator=(const Ref&) = delete;
204 Ref(const Ref&) = delete;
205 };
206};
207
210std::unique_ptr<TxGraph> MakeTxGraph(unsigned max_cluster_count) noexcept;
211
212#endif // BITCOIN_TXGRAPH_H
ArgsManager & args
Definition: bitcoind.cpp:277
TxGraph * m_graph
Which Graph the Entry lives in.
Definition: txgraph.h:188
GraphIndex m_index
Index into the Graph's m_entries.
Definition: txgraph.h:190
Ref() noexcept=default
Construct an empty Ref.
Data structure to encapsulate fees, sizes, and dependencies for a set of transactions.
Definition: txgraph.h:45
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
Definition: txgraph.h:180
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
Definition: txgraph.h:179
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
Definition: txgraph.h:178
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
Definition: txgraph.h:177
uint32_t GraphIndex
Internal identifier for a transaction within a TxGraph.
Definition: txgraph.h:48
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.
uint64_t fee
Tagged wrapper around FeeFrac to avoid unit confusion.
Definition: feefrac.h:162
std::unique_ptr< TxGraph > MakeTxGraph(unsigned max_cluster_count) noexcept
Construct a new TxGraph with the specified limit on transactions within a cluster.
Definition: txgraph.cpp:2117
static constexpr unsigned MAX_CLUSTER_COUNT_LIMIT
Definition: txgraph.h:15