This abstracts read/write operations to either a native memory area, or a java ByteBuffer.
| Modifier and Type | Method and Description |
|---|---|
| public void | get(long
The offset within the memory area to read the bytes. offset, byte[] The output byte array to place the data. dst, int The offset within the byte array to start copying. off, int The length of data to read. len)Reads an array of bytes from the memory area at the specified offset. |
| public void | get(long
The offset within the memory area to read the shorts. offset, short[] The output array to place the data in. dst, int The offset within the array to start copying. off, int The number of shorts to read. len)Reads an array of shorts from the memory area at the specified offset. |
| public void | get(long
The offset within the memory area to read the ints. offset, int[] The output array to place the data in. dst, int The offset within the array to start copying. off, int The number of ints to read. len)Reads an array of ints from the memory area at the specified offset. |
| public void | get(long
The offset within the memory area to read the longs. offset, long[] The output array to place the data in. dst, int The offset within the array to start copying. off, int The number of longs to read. len)Reads an array of longs from the memory area at the specified offset. |
| public void | get(long
The offset within the memory area to read the floats. offset, float[] The output array to place the data in. dst, int The offset within the array to start copying. off, int The number of floats to read. len)Reads an array of floats from the memory area at the specified offset. |
| public void | get(long
The offset within the memory area to read the doubles. offset, double[] The output array to place the data in. dst, int The offset within the array to start copying. off, int The number of doubles to read. len)Reads an array of doubles from the memory area at the specified offset. |
| public long | Returns: A long value that represents the address.The offset within the memory area to read the value. offset)Reads a pointer value at the specified offset within the memory area. |
| public byte | Returns: The 8 bit integer value read from offsetThe offset within the memory area to read the value. offset)Reads an 8 bit integer value from the memory area. |
| public double | Returns: The double value read from offsetThe offset within the memory area to read the value. offset)Reads a double value from the memory area. |
| public float | Returns: The float value read from offsetThe offset within the memory area to read the value. offset)Reads a float value from the memory area. |
| public int | Returns: The 32 bit integer value read from offsetThe offset within the memory area to read the value. offset)Reads a 32 bit integer value from the memory area. |
| public long | Returns: The 64 bit integer value read from offsetThe offset within the memory area to read the value. offset)Reads a 64 bit integer value from the memory area. |
| public DirectMemory | Returns: A DirectMemory accessor that can be used to access the memory pointed to by the address.The offset within the memory area to read the value. offset)Reads a pointer value at the specified offset within the memory area, and wraps it in an abstract memory accessor. |
| public long | Returns: The native long value read from offsetThe offset within the memory area to read the value. offset)Reads a native long integer value from the memory area. |
| public short | Returns: The 16 bit integer value read from offsetThe offset within the memory area to read the value. offset)Reads a 16 bit integer value from the memory area. |
| public byte[] | Returns: A byte array containing a copy of the data.The offset within the memory area of the start of the string. offset)Reads a zero terminated byte array (e.g. an ascii or utf-8 string) |
| public int | Returns: The index of the value, relative to offset.The offset within the memory area to start searching. offset, byte The value to search for. value)Gets the first index within the memory area of a particular 8 bit value. |
| public int | Returns: The index of the value, relative to offset.The offset within the memory area to start searching. offset, byte The value to search for. value, int maxlen)Gets the first index within the memory area of a particular 8 bit value. |
| public boolean | Returns: true if the memory area is a native pointer.Checks if the memory area is a native memory pointer. |
| public boolean | |
| public void | put(long
The offset within the memory area to start writing the bytes. offset, byte[] The byte array to write to the memory area. src, int The offset within the byte array to start copying. off, int The length of data to write. len)Writes an array of bytes to the memory area at the specified offset. |
| public void | put(long
The offset within the memory area to start writing the shorts. offset, short[] The array to write to the memory area. src, int The offset within the array to start copying. off, int The number of shorts to write. len)Writes an array of shorts to the memory area at the specified offset. |
| public void | put(long
The offset within the memory area to start writing the ints. offset, int[] The array to write to the memory area. src, int The offset within the array to start copying. off, int The number of ints to write. len)Writes an array of ints to the memory area at the specified offset. |
| public void | put(long
The offset within the memory area to start writing the longs. offset, long[] The array to write to the memory area. src, int The offset within the array to start copying. off, int The number of longs to write. len)Writes an array of longs to the memory area at the specified offset. |
| public void | put(long
The offset within the memory area to start writing the floats. offset, float[] The array to write to the memory area. src, int The offset within the array to start copying. off, int The number of floats to write. len)Writes an array of floats to the memory area at the specified offset. |
| public void | put(long
The offset within the memory area to start writing the doubles. offset, double[] The array to write to the memory area. src, int The offset within the array to start copying. off, int The number of doubles to write. len)Writes an array of doubles to the memory area at the specified offset. |
| public void | putAddress(long
The offset within the memory area to write the value. offset, Memory The pointer value to write to the memory location. value)Writes a pointer value to the memory area at the specified offset. |
| public void | putAddress(long
The offset within the memory area to write the value. offset, long The pointer value to write to the memory location. value)Writes a pointer value to the memory area at the specified offset. |
| public void | putByte(long
The offset within the memory area to write the value. offset, byte The 8 bit integer value to write to the memory location. value)Writes an 8 bit integer value to the memory area at the specified offset. |
| public void | putDouble(long
The offset within the memory area to write the value. offset, double The 64 bit float value to write to the memory location. value)Writes a 64 bit float value to the memory area at the specified offset. |
| public void | putFloat(long
The offset within the memory area to write the value. offset, float The 32 bit float value to write to the memory location. value)Writes a 32 bit float value to the memory area at the specified offset. |
| public void | putInt(long
The offset within the memory area to write the value. offset, int The 32 bit integer value to write to the memory location. value)Writes a 32 bit integer value to the memory area at the specified offset. |
| public void | putLong(long
The offset within the memory area to write the value. offset, long The 64 bit integer value to write to the memory location. value)Writes a 64 bit integer value to the memory area at the specified offset. |
| public void | putNativeLong(long
The offset within the memory area to write the value. offset, long The native long integer value to write to the memory location. value)Writes a native long integer value to the memory area at the specified offset. |
| public void | putShort(long
The offset within the memory area to write the value. offset, short The 16 bit integer value to write to the memory location. value)Writes a 16 bit integer value to the memory area at the specified offset. |
| public void | putZeroTerminatedByteArray(long
The offset within the memory area of the start of the string. offset, byte[] The byte array to write to the memory. bytes, int The offset with the byte array to start copying. off, int The number of bytes of the byte array to write to the memory area. (not including zero byte) len)Writes a byte array to memory, and appends a zero terminator |
| public void | setMemory(long
The offset within the memory area to start writing. offset, long The number of bytes to set to the value. size, byte The value to set each byte to. value)Sets the contents of the memory area to the value. |
| public Memory | Returns: A MemoryIO instance.The offset within the existing memory area to start the
new MemoryIO at. offset)Creates a new MemoryIO pointing to a subset of the memory area of this MemoryIO. |
| get | back to summary |
|---|---|
| public void get(long offset, byte[] dst, int off, int len) Reads an array of bytes from the memory area at the specified offset.
| |
| get | back to summary |
|---|---|
| public void get(long offset, short[] dst, int off, int len) Reads an array of shorts from the memory area at the specified offset.
| |
| get | back to summary |
|---|---|
| public void get(long offset, int[] dst, int off, int len) Reads an array of ints from the memory area at the specified offset.
| |
| get | back to summary |
|---|---|
| public void get(long offset, long[] dst, int off, int len) Reads an array of longs from the memory area at the specified offset.
| |
| get | back to summary |
|---|---|
| public void get(long offset, float[] dst, int off, int len) Reads an array of floats from the memory area at the specified offset.
| |
| get | back to summary |
|---|---|
| public void get(long offset, double[] dst, int off, int len) Reads an array of doubles from the memory area at the specified offset.
| |
| getAddress | back to summary |
|---|---|
| public long getAddress(long offset) Reads a pointer value at the specified offset within the memory area.
| |
| getByte | back to summary |
|---|---|
| public byte getByte(long offset) Reads an 8 bit integer value from the memory area.
| |
| getDouble | back to summary |
|---|---|
| public double getDouble(long offset) Reads a double value from the memory area.
| |
| getFloat | back to summary |
|---|---|
| public float getFloat(long offset) Reads a float value from the memory area.
| |
| getInt | back to summary |
|---|---|
| public int getInt(long offset) Reads a 32 bit integer value from the memory area.
| |
| getLong | back to summary |
|---|---|
| public long getLong(long offset) Reads a 64 bit integer value from the memory area.
| |
| getMemory | back to summary |
|---|---|
| public DirectMemory getMemory(long offset) Reads a pointer value at the specified offset within the memory area, and wraps it in an abstract memory accessor.
| |
| getNativeLong | back to summary |
|---|---|
| public long getNativeLong(long offset) Reads a native long integer value from the memory area. A native long is 32bits on either ILP32 or LLP64 architectures, and 64 bits on an LP64 architecture. This means that it will always read a 32bit value on Windows, but on Unix systems such as MacOS or Linux, it will read a 32bit value on 32bit systems, and a 64bit value on 64bit systems.
| |
| getShort | back to summary |
|---|---|
| public short getShort(long offset) Reads a 16 bit integer value from the memory area.
| |
| getZeroTerminatedByteArray | back to summary |
|---|---|
| public byte[] getZeroTerminatedByteArray(long offset) Reads a zero terminated byte array (e.g. an ascii or utf-8 string)
| |
| indexOf | back to summary |
|---|---|
| public int indexOf(long offset, byte value) Gets the first index within the memory area of a particular 8 bit value.
The index of the value, relative to offset. | |
| indexOf | back to summary |
|---|---|
| public int indexOf(long offset, byte value, int maxlen) Gets the first index within the memory area of a particular 8 bit value.
The index of the value, relative to offset. | |
| isDirect | back to summary |
|---|---|
| public boolean isDirect() Checks if the memory area is a native memory pointer.
| |
| isNull | back to summary |
|---|---|
| public boolean isNull() Checks if the memory area is NULL.
| |
| put | back to summary |
|---|---|
| public void put(long offset, byte[] src, int off, int len) Writes an array of bytes to the memory area at the specified offset.
| |
| put | back to summary |
|---|---|
| public void put(long offset, short[] src, int off, int len) Writes an array of shorts to the memory area at the specified offset.
| |
| put | back to summary |
|---|---|
| public void put(long offset, int[] src, int off, int len) Writes an array of ints to the memory area at the specified offset.
| |
| put | back to summary |
|---|---|
| public void put(long offset, long[] src, int off, int len) Writes an array of longs to the memory area at the specified offset.
| |
| put | back to summary |
|---|---|
| public void put(long offset, float[] src, int off, int len) Writes an array of floats to the memory area at the specified offset.
| |
| put | back to summary |
|---|---|
| public void put(long offset, double[] src, int off, int len) Writes an array of doubles to the memory area at the specified offset.
| |
| putAddress | back to summary |
|---|---|
| public void putAddress(long offset, Memory value) Writes a pointer value to the memory area at the specified offset.
| |
| putAddress | back to summary |
|---|---|
| public void putAddress(long offset, long value) Writes a pointer value to the memory area at the specified offset.
| |
| putByte | back to summary |
|---|---|
| public void putByte(long offset, byte value) Writes an 8 bit integer value to the memory area at the specified offset.
| |
| putDouble | back to summary |
|---|---|
| public void putDouble(long offset, double value) Writes a 64 bit float value to the memory area at the specified offset.
| |
| putFloat | back to summary |
|---|---|
| public void putFloat(long offset, float value) Writes a 32 bit float value to the memory area at the specified offset.
| |
| putInt | back to summary |
|---|---|
| public void putInt(long offset, int value) Writes a 32 bit integer value to the memory area at the specified offset.
| |
| putLong | back to summary |
|---|---|
| public void putLong(long offset, long value) Writes a 64 bit integer value to the memory area at the specified offset.
| |
| putNativeLong | back to summary |
|---|---|
| public void putNativeLong(long offset, long value) Writes a native long integer value to the memory area at the specified offset.
| |
| putShort | back to summary |
|---|---|
| public void putShort(long offset, short value) Writes a 16 bit integer value to the memory area at the specified offset.
| |
| putZeroTerminatedByteArray | back to summary |
|---|---|
| public void putZeroTerminatedByteArray(long offset, byte[] bytes, int off, int len) Writes a byte array to memory, and appends a zero terminator
| |
| setMemory | back to summary |
|---|---|
| public void setMemory(long offset, long size, byte value) Sets the contents of the memory area to the value.
| |
| slice | back to summary |
|---|---|
| public Memory slice(long offset) Creates a new MemoryIO pointing to a subset of the memory area of this MemoryIO.
| |