Package gc.garcol.libcore
Class UnsafeBuffer
java.lang.Object
gc.garcol.libcore.UnsafeBuffer
A buffer that uses the Unsafe class for fast memory operations.
Provides methods to put and get primitive types and byte arrays.
Ensures memory visibility guarantees using Unsafe operations.
- Since:
- 2024
-
Constructor Summary
ConstructorsConstructorDescriptionUnsafeBuffer
(int initialCapacity) Constructs an UnsafeBuffer with the specified initial capacity. -
Method Summary
Modifier and TypeMethodDescriptionvoid
clearBytes
(int fromIndex, int toIndex) Clears bytes in the specified range by setting them to zero.void
getBytes
(int index, ByteBuffer dstBuffer, int dstOffset, int length) Gets bytes from this buffer into the specified ByteBuffer.int
getInt
(int index) Gets an integer value from the specified index.long
getLong
(int index) Gets a long value from the specified index.void
putBytes
(int index, ByteBuffer srcBuffer, int srcIndex, int length) Puts bytes from the specified ByteBuffer into this buffer.void
putInt
(int index, int value) Puts an integer value at the specified index.void
putLong
(int index, long value) Puts a long value at the specified index.
-
Constructor Details
-
UnsafeBuffer
public UnsafeBuffer(int initialCapacity) Constructs an UnsafeBuffer with the specified initial capacity.- Parameters:
initialCapacity
- the initial capacity of the buffer
-
-
Method Details
-
putInt
public void putInt(int index, int value) Puts an integer value at the specified index.- Parameters:
index
- the index at which the value will be putvalue
- the integer value to put
-
getInt
public int getInt(int index) Gets an integer value from the specified index.- Parameters:
index
- the index from which the value will be retrieved- Returns:
- the integer value at the specified index
-
putLong
public void putLong(int index, long value) Puts a long value at the specified index.- Parameters:
index
- the index at which the value will be putvalue
- the long value to put
-
getLong
public long getLong(int index) Gets a long value from the specified index.- Parameters:
index
- the index from which the value will be retrieved- Returns:
- the long value at the specified index
-
putBytes
Puts bytes from the specified ByteBuffer into this buffer.- Parameters:
index
- the index at which the bytes will be putsrcBuffer
- the source ByteBuffersrcIndex
- the index in the source ByteBuffer from which the bytes will be readlength
- the number of bytes to put
-
getBytes
Gets bytes from this buffer into the specified ByteBuffer.- Parameters:
index
- the index from which the bytes will be readdstBuffer
- the destination ByteBufferdstOffset
- the offset in the destination ByteBuffer at which the bytes will be putlength
- the number of bytes to get
-
clearBytes
public void clearBytes(int fromIndex, int toIndex) Clears bytes in the specified range by setting them to zero.- Parameters:
fromIndex
- the starting index of the range to cleartoIndex
- the ending index of the range to clear
-