summaryrefslogtreecommitdiffstats
path: root/3rdparty/clucene/src/CLucene/search/ConjunctionScorer.h
blob: 4b6807209f5b4a998ed7ff32d67e70dc9624360b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/*------------------------------------------------------------------------------
* Copyright (C) 2003-2006 Ben van Klinken and the CLucene Team
* 
* Distributable under the terms of either the Apache License (Version 2.0) or 
* the GNU Lesser General Public License, as specified in the COPYING file.
------------------------------------------------------------------------------*/
#ifndef _lucene_search_ConjunctionScorer_
#define _lucene_search_ConjunctionScorer_

#if defined(_LUCENE_PRAGMA_ONCE)
# pragma once
#endif
#include "Scorer.h"
#include "Similarity.h"

CL_NS_DEF(search)

/** Scorer for conjunctions, sets of queries, all of which are required. */
class ConjunctionScorer: public Scorer {
private:
  CL_NS(util)::CLLinkedList<Scorer*,CL_NS(util)::Deletor::Object<Scorer> > scorers;
  bool firstTime;
  bool more;
  qreal coord;

  Scorer* first() const;
  Scorer* last();
  void sortScorers();
  bool doNext();
  void init();
public:
  ConjunctionScorer(Similarity* similarity);
  virtual ~ConjunctionScorer();
  TCHAR* toString(void){
	return STRDUP_TtoT(_T("ConjunctionScorer"));
  }
  void add(Scorer* scorer);
  int32_t doc() const;
  bool next();
  bool skipTo(int32_t target);
  qreal score();
  virtual void explain(int32_t doc, Explanation* ret) {
    _CLTHROWA(CL_ERR_UnsupportedOperation,"UnsupportedOperationException: ConjunctionScorer::explain");
  }


};

CL_NS_END
#endif