User Tools

Site Tools


script_autosetupappfreeze

====== Differences ====== This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
script_autosetupappfreeze [2016/11/19 18:01]
cdfa
script_autosetupappfreeze [2017/07/21 08:57] (current)
cdfa 1.8.4
Line 4: Line 4:
   * Initial request: https://​plus.google.com/​+JaroslavGrochal/​posts/​BDKDMrTMfxt   * Initial request: https://​plus.google.com/​+JaroslavGrochal/​posts/​BDKDMrTMfxt
   * GitHub: https://​github.com/​cdfa/​AutoSetupLongTapFreeze   * GitHub: https://​github.com/​cdfa/​AutoSetupLongTapFreeze
-  * Version: 1.8.1.1+  * Version: 1.8.4
  
 ====== How to use the script ====== ====== How to use the script ======
Line 12: Line 12:
 You can setup autosync in the setup, or you can sync manually from the container menu => items => sync, or you can run the script from any item in the container with "​sync"​ (without the ""​) as data, or from anywhere if you put the container id directly behind it, so like "​sync1"​. You can setup autosync in the setup, or you can sync manually from the container menu => items => sync, or you can run the script from any item in the container with "​sync"​ (without the ""​) as data, or from anywhere if you put the container id directly behind it, so like "​sync1"​.
  
-You can sync items separately from the item menu and choosing Sync.+You can sync items separately from the item menu and choosing Sync, or sync all items in a container also from the item menu. This can also be done when the items are in a folder by longpressing the folder item.
  
 Run the script from the container again to uninstall (this won't clear events you manually set to sync the container). Run the script from the container again to uninstall (this won't clear events you manually set to sync the container).
Line 29: Line 29:
 1.8.1.1 1.8.1.1
   * Added item description to the toast message that is displayed if the item doesn'​t launch an app   * Added item description to the toast message that is displayed if the item doesn'​t launch an app
 +
 +1.8.1.2
 +  * Made the changes in 1.8.1.1 actually work
 +
 +1.8.1.3
 +  * Toasts message that says the item doesn'​t launch an app now only shows when you're actually trying to freeze that item and not anymore on each sync.
 +
 +1.8.2
 +  * The double confirm crash got fixed, so the workaround was removed
 +  * Only commands that need root are executed as root
 +
 +1.8.3
 +  * Added freezeing/​unfreezing all item from menu
 +  * Added long press folder to freeze/​unfreeze all items in it
 +
 +1.8.4
 +  * Ask to unfreeze and run an item if it is frozen instead of saying that the app is not installed
  
 ====== Script code ====== ====== Script code ======
Line 36: Line 53:
   // for Sources see: http://​www.lightninglauncher.com/​scripting/​reference/​api/​reference/​net/​pierrox/​lightning_launcher/​script/​api/​Event.html   // for Sources see: http://​www.lightninglauncher.com/​scripting/​reference/​api/​reference/​net/​pierrox/​lightning_launcher/​script/​api/​Event.html
   // for Events see http://​www.lightninglauncher.com/​scripting/​reference/​api/​reference/​net/​pierrox/​lightning_launcher/​script/​api/​PropertySet.html   // for Events see http://​www.lightninglauncher.com/​scripting/​reference/​api/​reference/​net/​pierrox/​lightning_launcher/​script/​api/​PropertySet.html
-  // you may only have to set 1 in the future. 
   , freezeSource = "​I_LONG_CLICK"​   , freezeSource = "​I_LONG_CLICK"​
   , freezeEvent = "​i.longTap";​   , freezeEvent = "​i.longTap";​
  
-bindClass("​android.app.AlertDialog"​);​ 
-bindClass("​android.content.DialogInterface"​);​ 
 bindClass("​android.widget.Toast"​);​ bindClass("​android.widget.Toast"​);​
 bindClass("​android.content.pm.PackageManager"​);​ bindClass("​android.content.pm.PackageManager"​);​
-bindClass('​java.lang.Runtime'​);​ 
-bindClass("​java.io.DataInputStream"​) 
-bindClass('​java.io.DataOutputStream'​);​ 
-bindClass('​java.lang.StringBuffer'​);​ 
-bindClass("​java.lang.Runnable"​);​ 
 bindClass("​java.lang.Thread"​);​ bindClass("​java.lang.Thread"​);​
 bindClass("​android.os.Handler"​);​ bindClass("​android.os.Handler"​);​
 bindClass("​android.os.Looper"​);​ bindClass("​android.os.Looper"​);​
 +bindClass('​java.io.BufferedReader'​);​
 +bindClass('​java.io.InputStreamReader'​);​
 +bindClass('​java.io.DataOutputStream'​);​
 +bindClass('​java.lang.StringBuffer'​);​
 +bindClass('​java.lang.Runtime'​);​
  
 var script = getCurrentScript() var script = getCurrentScript()
   , screen = getActiveScreen()   , screen = getActiveScreen()
   , context = screen.getContext()   , context = screen.getContext()
-  , frozenItIdss = [] 
   , threads = []   , threads = []
   , GUIHandler = new Handler()   , GUIHandler = new Handler()
   , frozenApps;   , frozenApps;
-  ​ 
-function customConfirmDialog(title,​ onConfirmFunction) { 
-  var builder = new AlertDialog.Builder(context);​ 
-  builder.setCancelable(true);​ 
-  builder.setTitle(title);​ 
-  builder.setNegativeButton("​Cancel",​ new DialogInterface.OnClickListener() { 
-    onClick: function (dialog, id) { 
-      dialog.dismiss();​ 
-    } 
-  }); 
-  builder.setPositiveButton("​Confirm",​ new DialogInterface.OnClickListener() { 
-    onClick: function (dialog, id) { 
-      dialog.dismiss();​ 
-      setTimeout(onConfirmFunction,​ 0); 
-    } 
-  }); 
-  builder.show();​ 
-} 
  
-function setEventHandlerRestorably(ob,​ name, action, data) {+function setEventHandlerRestorably(ob,​ name, action, data){
   var prop = ob.getProperties()   var prop = ob.getProperties()
     , ed = prop.edit()     , ed = prop.edit()
Line 89: Line 84:
 } }
  
-function restoreEventHandler(ob,​ name) { +function restoreEventHandler(ob,​ name){ 
-  if(ob) {+  if(ob){
     var evHa = JSON.parse(ob.getTag("​old " + name + " evHa"​));​     var evHa = JSON.parse(ob.getTag("​old " + name + " evHa"​));​
-    if(evHa) {+    if(evHa){
       var ed = ob.getProperties().edit();​       var ed = ob.getProperties().edit();​
       ed.setEventHandler(name,​ evHa[0], evHa[1]);       ed.setEventHandler(name,​ evHa[0], evHa[1]);
       ed.commit();​       ed.commit();​
       ob.setTag("​name",​ null);       ob.setTag("​name",​ null);
-    } else {+    }else{
       throw new Error("​No eventhandler backup for " + name + " on " + ob + "​found!"​)       throw new Error("​No eventhandler backup for " + name + " on " + ob + "​found!"​)
     }     }
-  } else {+  }else{
     throw new Error("​Cannot restore " + name + "of null!"​)     throw new Error("​Cannot restore " + name + "of null!"​)
   }   }
 } }
  
-function uninstall(c) { +function uninstall(c){ 
-  if(c && c.getTag("​longTapFreeze"​)) {+  if(c && c.getTag("​longTapFreeze"​)){
     c.setTag("​longTapFreeze",​ false);     c.setTag("​longTapFreeze",​ false);
     restoreEventHandler(c,​ freezeEvent);​     restoreEventHandler(c,​ freezeEvent);​
 +    restoreEventHandler(c,​ '​i.tap'​);​
     restoreEventHandler(c,​ "​i.menu"​);​     restoreEventHandler(c,​ "​i.menu"​);​
     restoreEventHandler(c,​ "​menu"​);​     restoreEventHandler(c,​ "​menu"​);​
-    if(c.getTag("​autosync"​) == "​true"​) restoreEventHandler(c,​ "​resumed"​);​ +    if(c.getTag("​autosync"​) ​=== "​true"​) restoreEventHandler(c,​ "​resumed"​);​ 
-    ​var frozenItIds = getFrozenItIds(c) +    ​c.getAllItems().forEach(function(it){ 
-      , it; +      if(isFrozen(it))
-    frozenItIds.forEach(function(itId, ind) { +
-      if(it = c.getItemById(itId)) {+
         unfreezeEffect(it);​         unfreezeEffect(it);​
 +    });
 +    var cs = screen.getAllContainersById(c.getId());​
 +    cs.forEach(function(c){
 +      var opener;
 +      if((opener = c.getOpener()) && opener.getType() === "​Folder"​){
 +        if(isFrozen(opener))
 +          unfreezeEffect(opener);​
       }       }
 +    });
 +  }
 +}
 +
 +/**
 + * Checks if an object is an array.
 + * @param object
 + * @returns {boolean}
 + */
 +function isArray(object){
 +  return Object.prototype.toString.call(object) === '​[object Array]';​
 +}
 +
 +/**
 + * If this function is executed in a thread that is the main GUI thread, execute func, or else execute func in the main GUI thread. (Android doesn'​t like it when you change the GUI outside of the main GUI thread)
 + * @param func {function}
 + */
 +function handleGUIEdit(func){
 +  if(Looper.getMainLooper().getThread() === Thread.currentThread()){
 +    func();
 +  }else{
 +    GUIHandler.post(func);​
 +  }
 +}
 +
 +/**
 + * Starts a new background thread with func.
 + * @param func {function} - The function the thread executes.
 + */
 +function startNewBackgroundThread(func){
 +  var thread = new Thread(function(){
 +    func();
 +    // if a looper was initialized in func, make sure the thread can die by stopping the thread when the Looper idles.
 +    if(threads[Thread.currentThread().getId()].prepared === true){
 +      Looper.myLooper().getQueue().addIdleHandler(function(){
 +        Looper.myLooper().quitSafely();​
 +      });
 +      Looper.loop();​
 +    }
 +  });
 +  thread.setUncaughtExceptionHandler(function(th,​ ex){
 +    handleGUIEdit(function(){
 +      alert(ex.getMessage());​
     })     })
-    frozenItIds.clear(); +  }); 
-    ​frozenItIds.queueSave();+  threads[thread.getId()] = {}; 
 +  thread.start();​ 
 +
 + 
 +//​noinspection JSValidateJSDoc 
 +/** 
 + * Gets a handler for the current thread and initializes a looper if necessary. 
 + * @returns {Handler} 
 + */ 
 +function getHandler(){ 
 +  if(Looper.getMainLooper().getThread() === Thread.currentThread()){ 
 +    ​return GUIHandler;​ 
 +  }else{ 
 +    var threadId = Thread.currentThread().getId();​ 
 +    if(threads[threadId].prepared !== true){ 
 +      Looper.prepare();​ 
 +      threads[threadId].prepared = true; 
 +    } 
 +    return new Handler();
   }   }
 } }
  
-function runAsRoot(cmd, newThread, callback{ +/** 
-  ​function execCmd(cmd){ + * This callback will be called when the executing of the command(sis finished 
-    ​try ​+ 
-      var process ​Runtime.getRuntime().exec("​su"​) + * @callback finishedCallback 
-        , reader ​= new DataInputStream(process.getInputStream()) + * @param {string[]} An array of the lines the command(sreturned 
-        , writer = new DataOutputStream(process.getOutputStream());+ */ 
 +/** 
 + * This callback will be called when a command is executed. 
 + * 
 + * @callback executedCallback 
 + */ 
 +/** 
 + * Runs a command in the terminal 
 + * @param cmds {string|string[]} - The command or array of commmands to be executed. 
 + * @param [asRoot=false] {boolean} - If the command(sshould be executed as root or not
 + * @param [newThread=true] {boolean} - If the executing of commands should happen in a new thread or not. (useful for root commands) 
 + * @param [callback] {finishedCallback} - The callback that handles the output. 
 + * @param [onExecuted] {executedCallback} - A callback that will be called when a command is executed. useful for multiple commands that take some time
 + * @returns {string[]||string[][]} - (only if asRoot == false && newThread == false) Returns an array of the lines written in the terminal or an array of arrays if multiple commands were executed. 
 + */ 
 +function runCmd(cmds, asRoot, newThread, callback, onExecuted)
 +  var handler = getHandler() 
 +    , output, process, reader, writer;
  
-      writer.writeBytes(cmd + '​\n'​);​ +  // set optional arguments 
-      ​writer.flush(); +  if(newThread !== false
-      ​writer.close();+    ​newThread = true;
  
-      var tmp +  /** 
-        , output = []; +   * Helper function for executing the command(s). Gets its parameters from the parent function. 
-      ​while ((tmp reader.readLine()) != null) { +   * @returns {string[]||string[][]} - (only if asRoot == false && newThread == false) Returns an array of the lines written in the terminal or an array of arrays if multiple commands were executed. 
-        ​output.push(tmp);+   */ 
 +  function execCmd(){ 
 +    /** 
 +     * Checks if the command is a string and if not alerts the user. 
 +     * @param cmd {string} 
 +     * @returns {boolean} 
 +     */ 
 +    function checkCmd(cmd){ 
 +      ​if(typeof(cmd) === "​string"​){ 
 +        return true; 
 +      }else 
 +        handleGUIEdit(function(){ 
 +          alert(cmd + " is not a string!"​);​ 
 +        }); 
 +      return false; 
 +    } 
 + 
 +    //​noinspection JSValidateJSDoc 
 +    /** 
 +     * Actually executes command. 
 +     * @param cmd {string} 
 +     * @param writer {DataOutputStream} - The writer to write the command to. 
 +     * @returns {boolean} If the command was actually written or not. 
 +     */ 
 +    function exec(cmd, writer)
 +      if(checkCmd(cmd)){ 
 +        ​writer.writeBytes(cmd + "​\n"​)
 +        writer.flush();​ 
 +        return true;
       }       }
-      ​reader.close();​ +      return ​false;
-      process.waitFor();​ +
-      ​return ​output; +
-    } catch (err) { +
-      alert(err+"​At line "​+err.lineNumber);+
     }     }
-  ​+ 
-   +    //​noinspection JSValidateJSDoc 
-  if(newThread==false){ +    /** 
-    ​return execCmd(cmd); +     * Read the output from the reader. 
-  ​}else{ +     * @param reader {BufferedReader
-    var handler ​getHandler()+     * @returns {Array} An array of lines that were outputted by the 
-    ​startNewBackgroundThread(function(){ +     */ 
-      if(callback){ +    function readOutput(reader){ 
-        var output ​execCmd(cmd);+      var tmp, output ​[]; 
 +      while((tmp ​reader.readLine()) !== null
 +        ​output.push(tmp); 
 + 
 +      ​return output.length ​=== 1 ? output[0] : output
 +    ​
 + 
 +    /** 
 +     * Executes the callback and if the callback is not a function alerts the user. 
 +     * @param callback 
 +     * @param output {Array} - The argument that is passed to the callback 
 +     */ 
 +    ​function ​handleCallback(callback, output){ 
 +      if(typeof ​callback === "​function"​){
         handler.post(function(){         handler.post(function(){
           callback(output);​           callback(output);​
         });         });
 +      }else if(callback){
 +        handleGUIEdit(function(){
 +          alert(callback + " is not a function!"​);​
 +        });
 +      }
 +    }
 +
 +    try{
 +      if(asRoot){
 +        process = Runtime.getRuntime().exec("​su"​);​
 +        reader = new BufferedReader(new InputStreamReader(process.getInputStream()));​
 +        writer = new DataOutputStream(process.getOutputStream());​
 +
 +        if(isArray(cmds)){
 +          output = [];
 +          cmds.forEach(function(cmd){
 +            if(exec(cmd,​ writer)){
 +              handleCallback(onExecuted);​
 +            }
 +          });
 +
 +          exec("​exit",​ writer);
 +          writer.close();​
 +
 +          output = readOutput(reader);​
 +          handleCallback(callback,​ output);
 +        }else{
 +          var succes = exec(cmds, writer);
 +
 +          exec("​exit",​ writer);
 +          writer.close();​
 +
 +          if(succes){
 +            output = readOutput(reader);​
 +            handleCallback(onExecuted);​
 +            handleCallback(callback,​ output);
 +          }
 +        }
 +
 +        reader.close();​
 +        process.waitFor();​
       }else{       }else{
-        ​execCmd(cmd)+        ​if(isArray(cmds)){ 
 +          var outputs = []; 
 +          cmds.forEach(function(cmd)
 +            if(checkCmd(cmd)){ 
 +              process = Runtime.getRuntime().exec(cmd);​ 
 +              reader = new BufferedReader(new InputStreamReader(process.getInputStream()));​ 
 +              output = readOutput(reader);​ 
 +              reader.close();​ 
 +              outputs.push(output);​ 
 +              handleCallback(onExecuted);​ 
 +              handleCallback(callback,​ output); 
 +            } 
 +          }); 
 +          process.waitFor();​ 
 +          return outputs; 
 +        }else{ 
 +          process = Runtime.getRuntime().exec(cmds);​ 
 +          reader = new BufferedReader(new InputStreamReader(process.getInputStream()));​ 
 +          output = readOutput(reader);​ 
 +          reader.close();​ 
 +          process.waitFor();​ 
 +          handleCallback(onExecuted);​ 
 +          handleCallback(callback,​ output); 
 +          return output; 
 +        }
       }       }
-    })+    }catch(err)
 +      handleGUIEdit(function(){ 
 +        alert("​At line " + err.lineNumber + ": " + err); 
 +      }); 
 +    } 
 +  } 
 + 
 +  if(asRoot && isArray(callback)) 
 +    throw new Error("​Multiple callbacks are not possible in su mode. Use onExecuteds instead."​);​ 
 + 
 +  if(newThread){ 
 +    startNewBackgroundThread(function(){ 
 +      execCmd();​ 
 +    }); 
 +  }else{ 
 +    return execCmd();
   }   }
 } }
  
-function getPackageName(it) { +function getPackageName(it){ 
-  try {+  try{
     return it.getIntent().getComponent().getPackageName();​     return it.getIntent().getComponent().getPackageName();​
-  } catch(e) { +  }catch(e){
-    Toast.makeText(context,​ item+" doesn'​t launch an app!", Toast.LENGTH_SHORT).show();​+
     return null;     return null;
   }   }
 } }
  
-function isFreezable(pkgName) {+function isFreezable(pkgName){
   if(!pkgName)   if(!pkgName)
     return false;     return false;
  
-  var onBlackList = false; +  var onWhiteList,​ 
-  for(var i = 0; i < blackList.length; i++) { +    ​onBlackList = blackList.some(function(pkg){ 
-    if(pkgName == blackList[i]) { +      ​return pkg === pkgName
-      ​onBlackList ​true; +    });
-      break+
-    } +
-  }+
  
-  if(whiteList.length == 0) { +  if(whiteList.length ​=== 0){ 
-    ​var onWhiteList = true; +    onWhiteList = true; 
-  } else { +  }else{ 
-    ​var onWhiteList = false; +    onWhiteList = whiteList.some(function(pkg){ 
-    for(var i = 0; i < whiteList.length; i++) { +      ​return pkg === pkgName
-      ​if(pkgName ​== whiteList[i]) { +    });
-        onWhiteList ​true; +
-        break; +
-      } +
-    }+
   }   }
  
Line 201: Line 389:
 } }
  
-function ​freeze(it, pkgName) { +function ​freezeChecks(it, allGood, giveFeedback){ 
-  ​runAsRoot("​pm disable " + pkgName, true, function() { +  ​var pkgName ​= getPackageName(it
-    ​freezeEffect(it); +    ​, freezeAble = isFreezable(pkgName); 
-    ​var frozenItIds = getFrozenItIds(it.getParent()); +  if(pkgName && freezeAble){ 
-    ​frozenItIds.push(it.getId()); +    ​allGood(pkgName); 
-    ​frozenItIds.queueSave(); +  }else if(giveFeedback !== false){ 
-  });+    ​if(!pkgName) 
 +      Toast.makeText(context, ​it + " doesn'​t launch an app!", Toast.LENGTH_SHORT).show(); 
 +    ​else if(!freezeAble) 
 +      Toast.makeText(context,​ "​Cannot freeze/​unfreeze! (Probably because of black- or whitelist",​ Toast.LENGTH_SHORT).show(); 
 +  }
 } }
  
-function ​unfreeze(it, pkgName) { +function ​freeze(it, callback){ 
-  ​runAsRoot("​pm ​enable ​" + pkgName, true, function() { +  ​if(it.getType() === "​Folder"​){ 
-    ​unfreezeEffect(it); +    freezeContainer(it.getContainer());​ 
-    var frozenItIds ​getFrozenItIds(it.getParent()); +  }else{ 
-    ​frozenItIds.remove(it.getId()); +    freezeChecks(it,​ function(pkgName){ 
-    ​frozenItIds.queueSave(); +      runCmd("​pm ​disable ​" + pkgName, true, true, null, function(){ 
-  });+        ​freezeEffect(it); 
 +        ​if(typeof callback ​=== '​function'​) 
 +          callback();​ 
 +      }); 
 +    }); 
 +  } 
 +
 + 
 +function unfreeze(it,​ callback){ 
 +  if(it.getType() === "​Folder"​){ 
 +    ​unfreezeContainer(it.getContainer()); 
 +  }else{ 
 +    ​freezeChecks(it, function(pkgName){ 
 +      runCmd("​pm enable " + pkgName, true, true, null, function(){ 
 +        unfreezeEffect(it); 
 +        ​if(typeof callback === '​function'​) 
 +          callback();​ 
 +      ​}); 
 +    }); 
 +  }
 } }
  
-function freezeEffect(it) {+function freezeEffect(it){
   it.getProperties().edit().setInteger("​s.iconColorFilter",​ 0x00ffffff).commit();​   it.getProperties().edit().setInteger("​s.iconColorFilter",​ 0x00ffffff).commit();​
   it.setTag("​frozen",​ true);   it.setTag("​frozen",​ true);
 } }
  
-function unfreezeEffect(it) {+function unfreezeEffect(it){
   it.getProperties().edit().setInteger("​s.iconColorFilter",​ 0xffffffff).commit();​   it.getProperties().edit().setInteger("​s.iconColorFilter",​ 0xffffffff).commit();​
   it.setTag("​frozen",​ false);   it.setTag("​frozen",​ false);
 } }
  
-function ​getFrozenItIds(c) { +function ​batchFreezeAction(items, action, callback){ 
-  var cId = c.getId()+  var frozenStateChecker,​ cmd, effect
-  if(!frozenItIdss[cId]+  if(action === "​freeze"​){ 
-    ​frozenItIdss[cId] ​new TagArray(c, "​frozenItIds"​)+    ​frozenStateChecker ​function(it)return ​!isFrozen(it); }; 
-  ​return ​frozenItIdss[cId]; +    cmd = "pm disable "; 
-+    ​effect = function(it){ freezeEffect(it);​ } 
- +  ​}else if(action === "​unfreeze"​){ 
-function ​getFrozenApps() { +    ​frozenStateChecker ​function(it){ return isFrozen(it);​ }; 
-  if(!frozenApps) { +    cmd = "​pm ​enable ​"; 
-    ​frozenApps ​runAsRoot("​pm ​list packages -d", false)+    ​effect = function(it){ unfreezeEffect(it); }
-    ​for(var i = 0; i < frozenApps.length;​ i++) { +
-      frozenApps[i] = frozenApps[i].split(":"​)[1]; +
-    ​}+
   }   }
-  return frozenApps; 
-} 
  
-function ​syncContainer(c) { +  var freezableItems = [] 
-  ​startNewBackgroundThread(function() { +    , cmds = []; 
-    var items = c.getItems(); + 
-    ​for(var i = 0; i < items.length; i++) { +  items.forEach(function(it){ 
-      ​syncItem(items.getAt(i));+    ​if(frozenStateChecker(it)){ 
 +      freezeChecks(it, function(pkgName){ 
 +        ​freezableItems.push(it); 
 +        cmds.push(cmd ​pkgName); 
 +      ​}, false);
     }     }
   });   });
-} 
  
-function syncItem(it) { +  ​if(cmds.length !== 0){ 
-  var c = it.getParent() +    var counter ​0
-    , frozenItIds = getFrozenItIds(c) +    ​runCmd(cmds, true, true, function(){ 
-    , frozenApps = getFrozenApps();​ +      ​callback(); 
-  ​if(it.getType() ​== "​Shortcut"​) { +    }function(){ 
-    var pkgName ​getPackageName(it)+      ​effect(freezableItems[counter]); 
-    ​if(pkgName && isFreezable(pkgName)) { +      ​counter++
-      var matched = false +    });
-        ​isFrozen = it.getTag("​frozen"​) == "true"; +
-      for(var j = 0; j < frozenApps.length;​ j++) { +
-        if(pkgName == frozenApps[j]+
-          matched = true+
-          ​break;​ +
-        ​} +
-      } +
-      if(!isFrozen && matched) { +
-        handleGUIEdit(function() { +
-          ​freezeEffect(it);​ +
-        }) +
-        frozenItIds.push(it.getId());​ +
-        frozenItIds.queueSave(); +
-      ​+
-      if(!matched && isFrozen) { +
-        handleGUIEdit(function() { +
-          unfreezeEffect(it)+
-        }+
-        frozenItIds.remove(it.getId()); +
-        frozenItIds.queueSave();​ +
-      } +
-    }+
   }   }
 } }
  
-function ​handleGUIEdit(func) { +function ​containerFreezeAction(c, effect){ 
-  ​if(Looper.getMainLooper().getThread() == Thread.currentThread()) { +  ​var cs = screen.getAllContainersById(c.getId()); 
-    ​func(); +  cs.forEach(function(c){ 
-  } else { +    ​var opener
-    ​GUIHandler.post(func); +    ​if((opener = c.getOpener()) && opener.getType() === "​Folder"​) 
-  }+      effect(opener); 
 +  });
 } }
  
-function ​startNewBackgroundThread(func) { +function ​freezeContainer(c){ 
-  ​var thread = new Thread(function() { +  ​batchFreezeAction(c.getAllItems(), "​freeze", ​function(){ 
-    func(); +    ​containerFreezeAction(cfreezeEffect); 
-    if(threads[Thread.currentThread().getId()].prepared == true) { +  });
-      Looper.myLooper().getQueue().addIdleHandler(function() { +
-        Looper.myLooper().quitSafely();​ +
-      }) +
-      Looper.loop();​ +
-    ​+
-  }) +
-  thread.setUncaughtExceptionHandler(function(thex) { +
-    handleGUIEdit(function() { +
-      alert(ex.getMessage()); +
-    }) +
-  }+
-  threads[thread.getId()] = {}; +
-  thread.start();+
 } }
  
-function ​getHandler() { +function ​unfreezeContainer(c){ 
-  ​if(Looper.getMainLooper().getThread() == Thread.currentThread()) { +  ​batchFreezeAction(c.getAllItems(), "​unfreeze",​ function(){ 
-    ​return GUIHandler;​ +    ​containerFreezeAction(c, unfreezeEffect); 
-  } else { +  });
-    var threadId = Thread.currentThread().getId(); +
-    ​if(threads[threadId].prepared != true) { +
-      Looper.prepare();​ +
-      threads[threadId].prepared = true; +
-    ​} +
-    return new Handler(); +
-  }+
 } }
  
-function ​TagArray(ob, name, manualSave) { +function ​isFrozen(it){ 
-  ​this.push.apply(this,​ JSON.parse(ob.getTag(name)) || []); +  ​return it.getTag("​frozen"​) === 'true';
-  var me this; +
-  this.save ​function() { +
-    ob.setTag(name,​ JSON.stringify(Array.prototype.slice.call(me)));​ +
-  } +
-  if(manualSave != true) this.queueSave();+
 } }
  
-TagArray.prototype = new Array(); +function getFrozenApps(){ 
-TagArray.prototype.constructor ​TagArray+  ​if(typeof frozenApps =='​undefined'​){ 
-TagArray.prototype.saveQueued ​= false; +    frozenApps = []
- +    var pkgs runCmd("​pm list packages -d", ​false, false)
-TagArray.prototype.queueSave = function() { +    pkgs.forEach(function(pkg, i){ 
-  if(!this.queueSaved{ +      ​frozenApps[i] = pkg.split(":"​)[1]; 
-    ​getHandler().post(this.save) +    ​});
-    this.queueSaved = true;+
   }   }
 +  return frozenApps;
 } }
  
-TagArray.prototype.remove = function(el) { +function ​syncContainer(c){ 
-  var ind this.indexOf(el); +  ​startNewBackgroundThread(function(){ 
-  if(ind !-1+    ​var items c.getItems(); 
-    this.splice(ind, 1); +    for(var i 0; i < items.length;​ i++){ 
-  else +      ​syncItem(items.getAt(i)); 
-    ​return false;+    ​
 +  });
 } }
  
-TagArray.prototype.clear = function() { +function syncItem(it){ 
-  ​this.length ​0;+  var frozenApps = getFrozenApps();​ 
 +  if(it.getType() === "​Shortcut"​){ 
 +    var pkgName = getPackageName(it);​ 
 +    if(pkgName && isFreezable(pkgName)){ 
 +      var isFrozen = it.getTag("​frozen"​) ​=== '​true';​ 
 +      var matched = frozenApps.some(function(pkg){ 
 +        ​return pkg === pkgName; 
 +      }); 
 +      if(!isFrozen && matched){ 
 +        handleGUIEdit(function(){ 
 +          freezeEffect(it);​ 
 +        }); 
 +      }else if(isFrozen && !matched){ 
 +        handleGUIEdit(function(){ 
 +          unfreezeEffect(it);​ 
 +        }); 
 +      } 
 +    } 
 +  }
 } }
  
-if(typeof getEvent != "​undefined"​){ +if(typeof getEvent !== "​undefined"​){ 
-  var e = getEvent() +  var 
-  , it = e.getItem() +    , e = getEvent() 
-  , data = e.getData();​ +    , it = e.getItem() 
-  if(data) { +    , data = e.getData();​ 
-    if(data.length ​== 4) { +  if(data){ 
-      ​var c; +    if(data === "​sync"​){ 
-      if(it) { +      if(c = e.getContainer()){
-        syncContainer(it.getParent());​ +
-      } else if(c = e.getContainer()) {+
         syncContainer(c);​         syncContainer(c);​
-      } else {+      }else{
         throw new Error("​Could not find a way to determine the container to sync. Run the script from an item in the container or from the container itself or add the container id directly afrer '​sync'​."​)         throw new Error("​Could not find a way to determine the container to sync. Run the script from an item in the container or from the container itself or add the container id directly afrer '​sync'​."​)
       }       }
-    } else if(data.substring(0,​ 4) == "​sync"​) { +    }else if(data.substring(0,​ 4) === "​sync"​){ 
-      var cId = data.substring(4,​ data.length) +      var cId = data.substring(4,​ data.length); 
-        , ​c = screen.getContainerById(cId);​ +      c = screen.getContainerById(cId);​ 
-      if(!c) throw new Error("​Could not find container with id:" + cId)+      if(!c) throw new Error("​Could not find container with id:" + cId);
       syncContainer(c);​       syncContainer(c);​
     }     }
-  } else { +  }else{ 
-    if(!it) { +    if(!it){ 
-      ​var /*src = e.getSource(); +      ​= e.getContainer(); 
-        , */cIds = new TagArray(script,​ "​cIds",​ true); +      cId = c.getId();​ 
-      ​//​if(src=="​MENU_CONTAINER"​) { +      if(c.getTag("​longTapFreeze"​) ​=== "​true"​){ 
-        var c = e.getContainer() +        if(confirm("​Are you sure you want to uninstall?"​)){ 
-        ​cId = c.getId();​ +          uninstall(c);​ 
-        if(c.getTag("​longTapFreeze"​) == "​true"​) { +          Toast.makeText(context,​ "​Uninstalled!",​ Toast.LENGTH_SHORT).show();​
-          if(confirm("​Are you sure you want to uninstall?"​)) { +
-            uninstall(c);​ +
-            ​cIds.remove(c.getId());​ +
-            cIds.save();​ +
-            ​Toast.makeText(context,​ "​Uninstalled!",​ Toast.LENGTH_SHORT).show();​ +
-          } +
-        } else { +
-          if(confirm("​Are you sure you want to install?"​)) { +
-            cIds.push(c.getId());​ +
-            c.setTag("​longTapFreeze",​ true); +
-            setEventHandlerRestorably(c,​ freezeEvent,​ EventHandler.RUN_SCRIPT,​ script.getId());​ +
-            setEventHandlerRestorably(c,​ "​i.menu",​ EventHandler.RUN_SCRIPT,​ script.getId());​ +
-            setEventHandlerRestorably(c,​ "​menu",​ EventHandler.RUN_SCRIPT,​ script.getId());​ +
-            customConfirmDialog("​Do you want to enable autosync?",​ function() { +
-              setEventHandlerRestorably(c,​ "​resumed",​ EventHandler.RUN_SCRIPT,​ script.getId() + "/​sync"​);​ +
-              syncContainer(c);​ +
-              c.setTag("​autosync",​ true); +
-            }); +
-            cIds.save();​ +
-            Toast.makeText(context,​ "​Installed!",​ Toast.LENGTH_SHORT).show();​ +
-          }+
         }         }
-      ​/*} else { +      }else{ 
-        if(confirm("​Are you sure you want to uninstall from every container?")) { +        if(confirm("​Are you sure you want to install?"​)){ 
-          ​for(var i = 0; i < cIds.length; i++) { +          ​c.setTag("​longTapFreeze",​ true); 
-            ​uninstall(screen.getContainerById(cIds[i]));+          setEventHandlerRestorably(c,​ freezeEvent,​ EventHandler.RUN_SCRIPT,​ script.getId());​ 
 +          setEventHandlerRestorably(c,​ 'i.tap', EventHandler.RUN_SCRIPT,​ script.getId()); 
 +          setEventHandlerRestorably(c,​ "i.menu",​ EventHandler.RUN_SCRIPT,​ script.getId());​ 
 +          setEventHandlerRestorably(c,​ "​menu",​ EventHandler.RUN_SCRIPT,​ script.getId());​ 
 +          if(confirm("​Do you want to enable autosync?"​)){ 
 +            ​setEventHandlerRestorably(c, "​resumed",​ EventHandler.RUN_SCRIPT, script.getId() + "/​sync"​);​ 
 +            syncContainer(c);​ 
 +            c.setTag("​autosync",​ true);
           }           }
-          ​cIds.clear();​ +          Toast.makeText(context,​ "Installed!", Toast.LENGTH_SHORT).show();​
-          cIds.save();​ +
-          ​Toast.makeText(context,​ "Uninstalled everywhere!", Toast.LENGTH_SHORT).show();​+
         }         }
-      }*/ +      } 
-    } else {+    }else{
       var src = e.getSource();​       var src = e.getSource();​
-      if(src == freezeSource) { +      if(src ​=== freezeSource){ 
-        ​var c = it.getParent(+        ​if(isFrozen(it)){ 
-          , pkgName = getPackageName(it); +          unfreeze(it);​ 
-        if(isFreezable(pkgName)) { +        }else{ 
-          ​if(it.getTag("​frozen"​) == "​true"​) { +          freeze(it);
-            ​unfreeze(it, pkgName); +
-          } else { +
-            freeze(it, pkgName); +
-          } +
-        } else { +
-          ​Toast.makeText(context,​ "​Cannot ​freeze/unfreeze! (Probably because of black- or whitelist",​ Toast.LENGTH_SHORT).show();+
         }         }
 +      }else if(src === '​I_CLICK'​){
 +        if( isFrozen(it) && confirm("​Unfreeze and run?"​))
 +          unfreeze(it,​ function(){
 +            it.launch();​
 +          });
 +        else
 +          it.launch();​
       }       }
     }     }
   }   }
 }else if(menu){ }else if(menu){
-  var mode = menu.getMode() +  var mode = menu.getMode(); 
-  if(mode == Menu.MODE_ITEM_SUBMENU_ACTION || mode == Menu.MODE_ITEM_NO_EM){+  if(mode ​=== Menu.MODE_ITEM_SUBMENU_ACTION || mode === Menu.MODE_ITEM_NO_EM){
     menu.addMainItem("​Sync frozen-state",​ function(){     menu.addMainItem("​Sync frozen-state",​ function(){
       syncItem(item);​       syncItem(item);​
       menu.close();​       menu.close();​
     });     });
-  }else if(mode == Menu.MODE_CONTAINER_SUBMENU_ITEMS){+  }else if(mode ​=== Menu.MODE_CONTAINER_SUBMENU_ITEMS){
     menu.addMainItem("​Sync frozen-state",​ function(){     menu.addMainItem("​Sync frozen-state",​ function(){
-      syncContainer(container)+      syncContainer(container)
 +      menu.close();​ 
 +    }); 
 +    menu.addMainItem("​Freeze all items",​ function(){ 
 +      freezeContainer(container);​ 
 +      menu.close();​ 
 +    }); 
 +    menu.addMainItem("​Unfreeze all items",​ function(){ 
 +      unfreezeContainer(container);​
       menu.close();​       menu.close();​
     });     });
script_autosetupappfreeze.1479578497.txt.gz · Last modified: 2016/11/19 18:01 by cdfa