Package edu.wpi.first.util
Class CombinedRuntimeLoader
- java.lang.Object
-
- edu.wpi.first.util.CombinedRuntimeLoader
-
public final class CombinedRuntimeLoader extends Object
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static <T> List<String>
extractLibraries(Class<T> clazz, String resourceName)
Extract a list of native libraries.static String
getExtractionDirectory()
static <T> void
loadLibraries(Class<T> clazz, String... librariesToLoad)
Load a list of native libraries out of a single directory.static void
loadLibrary(String libraryName, List<String> extractedFiles)
Load a single library from a list of extracted files.static String
setDllDirectory(String directory)
-
-
-
Method Detail
-
getExtractionDirectory
public static String getExtractionDirectory()
-
setDllDirectory
public static String setDllDirectory(String directory)
-
extractLibraries
public static <T> List<String> extractLibraries(Class<T> clazz, String resourceName) throws IOException
Extract a list of native libraries.- Type Parameters:
T
- The class where the resources would be located- Parameters:
clazz
- The actual class objectresourceName
- The resource name on the classpath to use for file lookup- Returns:
- List of all libraries that were extracted
- Throws:
IOException
- Thrown if resource not found or file could not be extracted
-
loadLibrary
public static void loadLibrary(String libraryName, List<String> extractedFiles) throws IOException
Load a single library from a list of extracted files.- Parameters:
libraryName
- The library name to loadextractedFiles
- The extracted files to search- Throws:
IOException
- If library was not found
-
loadLibraries
public static <T> void loadLibraries(Class<T> clazz, String... librariesToLoad) throws IOException
Load a list of native libraries out of a single directory.- Type Parameters:
T
- The class where the resources would be located- Parameters:
clazz
- The actual class objectlibrariesToLoad
- List of libraries to load- Throws:
IOException
- Throws an IOException if not found
-
-