Compare commits

...

2 commits

Author SHA1 Message Date
d2e34e84f8 refactor: move Clients map and mutex to handle_connections
- move Clients map definition to handle_connections.go
- move mutex definition to handle_connections.go
- remove unused import in client_commands.go

🤖
2024-10-20 20:51:21 +02:00
d0e1162726 feat: add comments for configuration fields
- add documentation comments for
  - GoTomatoTimerConfig
  - GoTomatoServerConfig

🤖
2024-10-20 20:49:36 +02:00
3 changed files with 11 additions and 11 deletions

View file

@ -6,13 +6,8 @@ import (
"git.smsvc.net/pomodoro/GoTomato/pkg/models" "git.smsvc.net/pomodoro/GoTomato/pkg/models"
"github.com/gorilla/websocket" "github.com/gorilla/websocket"
"log" "log"
"sync"
) )
// Clients is a map of connected WebSocket clients, where each client is represented by the Client struct
var Clients = make(map[*websocket.Conn]*models.Client)
var mu sync.Mutex // Mutex to protect access to the Clients map
// handleClientCommands listens for commands from WebSocket clients and dispatches to the timer. // handleClientCommands listens for commands from WebSocket clients and dispatches to the timer.
func handleClientCommands(ws *websocket.Conn) { func handleClientCommands(ws *websocket.Conn) {
for { for {

View file

@ -5,8 +5,13 @@ import (
"github.com/gorilla/websocket" "github.com/gorilla/websocket"
"log" "log"
"net/http" "net/http"
"sync"
) )
// Clients is a map of connected WebSocket clients, where each client is represented by the Client struct
var Clients = make(map[*websocket.Conn]*models.Client)
var mu sync.Mutex // Mutex to protect access to the Clients map
// Upgrader to upgrade HTTP requests to WebSocket connections // Upgrader to upgrade HTTP requests to WebSocket connections
var upgrader = websocket.Upgrader{ var upgrader = websocket.Upgrader{
CheckOrigin: func(r *http.Request) bool { return true }, CheckOrigin: func(r *http.Request) bool { return true },

View file

@ -1,13 +1,13 @@
package models package models
type GoTomatoTimerConfig struct { type GoTomatoTimerConfig struct {
Work int `json:"work"` Work int `json:"work"` // Length of work sessions in seconds
ShortBreak int `json:"shortBreak"` ShortBreak int `json:"shortBreak"` // Length of short break in seconds
LongBreak int `json:"longBreak"` LongBreak int `json:"longBreak"` // Length if ling break in seconds
Sessions int `json:"sessions"` Sessions int `json:"sessions"` // Number of total sessions
} }
type GoTomatoServerConfig struct { type GoTomatoServerConfig struct {
ListenAddress string `json:"listenAddress"` ListenAddress string `json:"listenAddress"` // Server listen address
ListenPort int `json:"listenPort"` ListenPort int `json:"listenPort"` // Server listen port
} }