com.esotericsoftware.kryo.unsafe.UnsafeOutput Maven / Gradle / Ivy
Show all versions of redisson-all Show documentation
/* Copyright (c) 2008-2023, Nathan Sweet
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following
* conditions are met:
*
* - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
* - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided with the distribution.
* - Neither the name of Esoteric Software nor the names of its contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
* BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
* SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */
package com.esotericsoftware.kryo.unsafe;
import static com.esotericsoftware.kryo.unsafe.UnsafeUtil.*;
import com.esotericsoftware.kryo.KryoException;
import com.esotericsoftware.kryo.io.Output;
import com.esotericsoftware.kryo.util.Util;
import java.io.OutputStream;
/** An {@link Output} that reads data using sun.misc.Unsafe. Multi-byte primitive types use native byte order, so the native byte
* order on different computers which read and write the data must be the same.
*
* Not available on all JVMs. {@link Util#unsafe} can be checked before using this class.
*
* This class may be much faster when {@link #setVariableLengthEncoding(boolean)} is false.
* @author Roman Levenstein
* @author Nathan Sweet */
@SuppressWarnings("restriction")
public class UnsafeOutput extends Output {
/** Creates an uninitialized Output, {@link #setBuffer(byte[], int)} must be called before the Output is used. */
public UnsafeOutput () {
}
/** Creates a new Output for writing to a byte[].
* @param bufferSize The size of the buffer. An exception is thrown if more bytes than this are written and {@link #flush()}
* does not empty the buffer. */
public UnsafeOutput (int bufferSize) {
this(bufferSize, bufferSize);
}
/** Creates a new Output for writing to a byte[].
* @param bufferSize The initial size of the buffer.
* @param maxBufferSize If {@link #flush()} does not empty the buffer, the buffer is doubled as needed until it exceeds
* maxBufferSize and an exception is thrown. Can be -1 for no maximum. */
public UnsafeOutput (int bufferSize, int maxBufferSize) {
super(bufferSize, maxBufferSize);
}
/** Creates a new Output for writing to a byte[].
* @see #setBuffer(byte[]) */
public UnsafeOutput (byte[] buffer) {
this(buffer, buffer.length);
}
/** Creates a new Output for writing to a byte[].
* @see #setBuffer(byte[], int) */
public UnsafeOutput (byte[] buffer, int maxBufferSize) {
super(buffer, maxBufferSize);
}
/** Creates a new Output for writing to an OutputStream. A buffer size of 4096 is used. */
public UnsafeOutput (OutputStream outputStream) {
super(outputStream);
}
/** Creates a new Output for writing to an OutputStream with the specified buffer size. */
public UnsafeOutput (OutputStream outputStream, int bufferSize) {
super(outputStream, bufferSize);
}
public void write (int value) throws KryoException {
if (position == capacity) require(1);
unsafe.putByte(buffer, byteArrayBaseOffset + position++, (byte)value);
}
public void writeByte (byte value) throws KryoException {
if (position == capacity) require(1);
unsafe.putByte(buffer, byteArrayBaseOffset + position++, value);
}
public void writeByte (int value) throws KryoException {
if (position == capacity) require(1);
unsafe.putByte(buffer, byteArrayBaseOffset + position++, (byte)value);
}
public void writeInt (int value) throws KryoException {
require(4);
unsafe.putInt(buffer, byteArrayBaseOffset + position, value);
position += 4;
}
public void writeLong (long value) throws KryoException {
require(8);
unsafe.putLong(buffer, byteArrayBaseOffset + position, value);
position += 8;
}
public void writeFloat (float value) throws KryoException {
require(4);
unsafe.putFloat(buffer, byteArrayBaseOffset + position, value);
position += 4;
}
public void writeDouble (double value) throws KryoException {
require(8);
unsafe.putDouble(buffer, byteArrayBaseOffset + position, value);
position += 8;
}
public void writeShort (int value) throws KryoException {
require(2);
unsafe.putShort(buffer, byteArrayBaseOffset + position, (short)value);
position += 2;
}
public void writeChar (char value) throws KryoException {
require(2);
unsafe.putChar(buffer, byteArrayBaseOffset + position, value);
position += 2;
}
public void writeBoolean (boolean value) throws KryoException {
if (position == capacity) require(1);
unsafe.putByte(buffer, byteArrayBaseOffset + position++, value ? (byte)1 : 0);
}
public void writeInts (int[] array, int offset, int count) throws KryoException {
writeBytes(array, intArrayBaseOffset, array.length << 2);
}
public void writeLongs (long[] array, int offset, int count) throws KryoException {
writeBytes(array, longArrayBaseOffset, array.length << 3);
}
public void writeFloats (float[] array, int offset, int count) throws KryoException {
writeBytes(array, floatArrayBaseOffset, array.length << 2);
}
public void writeDoubles (double[] array, int offset, int count) throws KryoException {
writeBytes(array, doubleArrayBaseOffset, array.length << 3);
}
public void writeShorts (short[] array, int offset, int count) throws KryoException {
writeBytes(array, shortArrayBaseOffset, array.length << 1);
}
public void writeChars (char[] array, int offset, int count) throws KryoException {
writeBytes(array, charArrayBaseOffset, array.length << 1);
}
public void writeBooleans (boolean[] array, int offset, int count) throws KryoException {
writeBytes(array, booleanArrayBaseOffset, array.length);
}
public void writeBytes (byte[] array, int offset, int count) throws KryoException {
writeBytes(array, byteArrayBaseOffset + offset, count);
}
/** Write count bytes to the byte buffer, reading from the given offset inside the in-memory representation of the object. */
public void writeBytes (Object from, long offset, int count) throws KryoException {
int copyCount = Math.min(capacity - position, count);
while (true) {
unsafe.copyMemory(from, offset, buffer, byteArrayBaseOffset + position, copyCount);
position += copyCount;
count -= copyCount;
if (count == 0) break;
offset += copyCount;
copyCount = Math.min(capacity, count);
require(copyCount);
}
}
}