forked from TrueCloudLab/frostfs-node
6472a170eb
`Degraded` mode is set automatically after error counter is over the threshold. `ReadOnly` mode can still be set by an administrator. Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
27 lines
658 B
Go
27 lines
658 B
Go
package shard
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
cid "github.com/nspcc-dev/neofs-sdk-go/container/id"
|
|
oid "github.com/nspcc-dev/neofs-sdk-go/object/id"
|
|
)
|
|
|
|
// Lock marks objects as locked with another object. All objects from the
|
|
// specified container.
|
|
//
|
|
// Allows locking regular objects only (otherwise returns apistatus.LockNonRegularObject).
|
|
//
|
|
// Locked list should be unique. Panics if it is empty.
|
|
func (s *Shard) Lock(idCnr cid.ID, locker oid.ID, locked []oid.ID) error {
|
|
if s.GetMode() != ModeReadWrite {
|
|
return ErrReadOnlyMode
|
|
}
|
|
|
|
err := s.metaBase.Lock(idCnr, locker, locked)
|
|
if err != nil {
|
|
return fmt.Errorf("metabase lock: %w", err)
|
|
}
|
|
|
|
return nil
|
|
}
|