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

com.gemstone.gemfire.cache.lucene.internal.LuceneQueryResultsImpl Maven / Gradle / Ivy

Go to download

Apache Geode (incubating) provides a database-like consistency model, reliable transaction processing and a shared-nothing architecture to maintain very low latency performance with high concurrency processing

The 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 com.gemstone.gemfire.cache.lucene.internal;

import java.util.ArrayList;
import java.util.List;
import java.util.Map;

import com.gemstone.gemfire.cache.Region;
import com.gemstone.gemfire.cache.lucene.LuceneQueryResults;
import com.gemstone.gemfire.cache.lucene.LuceneResultStruct;
import com.gemstone.gemfire.cache.lucene.internal.distributed.EntryScore;

/**
 * Implementation of LuceneQueryResults that fetchs a page at a time
 * from the server, given a set of EntryScores (key and score).
 *
 * @param  The type of the key
 * @param  The type of the value
 */
public class LuceneQueryResultsImpl implements LuceneQueryResults {

  /**
   *  list of docs matching search query
   */
  private final List hits;
  
  /**
   * The maximum score. Lazily evaluated
   */
  private float maxScore = Float.MIN_VALUE;
  
  /**
   * The user region where values are stored.
   */
  private final Region userRegion;
  
  /**
   * The start of the next page of results we want to fetch 
   */
  private int currentHit = 0;
  
  /**
   * The page size the user wants.
   */
  private int pageSize;
  
  public LuceneQueryResultsImpl(List hits, Region userRegion, int pageSize) {
    this.hits = hits;
    this.userRegion = userRegion;
    this.pageSize = pageSize == 0 ? Integer.MAX_VALUE : pageSize;
  }

  @Override
  public List> getNextPage() {
    if(!hasNextPage()) {
      return null;
    }
    
    int end = currentHit + pageSize;
    end = end > hits.size() ? hits.size() : end;
    List scores = hits.subList(currentHit, end);
    
    ArrayList keys = new ArrayList(hits.size());
    for(EntryScore score : scores) {
      keys.add((K) score.getKey());
    }
    
    Map values = userRegion.getAll(keys);
    
    ArrayList> results = new ArrayList>(hits.size());
    for(EntryScore score : scores) {
      V value = values.get(score.getKey());
      results.add(new LuceneResultStructImpl(score.getKey(), value, score.getScore()));
    }
    

    currentHit = end;
    
    return results;
  }

  @Override
  public boolean hasNextPage() {
    return hits.size() > currentHit;
  }

  @Override
  public int size() {
    return hits.size();
  }

  @Override
  public float getMaxScore() {
    if(maxScore == Float.MIN_VALUE) {
      for(EntryScore score : hits) {
        maxScore = Math.max(maxScore, score.getScore());
      }
    }
    
    return maxScore;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy