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

org.apache.lucene.document.LongPoint Maven / Gradle / Ivy

There is a newer version: 6.4.2_1
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.document;

import java.util.Arrays;
import java.util.Collection;
import org.apache.lucene.index.PointValues;
import org.apache.lucene.search.PointInSetQuery;
import org.apache.lucene.search.PointRangeQuery;
import org.apache.lucene.search.Query;
import org.apache.lucene.util.BytesRef;
import org.apache.lucene.util.NumericUtils;

/**
 * An indexed {@code long} field for fast range filters. If you also need to store the value, you
 * should add a separate {@link StoredField} instance.
 *
 * 

Finding all documents within an N-dimensional shape or range at search time is efficient. * Multiple values for the same field in one document is allowed. * *

This field defines static factory methods for creating common queries: * *

    *
  • {@link #newExactQuery(String, long)} for matching an exact 1D point. *
  • {@link #newSetQuery(String, long...)} for matching a set of 1D values. *
  • {@link #newRangeQuery(String, long, long)} for matching a 1D range. *
  • {@link #newRangeQuery(String, long[], long[])} for matching points/ranges in n-dimensional * space. *
* * @see PointValues */ public final class LongPoint extends Field { private static FieldType getType(int numDims) { FieldType type = new FieldType(); type.setDimensions(numDims, Long.BYTES); type.freeze(); return type; } @Override public void setLongValue(long value) { setLongValues(value); } /** Change the values of this field */ public void setLongValues(long... point) { if (type.pointDimensionCount() != point.length) { throw new IllegalArgumentException( "this field (name=" + name + ") uses " + type.pointDimensionCount() + " dimensions; cannot change to (incoming) " + point.length + " dimensions"); } fieldsData = pack(point); } @Override public void setBytesValue(BytesRef bytes) { throw new IllegalArgumentException("cannot change value type from long to BytesRef"); } @Override public Number numericValue() { if (type.pointDimensionCount() != 1) { throw new IllegalStateException( "this field (name=" + name + ") uses " + type.pointDimensionCount() + " dimensions; cannot convert to a single numeric value"); } BytesRef bytes = (BytesRef) fieldsData; assert bytes.length == Long.BYTES; return decodeDimension(bytes.bytes, bytes.offset); } /** * Pack a long point into a BytesRef * * @param point long[] value * @throws IllegalArgumentException is the value is null or of zero length */ public static BytesRef pack(long... point) { if (point == null) { throw new IllegalArgumentException("point must not be null"); } if (point.length == 0) { throw new IllegalArgumentException("point must not be 0 dimensions"); } byte[] packed = new byte[point.length * Long.BYTES]; for (int dim = 0; dim < point.length; dim++) { encodeDimension(point[dim], packed, dim * Long.BYTES); } return new BytesRef(packed); } /** * Unpack a BytesRef into a long point. This method can be used to unpack values that were packed * with {@link #pack(long...)}. * * @param bytesRef BytesRef Value * @param start the start offset to unpack the values from * @param buf the buffer to store the values in * @throws IllegalArgumentException if bytesRef or buf are null */ public static void unpack(BytesRef bytesRef, int start, long[] buf) { if (bytesRef == null || buf == null) { throw new IllegalArgumentException("bytesRef and buf must not be null"); } for (int i = 0, offset = start; i < buf.length; i++, offset += Long.BYTES) { buf[i] = LongPoint.decodeDimension(bytesRef.bytes, offset); } } /** * Creates a new LongPoint, indexing the provided N-dimensional long point. * * @param name field name * @param point long[] value * @throws IllegalArgumentException if the field name or value is null. */ public LongPoint(String name, long... point) { super(name, pack(point), getType(point.length)); } @Override public String toString() { StringBuilder result = new StringBuilder(); result.append(getClass().getSimpleName()); result.append(" <"); result.append(name); result.append(':'); BytesRef bytes = (BytesRef) fieldsData; for (int dim = 0; dim < type.pointDimensionCount(); dim++) { if (dim > 0) { result.append(','); } result.append(decodeDimension(bytes.bytes, bytes.offset + dim * Long.BYTES)); } result.append('>'); return result.toString(); } // public helper methods (e.g. for queries) /** Encode single long dimension */ public static void encodeDimension(long value, byte[] dest, int offset) { NumericUtils.longToSortableBytes(value, dest, offset); } /** Decode single long dimension */ public static long decodeDimension(byte[] value, int offset) { return NumericUtils.sortableBytesToLong(value, offset); } // static methods for generating queries /** * Create a query for matching an exact long value. * *

This is for simple one-dimension points, for multidimensional points use {@link * #newRangeQuery(String, long[], long[])} instead. * * @param field field name. must not be {@code null}. * @param value exact value * @throws IllegalArgumentException if {@code field} is null. * @return a query matching documents with this exact value */ public static Query newExactQuery(String field, long value) { return newRangeQuery(field, value, value); } /** * Create a range query for long values. * *

This is for simple one-dimension ranges, for multidimensional ranges use {@link * #newRangeQuery(String, long[], long[])} instead. * *

You can have half-open ranges (which are in fact </≤ or >/≥ queries) by setting * {@code lowerValue = Long.MIN_VALUE} or {@code upperValue = Long.MAX_VALUE}. * *

Ranges are inclusive. For exclusive ranges, pass {@code Math.addExact(lowerValue, 1)} or * {@code Math.addExact(upperValue, -1)}. * * @param field field name. must not be {@code null}. * @param lowerValue lower portion of the range (inclusive). * @param upperValue upper portion of the range (inclusive). * @throws IllegalArgumentException if {@code field} is null. * @return a query matching documents within this range. */ public static Query newRangeQuery(String field, long lowerValue, long upperValue) { return newRangeQuery(field, new long[] {lowerValue}, new long[] {upperValue}); } /** * Create a range query for n-dimensional long values. * *

You can have half-open ranges (which are in fact </≤ or >/≥ queries) by setting * {@code lowerValue[i] = Long.MIN_VALUE} or {@code upperValue[i] = Long.MAX_VALUE}. * *

Ranges are inclusive. For exclusive ranges, pass {@code Math.addExact(lowerValue[i], 1)} or * {@code Math.addExact(upperValue[i], -1)}. * * @param field field name. must not be {@code null}. * @param lowerValue lower portion of the range (inclusive). must not be {@code null}. * @param upperValue upper portion of the range (inclusive). must not be {@code null}. * @throws IllegalArgumentException if {@code field} is null, if {@code lowerValue} is null, if * {@code upperValue} is null, or if {@code lowerValue.length != upperValue.length} * @return a query matching documents within this range. */ public static Query newRangeQuery(String field, long[] lowerValue, long[] upperValue) { PointRangeQuery.checkArgs(field, lowerValue, upperValue); return new PointRangeQuery( field, pack(lowerValue).bytes, pack(upperValue).bytes, lowerValue.length) { @Override protected String toString(int dimension, byte[] value) { return Long.toString(decodeDimension(value, 0)); } }; } /** * Create a query matching any of the specified 1D values. This is the points equivalent of {@code * TermsQuery}. * * @param field field name. must not be {@code null}. * @param values all values to match */ public static Query newSetQuery(String field, long... values) { // Don't unexpectedly change the user's incoming values array: long[] sortedValues = values.clone(); Arrays.sort(sortedValues); final BytesRef encoded = new BytesRef(new byte[Long.BYTES]); return new PointInSetQuery( field, 1, Long.BYTES, new PointInSetQuery.Stream() { int upto; @Override public BytesRef next() { if (upto == sortedValues.length) { return null; } else { encodeDimension(sortedValues[upto], encoded.bytes, 0); upto++; return encoded; } } }) { @Override protected String toString(byte[] value) { assert value.length == Long.BYTES; return Long.toString(decodeDimension(value, 0)); } }; } /** * Create a query matching any of the specified 1D values. This is the points equivalent of {@code * TermsQuery}. * * @param field field name. must not be {@code null}. * @param values all values to match */ public static Query newSetQuery(String field, Collection values) { Long[] boxed = values.toArray(new Long[0]); long[] unboxed = new long[boxed.length]; for (int i = 0; i < boxed.length; i++) { unboxed[i] = boxed[i]; } return newSetQuery(field, unboxed); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy