forked from TrueCloudLab/frostfs-node
66 lines
1.8 KiB
Go
66 lines
1.8 KiB
Go
package getsvc
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-api-go/v2/pkg/tracing"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/internal/logs"
|
|
"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"
|
|
"go.uber.org/zap"
|
|
)
|
|
|
|
func (exec *execCtx) processNode(ctx context.Context, info client.NodeInfo) bool {
|
|
ctx, span := tracing.StartSpanFromContext(ctx, "getService.processNode")
|
|
defer span.End()
|
|
|
|
exec.log.Debug(logs.ProcessingNode)
|
|
|
|
client, ok := exec.remoteClient(info)
|
|
if !ok {
|
|
return true
|
|
}
|
|
|
|
obj, err := client.GetObject(ctx, exec, info)
|
|
|
|
var errSplitInfo *objectSDK.SplitInfoError
|
|
var errRemoved *apistatus.ObjectAlreadyRemoved
|
|
var errOutOfRange *apistatus.ObjectOutOfRange
|
|
|
|
switch {
|
|
default:
|
|
var errNotFound apistatus.ObjectNotFound
|
|
|
|
exec.status = statusUndefined
|
|
exec.err = errNotFound
|
|
|
|
exec.log.Debug(logs.GetRemoteCallFailed,
|
|
zap.String("error", err.Error()),
|
|
)
|
|
case err == nil:
|
|
exec.status = statusOK
|
|
exec.err = nil
|
|
|
|
// 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
|
|
exec.writeCollectedObject(ctx)
|
|
}
|
|
case errors.As(err, &errRemoved):
|
|
exec.status = statusINHUMED
|
|
exec.err = errRemoved
|
|
case errors.As(err, &errOutOfRange):
|
|
exec.status = statusOutOfRange
|
|
exec.err = errOutOfRange
|
|
case errors.As(err, &errSplitInfo):
|
|
exec.status = statusVIRTUAL
|
|
mergeSplitInfo(exec.splitInfo(), errSplitInfo.SplitInfo())
|
|
exec.err = objectSDK.NewSplitInfoError(exec.infoSplit)
|
|
}
|
|
|
|
return exec.status != statusUndefined
|
|
}
|