frostfs-node/pkg/services/object/search/v2/service.go

61 lines
1.3 KiB
Go
Raw Normal View History

package searchsvc
import (
objectV2 "github.com/TrueCloudLab/frostfs-api-go/v2/object"
objectSvc "github.com/TrueCloudLab/frostfs-node/pkg/services/object"
searchsvc "github.com/TrueCloudLab/frostfs-node/pkg/services/object/search"
objutil "github.com/TrueCloudLab/frostfs-node/pkg/services/object/util"
)
// Service implements Search operation of Object service v2.
type Service struct {
*cfg
}
// Option represents Service constructor option.
type Option func(*cfg)
type cfg struct {
svc *searchsvc.Service
keyStorage *objutil.KeyStorage
}
// NewService constructs Service instance from provided options.
func NewService(opts ...Option) *Service {
c := new(cfg)
for i := range opts {
opts[i](c)
}
return &Service{
cfg: c,
}
}
// Search calls internal service and returns v2 object stream.
func (s *Service) Search(req *objectV2.SearchRequest, stream objectSvc.SearchStream) error {
p, err := s.toPrm(req, stream)
if err != nil {
return err
}
return s.svc.Search(stream.Context(), *p)
}
// WithInternalService returns option to set entity
// that handles request payload.
func WithInternalService(v *searchsvc.Service) Option {
return func(c *cfg) {
c.svc = v
}
}
// WithKeyStorage returns option to set local private key storage.
func WithKeyStorage(ks *objutil.KeyStorage) Option {
return func(c *cfg) {
c.keyStorage = ks
}
}