2020-12-02 23:45:25 +00:00
|
|
|
package getsvc
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
"go.uber.org/zap"
|
|
|
|
)
|
|
|
|
|
|
|
|
func (exec *execCtx) executeOnContainer() {
|
|
|
|
if exec.isLocal() {
|
|
|
|
exec.log.Debug("return result directly")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-01-12 14:55:02 +00:00
|
|
|
lookupDepth := exec.netmapLookupDepth()
|
2020-12-02 23:45:25 +00:00
|
|
|
|
2021-01-12 14:55:02 +00:00
|
|
|
exec.log.Debug("trying to execute in container...",
|
|
|
|
zap.Uint64("netmap lookup depth", lookupDepth),
|
|
|
|
)
|
|
|
|
|
|
|
|
// initialize epoch number
|
|
|
|
ok := exec.initEpoch()
|
2020-12-02 23:45:25 +00:00
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-01-12 14:55:02 +00:00
|
|
|
for {
|
|
|
|
if exec.processCurrentEpoch() {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
// check the maximum depth has been reached
|
|
|
|
if lookupDepth == 0 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
lookupDepth--
|
|
|
|
|
|
|
|
// go to the previous epoch
|
|
|
|
exec.curProcEpoch--
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (exec *execCtx) processCurrentEpoch() bool {
|
|
|
|
exec.log.Debug("process epoch",
|
|
|
|
zap.Uint64("number", exec.curProcEpoch),
|
|
|
|
)
|
|
|
|
|
|
|
|
traverser, ok := exec.generateTraverser(exec.address())
|
|
|
|
if !ok {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2020-12-02 23:45:25 +00:00
|
|
|
ctx, cancel := context.WithCancel(exec.context())
|
|
|
|
defer cancel()
|
|
|
|
|
|
|
|
exec.status = statusUndefined
|
|
|
|
|
|
|
|
for {
|
|
|
|
addrs := traverser.Next()
|
|
|
|
if len(addrs) == 0 {
|
|
|
|
exec.log.Debug("no more nodes, abort placement iteration")
|
2021-01-12 14:55:02 +00:00
|
|
|
|
|
|
|
return false
|
2020-12-02 23:45:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for i := range addrs {
|
|
|
|
select {
|
|
|
|
case <-ctx.Done():
|
|
|
|
exec.log.Debug("interrupt placement iteration by context",
|
|
|
|
zap.String("error", ctx.Err().Error()),
|
|
|
|
)
|
2021-01-12 14:55:02 +00:00
|
|
|
|
|
|
|
return true
|
2020-12-02 23:45:25 +00:00
|
|
|
default:
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: consider parallel execution
|
|
|
|
// TODO: consider optimization: if status == SPLIT we can continue until
|
|
|
|
// we reach the best result - split info with linking object ID.
|
|
|
|
if exec.processNode(ctx, addrs[i]) {
|
|
|
|
exec.log.Debug("completing the operation")
|
2021-01-12 14:55:02 +00:00
|
|
|
return true
|
2020-12-02 23:45:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|