Bitcoin ABC 0.32.11
P2P Digital Currency
peermanager.h
Go to the documentation of this file.
1// Copyright (c) 2020 The Bitcoin 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#ifndef BITCOIN_AVALANCHE_PEERMANAGER_H
6#define BITCOIN_AVALANCHE_PEERMANAGER_H
7
8#include <avalanche/node.h>
9#include <avalanche/proof.h>
10#include <avalanche/proofpool.h>
13#include <coins.h>
14#include <common/bloom.h>
16#include <radix.h>
17#include <util/fs.h>
18#include <util/hasher.h>
19#include <util/time.h>
20
21#include <boost/multi_index/composite_key.hpp>
22#include <boost/multi_index/hashed_index.hpp>
23#include <boost/multi_index/mem_fun.hpp>
24#include <boost/multi_index/member.hpp>
25#include <boost/multi_index/ordered_index.hpp>
26#include <boost/multi_index_container.hpp>
27
28#include <atomic>
29#include <chrono>
30#include <cstdint>
31#include <memory>
32#include <vector>
33
35class CScheduler;
36
37namespace avalanche {
38
45static constexpr uint32_t AVALANCHE_MAX_IMMATURE_PROOFS = 4000;
46
47class Delegation;
48
49namespace {
50 struct TestPeerManager;
51}
52
53struct Slot {
54private:
55 uint64_t start;
56 uint32_t score;
58
59public:
60 Slot(uint64_t startIn, uint32_t scoreIn, PeerId peeridIn)
61 : start(startIn), score(scoreIn), peerid(peeridIn) {}
62
63 Slot withStart(uint64_t startIn) const {
64 return Slot(startIn, score, peerid);
65 }
66 Slot withScore(uint64_t scoreIn) const {
67 return Slot(start, scoreIn, peerid);
68 }
69 Slot withPeerId(PeerId peeridIn) const {
70 return Slot(start, score, peeridIn);
71 }
72
73 uint64_t getStart() const { return start; }
74 uint64_t getStop() const { return start + score; }
75 uint32_t getScore() const { return score; }
76 PeerId getPeerId() const { return peerid; }
77
78 bool contains(uint64_t slot) const {
79 return getStart() <= slot && slot < getStop();
80 }
81 bool precedes(uint64_t slot) const { return slot >= getStop(); }
82 bool follows(uint64_t slot) const { return getStart() > slot; }
83};
84
85struct Peer {
87 uint32_t index = -1;
88 uint32_t node_count = 0;
89
91 bool hasFinalized = false;
92
93 // The network stack uses timestamp in seconds, so we oblige.
94 std::chrono::seconds registration_time;
95 std::chrono::seconds nextPossibleConflictTime;
96
101 static constexpr auto DANGLING_TIMEOUT = 15min;
102
103 Peer(PeerId peerid_, ProofRef proof_,
104 std::chrono::seconds nextPossibleConflictTime_)
105 : peerid(peerid_), proof(std::move(proof_)),
106 registration_time(GetTime<std::chrono::seconds>()),
107 nextPossibleConflictTime(std::move(nextPossibleConflictTime_)) {}
108
109 const ProofId &getProofId() const { return proof->getId(); }
110 uint32_t getScore() const { return proof->getScore(); }
111};
112
115 result_type operator()(const Peer &p) const { return p.proof->getId(); }
116};
117
119 using result_type = uint32_t;
120 result_type operator()(const Peer &p) const { return p.getScore(); }
121};
122
124
128
129 PendingNode(ProofId proofid_, NodeId nodeid_)
130 : proofid(proofid_), nodeid(nodeid_){};
131};
132
133struct by_proofid;
134struct by_nodeid;
135struct by_score;
136
140 std::chrono::seconds lastUpdate;
142};
143
145 NONE = 0,
147 IMMATURE,
148 INVALID,
150 REJECTED,
152 DANGLING,
154};
155
156class ProofRegistrationState : public ValidationState<ProofRegistrationResult> {
157};
158
159namespace bmi = boost::multi_index;
160
162 std::vector<Slot> slots;
163 uint64_t slotCount = 0;
164 uint64_t fragmentation = 0;
165
170 using PeerSet = boost::multi_index_container<
171 Peer, bmi::indexed_by<
172 // index by peerid
173 bmi::hashed_unique<bmi::member<Peer, PeerId, &Peer::peerid>>,
174 // index by proof
175 bmi::hashed_unique<bmi::tag<by_proofid>, proof_index,
177 // ordered by score, decreasing order
178 bmi::ordered_non_unique<bmi::tag<by_score>, score_index,
179 std::greater<uint32_t>>>>;
180
183
188
191
192 using NodeSet = boost::multi_index_container<
193 Node, bmi::indexed_by<
194 // index by nodeid
195 bmi::hashed_unique<bmi::member<Node, NodeId, &Node::nodeid>>,
196 // sorted by peerid/nextRequestTime
197 bmi::ordered_non_unique<
198 bmi::tag<next_request_time>,
199 bmi::composite_key<
200 Node, bmi::member<Node, PeerId, &Node::peerid>,
201 bmi::member<Node, SteadyMilliseconds,
203
205
210 std::atomic<bool> needMoreNodes{false};
211
212 using PendingNodeSet = boost::multi_index_container<
214 bmi::indexed_by<
215 // index by proofid
216 bmi::hashed_non_unique<
217 bmi::tag<by_proofid>,
218 bmi::member<PendingNode, ProofId, &PendingNode::proofid>,
220 // index by nodeid
221 bmi::hashed_unique<
222 bmi::tag<by_nodeid>,
223 bmi::member<PendingNode, NodeId, &PendingNode::nodeid>>>>;
225
226 static constexpr int SELECT_PEER_MAX_RETRY = 3;
227 static constexpr int SELECT_NODE_MAX_RETRY = 3;
228
233
237 uint32_t totalPeersScore = 0;
239
241
243
244 const bool m_stakingPreConsensus{false};
245
247
248 struct by_lastUpdate;
249
250 using RemoteProofSet = boost::multi_index_container<
252 bmi::indexed_by<
253 // index by proofid/nodeid pair
254 bmi::hashed_unique<
255 bmi::composite_key<
257 bmi::member<RemoteProof, ProofId, &RemoteProof::proofid>,
258 bmi::member<RemoteProof, NodeId, &RemoteProof::nodeid>>,
259 bmi::composite_key_hash<SaltedProofIdHasher,
260 boost::hash<NodeId>>>,
261 // index by proofid
262 bmi::hashed_non_unique<
263 bmi::tag<by_proofid>,
264 bmi::member<RemoteProof, ProofId, &RemoteProof::proofid>,
266 // index by nodeid
267 bmi::hashed_non_unique<
268 bmi::tag<by_nodeid>,
269 bmi::member<RemoteProof, NodeId, &RemoteProof::nodeid>>,
270 bmi::ordered_non_unique<
271 bmi::tag<by_lastUpdate>,
272 bmi::composite_key<
274 bmi::member<RemoteProof, NodeId, &RemoteProof::nodeid>,
275 bmi::member<RemoteProof, std::chrono::seconds,
277
283
297
298 std::unordered_set<ProofId, SaltedProofIdHasher> manualFlakyProofids;
299
301
302public:
303 static constexpr size_t MAX_REMOTE_PROOFS{100};
304
305 PeerManager(const Amount &stakeUtxoDustThresholdIn,
306 ChainstateManager &chainmanIn, bool stakingPreConsensus = false,
307 const ProofRef &localProofIn = ProofRef())
308 : stakeUtxoDustThreshold(stakeUtxoDustThresholdIn),
309 chainman(chainmanIn), m_stakingPreConsensus(stakingPreConsensus),
310 localProof(localProofIn){};
311
315 bool addNode(NodeId nodeid, const ProofId &proofid);
316 bool removeNode(NodeId nodeid);
317 size_t getNodeCount() const { return nodes.size(); }
318 size_t getPendingNodeCount() const { return pendingNodes.size(); }
319
320 // Update when a node is to be polled next.
321 bool updateNextRequestTime(NodeId nodeid, SteadyMilliseconds timeout);
327 bool latchAvaproofsSent(NodeId nodeid);
328
329 // Randomly select a node to poll.
331
335 bool shouldRequestMoreNodes() { return needMoreNodes.exchange(false); }
336
337 template <typename Callable>
338 bool forNode(NodeId nodeid, Callable &&func) const {
339 auto it = nodes.find(nodeid);
340 return it != nodes.end() && func(*it);
341 }
342
343 template <typename Callable>
344 void forEachNode(const Peer &peer, Callable &&func) const {
345 auto &nview = nodes.get<next_request_time>();
346 auto range = nview.equal_range(peer.peerid);
347 for (auto it = range.first; it != range.second; ++it) {
348 func(*it);
349 }
350 }
351
361 const std::chrono::seconds &nextTime);
362
366 bool setFinalized(PeerId peerid);
367
375 enum class RegistrationMode {
376 DEFAULT,
377 FORCE_ACCEPT,
378 };
379
380 bool registerProof(const ProofRef &proof,
381 ProofRegistrationState &registrationState,
383 bool registerProof(const ProofRef &proof,
386 return registerProof(proof, dummy, mode);
387 }
388
398 enum class RejectionMode {
399 DEFAULT,
400 INVALIDATE,
401 };
402
403 bool rejectProof(const ProofId &proofid,
405
410 bool exists(const ProofId &proofid) const {
411 return getProof(proofid) != nullptr;
412 }
413
415 std::unordered_set<ProofRef, SaltedProofHasher> &registeredProofs);
416
417 template <typename Callable>
418 bool forPeer(const ProofId &proofid, Callable &&func) const {
419 auto &pview = peers.get<by_proofid>();
420 auto it = pview.find(proofid);
421 return it != pview.end() && func(*it);
422 }
423
424 template <typename Callable> void forEachPeer(Callable &&func) const {
425 for (const auto &p : peers) {
426 func(p);
427 }
428 }
429
433 std::unordered_set<ProofRef, SaltedProofHasher> updatedBlockTip();
434
438 void addUnbroadcastProof(const ProofId &proofid);
439 void removeUnbroadcastProof(const ProofId &proofid);
441
442 /*
443 * Quorum management
444 */
445 uint32_t getTotalPeersScore() const { return totalPeersScore; }
446 uint32_t getConnectedPeersScore() const { return connectedPeersScore; }
447
448 bool saveRemoteProof(const ProofId &proofid, const NodeId nodeid,
449 const bool present);
450 std::vector<RemoteProof> getRemoteProofs(const NodeId nodeid) const;
451 bool hasRemoteProofStatus(const ProofId &proofid) const;
452 bool isRemotelyPresentProof(const ProofId &proofid) const;
453
454 bool setFlaky(const ProofId &proofid);
455 bool unsetFlaky(const ProofId &proofid);
456 template <typename Callable> void forEachFlakyProof(Callable &&func) const {
457 for (const auto &p : manualFlakyProofids) {
458 func(p);
459 }
460 }
461
463 void cleanupStakeContenders(const int requestedMinHeight);
464 void addStakeContender(const ProofRef &proof);
465 int getStakeContenderStatus(const StakeContenderId &contenderId,
466 BlockHash &prevblockhashout) const;
467 void acceptStakeContender(const StakeContenderId &contenderId);
469 const StakeContenderId &contenderId, BlockHash &prevblockhash,
470 std::vector<std::pair<ProofId, CScript>> &newWinners);
471 void rejectStakeContender(const StakeContenderId &contenderId);
472 void promoteStakeContendersToBlock(const CBlockIndex *pindex);
474 const CBlockIndex *prevblock,
475 const std::vector<std::pair<ProofId, CScript>> winners,
476 size_t maxPollable, std::vector<StakeContenderId> &pollableContenders);
477 bool setStakeContenderWinners(const CBlockIndex *pindex,
478 const std::vector<CScript> &payoutScripts);
479
480 /****************************************************
481 * Functions which are public for testing purposes. *
482 ****************************************************/
483
487 bool removePeer(const PeerId peerid);
488
492 PeerId selectPeer() const;
493
498 uint64_t compact();
499
503 bool verify() const;
504
505 // Accessors.
506 uint64_t getSlotCount() const { return slotCount; }
507 uint64_t getFragmentation() const { return fragmentation; }
508
509 const ProofPool &getValidProofPool() const { return validProofPool; }
512 }
514
515 ProofRef getProof(const ProofId &proofid) const;
516 bool isBoundToPeer(const ProofId &proofid) const;
517 bool isImmature(const ProofId &proofid) const;
518 bool isInConflictingPool(const ProofId &proofid) const;
519 bool isDangling(const ProofId &proofid) const;
520
521 void setInvalid(const ProofId &proofid);
522 bool isInvalid(const ProofId &proofid) const;
523 void clearAllInvalid();
524
526 return shareableProofs;
527 }
528
531 }
532
538 const CBlockIndex *pprev,
539 std::vector<std::pair<ProofId, CScript>> &winners);
540
541 bool dumpPeersToFile(const fs::path &dumpPath) const;
543 const fs::path &dumpPath,
544 std::unordered_set<ProofRef, SaltedProofHasher> &registeredProofs);
545
546private:
547 template <typename ProofContainer>
548 void moveToConflictingPool(const ProofContainer &proofs);
549
550 bool addOrUpdateNode(const PeerSet::iterator &it, NodeId nodeid);
551 bool addNodeToPeer(const PeerSet::iterator &it);
552 bool removeNodeFromPeer(const PeerSet::iterator &it, uint32_t count = 1);
553
561 std::optional<bool> getRemotePresenceStatus(const ProofId &proofid) const;
562
563 bool isFlaky(const ProofId &proofid) const;
564
567 }
568
569 friend struct ::avalanche::TestPeerManager;
570};
571
575PeerId selectPeerImpl(const std::vector<Slot> &slots, const uint64_t slot,
576 const uint64_t max);
577
578} // namespace avalanche
579
580#endif // BITCOIN_AVALANCHE_PEERMANAGER_H
uint32_t PeerId
Definition: node.h:15
The block chain is a tree shaped structure starting with the genesis block at the root,...
Definition: blockindex.h:25
RollingBloomFilter is a probabilistic "keep track of most recently inserted" set.
Definition: bloom.h:115
Simple class for background tasks that should be run periodically or once "after a while".
Definition: scheduler.h:41
Provides an interface for creating and interacting with one or two chainstates: an IBD chainstate gen...
Definition: validation.h:1185
Template for capturing information about block/transaction validation.
Definition: validation.h:89
bool selectStakingRewardWinner(const CBlockIndex *pprev, std::vector< std::pair< ProofId, CScript > > &winners)
Deterministically select a list of payout scripts based on the proof set and the previous block hash.
uint32_t connectedPeersScore
Definition: peermanager.h:238
boost::multi_index_container< PendingNode, bmi::indexed_by< bmi::hashed_non_unique< bmi::tag< by_proofid >, bmi::member< PendingNode, ProofId, &PendingNode::proofid >, SaltedProofIdHasher >, bmi::hashed_unique< bmi::tag< by_nodeid >, bmi::member< PendingNode, NodeId, &PendingNode::nodeid > > > > PendingNodeSet
Definition: peermanager.h:223
std::vector< RemoteProof > getRemoteProofs(const NodeId nodeid) const
bool removeNode(NodeId nodeid)
bool setFinalized(PeerId peerid)
Latch on that this peer has a finalized proof.
bool dumpPeersToFile(const fs::path &dumpPath) const
RemoteProofSet remoteProofs
Remember which node sent which proof so we have an image of the proof set of our peers.
Definition: peermanager.h:282
uint64_t getFragmentation() const
Definition: peermanager.h:507
uint32_t getConnectedPeersScore() const
Definition: peermanager.h:446
bool isDangling(const ProofId &proofid) const
bool updateNextRequestTime(NodeId nodeid, SteadyMilliseconds timeout)
bool unsetFlaky(const ProofId &proofid)
std::optional< bool > getRemotePresenceStatus(const ProofId &proofid) const
Get the presence remote status of a proof.
bool addNodeToPeer(const PeerSet::iterator &it)
Definition: peermanager.cpp:89
bool shouldRequestMoreNodes()
Returns true if we encountered a lack of node since the last call.
Definition: peermanager.h:335
bool exists(const ProofId &proofid) const
Return true if the (valid) proof exists, but only for non-dangling proofs.
Definition: peermanager.h:410
size_t getNodeCount() const
Definition: peermanager.h:317
PendingNodeSet pendingNodes
Definition: peermanager.h:224
const ProofPool & getValidProofPool() const
Definition: peermanager.h:509
bool verify() const
Perform consistency check on internal data structures.
bool forNode(NodeId nodeid, Callable &&func) const
Definition: peermanager.h:338
bool hasRemoteProofStatus(const ProofId &proofid) const
bool forPeer(const ProofId &proofid, Callable &&func) const
Definition: peermanager.h:418
boost::multi_index_container< Node, bmi::indexed_by< bmi::hashed_unique< bmi::member< Node, NodeId, &Node::nodeid > >, bmi::ordered_non_unique< bmi::tag< next_request_time >, bmi::composite_key< Node, bmi::member< Node, PeerId, &Node::peerid >, bmi::member< Node, SteadyMilliseconds, &Node::nextRequestTime > > > > > NodeSet
Definition: peermanager.h:202
uint32_t getTotalPeersScore() const
Definition: peermanager.h:445
void finalizeStakeContender(const StakeContenderId &contenderId, BlockHash &prevblockhash, std::vector< std::pair< ProofId, CScript > > &newWinners)
bool latchAvaproofsSent(NodeId nodeid)
Flag that a node did send its compact proofs.
bool registerProof(const ProofRef &proof, RegistrationMode mode=RegistrationMode::DEFAULT)
Definition: peermanager.h:383
void cleanupStakeContenders(const int requestedMinHeight)
Make some of the contender cache API available.
bool addNode(NodeId nodeid, const ProofId &proofid)
Node API.
Definition: peermanager.cpp:33
uint64_t getSlotCount() const
Definition: peermanager.h:506
static constexpr int SELECT_PEER_MAX_RETRY
Definition: peermanager.h:226
ProofIdSet m_unbroadcast_proofids
Track proof ids to broadcast.
Definition: peermanager.h:232
bool loadPeersFromFile(const fs::path &dumpPath, std::unordered_set< ProofRef, SaltedProofHasher > &registeredProofs)
RejectionMode
Rejection mode.
Definition: peermanager.h:398
void addUnbroadcastProof(const ProofId &proofid)
Proof broadcast API.
std::unordered_set< ProofRef, SaltedProofHasher > updatedBlockTip()
Update the peer set when a new block is connected.
void removeUnbroadcastProof(const ProofId &proofid)
PeerManager(const Amount &stakeUtxoDustThresholdIn, ChainstateManager &chainmanIn, bool stakingPreConsensus=false, const ProofRef &localProofIn=ProofRef())
Definition: peermanager.h:305
void promoteStakeContendersToBlock(const CBlockIndex *pindex)
const ProofRadixTree & getShareableProofsSnapshot() const
Definition: peermanager.h:525
bool isBoundToPeer(const ProofId &proofid) const
bool setContenderStatusForLocalWinners(const CBlockIndex *prevblock, const std::vector< std::pair< ProofId, CScript > > winners, size_t maxPollable, std::vector< StakeContenderId > &pollableContenders)
boost::multi_index_container< RemoteProof, bmi::indexed_by< bmi::hashed_unique< bmi::composite_key< RemoteProof, bmi::member< RemoteProof, ProofId, &RemoteProof::proofid >, bmi::member< RemoteProof, NodeId, &RemoteProof::nodeid > >, bmi::composite_key_hash< SaltedProofIdHasher, boost::hash< NodeId > > >, bmi::hashed_non_unique< bmi::tag< by_proofid >, bmi::member< RemoteProof, ProofId, &RemoteProof::proofid >, SaltedProofIdHasher >, bmi::hashed_non_unique< bmi::tag< by_nodeid >, bmi::member< RemoteProof, NodeId, &RemoteProof::nodeid > >, bmi::ordered_non_unique< bmi::tag< by_lastUpdate >, bmi::composite_key< RemoteProof, bmi::member< RemoteProof, NodeId, &RemoteProof::nodeid >, bmi::member< RemoteProof, std::chrono::seconds, &RemoteProof::lastUpdate > > > > > RemoteProofSet
Definition: peermanager.h:276
size_t getPendingNodeCount() const
Definition: peermanager.h:318
const ProofPool & getImmatureProofPool() const
Definition: peermanager.h:513
ProofRadixTree shareableProofs
Definition: peermanager.h:190
bool saveRemoteProof(const ProofId &proofid, const NodeId nodeid, const bool present)
CRollingBloomFilter invalidProofs
Filter for proofs that are consensus-invalid or were recently invalidated by avalanche (finalized rej...
Definition: peermanager.h:296
uint64_t compact()
Trigger maintenance of internal data structures.
std::vector< Slot > slots
Definition: peermanager.h:162
uint32_t totalPeersScore
Quorum management.
Definition: peermanager.h:237
ProofPool danglingProofPool
Definition: peermanager.h:187
void forEachPeer(Callable &&func) const
Definition: peermanager.h:424
StakeContenderCache stakeContenderCache
Definition: peermanager.h:300
void setInvalid(const ProofId &proofid)
void forEachNode(const Peer &peer, Callable &&func) const
Definition: peermanager.h:344
int getStakeContenderStatus(const StakeContenderId &contenderId, BlockHash &prevblockhashout) const
const Amount & getStakeUtxoDustThreshold() const
Definition: peermanager.h:529
void forEachFlakyProof(Callable &&func) const
Definition: peermanager.h:456
bool isFlaky(const ProofId &proofid) const
ChainstateManager & chainman
Definition: peermanager.h:242
bool isInvalid(const ProofId &proofid) const
std::unordered_set< ProofId, SaltedProofIdHasher > manualFlakyProofids
Definition: peermanager.h:298
bool removePeer(const PeerId peerid)
Remove an existing peer.
const bool m_stakingPreConsensus
Definition: peermanager.h:244
bool isImmature(const ProofId &proofid) const
bool addOrUpdateNode(const PeerSet::iterator &it, NodeId nodeid)
Definition: peermanager.cpp:48
bool rejectProof(const ProofId &proofid, RejectionMode mode=RejectionMode::DEFAULT)
ProofPool immatureProofPool
Definition: peermanager.h:186
RegistrationMode
Registration mode.
Definition: peermanager.h:375
ProofPool conflictingProofPool
Definition: peermanager.h:185
const ProofPool & getConflictingProofPool() const
Definition: peermanager.h:510
bool isStakingPreconsensusActivated() const
Definition: peermanager.h:565
static constexpr size_t MAX_REMOTE_PROOFS
Definition: peermanager.h:303
bool setFlaky(const ProofId &proofid)
void addStakeContender(const ProofRef &proof)
std::atomic< bool > needMoreNodes
Flag indicating that we failed to select a node and need to expand our node set.
Definition: peermanager.h:210
PeerId selectPeer() const
Randomly select a peer to poll.
boost::multi_index_container< Peer, bmi::indexed_by< bmi::hashed_unique< bmi::member< Peer, PeerId, &Peer::peerid > >, bmi::hashed_unique< bmi::tag< by_proofid >, proof_index, SaltedProofIdHasher >, bmi::ordered_non_unique< bmi::tag< by_score >, score_index, std::greater< uint32_t > > > > PeerSet
Several nodes can make an avalanche peer.
Definition: peermanager.h:179
auto getUnbroadcastProofs() const
Definition: peermanager.h:440
bool isInConflictingPool(const ProofId &proofid) const
bool isRemotelyPresentProof(const ProofId &proofid) const
static constexpr int SELECT_NODE_MAX_RETRY
Definition: peermanager.h:227
void cleanupDanglingProofs(std::unordered_set< ProofRef, SaltedProofHasher > &registeredProofs)
void acceptStakeContender(const StakeContenderId &contenderId)
ProofRef getProof(const ProofId &proofid) const
bool registerProof(const ProofRef &proof, ProofRegistrationState &registrationState, RegistrationMode mode=RegistrationMode::DEFAULT)
void rejectStakeContender(const StakeContenderId &contenderId)
bool removeNodeFromPeer(const PeerSet::iterator &it, uint32_t count=1)
bool updateNextPossibleConflictTime(PeerId peerid, const std::chrono::seconds &nextTime)
Proof and Peer related API.
void moveToConflictingPool(const ProofContainer &proofs)
bool setStakeContenderWinners(const CBlockIndex *pindex, const std::vector< CScript > &payoutScripts)
Map a proof to each utxo.
Definition: proofpool.h:57
Cache to track stake contenders for recent blocks.
Path class wrapper to block calls to the fs::path(std::string) implicit constructor and the fs::path:...
Definition: fs.h:30
int64_t NodeId
Definition: eviction.h:16
ProofRegistrationResult
Definition: peermanager.h:144
static constexpr uint32_t AVALANCHE_MAX_IMMATURE_PROOFS
Maximum number of immature proofs the peer manager will accept from the network.
Definition: peermanager.h:45
std::unordered_set< ProofId, SaltedProofIdHasher > ProofIdSet
Definition: proofpool.h:52
PeerId selectPeerImpl(const std::vector< Slot > &slots, const uint64_t slot, const uint64_t max)
Internal methods that are exposed for testing purposes.
RCUPtr< const Proof > ProofRef
Definition: proof.h:186
Implement std::hash so RCUPtr can be used as a key for maps or sets.
Definition: rcu.h:259
Definition: amount.h:21
A BlockHash is a unqiue identifier for a block.
Definition: blockhash.h:13
SteadyMilliseconds nextRequestTime
Definition: node.h:23
std::chrono::seconds registration_time
Definition: peermanager.h:94
std::chrono::seconds nextPossibleConflictTime
Definition: peermanager.h:95
uint32_t node_count
Definition: peermanager.h:88
static constexpr auto DANGLING_TIMEOUT
Consider dropping the peer if no node is attached after this timeout expired.
Definition: peermanager.h:101
const ProofId & getProofId() const
Definition: peermanager.h:109
uint32_t index
Definition: peermanager.h:87
uint32_t getScore() const
Definition: peermanager.h:110
ProofRef proof
Definition: peermanager.h:90
Peer(PeerId peerid_, ProofRef proof_, std::chrono::seconds nextPossibleConflictTime_)
Definition: peermanager.h:103
PendingNode(ProofId proofid_, NodeId nodeid_)
Definition: peermanager.h:129
std::chrono::seconds lastUpdate
Definition: peermanager.h:140
Slot(uint64_t startIn, uint32_t scoreIn, PeerId peeridIn)
Definition: peermanager.h:60
uint32_t score
Definition: peermanager.h:56
uint64_t start
Definition: peermanager.h:55
Slot withPeerId(PeerId peeridIn) const
Definition: peermanager.h:69
uint32_t getScore() const
Definition: peermanager.h:75
bool follows(uint64_t slot) const
Definition: peermanager.h:82
Slot withScore(uint64_t scoreIn) const
Definition: peermanager.h:66
Slot withStart(uint64_t startIn) const
Definition: peermanager.h:63
uint64_t getStop() const
Definition: peermanager.h:74
uint64_t getStart() const
Definition: peermanager.h:73
PeerId getPeerId() const
Definition: peermanager.h:76
bool precedes(uint64_t slot) const
Definition: peermanager.h:81
bool contains(uint64_t slot) const
Definition: peermanager.h:78
StakeContenderIds are unique for each block to ensure that the peer polling for their acceptance has ...
result_type operator()(const Peer &p) const
Definition: peermanager.h:115
result_type operator()(const Peer &p) const
Definition: peermanager.h:120
static int count
int64_t GetTime()
DEPRECATED Use either ClockType::now() or Now<TimePointType>() if a cast is needed.
Definition: time.cpp:62
std::chrono::time_point< std::chrono::steady_clock, std::chrono::milliseconds > SteadyMilliseconds
Definition: time.h:33