forked from TrueCloudLab/frostfs-node
ad14df07f6
Make Object Get service to work with `AddressGroup` instead of `Address` in order to support multiple addresses of the storage node. Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
48 lines
1.1 KiB
Go
48 lines
1.1 KiB
Go
package getsvc
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
|
|
objectSDK "github.com/nspcc-dev/neofs-api-go/pkg/object"
|
|
"github.com/nspcc-dev/neofs-node/pkg/core/object"
|
|
"github.com/nspcc-dev/neofs-node/pkg/network"
|
|
"go.uber.org/zap"
|
|
)
|
|
|
|
func (exec *execCtx) processNode(ctx context.Context, addr network.AddressGroup) bool {
|
|
exec.log.Debug("processing node...")
|
|
|
|
client, ok := exec.remoteClient(addr)
|
|
if !ok {
|
|
return true
|
|
}
|
|
|
|
obj, err := client.getObject(exec, addr)
|
|
|
|
var errSplitInfo *objectSDK.SplitInfoError
|
|
|
|
switch {
|
|
default:
|
|
exec.status = statusUndefined
|
|
exec.err = object.ErrNotFound
|
|
|
|
exec.log.Debug("remote call failed",
|
|
zap.String("error", err.Error()),
|
|
)
|
|
case err == nil:
|
|
exec.status = statusOK
|
|
exec.err = nil
|
|
exec.collectedObject = object.NewFromSDK(obj)
|
|
exec.writeCollectedObject()
|
|
case errors.Is(err, object.ErrAlreadyRemoved):
|
|
exec.status = statusINHUMED
|
|
exec.err = object.ErrAlreadyRemoved
|
|
case errors.As(err, &errSplitInfo):
|
|
exec.status = statusVIRTUAL
|
|
mergeSplitInfo(exec.splitInfo(), errSplitInfo.SplitInfo())
|
|
exec.err = objectSDK.NewSplitInfoError(exec.infoSplit)
|
|
}
|
|
|
|
return exec.status != statusUndefined
|
|
}
|