2020-10-28 14:49:30 +00:00
|
|
|
package meta
|
|
|
|
|
|
|
|
import (
|
2020-12-08 07:51:34 +00:00
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
|
2021-03-22 08:10:01 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/io"
|
2020-10-28 14:49:30 +00:00
|
|
|
"github.com/nspcc-dev/neofs-node/pkg/core/object"
|
2022-03-15 15:28:39 +00:00
|
|
|
objectCore "github.com/nspcc-dev/neofs-node/pkg/core/object"
|
2020-12-08 07:51:34 +00:00
|
|
|
"github.com/nspcc-dev/neofs-node/pkg/local_object_storage/blobovnicza"
|
2022-03-02 09:17:32 +00:00
|
|
|
storagelog "github.com/nspcc-dev/neofs-node/pkg/local_object_storage/internal/log"
|
2021-04-15 07:23:52 +00:00
|
|
|
"github.com/nspcc-dev/neofs-node/pkg/local_object_storage/util"
|
2021-11-10 07:08:33 +00:00
|
|
|
objectSDK "github.com/nspcc-dev/neofs-sdk-go/object"
|
2022-01-26 12:11:13 +00:00
|
|
|
addressSDK "github.com/nspcc-dev/neofs-sdk-go/object/address"
|
2020-10-28 14:49:30 +00:00
|
|
|
"go.etcd.io/bbolt"
|
|
|
|
)
|
|
|
|
|
2020-12-08 07:51:34 +00:00
|
|
|
type (
|
|
|
|
namedBucketItem struct {
|
|
|
|
name, key, val []byte
|
|
|
|
}
|
|
|
|
)
|
2020-10-28 14:49:30 +00:00
|
|
|
|
2020-12-08 09:56:14 +00:00
|
|
|
// PutPrm groups the parameters of Put operation.
|
|
|
|
type PutPrm struct {
|
2022-03-03 14:19:05 +00:00
|
|
|
obj *objectSDK.Object
|
2020-12-08 09:56:14 +00:00
|
|
|
|
|
|
|
id *blobovnicza.ID
|
|
|
|
}
|
|
|
|
|
|
|
|
// PutRes groups resulting values of Put operation.
|
|
|
|
type PutRes struct{}
|
|
|
|
|
|
|
|
// WithObject is a Put option to set object to save.
|
2022-03-03 14:19:05 +00:00
|
|
|
func (p *PutPrm) WithObject(obj *objectSDK.Object) *PutPrm {
|
2020-12-08 09:56:14 +00:00
|
|
|
if p != nil {
|
|
|
|
p.obj = obj
|
|
|
|
}
|
|
|
|
|
|
|
|
return p
|
|
|
|
}
|
|
|
|
|
|
|
|
// WithBlobovniczaID is a Put option to set blobovnicza ID to save.
|
|
|
|
func (p *PutPrm) WithBlobovniczaID(id *blobovnicza.ID) *PutPrm {
|
|
|
|
if p != nil {
|
|
|
|
p.id = id
|
|
|
|
}
|
|
|
|
|
|
|
|
return p
|
|
|
|
}
|
|
|
|
|
2020-10-28 14:49:30 +00:00
|
|
|
var (
|
2021-04-06 10:56:06 +00:00
|
|
|
ErrUnknownObjectType = errors.New("unknown object type")
|
|
|
|
ErrIncorrectSplitInfoUpdate = errors.New("updating split info on object without it")
|
|
|
|
ErrIncorrectRootObject = errors.New("invalid root object")
|
2020-10-28 14:49:30 +00:00
|
|
|
)
|
|
|
|
|
2020-12-08 09:56:14 +00:00
|
|
|
// Put saves the object in DB.
|
2022-03-03 14:19:05 +00:00
|
|
|
func Put(db *DB, obj *objectSDK.Object, id *blobovnicza.ID) error {
|
2020-12-08 09:56:14 +00:00
|
|
|
_, err := db.Put(new(PutPrm).
|
|
|
|
WithObject(obj).
|
|
|
|
WithBlobovniczaID(id),
|
|
|
|
)
|
|
|
|
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-12-08 07:51:34 +00:00
|
|
|
// Put saves object header in metabase. Object payload expected to be cut.
|
|
|
|
// Big objects have nil blobovniczaID.
|
2020-12-08 09:56:14 +00:00
|
|
|
func (db *DB) Put(prm *PutPrm) (res *PutRes, err error) {
|
2021-04-09 09:18:38 +00:00
|
|
|
err = db.boltDB.Batch(func(tx *bbolt.Tx) error {
|
2020-12-08 09:56:14 +00:00
|
|
|
return db.put(tx, prm.obj, prm.id, nil)
|
2020-12-08 07:51:34 +00:00
|
|
|
})
|
2022-03-02 09:17:32 +00:00
|
|
|
if err == nil {
|
|
|
|
storagelog.Write(db.log,
|
2022-03-15 15:28:39 +00:00
|
|
|
storagelog.AddressField(objectCore.AddressOf(prm.obj)),
|
2022-03-02 09:17:32 +00:00
|
|
|
storagelog.OpField("metabase PUT"))
|
|
|
|
}
|
2020-12-08 09:56:14 +00:00
|
|
|
|
|
|
|
return
|
2020-12-08 07:51:34 +00:00
|
|
|
}
|
2020-10-28 14:49:30 +00:00
|
|
|
|
2022-03-03 14:19:05 +00:00
|
|
|
func (db *DB) put(tx *bbolt.Tx, obj *objectSDK.Object, id *blobovnicza.ID, si *objectSDK.SplitInfo) error {
|
2020-12-08 07:51:34 +00:00
|
|
|
isParent := si != nil
|
2020-10-28 14:49:30 +00:00
|
|
|
|
2022-03-03 14:19:05 +00:00
|
|
|
exists, err := db.exists(tx, object.AddressOf(obj))
|
2020-10-28 14:49:30 +00:00
|
|
|
|
2020-12-08 07:51:34 +00:00
|
|
|
if errors.As(err, &splitInfoError) {
|
|
|
|
exists = true // object exists, however it is virtual
|
|
|
|
} else if err != nil {
|
|
|
|
return err // return any error besides SplitInfoError
|
|
|
|
}
|
2020-10-28 14:49:30 +00:00
|
|
|
|
2020-12-08 07:51:34 +00:00
|
|
|
// most right child and split header overlap parent so we have to
|
|
|
|
// check if object exists to not overwrite it twice
|
|
|
|
if exists {
|
|
|
|
// when storage engine moves small objects from one blobovniczaID
|
|
|
|
// to another, then it calls metabase.Put method with new blobovniczaID
|
|
|
|
// and this code should be triggered
|
|
|
|
if !isParent && id != nil {
|
2022-03-03 14:19:05 +00:00
|
|
|
return updateBlobovniczaID(tx, object.AddressOf(obj), id)
|
2020-12-08 07:51:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// when storage already has last object in split hierarchy and there is
|
|
|
|
// a linking object to put (or vice versa), we should update split info
|
|
|
|
// with object ids of these objects
|
|
|
|
if isParent {
|
2022-03-03 14:19:05 +00:00
|
|
|
return updateSplitInfo(tx, object.AddressOf(obj), si)
|
2020-12-08 07:51:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-03-03 14:19:05 +00:00
|
|
|
if par := obj.Parent(); par != nil && !isParent { // limit depth by two
|
2020-12-08 07:51:34 +00:00
|
|
|
parentSI, err := splitInfoFromObject(obj)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2022-03-03 14:19:05 +00:00
|
|
|
err = db.put(tx, par, id, parentSI)
|
2020-12-08 07:51:34 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// build unique indexes
|
|
|
|
uniqueIndexes, err := uniqueIndexes(obj, si, id)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("can' build unique indexes: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// put unique indexes
|
|
|
|
for i := range uniqueIndexes {
|
2021-01-22 11:07:08 +00:00
|
|
|
err = putUniqueIndexItem(tx, uniqueIndexes[i])
|
2020-12-08 07:51:34 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// build list indexes
|
|
|
|
listIndexes, err := listIndexes(obj)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("can' build list indexes: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// put list indexes
|
|
|
|
for i := range listIndexes {
|
2021-01-22 11:07:08 +00:00
|
|
|
err = putListIndexItem(tx, listIndexes[i])
|
2020-12-08 07:51:34 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// build fake bucket tree indexes
|
|
|
|
fkbtIndexes, err := fkbtIndexes(obj)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("can' build fake bucket tree indexes: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// put fake bucket tree indexes
|
|
|
|
for i := range fkbtIndexes {
|
2021-01-22 11:07:08 +00:00
|
|
|
err = putFKBTIndexItem(tx, fkbtIndexes[i])
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// update container volume size estimation
|
|
|
|
if obj.Type() == objectSDK.TypeRegular && !isParent {
|
|
|
|
err = changeContainerSize(
|
|
|
|
tx,
|
|
|
|
obj.ContainerID(),
|
|
|
|
obj.PayloadSize(),
|
|
|
|
true,
|
|
|
|
)
|
2020-12-08 07:51:34 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// builds list of <unique> indexes from the object.
|
2022-03-03 14:19:05 +00:00
|
|
|
func uniqueIndexes(obj *objectSDK.Object, si *objectSDK.SplitInfo, id *blobovnicza.ID) ([]namedBucketItem, error) {
|
2020-12-08 07:51:34 +00:00
|
|
|
isParent := si != nil
|
2022-03-03 14:19:05 +00:00
|
|
|
addr := object.AddressOf(obj)
|
2020-12-08 07:51:34 +00:00
|
|
|
objKey := objectKey(addr.ObjectID())
|
|
|
|
result := make([]namedBucketItem, 0, 3)
|
|
|
|
|
|
|
|
// add value to primary unique bucket
|
|
|
|
if !isParent {
|
|
|
|
var bucketName []byte
|
|
|
|
|
|
|
|
switch obj.Type() {
|
|
|
|
case objectSDK.TypeRegular:
|
|
|
|
bucketName = primaryBucketName(addr.ContainerID())
|
|
|
|
case objectSDK.TypeTombstone:
|
|
|
|
bucketName = tombstoneBucketName(addr.ContainerID())
|
|
|
|
case objectSDK.TypeStorageGroup:
|
|
|
|
bucketName = storageGroupBucketName(addr.ContainerID())
|
2022-02-15 09:53:35 +00:00
|
|
|
case objectSDK.TypeLock:
|
2022-02-15 12:51:56 +00:00
|
|
|
bucketName = bucketNameLockers(*addr.ContainerID())
|
2020-12-08 07:51:34 +00:00
|
|
|
default:
|
|
|
|
return nil, ErrUnknownObjectType
|
|
|
|
}
|
|
|
|
|
2022-03-03 14:19:05 +00:00
|
|
|
rawObject, err := obj.CutPayload().Marshal()
|
2020-12-08 07:51:34 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("can't marshal object header: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
result = append(result, namedBucketItem{
|
|
|
|
name: bucketName,
|
|
|
|
key: objKey,
|
|
|
|
val: rawObject,
|
|
|
|
})
|
2020-10-29 16:12:38 +00:00
|
|
|
|
2020-12-08 07:51:34 +00:00
|
|
|
// index blobovniczaID if it is present
|
|
|
|
if id != nil {
|
|
|
|
result = append(result, namedBucketItem{
|
|
|
|
name: smallBucketName(addr.ContainerID()),
|
|
|
|
key: objKey,
|
|
|
|
val: *id,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// index root object
|
|
|
|
if obj.Type() == objectSDK.TypeRegular && !obj.HasParent() {
|
|
|
|
var (
|
|
|
|
err error
|
|
|
|
splitInfo []byte
|
|
|
|
)
|
|
|
|
|
|
|
|
if isParent {
|
|
|
|
splitInfo, err = si.Marshal()
|
2020-10-28 14:49:30 +00:00
|
|
|
if err != nil {
|
2020-12-08 07:51:34 +00:00
|
|
|
return nil, fmt.Errorf("can't marshal split info: %w", err)
|
2020-10-28 14:49:30 +00:00
|
|
|
}
|
2020-12-08 07:51:34 +00:00
|
|
|
}
|
2020-10-28 14:49:30 +00:00
|
|
|
|
2020-12-08 07:51:34 +00:00
|
|
|
result = append(result, namedBucketItem{
|
|
|
|
name: rootBucketName(addr.ContainerID()),
|
|
|
|
key: objKey,
|
|
|
|
val: splitInfo,
|
|
|
|
})
|
|
|
|
}
|
2020-10-29 16:12:38 +00:00
|
|
|
|
2020-12-08 07:51:34 +00:00
|
|
|
return result, nil
|
|
|
|
}
|
2020-10-29 16:12:38 +00:00
|
|
|
|
2020-12-08 07:51:34 +00:00
|
|
|
// builds list of <list> indexes from the object.
|
2022-03-03 14:19:05 +00:00
|
|
|
func listIndexes(obj *objectSDK.Object) ([]namedBucketItem, error) {
|
2020-12-08 07:51:34 +00:00
|
|
|
result := make([]namedBucketItem, 0, 3)
|
2022-03-03 14:19:05 +00:00
|
|
|
addr := object.AddressOf(obj)
|
2020-12-08 07:51:34 +00:00
|
|
|
objKey := objectKey(addr.ObjectID())
|
2020-10-29 16:12:38 +00:00
|
|
|
|
2020-12-08 07:51:34 +00:00
|
|
|
// index payload hashes
|
|
|
|
result = append(result, namedBucketItem{
|
|
|
|
name: payloadHashBucketName(addr.ContainerID()),
|
|
|
|
key: obj.PayloadChecksum().Sum(),
|
|
|
|
val: objKey,
|
|
|
|
})
|
2020-10-29 16:12:38 +00:00
|
|
|
|
2020-12-08 07:51:34 +00:00
|
|
|
// index parent ids
|
|
|
|
if obj.ParentID() != nil {
|
|
|
|
result = append(result, namedBucketItem{
|
|
|
|
name: parentBucketName(addr.ContainerID()),
|
|
|
|
key: objectKey(obj.ParentID()),
|
|
|
|
val: objKey,
|
|
|
|
})
|
|
|
|
}
|
2020-10-29 16:12:38 +00:00
|
|
|
|
2020-12-08 07:51:34 +00:00
|
|
|
// index split ids
|
|
|
|
if obj.SplitID() != nil {
|
|
|
|
result = append(result, namedBucketItem{
|
|
|
|
name: splitBucketName(addr.ContainerID()),
|
|
|
|
key: obj.SplitID().ToV2(),
|
|
|
|
val: objKey,
|
|
|
|
})
|
|
|
|
}
|
2020-10-28 14:49:30 +00:00
|
|
|
|
2020-12-08 07:51:34 +00:00
|
|
|
return result, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// builds list of <fake bucket tree> indexes from the object.
|
2022-03-03 14:19:05 +00:00
|
|
|
func fkbtIndexes(obj *objectSDK.Object) ([]namedBucketItem, error) {
|
|
|
|
addr := object.AddressOf(obj)
|
2020-12-08 07:51:34 +00:00
|
|
|
objKey := []byte(addr.ObjectID().String())
|
|
|
|
|
|
|
|
attrs := obj.Attributes()
|
|
|
|
result := make([]namedBucketItem, 0, 1+len(attrs))
|
|
|
|
|
|
|
|
// owner
|
|
|
|
result = append(result, namedBucketItem{
|
|
|
|
name: ownerBucketName(addr.ContainerID()),
|
|
|
|
key: []byte(obj.OwnerID().String()),
|
|
|
|
val: objKey,
|
2020-10-28 14:49:30 +00:00
|
|
|
})
|
2020-12-08 07:51:34 +00:00
|
|
|
|
|
|
|
// user specified attributes
|
|
|
|
for i := range attrs {
|
|
|
|
result = append(result, namedBucketItem{
|
|
|
|
name: attributeBucketName(addr.ContainerID(), attrs[i].Key()),
|
|
|
|
key: []byte(attrs[i].Value()),
|
|
|
|
val: objKey,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
return result, nil
|
2020-10-28 14:49:30 +00:00
|
|
|
}
|
|
|
|
|
2020-12-08 07:51:34 +00:00
|
|
|
func putUniqueIndexItem(tx *bbolt.Tx, item namedBucketItem) error {
|
|
|
|
bkt, err := tx.CreateBucketIfNotExists(item.name)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("can't create index %v: %w", item.name, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return bkt.Put(item.key, item.val)
|
2020-10-28 14:49:30 +00:00
|
|
|
}
|
|
|
|
|
2020-12-08 07:51:34 +00:00
|
|
|
func putFKBTIndexItem(tx *bbolt.Tx, item namedBucketItem) error {
|
|
|
|
bkt, err := tx.CreateBucketIfNotExists(item.name)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("can't create index %v: %w", item.name, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
fkbtRoot, err := bkt.CreateBucketIfNotExists(item.key)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("can't create fake bucket tree index %v: %w", item.key, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return fkbtRoot.Put(item.val, zeroValue)
|
2020-10-28 14:49:30 +00:00
|
|
|
}
|
|
|
|
|
2020-12-08 07:51:34 +00:00
|
|
|
func putListIndexItem(tx *bbolt.Tx, item namedBucketItem) error {
|
|
|
|
bkt, err := tx.CreateBucketIfNotExists(item.name)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("can't create index %v: %w", item.name, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
lst, err := decodeList(bkt.Get(item.key))
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("can't decode leaf list %v: %w", item.key, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
lst = append(lst, item.val)
|
|
|
|
|
|
|
|
encodedLst, err := encodeList(lst)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("can't encode leaf list %v: %w", item.key, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return bkt.Put(item.key, encodedLst)
|
2020-10-28 14:49:30 +00:00
|
|
|
}
|
|
|
|
|
2020-12-08 07:51:34 +00:00
|
|
|
// encodeList decodes list of bytes into a single blog for list bucket indexes.
|
|
|
|
func encodeList(lst [][]byte) ([]byte, error) {
|
2021-03-22 08:10:01 +00:00
|
|
|
w := io.NewBufBinWriter()
|
|
|
|
w.WriteVarUint(uint64(len(lst)))
|
|
|
|
for i := range lst {
|
|
|
|
w.WriteVarBytes(lst[i])
|
2020-12-08 07:51:34 +00:00
|
|
|
}
|
2021-03-22 08:10:01 +00:00
|
|
|
if w.Err != nil {
|
|
|
|
return nil, w.Err
|
|
|
|
}
|
|
|
|
return w.Bytes(), nil
|
2020-12-08 07:51:34 +00:00
|
|
|
}
|
2020-10-28 14:49:30 +00:00
|
|
|
|
2020-12-08 07:51:34 +00:00
|
|
|
// decodeList decodes blob into the list of bytes from list bucket index.
|
|
|
|
func decodeList(data []byte) (lst [][]byte, err error) {
|
|
|
|
if len(data) == 0 {
|
|
|
|
return nil, nil
|
|
|
|
}
|
2021-03-22 08:10:01 +00:00
|
|
|
r := io.NewBinReaderFromBuf(data)
|
|
|
|
l := r.ReadVarUint()
|
|
|
|
lst = make([][]byte, l)
|
|
|
|
for i := range lst {
|
|
|
|
lst[i] = r.ReadVarBytes()
|
|
|
|
}
|
|
|
|
if r.Err != nil {
|
|
|
|
return nil, r.Err
|
2020-11-10 12:55:54 +00:00
|
|
|
}
|
2020-12-08 07:51:34 +00:00
|
|
|
return lst, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// updateBlobovniczaID for existing objects if they were moved from from
|
|
|
|
// one blobovnicza to another.
|
2022-01-26 12:11:13 +00:00
|
|
|
func updateBlobovniczaID(tx *bbolt.Tx, addr *addressSDK.Address, id *blobovnicza.ID) error {
|
2021-04-06 10:56:06 +00:00
|
|
|
bkt, err := tx.CreateBucketIfNotExists(smallBucketName(addr.ContainerID()))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
2020-12-08 07:51:34 +00:00
|
|
|
}
|
|
|
|
|
2021-04-06 10:56:06 +00:00
|
|
|
return bkt.Put(objectKey(addr.ObjectID()), *id)
|
2020-12-08 07:51:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// updateSpliInfo for existing objects if storage filled with extra information
|
|
|
|
// about last object in split hierarchy or linking object.
|
2022-01-26 12:11:13 +00:00
|
|
|
func updateSplitInfo(tx *bbolt.Tx, addr *addressSDK.Address, from *objectSDK.SplitInfo) error {
|
2020-12-08 07:51:34 +00:00
|
|
|
bkt := tx.Bucket(rootBucketName(addr.ContainerID()))
|
|
|
|
if bkt == nil {
|
|
|
|
// if object doesn't exists and we want to update split info on it
|
|
|
|
// then ignore, this should never happen
|
|
|
|
return ErrIncorrectSplitInfoUpdate
|
|
|
|
}
|
|
|
|
|
|
|
|
objectKey := objectKey(addr.ObjectID())
|
|
|
|
|
|
|
|
rawSplitInfo := bkt.Get(objectKey)
|
|
|
|
if len(rawSplitInfo) == 0 {
|
|
|
|
return ErrIncorrectSplitInfoUpdate
|
|
|
|
}
|
|
|
|
|
|
|
|
to := objectSDK.NewSplitInfo()
|
|
|
|
|
|
|
|
err := to.Unmarshal(rawSplitInfo)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("can't unmarshal split info from root index: %w", err)
|
|
|
|
}
|
|
|
|
|
2021-04-15 07:23:52 +00:00
|
|
|
result := util.MergeSplitInfo(from, to)
|
2020-12-08 07:51:34 +00:00
|
|
|
|
|
|
|
rawSplitInfo, err = result.Marshal()
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("can't marhsal merged split info: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return bkt.Put(objectKey, rawSplitInfo)
|
|
|
|
}
|
|
|
|
|
|
|
|
// splitInfoFromObject returns split info based on last or linkin object.
|
|
|
|
// Otherwise returns nil, nil.
|
2022-03-03 14:19:05 +00:00
|
|
|
func splitInfoFromObject(obj *objectSDK.Object) (*objectSDK.SplitInfo, error) {
|
2020-12-08 07:51:34 +00:00
|
|
|
if obj.Parent() == nil {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
info := objectSDK.NewSplitInfo()
|
|
|
|
info.SetSplitID(obj.SplitID())
|
|
|
|
|
|
|
|
switch {
|
|
|
|
case isLinkObject(obj):
|
|
|
|
info.SetLink(obj.ID())
|
|
|
|
case isLastObject(obj):
|
|
|
|
info.SetLastPart(obj.ID())
|
|
|
|
default:
|
|
|
|
return nil, ErrIncorrectRootObject // should never happen
|
|
|
|
}
|
|
|
|
|
|
|
|
return info, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// isLinkObject returns true if object contains parent header and list
|
|
|
|
// of children.
|
2022-03-03 14:19:05 +00:00
|
|
|
func isLinkObject(obj *objectSDK.Object) bool {
|
2020-12-08 07:51:34 +00:00
|
|
|
return len(obj.Children()) > 0 && obj.Parent() != nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// isLastObject returns true if object contains only parent header without list
|
|
|
|
// of children.
|
2022-03-03 14:19:05 +00:00
|
|
|
func isLastObject(obj *objectSDK.Object) bool {
|
2020-12-08 07:51:34 +00:00
|
|
|
return len(obj.Children()) == 0 && obj.Parent() != nil
|
2020-10-28 14:49:30 +00:00
|
|
|
}
|