Adding new default value to thermostat device.
[smartthings-infrastructure.git] / Lock / Locks.groovy
index f792c6ccfda41d3f5d36d8ec77ae1436ffc85a7d..ad297ab8ed2512c5740582a8fd28324443e5bdff 100644 (file)
@@ -16,46 +16,67 @@ public class Locks{
        private String currentLock = "locked"
        private String lockLatestValue = "locked"
 
-       Locks(Closure sendEvent, int deviceNumbers) {
+       Locks(Closure sendEvent, int deviceNumbers, boolean init) {
                this.sendEvent = sendEvent
                this.timers = new SimulatedTimer()
                this.deviceNumbers = deviceNumbers
                this.locks = []
 
+               if (init) {
+                       this.lockState = "locked"
+                       this.currentLock = "locked"
+                       this.lockLatestValue = "locked"
+               } else {
+                       this.lockState = "unlocked"
+                       this.currentLock = "unlocked"
+                       this.lockLatestValue = "unlocked"
+               }
                locks.add(new Lock(sendEvent,id, label, displayName, this.lockState, this.lockLatestValue))
        }
 
        //By Apps
        def lock() {
-               locks[0].lock()
-               lockLatestValue = lockState
-               lockState = "locked"
-               currentLock = "locked"
+               if (lockState != "locked") {
+                       //lockLatestValue = lockState
+                       lockLatestValue = "locked"
+                       lockState = "locked"
+                       currentLock = "locked"
+                       locks[0].lock()
+               }
        }
 
        def lock(LinkedHashMap metaData) {
-               def task = timers.runAfter(metaData["delay"]) {
-                       locks[0].lock()
-                       lockLatestValue = lockState
-                       lockState = "locked"
-                       currentLock = "locked"
+               if (lockState != "locked") {
+                       def task = timers.runAfter(metaData["delay"]) {
+                               //lockLatestValue = lockState
+                               lockLatestValue = "locked"
+                               lockState = "locked"
+                               currentLock = "locked"
+                               locks[0].lock()
+                       }
                }
        }
 
        def unlock() {
-               locks[0].unlock()
-               lockLatestValue = lockState
-               lockState = "unlocked"
-               currentLock = "unlocked"
+               if (lockState != "unlocked") {
+                       //lockLatestValue = lockState
+                       lockLatestValue = "unlocked"
+                       lockState = "unlocked"
+                       currentLock = "unlocked"
+                       locks[0].unlock()
+               }
        }
 
 
        def unlock(LinkedHashMap metaData) {
-               def task = timers.runAfter(metaData["delay"]) {
-                       locks[0].unlock()
-                       lockLatestValue = lockState
-                       lockState = "unlocked"
-                       currentLock = "unlocked"
+               if (lockState != "unlocked") {
+                       def task = timers.runAfter(metaData["delay"]) {
+                               //lockLatestValue = lockState
+                               lockLatestValue = "unlocked"
+                               lockState = "unlocked"
+                               currentLock = "unlocked"
+                               locks[0].unlock()
+                       }
                }
        }
 
@@ -72,6 +93,9 @@ public class Locks{
        def find(Closure Input) {
                locks.find(Input)
        }
+       def sort(Closure Input) {
+               locks.sort(Input)
+       }
        def collect(Closure Input) {
                locks.collect(Input)
        }