mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-06-24 15:02:32 +00:00

* [NOD-1168] Add context interfaces to flows * [NOD-1168] Move IBD state to protocol manager * [NOD-1168] Move ready peers to protocol manager * [NOD-1168] Add comments * [NOD-1168] Separate context interfaces for send and receive pings * [NOD-1168] Add protocol shared state to FlowContext * [NOD-1168] Fix comment * [NOD-1168] Rename Context->HandleHandshakeContext * [NOD-1168] Initialize readyPeers and transactionsToRebroadcast * [NOD-1168] Rename readyPeers -> peers
47 lines
1.0 KiB
Go
47 lines
1.0 KiB
Go
package blockrelay
|
|
|
|
import (
|
|
"sync"
|
|
|
|
"github.com/kaspanet/kaspad/util/daghash"
|
|
)
|
|
|
|
// SharedRequestedBlocks is a data structure that is shared between peers that
|
|
// holds the hashes of all the requested blocks to prevent redundant requests.
|
|
type SharedRequestedBlocks struct {
|
|
blocks map[daghash.Hash]struct{}
|
|
sync.Mutex
|
|
}
|
|
|
|
func (s *SharedRequestedBlocks) remove(hash *daghash.Hash) {
|
|
s.Lock()
|
|
defer s.Unlock()
|
|
delete(s.blocks, *hash)
|
|
}
|
|
|
|
func (s *SharedRequestedBlocks) removeSet(blockHashes map[daghash.Hash]struct{}) {
|
|
s.Lock()
|
|
defer s.Unlock()
|
|
for hash := range blockHashes {
|
|
delete(s.blocks, hash)
|
|
}
|
|
}
|
|
|
|
func (s *SharedRequestedBlocks) addIfNotExists(hash *daghash.Hash) (exists bool) {
|
|
s.Lock()
|
|
defer s.Unlock()
|
|
_, ok := s.blocks[*hash]
|
|
if ok {
|
|
return true
|
|
}
|
|
s.blocks[*hash] = struct{}{}
|
|
return false
|
|
}
|
|
|
|
// NewSharedRequestedBlocks returns a new instance of SharedRequestedBlocks.
|
|
func NewSharedRequestedBlocks() *SharedRequestedBlocks {
|
|
return &SharedRequestedBlocks{
|
|
blocks: make(map[daghash.Hash]struct{}),
|
|
}
|
|
}
|