lbry.go/dht/store.go

63 lines
1.3 KiB
Go
Raw Normal View History

2018-03-07 22:15:58 +01:00
package dht
2018-06-14 17:48:02 +02:00
import (
"sync"
2019-01-09 23:37:29 +01:00
"github.com/lbryio/lbry.go/dht/bits"
2018-06-14 17:48:02 +02:00
)
2018-03-07 22:15:58 +01:00
2018-05-22 18:16:01 +02:00
// TODO: expire stored data after tExpire time
type contactStore struct {
2018-04-04 17:43:27 +02:00
// map of blob hashes to (map of node IDs to bools)
2018-06-14 17:48:02 +02:00
hashes map[bits.Bitmap]map[bits.Bitmap]bool
2018-04-28 02:16:12 +02:00
// stores the peers themselves, so they can be updated in one place
2018-06-14 17:48:02 +02:00
contacts map[bits.Bitmap]Contact
2018-05-01 22:18:38 +02:00
lock sync.RWMutex
2018-03-07 22:15:58 +01:00
}
func newStore() *contactStore {
return &contactStore{
2018-06-14 17:48:02 +02:00
hashes: make(map[bits.Bitmap]map[bits.Bitmap]bool),
contacts: make(map[bits.Bitmap]Contact),
2018-03-07 22:15:58 +01:00
}
}
func (s *contactStore) Upsert(blobHash bits.Bitmap, contact Contact) {
2018-03-07 22:15:58 +01:00
s.lock.Lock()
defer s.lock.Unlock()
2018-04-28 02:16:12 +02:00
2018-04-05 17:35:57 +02:00
if _, ok := s.hashes[blobHash]; !ok {
2018-06-14 17:48:02 +02:00
s.hashes[blobHash] = make(map[bits.Bitmap]bool)
2018-03-07 22:15:58 +01:00
}
s.hashes[blobHash][contact.ID] = true
s.contacts[contact.ID] = contact
2018-03-07 22:15:58 +01:00
}
2018-06-14 17:48:02 +02:00
func (s *contactStore) Get(blobHash bits.Bitmap) []Contact {
2018-03-07 22:15:58 +01:00
s.lock.RLock()
defer s.lock.RUnlock()
2018-04-28 02:16:12 +02:00
var contacts []Contact
2018-04-05 17:35:57 +02:00
if ids, ok := s.hashes[blobHash]; ok {
for id := range ids {
2018-05-01 22:18:38 +02:00
contact, ok := s.contacts[id]
if !ok {
panic("node id in IDs list, but not in nodeInfo")
}
contacts = append(contacts, contact)
2018-03-07 22:15:58 +01:00
}
}
2018-04-28 02:16:12 +02:00
return contacts
}
func (s *contactStore) RemoveTODO(contact Contact) {
2018-04-28 02:16:12 +02:00
// TODO: remove peer from everywhere
2018-03-07 22:15:58 +01:00
}
func (s *contactStore) CountStoredHashes() int {
s.lock.RLock()
defer s.lock.RUnlock()
2018-04-05 17:35:57 +02:00
return len(s.hashes)
}