Class EpollData

All Implemented Interfaces:
AutoCloseable, NativeResource, Pointer

public class EpollData extends Struct<EpollData> implements NativeResource

 union epoll_data_t {
     void * ptr;
     int fd;
     uint32_t u32;
     uint64_t u64;
 }
  • Field Details

    • SIZEOF

      public static final int SIZEOF
      The struct size in bytes.
    • ALIGNOF

      public static final int ALIGNOF
      The struct alignment in bytes.
    • PTR

      public static final int PTR
      The struct member offsets.
    • FD

      public static final int FD
      The struct member offsets.
    • U32

      public static final int U32
      The struct member offsets.
    • U64

      public static final int U64
      The struct member offsets.
  • Constructor Details

    • EpollData

      public EpollData(ByteBuffer container)
      Creates a EpollData instance at the current position of the specified ByteBuffer container. Changes to the buffer's content will be visible to the struct instance and vice versa.

      The created instance holds a strong reference to the container object.

  • Method Details

    • sizeof

      public int sizeof()
      Description copied from class: Struct
      Returns sizeof(struct).
      Specified by:
      sizeof in class Struct<EpollData>
    • ptr

      public long ptr()
      Returns:
      the value of the ptr field.
    • fd

      public int fd()
      Returns:
      the value of the fd field.
    • u32

      public int u32()
      Returns:
      the value of the u32 field.
    • u64

      public long u64()
      Returns:
      the value of the u64 field.
    • ptr

      public EpollData ptr(long value)
      Sets the specified value to the ptr field.
    • fd

      public EpollData fd(int value)
      Sets the specified value to the fd field.
    • u32

      public EpollData u32(int value)
      Sets the specified value to the u32 field.
    • u64

      public EpollData u64(long value)
      Sets the specified value to the u64 field.
    • set

      public EpollData set(EpollData src)
      Copies the specified struct data to this struct.
      Parameters:
      src - the source struct
      Returns:
      this struct
    • malloc

      public static EpollData malloc()
      Returns a new EpollData instance allocated with memAlloc. The instance must be explicitly freed.
    • calloc

      public static EpollData calloc()
      Returns a new EpollData instance allocated with memCalloc. The instance must be explicitly freed.
    • create

      public static EpollData create()
      Returns a new EpollData instance allocated with BufferUtils.
    • create

      public static EpollData create(long address)
      Returns a new EpollData instance for the specified memory address.
    • createSafe

      public static @Nullable EpollData createSafe(long address)
      Like create, but returns null if address is NULL.
    • malloc

      public static EpollData.Buffer malloc(int capacity)
      Returns a new EpollData.Buffer instance allocated with memAlloc. The instance must be explicitly freed.
      Parameters:
      capacity - the buffer capacity
    • calloc

      public static EpollData.Buffer calloc(int capacity)
      Returns a new EpollData.Buffer instance allocated with memCalloc. The instance must be explicitly freed.
      Parameters:
      capacity - the buffer capacity
    • create

      public static EpollData.Buffer create(int capacity)
      Returns a new EpollData.Buffer instance allocated with BufferUtils.
      Parameters:
      capacity - the buffer capacity
    • create

      public static EpollData.Buffer create(long address, int capacity)
      Create a EpollData.Buffer instance at the specified memory.
      Parameters:
      address - the memory address
      capacity - the buffer capacity
    • createSafe

      public static @Nullable EpollData.Buffer createSafe(long address, int capacity)
      Like create, but returns null if address is NULL.
    • malloc

      public static EpollData malloc(MemoryStack stack)
      Returns a new EpollData instance allocated on the specified MemoryStack.
      Parameters:
      stack - the stack from which to allocate
    • calloc

      public static EpollData calloc(MemoryStack stack)
      Returns a new EpollData instance allocated on the specified MemoryStack and initializes all its bits to zero.
      Parameters:
      stack - the stack from which to allocate
    • malloc

      public static EpollData.Buffer malloc(int capacity, MemoryStack stack)
      Returns a new EpollData.Buffer instance allocated on the specified MemoryStack.
      Parameters:
      capacity - the buffer capacity
      stack - the stack from which to allocate
    • calloc

      public static EpollData.Buffer calloc(int capacity, MemoryStack stack)
      Returns a new EpollData.Buffer instance allocated on the specified MemoryStack and initializes all its bits to zero.
      Parameters:
      capacity - the buffer capacity
      stack - the stack from which to allocate
    • nptr

      public static long nptr(long struct)
      Unsafe version of ptr().
    • nfd

      public static int nfd(long struct)
      Unsafe version of fd().
    • nu32

      public static int nu32(long struct)
      Unsafe version of u32().
    • nu64

      public static long nu64(long struct)
      Unsafe version of u64().
    • nptr

      public static void nptr(long struct, long value)
      Unsafe version of ptr.
    • nfd

      public static void nfd(long struct, int value)
      Unsafe version of fd.
    • nu32

      public static void nu32(long struct, int value)
      Unsafe version of u32.
    • nu64

      public static void nu64(long struct, long value)
      Unsafe version of u64.