You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. // Copyright (c) 2015 Couchbase, Inc.
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. package query
  15. import (
  16. "github.com/blevesearch/bleve/index"
  17. "github.com/blevesearch/bleve/mapping"
  18. "github.com/blevesearch/bleve/search"
  19. "github.com/blevesearch/bleve/search/searcher"
  20. )
  21. type DocIDQuery struct {
  22. IDs []string `json:"ids"`
  23. BoostVal *Boost `json:"boost,omitempty"`
  24. }
  25. // NewDocIDQuery creates a new Query object returning indexed documents among
  26. // the specified set. Combine it with ConjunctionQuery to restrict the scope of
  27. // other queries output.
  28. func NewDocIDQuery(ids []string) *DocIDQuery {
  29. return &DocIDQuery{
  30. IDs: ids,
  31. }
  32. }
  33. func (q *DocIDQuery) SetBoost(b float64) {
  34. boost := Boost(b)
  35. q.BoostVal = &boost
  36. }
  37. func (q *DocIDQuery) Boost() float64 {
  38. return q.BoostVal.Value()
  39. }
  40. func (q *DocIDQuery) Searcher(i index.IndexReader, m mapping.IndexMapping, options search.SearcherOptions) (search.Searcher, error) {
  41. return searcher.NewDocIDSearcher(i, q.IDs, q.BoostVal.Value(), options)
  42. }