Skip to content

Commit a69c0dc

Browse files
committed
refactor on callback
1 parent 9e13dcb commit a69c0dc

File tree

3 files changed

+39
-30
lines changed

3 files changed

+39
-30
lines changed

hub.go

+24-22
Original file line numberDiff line numberDiff line change
@@ -61,35 +61,35 @@ type hub struct {
6161
}
6262

6363
func newHub(tools *tools.Tools, systray *systray.Systray) *hub {
64-
hub := &hub{
65-
broadcast: make(chan []byte, 1000),
66-
broadcastSys: make(chan []byte, 1000),
67-
register: make(chan *connection),
68-
unregister: make(chan *connection),
69-
connections: make(map[*connection]bool),
70-
serialHub: newSerialHub(),
71-
serialPortList: newSerialPortList(tools),
72-
tools: tools,
73-
systray: systray,
74-
}
64+
broadcastSys := make(chan []byte, 1000)
7565

76-
hub.serialHub.OnRegister = func(port *serport) {
77-
hub.broadcastSys <- []byte("{\"Cmd\":\"Open\",\"Desc\":\"Got register/open on port.\",\"Port\":\"" + port.portConf.Name + "\",\"Baud\":" + strconv.Itoa(port.portConf.Baud) + ",\"BufferType\":\"" + port.BufferType + "\"}")
66+
onRegister := func(port *serport) {
67+
broadcastSys <- []byte("{\"Cmd\":\"Open\",\"Desc\":\"Got register/open on port.\",\"Port\":\"" + port.portConf.Name + "\",\"Baud\":" + strconv.Itoa(port.portConf.Baud) + ",\"BufferType\":\"" + port.BufferType + "\"}")
7868
}
79-
80-
hub.serialHub.OnUnregister = func(port *serport) {
81-
hub.broadcastSys <- []byte("{\"Cmd\":\"Close\",\"Desc\":\"Got unregister/close on port.\",\"Port\":\"" + port.portConf.Name + "\",\"Baud\":" + strconv.Itoa(port.portConf.Baud) + "}")
69+
onUnregister := func(port *serport) {
70+
broadcastSys <- []byte("{\"Cmd\":\"Close\",\"Desc\":\"Got unregister/close on port.\",\"Port\":\"" + port.portConf.Name + "\",\"Baud\":" + strconv.Itoa(port.portConf.Baud) + "}")
8271
}
72+
serialHub := newSerialHub(onRegister, onUnregister)
8373

84-
hub.serialPortList.OnList = func(data []byte) {
85-
hub.broadcastSys <- data
74+
onList := func(data []byte) {
75+
broadcastSys <- data
8676
}
87-
88-
hub.serialPortList.OnErr = func(err string) {
89-
hub.broadcastSys <- []byte("{\"Error\":\"" + err + "\"}")
77+
onErr := func(err string) {
78+
broadcastSys <- []byte("{\"Error\":\"" + err + "\"}")
9079
}
80+
serialPortList := newSerialPortList(tools, onList, onErr)
9181

92-
return hub
82+
return &hub{
83+
broadcast: make(chan []byte, 1000),
84+
broadcastSys: broadcastSys,
85+
register: make(chan *connection),
86+
unregister: make(chan *connection),
87+
connections: make(map[*connection]bool),
88+
serialHub: serialHub,
89+
serialPortList: serialPortList,
90+
tools: tools,
91+
systray: systray,
92+
}
9393
}
9494

9595
const commands = `{
@@ -216,6 +216,8 @@ func (hub *hub) checkCmd(m []byte) {
216216
// will catch send and sendnobuf and sendraw
217217
go hub.spWrite(s)
218218
} else if strings.HasPrefix(sl, "list") {
219+
// ports := hub.serialPortList.List()
220+
// send to websockets the ports
219221
go hub.serialPortList.List()
220222
} else if strings.HasPrefix(sl, "downloadtool") {
221223
go func() {

serialhub.go

+8-6
Original file line numberDiff line numberDiff line change
@@ -27,21 +27,23 @@ type serialhub struct {
2727
ports map[*serport]bool
2828
mu sync.Mutex
2929

30-
OnRegister func(port *serport)
31-
OnUnregister func(port *serport)
30+
onRegister func(port *serport)
31+
onUnregister func(port *serport)
3232
}
3333

34-
func newSerialHub() *serialhub {
34+
func newSerialHub(onRegister func(port *serport), onUnregister func(port *serport)) *serialhub {
3535
return &serialhub{
36-
ports: make(map[*serport]bool),
36+
ports: make(map[*serport]bool),
37+
onRegister: onRegister,
38+
onUnregister: onUnregister,
3739
}
3840
}
3941

4042
// Register serial ports from the connections.
4143
func (sh *serialhub) Register(port *serport) {
4244
sh.mu.Lock()
4345
//log.Print("Registering a port: ", p.portConf.Name)
44-
sh.OnRegister(port)
46+
sh.onRegister(port)
4547
sh.ports[port] = true
4648
sh.mu.Unlock()
4749
}
@@ -50,7 +52,7 @@ func (sh *serialhub) Register(port *serport) {
5052
func (sh *serialhub) Unregister(port *serport) {
5153
sh.mu.Lock()
5254
//log.Print("Unregistering a port: ", p.portConf.Name)
53-
sh.OnUnregister(port)
55+
sh.onUnregister(port)
5456
delete(sh.ports, port)
5557
close(port.sendBuffered)
5658
close(port.sendNoBuf)

serialportlist.go

+7-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,12 @@ type SpPortItem struct {
3434
ProductID string
3535
}
3636

37-
func newSerialPortList(tools *tools.Tools) *serialPortList {
38-
return &serialPortList{tools: tools}
37+
func newSerialPortList(tools *tools.Tools, onList func(data []byte), onErr func(err string)) *serialPortList {
38+
return &serialPortList{
39+
tools: tools,
40+
OnList: onList,
41+
OnErr: onErr,
42+
}
3943
}
4044

4145
// List broadcasts a Json representation of the ports found
@@ -111,6 +115,7 @@ func (sp *serialPortList) runSerialDiscovery() {
111115
logrus.Errorf("Error starting event watcher on serial-discovery: %s", err)
112116
panic(err)
113117
}
118+
d.List()
114119

115120
logrus.Infof("Serial discovery started, watching for events")
116121
for ev := range events {

0 commit comments

Comments
 (0)