2020-12-02 23:45:25 +00:00
|
|
|
package getsvc
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2021-05-18 08:12:51 +00:00
|
|
|
"errors"
|
2020-12-02 23:45:25 +00:00
|
|
|
|
2023-03-13 11:37:35 +00:00
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-api-go/v2/pkg/tracing"
|
2023-03-07 13:38:26 +00:00
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/core/client"
|
|
|
|
apistatus "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/client/status"
|
|
|
|
objectSDK "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/object"
|
2020-12-02 23:45:25 +00:00
|
|
|
"go.uber.org/zap"
|
|
|
|
)
|
|
|
|
|
2021-09-28 04:46:10 +00:00
|
|
|
func (exec *execCtx) processNode(ctx context.Context, info client.NodeInfo) bool {
|
2023-03-13 11:37:35 +00:00
|
|
|
ctx, span := tracing.StartSpanFromContext(ctx, "getService.processNode")
|
|
|
|
defer span.End()
|
|
|
|
|
2021-06-22 12:08:17 +00:00
|
|
|
exec.log.Debug("processing node...")
|
2020-12-02 23:45:25 +00:00
|
|
|
|
2021-09-28 04:46:10 +00:00
|
|
|
client, ok := exec.remoteClient(info)
|
2020-12-02 23:45:25 +00:00
|
|
|
if !ok {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2023-03-31 11:49:40 +00:00
|
|
|
obj, err := client.getObject(ctx, exec, info)
|
2020-12-02 23:45:25 +00:00
|
|
|
|
|
|
|
var errSplitInfo *objectSDK.SplitInfoError
|
2022-03-17 08:03:58 +00:00
|
|
|
var errRemoved *apistatus.ObjectAlreadyRemoved
|
2022-06-29 17:33:48 +00:00
|
|
|
var errOutOfRange *apistatus.ObjectOutOfRange
|
2020-12-02 23:45:25 +00:00
|
|
|
|
|
|
|
switch {
|
|
|
|
default:
|
2022-03-17 08:03:58 +00:00
|
|
|
var errNotFound apistatus.ObjectNotFound
|
|
|
|
|
2020-12-02 23:45:25 +00:00
|
|
|
exec.status = statusUndefined
|
2022-03-17 08:03:58 +00:00
|
|
|
exec.err = errNotFound
|
2020-12-02 23:45:25 +00:00
|
|
|
|
2021-06-22 12:08:17 +00:00
|
|
|
exec.log.Debug("remote call failed",
|
2020-12-02 23:45:25 +00:00
|
|
|
zap.String("error", err.Error()),
|
|
|
|
)
|
|
|
|
case err == nil:
|
|
|
|
exec.status = statusOK
|
|
|
|
exec.err = nil
|
2022-07-15 06:55:53 +00:00
|
|
|
|
|
|
|
// both object and err are nil only if the original
|
|
|
|
// request was forwarded to another node and the object
|
|
|
|
// has already been streamed to the requesting party
|
|
|
|
if obj != nil {
|
|
|
|
exec.collectedObject = obj
|
2023-03-31 11:49:40 +00:00
|
|
|
exec.writeCollectedObject(ctx)
|
2022-07-15 06:55:53 +00:00
|
|
|
}
|
2022-03-17 08:03:58 +00:00
|
|
|
case errors.As(err, &errRemoved):
|
2020-12-02 23:45:25 +00:00
|
|
|
exec.status = statusINHUMED
|
2022-03-17 08:03:58 +00:00
|
|
|
exec.err = errRemoved
|
2022-06-29 17:33:48 +00:00
|
|
|
case errors.As(err, &errOutOfRange):
|
|
|
|
exec.status = statusOutOfRange
|
|
|
|
exec.err = errOutOfRange
|
2020-12-02 23:45:25 +00:00
|
|
|
case errors.As(err, &errSplitInfo):
|
|
|
|
exec.status = statusVIRTUAL
|
|
|
|
mergeSplitInfo(exec.splitInfo(), errSplitInfo.SplitInfo())
|
|
|
|
exec.err = objectSDK.NewSplitInfoError(exec.infoSplit)
|
|
|
|
}
|
|
|
|
|
|
|
|
return exec.status != statusUndefined
|
|
|
|
}
|