9a11a75b77
Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
63 lines
2 KiB
Go
63 lines
2 KiB
Go
package intermediate
|
|
|
|
import (
|
|
"github.com/nspcc-dev/neofs-node/pkg/services/reputation"
|
|
reputationcommon "github.com/nspcc-dev/neofs-node/pkg/services/reputation/common"
|
|
"github.com/nspcc-dev/neofs-node/pkg/services/reputation/eigentrust"
|
|
eigencalc "github.com/nspcc-dev/neofs-node/pkg/services/reputation/eigentrust/calculator"
|
|
consumerstorage "github.com/nspcc-dev/neofs-node/pkg/services/reputation/eigentrust/storage/consumers"
|
|
"github.com/nspcc-dev/neofs-node/pkg/util/logger"
|
|
"go.uber.org/zap"
|
|
)
|
|
|
|
var ErrIncorrectContextPanicMsg = "could not write intermediate trust: passed context incorrect"
|
|
|
|
// ConsumerStorageWriterProvider is an implementation of the reputation.WriterProvider
|
|
// interface that provides ConsumerTrustWriter writer.
|
|
type ConsumerStorageWriterProvider struct {
|
|
Log *logger.Logger
|
|
Storage *consumerstorage.Storage
|
|
}
|
|
|
|
// ConsumerTrustWriter is an implementation of the reputation.Writer interface
|
|
// that writes passed consumer's Trust values to the Consumer storage. After writing
|
|
// that, values can be used in eigenTrust algorithm's iterations.
|
|
type ConsumerTrustWriter struct {
|
|
log *logger.Logger
|
|
storage *consumerstorage.Storage
|
|
eiCtx eigencalc.Context
|
|
}
|
|
|
|
func (w *ConsumerTrustWriter) Write(t reputation.Trust) error {
|
|
w.log.Debug("writing received consumer's trusts",
|
|
zap.Uint64("epoch", w.eiCtx.Epoch()),
|
|
zap.Uint32("iteration", w.eiCtx.I()),
|
|
zap.Stringer("trusting_peer", t.TrustingPeer()),
|
|
zap.Stringer("trusted_peer", t.Peer()),
|
|
)
|
|
|
|
trust := eigentrust.IterationTrust{Trust: t}
|
|
|
|
trust.SetEpoch(w.eiCtx.Epoch())
|
|
trust.SetI(w.eiCtx.I())
|
|
|
|
w.storage.Put(trust)
|
|
return nil
|
|
}
|
|
|
|
func (w *ConsumerTrustWriter) Close() error {
|
|
return nil
|
|
}
|
|
|
|
func (s *ConsumerStorageWriterProvider) InitWriter(ctx reputationcommon.Context) (reputationcommon.Writer, error) {
|
|
eiCtx, ok := ctx.(eigencalc.Context)
|
|
if !ok {
|
|
panic(ErrIncorrectContextPanicMsg)
|
|
}
|
|
|
|
return &ConsumerTrustWriter{
|
|
log: s.Log,
|
|
storage: s.Storage,
|
|
eiCtx: eiCtx,
|
|
}, nil
|
|
}
|