forked from TrueCloudLab/frostfs-node
70ffdf3478
Replace `ErrNotFound`/`ErrAlreadyRemoved` error from `pkg/core/object` package with `ObjectNotFound`/`ObjectAlreadyRemoved` one from `apistatus` package. These errors are returned by storage node's server as NeoFS API statuses. Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
25 lines
697 B
Go
25 lines
697 B
Go
package blobstor
|
|
|
|
// GetSmallPrm groups the parameters of GetSmallPrm operation.
|
|
type GetSmallPrm struct {
|
|
address
|
|
rwBlobovniczaID
|
|
}
|
|
|
|
// GetSmallRes groups resulting values of GetSmall operation.
|
|
type GetSmallRes struct {
|
|
roObject
|
|
}
|
|
|
|
// GetSmall reads the object from blobovnicza of BLOB storage by address.
|
|
//
|
|
// If blobovnicza ID is not set or set to nil, BlobStor tries to get object
|
|
// from any blobovnicza.
|
|
//
|
|
// Returns any error encountered that
|
|
// did not allow to completely read the object.
|
|
//
|
|
// Returns apistatus.ObjectNotFound if requested object is missing in blobovnicza(s).
|
|
func (b *BlobStor) GetSmall(prm *GetSmallPrm) (*GetSmallRes, error) {
|
|
return b.blobovniczas.get(prm)
|
|
}
|