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.

match_none.go 1.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. // Copyright (c) 2014 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. "encoding/json"
  17. "github.com/blevesearch/bleve/index"
  18. "github.com/blevesearch/bleve/mapping"
  19. "github.com/blevesearch/bleve/search"
  20. "github.com/blevesearch/bleve/search/searcher"
  21. )
  22. type MatchNoneQuery struct {
  23. BoostVal *Boost `json:"boost,omitempty"`
  24. }
  25. // NewMatchNoneQuery creates a Query which will not
  26. // match any documents in the index.
  27. func NewMatchNoneQuery() *MatchNoneQuery {
  28. return &MatchNoneQuery{}
  29. }
  30. func (q *MatchNoneQuery) SetBoost(b float64) {
  31. boost := Boost(b)
  32. q.BoostVal = &boost
  33. }
  34. func (q *MatchNoneQuery) Boost() float64 {
  35. return q.BoostVal.Value()
  36. }
  37. func (q *MatchNoneQuery) Searcher(i index.IndexReader, m mapping.IndexMapping, options search.SearcherOptions) (search.Searcher, error) {
  38. return searcher.NewMatchNoneSearcher(i)
  39. }
  40. func (q *MatchNoneQuery) MarshalJSON() ([]byte, error) {
  41. tmp := map[string]interface{}{
  42. "boost": q.BoostVal,
  43. "match_none": map[string]interface{}{},
  44. }
  45. return json.Marshal(tmp)
  46. }