Class MDBStat

java.lang.Object
org.lwjgl.system.Pointer.Default
org.lwjgl.system.Struct
org.lwjgl.util.lmdb.MDBStat
All Implemented Interfaces:
AutoCloseable, org.lwjgl.system.NativeResource, org.lwjgl.system.Pointer

public class MDBStat extends org.lwjgl.system.Struct implements org.lwjgl.system.NativeResource
Statistics for a database in the environment.

Layout


 struct MDB_stat {
     unsigned int ms_psize();
     unsigned int ms_depth();
     size_t ms_branch_pages();
     size_t ms_leaf_pages();
     size_t ms_overflow_pages();
     size_t ms_entries();
 }
  • Field Details

    • SIZEOF

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

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

      public static final int MS_PSIZE
      The struct member offsets.
    • MS_DEPTH

      public static final int MS_DEPTH
      The struct member offsets.
    • MS_BRANCH_PAGES

      public static final int MS_BRANCH_PAGES
      The struct member offsets.
    • MS_LEAF_PAGES

      public static final int MS_LEAF_PAGES
      The struct member offsets.
    • MS_OVERFLOW_PAGES

      public static final int MS_OVERFLOW_PAGES
      The struct member offsets.
    • MS_ENTRIES

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

    • MDBStat

      public MDBStat(ByteBuffer container)
      Creates a MDBStat 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()
      Specified by:
      sizeof in class org.lwjgl.system.Struct
    • ms_psize

      public int ms_psize()
      Size of a database page. This is currently the same for all databases.
    • ms_depth

      public int ms_depth()
      Depth (height) of the B-tree.
    • ms_branch_pages

      public long ms_branch_pages()
      Number of internal (non-leaf) pages.
    • ms_leaf_pages

      public long ms_leaf_pages()
      Number of leaf pages.
    • ms_overflow_pages

      public long ms_overflow_pages()
      Number of overflow pages.
    • ms_entries

      public long ms_entries()
      Number of data items.
    • malloc

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

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

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

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

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

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

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

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

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

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

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

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

      @Deprecated public static MDBStat mallocStack(org.lwjgl.system.MemoryStack stack)
      Deprecated.
      Deprecated for removal in 3.4.0. Use malloc(MemoryStack) instead.
    • callocStack

      @Deprecated public static MDBStat callocStack(org.lwjgl.system.MemoryStack stack)
      Deprecated.
      Deprecated for removal in 3.4.0. Use calloc(MemoryStack) instead.
    • mallocStack

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

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

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

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

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

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

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

      public static MDBStat.Buffer calloc(int capacity, org.lwjgl.system.MemoryStack stack)
      Returns a new MDBStat.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
    • nms_psize

      public static int nms_psize(long struct)
      Unsafe version of ms_psize().
    • nms_depth

      public static int nms_depth(long struct)
      Unsafe version of ms_depth().
    • nms_branch_pages

      public static long nms_branch_pages(long struct)
      Unsafe version of ms_branch_pages().
    • nms_leaf_pages

      public static long nms_leaf_pages(long struct)
      Unsafe version of ms_leaf_pages().
    • nms_overflow_pages

      public static long nms_overflow_pages(long struct)
      Unsafe version of ms_overflow_pages().
    • nms_entries

      public static long nms_entries(long struct)
      Unsafe version of ms_entries().