Class MDBEnvInfo

All Implemented Interfaces:
AutoCloseable, NativeResource, Pointer

public class MDBEnvInfo extends Struct<MDBEnvInfo> implements NativeResource

 struct MDB_envinfo {
     void * me_mapaddr;
     size_t me_mapsize;
     size_t me_last_pgno;
     size_t me_last_txnid;
     unsigned int me_maxreaders;
     unsigned int me_numreaders;
 }
  • Field Details

    • SIZEOF

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

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

      public static final int ME_MAPADDR
      The struct member offsets.
    • ME_MAPSIZE

      public static final int ME_MAPSIZE
      The struct member offsets.
    • ME_LAST_PGNO

      public static final int ME_LAST_PGNO
      The struct member offsets.
    • ME_LAST_TXNID

      public static final int ME_LAST_TXNID
      The struct member offsets.
    • ME_MAXREADERS

      public static final int ME_MAXREADERS
      The struct member offsets.
    • ME_NUMREADERS

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

    • MDBEnvInfo

      public MDBEnvInfo(ByteBuffer container)
      Creates a MDBEnvInfo 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<MDBEnvInfo>
    • me_mapaddr

      public long me_mapaddr()
      Returns:
      the value of the me_mapaddr field.
    • me_mapsize

      public long me_mapsize()
      Returns:
      the value of the me_mapsize field.
    • me_last_pgno

      public long me_last_pgno()
      Returns:
      the value of the me_last_pgno field.
    • me_last_txnid

      public long me_last_txnid()
      Returns:
      the value of the me_last_txnid field.
    • me_maxreaders

      public int me_maxreaders()
      Returns:
      the value of the me_maxreaders field.
    • me_numreaders

      public int me_numreaders()
      Returns:
      the value of the me_numreaders field.
    • malloc

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

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

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

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

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

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

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

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

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

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

      @Deprecated public static MDBEnvInfo mallocStack()
      Deprecated.
      Deprecated for removal in 3.4.0. Use malloc(MemoryStack) instead.
    • callocStack

      @Deprecated public static MDBEnvInfo callocStack()
      Deprecated.
      Deprecated for removal in 3.4.0. Use calloc(MemoryStack) instead.
    • mallocStack

      @Deprecated public static MDBEnvInfo mallocStack(MemoryStack stack)
      Deprecated.
      Deprecated for removal in 3.4.0. Use malloc(MemoryStack) instead.
    • callocStack

      @Deprecated public static MDBEnvInfo callocStack(MemoryStack stack)
      Deprecated.
      Deprecated for removal in 3.4.0. Use calloc(MemoryStack) instead.
    • mallocStack

      @Deprecated public static MDBEnvInfo.Buffer mallocStack(int capacity)
      Deprecated.
      Deprecated for removal in 3.4.0. Use malloc(int, MemoryStack) instead.
    • callocStack

      @Deprecated public static MDBEnvInfo.Buffer callocStack(int capacity)
      Deprecated.
      Deprecated for removal in 3.4.0. Use calloc(int, MemoryStack) instead.
    • mallocStack

      @Deprecated public static MDBEnvInfo.Buffer mallocStack(int capacity, MemoryStack stack)
      Deprecated.
      Deprecated for removal in 3.4.0. Use malloc(int, MemoryStack) instead.
    • callocStack

      @Deprecated public static MDBEnvInfo.Buffer callocStack(int capacity, MemoryStack stack)
      Deprecated.
      Deprecated for removal in 3.4.0. Use calloc(int, MemoryStack) instead.
    • malloc

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

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

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

      public static MDBEnvInfo.Buffer calloc(int capacity, MemoryStack stack)
      Returns a new MDBEnvInfo.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
    • nme_mapaddr

      public static long nme_mapaddr(long struct)
      Unsafe version of me_mapaddr().
    • nme_mapsize

      public static long nme_mapsize(long struct)
      Unsafe version of me_mapsize().
    • nme_last_pgno

      public static long nme_last_pgno(long struct)
      Unsafe version of me_last_pgno().
    • nme_last_txnid

      public static long nme_last_txnid(long struct)
      Unsafe version of me_last_txnid().
    • nme_maxreaders

      public static int nme_maxreaders(long struct)
      Unsafe version of me_maxreaders().
    • nme_numreaders

      public static int nme_numreaders(long struct)
      Unsafe version of me_numreaders().