import android.content.Context;
import android.content.SharedPreferences;
+import android.util.Log;
public class DebounceModuleHelper
{
public static final String PREFS_NAME = "DebounceCfg";
final int SUPERUSER_REQUEST = 4223;
+ private static final String TAG = "DebounceModuleHelper";
+
public DebounceModuleHelper(Context context) {
ctx = context;
}
protected void runAsRoot(String command) throws NotRootedException,ShellException {
Process rootcmd;
+ Log.i(TAG, "Running as root: " + command);
try {
rootcmd = Runtime.getRuntime().exec(new String[]{"su","-c","sh"});
} catch (java.io.IOException e) {
+ Log.e(TAG, "Got IOException: " + e.getMessage() + " (" + e.getCause() + ")");
throw new NotRootedException();
}
sh.flush();
sh.close();
} catch (java.io.IOException e) {
+ Log.e(TAG, "Got IOException: " + e.getMessage() + " (" + e.getCause() + ")");
throw new ShellException();
}
try {
- if (rootcmd.waitFor() != 0)
+ int r = rootcmd.waitFor();
+
+ if (r != 0) {
+ Log.e(TAG, "Process returned: " + r);
throw new ShellException();
+ }
} catch (java.lang.InterruptedException e) {
+ Log.e(TAG, "Got InterruptedException: " + e.getMessage() + " (" + e.getCause() + ")");
throw new ShellException();
}
+
+ Log.i(TAG, "Process executed successfully");
}
public synchronized boolean _loadModule() throws NotRootedException,ShellException {