Infrastruction modification
[smartthings-infrastructure.git] / ContactSensor / ContactSensor.groovy
index 281e79314a5b65194891ed2f988ddd93f2919d02..91fdfd1f409a73a600893ee83a5a19c353c2f4e0 100644 (file)
 //Create a class for contact sensor
 package ContactSensor
-import Timer.SimulatedTimer
-
-//JPF's Verify API
-import gov.nasa.jpf.vm.Verify
-
-public class ContactSensor {
-       private String id
-       private String label
-       private String displayName
-       private String contactState
-       private String currentContact   
-       private String latestValue
-       private String alarmState
-       private List events = []
-       private List timeOfEvents = []
-       
-
-       ContactSensor(String id, String label, String displayName, String contactState, String currentContact, String alarmState, String latestValue) {
+import SmartThing.SmartThing
+
+public class ContactSensor extends SmartThing {
+       // id, label, and display name of the device
+       StringBuilder id = new StringBuilder()
+       StringBuilder label = new StringBuilder()
+       StringBuilder displayName = new StringBuilder()
+       // Features with string values
+       StringBuilder currentContact = new StringBuilder()
+       // Maps from features to values
+       HashMap<String, StringBuilder> deviceValuesMap = new HashMap<String, StringBuilder>()
+       // Possible values for eventsSince method
+       List<StringBuilder> possibleValues = new ArrayList<StringBuilder>();
+
+       ContactSensor(Closure sendEvent, StringBuilder id, StringBuilder label, StringBuilder displayName, StringBuilder currentContact) {
+               deviceValuesMap = deviceValueSmartThing
+               idSmartThing = id
+               labelSmartThing = label
+               displayNameSmartThing = displayName
+               sendEventSmartThings = sendEvent
+               possibleValuesSmartThings = possibleValues
+
+               // Initialization
                this.id = id
                this.label = label
                this.displayName = displayName
-               this.contactState = contactState
                this.currentContact = currentContact
-               this.latestValue = latestValue
-               this.alarmState = alarmState
-       }
-
-       def eventsSince() {
-               def evtOpen = [[name: "contact", value: "open", deviceId: "contactSensorID0", descriptionText: "",
-                               displayed: true, linkText: "", isStateChange: false, unit: "", data: '{"info": "info"}']]
-               def evtClosed = [[name: "contact", value: "closed", deviceId: "contactSensorID0", descriptionText: "",
-                                 displayed: true, linkText: "", isStateChange: false, unit: "", data: '{"info": "info"}']]
-               def init = Verify.getInt(0,4)
-               def evtToSend = []
-               if (init == 0) {//return empty set
-                       return evtToSend
-               } else if (init == 1) {//send one open event
-                       evtOpen.each{
-                               evtToSend.add(it)
-                       }
-                       return evtToSend
-               } else if (init == 2) {//send two open events
-                       evtOpen.each{
-                               evtToSend.add(it)
-                       }
-                       evtOpen.each{
-                               evtToSend.add(it)
-                       }
-                       return evtToSend
-               } else if (init == 3) {//send one closed event
-                       evtClosed.each{
-                               evtToSend.add(it)
-                       }
-                       return evtToSend
-               } else if (init == 4) {//send two closed events
-                       evtClosed.each{
-                               evtToSend.add(it)
-                       }
-                       evtClosed.each{
-                               evtToSend.add(it)
-                       }
-                       return evtToSend
-               }
-       }
-
-       def setValue(String value) {
-               println("the contact sensor with id:$id is triggered to $value!")
-               this.contactState = value
-               this.currentContact = value
-               this.latestValue = value
-       }
-
-       
-       def on() {
-               println("the contact sensor with id:$id is armed!")
-               this.alarmState = "armed"
-       }
-
-       def off() {
-               println("the contact sensor with id:$id is not armed!")
-               this.alarmState = "not armed"
-       }
-       
-       def currentValue(String deviceFeature) {
-               if (deviceFeature == "contact") {
-                       return contactState
-               }
-       }
+               possibleValues.add("closed")
+               possibleValues.add("open")
 
-       def currentState(String deviceFeature) {
-               if (deviceFeature == "contact") {
-                       return contactState
-               }
+               deviceValuesMap.put("contact", currentContact)
        }
 
-       def latestValue(String deviceFeature) {
-               if (deviceFeature == "contact") {
-                       return latestValue
-               }
+       // Methods to return values
+       def getCurrentContact() {
+               return currentContact.toString()
        }
 }