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
36 ps.Pub(r3events.DoorManualMovementEvent{ts}, "door")
38 ps.Pub(r3events.DoorProblemEvent{100, ts}, "door")
40 ps.Pub(r3events.DoorLockUpdate{true, ts}, "door")
41 case "timeout", "timeout_after_open", "timeout_after_close":
42 ps.Pub(r3events.DoorProblemEvent{10, ts}, "door")
46 Syslog_.Print("parseSocketInputLine_State: Unexpected State:", lines)
51 func ParseSocketInputLine(lines [][]byte, ps *pubsub.PubSub, keylookup_socket *zmq.Socket) { //, brn *brain.Brain) {
52 ts := time.Now().Unix()
53 if len(lines) < 1 { return }
54 Debug_.Printf("ParseSocketInputLine: %s %s",string(lines[0]), lines[1:])
55 switch string(lines[0]) {
57 if len(lines) < 2 { return }
58 parseSocketInputLine_State(lines[1:], ps, ts)
60 if len(lines) < 3 { return }
61 if len(lines[1]) < 4 { return }
62 ps.Pub(r3events.DoorLockUpdate{string(lines[1])[0:4] != "open", ts}, "door")
63 ps.Pub(r3events.DoorAjarUpdate{string(lines[len(lines)-1]) == "shut", ts}, "door")
65 if len(lines) < 3 { return }
66 if string(lines[2]) != "found" { return }
67 match_cardid := re_cardid_.FindSubmatch(lines[1])
68 if len(match_cardid) > 1 {
69 // PreCondition: same thread/goroutinge as created keylookup_socket !!!!
70 nick, err := LookupCardIdNick(keylookup_socket, match_cardid[1])
72 Syslog_.Print("CardID Lookup Error",err)
73 nick = "Unresolvable KeyID"
75 // new event: toggle by user nick using card
76 ps.Pub(r3events.DoorCommandEvent{"toggle", "Card", nick, ts},"doorcmd")
79 if len(lines) < 5 { return }
80 ps.Pub(r3events.DoorAjarUpdate{string(lines[4]) == "shut", ts}, "door")
81 case "open", "close", "toggle", "reset":
82 ps.Pub(r3events.DoorCommandEvent{string(lines[0]), string(lines[1]), string(lines[2]), ts},"doorcmd")
83 case "BackdoorInfo(ajar):":
84 ps.Pub(r3events.BackdoorAjarUpdate{string(lines[len(lines)-1]) == "shut", ts},"door")
85 case "temp0:","temp1:", "temp2:", "temp3:":
86 sensorid, err := strconv.ParseInt(string(lines[0][4]), 10, 32)
87 if err != nil {return }
88 newtemp, err := strconv.ParseFloat(string(lines[1]), 10)
89 if err != nil {return }
90 ps.Pub(r3events.TempSensorUpdate{int(sensorid), newtemp, ts}, "sensors")
91 case "photo0:","photo1:", "photo2:", "photo3:":
92 sensorid, err := strconv.ParseInt(string(lines[0][5]), 10, 32)
93 if err != nil {return }
94 newphoto, err := strconv.ParseInt(string(lines[1]), 10, 32)
95 if err != nil {return }
96 ps.Pub(r3events.IlluminationSensorUpdate{int(sensorid), newphoto, ts}, "sensors")
98 //~ sensorid, err := strconv.ParseInt(string(lines[0][4]), 10, 32)
99 //~ if err != nil {return }
100 relhumid, err := strconv.ParseInt(string(lines[1]), 10, 32)
101 if err != nil {return }
102 ps.Pub(r3events.RelativeHumiditySensorUpdate{0, int(relhumid), ts}, "sensors")
103 case "dust0:","dust1:","dust2:":
104 sensorid, err := strconv.ParseInt(string(lines[0][4]), 10, 32)
105 if err != nil {return }
106 dustlvl, err := strconv.ParseInt(string(lines[1]), 10, 32)
107 if err != nil {return }
108 ps.Pub(r3events.DustSensorUpdate{int(sensorid), dustlvl, ts}, "sensors")
110 evnt, pubsubcat, err := r3events.UnmarshalByteByte2Event(lines)
112 ps.Pub(evnt, pubsubcat)
117 func MakeTimeTick(ps *pubsub.PubSub) {
118 ps.Pub(r3events.TimeTick{time.Now().Unix()},"time")
121 //~ match_presence := re_presence_.FindStringSubmatch(line)
122 //~ match_status := re_status_.FindStringSubmatch(line)
123 //~ match_command := re_command_.FindStringSubmatch(line)
124 //~ match_button := re_button_.FindStringSubmatch(line)
125 //~ match_temp := re_temp_.FindStringSubmatch(line)
126 //~ match_photo := re_photo_.FindStringSubmatch(line)
127 //~ if match_button != nil {
128 //~ // brn.Oboite("button0", ts)
129 //~ ps.Pub(BoreDoomButtonPressEvent{0, ts}, "buttons")
130 //~ } else if match_temp != nil {
131 //~ newtemp, err := strconv.ParseFloat((match_temp[1]), 32)
133 //~ // brn.Oboite( "temp0", newtemp)
134 //~ ps.Pub(TempSensorUpdate{0, newtemp, ts}, "sensors")
136 //~ } else if match_photo != nil {
137 //~ newphoto, err := strconv.ParseInt(match_photo[1], 10, 32)
139 //~ // brn.Oboite("photo0", newphoto)
140 //~ ps.Pub(IlluminationSensorUpdate{0, newphoto, ts}, "sensors")
142 //~ } else if line == "movement" {
143 //~ // brn.Oboite("movement", ts)
144 //~ ps.Pub(MovementSensorUpdate{0, ts}, "movements")