本站源代码
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

94 行
2.3KB

  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. "strings"
  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. var wildcardRegexpReplacer = strings.NewReplacer(
  23. // characters in the wildcard that must
  24. // be escaped in the regexp
  25. "+", `\+`,
  26. "(", `\(`,
  27. ")", `\)`,
  28. "^", `\^`,
  29. "$", `\$`,
  30. ".", `\.`,
  31. "{", `\{`,
  32. "}", `\}`,
  33. "[", `\[`,
  34. "]", `\]`,
  35. `|`, `\|`,
  36. `\`, `\\`,
  37. // wildcard characters
  38. "*", ".*",
  39. "?", ".")
  40. type WildcardQuery struct {
  41. Wildcard string `json:"wildcard"`
  42. FieldVal string `json:"field,omitempty"`
  43. BoostVal *Boost `json:"boost,omitempty"`
  44. }
  45. // NewWildcardQuery creates a new Query which finds
  46. // documents containing terms that match the
  47. // specified wildcard. In the wildcard pattern '*'
  48. // will match any sequence of 0 or more characters,
  49. // and '?' will match any single character.
  50. func NewWildcardQuery(wildcard string) *WildcardQuery {
  51. return &WildcardQuery{
  52. Wildcard: wildcard,
  53. }
  54. }
  55. func (q *WildcardQuery) SetBoost(b float64) {
  56. boost := Boost(b)
  57. q.BoostVal = &boost
  58. }
  59. func (q *WildcardQuery) Boost() float64 {
  60. return q.BoostVal.Value()
  61. }
  62. func (q *WildcardQuery) SetField(f string) {
  63. q.FieldVal = f
  64. }
  65. func (q *WildcardQuery) Field() string {
  66. return q.FieldVal
  67. }
  68. func (q *WildcardQuery) Searcher(i index.IndexReader, m mapping.IndexMapping, options search.SearcherOptions) (search.Searcher, error) {
  69. field := q.FieldVal
  70. if q.FieldVal == "" {
  71. field = m.DefaultSearchField()
  72. }
  73. regexpString := wildcardRegexpReplacer.Replace(q.Wildcard)
  74. return searcher.NewRegexpStringSearcher(i, regexpString, field,
  75. q.BoostVal.Value(), options)
  76. }
  77. func (q *WildcardQuery) Validate() error {
  78. return nil // real validation delayed until searcher constructor
  79. }
上海开阖软件有限公司 沪ICP备12045867号-1