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

org.apache.lucene.facet.FacetUtils Maven / Gradle / Ivy

There is a newer version: 10.0.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.lucene.facet;

import java.io.IOException;
import java.util.function.BiConsumer;
import org.apache.lucene.facet.taxonomy.BackCompatSortedNumericDocValues;
import org.apache.lucene.index.BinaryDocValues;
import org.apache.lucene.index.LeafReader;
import org.apache.lucene.index.SortedNumericDocValues;
import org.apache.lucene.search.DocIdSetIterator;
import org.apache.lucene.util.Bits;
import org.apache.lucene.util.BytesRef;
import org.apache.lucene.util.IntsRef;

/**
 * Utility class with a single method for getting a DocIdSetIterator that skips deleted docs
 *
 * @lucene.experimental
 */
public final class FacetUtils {

  /** Do not instantiate this class */
  private FacetUtils() {}

  /**
   * Wrap the given DocIdSetIterator and liveDocs into another DocIdSetIterator that returns
   * non-deleted documents during iteration. This is useful for computing facet counts on match-all
   * style queries that need to exclude deleted documents.
   *
   * 

{@link org.apache.lucene.search.ConjunctionUtils} could be better home for this method if we * can identify use cases outside facets module. * *

Making this class pkg-private unfortunately limits the visibility of this method to {@link * org.apache.lucene.facet.sortedset.SortedSetDocValuesFacetCounts} and {@link * org.apache.lucene.facet.sortedset.ConcurrentSortedSetDocValuesFacetCounts} classes as Java does * not allow pkg-private classes to be visible to sub-packages. * * @param it {@link DocIdSetIterator} being wrapped * @param liveDocs {@link Bits} containing set bits for non-deleted docs * @return wrapped iterator */ public static DocIdSetIterator liveDocsDISI(DocIdSetIterator it, Bits liveDocs) { return new DocIdSetIterator() { @Override public int docID() { return it.docID(); } private int doNext(int doc) throws IOException { assert doc == it.docID(); // Find next document that is not deleted until we exhaust all documents while (doc != NO_MORE_DOCS && liveDocs.get(doc) == false) { doc = it.nextDoc(); } return doc; } @Override public int nextDoc() throws IOException { return doNext(it.nextDoc()); } @Override public int advance(int target) throws IOException { return doNext(it.advance(target)); } @Override public long cost() { return it.cost(); } }; } /** * Loads ordinal values as {@link SortedNumericDocValues}. If the index still uses the older * binary format, it will wrap that with the SNDV API. Newer format indexes will just load the * SNDV directly. * *

This is really only needed/useful to maintain back-compat with the binary format. Once * back-compat is no longer needed, the SNDV field should just be loaded directly. * * @deprecated Please do not rely on this method. It is added as a temporary measure for providing * index backwards-compatibility with Lucene 8 and earlier indexes, and will be removed in * Lucene 10. */ @Deprecated public static SortedNumericDocValues loadOrdinalValues(LeafReader reader, String fieldName) throws IOException { return loadOrdinalValues(reader, fieldName, null); } /** * Loads ordinal values as {@link SortedNumericDocValues}. If the index still uses the older * binary format, it will wrap that with the SNDV API. Newer format indexes will just load the * SNDV directly. The provided {@code binaryValueDecoder} allows custom decoding logic for older * binary format fields to be provided. * *

This is really only needed/useful to maintain back-compat with the binary format. Once * back-compat is no longer needed, the SNDV field should just be loaded directly. * * @deprecated Please do not rely on this method. It is added as a temporary measure for providing * index backwards-compatibility with Lucene 8 and earlier indexes, and will be removed in * Lucene 10. */ @Deprecated public static SortedNumericDocValues loadOrdinalValues( LeafReader reader, String fieldName, BiConsumer binaryValueDecoder) throws IOException { if (reader.getMetaData().getCreatedVersionMajor() <= 8) { BinaryDocValues oldStyleDocValues = reader.getBinaryDocValues(fieldName); return BackCompatSortedNumericDocValues.wrap(oldStyleDocValues, binaryValueDecoder); } else { return reader.getSortedNumericDocValues(fieldName); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy