本站源代码
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.

110 line
2.6KB

  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 searcher
  15. import (
  16. "reflect"
  17. "github.com/blevesearch/bleve/index"
  18. "github.com/blevesearch/bleve/search"
  19. "github.com/blevesearch/bleve/search/scorer"
  20. "github.com/blevesearch/bleve/size"
  21. )
  22. var reflectStaticSizeDocIDSearcher int
  23. func init() {
  24. var ds DocIDSearcher
  25. reflectStaticSizeDocIDSearcher = int(reflect.TypeOf(ds).Size())
  26. }
  27. // DocIDSearcher returns documents matching a predefined set of identifiers.
  28. type DocIDSearcher struct {
  29. reader index.DocIDReader
  30. scorer *scorer.ConstantScorer
  31. count int
  32. }
  33. func NewDocIDSearcher(indexReader index.IndexReader, ids []string, boost float64,
  34. options search.SearcherOptions) (searcher *DocIDSearcher, err error) {
  35. reader, err := indexReader.DocIDReaderOnly(ids)
  36. if err != nil {
  37. return nil, err
  38. }
  39. scorer := scorer.NewConstantScorer(1.0, boost, options)
  40. return &DocIDSearcher{
  41. scorer: scorer,
  42. reader: reader,
  43. count: len(ids),
  44. }, nil
  45. }
  46. func (s *DocIDSearcher) Size() int {
  47. return reflectStaticSizeDocIDSearcher + size.SizeOfPtr +
  48. s.reader.Size() +
  49. s.scorer.Size()
  50. }
  51. func (s *DocIDSearcher) Count() uint64 {
  52. return uint64(s.count)
  53. }
  54. func (s *DocIDSearcher) Weight() float64 {
  55. return s.scorer.Weight()
  56. }
  57. func (s *DocIDSearcher) SetQueryNorm(qnorm float64) {
  58. s.scorer.SetQueryNorm(qnorm)
  59. }
  60. func (s *DocIDSearcher) Next(ctx *search.SearchContext) (*search.DocumentMatch, error) {
  61. docidMatch, err := s.reader.Next()
  62. if err != nil {
  63. return nil, err
  64. }
  65. if docidMatch == nil {
  66. return nil, nil
  67. }
  68. docMatch := s.scorer.Score(ctx, docidMatch)
  69. return docMatch, nil
  70. }
  71. func (s *DocIDSearcher) Advance(ctx *search.SearchContext, ID index.IndexInternalID) (*search.DocumentMatch, error) {
  72. docidMatch, err := s.reader.Advance(ID)
  73. if err != nil {
  74. return nil, err
  75. }
  76. if docidMatch == nil {
  77. return nil, nil
  78. }
  79. docMatch := s.scorer.Score(ctx, docidMatch)
  80. return docMatch, nil
  81. }
  82. func (s *DocIDSearcher) Close() error {
  83. return s.reader.Close()
  84. }
  85. func (s *DocIDSearcher) Min() int {
  86. return 0
  87. }
  88. func (s *DocIDSearcher) DocumentMatchPoolSize() int {
  89. return 1
  90. }
上海开阖软件有限公司 沪ICP备12045867号-1