perf.RandomQuery.java Source code

Java tutorial

Introduction

Here is the source code for perf.RandomQuery.java

Source

package perf;

/**
 * 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.LeafReaderContext;
import org.apache.lucene.search.ConstantScoreScorer;
import org.apache.lucene.search.ConstantScoreWeight;
import org.apache.lucene.search.DocIdSetIterator;
import org.apache.lucene.search.IndexSearcher;
import org.apache.lucene.search.Query;
import org.apache.lucene.search.Scorer;
import org.apache.lucene.search.Weight;
import org.apache.lucene.util.Bits;

public class RandomQuery extends Query {

    final double fractionKeep;

    public RandomQuery(double pctKeep) {
        this.fractionKeep = pctKeep / 100.0;
    }

    @Override
    public Weight createWeight(IndexSearcher searcher, boolean needsScores, float boost) throws IOException {
        return new ConstantScoreWeight(this, boost) {
            @Override
            public Scorer scorer(LeafReaderContext context) throws IOException {
                final int maxDoc = context.reader().maxDoc();
                final int interval = (int) (1 / fractionKeep);
                final DocIdSetIterator iterator = new DocIdSetIterator() {

                    int doc = -1;

                    @Override
                    public int docID() {
                        return doc;
                    }

                    @Override
                    public int nextDoc() throws IOException {
                        return advance(doc + 1);
                    }

                    @Override
                    public int advance(int target) throws IOException {
                        if (target >= maxDoc) {
                            return doc = NO_MORE_DOCS;
                        }
                        int intervalId = target / interval;
                        int addend = (31 * intervalId) % interval;
                        doc = intervalId * interval + addend;
                        if (doc < target) {
                            intervalId++;
                            addend = (31 * intervalId) % interval;
                            doc = intervalId * interval + addend;
                        }
                        assert doc >= target;
                        if (doc >= maxDoc) {
                            return doc = NO_MORE_DOCS;
                        }
                        return doc;
                    }

                    @Override
                    public long cost() {
                        return maxDoc / interval;
                    }

                };
                return new ConstantScoreScorer(this, score(), iterator);
            }
        };
    }

    @Override
    public String toString(String field) {
        return "RandomQuery(fractionKeep=" + fractionKeep + ")";
    }

    @Override
    public int hashCode() {
        return 31 * classHash() + new Double(fractionKeep).hashCode();
    }

    @Override
    public boolean equals(Object obj) {
        return sameClassAs(obj) && fractionKeep == ((RandomQuery) obj).fractionKeep;
    }
}