-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhub.go
More file actions
executable file
·303 lines (263 loc) · 7.25 KB
/
Copy pathhub.go
File metadata and controls
executable file
·303 lines (263 loc) · 7.25 KB
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
package main
import (
"fmt"
"log"
"github.com/kardianos/osext"
//"os"
"os/exec"
//"path"
//"path/filepath"
//"runtime"
//"debug"
"encoding/json"
"runtime"
"runtime/debug"
"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 + "\"} ")
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") {
// remove newline
args := strings.Split(strings.TrimSpace(s), " ")
if len(args) < 2 {
go spErr("You did not specify a port in your open cmd")
return
}
if len(args[1]) < 1 {
go spErr("You did not specify a serial port")
return
}
dtrOn := false
if len(args) > 2 {
dtrOn = true
}
go spHandlerOpen(args[1], 115200, false, dtrOn)
} else if strings.HasPrefix(sl, "close") {
log.Printf("About to split close commands. cmd:\"%v\"", s)
// remove newline
args := strings.Split(strings.TrimSpace(s), " ")
//args := strings.Split(s, " ")
log.Printf("The split args for close:%v", args)
if len(args) > 1 {
go spClose(args[1])
} else {
go spErr("You did not specify a port to close")
}
} 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, "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, "version") {
getVersion()
} else {
go spErr("Could not understand command.")
}
//log.Print("Done with checkCmd")
}
func memoryStats() {
var memStats runtime.MemStats
runtime.ReadMemStats(&memStats)
json, _ := json.Marshal(memStats)
log.Printf("memStats:%v\n", string(json))
h.broadcastSys <- json
}
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", "-port", *port, "-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 (h *hub) sendErr(msg string) {
msgMap := map[string]string{"error": msg}
log.Println("Error: " + msg)
bytes, err := json.Marshal(msgMap)
if err != nil {
log.Println("Failed to marshal data!")
return
}
h.broadcastSys <- bytes
}
func (h *hub) sendMsg(name string, msg interface{}) {
msgMap := make(map[string]interface{})
msgMap[name] = msg
msgMap["Type"] = name
//log.Println("Sent: " + name)
bytes, err := json.Marshal(msgMap)
if err != nil {
log.Println("Failed to marshal data!")
return
}
h.broadcastSys <- bytes
}