71b87155ef
Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
55 lines
1.2 KiB
Go
55 lines
1.2 KiB
Go
package blobstor
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
|
|
"github.com/nspcc-dev/neofs-node/pkg/core/object"
|
|
"github.com/nspcc-dev/neofs-node/pkg/local_object_storage/blobstor/fstree"
|
|
)
|
|
|
|
// GetBigPrm groups the parameters of GetBig operation.
|
|
type GetBigPrm struct {
|
|
address
|
|
}
|
|
|
|
// GetBigRes groups resulting values of GetBig operation.
|
|
type GetBigRes struct {
|
|
roObject
|
|
}
|
|
|
|
// GetBig reads the object from shallow dir of BLOB storage by address.
|
|
//
|
|
// Returns any error encountered that
|
|
// did not allow to completely read the object.
|
|
//
|
|
// Returns ErrNotFound if requested object is not
|
|
// presented in shallow dir.
|
|
func (b *BlobStor) GetBig(prm *GetBigPrm) (*GetBigRes, error) {
|
|
// get compressed object data
|
|
data, err := b.fsTree.Get(prm.addr)
|
|
if err != nil {
|
|
if errors.Is(err, fstree.ErrFileNotFound) {
|
|
return nil, object.ErrNotFound
|
|
}
|
|
|
|
return nil, fmt.Errorf("could not read object from fs tree: %w", err)
|
|
}
|
|
|
|
data, err = b.decompressor(data)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("could not decompress object data: %w", err)
|
|
}
|
|
|
|
// unmarshal the object
|
|
obj := object.New()
|
|
if err := obj.Unmarshal(data); err != nil {
|
|
return nil, fmt.Errorf("could not unmarshal the object: %w", err)
|
|
}
|
|
|
|
return &GetBigRes{
|
|
roObject: roObject{
|
|
obj: obj,
|
|
},
|
|
}, nil
|
|
}
|