DroidFish: Implemented chmod using JNI. More efficient than starting a process.

This commit is contained in:
Peter Osterlund
2012-05-12 17:31:50 +00:00
parent 94f9994fe6
commit 1ec674197c
3 changed files with 21 additions and 6 deletions

View File

@@ -43,4 +43,7 @@ public class EngineUtil {
abi = "armeabi"; // Unknown ABI, assume original ARM
return "stockfish-" + abi;
}
/** Executes chmod 744 exePath. */
final static native boolean chmod(String exePath);
}

View File

@@ -240,12 +240,7 @@ public class ExternalEngine extends UCIEngineBase {
}
private final void chmod(String exePath) throws IOException {
Process proc = Runtime.getRuntime().exec(new String[]{"chmod", "744", exePath});
try {
proc.waitFor();
} catch (InterruptedException e) {
proc.destroy();
if (!EngineUtil.chmod(exePath))
throw new IOException("chmod failed");
}
}
}