forked from TrueCloudLab/frostfs-node
[#1175] shard: Implement Lock operation
Implement `Shard.Lock` method which required rw mode and calls `Lock` on underlying metabase. Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
This commit is contained in:
parent
e21eedee06
commit
6ed85ff1e1
1 changed files with 27 additions and 0 deletions
27
pkg/local_object_storage/shard/lock.go
Normal file
27
pkg/local_object_storage/shard/lock.go
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
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.IrregularObjectLock).
|
||||||
|
//
|
||||||
|
// 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() == ModeReadOnly {
|
||||||
|
return ErrReadOnlyMode
|
||||||
|
}
|
||||||
|
|
||||||
|
err := s.metaBase.Lock(idCnr, locker, locked)
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("metabase lock: %w", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
Loading…
Reference in a new issue