-
-
Notifications
You must be signed in to change notification settings - Fork 151
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove global clients #1014
base: main
Are you sure you want to change the base?
Remove global clients #1014
Conversation
…OME and HOME directories
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #1014 +/- ##
==========================================
+ Coverage 20.23% 20.77% +0.53%
==========================================
Files 42 43 +1
Lines 3242 3298 +56
==========================================
+ Hits 656 685 +29
- Misses 2499 2522 +23
- Partials 87 91 +4
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
…serial, and update files
…ating logAction method
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It looks good. Left some minor comments.
Probably we should do another round of manual testing to make sure no regression are being introduced. We can also do it before the next release, depends on how many changes we want to make.
serial.go
Outdated
@@ -255,22 +265,22 @@ func (sp *SerialPortList) getPortByName(portname string) *SpPortItem { | |||
return nil | |||
} | |||
|
|||
func spErr(err string) { | |||
func (h *hub) spErr(err string) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we reorganize those files with one package per struct?
- hub
- serialPortList
- serialHub
It isn't very easy to follow this code
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I thought the same thing, but I think it would be easier for the reviewers if we open a new PR dedicated to refactoring those components. WDYT?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I tried to move the least as possible to facilitate reviews with the following changes:
- split the
serial.go
file intoserialhub.go
with theserialhub
structserialportlist.go
with theserialPortList
and theSpPortItem
struct
- move
spErr
,spWrite
andspClose
from theserial.go
to thehub.go
file - move the
spHandlerOpen
from theßerialport.go
to thehub.go
file
…iate newSerialHub within it
Tested on linux with MKR 1010
|
@@ -73,51 +110,53 @@ const commands = `{ | |||
] | |||
}` | |||
|
|||
func (h *hub) unregisterConnection(c *connection) { | |||
if _, contains := h.connections[c]; !contains { | |||
func (hub *hub) unregisterConnection(c *connection) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it is more canonical to use single letter for local object mapping
func (hub *hub) unregisterConnection(c *connection) { | |
func (h *hub) unregisterConnection(c *connection) { |
type logWriter struct { | ||
onWrite func([]byte) | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would create an utility that transform a channel to a writer, for instance something like that
// ChanWriter is a simple io.Writer that sends data to a channel.
type ChanWriter struct {
Ch chan<- []byte
}
func (u *ChanWriter) Write(p []byte) (n int, err error) {
u.Ch <- p
return len(p), nil
}
then you can directly use it as follows
multiWriter := io.MultiWriter(&ChanWriter{Ch: hub.broadcastSys}, os.Stderr)
} | ||
|
||
func (hub *hub) spErr(err string) { | ||
//log.Println("Sending err back: ", err) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
//log.Println("Sending err back: ", err) |
// Register serial ports from the connections. | ||
func (sh *serialhub) Register(port *serport) { | ||
sh.mu.Lock() | ||
//log.Print("Registering a port: ", p.portConf.Name) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
//log.Print("Registering a port: ", p.portConf.Name) |
// Unregister requests from connections. | ||
func (sh *serialhub) Unregister(port *serport) { | ||
sh.mu.Lock() | ||
//log.Print("Unregistering a port: ", p.portConf.Name) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
//log.Print("Unregistering a port: ", p.portConf.Name) |
} | ||
|
||
// Register serial ports from the connections. | ||
func (sh *serialhub) Register(port *serport) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would use a single char variable
func (sh *serialhub) Register(port *serport) { | |
func (s *serialhub) Register(port *serport) { |
ports map[*serport]bool | ||
mu sync.Mutex |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I usually see the other way around first the mutex and then the resource that is protected
ports map[*serport]bool | |
mu sync.Mutex | |
mu sync.Mutex | |
ports map[*serport]bool |
for port := range sh.ports { | ||
if strings.EqualFold(port.portConf.Name, portname) { | ||
// we found our port | ||
//spHandlerClose(port) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should we remove this?
p.OnClose = func(port *serport) { | ||
hub.serialPortList.MarkPortAsClosed(p.portName) | ||
hub.serialPortList.List() | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think you can remove the OnClose
callback and move those two lines of code in the spClose
method below after calling p.Close()
. AFAIK this struct is the only one closing ports, so moving the code there should cover all the cases. The following should be the updated spClose
function:
func (hub *hub) spClose(portname string) {
if myport, ok := hub.serialHub.FindPortByName(portname); ok {
hub.broadcastSys <- []byte("Closing serial port " + portname)
myport.Close()
hub.serialPortList.MarkPortAsClosed(myport.portName)
hub.serialPortList.List()
} else {
hub.spErr("We could not find the serial port " + portname + " that you were trying to close.")
}
}
p := &serport{ | ||
sendBuffered: make(chan string, 256000), | ||
sendNoBuf: make(chan []byte), | ||
sendRaw: make(chan string), | ||
portConf: conf, | ||
portIo: sp, | ||
portName: portname, | ||
BufferType: buftype, | ||
} | ||
|
||
p.OnMessage = func(msg []byte) { | ||
hub.broadcastSys <- msg | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Instead of this call back I think you could use the ChanWriter
I suggested above
p := &serport{ | |
sendBuffered: make(chan string, 256000), | |
sendNoBuf: make(chan []byte), | |
sendRaw: make(chan string), | |
portConf: conf, | |
portIo: sp, | |
portName: portname, | |
BufferType: buftype, | |
} | |
p.OnMessage = func(msg []byte) { | |
hub.broadcastSys <- msg | |
} | |
p := &serport{ | |
sendBuffered: make(chan string, 256000), | |
sendNoBuf: make(chan []byte), | |
sendRaw: make(chan string), | |
portConf: conf, | |
portIo: sp, | |
portName: portname, | |
BufferType: buftype, | |
Writer: &ChanWriter{Ch: hub.broadcastSys}, | |
} |
Please check if the PR fulfills these requirements
before creating one)
The purpose of this PR is to improve the maintainability, testability, and clarity of the codebase by removing global variables and explicitly passing dependencies as arguments to functions or methods. Global variables can lead to tightly coupled code, making it harder to understand, test, and maintain.
h
intohub
serial.go
and create the following new files:serialhub.go
contains theserialhub
structserialportlist.go
contains theserialPortList
and theSpPortItem
structspErr
,spWrite
andspClose
from theserial.go
to thehub.go
filespHandlerOpen
from theserialport.go
to thehub.go
filego hub.serialPortList.Run()
from themaingo
into thehub.run()
because the hub is in charge of connecting serial events to websocket clients.No.