|
1 | 1 | import java.lang.foreign.*;
|
| 2 | +import java.lang.foreign.MemoryLayout.PathElement; |
2 | 3 | import java.lang.invoke.*;
|
3 | 4 | import java.util.*;
|
4 | 5 |
|
5 | 6 | /**
|
6 |
| - * To run: `java --enable-preview --source 22 ForeignFunctionAndMemoryApiFunctionExemple.java` |
| 7 | + * To run: `java --enable-native-access=ALL-UNNAMED --source 22 -Djava.library.path=$(pwd)/ ForeignFunctionAndMemoryApiFunctionExemple.java` |
7 | 8 | */
|
8 | 9 | public class ForeignFunctionAndMemoryApiFunctionExemple {
|
9 | 10 | public static void main(String[] args) {
|
10 | 11 | functionLookupExample();
|
| 12 | + downcallForeignFunction(); |
| 13 | + upcallJavaCodeToForeignFunction(); |
| 14 | + downcallJavaCodeToForeignFunctionPassingObject(); |
11 | 15 | }
|
12 | 16 |
|
13 | 17 | static void functionLookupExample() {
|
14 | 18 | Linker linker = Linker.nativeLinker();
|
15 | 19 | SymbolLookup stdlib = linker.defaultLookup();
|
16 |
| - Optional<MemorySegment> radixsortMem = stdlib.find("radixsort"); |
| 20 | + |
| 21 | + // find the function in stdlib |
| 22 | + MemorySegment strlenPtr = stdlib.find("strlen").get(); |
| 23 | + |
| 24 | + // function signature: returns a long and receives a char* (address pointer) |
| 25 | + FunctionDescriptor signature = FunctionDescriptor.of(ValueLayout.JAVA_LONG, ValueLayout.ADDRESS); |
| 26 | + // method handle to be used in Java code to invoke the foreign function |
| 27 | + MethodHandle strlen = linker.downcallHandle(strlenPtr, signature); |
| 28 | + } |
| 29 | + |
| 30 | + /** |
| 31 | + * This method will invoke a standard C library function: |
| 32 | + * size_t strlen(const char *s) |
| 33 | + */ |
| 34 | + static void downcallForeignFunction() { |
| 35 | + System.out.println("=== Downcall - passing array pointer (string) and receiving a long ==="); |
| 36 | + Linker linker = Linker.nativeLinker(); |
| 37 | + SymbolLookup stdlib = linker.defaultLookup(); |
| 38 | + MemorySegment strlenPtr = stdlib.find("strlen").get(); |
| 39 | + FunctionDescriptor signature = FunctionDescriptor.of(ValueLayout.JAVA_LONG, ValueLayout.ADDRESS); |
| 40 | + MethodHandle strlen = linker.downcallHandle(strlenPtr, signature); |
| 41 | + |
| 42 | + try (Arena arena = Arena.ofConfined()) { |
| 43 | + // allocates the memory (char*) |
| 44 | + MemorySegment str = arena.allocateFrom("Hello FFM API!"); |
| 45 | + // invokes the native function passing the memory with the string |
| 46 | + long len = (long) strlen.invoke(str); |
| 47 | + |
| 48 | + System.out.println("strlen returned: " + len); |
| 49 | + } catch (Throwable ex) { |
| 50 | + System.err.println("Error: " + ex.getMessage()); |
| 51 | + } |
| 52 | + } |
| 53 | + |
| 54 | + /** |
| 55 | + * This method will invoke a standard C library function: |
| 56 | + * void qsort(void *base, size_t nmemb, size_t size, int (*compar)(const void *, const void *)) |
| 57 | + */ |
| 58 | + static void upcallJavaCodeToForeignFunction() { |
| 59 | + System.out.println("=== Downcall and Upcall - passing array pointer and function pointer ==="); |
| 60 | + Linker linker = Linker.nativeLinker(); |
| 61 | + SymbolLookup stdlib = linker.defaultLookup(); |
| 62 | + |
| 63 | + MethodHandle qsort = linker.downcallHandle( |
| 64 | + stdlib.find("qsort").get(), |
| 65 | + // signature: (array pointer, long, long, function pointer) |
| 66 | + FunctionDescriptor.ofVoid(ValueLayout.ADDRESS, ValueLayout.JAVA_LONG, ValueLayout.JAVA_LONG, ValueLayout.ADDRESS) |
| 67 | + ); |
| 68 | + |
| 69 | + // method handle to invoke the Java method |
| 70 | + MethodHandle comparatorHandle = null; |
| 71 | + try { |
| 72 | + comparatorHandle = MethodHandles.lookup().findStatic( |
| 73 | + MemorySegmentIntComparator.class, |
| 74 | + "compare", // method name |
| 75 | + MethodType.methodType(int.class, MemorySegment.class, MemorySegment.class) // signature (return and parameters) |
| 76 | + ); |
| 77 | + } catch(NoSuchMethodException | IllegalAccessException ex) {} |
| 78 | + |
| 79 | + // Java method pointer |
| 80 | + MemorySegment comparatorPtr = linker.upcallStub( |
| 81 | + comparatorHandle, |
| 82 | + FunctionDescriptor.of( // signature |
| 83 | + ValueLayout.JAVA_INT, |
| 84 | + ValueLayout.ADDRESS.withTargetLayout(ValueLayout.JAVA_INT), |
| 85 | + ValueLayout.ADDRESS.withTargetLayout(ValueLayout.JAVA_INT) |
| 86 | + ), |
| 87 | + Arena.ofAuto() // arena to be used to allocate the foreign function arguments to pass to Java code |
| 88 | + ); |
| 89 | + |
| 90 | + try (Arena arena = Arena.ofConfined()) { |
| 91 | + int[] array = new int[] { 4, 0, 8, 7, 1, 6, 5, 9, 3, 2 }; |
| 92 | + System.out.println("Array to be sorted: " + Arrays.toString(array)); |
| 93 | + |
| 94 | + MemorySegment arrayPtr = arena.allocateFrom(ValueLayout.JAVA_INT, array); |
| 95 | + |
| 96 | + // the array will be sorted in-place |
| 97 | + qsort.invoke(arrayPtr, array.length, ValueLayout.JAVA_INT.byteSize(), comparatorPtr); |
| 98 | + |
| 99 | + // gets the sorted array from the memory |
| 100 | + int[] sortedArray = arrayPtr.toArray(ValueLayout.JAVA_INT); |
| 101 | + |
| 102 | + System.out.println("Sorted array: " + Arrays.toString(sortedArray)); |
| 103 | + } catch (Throwable ex) { |
| 104 | + System.err.println("Error: " + ex.getMessage()); |
| 105 | + } |
| 106 | + } |
| 107 | + |
| 108 | + /** |
| 109 | + * This method will invoke the C function `validate_person` defined in the `person_validator.c`. |
| 110 | + * The C code must be compiled first: `gcc -c person_validator.c` |
| 111 | + * Function's signature: char* validate_person(struct Person* person) |
| 112 | + * Struct: `struct Person { char* name; short age; }` |
| 113 | + */ |
| 114 | + static void downcallJavaCodeToForeignFunctionPassingObject() { |
| 115 | + System.out.println("=== Downcall - passing struct pointer and receiving an array pointer (string) ==="); |
| 116 | + System.load(System.getProperty("java.library.path") + "libpersonvalidator.so"); |
| 117 | + |
| 118 | + SymbolLookup symbolLookup = SymbolLookup.loaderLookup(); |
| 119 | + |
| 120 | + MemoryLayout personStructMemoryLayout = MemoryLayout.structLayout( |
| 121 | + ValueLayout.ADDRESS.withName("name"), |
| 122 | + ValueLayout.JAVA_SHORT.withName("age") |
| 123 | + ); |
| 124 | + |
| 125 | + MethodHandle personValidator = Linker.nativeLinker().downcallHandle( |
| 126 | + symbolLookup.find("validate_person").get(), |
| 127 | + // signature: struct pointer -> string pointer |
| 128 | + FunctionDescriptor.of(ValueLayout.ADDRESS, ValueLayout.ADDRESS) |
| 129 | + ); |
| 130 | + |
| 131 | + VarHandle nameHandle = personStructMemoryLayout.varHandle(PathElement.groupElement("name")); |
| 132 | + VarHandle ageHandle = personStructMemoryLayout.varHandle(PathElement.groupElement("age")); |
| 133 | + |
| 134 | + var people = List.of( |
| 135 | + new Person(1, null, (short) 0), |
| 136 | + new Person(2, "", (short) 0), |
| 137 | + new Person(3, "Marley", (short) 0), |
| 138 | + new Person(4, "Marley", (short) 10), |
| 139 | + new Person(5, "Marley", (short) 19) |
| 140 | + ); |
| 141 | + |
| 142 | + people.forEach(person -> { |
| 143 | + try (Arena arena = Arena.ofConfined()) { |
| 144 | + MemorySegment personPtr = arena.allocate(personStructMemoryLayout); |
| 145 | + if (person.name() == null) { |
| 146 | + nameHandle.set(personPtr, 0L, MemorySegment.NULL); |
| 147 | + } else { |
| 148 | + nameHandle.set(personPtr, 0L, arena.allocateFrom(person.name())); |
| 149 | + } |
| 150 | + ageHandle.set(personPtr, 0L, person.age()); |
| 151 | + |
| 152 | + // returns a zero-length memory segment (address pointer) |
| 153 | + MemorySegment resultPtr = (MemorySegment) personValidator.invoke(personPtr); |
| 154 | + // reinterpret the pointer to tell the size (max value to read until `\0`) |
| 155 | + MemorySegment messagePtr = resultPtr.reinterpret(Integer.MAX_VALUE); |
| 156 | + String message = messagePtr.getString(0); |
| 157 | + |
| 158 | + System.out.println("ID " + person.id() + " validation result: " + message); |
| 159 | + } catch (Throwable ex) { |
| 160 | + System.err.println("Error: " + ex.getMessage()); |
| 161 | + } |
| 162 | + }); |
| 163 | + } |
| 164 | +} |
| 165 | + |
| 166 | +class MemorySegmentIntComparator { |
| 167 | + // function to be called by the foreign function |
| 168 | + static int compare(MemorySegment x, MemorySegment y) { |
| 169 | + System.err.println("\tJava method called with " + x + " and " + y); |
| 170 | + // get the int in the memory |
| 171 | + return Integer.compare(x.get(ValueLayout.JAVA_INT, 0), y.get(ValueLayout.JAVA_INT, 0)); |
17 | 172 | }
|
18 | 173 | }
|
| 174 | + |
| 175 | +record Person(int id, String name, short age) {} |
| 176 | + |
0 commit comments