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

com.couchbase.client.core.deps.org.iq80.snappy.SnappyInternalUtils Maven / Gradle / Ivy

There is a newer version: 3.7.2
Show newest version
/*
 * Copyright (C) 2011 the original author or authors.
 * See the notice.md file distributed with this work for additional
 * information regarding copyright ownership.
 *
 * Licensed 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 com.couchbase.client.core.deps.org.iq80.snappy;

import java.io.IOException;
import java.io.InputStream;
import java.nio.ByteOrder;

final class SnappyInternalUtils
{
    private SnappyInternalUtils()
    {
    }

    private static final Memory memory;

    static {
        // Try to only load one implementation of Memory to assure the call sites are monomorphic (fast)
        Memory memoryInstance = null;

        // TODO enable UnsafeMemory on big endian machines
        //
        // The current UnsafeMemory code assumes the machine is little endian, and will
        // not work correctly on big endian CPUs.  For now, we will disable UnsafeMemory on
        // big endian machines.  This will make the code significantly slower on big endian.
        // In the future someone should add the necessary flip bytes calls to make this
        // work efficiently on big endian machines.
        if (ByteOrder.nativeOrder() == ByteOrder.LITTLE_ENDIAN) {
            try {
                Class unsafeMemoryClass = SnappyInternalUtils.class.getClassLoader().loadClass("com.couchbase.client.core.deps.org.iq80.snappy.UnsafeMemory").asSubclass(Memory.class);
                Memory unsafeMemory = unsafeMemoryClass.newInstance();
                if (unsafeMemory.loadInt(new byte[4], 0) == 0) {
                    memoryInstance = unsafeMemory;
                }
            }
            catch (Throwable ignored) {
            }
        }
        if (memoryInstance == null) {
            try {
                Class slowMemoryClass = SnappyInternalUtils.class.getClassLoader().loadClass("com.couchbase.client.core.deps.org.iq80.snappy.SlowMemory").asSubclass(Memory.class);
                Memory slowMemory = slowMemoryClass.newInstance();
                if (slowMemory.loadInt(new byte[4], 0) == 0) {
                    memoryInstance = slowMemory;
                }
                else {
                    throw new AssertionError("SlowMemory class is broken!");
                }
            }
            catch (Throwable ignored) {
                throw new AssertionError("Could not find SlowMemory class");
            }
        }
        memory = memoryInstance;
    }

    static final boolean HAS_UNSAFE = memory.fastAccessSupported();

    static boolean equals(byte[] left, int leftIndex, byte[] right, int rightIndex, int length)
    {
        checkPositionIndexes(leftIndex, leftIndex + length, left.length);
        checkPositionIndexes(rightIndex, rightIndex + length, right.length);

        for (int i = 0; i < length; i++) {
            if (left[leftIndex + i] != right[rightIndex + i]) {
                return false;
            }
        }
        return true;
    }

    public static int lookupShort(short[] data, int index)
    {
        return memory.lookupShort(data, index);
    }

    public static int loadByte(byte[] data, int index)
    {
        return memory.loadByte(data, index);
    }

    static int loadInt(byte[] data, int index)
    {
        return memory.loadInt(data, index);
    }

    static void copyLong(byte[] src, int srcIndex, byte[] dest, int destIndex)
    {
        memory.copyLong(src, srcIndex, dest, destIndex);
    }

    static long loadLong(byte[] data, int index)
    {
        return memory.loadLong(data, index);
    }

    static void copyMemory(byte[] input, int inputIndex, byte[] output, int outputIndex, int length)
    {
        memory.copyMemory(input, inputIndex, output, outputIndex, length);
    }

    //
    // Copied from Guava Preconditions
    static  T checkNotNull(T reference, String errorMessageTemplate, Object... errorMessageArgs)
    {
        if (reference == null) {
            // If either of these parameters is null, the right thing happens anyway
            throw new NullPointerException(String.format(errorMessageTemplate, errorMessageArgs));
        }
        return reference;
    }

    static void checkArgument(boolean expression, String errorMessageTemplate, Object... errorMessageArgs)
    {
        if (!expression) {
            throw new IllegalArgumentException(String.format(errorMessageTemplate, errorMessageArgs));
        }
    }

    static void checkPositionIndexes(int start, int end, int size)
    {
        // Carefully optimized for execution by hotspot (explanatory comment above)
        if (start < 0 || end < start || end > size) {
            throw new IndexOutOfBoundsException(badPositionIndexes(start, end, size));
        }
    }

    static String badPositionIndexes(int start, int end, int size)
    {
        if (start < 0 || start > size) {
            return badPositionIndex(start, size, "start index");
        }
        if (end < 0 || end > size) {
            return badPositionIndex(end, size, "end index");
        }
        // end < start
        return String.format("end index (%s) must not be less than start index (%s)", end, start);
    }

    static String badPositionIndex(int index, int size, String desc)
    {
        if (index < 0) {
            return String.format("%s (%s) must not be negative", desc, index);
        }
        else if (size < 0) {
            throw new IllegalArgumentException("negative size: " + size);
        }
        else { // index > size
            return String.format("%s (%s) must not be greater than size (%s)", desc, index, size);
        }
    }

    /**
     * Reads length bytes from source into dest starting at offset. 
*

* The only case where the length bytes will not be read is if source returns EOF. * * @param source The source of bytes to read from. Must not be null. * @param dest The byte[] to read bytes into. Must not be null. * @param offset The index in dest to start filling. * @param length The number of bytes to read. * @return Total number of bytes actually read. * @throws IndexOutOfBoundsException if offset or length are invalid. */ static int readBytes(InputStream source, byte[] dest, int offset, int length) throws IOException { checkNotNull(source, "source is null"); checkNotNull(dest, "dest is null"); // how many bytes were read. int lastRead = source.read(dest, offset, length); int totalRead = lastRead; // if we did not read as many bytes as we had hoped, try reading again. if (lastRead < length) { // as long the buffer is not full (remaining() == 0) and we have not reached EOF (lastRead == -1) keep reading. while (totalRead < length && lastRead != -1) { lastRead = source.read(dest, offset + totalRead, length - totalRead); // if we got EOF, do not add to total read. if (lastRead != -1) { totalRead += lastRead; } } } return totalRead; } static int skip(InputStream source, int skip) throws IOException { // optimization also avoids potential for error with some implementation of // InputStream.skip() which throw exceptions with negative numbers (ie. ZipInputStream). if (skip <= 0) { return 0; } int toSkip = skip - (int) source.skip(skip); boolean more = true; while (toSkip > 0 && more) { // check to see if we reached EOF int read = source.read(); if (read == -1) { more = false; } else { --toSkip; toSkip -= source.skip(toSkip); } } int skipped = skip - toSkip; return skipped; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy