Bitcoin ABC 0.33.5
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>
12#include <avalanche/protocol.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
35
36namespace avalanche {
37
44static constexpr uint32_t AVALANCHE_MAX_IMMATURE_PROOFS = 4000;
45
46class Delegation;
47
48namespace {
49 struct TestPeerManager;
50}
51
52struct Slot {
53private:
54 uint64_t start;
55 uint32_t score;
57
58public:
59 Slot(uint64_t startIn, uint32_t scoreIn, PeerId peeridIn)
60 : start(startIn), score(scoreIn), peerid(peeridIn) {}
61
62 Slot withStart(uint64_t startIn) const {
63 return Slot(startIn, score, peerid);
64 }
65 Slot withScore(uint64_t scoreIn) const {
66 return Slot(start, scoreIn, peerid);
67 }
68 Slot withPeerId(PeerId peeridIn) const {
69 return Slot(start, score, peeridIn);
70 }
71
72 uint64_t getStart() const { return start; }
73 uint64_t getStop() const { return start + score; }
74 uint32_t getScore() const { return score; }
75 PeerId getPeerId() const { return peerid; }
76
77 bool contains(uint64_t slot) const {
78 return getStart() <= slot && slot < getStop();
79 }
80 bool precedes(uint64_t slot) const { return slot >= getStop(); }
81 bool follows(uint64_t slot) const { return getStart() > slot; }
82};
83
84struct Peer {
86 uint32_t index = -1;
87 uint32_t node_count = 0;
88
90 bool hasFinalized = false;
91
92 // The network stack uses timestamp in seconds, so we oblige.
93 std::chrono::seconds registration_time;
94 std::chrono::seconds nextPossibleConflictTime;
95
100 static constexpr auto DANGLING_TIMEOUT = 15min;
101
102 Peer(PeerId peerid_, ProofRef proof_,
103 std::chrono::seconds nextPossibleConflictTime_)
104 : peerid(peerid_), proof(std::move(proof_)),
105 registration_time(GetTime<std::chrono::seconds>()),
106 nextPossibleConflictTime(std::move(nextPossibleConflictTime_)) {}
107
108 const ProofId &getProofId() const { return proof->getId(); }
109 uint32_t getScore() const { return proof->getScore(); }
110};
111
114 result_type operator()(const Peer &p) const { return p.proof->getId(); }
115};
116
118 using result_type = uint32_t;
119 result_type operator()(const Peer &p) const { return p.getScore(); }
120};
121
123
128
129 PendingNode(ProofId proofid_, NodeId nodeid_, size_t max_elements_)
130 : proofid(proofid_), nodeid(nodeid_), max_elements(max_elements_){};
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, size_t max_elements);
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.
322 uint64_t round);
324 const Response &response);
330 bool latchAvaproofsSent(NodeId nodeid);
331
332 // Randomly select a node to poll.
334
338 bool shouldRequestMoreNodes() { return needMoreNodes.exchange(false); }
339
340 template <typename Callable>
341 bool forNode(NodeId nodeid, Callable &&func) const {
342 auto it = nodes.find(nodeid);
343 return it != nodes.end() && func(*it);
344 }
345
346 template <typename Callable>
347 void forEachNode(const Peer &peer, Callable &&func) const {
348 auto &nview = nodes.get<next_request_time>();
349 auto range = nview.equal_range(peer.peerid);
350 for (auto it = range.first; it != range.second; ++it) {
351 func(*it);
352 }
353 }
354
364 const std::chrono::seconds &nextTime);
365
369 bool setFinalized(PeerId peerid);
370
378 enum class RegistrationMode {
379 DEFAULT,
380 FORCE_ACCEPT,
381 };
382
383 bool registerProof(const ProofRef &proof,
384 ProofRegistrationState &registrationState,
386 bool registerProof(const ProofRef &proof,
389 return registerProof(proof, dummy, mode);
390 }
391
401 enum class RejectionMode {
402 DEFAULT,
403 INVALIDATE,
404 };
405
406 bool rejectProof(const ProofId &proofid,
408
413 bool exists(const ProofId &proofid) const {
414 return getProof(proofid) != nullptr;
415 }
416
418 std::unordered_set<ProofRef, SaltedProofHasher> &registeredProofs);
419
420 template <typename Callable>
421 bool forPeer(const ProofId &proofid, Callable &&func) const {
422 auto &pview = peers.get<by_proofid>();
423 auto it = pview.find(proofid);
424 return it != pview.end() && func(*it);
425 }
426
427 template <typename Callable> void forEachPeer(Callable &&func) const {
428 for (const auto &p : peers) {
429 func(p);
430 }
431 }
432
436 std::unordered_set<ProofRef, SaltedProofHasher> updatedBlockTip();
437
441 void addUnbroadcastProof(const ProofId &proofid);
442 void removeUnbroadcastProof(const ProofId &proofid);
444
445 /*
446 * Quorum management
447 */
448 uint32_t getTotalPeersScore() const { return totalPeersScore; }
449 uint32_t getConnectedPeersScore() const { return connectedPeersScore; }
450
451 bool saveRemoteProof(const ProofId &proofid, const NodeId nodeid,
452 const bool present);
453 std::vector<RemoteProof> getRemoteProofs(const NodeId nodeid) const;
454 bool hasRemoteProofStatus(const ProofId &proofid) const;
455 bool isRemotelyPresentProof(const ProofId &proofid) const;
456
457 bool setFlaky(const ProofId &proofid);
458 bool unsetFlaky(const ProofId &proofid);
459 template <typename Callable> void forEachFlakyProof(Callable &&func) const {
460 for (const auto &p : manualFlakyProofids) {
461 func(p);
462 }
463 }
464
466 void cleanupStakeContenders(const int requestedMinHeight);
467 void addStakeContender(const ProofRef &proof);
468 int getStakeContenderStatus(const StakeContenderId &contenderId,
469 BlockHash &prevblockhashout) const;
470 void acceptStakeContender(const StakeContenderId &contenderId);
472 const StakeContenderId &contenderId, BlockHash &prevblockhash,
473 std::vector<std::pair<ProofId, CScript>> &newWinners);
474 void rejectStakeContender(const StakeContenderId &contenderId);
475 void promoteStakeContendersToBlock(const CBlockIndex *pindex);
477 const CBlockIndex *prevblock,
478 const std::vector<std::pair<ProofId, CScript>> winners,
479 size_t maxPollable, std::vector<StakeContenderId> &pollableContenders);
480 bool setStakeContenderWinners(const CBlockIndex *pindex,
481 const std::vector<CScript> &payoutScripts);
482
483 /****************************************************
484 * Functions which are public for testing purposes. *
485 ****************************************************/
486
490 bool removePeer(const PeerId peerid);
491
495 PeerId selectPeer() const;
496
501 uint64_t compact();
502
506 bool verify() const;
507
508 // Accessors.
509 uint64_t getSlotCount() const { return slotCount; }
510 uint64_t getFragmentation() const { return fragmentation; }
511
512 const ProofPool &getValidProofPool() const { return validProofPool; }
515 }
517
518 ProofRef getProof(const ProofId &proofid) const;
519 bool isBoundToPeer(const ProofId &proofid) const;
520 bool isImmature(const ProofId &proofid) const;
521 bool isInConflictingPool(const ProofId &proofid) const;
522 bool isDangling(const ProofId &proofid) const;
523
524 void setInvalid(const ProofId &proofid);
525 bool isInvalid(const ProofId &proofid) const;
526 void clearAllInvalid();
527
529 return shareableProofs;
530 }
531
534 }
535
541 const CBlockIndex *pprev,
542 std::vector<std::pair<ProofId, CScript>> &winners);
543
544 bool dumpPeersToFile(const fs::path &dumpPath) const;
546 const fs::path &dumpPath,
547 std::unordered_set<ProofRef, SaltedProofHasher> &registeredProofs);
548
549private:
550 template <typename ProofContainer>
551 void moveToConflictingPool(const ProofContainer &proofs);
552
553 bool addOrUpdateNode(const PeerSet::iterator &it, NodeId nodeid,
554 size_t max_elements);
555 bool addNodeToPeer(const PeerSet::iterator &it);
556 bool removeNodeFromPeer(const PeerSet::iterator &it, uint32_t count = 1);
557
565 std::optional<bool> getRemotePresenceStatus(const ProofId &proofid) const;
566
567 bool isFlaky(const ProofId &proofid) const;
568
571 }
572
573 friend struct ::avalanche::TestPeerManager;
574};
575
579PeerId selectPeerImpl(const std::vector<Slot> &slots, const uint64_t slot,
580 const uint64_t max);
581
582} // namespace avalanche
583
584#endif // BITCOIN_AVALANCHE_PEERMANAGER_H
uint32_t PeerId
Definition: node.h:14
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
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:510
uint32_t getConnectedPeersScore() const
Definition: peermanager.h:449
bool updateNextRequestTimeForResponse(NodeId nodeid, const Response &response)
bool isDangling(const ProofId &proofid) const
bool addNode(NodeId nodeid, const ProofId &proofid, size_t max_elements)
Node API.
Definition: peermanager.cpp:33
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:91
bool shouldRequestMoreNodes()
Returns true if we encountered a lack of node since the last call.
Definition: peermanager.h:338
bool exists(const ProofId &proofid) const
Return true if the (valid) proof exists, but only for non-dangling proofs.
Definition: peermanager.h:413
size_t getNodeCount() const
Definition: peermanager.h:317
PendingNodeSet pendingNodes
Definition: peermanager.h:224
const ProofPool & getValidProofPool() const
Definition: peermanager.h:512
bool verify() const
Perform consistency check on internal data structures.
bool forNode(NodeId nodeid, Callable &&func) const
Definition: peermanager.h:341
bool hasRemoteProofStatus(const ProofId &proofid) const
bool forPeer(const ProofId &proofid, Callable &&func) const
Definition: peermanager.h:421
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:448
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:386
void cleanupStakeContenders(const int requestedMinHeight)
Make some of the contender cache API available.
bool updateNextRequestTimeForPoll(NodeId nodeid, SteadyMilliseconds timeout, uint64_t round)
uint64_t getSlotCount() const
Definition: peermanager.h:509
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:401
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:528
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:516
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
bool addOrUpdateNode(const PeerSet::iterator &it, NodeId nodeid, size_t max_elements)
Definition: peermanager.cpp:49
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:427
StakeContenderCache stakeContenderCache
Definition: peermanager.h:300
void setInvalid(const ProofId &proofid)
void forEachNode(const Peer &peer, Callable &&func) const
Definition: peermanager.h:347
int getStakeContenderStatus(const StakeContenderId &contenderId, BlockHash &prevblockhashout) const
const Amount & getStakeUtxoDustThreshold() const
Definition: peermanager.h:532
void forEachFlakyProof(Callable &&func) const
Definition: peermanager.h:459
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 rejectProof(const ProofId &proofid, RejectionMode mode=RejectionMode::DEFAULT)
ProofPool immatureProofPool
Definition: peermanager.h:186
RegistrationMode
Registration mode.
Definition: peermanager.h:378
ProofPool conflictingProofPool
Definition: peermanager.h:185
const ProofPool & getConflictingProofPool() const
Definition: peermanager.h:513
bool isStakingPreconsensusActivated() const
Definition: peermanager.h:569
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:443
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:56
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:44
std::unordered_set< ProofId, SaltedProofIdHasher > ProofIdSet
Definition: proofpool.h:51
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:183
Implement std::hash so RCUPtr can be used as a key for maps or sets.
Definition: rcu.h:259
Response response
Definition: processor.cpp:536
Definition: amount.h:21
A BlockHash is a unqiue identifier for a block.
Definition: blockhash.h:13
SteadyMilliseconds nextRequestTime
Definition: node.h:22
std::chrono::seconds registration_time
Definition: peermanager.h:93
std::chrono::seconds nextPossibleConflictTime
Definition: peermanager.h:94
uint32_t node_count
Definition: peermanager.h:87
static constexpr auto DANGLING_TIMEOUT
Consider dropping the peer if no node is attached after this timeout expired.
Definition: peermanager.h:100
const ProofId & getProofId() const
Definition: peermanager.h:108
uint32_t index
Definition: peermanager.h:86
uint32_t getScore() const
Definition: peermanager.h:109
ProofRef proof
Definition: peermanager.h:89
Peer(PeerId peerid_, ProofRef proof_, std::chrono::seconds nextPossibleConflictTime_)
Definition: peermanager.h:102
PendingNode(ProofId proofid_, NodeId nodeid_, size_t max_elements_)
Definition: peermanager.h:129
std::chrono::seconds lastUpdate
Definition: peermanager.h:140
Slot(uint64_t startIn, uint32_t scoreIn, PeerId peeridIn)
Definition: peermanager.h:59
uint32_t score
Definition: peermanager.h:55
uint64_t start
Definition: peermanager.h:54
Slot withPeerId(PeerId peeridIn) const
Definition: peermanager.h:68
uint32_t getScore() const
Definition: peermanager.h:74
bool follows(uint64_t slot) const
Definition: peermanager.h:81
Slot withScore(uint64_t scoreIn) const
Definition: peermanager.h:65
Slot withStart(uint64_t startIn) const
Definition: peermanager.h:62
uint64_t getStop() const
Definition: peermanager.h:73
uint64_t getStart() const
Definition: peermanager.h:72
PeerId getPeerId() const
Definition: peermanager.h:75
bool precedes(uint64_t slot) const
Definition: peermanager.h:80
bool contains(uint64_t slot) const
Definition: peermanager.h:77
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:114
result_type operator()(const Peer &p) const
Definition: peermanager.h:119
static int count
int64_t GetTime()
DEPRECATED Use either ClockType::now() or Now<TimePointType>() if a cast is needed.
Definition: time.cpp:80
std::chrono::time_point< std::chrono::steady_clock, std::chrono::milliseconds > SteadyMilliseconds
Definition: time.h:33