Skip to content
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

Open
wants to merge 40 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
90cce2c
fix
dido18 Jan 20, 2025
c96490b
feat(config): add default configuration file and update config handling
dido18 Jan 21, 2025
7b4859a
fix(.gitignore): add entry to ignore config.ini file
dido18 Jan 21, 2025
279de2a
test(config): add test for writing default config.ini file and update…
dido18 Jan 21, 2025
4f3ac5a
test(config): add tests for retrieving config paths from XDG_CONFIG_H…
dido18 Jan 21, 2025
c41b815
feat(config): pass config path to main loop and update handling
dido18 Jan 22, 2025
55ca9e5
remove global systray
dido18 Jan 22, 2025
f07103e
WIP: remove hub and sh globals
dido18 Jan 22, 2025
ef94d97
remove global clients: use callback to avoid nesting import
dido18 Jan 24, 2025
d2d3aa6
feat(workflow): add Go installation step to release workflow
dido18 Mar 31, 2025
640e644
refactor: rename variable 'h' to 'hub' for clarity in main.go and upd…
dido18 Mar 31, 2025
99f8235
docs: add comments to clarify functions and handlers in config, hub, …
dido18 Mar 31, 2025
5e2161e
refactor: rename 'hub' and 'serialhub' types to 'Hub' and 'Serialhub'…
dido18 Mar 31, 2025
910bac2
refactor: rename 'Hub' and 'Serialhub' types to 'hub' and 'serialhub'…
dido18 Mar 31, 2025
17ed6b3
revert config changes
dido18 Mar 31, 2025
96f0f51
refactor: update logger handling and improve config path management
dido18 Mar 31, 2025
36af1ed
remove globas tools and index
dido18 Mar 31, 2025
f939e32
refactor: enhance logging mechanism by implementing logWriter and upd…
dido18 Apr 1, 2025
e22281f
remove log websocket
dido18 Apr 1, 2025
3bbf371
remove unused global clients comment from hub struct
dido18 Apr 1, 2025
0773f99
refactor: integrate systray into hub structure and update newHub func…
dido18 Apr 1, 2025
9c2ca54
pass tests
dido18 Apr 1, 2025
7e73b6c
Merge branch 'main' into remove-global-clients
dido18 Apr 1, 2025
fc51194
chore: add comment regarding potential removal of sysStray dependencies
dido18 Apr 1, 2025
8106c84
feat: move serial port into new file
dido18 Apr 2, 2025
4dba1a8
feat: add serialhub implementation for managing serial ports
dido18 Apr 2, 2025
7ea21c0
refactor: remove serialhub parameter from newHub function and instant…
dido18 Apr 2, 2025
a152b02
feat: move `spErr` `spClose` `spWrite` into hub (from serialhub)
dido18 Apr 2, 2025
fac0b10
refactor: remove newSerialHub instantiation from hub initialization i…
dido18 Apr 2, 2025
f04d5cc
move `spHandlerOpen` to hub from serialport.go
dido18 Apr 2, 2025
47213d1
refactor: remove unused serial package import from serialport.go
dido18 Apr 2, 2025
14ddd43
renamed h into hub
dido18 Apr 2, 2025
1f9b999
fix: add hub reference to PLogger initialization in uploadHandler
dido18 Apr 2, 2025
4585769
move `spErr, spWrite, spClose spHandlerOpen at the end for redaibility
dido18 Apr 2, 2025
283064c
refactor: clean up serialport.go and serialportlist.go for clarity
dido18 Apr 2, 2025
14d72e8
refactor: clarify the impact of removing serialPorts.List() in writer…
dido18 Apr 2, 2025
9e13dcb
move serialportlist inside hub
dido18 Apr 2, 2025
a69c0dc
refactor on callback
dido18 Apr 2, 2025
7e34071
refactor: simplify hub initialization in upload handler tests
dido18 Apr 3, 2025
815a791
refactor: remove unused port listing in checkCmd function
dido18 Apr 3, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion config/config.ini
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ updateUrl = https://downloads.arduino.cc/
origins = https://local.arduino.cc:8000
#httpProxy = http://your.proxy:port # Proxy server for HTTP requests
crashreport = false # enable crashreport logging
autostartMacOS = true # the Arduino Create Agent is able to start automatically after login on macOS (launchd agent)
autostartMacOS = true # the Arduino Create Agent is able to start automatically after login on macOS (launchd agent)
30 changes: 16 additions & 14 deletions conn.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ import (
"os"
"path/filepath"

"github.com/arduino/arduino-create-agent/tools"
"github.com/arduino/arduino-create-agent/upload"
"github.com/arduino/arduino-create-agent/utilities"
"github.com/gin-gonic/gin"
Expand Down Expand Up @@ -80,7 +81,7 @@ type Upload struct {

var uploadStatusStr = "ProgrammerStatus"

func uploadHandler(pubKey *rsa.PublicKey) func(*gin.Context) {
func uploadHandler(hub *hub, pubKey *rsa.PublicKey, tools *tools.Tools) func(*gin.Context) {
return func(c *gin.Context) {
data := new(Upload)
if err := c.BindJSON(data); err != nil {
Expand Down Expand Up @@ -162,28 +163,28 @@ func uploadHandler(pubKey *rsa.PublicKey) func(*gin.Context) {

go func() {
// Resolve commandline
commandline, err := upload.PartiallyResolve(data.Board, filePath, tmpdir, data.Commandline, data.Extra, Tools)
commandline, err := upload.PartiallyResolve(data.Board, filePath, tmpdir, data.Commandline, data.Extra, tools)
if err != nil {
send(map[string]string{uploadStatusStr: "Error", "Msg": err.Error()})
send(hub, map[string]string{uploadStatusStr: "Error", "Msg": err.Error()})
return
}

l := PLogger{Verbose: true}
l := PLogger{Verbose: true, hub: hub}

// Upload
if data.Extra.Network {
err = errors.New("network upload is not supported anymore, pease use OTA instead")
} else {
send(map[string]string{uploadStatusStr: "Starting", "Cmd": "Serial"})
send(hub, map[string]string{uploadStatusStr: "Starting", "Cmd": "Serial"})
err = upload.Serial(data.Port, commandline, data.Extra, l)
}

// Handle result
if err != nil {
send(map[string]string{uploadStatusStr: "Error", "Msg": err.Error()})
send(hub, map[string]string{uploadStatusStr: "Error", "Msg": err.Error()})
return
}
send(map[string]string{uploadStatusStr: "Done", "Flash": "Ok"})
send(hub, map[string]string{uploadStatusStr: "Done", "Flash": "Ok"})
}()

c.String(http.StatusAccepted, "")
Expand All @@ -193,6 +194,7 @@ func uploadHandler(pubKey *rsa.PublicKey) func(*gin.Context) {
// PLogger sends the info from the upload to the websocket
type PLogger struct {
Verbose bool
hub *hub
}

// Debug only sends messages if verbose is true (always true for now)
Expand All @@ -206,29 +208,29 @@ func (l PLogger) Debug(args ...interface{}) {
func (l PLogger) Info(args ...interface{}) {
output := fmt.Sprint(args...)
log.Println(output)
send(map[string]string{uploadStatusStr: "Busy", "Msg": output})
send(l.hub, map[string]string{uploadStatusStr: "Busy", "Msg": output})
}

func send(args map[string]string) {
func send(hub *hub, args map[string]string) {
mapB, _ := json.Marshal(args)
h.broadcastSys <- mapB
hub.broadcastSys <- mapB
}

func wsHandler() *WsServer {
func wsHandler(hub *hub) *WsServer {
server, err := socketio.NewServer(nil)
if err != nil {
log.Fatal(err)
}

server.On("connection", func(so socketio.Socket) {
c := &connection{send: make(chan []byte, 256*10), ws: so}
h.register <- c
hub.register <- c
so.On("command", func(message string) {
h.broadcast <- []byte(message)
hub.broadcast <- []byte(message)
})

so.On("disconnection", func() {
h.unregister <- c
hub.unregister <- c
})
go c.writer()
})
Expand Down
Loading
Loading