Some checks failed
ci/woodpecker/pr/pre-commit Pipeline was successful
Build / Build Components (1.19) (pull_request) Successful in 2m45s
Build / Build Components (1.20) (pull_request) Successful in 8m1s
Tests and linters / Tests (1.19) (pull_request) Failing after 3m0s
Tests and linters / Tests (1.20) (pull_request) Failing after 3m20s
Tests and linters / Lint (pull_request) Failing after 9m45s
Tests and linters / Tests with -race (pull_request) Failing after 4m38s
Tests and linters / Staticcheck (pull_request) Failing after 9m4s
Signed-off-by: Airat Arifullin a.arifullin@yadro.com
57 lines
1.2 KiB
Go
57 lines
1.2 KiB
Go
package engine
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/local_object_storage/shard"
|
|
apistatus "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/client/status"
|
|
objectSDK "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/object"
|
|
oid "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/object/id"
|
|
)
|
|
|
|
func (e *StorageEngine) exists(ctx context.Context, addr oid.Address) (bool, error) {
|
|
var shPrm shard.ExistsPrm
|
|
shPrm.SetAddress(addr)
|
|
alreadyRemoved := false
|
|
exists := false
|
|
|
|
e.iterateOverSortedShards(addr, func(_ int, sh hashedShard) (stop bool) {
|
|
res, err := sh.Exists(ctx, shPrm)
|
|
if err != nil {
|
|
if shard.IsErrRemoved(err) {
|
|
alreadyRemoved = true
|
|
|
|
return true
|
|
}
|
|
|
|
var siErr *objectSDK.SplitInfoError
|
|
if errors.As(err, &siErr) {
|
|
return true
|
|
}
|
|
|
|
if shard.IsErrObjectExpired(err) {
|
|
return true
|
|
}
|
|
|
|
if !shard.IsErrNotFound(err) {
|
|
e.reportShardError(sh, "could not check existence of object in shard", err)
|
|
}
|
|
return false
|
|
}
|
|
|
|
if !exists {
|
|
exists = res.Exists()
|
|
}
|
|
|
|
return false
|
|
})
|
|
|
|
if alreadyRemoved {
|
|
errRemoved := apistatus.NewObjectAlreadyRemoved()
|
|
|
|
return false, errRemoved
|
|
}
|
|
|
|
return exists, nil
|
|
}
|