Compare commits
No commits in common. "3d5cb29c54b2a17455e20189695706c381a28dbb" and "ffc6913344213ebfb7c891b29aba04ca1efaf040" have entirely different histories.
3d5cb29c54
...
ffc6913344
7 changed files with 24 additions and 63 deletions
|
@ -8,7 +8,7 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
// BroadcastMessage sends a message to all connected WebSocket clients.
|
// BroadcastMessage sends a message to all connected WebSocket clients.
|
||||||
func BroadcastMessage(clients map[*websocket.Conn]*models.Client, message models.BroadcastMessage) {
|
func BroadcastMessage(clients map[*websocket.Conn]bool, message models.BroadcastMessage) {
|
||||||
// Marshal the message into JSON format
|
// Marshal the message into JSON format
|
||||||
jsonMessage, err := json.Marshal(message)
|
jsonMessage, err := json.Marshal(message)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -17,11 +17,12 @@ func BroadcastMessage(clients map[*websocket.Conn]*models.Client, message models
|
||||||
}
|
}
|
||||||
|
|
||||||
// Iterate over all connected clients and broadcast the message
|
// Iterate over all connected clients and broadcast the message
|
||||||
for _, client := range clients {
|
for client := range clients {
|
||||||
err := client.SendMessage(websocket.TextMessage, jsonMessage)
|
err := client.WriteMessage(websocket.TextMessage, jsonMessage)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Printf("Error broadcasting to client: %v", err)
|
log.Printf("Error broadcasting to client: %v", err)
|
||||||
// The client is responsible for closing itself on error
|
client.Close()
|
||||||
|
delete(clients, client) // Remove the client if an error occurs
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -24,7 +24,7 @@ var pomodoroResumeChannel = make(chan bool, 1)
|
||||||
var mu sync.Mutex // to synchronize access to shared state
|
var mu sync.Mutex // to synchronize access to shared state
|
||||||
|
|
||||||
// RunPomodoroTimer iterates the Pomodoro work/break sessions.
|
// RunPomodoroTimer iterates the Pomodoro work/break sessions.
|
||||||
func RunPomodoroTimer(clients map[*websocket.Conn]*models.Client) {
|
func RunPomodoroTimer(clients map[*websocket.Conn]bool) {
|
||||||
mu.Lock()
|
mu.Lock()
|
||||||
pomodoroRunning = true
|
pomodoroRunning = true
|
||||||
pomodoroPaused = false
|
pomodoroPaused = false
|
||||||
|
@ -51,7 +51,7 @@ func RunPomodoroTimer(clients map[*websocket.Conn]*models.Client) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// ResetPomodoro resets the running Pomodoro timer.
|
// ResetPomodoro resets the running Pomodoro timer.
|
||||||
func ResetPomodoro(clients map[*websocket.Conn]*models.Client) {
|
func ResetPomodoro(clients map[*websocket.Conn]bool) {
|
||||||
mu.Lock()
|
mu.Lock()
|
||||||
pomodoroRunning = false // Reset the running state
|
pomodoroRunning = false // Reset the running state
|
||||||
pomodoroPaused = false // Reset the paused state
|
pomodoroPaused = false // Reset the paused state
|
||||||
|
@ -70,17 +70,10 @@ func ResetPomodoro(clients map[*websocket.Conn]*models.Client) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func PausePomodoro() {
|
func PausePomodoro() {
|
||||||
mu.Lock()
|
|
||||||
pomodoroPaused = true
|
|
||||||
mu.Unlock()
|
|
||||||
|
|
||||||
pomodoroPauseChannel <- true
|
pomodoroPauseChannel <- true
|
||||||
}
|
}
|
||||||
|
|
||||||
func ResumePomodoro() {
|
func ResumePomodoro() {
|
||||||
mu.Lock()
|
|
||||||
pomodoroPaused = false
|
|
||||||
mu.Unlock()
|
|
||||||
pomodoroResumeChannel <- true
|
pomodoroResumeChannel <- true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -8,18 +8,22 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
// startTimer runs the countdown and broadcasts every second.
|
// startTimer runs the countdown and broadcasts every second.
|
||||||
func startTimer(clients map[*websocket.Conn]*models.Client, remainingSeconds int, mode string, session int) bool {
|
func startTimer(clients map[*websocket.Conn]bool, remainingSeconds int, mode string, session int) bool {
|
||||||
for remainingSeconds > 0 {
|
for remainingSeconds > 0 {
|
||||||
select {
|
select {
|
||||||
case <-pomodoroResetChannel:
|
case <-pomodoroResetChannel:
|
||||||
return false
|
return false
|
||||||
case <-pomodoroPauseChannel:
|
case <-pomodoroPauseChannel:
|
||||||
// Nothing to set here, just waiting for the signal
|
mu.Lock()
|
||||||
|
pomodoroPaused = true
|
||||||
|
mu.Unlock()
|
||||||
case <-pomodoroResumeChannel:
|
case <-pomodoroResumeChannel:
|
||||||
// Nothing to set here, just waiting for the signal
|
mu.Lock()
|
||||||
|
pomodoroPaused = false
|
||||||
|
mu.Unlock()
|
||||||
default:
|
default:
|
||||||
// Broadcast the current state to all clients
|
// Broadcast the current state to all clients
|
||||||
if !IsPomodoroPaused() {
|
if !pomodoroPaused {
|
||||||
broadcast.BroadcastMessage(clients, models.BroadcastMessage{
|
broadcast.BroadcastMessage(clients, models.BroadcastMessage{
|
||||||
Mode: mode,
|
Mode: mode,
|
||||||
Session: session,
|
Session: session,
|
||||||
|
|
|
@ -6,22 +6,10 @@ 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) {
|
||||||
// Create a new Client and add it to the Clients map
|
|
||||||
mu.Lock()
|
|
||||||
Clients[ws] = &models.Client{
|
|
||||||
Conn: ws,
|
|
||||||
}
|
|
||||||
mu.Unlock()
|
|
||||||
|
|
||||||
for {
|
for {
|
||||||
_, message, err := ws.ReadMessage()
|
_, message, err := ws.ReadMessage()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
|
@ -1,12 +1,14 @@
|
||||||
package websocket
|
package websocket
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"git.smsvc.net/pomodoro/GoTomato/pkg/models"
|
|
||||||
"github.com/gorilla/websocket"
|
"github.com/gorilla/websocket"
|
||||||
"log"
|
"log"
|
||||||
"net/http"
|
"net/http"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
// Map to track connected clients
|
||||||
|
var Clients = make(map[*websocket.Conn]bool)
|
||||||
|
|
||||||
// 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 },
|
||||||
|
@ -23,9 +25,7 @@ func HandleConnections(w http.ResponseWriter, r *http.Request) {
|
||||||
defer ws.Close()
|
defer ws.Close()
|
||||||
|
|
||||||
// Register the new client
|
// Register the new client
|
||||||
Clients[ws] = &models.Client{
|
Clients[ws] = true
|
||||||
Conn: ws, // Store the WebSocket connection
|
|
||||||
}
|
|
||||||
|
|
||||||
// Listen for commands from the connected client
|
// Listen for commands from the connected client
|
||||||
handleClientCommands(ws)
|
handleClientCommands(ws)
|
||||||
|
|
|
@ -1,30 +0,0 @@
|
||||||
package models
|
|
||||||
|
|
||||||
import (
|
|
||||||
"github.com/gorilla/websocket"
|
|
||||||
"log"
|
|
||||||
"sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
// ClientCommand represents a command from the client (start/stop).
|
|
||||||
type ClientCommand struct {
|
|
||||||
Command string `json:"command"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type Client struct {
|
|
||||||
Conn *websocket.Conn
|
|
||||||
Mutex sync.Mutex
|
|
||||||
}
|
|
||||||
|
|
||||||
// It automatically locks and unlocks the mutex to ensure that only one goroutine can write at a time.
|
|
||||||
func (c *Client) SendMessage(messageType int, data []byte) error {
|
|
||||||
c.Mutex.Lock()
|
|
||||||
defer c.Mutex.Unlock()
|
|
||||||
|
|
||||||
err := c.Conn.WriteMessage(messageType, data)
|
|
||||||
if err != nil {
|
|
||||||
log.Printf("Error writing to WebSocket: %v", err)
|
|
||||||
c.Conn.Close() // Close the connection on error
|
|
||||||
}
|
|
||||||
return err
|
|
||||||
}
|
|
|
@ -7,3 +7,8 @@ type BroadcastMessage struct {
|
||||||
MaxSession int `json:"max_session"` // Total number of sessions
|
MaxSession int `json:"max_session"` // Total number of sessions
|
||||||
TimeLeft int `json:"time_left"` // Remaining time in seconds
|
TimeLeft int `json:"time_left"` // Remaining time in seconds
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ClientCommand represents a command from the client (start/stop).
|
||||||
|
type ClientCommand struct {
|
||||||
|
Command string `json:"command"`
|
||||||
|
}
|
Loading…
Reference in a new issue