feat: improve connection check and reconnect
- enhance `Connected()` method - send ping message to verify connection status - refactor reconnect code for better understanding
This commit is contained in:
parent
1d38db97a5
commit
8cb6d94ff0
2 changed files with 28 additions and 15 deletions
|
@ -1,9 +1,10 @@
|
||||||
package websocket
|
package websocket
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/gorilla/websocket"
|
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
"github.com/gorilla/websocket"
|
||||||
|
|
||||||
ChronoTomato "git.smsvc.net/pomodoro/ChronoTomato/pkg/models"
|
ChronoTomato "git.smsvc.net/pomodoro/ChronoTomato/pkg/models"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -17,7 +18,23 @@ func Connect(url string) Client {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c Client) Connected() bool {
|
func (c Client) Connected() bool {
|
||||||
return c.Conn != nil
|
if c.Conn == nil {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
// Set a pong handler to signal when a pong is received
|
||||||
|
c.Conn.SetPongHandler(func(s string) error {
|
||||||
|
c.Conn.SetReadDeadline(time.Now().Add(10 * time.Second))
|
||||||
|
return nil
|
||||||
|
})
|
||||||
|
|
||||||
|
// Send a ping
|
||||||
|
err := c.Conn.WriteMessage(websocket.PingMessage, nil)
|
||||||
|
if err != nil {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
// Disconnects from websocket
|
// Disconnects from websocket
|
||||||
|
|
|
@ -22,25 +22,21 @@ func (c *Client) ProcessServerMessages(channel chan<- GoTomato.ServerMessage) {
|
||||||
c.Conn.SetReadDeadline(time.Now().Add(10 * time.Second))
|
c.Conn.SetReadDeadline(time.Now().Add(10 * time.Second))
|
||||||
_, message, err := c.Conn.ReadMessage()
|
_, message, err := c.Conn.ReadMessage()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
c.LastErr = err
|
||||||
|
|
||||||
// On normal closure exit gracefully
|
// On normal closure exit gracefully
|
||||||
if websocket.IsCloseError(err, websocket.CloseNormalClosure) {
|
if websocket.IsCloseError(err, websocket.CloseNormalClosure) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
c.LastErr = err
|
// check connection and reconnect if no response
|
||||||
// Try to reconnect on unexpected disconnect
|
if !c.Connected() {
|
||||||
for {
|
|
||||||
channel <- serverMessage // send last known ServerMessage to update view
|
|
||||||
|
|
||||||
time.Sleep(time.Second)
|
|
||||||
|
|
||||||
// reconnect while preserving password
|
|
||||||
pw := c.Password
|
pw := c.Password
|
||||||
*c = Connect(c.Server)
|
for !c.Connected() {
|
||||||
c.Password = pw
|
channel <- serverMessage // send last known ServerMessage to update view
|
||||||
|
time.Sleep(time.Second)
|
||||||
if c.Connected() {
|
*c = Connect(c.Server)
|
||||||
break
|
c.Password = pw
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
continue
|
continue
|
||||||
|
|
Loading…
Reference in a new issue