-
-
Notifications
You must be signed in to change notification settings - Fork 150
/
Copy pathhub.go
executable file
·365 lines (318 loc) · 9.65 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
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
package main
import (
"fmt"
"github.com/kardianos/osext"
"log"
//"os"
"os/exec"
//"path"
//"path/filepath"
//"runtime"
//"debug"
"encoding/json"
"runtime"
"runtime/debug"
"strconv"
"strings"
)
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{
// buffered. go with 1000 cuz should never surpass that
broadcast: make(chan []byte, 1000),
broadcastSys: make(chan []byte, 1000),
// non-buffered
//broadcast: make(chan []byte),
//broadcastSys: make(chan []byte),
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 + "\"} ")
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:
//log.Print("Got a broadcast")
//log.Print(m)
//log.Print(len(m))
if len(m) > 0 {
//log.Print(string(m))
//log.Print(h.broadcast)
checkCmd(m)
//log.Print("-----")
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)
go c.ws.Close()
}
}
}
case m := <-h.broadcastSys:
//log.Printf("Got a system broadcast: %v\n", string(m))
//log.Print(string(m))
//log.Print("-----")
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)
go c.ws.Close()
}
}
}
}
}
func checkCmd(m []byte) {
//log.Print("Inside checkCmd")
s := string(m[:])
log.Print(s)
sl := strings.ToLower(s)
if strings.HasPrefix(sl, "open") {
// check if user wants to open this port as a secondary port
// this doesn't mean much other than allowing the UI to show
// a port as primary and make other ports sort of act less important
isSecondary := false
if strings.HasPrefix(s, "open secondary") {
isSecondary = true
// swap out the word secondary
s = strings.Replace(s, "open secondary", "open", 1)
}
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, isSecondary)
} 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, "programfromurl") {
args := strings.Split(s, " ")
if len(args) == 4 {
go spProgramFromUrl(args[1], args[2], args[3])
} else {
go spErr("You did not specify a port, a board to program and/or a URL")
}
} else if strings.HasPrefix(sl, "program") {
args := strings.Split(s, " ")
if len(args) > 3 {
var slice []string = args[3:len(args)]
go spProgram(args[1], args[2], strings.Join(slice, " "))
} else {
go spErr("You did not specify a port, a board to program and/or a filename")
}
} else if strings.HasPrefix(sl, "sendjson") {
// will catch sendjson
go spWriteJson(s)
} else if strings.HasPrefix(sl, "send") {
// will catch send and sendnobuf
//args := strings.Split(s, "send ")
go spWrite(s)
} else if strings.HasPrefix(sl, "list") {
go spList()
//go getListViaWmiPnpEntity()
} else if strings.HasPrefix(sl, "bufferalgorithm") {
go spBufferAlgorithms()
} else if strings.HasPrefix(sl, "baudrate") {
go spBaudRates()
} else if strings.HasPrefix(sl, "broadcast") {
go broadcast(s)
} else if strings.HasPrefix(sl, "restart") {
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, "bufflowdebug") {
bufflowdebug(sl)
} else if strings.HasPrefix(sl, "hostname") {
getHostname()
} else if strings.HasPrefix(sl, "version") {
getVersion()
} else {
go spErr("Could not understand command.")
}
//log.Print("Done with checkCmd")
}
func bufflowdebug(sl string) {
log.Println("bufflowdebug start")
if strings.HasPrefix(sl, "bufflowdebug on") {
*bufFlowDebugType = "on"
} else if strings.HasPrefix(sl, "bufflowdebug off") {
*bufFlowDebugType = "off"
}
h.broadcastSys <- []byte("{\"BufFlowDebug\" : \"" + *bufFlowDebugType + "\"}")
log.Println("bufflowdebug end")
}
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() {
log.Println("Starting new spjs process")
h.broadcastSys <- []byte("{\"Exiting\" : true}")
log.Fatal("Exited current spjs cuz asked to")
}
func restart() {
// 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
/*
dir, err2 := filepath.Abs(filepath.Dir(os.Args[0]))
if err2 != nil {
//log.Fatal(err2)
fmt.Printf("Error getting executable file path. err: %v\n", err2)
}
fmt.Printf("The path to this exe is: %v\n", dir)
// alternate approach
_, filename, _, _ := runtime.Caller(1)
f, _ := os.Open(path.Join(path.Dir(filename), "serial-port-json-server"))
fmt.Println(f)
*/
// using osext
exePath, err3 := osext.Executable()
if err3 != nil {
fmt.Printf("Error getting exe path using osext lib. err: %v\n", err3)
}
fmt.Printf("exePath using osext: %v\n", exePath)
// figure out garbageCollection flag
//isGcFlag := "false"
var cmd *exec.Cmd
/*if *isGC {
//isGcFlag = "true"
cmd = exec.Command(exePath, "-ls", "-addr", *addr, "-regex", *regExpFilter, "-gc")
} else {
cmd = exec.Command(exePath, "-ls", "-addr", *addr, "-regex", *regExpFilter)
}*/
cmd = exec.Command(exePath, "-ls", "-addr", *addr, "-regex", *regExpFilter, "-gc", *gcType)
//cmd := exec.Command("./serial-port-json-server", "ls")
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")
//log.Printf("Waiting for command to finish...")
//err = cmd.Wait()
//log.Printf("Command finished with error: %v", err)
}
type CmdBroadcast struct {
Cmd string
Msg string
}
func broadcast(arg string) {
// we will get a string of broadcast asdf asdf asdf
log.Println("Inside broadcast arg: " + arg)
arg = strings.TrimPrefix(arg, " ")
//log.Println("arg after trim: " + arg)
args := strings.SplitN(arg, " ", 2)
if len(args) != 2 {
errstr := "Could not parse broadcast command: " + arg
log.Println(errstr)
spErr(errstr)
return
}
broadcastcmd := strings.Trim(args[1], " ")
log.Println("The broadcast cmd is:" + broadcastcmd + "---")
bcmd := CmdBroadcast{
Cmd: "Broadcast",
Msg: broadcastcmd,
}
json, _ := json.Marshal(bcmd)
log.Printf("bcmd:%v\n", string(json))
h.broadcastSys <- json
}