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

com.google.gwt.emul.java.nio.ByteBuffer Maven / Gradle / Ivy

Go to download

Everything needed to run a comprehensive dev environment. Just type X_ and pick a service from autocomplete; new dev modules will be added as they are built. The only dev service not included in the uber jar is xapi-dev-maven, as it includes all runtime dependencies of maven, adding ~4 seconds to build time, and 6 megabytes to the final output jar size (without xapi-dev-maven, it's ~1MB).

The 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 java.nio;

import java.nio.ByteOrder;

import com.google.gwt.typedarrays.shared.ArrayBuffer;
import com.google.gwt.typedarrays.shared.ArrayBufferView;
import com.google.gwt.typedarrays.shared.Int8Array;
import com.google.gwt.typedarrays.shared.TypedArrays;

/** A buffer for bytes.
 * 

A byte buffer can be created in either one of the following ways:

*
    *
  • {@link #allocate(int) Allocate} a new byte array and create a buffer based on it;
  • *
  • {@link #allocateDirect(int) Allocate} a memory block and create a direct buffer based on * it;
  • *
*/ public final class ByteBuffer extends Buffer implements Comparable, playn.html.HasArrayBufferView, playn.html.TypedArrayHelper.Wrapper { Int8Array byteArray; /** The byte order of this buffer, default is {@code BIG_ENDIAN}. */ ByteOrder order = ByteOrder.BIG_ENDIAN; /** Creates a byte buffer based on a newly allocated byte array. * * @param capacity the capacity of the new buffer * @return the created byte buffer. * @throws IllegalArgumentException if {@code capacity < 0}. */ public static ByteBuffer allocate (int capacity) { ByteBuffer result = allocateDirect(capacity); return result; } /** Creates a direct byte buffer based on a newly allocated memory block. * * @param capacity the capacity of the new buffer * @return the created byte buffer. * @throws IllegalArgumentException if {@code capacity < 0}. */ public static ByteBuffer allocateDirect (int capacity) { if (capacity < 0) { throw new IllegalArgumentException(); } return new ByteBuffer(capacity); } public ByteBuffer wrap(ArrayBuffer arrayBuffer) { return new ByteBuffer(arrayBuffer); } static ByteBuffer copy (ByteBuffer other, int markOfOther) { ByteBuffer buf = new ByteBuffer( other.byteArray.buffer(), other.capacity(), other.byteArray.byteOffset()); buf.limit = other.limit(); buf.position = other.position(); buf.mark = markOfOther; buf.order(other.order()); return buf; } /** Constructs a {@code ByteBuffer} with given capacity. * * @param capacity the capacity of the buffer. */ ByteBuffer (int capacity) { this(TypedArrays.createArrayBuffer(capacity)); } ByteBuffer (ArrayBuffer buf) { super(buf.byteLength()); byteArray = TypedArrays.createInt8Array(buf); } ByteBuffer (ArrayBuffer buffer, int capacity, int offset) { super(capacity); byteArray = TypedArrays.createInt8Array(buffer, offset, capacity); } // /** Returns a char buffer which is based on the remaining content of this byte buffer. // *

The new buffer's position is zero, its limit and capacity is the number of remaining // * bytes divided by two, and its mark is not set. The new buffer's read-only property and byte // * order are the same as this buffer's. The new buffer is direct if this byte buffer is direct. // *

// *

The new buffer shares its content with this buffer, which means either buffer's change // * of content will be visible to the other. The two buffer's position, limit and mark are // * independent.

// * // * @return a char buffer which is based on the content of this byte buffer. // */ // public abstract CharBuffer asCharBuffer (); // // /** Returns a double buffer which is based on the remaining content of this byte buffer. // *

The new buffer's position is zero, its limit and capacity is the number of remaining // * bytes divided by eight, and its mark is not set. The new buffer's read-only property and // * byte order are the same as this buffer's. The new buffer is direct if this byte buffer is // * direct.

// *

The new buffer shares its content with this buffer, which means either buffer's change // * of content will be visible to the other. The two buffer's position, limit and mark are // * independent.

// * // * @return a double buffer which is based on the content of this byte buffer. // */ // public abstract DoubleBuffer asDoubleBuffer (); /** Returns a float buffer which is based on the remaining content of this byte buffer. *

The new buffer's position is zero, its limit and capacity is the number of remaining * bytes divided by four, and its mark is not set. The new buffer's read-only property and byte * order are the same as this buffer's. The new buffer is direct if this byte buffer is direct. *

*

The new buffer shares its content with this buffer, which means either buffer's change * of content will be visible to the other. The two buffer's position, limit and mark are * independent.

* * @return a float buffer which is based on the content of this byte buffer. */ public FloatBuffer asFloatBuffer () { return FloatBuffer.wrap(this); } /** Returns a int buffer which is based on the remaining content of this byte buffer. *

The new buffer's position is zero, its limit and capacity is the number of remaining * bytes divided by four, and its mark is not set. The new buffer's read-only property and byte * order are the same as this buffer's. The new buffer is direct if this byte buffer is direct. *

*

The new buffer shares its content with this buffer, which means either buffer's change * of content will be visible to the other. The two buffer's position, limit and mark are * independent.

* * @return a int buffer which is based on the content of this byte buffer. */ public IntBuffer asIntBuffer () { if (order() != ByteOrder.nativeOrder()) { throw new RuntimeException("Native order supported only."); } return IntBuffer.wrap(this); } // /** Returns a long buffer which is based on the remaining content of this byte buffer. // *

The new buffer's position is zero, its limit and capacity is the number of remaining // * bytes divided by eight, and its mark is not set. The new buffer's read-only property and // * byte order are the same as this buffer's. The new buffer is direct if this byte buffer is // * direct.

// *

The new buffer shares its content with this buffer, which means either buffer's change // * of content will be visible to the other. The two buffer's position, limit and mark are // * independent.

// * // * @return a long buffer which is based on the content of this byte buffer. // */ // public abstract LongBuffer asLongBuffer (); /** Returns a short buffer which is based on the remaining content of this byte buffer. *

The new buffer's position is zero, its limit and capacity is the number of remaining * bytes divided by two, and its mark is not set. The new buffer's read-only property and byte * order are the same as this buffer's. The new buffer is direct if this byte buffer is direct. *

*

The new buffer shares its content with this buffer, which means either buffer's change * of content will be visible to the other. The two buffer's position, limit and mark are * independent.

* * @return a short buffer which is based on the content of this byte buffer. */ public ShortBuffer asShortBuffer () { if (order() != ByteOrder.nativeOrder()) { throw new RuntimeException("Native order supported only."); } return ShortBuffer.wrap(this); } /** Compacts this byte buffer. *

The remaining bytes will be moved to the head of the buffer, starting from position * zero. Then the position is set to {@code remaining()}; the limit is set to capacity; the * mark is cleared.

* * @return this buffer. * @exception ReadOnlyBufferException if no changes may be made to the contents of this buffer. */ public ByteBuffer compact () { // System.arraycopy(backingArray, position + offset, backingArray, offset, // remaining()); int rem = remaining(); for (int i = 0; i < rem; i++) { byteArray.set(i, byteArray.get(position + i)); } position = limit - position; limit = capacity; mark = UNSET_MARK; return this; } /** Compares the remaining bytes of this buffer to another byte buffer's remaining bytes. * * @param otherBuffer another byte buffer. * @return a negative value if this is less than {@code other}; 0 if this equals to {@code * other}; a positive value if this is greater than {@code other}. * @exception ClassCastException if {@code other} is not a byte buffer. */ public int compareTo (ByteBuffer otherBuffer) { int compareRemaining = (remaining() < otherBuffer.remaining()) ? remaining() : otherBuffer.remaining(); int thisPos = position; int otherPos = otherBuffer.position; byte thisByte, otherByte; while (compareRemaining > 0) { thisByte = get(thisPos); otherByte = otherBuffer.get(otherPos); if (thisByte != otherByte) { return thisByte < otherByte ? -1 : 1; } thisPos++; otherPos++; compareRemaining--; } return remaining() - otherBuffer.remaining(); } /** Returns a duplicated buffer that shares its content with this buffer. *

The duplicated buffer's position, limit, capacity and mark are the same as this * buffer's. The duplicated buffer's read-only property and byte order are the same as this * buffer's too.

*

The new buffer shares its content with this buffer, which means either buffer's change * of content will be visible to the other. The two buffer's position, limit and mark are * independent.

* * @return a duplicated buffer that shares its content with this buffer. */ public ByteBuffer duplicate () { return copy(this, mark); } /** Checks whether this byte buffer is equal to another object. *

If {@code other} is not a byte buffer then {@code false} is returned. Two byte buffers * are equal if and only if their remaining bytes are exactly the same. Position, limit, * capacity and mark are not considered.

* * @param other the object to compare with this byte buffer. * @return {@code true} if this byte buffer is equal to {@code other}, {@code false} otherwise. */ public boolean equals (Object other) { if (!(other instanceof ByteBuffer)) { return false; } ByteBuffer otherBuffer = (ByteBuffer)other; if (remaining() != otherBuffer.remaining()) { return false; } int myPosition = position; int otherPosition = otherBuffer.position; boolean equalSoFar = true; while (equalSoFar && (myPosition < limit)) { equalSoFar = get(myPosition++) == otherBuffer.get(otherPosition++); } return equalSoFar; } /** Returns the byte at the current position and increases the position by 1. * * @return the byte at the current position. * @exception BufferUnderflowException if the position is equal or greater than limit. */ public final byte get () { // if (position == limit) { // throw new BufferUnderflowException(); // } return (byte)byteArray.get(position++); } /** Reads bytes from the current position into the specified byte array and increases the * position by the number of bytes read. *

* Calling this method has the same effect as {@code get(dest, 0, dest.length)}. *

* * @param dest the destination byte array. * @return this buffer. * @exception BufferUnderflowException if {@code dest.length} is greater than {@code remaining()}. */ public ByteBuffer get (byte[] dest) { return get(dest, 0, dest.length); } /** Reads bytes from the current position into the specified byte array, starting at the * specified offset, and increases the position by the number of bytes read. * * @param dest the target byte array. * @param off the offset of the byte array, must not be negative and not greater than {@code * dest.length}. * @param len the number of bytes to read, must not be negative and not greater than {@code * dest.length - off} * @return this buffer. * @exception IndexOutOfBoundsException if either {@code off} or {@code len} is invalid. * @exception BufferUnderflowException if {@code len} is greater than {@code remaining()}. */ public final ByteBuffer get (byte[] dest, int off, int len) { int length = dest.length; if (off < 0 || len < 0 || (long)off + (long)len > length) { throw new IndexOutOfBoundsException(); } if (len > remaining()) { throw new BufferUnderflowException(); } for (int i = 0; i < len; i++) { dest[i + off] = get(position + i); } position += len; return this; } /** Returns the byte at the specified index and does not change the position. * * @param index the index, must not be negative and less than limit. * @return the byte at the specified index. * @exception IndexOutOfBoundsException if index is invalid. */ public final byte get (int index) { // if (index < 0 || index >= limit) { // throw new IndexOutOfBoundsException(); // } return (byte)byteArray.get(index); } /** Returns the char at the current position and increases the position by 2. *

The 2 bytes starting at the current position are composed into a char according to the * current byte order and returned.

* * @return the char at the current position. * @exception BufferUnderflowException if the position is greater than {@code limit - 2}. */ public final char getChar () { return (char)getShort(); } /** Returns the char at the specified index. *

The 2 bytes starting from the specified index are composed into a char according to the * current byte order and returned. The position is not changed.

* * @param index the index, must not be negative and equal or less than {@code limit - 2}. * @return the char at the specified index. * @exception IndexOutOfBoundsException if {@code index} is invalid. */ public final char getChar (int index) { return (char)getShort(index); } /** Returns the double at the current position and increases the position by 8. *

The 8 bytes starting from the current position are composed into a double according to * the current byte order and returned.

* * @return the double at the current position. * @exception BufferUnderflowException if the position is greater than {@code limit - 8}. */ public final double getDouble () { return Numbers.longBitsToDouble(getLong()); } /** Returns the double at the specified index. *

The 8 bytes starting at the specified index are composed into a double according to the * current byte order and returned. The position is not changed.

* * @param index the index, must not be negative and equal or less than {@code limit - 8}. * @return the double at the specified index. * @exception IndexOutOfBoundsException if {@code index} is invalid. */ public final double getDouble (int index) { return Numbers.longBitsToDouble(getLong(index)); } /** Returns the float at the current position and increases the position by 4. *

The 4 bytes starting at the current position are composed into a float according to the * current byte order and returned.

* * @return the float at the current position. * @exception BufferUnderflowException if the position is greater than {@code limit - 4}. */ public final float getFloat () { return Numbers.intBitsToFloat(getInt()); } /** Returns the float at the specified index. *

The 4 bytes starting at the specified index are composed into a float according to the * current byte order and returned. The position is not changed.

* * @param index the index, must not be negative and equal or less than {@code limit - 4}. * @return the float at the specified index. * @exception IndexOutOfBoundsException if {@code index} is invalid. */ public final float getFloat (int index) { return Numbers.intBitsToFloat(getInt(index)); } /** Returns the int at the current position and increases the position by 4. *

The 4 bytes starting at the current position are composed into a int according to the * current byte order and returned.

* * @return the int at the current position. * @exception BufferUnderflowException if the position is greater than {@code limit - 4}. */ public final int getInt () { int newPosition = position + 4; //if (newPosition > limit) { //throw new BufferUnderflowException(); //} int result = getInt(position); position = newPosition; return result; } /** Returns the int at the specified index. *

The 4 bytes starting at the specified index are composed into a int according to the * current byte order and returned. The position is not changed.

* * @param index the index, must not be negative and equal or less than {@code limit - 4}. * @return the int at the specified index. * @exception IndexOutOfBoundsException if {@code index} is invalid. */ public final int getInt (int index) { int bytes = 0; if (order == ByteOrder.BIG_ENDIAN) { for (int i = 0; i < 4; i++) { bytes = bytes << 8; bytes = bytes | (byteArray.get(index + i) & 0xFF); } } else { for (int i = 3; i >= 0; i--) { bytes = bytes << 8; bytes = bytes | (byteArray.get(index + i) & 0xFF); } } return bytes; } /** Returns the long at the current position and increases the position by 8. *

The 8 bytes starting at the current position are composed into a long according to the * current byte order and returned.

* * @return the long at the current position. * @exception BufferUnderflowException if the position is greater than {@code limit - 8}. */ public final long getLong () { int newPosition = position + 8; //if (newPosition > limit) { //throw new BufferUnderflowException(); //} long result = getLong(position); position = newPosition; return result; } /** Returns the long at the specified index. *

The 8 bytes starting at the specified index are composed into a long according to the * current byte order and returned. The position is not changed.

* * @param index the index, must not be negative and equal or less than {@code limit - 8}. * @return the long at the specified index. * @exception IndexOutOfBoundsException if {@code index} is invalid. */ public final long getLong (int baseOffset) { long bytes = 0; if (order == ByteOrder.BIG_ENDIAN) { for (int i = 0; i < 8; i++) { bytes = bytes << 8; bytes = bytes | (byteArray.get(baseOffset + i) & 0xFF); } } else { for (int i = 7; i >= 0; i--) { bytes = bytes << 8; bytes = bytes | (byteArray.get(baseOffset + i) & 0xFF); } } return bytes; } /** Returns the short at the current position and increases the position by 2. *

The 2 bytes starting at the current position are composed into a short according to the * current byte order and returned.

* * @return the short at the current position. * @exception BufferUnderflowException if the position is greater than {@code limit - 2}. */ public final short getShort () { int newPosition = position + 2; //if (newPosition > limit) { //throw new BufferUnderflowException(); //} short result = getShort(position); position = newPosition; return result; } /** Returns the short at the specified index. *

The 2 bytes starting at the specified index are composed into a short according to the * current byte order and returned. The position is not changed.

* * @param index the index, must not be negative and equal or less than {@code limit - 2}. * @return the short at the specified index. * @exception IndexOutOfBoundsException if {@code index} is invalid. */ public final short getShort (int baseOffset) { short bytes = 0; if (order == ByteOrder.BIG_ENDIAN) { bytes = (short)(byteArray.get(baseOffset) << 8); bytes |= (byteArray.get(baseOffset + 1) & 0xFF); } else { bytes = (short)(byteArray.get(baseOffset + 1) << 8); bytes |= (byteArray.get(baseOffset) & 0xFF); } return bytes; } /** Indicates whether this buffer is based on a byte array and provides read/write access. * * @return {@code true} if this buffer is based on a byte array and provides read/write access, * {@code false} otherwise. */ public final boolean hasArray () { return false; } /** Calculates this buffer's hash code from the remaining chars. The position, limit, capacity * and mark don't affect the hash code. * * @return the hash code calculated from the remaining bytes. */ public int hashCode () { int myPosition = position; int hash = 0; while (myPosition < limit) { hash = hash + get(myPosition++); } return hash; } /** Indicates whether this buffer is direct. * * @return {@code true} if this buffer is direct, {@code false} otherwise. */ public final boolean isDirect () { return true; } /** Returns the byte order used by this buffer when converting bytes from/to other primitive * types. *

The default byte order of byte buffer is always {@link ByteOrder#BIG_ENDIAN BIG_ENDIAN} *

* * @return the byte order used by this buffer when converting bytes from/to other primitive types. */ public final ByteOrder order () { return order; } /** Sets the byte order of this buffer. * * @param byteOrder the byte order to set. If {@code null} then the order will be {@link * ByteOrder#LITTLE_ENDIAN LITTLE_ENDIAN} . * @return this buffer. * @see ByteOrder */ public final ByteBuffer order (ByteOrder byteOrder) { order = byteOrder; return this; } /** Writes the given byte to the current position and increases the position by 1. * * @param b the byte to write. * @return this buffer. * @exception BufferOverflowException if position is equal or greater than limit. * @exception ReadOnlyBufferException if no changes may be made to the contents of this buffer. */ public ByteBuffer put (byte b) { // if (position == limit) { // throw new BufferOverflowException(); // } byteArray.set(position++, b); return this; } /** Writes bytes in the given byte array to the current position and increases the position by * the number of bytes written.

Calling this method has the same effect as {@code put(src, * 0, src.length)}.

* * @param src the source byte array. * @return this buffer. * @exception BufferOverflowException if {@code remaining()} is less than {@code src.length}. * @exception ReadOnlyBufferException if no changes may be made to the contents of this buffer. */ public final ByteBuffer put (byte[] src) { return put(src, 0, src.length); } /** Writes bytes in the given byte array, starting from the specified offset, to the current * position and increases the position by the number of bytes written. * * @param src the source byte array. * @param off the offset of byte array, must not be negative and not greater than {@code * src.length}. * @param len the number of bytes to write, must not be negative and not greater than {@code * src.length - off}. * @return this buffer. * @exception BufferOverflowException if {@code remaining()} is less than {@code len}. * @exception IndexOutOfBoundsException if either {@code off} or {@code len} is invalid. * @exception ReadOnlyBufferException if no changes may be made to the contents of this buffer. */ public ByteBuffer put (byte[] src, int off, int len) { int length = src.length; if (off < 0 || len < 0 || off + len > length) { throw new IndexOutOfBoundsException(); } if (len > remaining()) { throw new BufferOverflowException(); } for (int i = 0; i < len; i++) { byteArray.set(i + position, src[off + i]); } position += len; return this; } /** Writes all the remaining bytes of the {@code src} byte buffer to this buffer's current * position, and increases both buffers' position by the number of bytes copied. * * @param src the source byte buffer. * @return this buffer. * @exception BufferOverflowException if {@code src.remaining()} is greater than this buffer's * {@code remaining()}. * @exception IllegalArgumentException if {@code src} is this buffer. * @exception ReadOnlyBufferException if no changes may be made to the contents of this buffer. */ public ByteBuffer put (ByteBuffer src) { if (src == this) { throw new IllegalArgumentException(); } if (src.remaining() > remaining()) { throw new BufferOverflowException(); } byte[] contents = new byte[src.remaining()]; src.get(contents); put(contents); return this; } /** Write a byte to the specified index of this buffer without changing the position. * * @param index the index, must not be negative and less than the limit. * @param b the byte to write. * @return this buffer. * @exception IndexOutOfBoundsException if {@code index} is invalid. * @exception ReadOnlyBufferException if no changes may be made to the contents of this buffer. */ public ByteBuffer put (int index, byte b) { // if (index < 0 || index >= limit) { // throw new IndexOutOfBoundsException(); // } byteArray.set(index, b); return this; } /** Writes the given char to the current position and increases the position by 2. *

* The char is converted to bytes using the current byte order. *

* * @param value the char to write. * @return this buffer. * @exception BufferOverflowException if position is greater than {@code limit - 2}. * @exception ReadOnlyBufferException if no changes may be made to the contents of this buffer. */ public final ByteBuffer putChar (char value) { return putShort((short)value); } /** Writes the given char to the specified index of this buffer. *

* The char is converted to bytes using the current byte order. The position is not changed. *

* * @param index the index, must not be negative and equal or less than {@code limit - 2}. * @param value the char to write. * @return this buffer. * @exception IndexOutOfBoundsException if {@code index} is invalid. * @exception ReadOnlyBufferException if no changes may be made to the contents of this buffer. */ public final ByteBuffer putChar (int index, char value) { return putShort(index, (short)value); } /** Writes the given double to the current position and increases the position by 8. *

* The double is converted to bytes using the current byte order. *

* * @param value the double to write. * @return this buffer. * @exception BufferOverflowException if position is greater than {@code limit - 8}. * @exception ReadOnlyBufferException if no changes may be made to the contents of this buffer. */ public ByteBuffer putDouble (double value) { return putLong(Numbers.doubleToRawLongBits(value)); } /** Writes the given double to the specified index of this buffer. *

* The double is converted to bytes using the current byte order. The position is not changed. *

* * @param index the index, must not be negative and equal or less than {@code limit - 8}. * @param value the double to write. * @return this buffer. * @exception IndexOutOfBoundsException if {@code index} is invalid. * @exception ReadOnlyBufferException if no changes may be made to the contents of this buffer. */ public ByteBuffer putDouble (int index, double value) { return putLong(index, Numbers.doubleToRawLongBits(value)); } /** Writes the given float to the current position and increases the position by 4. *

* The float is converted to bytes using the current byte order. *

* * @param value the float to write. * @return this buffer. * @exception BufferOverflowException if position is greater than {@code limit - 4}. * @exception ReadOnlyBufferException if no changes may be made to the contents of this buffer. */ public ByteBuffer putFloat (float value) { return putInt(Numbers.floatToIntBits(value)); } /** Writes the given float to the specified index of this buffer. *

* The float is converted to bytes using the current byte order. The position is not changed. *

* * @param index the index, must not be negative and equal or less than {@code limit - 4}. * @param value the float to write. * @return this buffer. * @exception IndexOutOfBoundsException if {@code index} is invalid. * @exception ReadOnlyBufferException if no changes may be made to the contents of this buffer. */ public ByteBuffer putFloat (int index, float value) { return putInt(index, Numbers.floatToIntBits(value)); } /** Writes the given int to the current position and increases the position by 4. *

* The int is converted to bytes using the current byte order. *

* * @param value the int to write. * @return this buffer. * @exception BufferOverflowException if position is greater than {@code limit - 4}. * @exception ReadOnlyBufferException if no changes may be made to the contents of this buffer. */ public ByteBuffer putInt (int value) { int newPosition = position + 4; //if (newPosition > limit) { //throw new BufferOverflowException(); //} putInt(position, value); position = newPosition; return this; } /** Writes the given int to the specified index of this buffer. *

* The int is converted to bytes using the current byte order. The position is not changed. *

* * @param index the index, must not be negative and equal or less than {@code limit - 4}. * @param value the int to write. * @return this buffer. * @exception IndexOutOfBoundsException if {@code index} is invalid. * @exception ReadOnlyBufferException if no changes may be made to the contents of this buffer. */ public final ByteBuffer putInt (int baseOffset, int value) { if (order == ByteOrder.BIG_ENDIAN) { for (int i = 3; i >= 0; i--) { byteArray.set(baseOffset + i, (byte)(value & 0xFF)); value = value >> 8; } } else { for (int i = 0; i <= 3; i++) { byteArray.set(baseOffset + i, (byte)(value & 0xFF)); value = value >> 8; } } return this; } /** Writes the given long to the current position and increases the position by 8. *

* The long is converted to bytes using the current byte order. *

* * @param value the long to write. * @return this buffer. * @exception BufferOverflowException if position is greater than {@code limit - 8}. * @exception ReadOnlyBufferException if no changes may be made to the contents of this buffer. */ public ByteBuffer putLong (long value) { int newPosition = position + 8; //if (newPosition > limit) { //throw new BufferOverflowException(); //} putLong(position, value); position = newPosition; return this; } /** Writes the given long to the specified index of this buffer. *

* The long is converted to bytes using the current byte order. The position is not changed. *

* * @param index the index, must not be negative and equal or less than {@code limit - 8}. * @param value the long to write. * @return this buffer. * @exception IndexOutOfBoundsException if {@code index} is invalid. * @exception ReadOnlyBufferException if no changes may be made to the contents of this buffer. */ public final ByteBuffer putLong (int baseOffset, long value) { if (order == ByteOrder.BIG_ENDIAN) { for (int i = 7; i >= 0; i--) { byteArray.set(baseOffset + i, (byte)(value & 0xFF)); value = value >> 8; } } else { for (int i = 0; i <= 7; i++) { byteArray.set(baseOffset + i, (byte)(value & 0xFF)); value = value >> 8; } } return this; } /** Writes the given short to the current position and increases the position by 2. *

The short is converted to bytes using the current byte order.

* * @param value the short to write. * @return this buffer. * @exception BufferOverflowException if position is greater than {@code limit - 2}. * @exception ReadOnlyBufferException if no changes may be made to the contents of this buffer. */ public ByteBuffer putShort (short value) { int newPosition = position + 2; //if (newPosition > limit) { //throw new BufferOverflowException(); //} putShort(position, value); position = newPosition; return this; } /** Writes the given short to the specified index of this buffer. *

The short is converted to bytes using the current byte order. The position is not * changed.

* * @param index the index, must not be negative and equal or less than {@code limit - 2}. * @param value the short to write. * @return this buffer. * @exception IndexOutOfBoundsException if {@code index} is invalid. * @exception ReadOnlyBufferException if no changes may be made to the contents of this buffer. */ public final ByteBuffer putShort(int baseOffset, short value) { if (order == ByteOrder.BIG_ENDIAN) { byteArray.set(baseOffset, (byte)((value >> 8) & 0xFF)); byteArray.set(baseOffset + 1, (byte)(value & 0xFF)); } else { byteArray.set(baseOffset + 1, (byte)((value >> 8) & 0xFF)); byteArray.set(baseOffset, (byte)(value & 0xFF)); } return this; } /** Returns a sliced buffer that shares its content with this buffer. *

The sliced buffer's capacity will be this buffer's {@code remaining()}, and it's zero * position will correspond to this buffer's current position. The new buffer's position will * be 0, limit will be its capacity, and its mark is cleared. The new buffer's read-only * property and byte order are the same as this buffer's.

*

The new buffer shares its content with this buffer, which means either buffer's change * of content will be visible to the other. The two buffer's position, limit and mark are * independent.

* * @return a sliced buffer that shares its content with this buffer. */ public ByteBuffer slice () { ByteBuffer slice = new ByteBuffer( byteArray.buffer(), remaining(), byteArray.byteOffset() + position); slice.order = order; return slice; } /** Returns a string representing the state of this byte buffer. * * @return a string representing the state of this byte buffer. */ public String toString () { StringBuffer buf = new StringBuffer(); buf.append(getClass().getName()); buf.append(", status: capacity="); //$NON-NLS-1$ buf.append(capacity()); buf.append(" position="); //$NON-NLS-1$ buf.append(position()); buf.append(" limit="); //$NON-NLS-1$ buf.append(limit()); return buf.toString(); } // public ByteBuffer stringToByteBuffer (String s) { // return new StringByteBuffer(s); // } public ArrayBufferView getTypedArray () { return byteArray; } public int getElementSize () { return 1; } public int getElementType() { return 0x1400; // GL_BYTE } public boolean isReadOnly() { return false; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy