Package org.lwjgl
Class BufferChecks
- java.lang.Object
-
- org.lwjgl.BufferChecks
-
public class BufferChecks extends Object
A class to check buffer boundaries in general. If there is unsufficient space in the buffer when the call is made then a buffer overflow would otherwise occur and cause unexpected behaviour, a crash, or worse, a security risk. Internal class, don't use.
- Version:
- $Revision$ $Id$
- Author:
- cix_foo
, elias_naur
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static voidcheckArray(long[] array, int size)static voidcheckArray(Object[] array)static voidcheckArray(Object[] array, int size)static intcheckBuffer(Buffer buffer, int size)Detects the buffer type and performs the corresponding check and also returns the buffer position in bytes.static voidcheckBuffer(ByteBuffer buf, int size)static voidcheckBuffer(DoubleBuffer buf, int size)static voidcheckBuffer(FloatBuffer buf, int size)static voidcheckBuffer(IntBuffer buf, int size)static voidcheckBuffer(LongBuffer buf, int size)static voidcheckBuffer(ShortBuffer buf, int size)static voidcheckBuffer(PointerBuffer buf, int size)static voidcheckBufferSize(Buffer buf, int size)Helper method to ensure a buffer is big enough to receive data from a glGet* operation.static voidcheckDirect(ByteBuffer buf)Helper methods to ensure a buffer is direct (and, implicitly, non-null).static voidcheckDirect(DoubleBuffer buf)static voidcheckDirect(FloatBuffer buf)static voidcheckDirect(IntBuffer buf)static voidcheckDirect(LongBuffer buf)static voidcheckDirect(ShortBuffer buf)static voidcheckDirect(PointerBuffer buf)static voidcheckFunctionAddress(long pointer)Helper methods to ensure a function pointer is not-null (0)static voidcheckNotNull(Object o)static voidcheckNullTerminated(ByteBuffer buf)Helper methods to ensure a ByteBuffer is null-terminatedstatic voidcheckNullTerminated(ByteBuffer buf, int count)static voidcheckNullTerminated(IntBuffer buf)Helper method to ensure an IntBuffer is null-terminatedstatic voidcheckNullTerminated(LongBuffer buf)Helper method to ensure a LongBuffer is null-terminatedstatic voidcheckNullTerminated(PointerBuffer buf)Helper method to ensure a PointerBuffer is null-terminated
-
-
-
Method Detail
-
checkFunctionAddress
public static void checkFunctionAddress(long pointer)
Helper methods to ensure a function pointer is not-null (0)
-
checkNullTerminated
public static void checkNullTerminated(ByteBuffer buf)
Helper methods to ensure a ByteBuffer is null-terminated
-
checkNullTerminated
public static void checkNullTerminated(ByteBuffer buf, int count)
-
checkNullTerminated
public static void checkNullTerminated(IntBuffer buf)
Helper method to ensure an IntBuffer is null-terminated
-
checkNullTerminated
public static void checkNullTerminated(LongBuffer buf)
Helper method to ensure a LongBuffer is null-terminated
-
checkNullTerminated
public static void checkNullTerminated(PointerBuffer buf)
Helper method to ensure a PointerBuffer is null-terminated
-
checkNotNull
public static void checkNotNull(Object o)
-
checkDirect
public static void checkDirect(ByteBuffer buf)
Helper methods to ensure a buffer is direct (and, implicitly, non-null).
-
checkDirect
public static void checkDirect(ShortBuffer buf)
-
checkDirect
public static void checkDirect(IntBuffer buf)
-
checkDirect
public static void checkDirect(LongBuffer buf)
-
checkDirect
public static void checkDirect(FloatBuffer buf)
-
checkDirect
public static void checkDirect(DoubleBuffer buf)
-
checkDirect
public static void checkDirect(PointerBuffer buf)
-
checkArray
public static void checkArray(Object[] array)
-
checkBufferSize
public static void checkBufferSize(Buffer buf, int size)
Helper method to ensure a buffer is big enough to receive data from a glGet* operation.- Parameters:
buf- The buffer to checksize- The minimum buffer size- Throws:
IllegalArgumentException
-
checkBuffer
public static int checkBuffer(Buffer buffer, int size)
Detects the buffer type and performs the corresponding check and also returns the buffer position in bytes.- Parameters:
buffer- the buffer to checksize- the size to check- Returns:
- the buffer position in bytes
-
checkBuffer
public static void checkBuffer(ByteBuffer buf, int size)
-
checkBuffer
public static void checkBuffer(ShortBuffer buf, int size)
-
checkBuffer
public static void checkBuffer(IntBuffer buf, int size)
-
checkBuffer
public static void checkBuffer(LongBuffer buf, int size)
-
checkBuffer
public static void checkBuffer(FloatBuffer buf, int size)
-
checkBuffer
public static void checkBuffer(DoubleBuffer buf, int size)
-
checkBuffer
public static void checkBuffer(PointerBuffer buf, int size)
-
checkArray
public static void checkArray(Object[] array, int size)
-
checkArray
public static void checkArray(long[] array, int size)
-
-