frostfs-node/pkg/services/object/search/search.go
Leonard Lyubich 611a29f682 [#241] object/search: Refactor service processing
Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
2020-12-11 17:19:37 +03:00

50 lines
824 B
Go

package searchsvc
import (
"context"
"go.uber.org/zap"
)
// Search serves a request to select the objects.
func (s *Service) Search(ctx context.Context, prm Prm) error {
exec := &execCtx{
svc: s,
ctx: ctx,
prm: prm,
}
exec.prepare()
exec.setLogger(s.log)
exec.execute()
return exec.statusError.err
}
func (exec *execCtx) execute() {
exec.log.Debug("serving request...")
// perform local operation
exec.executeLocal()
exec.analyzeStatus(true)
}
func (exec *execCtx) analyzeStatus(execCnr bool) {
// analyze local result
switch exec.status {
default:
exec.log.Debug("operation finished with error",
zap.String("error", exec.err.Error()),
)
case statusOK:
exec.log.Debug("operation finished successfully")
}
if execCnr {
exec.executeOnContainer()
exec.analyzeStatus(false)
}
}