~slub.team/goobi-indexserver/3.x

« back to all changes in this revision

Viewing changes to solr/core/src/java/org/apache/solr/search/function/ValueSourceScorer.java

  • Committer: Sebastian Meyer
  • Date: 2012-08-03 09:12:40 UTC
  • Revision ID: sebastian.meyer@slub-dresden.de-20120803091240-x6861b0vabq1xror
Remove Lucene and Solr source code and add patches instead
Fix Bug #985487: Auto-suggestion for the search interface

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/**
2
 
 * Licensed to the Apache Software Foundation (ASF) under one or more
3
 
 * contributor license agreements.  See the NOTICE file distributed with
4
 
 * this work for additional information regarding copyright ownership.
5
 
 * The ASF licenses this file to You under the Apache License, Version 2.0
6
 
 * (the "License"); you may not use this file except in compliance with
7
 
 * the License.  You may obtain a copy of the License at
8
 
 *
9
 
 *     http://www.apache.org/licenses/LICENSE-2.0
10
 
 *
11
 
 * Unless required by applicable law or agreed to in writing, software
12
 
 * distributed under the License is distributed on an "AS IS" BASIS,
13
 
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
 
 * See the License for the specific language governing permissions and
15
 
 * limitations under the License.
16
 
 */
17
 
 
18
 
package org.apache.solr.search.function;
19
 
 
20
 
import org.apache.lucene.index.IndexReader;
21
 
import org.apache.lucene.search.Explanation;
22
 
import org.apache.lucene.search.Scorer;
23
 
 
24
 
import java.io.IOException;
25
 
 
26
 
/** @lucene.internal */
27
 
public class ValueSourceScorer extends Scorer {
28
 
  protected IndexReader reader;
29
 
  private int doc = -1;
30
 
  protected final int maxDoc;
31
 
  protected final DocValues values;
32
 
  protected boolean checkDeletes;
33
 
 
34
 
  protected ValueSourceScorer(IndexReader reader, DocValues values) {
35
 
    super(null, null);
36
 
    this.reader = reader;
37
 
    this.maxDoc = reader.maxDoc();
38
 
    this.values = values;
39
 
    setCheckDeletes(true);
40
 
  }
41
 
 
42
 
  public IndexReader getReader() {
43
 
    return reader;
44
 
  }
45
 
 
46
 
  public void setCheckDeletes(boolean checkDeletes) {
47
 
    this.checkDeletes = checkDeletes && reader.hasDeletions();
48
 
  }
49
 
 
50
 
  public boolean matches(int doc) {
51
 
    return (!checkDeletes || !reader.isDeleted(doc)) && matchesValue(doc);
52
 
  }
53
 
 
54
 
  public boolean matchesValue(int doc) {
55
 
    return true;
56
 
  }
57
 
 
58
 
  @Override
59
 
  public int docID() {
60
 
    return doc;
61
 
  }
62
 
 
63
 
  @Override
64
 
  public int nextDoc() throws IOException {
65
 
    for (; ;) {
66
 
      doc++;
67
 
      if (doc >= maxDoc) return doc = NO_MORE_DOCS;
68
 
      if (matches(doc)) return doc;
69
 
    }
70
 
  }
71
 
 
72
 
  @Override
73
 
  public int advance(int target) throws IOException {
74
 
    // also works fine when target==NO_MORE_DOCS
75
 
    doc = target - 1;
76
 
    return nextDoc();
77
 
  }
78
 
 
79
 
  public int doc() {
80
 
    return doc;
81
 
  }
82
 
 
83
 
  public boolean next() {
84
 
    for (; ;) {
85
 
      doc++;
86
 
      if (doc >= maxDoc) return false;
87
 
      if (matches(doc)) return true;
88
 
    }
89
 
  }
90
 
 
91
 
  public boolean skipTo(int target) {
92
 
    doc = target - 1;
93
 
    return next();
94
 
  }
95
 
 
96
 
 
97
 
  @Override
98
 
  public float score() throws IOException {
99
 
    return values.floatVal(doc);
100
 
  }
101
 
 
102
 
  public Explanation explain(int doc) throws IOException {
103
 
    return values.explain(doc);
104
 
  }
105
 
}
106