2015-08-26 00:00:34 +02:00
|
|
|
/*
|
|
|
|
* opsu! - an open-source osu! client
|
|
|
|
* Copyright (C) 2014, 2015 Jeffrey Han
|
|
|
|
*
|
|
|
|
* opsu! is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* opsu! is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with opsu!. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package itdelatrisu.opsu;
|
|
|
|
|
2017-05-21 11:12:55 +02:00
|
|
|
import org.newdawn.slick.util.Log;
|
|
|
|
|
2015-08-26 00:00:34 +02:00
|
|
|
import java.io.File;
|
|
|
|
import java.io.FileOutputStream;
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.io.InputStream;
|
|
|
|
import java.io.OutputStream;
|
2017-05-21 11:12:55 +02:00
|
|
|
import java.lang.reflect.Field;
|
2015-08-26 00:00:34 +02:00
|
|
|
import java.util.Enumeration;
|
|
|
|
import java.util.jar.JarEntry;
|
2017-05-21 11:12:55 +02:00
|
|
|
|
|
|
|
import static yugecin.opsudance.core.InstanceContainer.*;
|
2015-08-26 00:00:34 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Native loader, based on the JarSplice launcher.
|
|
|
|
*
|
|
|
|
* @author http://ninjacave.com
|
|
|
|
*/
|
|
|
|
public class NativeLoader {
|
2015-08-30 21:31:01 +02:00
|
|
|
|
2017-05-21 11:12:55 +02:00
|
|
|
public static void loadNatives() {
|
|
|
|
try {
|
|
|
|
unpackNatives();
|
|
|
|
} catch (IOException e) {
|
|
|
|
String msg = String.format("Could not unpack native(s): %s", e.getMessage());
|
|
|
|
throw new RuntimeException(msg, e);
|
|
|
|
}
|
|
|
|
|
|
|
|
String nativepath = config.NATIVE_DIR.getAbsolutePath();
|
|
|
|
System.setProperty("org.lwjgl.librarypath", nativepath);
|
|
|
|
System.setProperty("java.library.path", nativepath);
|
|
|
|
|
|
|
|
try {
|
|
|
|
// Workaround for "java.library.path" property being read-only.
|
|
|
|
// http://stackoverflow.com/a/24988095
|
|
|
|
Field fieldSysPath = ClassLoader.class.getDeclaredField("sys_paths");
|
|
|
|
fieldSysPath.setAccessible(true);
|
|
|
|
fieldSysPath.set(null, null);
|
|
|
|
} catch (Exception e) {
|
|
|
|
Log.warn("Failed to set 'sys_paths' field.", e);
|
|
|
|
}
|
2015-08-30 21:31:01 +02:00
|
|
|
}
|
2015-08-26 00:00:34 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Unpacks natives for the current operating system to the natives directory.
|
2015-09-10 05:51:16 +02:00
|
|
|
* @throws IOException if an I/O exception occurs
|
2015-08-26 00:00:34 +02:00
|
|
|
*/
|
2017-05-21 11:12:55 +02:00
|
|
|
public static void unpackNatives() throws IOException {
|
|
|
|
if (env.jarfile == null) {
|
2015-08-27 21:14:04 +02:00
|
|
|
return;
|
2017-05-21 11:12:55 +02:00
|
|
|
}
|
2015-08-26 00:00:34 +02:00
|
|
|
|
2017-05-21 11:12:55 +02:00
|
|
|
if (!config.NATIVE_DIR.exists() && !config.NATIVE_DIR.mkdir()) {
|
|
|
|
String msg = String.format("Could not create folder '%s'",
|
|
|
|
config.NATIVE_DIR.getAbsolutePath());
|
|
|
|
throw new RuntimeException(msg);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Enumeration<JarEntry> entries = env.jarfile.entries();
|
2015-08-27 21:14:04 +02:00
|
|
|
while (entries.hasMoreElements()) {
|
|
|
|
JarEntry e = entries.nextElement();
|
|
|
|
if (e == null)
|
|
|
|
break;
|
2015-08-26 00:00:34 +02:00
|
|
|
|
2017-05-21 11:12:55 +02:00
|
|
|
File f = new File(config.NATIVE_DIR, e.getName());
|
2015-08-27 21:14:04 +02:00
|
|
|
if (isNativeFile(e.getName()) && !e.isDirectory() && e.getName().indexOf('/') == -1 && !f.exists()) {
|
2017-05-21 11:12:55 +02:00
|
|
|
InputStream in = env.jarfile.getInputStream(env.jarfile.getEntry(e.getName()));
|
2015-08-27 21:14:04 +02:00
|
|
|
OutputStream out = new FileOutputStream(f);
|
2015-08-26 00:00:34 +02:00
|
|
|
|
2015-08-27 21:14:04 +02:00
|
|
|
byte[] buffer = new byte[65536];
|
|
|
|
int bufferSize;
|
|
|
|
while ((bufferSize = in.read(buffer, 0, buffer.length)) != -1)
|
|
|
|
out.write(buffer, 0, bufferSize);
|
2015-08-26 00:00:34 +02:00
|
|
|
|
2015-08-27 21:14:04 +02:00
|
|
|
in.close();
|
|
|
|
out.close();
|
2015-08-26 00:00:34 +02:00
|
|
|
}
|
|
|
|
}
|
2015-08-27 21:14:04 +02:00
|
|
|
|
2017-05-21 11:12:55 +02:00
|
|
|
env.jarfile.close();
|
2015-08-26 00:00:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns whether the given file name is a native file for the current operating system.
|
|
|
|
* @param entryName the file name
|
|
|
|
* @return true if the file is a native that should be loaded, false otherwise
|
|
|
|
*/
|
2017-05-21 11:12:55 +02:00
|
|
|
private static boolean isNativeFile(String entryName) {
|
2015-08-26 00:00:34 +02:00
|
|
|
String osName = System.getProperty("os.name");
|
|
|
|
String name = entryName.toLowerCase();
|
|
|
|
|
|
|
|
if (osName.startsWith("Win")) {
|
|
|
|
if (name.endsWith(".dll"))
|
|
|
|
return true;
|
|
|
|
} else if (osName.startsWith("Linux")) {
|
|
|
|
if (name.endsWith(".so"))
|
|
|
|
return true;
|
2015-08-31 00:56:05 +02:00
|
|
|
} else if (osName.startsWith("Mac") || osName.startsWith("Darwin")) {
|
|
|
|
if (name.endsWith(".dylib") || name.endsWith(".jnilib"))
|
|
|
|
return true;
|
2015-08-26 00:00:34 +02:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2017-05-21 11:12:55 +02:00
|
|
|
|
2015-08-26 00:00:34 +02:00
|
|
|
}
|