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

org.apache.solr.search.AbstractReRankQuery Maven / Gradle / Ivy

There is a newer version: 9.7.0
Show newest version
/*
 * 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.
 */
package org.apache.solr.search;

import java.io.IOException;
import java.util.Map;
import java.util.Set;
import org.apache.lucene.index.IndexReader;
import org.apache.lucene.search.IndexSearcher;
import org.apache.lucene.search.Query;
import org.apache.lucene.search.QueryVisitor;
import org.apache.lucene.search.Rescorer;
import org.apache.lucene.search.ScoreDoc;
import org.apache.lucene.search.ScoreMode;
import org.apache.lucene.search.TopDocsCollector;
import org.apache.lucene.search.Weight;
import org.apache.lucene.util.BytesRef;
import org.apache.solr.handler.component.MergeStrategy;
import org.apache.solr.handler.component.QueryElevationComponent;
import org.apache.solr.request.SolrRequestInfo;

public abstract class AbstractReRankQuery extends RankQuery {
  protected Query mainQuery;
  protected final int reRankDocs;
  protected final Rescorer reRankQueryRescorer;
  protected Set boostedPriority;
  protected ReRankOperator reRankOperator;
  protected ReRankScaler reRankScaler;

  public AbstractReRankQuery(
      Query mainQuery,
      int reRankDocs,
      Rescorer reRankQueryRescorer,
      ReRankScaler reRankScaler,
      ReRankOperator reRankOperator) {
    this.mainQuery = mainQuery;
    this.reRankDocs = reRankDocs;
    this.reRankQueryRescorer = reRankQueryRescorer;
    this.reRankScaler = reRankScaler;
    this.reRankOperator = reRankOperator;
  }

  public AbstractReRankQuery(Query mainQuery, int reRankDocs, Rescorer reRankQueryRescorer) {
    this.mainQuery = mainQuery;
    this.reRankDocs = reRankDocs;
    this.reRankQueryRescorer = reRankQueryRescorer;
  }

  @Override
  public RankQuery wrap(Query _mainQuery) {
    if (_mainQuery != null) {
      this.mainQuery = _mainQuery;
    }
    return this;
  }

  @Override
  public MergeStrategy getMergeStrategy() {
    return null;
  }

  @Override
  @SuppressWarnings({"unchecked"})
  public TopDocsCollector getTopDocsCollector(
      int len, QueryCommand cmd, IndexSearcher searcher) throws IOException {
    if (this.boostedPriority == null) {
      SolrRequestInfo info = SolrRequestInfo.getRequestInfo();
      if (info != null) {
        Map context = info.getReq().getContext();
        this.boostedPriority = (Set) context.get(QueryElevationComponent.BOOSTED);
      }
    }

    return new ReRankCollector(
        reRankDocs,
        len,
        reRankQueryRescorer,
        cmd,
        searcher,
        boostedPriority,
        reRankScaler,
        reRankOperator);
  }

  @Override
  public Query rewrite(IndexReader reader) throws IOException {
    Query q = mainQuery.rewrite(reader);
    if (!q.equals(mainQuery)) {
      return rewrite(q);
    }
    return super.rewrite(reader);
  }

  protected abstract Query rewrite(Query rewrittenMainQuery) throws IOException;

  @Override
  public Weight createWeight(IndexSearcher searcher, ScoreMode scoreMode, float boost)
      throws IOException {
    final Weight mainWeight = mainQuery.createWeight(searcher, scoreMode, boost);
    return new ReRankWeight(
        mainQuery, reRankQueryRescorer, searcher, mainWeight, reRankScaler, reRankOperator);
  }

  @Override
  public void visit(QueryVisitor visitor) {
    visitor.visitLeaf(this);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy