Class CombinedRuntimeLoader

    • Method Detail

      • extractLibraries

        public static <T> List<StringextractLibraries​(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 object
        resourceName - 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 load
        extractedFiles - 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 object
        librariesToLoad - List of libraries to load
        Throws:
        IOException - Throws an IOException if not found