Class NumericUtils


  • public final class NumericUtils
    extends java.lang.Object
    This is a helper class to generate prefix-encoded representations for numerical values and supplies converters to represent float/double values as sortable integers/longs.

    To quickly execute range queries in Apache Lucene, a range is divided recursively into multiple intervals for searching: The center of the range is searched only with the lowest possible precision in the trie, while the boundaries are matched more exactly. This reduces the number of terms dramatically.

    This class generates terms to achieve this: First the numerical integer values need to be converted to bytes. For that integer values (32 bit or 64 bit) are made unsigned and the bits are converted to ASCII chars with each 7 bit. The resulting byte[] is sortable like the original integer value (even using UTF-8 sort order). Each value is also prefixed (in the first char) by the shift value (number of bits removed) used during encoding.

    To also index floating point numbers, this class supplies two methods to convert them to integer values by changing their bit layout: doubleToSortableLong(double), floatToSortableInt(float). You will have no precision loss by converting floating point numbers to integers and back (only that the integer form is not usable). Other data types like dates can easily converted to longs or ints (e.g. date to long: Date.getTime()).

    For easy usage, the trie algorithm is implemented for indexing inside NumericTokenStream that can index int, long, float, and double. For querying, NumericRangeQuery and NumericRangeFilter implement the query part for the same data types.

    This class can also be used, to generate lexicographically sortable (according to BytesRef.getUTF8SortedAsUTF16Comparator()) representations of numeric data types for other usages (e.g. sorting).

    Since:
    2.9, API changed non backwards-compliant in 4.0
    • Method Detail

      • longToPrefixCoded

        public static int longToPrefixCoded​(long val,
                                            int shift,
                                            BytesRef bytes)
        Returns prefix coded bits after reducing the precision by shift bits. This is method is used by NumericTokenStream. After encoding, bytes.offset will always be 0.
        Parameters:
        val - the numeric value
        shift - how many bits to strip from the right
        bytes - will contain the encoded value
        Returns:
        the hash code for indexing (TermsHash)
      • intToPrefixCoded

        public static int intToPrefixCoded​(int val,
                                           int shift,
                                           BytesRef bytes)
        Returns prefix coded bits after reducing the precision by shift bits. This is method is used by NumericTokenStream. After encoding, bytes.offset will always be 0.
        Parameters:
        val - the numeric value
        shift - how many bits to strip from the right
        bytes - will contain the encoded value
        Returns:
        the hash code for indexing (TermsHash)
      • longToPrefixCodedBytes

        public static void longToPrefixCodedBytes​(long val,
                                                  int shift,
                                                  BytesRef bytes)
        Returns prefix coded bits after reducing the precision by shift bits. This is method is used by NumericTokenStream. After encoding, bytes.offset will always be 0.
        Parameters:
        val - the numeric value
        shift - how many bits to strip from the right
        bytes - will contain the encoded value
      • intToPrefixCodedBytes

        public static void intToPrefixCodedBytes​(int val,
                                                 int shift,
                                                 BytesRef bytes)
        Returns prefix coded bits after reducing the precision by shift bits. This is method is used by NumericTokenStream. After encoding, bytes.offset will always be 0.
        Parameters:
        val - the numeric value
        shift - how many bits to strip from the right
        bytes - will contain the encoded value
      • getPrefixCodedLongShift

        public static int getPrefixCodedLongShift​(BytesRef val)
        Returns the shift value from a prefix encoded long.
        Throws:
        java.lang.NumberFormatException - if the supplied BytesRef is not correctly prefix encoded.
      • getPrefixCodedIntShift

        public static int getPrefixCodedIntShift​(BytesRef val)
        Returns the shift value from a prefix encoded int.
        Throws:
        java.lang.NumberFormatException - if the supplied BytesRef is not correctly prefix encoded.
      • doubleToSortableLong

        public static long doubleToSortableLong​(double val)
        Converts a double value to a sortable signed long. The value is converted by getting their IEEE 754 floating-point "double format" bit layout and then some bits are swapped, to be able to compare the result as long. By this the precision is not reduced, but the value can easily used as a long. The sort order (including Double.NaN) is defined by Double.compareTo(java.lang.Double); NaN is greater than positive infinity.
        See Also:
        sortableLongToDouble(long)
      • sortableLongToDouble

        public static double sortableLongToDouble​(long val)
        Converts a sortable long back to a double.
        See Also:
        doubleToSortableLong(double)
      • floatToSortableInt

        public static int floatToSortableInt​(float val)
        Converts a float value to a sortable signed int. The value is converted by getting their IEEE 754 floating-point "float format" bit layout and then some bits are swapped, to be able to compare the result as int. By this the precision is not reduced, but the value can easily used as an int. The sort order (including Float.NaN) is defined by Float.compareTo(java.lang.Float); NaN is greater than positive infinity.
        See Also:
        sortableIntToFloat(int)
      • sortableIntToFloat

        public static float sortableIntToFloat​(int val)
        Converts a sortable int back to a float.
        See Also:
        floatToSortableInt(float)
      • filterPrefixCodedLongs

        public static TermsEnum filterPrefixCodedLongs​(TermsEnum termsEnum)
        Filters the given TermsEnum by accepting only prefix coded 64 bit terms with a shift value of 0.
        Parameters:
        termsEnum - the terms enum to filter
        Returns:
        a filtered TermsEnum that only returns prefix coded 64 bit terms with a shift value of 0.
      • filterPrefixCodedInts

        public static TermsEnum filterPrefixCodedInts​(TermsEnum termsEnum)
        Filters the given TermsEnum by accepting only prefix coded 32 bit terms with a shift value of 0.
        Parameters:
        termsEnum - the terms enum to filter
        Returns:
        a filtered TermsEnum that only returns prefix coded 32 bit terms with a shift value of 0.