ml.dmlc.xgboost4j.java.GompLoader Maven / Gradle / Ivy
/*-
* -\-\-
* zoltar-xgboost
* --
* Copyright (C) 2016 - 2018 Spotify AB
* --
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* -/-/-
*/
package ml.dmlc.xgboost4j.java;
import java.io.IOException;
import java.lang.reflect.Field;
import java.util.Collection;
import java.util.Locale;
/**
* Utility class to load GOMP library on both Mac
* and Linux environment.
*/
public class GompLoader {
private static boolean isLinux() {
return System.getProperty("os.name").toLowerCase(Locale.ENGLISH).contains("linux");
}
private static void loadGomp() throws IOException {
if (isLinux()) {
load("/lib/libgomp.so.1");
}
}
private static void load(final String name) throws IOException {
final Collection libraries = getLoadedLibraries(ClassLoader.getSystemClassLoader());
System.out.println("Loaded libs" + libraries);
final String libFile = name.substring(name.lastIndexOf('/') + 1);
final String libName = libFile.substring(0, libFile.indexOf('.'));
if (libraries.stream().noneMatch(n -> n.contains(libName))) {
System.load(NativeLibLoader.createTempFileFromResource(name));
}
}
private static Collection getLoadedLibraries(final ClassLoader loader)
throws IOException {
try {
final Field libField = ClassLoader.class.getDeclaredField("loadedLibraryNames");
libField.setAccessible(true);
return (Collection) libField.get(loader);
} catch (final NoSuchFieldException | IllegalAccessException noSuchFieldError) {
throw new IOException(noSuchFieldError);
}
}
/**
* The entry to to load the GOMP library.
*/
public static void start() throws IOException {
if (isLinux()) {
loadGomp();
load("/lib/libxgboost4j.so");
} else {
load("/lib/libxgboost4j.dylib");
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy