Coder Social home page Coder Social logo

jpassport's Introduction

JPassport - Java 22

JPassport works like Java Native Access (JNA) but uses the Foreign Linker API instead of JNI. Similar to JNA, you declare a Java interface that is bound to the external C library using method names.
The goal of this project is to a) start working with the Foreign Linker, b) provide a drop in replacement for JNA in simple applications.

As part of the Foreign Linker API a tool called JExtract is available. Given a header file JExtract will build the classes needed to access a C library. If you have a large header file then JExtract is likely an easier tool for you to use if you don't already have interfaces defined for JNA.

Java 22 and later are required to use this library. There are separate branches for Java 17 to 22.

The Foreign Linker API is final in Java 22.

Getting Started

Source

Download the source and run the maven build.

Maven

    <dependency>
        <groupId>io.github.boulder-on</groupId>
        <artifactId>JPassport</artifactId>
        <version>1.0.1-22</version>
    </dependency>

Calling a native library example

The native api refers to these a "down calls".

C, compiled into libforeign.dll or libforeign.so:

int string_length(const char* string)
{
    return strlen(string);
}

double sumArrD(const double *arr, const int count)
{
    double r = 0;
    for (int n = 0; n < count; ++n)
        r += arr[n];
    return r;
}

Java Interface:

public interface Linked extends Passport {
   int string_length(String s);
   double sumArrD(double[] arr, int count);
}

Standard usage - writes a .java file to disk, compiles and loads:

Linked L = PassportFactory.link("libforeign", Linked.class); 
int n = L.string_length("hello");
double sum = L.sumArrD(new double[] {1, 2, 3}, 3);

Static usage - writes a .java file to disk that you can include in your codebase:

PassportWriter pw = new PassportWriter(Linked.class);
pw.writeModule(Path.of('output_location'));

Once the class is compiled, to use it:

Linked l = new Linked_Impl(PassportFactory.loadMethodHandles("libforeign", Linked.class));

In order to use this library you will need to provide the VM these arguments:

-Djava.library.path=[path to lib] --enable-native-access jpassport

JPassport works by writing a class that implements your interface, compiling it and passing it back to you. By default, the classes are written to the folder specified by System.getProperty("java.io.tmpdir"). If you provide the system property "jpassport.build.home" then the classes will be written and compiled there.

Passing function pointers to native code example

The native API refers to these as "up calls". It's common in native programming to pass a function as a pointer into another function. This technique is used to create call-backs.

public interface CallbackNative extends Passport
{
    void passMethod(FunctionPtr functionPtr);
}

public class MyCallback
{
    public void callbackMethod(int value, String name)
    {
        System.out.println(value + ". " + name);
    }
}

MyCallback cb = new MyCallback();
FunctionPtr functionPtr = PassportFactory.createCallback(cb, "callbackMethod");

CallbackNative cbn = PassportFactory.link("libforeign", CallbackNative.class);
cbn.passMethod(functionPtr);

At the moment this does not work for static methods.

Performance

Performance was tested vs JNA, JNA Direct, and pure Java.

Performance of a method that passes 2 doubles. JPassport is about 5x faster than JNA. JNA Direct is impressively fast. JPassport that uses a proxy class performs quite poorly because of its heavy use of reflection.

primative performance

Performance of a method that passes an array of doubles. The gap here is much smaller between JNA and JPassport.

array performance

(Tests were run on Windows 11 with an i7-10850H.)

C Data Types Handled Automatically

C Data Type Java Data Type
double double
double*, double[] double[]
double** @PtrPtrArg double[][]
double[][] double[][]
float float
float*, float[] float[]
float** @PtrPtrArg float[][]
float[][] float[][]
long long
long*, long[] long[]
long** @PtrPtrArg long[][]
long[][] long[][]
int int
int*, int[] int[]
int** @PtrPtrArg int[][]
int[][] int[][]
short short
short*, short[] short[]
short** @PtrPtrArg short[][]
short[][] short[][]
char byte
char* byte[] or String
char[] byte[] or String
char** @PtrPtrArg byte[][]
char[][] byte[][]
structs Records
char*, void * MemoryBlock
n/a Arena (see below)

Any C argument that is defined with ** must be annotated with @PTrPtrArg in your Java interface.

An Arena object can be added to any interface method signature. JPassport will use that Arena to allocate memory instead of creating its own Arena. This can help with efficiency by allowing you to hold a large block of memory open longer, rather than regularly re-allocating it. Only one Arena can be passed.

Return types can be:

  1. double
  2. float
  3. long
  4. int
  5. short
  6. char
  7. void
  8. char* (maps to a Java String)
  9. any pointer (see limitations)

If an argument is changed by the C library call then the @RefArg annotation is required for that argument. The argument also needs to be passed as an array of length one. Ex.

C:

void setInt(int *val, int set)
{
    *val = set;
}

Java:

public interface Test extends Passport {
  void setInt(@RefArg int[] d, int set);
}

Linked lib = PassportFactory.link("foreign_link", Test.class);
int[] ref = new int[1];
lib.setInt(ref, 10);

Without the @RefArg, when ref[] is returned it will not have been updated.

Structs and Records

In order to handle C Structs you must make an equivalent Java Record. For example

struct PassingData
{
    int s_int;
    long long s_long;
    float s_float;
    double s_double;
};

struct ComplexPassing
{
    int s_ID;
    struct PassingData s_passingData;
    struct PassingData* s_ptrPassingData;
    char* s_string;
};

double passSimple(struct PassingData* complex)
{
...
}

double passComplex(struct ComplexPassing* complex)
{
...
}
import jpassport.annotations.RefArg;

public record PassingData(
        @StructPadding(bytes = 4) int s_int,
        long s_long,
        @StructPadding(bytes = 4) float s_float,
        double s_double) {
}

public record ComplexPassing(
        @StructPadding(bytes = 4) int ID,
        PassingData ts,
        @Ptr TestStruct tsPtr,
        String string) {
}

public interface PerfTest extends Passport {
    double passStruct(PassingData structData);
    double passComplex(@RefArg ComplexPassing[] complexStruct);
}

The @StructPadding annotation here is optional and maintained for legacy reasons (and in case my calculations for padding a wrong on some platforms). Also, I guess it's possible that you have a very strange struct where you need bespoke padding. In general, the library will automatically add the padding that it thinks is required. If you use @StructPadding that tells JPassport how much padding to put before or after a struct member (negative numbers indicate pre-member padding). There are also separate annotation values for different platforms (windowsBytes, macBytes, linuxBytes).

The other important annotation is @Ptr, this lets JPassport know to treat the member of the struct as a pointer to another struct.

Arrays of Records can only be 1 element long. Longer arrays of Records are not supported.

Records can contain primitives, arrays of primitives, pointers to arrays of primitives, Strings, or pointers to other Records.

Annotations

JPassport uses annotations as code generation hints. The available annotations are:

Annotation Usage Meaning
Array Record members If a C Struct takes a pointer to a primative array, this allows you to say what the size of the primative array is for RefArgs.
NotRequired Methods If a function could not be found in the native library then no exception will be thrown. Use hasMethod("") to determine if the function was found.
Ptr Record members If a C Struct takes a pointer to a primative or another struct then use this annotation.
PtrPtrArg Function argument Any C function that takes a ** must be annotated with this.
RefArg Function argument Any C function that changes the contents of a pointer must be annotated with this to force the read back of the parameter
RefArg (read_back_only=true) Function argument If you only need to pass a blank memory space for a method to fill, use this optimization, otherwise the values in the array are copied to memory that is passed to C.
StructPadding Record members See the Javadoc or the above section on structs and records.
Critical Methods Removes some overhead for calling a native method. Cannot be used when callbacks are used. See the JDK's Linker.Option.critical for more details.

Limitations

  • Only arrays of Records of length 1 work.
  • Only 1D and 2D arrays of primitives are supported, deeper nestings do not work.
  • The interface file passed to PassportFactory and all required Records must be exported by your module.

Pointers as function returns only work in a limited fashion. Based on a C function declaration there isn't a way to tell exactly what a method is returning. For example, returning int* could return any number of ints. There is little a library like JPassport can do to handle returned pointers automatically. The work-around is for your interface function to return MemorySegment. From there it would be up to you to decipher the return.

Declaring your interface method to take MemorySegment objects allow you to manage all the data yourself (like JExtract).

double* mallocDoubles(const int count)
{
    double* ret = malloc(count * sizeof(double ));

    for (int n = 0; n < count; ++n)
        ret[n] = (double)n;

    return ret;
}

void freeMemory(void *memory)
{
    free(memory);
}
public interface TestLink extends Passport {
    MemorySegment mallocDoubles(int count);
    void freeMemory(MemorySegment addr);
}

double[] testReturnPointer(int count) {
    MemorySegment address = linked_lib.mallocDoubles(count);
    double[] values = Utils.toArrDouble(address, count);
    linked_lib.freeMemory(address);
    return values;
}

Dependencies

JPassport itself only requires Java 22 or later to build and run. There are separate Java 17-20 branches.

Work To-Do

Roughly in order of importance

  1. Support arrays of Records
  2. Support returning a Record
  3. Use the Java Micro-benchmarking harness.
  4. Use the new Classfile API to build the class in memory

Release Notes

  • 1.0.1-22
    • Fixed an issue where System libraries could not be loaded (ex. malloc).
  • 1.0.0-22
    • Full 1.0 since Java 22 has gone GA and the foreign function API is now official
    • Added MemoryBlock as a method argument to pass allocated memory to a foreign function.
    • An Arena can now be an argument to a method. The Arena will be used for allocations during the call. In some cases this may be an optimization.
  • 0.7.0-22
    • Support Java 22
    • Added support for arrays of GenericPointer
    • Added Pointer as a sub-class of GenericPointer for better JNA compatability
    • Added the ability to use a Proxy object rather than writing a full new class
      • Using a Proxy is faster to create, but slower to invoke. Proxies are much slower than invoking a normal method, but the code to handle the native call is much less optimized as well.
    • The RefArg annotation can be added to an interface to indicate that all arrays should be read back after a call.
  • 0.6.0-21
    • Support Java 21
    • Make specifying byte padding in records/structs optional.
  • 0.6
    • Added the version of Java the library uses to the version (0.6.0-[java version])
    • Added GenericPointer returns and method arguments.
    • Added @NotRequired annotation for methods that may not exist.
    • Default functions in the interface are now ignored.
  • 0.5
    • Added the GenericPointer class to help with returning things like win32 HANDLEs
    • Added RefArg(read_back_only = true) to optimize the returning of reference arguments.
  • 0.5
    • Fixed and issue where zero argument methods would not compile
    • Fixed issues where passing and receiving null values caused their own NullPointerExceptions
  • 0.4
    • Original release

jpassport's People

Contributors

boulder-on avatar merykitty avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

jpassport's Issues

Update JUnit 5 version

The README says:

JUnit 5.4.2 (later versions of JUnit do not play nice with modules yet)

What are the issues here?

IIRC, we introduced module descriptors around JUnit 5.5 ... ๐Ÿค”

Write completely self contained source

It would be nice if the source code that's written could be 100% self contained as an option. That would mean moving everything from Utils into the written code and all of the method lookups. I think that would leave the constructor requiring a path to any library.

Structure testing crashes the VM

The TestUsingStructs JUnit test I just made will crash the VM. If I turn off code compiling and just use a class loader to load the last class I compiled then there is no crash. I'm attaching a VM crash log.

hs_err_pid11184.log

Use Annotation Processor

Using annotation processors at compile time would simplify the whole process and you could also immediately see changes in the generated code in your ide.

For example:

@Passport(link="libforeign")
public interface Linked {
   int string_length(String s);
   double sumArrD(double[] arr, int count);
}

Styles could be added to modify how the generated class is named etc. See how styling is implemented in the Immutibles library as an example to how this could be achieved.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.