1 // (c) Bernhard Tittelbach, 2013
10 pubsub "github.com/tuxychandru/pubsub"
11 zmq "github.com/vaughan0/go-zmq"
12 r3events "svn.spreadspace.org/realraum/go.svn/r3events"
16 //~ re_presence_ *regexp.Regexp = regexp.MustCompile("Presence: (yes|no)(?:, (opened|closed), (.+))?")
17 //~ re_state_ *regexp.Regexp = regexp.MustCompile("State: (closed|opened|manual movement|error|reset|timeout after open|timeout after close|opening|closing).*")
18 //~ re_status_ *regexp.Regexp = regexp.MustCompile("Status: (closed|opened), (closed|opened|manual movement|error|reset|timeout after open|timeout after close|opening|closing), (ajar|shut).*")
19 //~ re_infocard_ *regexp.Regexp = regexp.MustCompile("Info\\(card\\): card\\(([a-fA-F0-9]+)\\) (found|not found).*")
20 re_cardid_ *regexp.Regexp = regexp.MustCompile("card\\(([a-fA-F0-9]+)\\)")
21 //~ re_infoajar_ *regexp.Regexp = regexp.MustCompile("Info\\(ajar\\): door is now (ajar|shut)")
22 //~ re_command_ *regexp.Regexp = regexp.MustCompile("(open|close|toggle|reset)(?: +(Card|Phone|SSH|ssh))?(?: +(.+))?")
23 //~ re_button_ *regexp.Regexp = regexp.MustCompile("PanicButton|button\\d?")
24 //~ re_temp_ *regexp.Regexp = regexp.MustCompile("temp0: (\\d+\\.\\d+)")
25 //~ re_photo_ *regexp.Regexp = regexp.MustCompile("photo0: (\\d+)")
29 func parseSocketInputLine_State(lines [][]byte, ps *pubsub.PubSub, ts int64) {
30 switch string(lines[0]) {
32 ps.Pub(r3events.DoorLockUpdate{true, ts}, "door")
34 ps.Pub(r3events.DoorLockUpdate{false, ts}, "door")
35 case "manual", "manual_movement": //movement
37 ps.Pub(r3events.DoorProblemEvent{100, ts}, "door")
39 ps.Pub(r3events.DoorLockUpdate{true, ts}, "door")
40 case "timeout", "timeout_after_open", "timeout_after_close":
41 ps.Pub(r3events.DoorProblemEvent{10, ts}, "door")
45 Syslog_.Print("parseSocketInputLine_State: Unexpected State:", lines)
50 func ParseSocketInputLine(lines [][]byte, ps *pubsub.PubSub, keylookup_socket *zmq.Socket) { //, brn *brain.Brain) {
51 ts := time.Now().Unix()
52 if len(lines) < 1 { return }
53 Debug_.Printf("ParseSocketInputLine: %s %s",string(lines[0]), lines[1:])
54 switch string(lines[0]) {
56 if len(lines) < 2 { return }
57 parseSocketInputLine_State(lines[1:], ps, ts)
59 if len(lines) < 3 { return }
60 if len(lines[1]) < 4 { return }
61 ps.Pub(r3events.DoorLockUpdate{string(lines[1])[0:4] != "open", ts}, "door")
62 ps.Pub(r3events.DoorAjarUpdate{string(lines[len(lines)-1]) == "shut", ts}, "door")
64 if len(lines) < 3 { return }
65 if string(lines[2]) != "found" { return }
66 match_cardid := re_cardid_.FindSubmatch(lines[1])
67 if len(match_cardid) > 1 {
68 // PreCondition: same thread/goroutinge as created keylookup_socket !!!!
69 nick, err := LookupCardIdNick(keylookup_socket, match_cardid[1])
71 Syslog_.Print("CardID Lookup Error",err)
72 nick = "Unresolvable KeyID"
74 // new event: toggle by user nick using card
75 ps.Pub(r3events.DoorCommandEvent{"toggle", "Card", nick, ts},"doorcmd")
78 if len(lines) < 5 { return }
79 ps.Pub(r3events.DoorAjarUpdate{string(lines[4]) == "shut", ts}, "door")
80 case "open", "close", "toggle", "reset":
81 ps.Pub(r3events.DoorCommandEvent{string(lines[0]), string(lines[1]), string(lines[2]), ts},"doorcmd")
82 case "BackdoorInfo(ajar):":
83 ps.Pub(r3events.BackdoorAjarUpdate{string(lines[len(lines)-1]) == "shut", ts},"door")
84 case "temp0:","temp1:", "temp2:", "temp3:":
85 sensorid, err := strconv.ParseInt(string(lines[0][4]), 10, 32)
86 if err != nil {return }
87 newtemp, err := strconv.ParseFloat(string(lines[1]), 10)
88 if err != nil {return }
89 ps.Pub(r3events.TempSensorUpdate{int(sensorid), newtemp, ts}, "sensors")
90 case "photo0:","photo1:", "photo2:", "photo3:":
91 sensorid, err := strconv.ParseInt(string(lines[0][5]), 10, 32)
92 if err != nil {return }
93 newphoto, err := strconv.ParseInt(string(lines[1]), 10, 32)
94 if err != nil {return }
95 ps.Pub(r3events.IlluminationSensorUpdate{int(sensorid), newphoto, ts}, "sensors")
97 //~ sensorid, err := strconv.ParseInt(string(lines[0][4]), 10, 32)
98 //~ if err != nil {return }
99 relhumid, err := strconv.ParseInt(string(lines[1]), 10, 32)
100 if err != nil {return }
101 ps.Pub(r3events.RelativeHumiditySensorUpdate{0, int(relhumid), ts}, "sensors")
102 case "dust0:","dust1:","dust2:":
103 sensorid, err := strconv.ParseInt(string(lines[0][4]), 10, 32)
104 if err != nil {return }
105 dustlvl, err := strconv.ParseInt(string(lines[1]), 10, 32)
106 if err != nil {return }
107 ps.Pub(r3events.DustSensorUpdate{int(sensorid), dustlvl, ts}, "sensors")
109 evnt, pubsubcat, err := r3events.UnmarshalByteByte2Event(lines)
111 ps.Pub(evnt, pubsubcat)
116 func MakeTimeTick(ps *pubsub.PubSub) {
117 ps.Pub(r3events.TimeTick{time.Now().Unix()},"time")
120 //~ match_presence := re_presence_.FindStringSubmatch(line)
121 //~ match_status := re_status_.FindStringSubmatch(line)
122 //~ match_command := re_command_.FindStringSubmatch(line)
123 //~ match_button := re_button_.FindStringSubmatch(line)
124 //~ match_temp := re_temp_.FindStringSubmatch(line)
125 //~ match_photo := re_photo_.FindStringSubmatch(line)
126 //~ if match_button != nil {
127 //~ // brn.Oboite("button0", ts)
128 //~ ps.Pub(BoreDoomButtonPressEvent{0, ts}, "buttons")
129 //~ } else if match_temp != nil {
130 //~ newtemp, err := strconv.ParseFloat((match_temp[1]), 32)
132 //~ // brn.Oboite( "temp0", newtemp)
133 //~ ps.Pub(TempSensorUpdate{0, newtemp, ts}, "sensors")
135 //~ } else if match_photo != nil {
136 //~ newphoto, err := strconv.ParseInt(match_photo[1], 10, 32)
138 //~ // brn.Oboite("photo0", newphoto)
139 //~ ps.Pub(IlluminationSensorUpdate{0, newphoto, ts}, "sensors")
141 //~ } else if line == "movement" {
142 //~ // brn.Oboite("movement", ts)
143 //~ ps.Pub(MovementSensorUpdate{0, ts}, "movements")