2020-11-17 16:29:00 +00:00
|
|
|
package blobstor
|
|
|
|
|
|
|
|
import (
|
2021-05-18 08:12:51 +00:00
|
|
|
"errors"
|
|
|
|
|
2023-03-07 13:38:26 +00:00
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/local_object_storage/blobstor/common"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/local_object_storage/util/logicerr"
|
|
|
|
apistatus "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/client/status"
|
2020-11-17 16:29:00 +00:00
|
|
|
)
|
|
|
|
|
2022-07-06 12:39:35 +00:00
|
|
|
// Get reads the object from b.
|
|
|
|
// If the descriptor is present, only one sub-storage is tried,
|
|
|
|
// Otherwise, each sub-storage is tried in order.
|
|
|
|
func (b *BlobStor) Get(prm common.GetPrm) (common.GetRes, error) {
|
2022-11-15 12:33:48 +00:00
|
|
|
b.modeMtx.RLock()
|
|
|
|
defer b.modeMtx.RUnlock()
|
|
|
|
|
2022-07-06 14:09:50 +00:00
|
|
|
if prm.StorageID == nil {
|
2022-07-08 11:33:49 +00:00
|
|
|
for i := range b.storage {
|
|
|
|
res, err := b.storage[i].Storage.Get(prm)
|
|
|
|
if err == nil || !errors.As(err, new(apistatus.ObjectNotFound)) {
|
|
|
|
return res, err
|
|
|
|
}
|
2022-07-06 12:39:35 +00:00
|
|
|
}
|
2022-07-08 11:33:49 +00:00
|
|
|
|
2022-10-26 12:23:12 +00:00
|
|
|
return common.GetRes{}, logicerr.Wrap(apistatus.ObjectNotFound{})
|
2022-07-06 12:39:35 +00:00
|
|
|
}
|
2022-07-06 14:09:50 +00:00
|
|
|
if len(prm.StorageID) == 0 {
|
2022-07-11 12:34:17 +00:00
|
|
|
return b.storage[len(b.storage)-1].Storage.Get(prm)
|
2022-07-06 12:39:35 +00:00
|
|
|
}
|
2022-07-08 11:33:49 +00:00
|
|
|
return b.storage[0].Storage.Get(prm)
|
2022-07-05 13:47:39 +00:00
|
|
|
}
|