forked from TrueCloudLab/frostfs-node
71b87155ef
Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
97 lines
1.7 KiB
Go
97 lines
1.7 KiB
Go
package innerring
|
|
|
|
import (
|
|
"crypto/ecdsa"
|
|
"fmt"
|
|
"sync"
|
|
"time"
|
|
|
|
"github.com/nspcc-dev/neofs-node/pkg/innerring/invoke"
|
|
"github.com/nspcc-dev/neofs-node/pkg/morph/client"
|
|
)
|
|
|
|
type (
|
|
innerRingIndexer struct {
|
|
sync.RWMutex
|
|
|
|
cli *client.Client
|
|
key *ecdsa.PublicKey
|
|
timeout time.Duration
|
|
|
|
ind indexes
|
|
|
|
lastAccess time.Time
|
|
}
|
|
|
|
indexes struct {
|
|
innerRingIndex, innerRingSize int32
|
|
alphabetIndex int32
|
|
}
|
|
)
|
|
|
|
func newInnerRingIndexer(cli *client.Client, key *ecdsa.PublicKey, to time.Duration) *innerRingIndexer {
|
|
return &innerRingIndexer{
|
|
cli: cli,
|
|
key: key,
|
|
timeout: to,
|
|
}
|
|
}
|
|
|
|
func (s *innerRingIndexer) update() (ind indexes, err error) {
|
|
s.RLock()
|
|
|
|
if time.Since(s.lastAccess) < s.timeout {
|
|
s.RUnlock()
|
|
return s.ind, nil
|
|
}
|
|
|
|
s.RUnlock()
|
|
|
|
s.Lock()
|
|
defer s.Unlock()
|
|
|
|
if time.Since(s.lastAccess) < s.timeout {
|
|
return s.ind, nil
|
|
}
|
|
|
|
s.ind.innerRingIndex, s.ind.innerRingSize, err = invoke.InnerRingIndex(s.cli, s.key)
|
|
if err != nil {
|
|
return indexes{}, err
|
|
}
|
|
|
|
s.ind.alphabetIndex, err = invoke.AlphabetIndex(s.cli, s.key)
|
|
if err != nil {
|
|
return indexes{}, err
|
|
}
|
|
|
|
s.lastAccess = time.Now()
|
|
|
|
return s.ind, nil
|
|
}
|
|
|
|
func (s *innerRingIndexer) InnerRingIndex() (int32, error) {
|
|
ind, err := s.update()
|
|
if err != nil {
|
|
return 0, fmt.Errorf("can't update index state: %w", err)
|
|
}
|
|
|
|
return ind.innerRingIndex, nil
|
|
}
|
|
|
|
func (s *innerRingIndexer) InnerRingSize() (int32, error) {
|
|
ind, err := s.update()
|
|
if err != nil {
|
|
return 0, fmt.Errorf("can't update index state: %w", err)
|
|
}
|
|
|
|
return ind.innerRingSize, nil
|
|
}
|
|
|
|
func (s *innerRingIndexer) AlphabetIndex() (int32, error) {
|
|
ind, err := s.update()
|
|
if err != nil {
|
|
return 0, fmt.Errorf("can't update index state: %w", err)
|
|
}
|
|
|
|
return ind.alphabetIndex, nil
|
|
}
|