All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.lucene.search.TermScorer Maven / Gradle / Ivy

There is a newer version: 9.1.7.Final
Show newest version
package org.apache.lucene.search;

/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import java.io.IOException;

import org.apache.lucene.index.DocsEnum;
import org.apache.lucene.search.similarities.Similarity;

/** Expert: A Scorer for documents matching a Term.
 */
final class TermScorer extends Scorer {
  private final DocsEnum docsEnum;
  private final Similarity.SimScorer docScorer;
  
  /**
   * Construct a TermScorer.
   * 
   * @param weight
   *          The weight of the Term in the query.
   * @param td
   *          An iterator over the documents matching the Term.
   * @param docScorer
   *          The Similarity.SimScorer implementation 
   *          to be used for score computations.
   */
  TermScorer(Weight weight, DocsEnum td, Similarity.SimScorer docScorer) {
    super(weight);
    this.docScorer = docScorer;
    this.docsEnum = td;
  }

  @Override
  public int docID() {
    return docsEnum.docID();
  }

  @Override
  public int freq() throws IOException {
    return docsEnum.freq();
  }

  /**
   * Advances to the next document matching the query. 
* * @return the document matching the query or NO_MORE_DOCS if there are no more documents. */ @Override public int nextDoc() throws IOException { return docsEnum.nextDoc(); } @Override public float score() throws IOException { assert docID() != NO_MORE_DOCS; return docScorer.score(docsEnum.docID(), docsEnum.freq()); } /** * Advances to the first match beyond the current whose document number is * greater than or equal to a given target.
* The implementation uses {@link DocsEnum#advance(int)}. * * @param target * The target document number. * @return the matching document or NO_MORE_DOCS if none exist. */ @Override public int advance(int target) throws IOException { return docsEnum.advance(target); } @Override public long cost() { return docsEnum.cost(); } /** Returns a string representation of this TermScorer. */ @Override public String toString() { return "scorer(" + weight + ")"; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy