]> git.zerfleddert.de Git - ms2-fixes/blobdiff - MS2Debounce/src/de/rmdir/ms2debounce/DebounceModuleHelper.java
add setDelay
[ms2-fixes] / MS2Debounce / src / de / rmdir / ms2debounce / DebounceModuleHelper.java
index 93fd221a54fe3aa85961cfd60823b58d12cfc679..0a764e5c559d23bc671d62729045e2b9aa86104c 100644 (file)
@@ -30,7 +30,12 @@ public class DebounceModuleHelper
 
                extractModule();
 
-               // FIXME: Read settings from database...
+               SharedPreferences settings = ctx.getSharedPreferences(PREFS_NAME, Context.MODE_PRIVATE);
+               SharedPreferences.Editor editor = settings.edit();
+               if (is_safe_to_load()) {
+                       editor.putBoolean("safe_to_load", false);
+                       editor.commit();
+               }
 
                try {
                        Process insmod = Runtime.getRuntime().exec(new String[]{"su","-c","/system/bin/insmod " + debounce_ko + " debounce_delay=" + delay});
@@ -38,18 +43,18 @@ public class DebounceModuleHelper
                } catch (Exception e) {
                        return;
                }
+
+               if (!isLoaded()) {
+                       return;
+               }
        
                if (getDelay() <= 0) {
                        return;
                }
 
                /* Module was obviously loaded, so it is safe to load on boot */
-               if (!is_safe_to_load()) {
-                       SharedPreferences settings = ctx.getSharedPreferences(PREFS_NAME, Context.MODE_PRIVATE);
-                       SharedPreferences.Editor editor = settings.edit();
-                       editor.putBoolean("safe_to_load", true);
-                       editor.commit();
-               }
+               editor.putBoolean("safe_to_load", true);
+               editor.commit();
        }
 
        public synchronized void unloadModule() {
@@ -98,6 +103,18 @@ public class DebounceModuleHelper
                return debounce_delay;
        }
 
+       public synchronized void setDelay(int delay) {
+               if (isLoaded()) {
+                       if (getDelay() == delay) {
+                               return;
+                       }
+
+                       unloadModule();
+               }
+
+               loadModule(delay);
+       }
+
        public synchronized boolean is_safe_to_load() {
                SharedPreferences settings = ctx.getSharedPreferences(PREFS_NAME, Context.MODE_PRIVATE);
                boolean safe_to_load = settings.getBoolean("safe_to_load", false);
Impressum, Datenschutz