X-Git-Url: https://git.mdrn.pl/pylucene.git/blobdiff_plain/a2e61f0c04805cfcb8706176758d1283c7e3a55c..aaeed5504b982cf3545252ab528713250aa33eed:/lucene-java-3.4.0/lucene/src/java/org/apache/lucene/search/FieldDocSortedHitQueue.java?ds=sidebyside diff --git a/lucene-java-3.4.0/lucene/src/java/org/apache/lucene/search/FieldDocSortedHitQueue.java b/lucene-java-3.4.0/lucene/src/java/org/apache/lucene/search/FieldDocSortedHitQueue.java deleted file mode 100644 index 324b0ed..0000000 --- a/lucene-java-3.4.0/lucene/src/java/org/apache/lucene/search/FieldDocSortedHitQueue.java +++ /dev/null @@ -1,137 +0,0 @@ -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 org.apache.lucene.util.PriorityQueue; -import java.io.IOException; -import java.text.Collator; -import java.util.Locale; - -/** - * Expert: Collects sorted results from Searchable's and collates them. - * The elements put into this queue must be of type FieldDoc. - * - *

Created: Feb 11, 2004 2:04:21 PM - * - * @since lucene 1.4 - */ -class FieldDocSortedHitQueue extends PriorityQueue { - - volatile SortField[] fields = null; - - // used in the case where the fields are sorted by locale - // based strings - volatile Collator[] collators = null; - - volatile FieldComparator[] comparators = null; - - - /** - * Creates a hit queue sorted by the given list of fields. - * @param fields Fieldable names, in priority order (highest priority first). - * @param size The number of hits to retain. Must be greater than zero. - */ - FieldDocSortedHitQueue (int size) { - initialize (size); - } - - - /** - * Allows redefinition of sort fields if they are null. - * This is to handle the case using ParallelMultiSearcher where the - * original list contains AUTO and we don't know the actual sort - * type until the values come back. The fields can only be set once. - * This method should be synchronized external like all other PQ methods. - * @param fields - */ - void setFields (SortField[] fields) throws IOException { - this.fields = fields; - this.collators = hasCollators (fields); - comparators = new FieldComparator[fields.length]; - for(int fieldIDX=0;fieldIDXnull. The collators - * correspond to any SortFields which were given a specific locale. - * @param fields Array of sort fields. - * @return Array, possibly null. - */ - private Collator[] hasCollators (final SortField[] fields) { - if (fields == null) return null; - Collator[] ret = new Collator[fields.length]; - for (int i=0; ia is less relevant than b. - * @param a ScoreDoc - * @param b ScoreDoc - * @return true if document a should be sorted after document b. - */ - @SuppressWarnings("unchecked") @Override - protected final boolean lessThan(final FieldDoc docA, final FieldDoc docB) { - final int n = fields.length; - int c = 0; - for (int i=0; i docB.doc; - - return c > 0; - } -}