Package jnr.ffi.provider.jffi
Class TransientNativeMemory
java.lang.Object
jnr.ffi.Pointer
jnr.ffi.provider.AbstractMemoryIO
jnr.ffi.provider.jffi.TransientNativeMemory
-
Method Summary
Modifier and TypeMethodDescriptionstatic jnr.ffi.provider.jffi.DirectMemoryIOstatic jnr.ffi.provider.jffi.DirectMemoryIOarray()Returns the array that backs this pointer.intReturns the length of this pointer's backing array that is used by this pointer.intReturns the offset within this pointer's backing array of the first element.final voiddispose()booleanfinal voidget(long offset, byte[] dst, int off, int len) Bulk get method for multiplebytevalues.final voidget(long offset, double[] dst, int off, int len) Bulk get method for multipledoublevalues.final voidget(long offset, float[] dst, int off, int len) Bulk get method for multiplefloatvalues.final voidget(long offset, int[] dst, int off, int len) Bulk get method for multipleintvalues.final voidget(long offset, long[] dst, int off, int len) Bulk get method for multiplelongvalues.final voidget(long offset, short[] dst, int off, int len) Bulk get method for multipleshortvalues.final bytegetByte(long offset) Reads anbyte(8 bit) value at the given offset.final doublegetDouble(long offset) Reads adouble(64 bit) value at the given offset.final floatgetFloat(long offset) Reads afloat(32 bit) value at the given offset.final intgetInt(long offset) Reads anint(32 bit) value at the given offset.final longgetLongLong(long offset) Reads along(64 bit) value at the given offset.getPointer(long offset) Reads anPointervalue at the given offset.getPointer(long offset, long size) Reads anPointervalue at the given offset.final shortgetShort(long offset) Reads ashort(16 bit) value at the given offset.getString(long offset) Reads anStringvalue at the given offset.Reads aStringvalue at the given offset, using a specificCharsetbooleanhasArray()Indicates whether thisPointerinstance is backed by an array.inthashCode()intindexOf(long offset, byte value, int maxlen) Returns the location of a byte value within the memory area represented by thisPointer.final voidput(long offset, byte[] src, int off, int len) Bulk put method for multiplebytevalues.final voidput(long offset, double[] src, int off, int len) Bulk put method for multipledoublevalues.final voidput(long offset, float[] src, int off, int len) Bulk put method for multiplefloatvalues.final voidput(long offset, int[] src, int off, int len) Bulk put method for multipleintvalues.final voidput(long offset, long[] src, int off, int len) Bulk put method for multiplelongvalues.final voidput(long offset, short[] src, int off, int len) Bulk put method for multipleshortvalues.final voidputByte(long offset, byte value) Writes abyte(8 bit) value at the given offset.final voidputDouble(long offset, double value) Writes adouble(64 bit, double precision) value at the given offset.final voidputFloat(long offset, float value) Writes afloat(32 bit, single precision) value at the given offset.final voidputInt(long offset, int value) Writes anint(32 bit) value at the given offset.final voidputLongLong(long offset, long value) Writes along(64 bit) value at the given offset.voidputPointer(long offset, Pointer value) Writes aPointervalue at the given offset.final voidputShort(long offset, short value) Writes ashort(16 bit) value at the given offset.voidWrites aStringvalue at the given offset, using a specificCharsetvoidputZeroTerminatedByteArray(long offset, byte[] src, int off, int len) final voidsetMemory(long offset, long size, byte value) Sets the value of each byte in the memory area represented by thisPointer.longsize()Gets the size of this memory object in bytes (optional operation).voidtransferFrom(long offset, Pointer other, long otherOffset, long count) Bulk data transfer from one memory location to another.voidtransferTo(long offset, Pointer other, long otherOffset, long count) Bulk data transfer from one memory location to another.Methods inherited from class jnr.ffi.provider.AbstractMemoryIO
checkBounds, checkBounds, getAddress, getInt, getLong, getNativeLong, indexOf, putAddress, putAddress, putInt, putLong, putNativeLong, slice, sliceMethods inherited from class jnr.ffi.Pointer
address, get, getNullTerminatedPointerArray, getNullTerminatedStringArray, getRuntime, isDirect, newIntPointer, put, toString, wrap, wrap, wrap
-
Method Details
-
allocate
public static jnr.ffi.provider.jffi.DirectMemoryIO allocate(Runtime runtime, int size, int align, boolean clear) -
allocate
public static jnr.ffi.provider.jffi.DirectMemoryIO allocate(Runtime runtime, long size, int align, boolean clear) -
size
public long size()Description copied from class:PointerGets the size of this memory object in bytes (optional operation).- Returns:
- the size of the memory area this
Pointerpoints to. If the size is unknown,Long.MAX_VALUEis returned}.
-
hashCode
public int hashCode() -
equals
-
dispose
public final void dispose() -
hasArray
public boolean hasArray()Description copied from class:PointerIndicates whether thisPointerinstance is backed by an array. -
array
Description copied from class:PointerReturns the array that backs this pointer. -
arrayOffset
public int arrayOffset()Description copied from class:PointerReturns the offset within this pointer's backing array of the first element.- Specified by:
arrayOffsetin classPointer- Returns:
- The offset of the first element on the backing array
-
arrayLength
public int arrayLength()Description copied from class:PointerReturns the length of this pointer's backing array that is used by this pointer.- Specified by:
arrayLengthin classPointer- Returns:
- The length of the backing array used
-
getByte
public final byte getByte(long offset) Description copied from class:PointerReads anbyte(8 bit) value at the given offset. -
getShort
public final short getShort(long offset) Description copied from class:PointerReads ashort(16 bit) value at the given offset. -
getInt
public final int getInt(long offset) Description copied from class:PointerReads anint(32 bit) value at the given offset. -
getLongLong
public final long getLongLong(long offset) Description copied from class:PointerReads along(64 bit) value at the given offset.- Specified by:
getLongLongin classPointer- Parameters:
offset- The offset from the start of the memory thisPointerrepresents at which the value will be read.- Returns:
- the
longvalue at the offset.
-
getFloat
public final float getFloat(long offset) Description copied from class:PointerReads afloat(32 bit) value at the given offset. -
getDouble
public final double getDouble(long offset) Description copied from class:PointerReads adouble(64 bit) value at the given offset. -
putByte
public final void putByte(long offset, byte value) Description copied from class:PointerWrites abyte(8 bit) value at the given offset. -
putShort
public final void putShort(long offset, short value) Description copied from class:PointerWrites ashort(16 bit) value at the given offset. -
putInt
public final void putInt(long offset, int value) Description copied from class:PointerWrites anint(32 bit) value at the given offset. -
putLongLong
public final void putLongLong(long offset, long value) Description copied from class:PointerWrites along(64 bit) value at the given offset.- Specified by:
putLongLongin classPointer- Parameters:
offset- The offset from the start of the memory thisPointerrepresents at which the value will be written.value- thelongvalue to be written.
-
putFloat
public final void putFloat(long offset, float value) Description copied from class:PointerWrites afloat(32 bit, single precision) value at the given offset. -
putDouble
public final void putDouble(long offset, double value) Description copied from class:PointerWrites adouble(64 bit, double precision) value at the given offset. -
get
public final void get(long offset, byte[] dst, int off, int len) Description copied from class:PointerBulk get method for multiplebytevalues. This method reads multiplebytevalues from consecutive addresses, beginning at the given offset, and stores them in an array.- Specified by:
getin classPointer- Parameters:
offset- the offset from the start of the memory thisPointerrepresents at which the first value will be read.dst- the array into which values are to be stored.off- the start index in thedstarray to begin storing the values.len- the number of values to be read.
-
put
public final void put(long offset, byte[] src, int off, int len) Description copied from class:PointerBulk put method for multiplebytevalues. This method writes multiplebytevalues to consecutive addresses, beginning at the given offset, from an array.- Specified by:
putin classPointer- Parameters:
offset- the offset from the start of the memory thisPointerrepresents at which the first value will be written.src- the array to get values from.off- the start index in thedstarray to begin reading values.len- the number of values to be written.
-
get
public final void get(long offset, short[] dst, int off, int len) Description copied from class:PointerBulk get method for multipleshortvalues. This method reads multipleshortvalues from consecutive addresses, beginning at the given offset, and stores them in an array.- Specified by:
getin classPointer- Parameters:
offset- The offset from the start of the memory thisPointerrepresents at which the first value will be read.dst- The array into which values are to be stored.off- the start index in thedstarray to begin storing the values.len- the number of values to be read.
-
put
public final void put(long offset, short[] src, int off, int len) Description copied from class:PointerBulk put method for multipleshortvalues. This method writes multipleshortvalues to consecutive addresses, beginning at the given offset, from an array.- Specified by:
putin classPointer- Parameters:
offset- the offset from the start of the memory thisPointerrepresents at which the first value will be written.src- the array to get values from.off- the start index in thedstarray to begin reading values.len- the number of values to be written.
-
get
public final void get(long offset, int[] dst, int off, int len) Description copied from class:PointerBulk get method for multipleintvalues. This method reads multipleintvalues from consecutive addresses, beginning at the given offset, and stores them in an array.- Specified by:
getin classPointer- Parameters:
offset- The offset from the start of the memory thisPointerrepresents at which the first value will be read.dst- The array into which values are to be stored.off- the start index in thedstarray to begin storing the values.len- the number of values to be read.
-
put
public final void put(long offset, int[] src, int off, int len) Description copied from class:PointerBulk put method for multipleintvalues. This method writes multipleintvalues to consecutive addresses, beginning at the given offset, from an array.- Specified by:
putin classPointer- Parameters:
offset- the offset from the start of the memory thisPointerrepresents at which the first value will be written.src- the array to get values from.off- the start index in thedstarray to begin reading values.len- the number of values to be written.
-
get
public final void get(long offset, long[] dst, int off, int len) Description copied from class:PointerBulk get method for multiplelongvalues. This method reads multiplelongvalues from consecutive addresses, beginning at the given offset, and stores them in an array.- Specified by:
getin classPointer- Parameters:
offset- The offset from the start of the memory thisPointerrepresents at which the first value will be read.dst- The array into which values are to be stored.off- the start index in thedstarray to begin storing the values.len- the number of values to be read.
-
put
public final void put(long offset, long[] src, int off, int len) Description copied from class:PointerBulk put method for multiplelongvalues. This method writes multiplelongvalues to consecutive addresses, beginning at the given offset, from an array.- Specified by:
putin classPointer- Parameters:
offset- the offset from the start of the memory thisPointerrepresents at which the first value will be written.src- the array to get values from.off- the start index in thedstarray to begin reading values.len- the number of values to be written.
-
get
public final void get(long offset, float[] dst, int off, int len) Description copied from class:PointerBulk get method for multiplefloatvalues. This method reads multiplefloatvalues from consecutive addresses, beginning at the given offset, and stores them in an array.- Specified by:
getin classPointer- Parameters:
offset- The offset from the start of the memory thisPointerrepresents at which the first value will be read.dst- The array into which values are to be stored.off- the start index in thedstarray to begin storing the values.len- the number of values to be read.
-
put
public final void put(long offset, float[] src, int off, int len) Description copied from class:PointerBulk put method for multiplefloatvalues. This method writes multiplefloatvalues to consecutive addresses, beginning at the given offset, from an array.- Specified by:
putin classPointer- Parameters:
offset- the offset from the start of the memory thisPointerrepresents at which the first value will be written.src- the array to get values from.off- the start index in thedstarray to begin reading values.len- the number of values to be written.
-
get
public final void get(long offset, double[] dst, int off, int len) Description copied from class:PointerBulk get method for multipledoublevalues. This method reads multipledoublevalues from consecutive addresses, beginning at the given offset, and stores them in an array.- Specified by:
getin classPointer- Parameters:
offset- The offset from the start of the memory thisPointerrepresents at which the first value will be read.dst- The array into which values are to be stored.off- the start index in thedstarray to begin storing the values.len- the number of values to be read.
-
put
public final void put(long offset, double[] src, int off, int len) Description copied from class:PointerBulk put method for multipledoublevalues. This method writes multipledoublevalues to consecutive addresses, beginning at the given offset, from an array.- Specified by:
putin classPointer- Parameters:
offset- the offset from the start of the memory thisPointerrepresents at which the first value will be written.src- the array to get values from.off- the start index in thedstarray to begin reading values.len- the number of values to be written.
-
getPointer
Description copied from class:PointerReads anPointervalue at the given offset.- Specified by:
getPointerin classPointer- Parameters:
offset- the offset from the start of the memory thisPointerrepresents at which the value will be read.- Returns:
- the
Pointervalue read from memory.
-
getPointer
Description copied from class:PointerReads anPointervalue at the given offset.- Specified by:
getPointerin classPointer- Parameters:
offset- the offset from the start of the memory thisPointerrepresents at which the value will be read.size- the maximum size of the memory location the returnedPointerrepresents.- Returns:
- the
Pointervalue read from memory.
-
putPointer
Description copied from class:PointerWrites aPointervalue at the given offset.- Specified by:
putPointerin classPointer- Parameters:
offset- The offset from the start of the memory thisPointerrepresents at which the value will be written.value- thePointervalue to be written to memory.
-
getString
Description copied from class:PointerReads anStringvalue at the given offset. -
getString
Description copied from class:PointerReads aStringvalue at the given offset, using a specificCharset- Specified by:
getStringin classPointer- Parameters:
offset- the offset from the start of the memory thisPointerrepresents at which the value will be read.maxLength- the maximum size of memory to search for a NUL byte.cs- theCharsetto use to decode the string.- Returns:
- the
Stringvalue read from memory.
-
putString
Description copied from class:PointerWrites aStringvalue at the given offset, using a specificCharset- Specified by:
putStringin classPointer- Parameters:
offset- the offset from the start of the memory thisPointerrepresents at which the value will be written.string- the string to be written.maxLength- the maximum size of memory to use to store the string.cs- theCharsetto use to decode the string.
-
putZeroTerminatedByteArray
public void putZeroTerminatedByteArray(long offset, byte[] src, int off, int len) -
indexOf
public int indexOf(long offset, byte value, int maxlen) Description copied from class:PointerReturns the location of a byte value within the memory area represented by thisPointer.- Specified by:
indexOfin classPointer- Parameters:
offset- the offset from the start of the memory location thisPointerrepresents to begin searching.value- thebytevalue to locate.maxlen- the maximum number of bytes to search for the desired value.- Returns:
- the offset from the start of the search area (i.e. relative to the offset parameter), or -1 if not found.
-
setMemory
public final void setMemory(long offset, long size, byte value) Description copied from class:PointerSets the value of each byte in the memory area represented by thisPointer. to a specified value. -
transferTo
Description copied from class:PointerBulk data transfer from one memory location to another.- Overrides:
transferToin classAbstractMemoryIO- Parameters:
offset- the offset from the start of the memory location thisPointerrepresents to begin copying from.other- the destination memory location to transfer data to.otherOffset- the offset from the start of the memory location the destinationPointerrepresents to begin copying to.count- the number of bytes to transfer.
-
transferFrom
Description copied from class:PointerBulk data transfer from one memory location to another.- Overrides:
transferFromin classAbstractMemoryIO- Parameters:
offset- the offset from the start of the memory location thisPointerrepresents to begin copying to.other- the destination memory location to transfer data from.otherOffset- the offset from the start of the memory location the destinationPointerrepresents to begin copying from.count- the number of bytes to transfer.
-