collector.go 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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 search
  15. import (
  16. "context"
  17. "time"
  18. "github.com/blevesearch/bleve/index"
  19. )
  20. type Collector interface {
  21. Collect(ctx context.Context, searcher Searcher, reader index.IndexReader) error
  22. Results() DocumentMatchCollection
  23. Total() uint64
  24. MaxScore() float64
  25. Took() time.Duration
  26. SetFacetsBuilder(facetsBuilder *FacetsBuilder)
  27. FacetResults() FacetResults
  28. }
  29. // DocumentMatchHandler is the type of document match callback
  30. // bleve will invoke during the search.
  31. // Eventually, bleve will indicate the completion of an ongoing search,
  32. // by passing a nil value for the document match callback.
  33. // The application should take a copy of the hit/documentMatch
  34. // if it wish to own it or need prolonged access to it.
  35. type DocumentMatchHandler func(hit *DocumentMatch) error
  36. type MakeDocumentMatchHandlerKeyType string
  37. var MakeDocumentMatchHandlerKey = MakeDocumentMatchHandlerKeyType(
  38. "MakeDocumentMatchHandlerKey")
  39. // MakeDocumentMatchHandler is an optional DocumentMatchHandler
  40. // builder function which the applications can pass to bleve.
  41. // These builder methods gives a DocumentMatchHandler function
  42. // to bleve, which it will invoke on every document matches.
  43. type MakeDocumentMatchHandler func(ctx *SearchContext) (
  44. callback DocumentMatchHandler, loadID bool, err error)