2022-05-24 11:23:27 +00:00
|
|
|
package tree
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"context"
|
|
|
|
"errors"
|
|
|
|
|
2023-04-12 14:35:10 +00:00
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/internal/logs"
|
2023-03-07 13:38:26 +00:00
|
|
|
netmapSDK "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/netmap"
|
2022-05-24 11:23:27 +00:00
|
|
|
"go.uber.org/zap"
|
|
|
|
)
|
|
|
|
|
|
|
|
var errNoSuitableNode = errors.New("no node was found to execute the request")
|
|
|
|
|
2022-05-27 12:55:02 +00:00
|
|
|
// forEachNode executes callback for each node in the container until true is returned.
|
|
|
|
// Returns errNoSuitableNode if there was no successful attempt to dial any node.
|
|
|
|
func (s *Service) forEachNode(ctx context.Context, cntNodes []netmapSDK.NodeInfo, f func(c TreeServiceClient) bool) error {
|
2022-05-24 11:23:27 +00:00
|
|
|
for _, n := range cntNodes {
|
2022-05-26 12:40:44 +00:00
|
|
|
if bytes.Equal(n.PublicKey(), s.rawPub) {
|
2022-05-24 11:23:27 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var called bool
|
|
|
|
for _, n := range cntNodes {
|
|
|
|
var stop bool
|
|
|
|
n.IterateNetworkEndpoints(func(endpoint string) bool {
|
2022-05-28 09:27:55 +00:00
|
|
|
c, err := s.cache.get(ctx, endpoint)
|
2022-05-24 11:23:27 +00:00
|
|
|
if err != nil {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2023-04-12 14:35:10 +00:00
|
|
|
s.log.Debug(logs.TreeRedirectingTreeServiceQuery, zap.String("endpoint", endpoint))
|
2022-05-24 11:23:27 +00:00
|
|
|
called = true
|
|
|
|
stop = f(c)
|
|
|
|
return true
|
|
|
|
})
|
|
|
|
if stop {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !called {
|
|
|
|
return errNoSuitableNode
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|