/* * SPDX-License-Identifier: Apache-2.0 * * The OpenSearch Contributors require contributions made to * this file be licensed under the Apache-2.0 license or a * compatible open source license. */ /* * Licensed to Elasticsearch under one or more contributor * license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright * ownership. Elasticsearch 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. */ /* * Modifications Copyright OpenSearch Contributors. See * GitHub history for details. */ package org.opensearch.common.util; /** * Utility methods to do byte-level encoding. These methods are biased towards little-endian byte order because it is the most * common byte order and reading several bytes at once may be optimizable in the future with the help of sun.mist.Unsafe. * * @opensearch.internal */ public final class ByteUtils { private ByteUtils() {}; /** Zig-zag decode. */ public static long zigZagDecode(long n) { return ((n >>> 1) ^ -(n & 1)); } /** Zig-zag encode: this helps transforming small signed numbers into small positive numbers. */ public static long zigZagEncode(long n) { return (n >> 63) ^ (n << 1); } /** Write a long in little-endian format. */ public static void writeLongLE(long l, byte[] arr, int offset) { for (int i = 0; i < 8; ++i) { arr[offset++] = (byte) l; l >>>= 8; } assert l == 0; } /** Convert long to a byte array in big-endian format */ public static byte[] toByteArrayBE(long l) { byte[] result = new byte[8]; for (int i = 7; i >= 0; i--) { result[i] = (byte) (l & 0xffL); l >>= 8; } return result; } /** Write a long in little-endian format. */ public static long readLongLE(byte[] arr, int offset) { long l = arr[offset++] & 0xFFL; for (int i = 1; i < 8; ++i) { l |= (arr[offset++] & 0xFFL) << (8 * i); } return l; } /** Write an int in little-endian format. */ public static void writeIntLE(int l, byte[] arr, int offset) { for (int i = 0; i < 4; ++i) { arr[offset++] = (byte) l; l >>>= 8; } assert l == 0; } /** Read an int in little-endian format. */ public static int readIntLE(byte[] arr, int offset) { int l = arr[offset++] & 0xFF; for (int i = 1; i < 4; ++i) { l |= (arr[offset++] & 0xFF) << (8 * i); } return l; } /** Write a double in little-endian format. */ public static void writeDoubleLE(double d, byte[] arr, int offset) { writeLongLE(Double.doubleToRawLongBits(d), arr, offset); } /** Read a double in little-endian format. */ public static double readDoubleLE(byte[] arr, int offset) { return Double.longBitsToDouble(readLongLE(arr, offset)); } /** Write a float in little-endian format. */ public static void writeFloatLE(float d, byte[] arr, int offset) { writeIntLE(Float.floatToRawIntBits(d), arr, offset); } /** Read a float in little-endian format. */ public static float readFloatLE(byte[] arr, int offset) { return Float.intBitsToFloat(readIntLE(arr, offset)); } }