Update VendorJNI to not use RuntimeLoader (#34)

This commit is contained in:
Ryan Blue 2024-05-31 08:16:12 -04:00 committed by GitHub
parent 63dc8dc664
commit 0262900d2c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,16 +1,12 @@
package com.vendor.jni;
import java.io.IOException;
import java.util.concurrent.atomic.AtomicBoolean;
import edu.wpi.first.util.RuntimeLoader;
/**
* Demo class for loading the driver via JNI.
*/
public class VendorJNI {
static boolean libraryLoaded = false;
static RuntimeLoader<VendorJNI> loader = null;
/**
* Helper class for determining whether or not to load the driver on static initialization.
@ -37,27 +33,19 @@ public class VendorJNI {
static {
if (Helper.getExtractOnStaticLoad()) {
try {
loader = new RuntimeLoader<>("VendorDriver", RuntimeLoader.getDefaultExtractionRoot(), VendorJNI.class);
loader.loadLibrary();
} catch (IOException ex) {
ex.printStackTrace();
System.exit(1);
}
System.loadLibrary("VendorDriver");
libraryLoaded = true;
}
}
/**
* Force load the library.
* @throws java.io.IOException thrown if the native library cannot be found
*/
public static synchronized void forceLoad() throws IOException {
public static synchronized void forceLoad() {
if (libraryLoaded) {
return;
}
loader = new RuntimeLoader<>("VendorDriver", RuntimeLoader.getDefaultExtractionRoot(), VendorJNI.class);
loader.loadLibrary();
System.loadLibrary("VendorDriver");
libraryLoaded = true;
}