1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
|
//
// dolmetschctl
//
//
// Copyright (C) 2019 Christian Pointner <equinox@spreadspace.org>
//
// This file is part of dolmetschctl.
//
// dolmetschctl is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// any later version.
//
// dolmetschctl is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with dolmetschctl. If not, see <http://www.gnu.org/licenses/>.
//
package main
import (
"encoding/json"
"fmt"
"io"
"io/ioutil"
"log"
"os"
"time"
"github.com/gorilla/websocket"
"spreadspace.org/dolmetschctl/pkg/controller"
"spreadspace.org/dolmetschctl/pkg/types"
)
const (
blinkTime = 20
lang1 = "en"
lang2 = "de"
)
func wsReader(ws *websocket.Conn, ch chan<- types.WebSocketResponseFull) {
defer close(ch)
for {
t, r, err := ws.NextReader()
if err != nil {
log.Println("websocket disconnected:", err)
return
}
switch t {
case websocket.TextMessage:
var msg types.WebSocketResponseFull
dec := json.NewDecoder(r)
dec.DisallowUnknownFields()
if err := dec.Decode(&msg); err != nil {
if err == io.EOF {
err = io.ErrUnexpectedEOF
}
log.Println("webclient response parse error:", err)
return
}
ch <- msg
case websocket.BinaryMessage:
io.Copy(ioutil.Discard, r) // consume all the data
}
}
return
}
func handleControllerEvent(ctrl *controller.Controller, ws *websocket.Conn, ev controller.Event) error {
if ev.Type != controller.ButtonPressed {
return nil
}
lang := ""
switch ev.Button {
case 0:
lang = "en"
case 1:
lang = "de"
default:
lang = "none"
}
return ws.WriteJSON(types.WebSocketRequest{Command: "language", Args: []string{lang}})
}
func ledOnOrBlink(ctrl *controller.Controller, num uint8, state types.State) {
if state == types.StateSettled {
ctrl.LedOn(num)
} else {
ctrl.LedBlink(num, blinkTime)
}
}
func handleWebSocketMessage(ctrl *controller.Controller, ws *websocket.Conn, msg types.WebSocketResponseFull) error {
if msg.Type == "state" {
switch msg.Lang {
case lang1:
ledOnOrBlink(ctrl, 0, msg.State)
ctrl.LedOff(1)
ctrl.LedOff(2)
ctrl.LedOff(3)
case lang2:
ctrl.LedOff(0)
ledOnOrBlink(ctrl, 1, msg.State)
ctrl.LedOff(2)
ctrl.LedOff(3)
default:
ctrl.LedOff(0)
ctrl.LedOff(1)
ledOnOrBlink(ctrl, 2, msg.State)
ledOnOrBlink(ctrl, 3, msg.State)
}
}
return nil
}
func run(ctrl *controller.Controller, ws *websocket.Conn) error {
ctrlCh := make(chan controller.Event, 100)
unsub := ctrl.Subscribe(ctrlCh)
defer close(unsub)
wsCh := make(chan types.WebSocketResponseFull)
go wsReader(ws, wsCh)
if err := ws.WriteJSON(types.WebSocketRequest{Command: "subscribe"}); err != nil {
return err
}
log.Printf("subscribed to state changes!")
for {
select {
case ev, ok := <-ctrlCh:
if !ok {
return fmt.Errorf("controller channel was closed.")
}
if err := handleControllerEvent(ctrl, ws, ev); err != nil {
return err
}
case msg, ok := <-wsCh:
if !ok {
return fmt.Errorf("websocket channel was closed.")
}
if err := handleWebSocketMessage(ctrl, ws, msg); err != nil {
return err
}
}
}
return nil
}
func main() {
log.Println("hello world.")
c, err := controller.NewController(controller.Config{Dev: "dolmetsch controller"})
if err != nil {
log.Printf("Error opening the controller: %v", err)
os.Exit(1)
}
defer c.Shutdown()
if err = c.Init(); err != nil {
log.Printf("Error initializeing the controller: %v", err)
os.Exit(1)
}
log.Printf("controller successfully initialized!")
for {
ws, _, err := websocket.DefaultDialer.Dial("ws://127.0.0.1:8234/api/v1/socket", nil)
if err != nil {
log.Printf("Error connecting to daemon: %v", err)
} else {
log.Printf("successfully conncted!")
err := run(c, ws)
log.Printf("run() returned: %v", err)
}
log.Printf("will retry in one second...")
time.Sleep(time.Second)
}
log.Printf("exiting.")
}
|