Package jnr.ffi.provider
Class AbstractArrayMemoryIO
- java.lang.Object
-
- jnr.ffi.Pointer
-
- jnr.ffi.provider.AbstractMemoryIO
-
- jnr.ffi.provider.AbstractArrayMemoryIO
-
- Direct Known Subclasses:
ArrayMemoryIO
public abstract class AbstractArrayMemoryIO extends AbstractMemoryIO
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description protected static classAbstractArrayMemoryIO.ArrayIO
-
Constructor Summary
Constructors Modifier Constructor Description protectedAbstractArrayMemoryIO(Runtime runtime, byte[] buffer)protectedAbstractArrayMemoryIO(Runtime runtime, byte[] buffer, int offset, int length)protectedAbstractArrayMemoryIO(Runtime runtime, int size)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]array()Returns the array that backs this pointer.intarrayLength()Returns the length of this pointer's backing array that is used by this pointer.intarrayOffset()Returns the offset within this pointer's backing array of the first element.voidclear()voidget(long offset, byte[] dst, int off, int len)Bulk get method for multiplebytevalues.voidget(long offset, double[] dst, int off, int len)Bulk get method for multipledoublevalues.voidget(long offset, float[] dst, int off, int len)Bulk get method for multiplefloatvalues.voidget(long offset, int[] dst, int off, int len)Bulk get method for multipleintvalues.voidget(long offset, long[] dst, int off, int len)Bulk get method for multiplelongvalues.voidget(long offset, short[] dst, int off, int len)Bulk get method for multipleshortvalues.longgetAddress(long offset)Reads a native memory address value at the given offset.protected AbstractArrayMemoryIO.ArrayIOgetArrayIO()bytegetByte(long offset)Reads anbyte(8 bit) value at the given offset.doublegetDouble(long offset)Reads adouble(64 bit) value at the given offset.floatgetFloat(long offset)Reads afloat(32 bit) value at the given offset.intgetInt(long offset)Reads anint(32 bit) value at the given offset.longgetLongLong(long offset)Reads along(64 bit) value at the given offset.shortgetShort(long offset)Reads ashort(16 bit) value at the given offset.StringgetString(long offset)Reads anStringvalue at the given offset.StringgetString(long offset, int maxLength, Charset cs)Reads aStringvalue at the given offset, using a specificCharsetbooleanhasArray()Indicates whether thisPointerinstance is backed by an array.protected intindex(long off)intindexOf(long offset, byte value)Returns the location of a byte value within the memory area represented by thisPointer.intindexOf(long offset, byte value, int maxlen)Returns the location of a byte value within the memory area represented by thisPointer.booleanisNull()intlength()intoffset()voidput(long offset, byte[] src, int off, int len)Bulk put method for multiplebytevalues.voidput(long offset, double[] src, int off, int len)Bulk put method for multipledoublevalues.voidput(long offset, float[] src, int off, int len)Bulk put method for multiplefloatvalues.voidput(long offset, int[] src, int off, int len)Bulk put method for multipleintvalues.voidput(long offset, long[] src, int off, int len)Bulk put method for multiplelongvalues.voidput(long offset, short[] src, int off, int len)Bulk put method for multipleshortvalues.voidputAddress(long offset, long value)Writes a native memory address value at the given offset.voidputByte(long offset, byte value)Writes abyte(8 bit) value at the given offset.voidputDouble(long offset, double value)Writes adouble(64 bit, double precision) value at the given offset.voidputFloat(long offset, float value)Writes afloat(32 bit, single precision) value at the given offset.voidputInt(long offset, int value)Writes anint(32 bit) value at the given offset.voidputLongLong(long offset, long value)Writes along(64 bit) value at the given offset.voidputShort(long offset, short value)Writes ashort(16 bit) value at the given offset.voidputString(long offset, String string, int maxLength, Charset cs)Writes aStringvalue at the given offset, using a specificCharsetvoidputZeroTerminatedByteArray(long offset, byte[] src, int off, int len)protected intremaining(long offset)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).-
Methods inherited from class jnr.ffi.provider.AbstractMemoryIO
checkBounds, checkBounds, getInt, getLong, getNativeLong, putAddress, putInt, putLong, putNativeLong, slice, slice, transferFrom, transferTo
-
Methods inherited from class jnr.ffi.Pointer
address, get, getNullTerminatedPointerArray, getNullTerminatedStringArray, getPointer, getPointer, getRuntime, isDirect, newIntPointer, put, putPointer, toString, wrap, wrap, wrap
-
-
-
-
Method Detail
-
getArrayIO
protected final AbstractArrayMemoryIO.ArrayIO getArrayIO()
-
array
public final byte[] array()
Description copied from class:PointerReturns the array that backs this pointer.
-
offset
public final int offset()
-
length
public final int length()
-
arrayLength
public final 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
-
arrayOffset
public final 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
-
hasArray
public final boolean hasArray()
Description copied from class:PointerIndicates whether thisPointerinstance is backed by an array.
-
size
public final long size()
Description copied from class:PointerGets the size of this memory object in bytes (optional operation).- Specified by:
sizein classPointer- Returns:
- the size of the memory area this
Pointerpoints to. If the size is unknown,Long.MAX_VALUEis returned}.
-
index
protected final int index(long off)
-
remaining
protected final int remaining(long offset)
-
isNull
public final boolean isNull()
-
getString
public String getString(long offset)
Description copied from class:PointerReads anStringvalue at the given offset.
-
getString
public String getString(long offset, int maxLength, Charset cs)
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
public void putString(long offset, String string, int maxLength, Charset cs)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)
-
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.
-
getAddress
public final long getAddress(long offset)
Description copied from class:PointerReads a native memory address value at the given offset.A native address can be either 32 or 64 bits in size, depending on the cpu architecture.
- Overrides:
getAddressin classAbstractMemoryIO- Parameters:
offset- The offset from the start of the memory thisPointerrepresents at which the value will be read.- Returns:
- the native address value contained in the memory at the offset
- See Also:
Address
-
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.
-
putAddress
public final void putAddress(long offset, long value)Description copied from class:PointerWrites a native memory address value at the given offset.A native address can be either 32 or 64 bits in size, depending on the cpu architecture.
- Overrides:
putAddressin classAbstractMemoryIO- Parameters:
offset- The offset from the start of the memory thisPointerrepresents at which the value will be written.value- The native address value to be written.- See Also:
Address
-
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.
-
indexOf
public final int indexOf(long offset, byte value)Description copied from class:PointerReturns the location of a byte value within the memory area represented by thisPointer.- Overrides:
indexOfin classAbstractMemoryIO- Parameters:
offset- the offset from the start of the memory location thisPointerrepresents to begin searching.value- thebytevalue to locate.- Returns:
- the offset from the start of the search area (i.e. relative to the offset parameter), or -1 if not found.
-
indexOf
public final 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.
-
clear
public final void clear()
-
-