org.purejava.appindicator._GPtrArray Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of libayatana-appindicator-java-full Show documentation
Show all versions of libayatana-appindicator-java-full Show documentation
Java bindings for libayatana-appindicator in 100% pure Java
// Generated by jextract
package org.purejava.appindicator;
import java.lang.foreign.*;
import java.util.function.Consumer;
import static java.lang.foreign.MemoryLayout.PathElement.groupElement;
import static java.lang.foreign.ValueLayout.OfInt;
/**
* {@snippet lang=c :
* struct _GPtrArray {
* gpointer *pdata;
* guint len;
* }
* }
*/
public class _GPtrArray {
_GPtrArray() {
// Should not be called directly
}
private static final GroupLayout $LAYOUT = MemoryLayout.structLayout(
app_indicator_h.C_POINTER.withName("pdata"),
app_indicator_h.C_INT.withName("len"),
MemoryLayout.paddingLayout(4)
).withName("_GPtrArray");
/**
* The layout of this struct
*/
public static final GroupLayout layout() {
return $LAYOUT;
}
private static final AddressLayout pdata$LAYOUT = (AddressLayout)$LAYOUT.select(groupElement("pdata"));
/**
* Layout for field:
* {@snippet lang=c :
* gpointer *pdata
* }
*/
public static final AddressLayout pdata$layout() {
return pdata$LAYOUT;
}
private static final long pdata$OFFSET = 0;
/**
* Offset for field:
* {@snippet lang=c :
* gpointer *pdata
* }
*/
public static final long pdata$offset() {
return pdata$OFFSET;
}
/**
* Getter for field:
* {@snippet lang=c :
* gpointer *pdata
* }
*/
public static MemorySegment pdata(MemorySegment struct) {
return struct.get(pdata$LAYOUT, pdata$OFFSET);
}
/**
* Setter for field:
* {@snippet lang=c :
* gpointer *pdata
* }
*/
public static void pdata(MemorySegment struct, MemorySegment fieldValue) {
struct.set(pdata$LAYOUT, pdata$OFFSET, fieldValue);
}
private static final OfInt len$LAYOUT = (OfInt)$LAYOUT.select(groupElement("len"));
/**
* Layout for field:
* {@snippet lang=c :
* guint len
* }
*/
public static final OfInt len$layout() {
return len$LAYOUT;
}
private static final long len$OFFSET = 8;
/**
* Offset for field:
* {@snippet lang=c :
* guint len
* }
*/
public static final long len$offset() {
return len$OFFSET;
}
/**
* Getter for field:
* {@snippet lang=c :
* guint len
* }
*/
public static int len(MemorySegment struct) {
return struct.get(len$LAYOUT, len$OFFSET);
}
/**
* Setter for field:
* {@snippet lang=c :
* guint len
* }
*/
public static void len(MemorySegment struct, int fieldValue) {
struct.set(len$LAYOUT, len$OFFSET, fieldValue);
}
/**
* Obtains a slice of {@code arrayParam} which selects the array element at {@code index}.
* The returned segment has address {@code arrayParam.address() + index * layout().byteSize()}
*/
public static MemorySegment asSlice(MemorySegment array, long index) {
return array.asSlice(layout().byteSize() * index);
}
/**
* The size (in bytes) of this struct
*/
public static long sizeof() { return layout().byteSize(); }
/**
* Allocate a segment of size {@code layout().byteSize()} using {@code allocator}
*/
public static MemorySegment allocate(SegmentAllocator allocator) {
return allocator.allocate(layout());
}
/**
* Allocate an array of size {@code elementCount} using {@code allocator}.
* The returned segment has size {@code elementCount * layout().byteSize()}.
*/
public static MemorySegment allocateArray(long elementCount, SegmentAllocator allocator) {
return allocator.allocate(MemoryLayout.sequenceLayout(elementCount, layout()));
}
/**
* Reinterprets {@code addr} using target {@code arena} and {@code cleanupAction) (if any).
* The returned segment has size {@code layout().byteSize()}
*/
public static MemorySegment reinterpret(MemorySegment addr, Arena arena, Consumer cleanup) {
return reinterpret(addr, 1, arena, cleanup);
}
/**
* Reinterprets {@code addr} using target {@code arena} and {@code cleanupAction) (if any).
* The returned segment has size {@code elementCount * layout().byteSize()}
*/
public static MemorySegment reinterpret(MemorySegment addr, long elementCount, Arena arena, Consumer cleanup) {
return addr.reinterpret(layout().byteSize() * elementCount, arena, cleanup);
}
}