forked from TrueCloudLab/frostfs-node
135 lines
2.2 KiB
Go
135 lines
2.2 KiB
Go
|
package daughters
|
||
|
|
||
|
import (
|
||
|
"sync"
|
||
|
|
||
|
"github.com/nspcc-dev/neofs-node/pkg/services/reputation"
|
||
|
)
|
||
|
|
||
|
// Put saves daughter peer's trust to its provider for the epoch.
|
||
|
func (x *Storage) Put(epoch uint64, trust reputation.Trust) {
|
||
|
var s *daughterStorage
|
||
|
|
||
|
x.mtx.Lock()
|
||
|
|
||
|
{
|
||
|
s = x.mItems[epoch]
|
||
|
if s == nil {
|
||
|
s = &daughterStorage{
|
||
|
mItems: make(map[reputation.PeerID]*DaughterTrusts, 1),
|
||
|
}
|
||
|
|
||
|
x.mItems[epoch] = s
|
||
|
}
|
||
|
}
|
||
|
|
||
|
x.mtx.Unlock()
|
||
|
|
||
|
s.put(trust)
|
||
|
}
|
||
|
|
||
|
// DaughterTrusts returns daughter trusts for the epoch.
|
||
|
//
|
||
|
// Returns false if there is no data for the epoch and daughter.
|
||
|
func (x *Storage) DaughterTrusts(epoch uint64, daughter reputation.PeerID) (*DaughterTrusts, bool) {
|
||
|
var (
|
||
|
s *daughterStorage
|
||
|
ok bool
|
||
|
)
|
||
|
|
||
|
x.mtx.RLock()
|
||
|
|
||
|
{
|
||
|
s, ok = x.mItems[epoch]
|
||
|
}
|
||
|
|
||
|
x.mtx.RUnlock()
|
||
|
|
||
|
if !ok {
|
||
|
return nil, false
|
||
|
}
|
||
|
|
||
|
return s.daughterTrusts(daughter)
|
||
|
}
|
||
|
|
||
|
// maps IDs of daughter peers to repositories of the local trusts to their providers.
|
||
|
type daughterStorage struct {
|
||
|
mtx sync.RWMutex
|
||
|
|
||
|
mItems map[reputation.PeerID]*DaughterTrusts
|
||
|
}
|
||
|
|
||
|
func (x *daughterStorage) put(trust reputation.Trust) {
|
||
|
var dt *DaughterTrusts
|
||
|
|
||
|
x.mtx.Lock()
|
||
|
|
||
|
{
|
||
|
trusting := trust.TrustingPeer()
|
||
|
|
||
|
dt = x.mItems[trusting]
|
||
|
if dt == nil {
|
||
|
dt = &DaughterTrusts{
|
||
|
mItems: make(map[reputation.PeerID]reputation.Trust, 1),
|
||
|
}
|
||
|
|
||
|
x.mItems[trusting] = dt
|
||
|
}
|
||
|
}
|
||
|
|
||
|
x.mtx.Unlock()
|
||
|
|
||
|
dt.put(trust)
|
||
|
}
|
||
|
|
||
|
func (x *daughterStorage) daughterTrusts(id reputation.PeerID) (dt *DaughterTrusts, ok bool) {
|
||
|
x.mtx.RLock()
|
||
|
|
||
|
{
|
||
|
dt, ok = x.mItems[id]
|
||
|
}
|
||
|
|
||
|
x.mtx.RUnlock()
|
||
|
|
||
|
return
|
||
|
}
|
||
|
|
||
|
// DaughterTrusts represents in-memory storage of local trusts
|
||
|
// of the daughter peer to its providers.
|
||
|
//
|
||
|
// Maps IDs of daughter's providers to the local trusts to them.
|
||
|
type DaughterTrusts struct {
|
||
|
mtx sync.RWMutex
|
||
|
|
||
|
mItems map[reputation.PeerID]reputation.Trust
|
||
|
}
|
||
|
|
||
|
func (x *DaughterTrusts) put(trust reputation.Trust) {
|
||
|
x.mtx.Lock()
|
||
|
|
||
|
{
|
||
|
x.mItems[trust.Peer()] = trust
|
||
|
}
|
||
|
|
||
|
x.mtx.Unlock()
|
||
|
}
|
||
|
|
||
|
// Iterate passes all stored trusts to h.
|
||
|
//
|
||
|
// Returns errors from h directly.
|
||
|
func (x *DaughterTrusts) Iterate(h reputation.TrustHandler) (err error) {
|
||
|
x.mtx.RLock()
|
||
|
|
||
|
{
|
||
|
for _, trust := range x.mItems {
|
||
|
if err = h(trust); err != nil {
|
||
|
break
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
x.mtx.RUnlock()
|
||
|
|
||
|
return
|
||
|
}
|