Dmitrii Stepanov
692749dba1
Some checks failed
DCO action / DCO (pull_request) Failing after 1m30s
Tests and linters / Run gofumpt (pull_request) Successful in 1m26s
Vulncheck / Vulncheck (pull_request) Successful in 2m11s
Pre-commit hooks / Pre-commit (pull_request) Successful in 2m25s
Build / Build Components (pull_request) Successful in 2m29s
Tests and linters / Lint (pull_request) Failing after 2m26s
Tests and linters / gopls check (pull_request) Successful in 2m43s
Tests and linters / Staticcheck (pull_request) Successful in 2m56s
Tests and linters / Tests (pull_request) Successful in 4m22s
Tests and linters / Tests with -race (pull_request) Successful in 5m58s
Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
45 lines
920 B
Go
45 lines
920 B
Go
package searchsvc
|
|
|
|
import (
|
|
"context"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/internal/logs"
|
|
"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,
|
|
prm: prm,
|
|
}
|
|
|
|
exec.setLogger(s.log)
|
|
|
|
return exec.execute(ctx)
|
|
}
|
|
|
|
func (exec *execCtx) execute(ctx context.Context) error {
|
|
exec.log.Debug(ctx, logs.ServingRequest)
|
|
|
|
err := exec.executeLocal(ctx)
|
|
exec.logResult(err)
|
|
|
|
if exec.isLocal() {
|
|
exec.log.Debug(ctx, logs.SearchReturnResultDirectly)
|
|
return err
|
|
}
|
|
|
|
err = exec.executeOnContainer(ctx)
|
|
exec.logResult(err)
|
|
return err
|
|
}
|
|
|
|
func (exec *execCtx) logResult(err error) {
|
|
switch {
|
|
default:
|
|
exec.log.Debug(context.Background(), logs.OperationFinishedWithError, zap.String("error", err.Error()))
|
|
case err == nil:
|
|
exec.log.Debug(context.Background(), logs.OperationFinishedSuccessfully)
|
|
}
|
|
}
|