generated from IMMGBC/arduino-create-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hub.go
executable file
·317 lines (282 loc) · 8.37 KB
/
hub.go
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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
package main
import (
"fmt"
"encoding/json"
"io"
"os"
"os/exec"
"runtime"
"runtime/debug"
"strconv"
"strings"
"github.com/arduino/arduino-create-agent/upload"
"github.com/kardianos/osext"
log "github.com/sirupsen/logrus"
)
type hub struct {
// Registered connections.
connections map[*connection]bool
// Inbound messages from the connections.
broadcast chan []byte
// Inbound messages from the system
broadcastSys chan []byte
// Register requests from the connections.
register chan *connection
// Unregister requests from connections.
unregister chan *connection
}
var h = hub{
broadcast: make(chan []byte, 1000),
broadcastSys: make(chan []byte, 1000),
register: make(chan *connection),
unregister: make(chan *connection),
connections: make(map[*connection]bool),
}
func (h *hub) run() {
for {
select {
case c := <-h.register:
h.connections[c] = true
// send supported commands
c.send <- []byte("{\"Version\" : \"" + version + "\"} ")
c.send <- []byte("{\"Commands\" : [\"list\", \"open [portName] [baud] [bufferAlgorithm (optional)]\", \"send [portName] [cmd]\", \"sendnobuf [portName] [cmd]\", \"close [portName]\", \"bufferalgorithms\", \"baudrates\", \"restart\", \"exit\", \"program [portName] [board:name] [$path/to/filename/without/extension]\", \"programfromurl [portName] [board:name] [urlToHexFile]\"]} ")
c.send <- []byte("{\"Hostname\" : \"" + *hostname + "\"} ")
c.send <- []byte("{\"OS\" : \"" + runtime.GOOS + "\"} ")
case c := <-h.unregister:
delete(h.connections, c)
// put close in func cuz it was creating panics and want
// to isolate
func() {
// this method can panic if websocket gets disconnected
// from users browser and we see we need to unregister a couple
// of times, i.e. perhaps from incoming data from serial triggering
// an unregister. (NOT 100% sure why seeing c.send be closed twice here)
defer func() {
if e := recover(); e != nil {
log.Println("Got panic: ", e)
}
}()
close(c.send)
}()
case m := <-h.broadcast:
if len(m) > 0 {
checkCmd(m)
for c := range h.connections {
select {
case c.send <- m:
//log.Print("did broadcast to ")
//log.Print(c.ws.RemoteAddr())
//c.send <- []byte("hello world")
default:
delete(h.connections, c)
close(c.send)
}
}
}
case m := <-h.broadcastSys:
for c := range h.connections {
select {
case c.send <- m:
//log.Print("did broadcast to ")
//log.Print(c.ws.RemoteAddr())
//c.send <- []byte("hello world")
default:
delete(h.connections, c)
close(c.send)
}
}
}
}
}
func checkCmd(m []byte) {
//log.Print("Inside checkCmd")
s := string(m[:])
sl := strings.ToLower(strings.Trim(s, "\n"))
if *hibernate == true {
//do nothing
return
}
if strings.HasPrefix(sl, "open") {
args := strings.Split(s, " ")
if len(args) < 3 {
go spErr("You did not specify a port and baud rate in your open cmd")
return
}
if len(args[1]) < 1 {
go spErr("You did not specify a serial port")
return
}
baudStr := strings.Replace(args[2], "\n", "", -1)
baud, err := strconv.Atoi(baudStr)
if err != nil {
go spErr("Problem converting baud rate " + args[2])
return
}
// pass in buffer type now as string. if user does not
// ask for a buffer type pass in empty string
bufferAlgorithm := ""
if len(args) > 3 {
// cool. we got a buffer type request
buftype := strings.Replace(args[3], "\n", "", -1)
bufferAlgorithm = buftype
}
go spHandlerOpen(args[1], baud, bufferAlgorithm)
} else if strings.HasPrefix(sl, "close") {
args := strings.Split(s, " ")
if len(args) > 1 {
go spClose(args[1])
} else {
go spErr("You did not specify a port to close")
}
} else if strings.HasPrefix(sl, "killupload") {
// kill the running process (assumes singleton for now)
go func() {
upload.Kill()
h.broadcastSys <- []byte("{\"uploadStatus\": \"Killed\"}")
log.Println("{\"uploadStatus\": \"Killed\"}")
}()
} else if strings.HasPrefix(sl, "send") {
// will catch send and sendnobuf
go spWrite(s)
} else if strings.HasPrefix(sl, "list") {
go spList(false)
go spList(true)
} else if strings.HasPrefix(sl, "downloadtool") {
// Always delete root certificates when we receive a downloadtool command
// Useful if the install procedure was not followed strictly (eg. manually)
DeleteCertificates()
go func() {
args := strings.Split(s, " ")
var tool, toolVersion, pack, behaviour string
toolVersion = "latest"
pack = "arduino"
behaviour = "keep"
if len(args) <= 1 {
mapD := map[string]string{"DownloadStatus": "Error", "Msg": "Not enough arguments"}
mapB, _ := json.Marshal(mapD)
h.broadcastSys <- mapB
return
}
if len(args) > 1 {
tool = args[1]
}
if len(args) > 2 {
if strings.HasPrefix(args[2], "http") {
//old APIs, ignore this field
} else {
toolVersion = args[2]
}
}
if len(args) > 3 {
pack = args[3]
}
if len(args) > 4 {
behaviour = args[4]
}
err := Tools.Download(pack, tool, toolVersion, behaviour)
if err != nil {
mapD := map[string]string{"DownloadStatus": "Error", "Msg": err.Error()}
mapB, _ := json.Marshal(mapD)
h.broadcastSys <- mapB
} else {
mapD := map[string]string{"DownloadStatus": "Success", "Msg": "Map Updated"}
mapB, _ := json.Marshal(mapD)
h.broadcastSys <- mapB
}
}()
} else if strings.HasPrefix(sl, "log") {
go logAction(sl)
} else if strings.HasPrefix(sl, "restart") {
log.Println("Received restart from the daemon. Why? Boh")
restart("")
} else if strings.HasPrefix(sl, "exit") {
exit()
} else if strings.HasPrefix(sl, "memstats") {
memoryStats()
} else if strings.HasPrefix(sl, "gc") {
garbageCollection()
} else if strings.HasPrefix(sl, "hostname") {
getHostname()
} else if strings.HasPrefix(sl, "version") {
getVersion()
} else {
go spErr("Could not understand command.")
}
}
func logAction(sl string) {
if strings.HasPrefix(sl, "log on") {
*logDump = "on"
multi_writer := io.MultiWriter(&logger_ws, os.Stderr)
log.SetOutput(multi_writer)
} else if strings.HasPrefix(sl, "log off") {
*logDump = "off"
log.SetOutput(os.Stderr)
} else if strings.HasPrefix(sl, "log show") {
// TODO: send all the saved log to websocket
//h.broadcastSys <- []byte("{\"BufFlowDebug\" : \"" + *logDump + "\"}")
}
}
func memoryStats() {
var memStats runtime.MemStats
runtime.ReadMemStats(&memStats)
json, _ := json.Marshal(memStats)
log.Printf("memStats:%v\n", string(json))
h.broadcastSys <- json
}
func getHostname() {
h.broadcastSys <- []byte("{\"Hostname\" : \"" + *hostname + "\"}")
}
func getVersion() {
h.broadcastSys <- []byte("{\"Version\" : \"" + version + "\"}")
}
func garbageCollection() {
log.Printf("Starting garbageCollection()\n")
h.broadcastSys <- []byte("{\"gc\":\"starting\"}")
memoryStats()
debug.SetGCPercent(100)
debug.FreeOSMemory()
debug.SetGCPercent(-1)
log.Printf("Done with garbageCollection()\n")
h.broadcastSys <- []byte("{\"gc\":\"done\"}")
memoryStats()
}
func exit() {
quitSysTray()
log.Println("Starting new spjs process")
h.broadcastSys <- []byte("{\"Exiting\" : true}")
log.Fatal("Exited current spjs cuz asked to")
}
func restart(path string, args ...string) {
log.Println("called restart", path)
quitSysTray()
// relaunch ourself and exit
// the relaunch works because we pass a cmdline in
// that has serial-port-json-server only initialize 5 seconds later
// which gives us time to exit and unbind from serial ports and TCP/IP
// sockets like :8989
log.Println("Starting new spjs process")
h.broadcastSys <- []byte("{\"Restarting\" : true}")
// figure out current path of executable so we know how to restart
// this process using osext
exePath, err3 := osext.Executable()
if err3 != nil {
log.Printf("Error getting exe path using osext lib. err: %v\n", err3)
}
if path == "" {
log.Printf("exePath using osext: %v\n", exePath)
} else {
exePath = path
}
exePath = strings.Trim(exePath, "\n")
args = append(args, "-ls")
args = append(args, "-hibernate="+fmt.Sprint(*hibernate))
cmd := exec.Command(exePath, args...)
err := cmd.Start()
if err != nil {
log.Printf("Got err restarting spjs: %v\n", err)
h.broadcastSys <- []byte("{\"Error\" : \"" + fmt.Sprintf("%v", err) + "\"}")
} else {
h.broadcastSys <- []byte("{\"Restarted\" : true}")
}
log.Fatal("Exited current spjs for restart")
}