-
Notifications
You must be signed in to change notification settings - Fork 211
/
cache.go
97 lines (82 loc) · 2.45 KB
/
cache.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
package fetch
import (
"math/rand/v2"
"sync"
lru "github.com/hashicorp/golang-lru/v2"
"golang.org/x/exp/maps"
"github.com/spacemeshos/go-spacemesh/common/types"
"github.com/spacemeshos/go-spacemesh/datastore"
"github.com/spacemeshos/go-spacemesh/log"
"github.com/spacemeshos/go-spacemesh/p2p"
)
// HashPeersCache holds lru cache of peers to pull hash from.
type HashPeersCache struct {
*lru.Cache[types.Hash32, HashPeers]
// mu protects cache update for the same key.
mu sync.Mutex
}
// HashPeers holds registered peers for a hash.
type HashPeers map[p2p.Peer]struct{}
// NewHashPeersCache creates a new hash-to-peers cache.
func NewHashPeersCache(size int) *HashPeersCache {
cache, err := lru.New[types.Hash32, HashPeers](size)
if err != nil {
log.Panic("could not initialize cache ", err)
}
return &HashPeersCache{Cache: cache}
}
// get returns peers for a given hash (non-thread-safe).
func (hpc *HashPeersCache) get(hash types.Hash32) (HashPeers, bool) {
item, found := hpc.Cache.Get(hash)
if !found {
return nil, false
}
return item, true
}
// getWithStats is the same as get but also updates cache stats (still non-thread-safe).
func (hpc *HashPeersCache) getWithStats(hash types.Hash32, hint datastore.Hint) (HashPeers, bool) {
hashPeers, found := hpc.get(hash)
if !found {
logCacheMiss(hint)
return nil, false
}
logCacheHit(hint)
return hashPeers, true
}
// add adds a peer to a hash (non-thread-safe).
func (hpc *HashPeersCache) add(hash types.Hash32, peer p2p.Peer) {
peers, exists := hpc.get(hash)
if !exists {
hpc.Cache.Add(hash, HashPeers{peer: {}})
return
}
peers[peer] = struct{}{}
hpc.Cache.Add(hash, peers)
}
// Add is a thread-safe version of add.
func (hpc *HashPeersCache) Add(hash types.Hash32, peer p2p.Peer) {
hpc.mu.Lock()
defer hpc.mu.Unlock()
hpc.add(hash, peer)
}
// GetRandom returns a randomized list of peers for a given hash.
func (hpc *HashPeersCache) GetRandom(hash types.Hash32, hint datastore.Hint, rng *rand.Rand) []p2p.Peer {
hpc.mu.Lock()
defer hpc.mu.Unlock()
pm, _ := hpc.getWithStats(hash, hint)
peers := maps.Keys(pm)
rng.Shuffle(len(peers), func(i, j int) { peers[i], peers[j] = peers[j], peers[i] })
return peers
}
// RegisterPeerHashes registers provided peer for a list of hashes.
func (hpc *HashPeersCache) RegisterPeerHashes(peer p2p.Peer, hashes []types.Hash32) {
if len(hashes) == 0 {
return
}
if p2p.IsNoPeer(peer) {
return
}
for _, hash := range hashes {
hpc.Add(hash, peer)
}
}