Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4792d638c1 | |||
| b96e574726 | |||
| 752804cc58 | |||
| e686e69a24 | |||
| 034e5b68e0 | |||
| 6fb7cea1fa | |||
| 7457604e0f | |||
| f32d97eac4 |
2
go.mod
2
go.mod
@@ -3,3 +3,5 @@ module git.neurocipta.com/rogerferdinan/safe-web-socket
|
|||||||
go 1.24.5
|
go 1.24.5
|
||||||
|
|
||||||
require github.com/gorilla/websocket v1.5.3
|
require github.com/gorilla/websocket v1.5.3
|
||||||
|
|
||||||
|
require git.neurocipta.com/rogerferdinan/custom-rwmutex v1.0.0 // indirect
|
||||||
|
|||||||
2
go.sum
2
go.sum
@@ -1,2 +1,4 @@
|
|||||||
|
git.neurocipta.com/rogerferdinan/custom-rwmutex v1.0.0 h1:KnNc40SrYsg0cksIIcQy/ca6bunkGADQOs1u7O/E+iY=
|
||||||
|
git.neurocipta.com/rogerferdinan/custom-rwmutex v1.0.0/go.mod h1:9DvvHc2UZhBwEs63NgO4IhiuHnBNtTuBkTJgiMnnCss=
|
||||||
github.com/gorilla/websocket v1.5.3 h1:saDtZ6Pbx/0u+bgYQ3q96pZgCzfhKXGPqt7kZ72aNNg=
|
github.com/gorilla/websocket v1.5.3 h1:saDtZ6Pbx/0u+bgYQ3q96pZgCzfhKXGPqt7kZ72aNNg=
|
||||||
github.com/gorilla/websocket v1.5.3/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE=
|
github.com/gorilla/websocket v1.5.3/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE=
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ import (
|
|||||||
const (
|
const (
|
||||||
writeWait = 10 * time.Second
|
writeWait = 10 * time.Second
|
||||||
pongWait = 60 * time.Second
|
pongWait = 60 * time.Second
|
||||||
pingPeriod = 55 * time.Second
|
pingPeriod = 25 * time.Second
|
||||||
)
|
)
|
||||||
|
|
||||||
type Client struct {
|
type Client struct {
|
||||||
@@ -19,7 +19,6 @@ type Client struct {
|
|||||||
Send chan []byte
|
Send chan []byte
|
||||||
SubscribedPath string
|
SubscribedPath string
|
||||||
done chan struct{}
|
done chan struct{}
|
||||||
mu *CustomRwMutex
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewClient(conn *websocket.Conn, subscribedPath string) *Client {
|
func NewClient(conn *websocket.Conn, subscribedPath string) *Client {
|
||||||
@@ -28,7 +27,6 @@ func NewClient(conn *websocket.Conn, subscribedPath string) *Client {
|
|||||||
Send: make(chan []byte, 64),
|
Send: make(chan []byte, 64),
|
||||||
SubscribedPath: subscribedPath,
|
SubscribedPath: subscribedPath,
|
||||||
done: make(chan struct{}),
|
done: make(chan struct{}),
|
||||||
mu: NewCustomRwMutex(),
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -37,8 +35,6 @@ type Hub struct {
|
|||||||
Broadcast chan []byte
|
Broadcast chan []byte
|
||||||
Register chan *Client
|
Register chan *Client
|
||||||
Unregister chan *Client
|
Unregister chan *Client
|
||||||
writeMu *CustomRwMutex
|
|
||||||
readMu *CustomRwMutex
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewHub() *Hub {
|
func NewHub() *Hub {
|
||||||
@@ -47,7 +43,6 @@ func NewHub() *Hub {
|
|||||||
Register: make(chan *Client),
|
Register: make(chan *Client),
|
||||||
Unregister: make(chan *Client),
|
Unregister: make(chan *Client),
|
||||||
Clients: make(map[*Client]bool),
|
Clients: make(map[*Client]bool),
|
||||||
writeMu: NewCustomRwMutex(),
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -100,7 +95,7 @@ func WritePump(c *Client, h *Hub) {
|
|||||||
}
|
}
|
||||||
case <-pingTicker.C:
|
case <-pingTicker.C:
|
||||||
c.Conn.SetWriteDeadline(time.Now().Add(writeWait))
|
c.Conn.SetWriteDeadline(time.Now().Add(writeWait))
|
||||||
if err := c.Conn.WriteMessage(websocket.PingMessage, nil); err != nil {
|
if err := c.Conn.WriteMessage(websocket.PingMessage, []byte{}); err != nil {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,33 +0,0 @@
|
|||||||
package internal
|
|
||||||
|
|
||||||
import (
|
|
||||||
"sync"
|
|
||||||
)
|
|
||||||
|
|
||||||
type CustomRwMutex struct {
|
|
||||||
mu *sync.RWMutex
|
|
||||||
}
|
|
||||||
|
|
||||||
func NewCustomRwMutex() *CustomRwMutex {
|
|
||||||
return &CustomRwMutex{
|
|
||||||
mu: &sync.RWMutex{},
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (rwMu *CustomRwMutex) WriteHandler(fn func() error) error {
|
|
||||||
rwMu.mu.Lock()
|
|
||||||
defer rwMu.mu.Unlock()
|
|
||||||
if err := fn(); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (rwMu *CustomRwMutex) ReadHandler(fn func() error) error {
|
|
||||||
rwMu.mu.RLock()
|
|
||||||
defer rwMu.mu.RUnlock()
|
|
||||||
if err := fn(); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
@@ -6,8 +6,10 @@ import (
|
|||||||
"log"
|
"log"
|
||||||
"net/url"
|
"net/url"
|
||||||
"strings"
|
"strings"
|
||||||
|
"sync"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
custom_rwmutex "git.neurocipta.com/rogerferdinan/custom-rwmutex"
|
||||||
"git.neurocipta.com/rogerferdinan/safe-web-socket/internal"
|
"git.neurocipta.com/rogerferdinan/safe-web-socket/internal"
|
||||||
"github.com/gorilla/websocket"
|
"github.com/gorilla/websocket"
|
||||||
)
|
)
|
||||||
@@ -16,6 +18,52 @@ const (
|
|||||||
pingPeriod = 10 * time.Second
|
pingPeriod = 10 * time.Second
|
||||||
)
|
)
|
||||||
|
|
||||||
|
type SafeMap[K comparable, V any] struct {
|
||||||
|
m sync.Map
|
||||||
|
}
|
||||||
|
|
||||||
|
func NewSafeMap[K comparable, V any]() *SafeMap[K, V] {
|
||||||
|
return &SafeMap[K, V]{
|
||||||
|
m: sync.Map{},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (sm *SafeMap[K, V]) Store(key K, value V) {
|
||||||
|
sm.m.Store(key, value)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (sm *SafeMap[K, V]) Load(key K) (value V, ok bool) {
|
||||||
|
val, loaded := sm.m.Load(key)
|
||||||
|
if !loaded {
|
||||||
|
return *new(V), false
|
||||||
|
}
|
||||||
|
return val.(V), true
|
||||||
|
}
|
||||||
|
|
||||||
|
func (sm *SafeMap[K, V]) Delete(key K) {
|
||||||
|
sm.m.Delete(key)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (sm *SafeMap[K, V]) Range(f func(K, V) bool) {
|
||||||
|
sm.m.Range(func(key, value any) bool {
|
||||||
|
k, ok1 := key.(K)
|
||||||
|
v, ok2 := value.(V)
|
||||||
|
if !ok1 || !ok2 {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
return f(k, v)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func (sm *SafeMap[K, V]) Len() int {
|
||||||
|
count := 0
|
||||||
|
sm.Range(func(_ K, _ V) bool {
|
||||||
|
count++
|
||||||
|
return true
|
||||||
|
})
|
||||||
|
return count
|
||||||
|
}
|
||||||
|
|
||||||
type SafeWebsocketClientBuilder struct {
|
type SafeWebsocketClientBuilder struct {
|
||||||
baseHost *string `nil_checker:"required"`
|
baseHost *string `nil_checker:"required"`
|
||||||
basePort *uint16 `nil_checker:"required"`
|
basePort *uint16 `nil_checker:"required"`
|
||||||
@@ -53,13 +101,11 @@ func (b *SafeWebsocketClientBuilder) RawQuery(rawQuery string) *SafeWebsocketCli
|
|||||||
return b
|
return b
|
||||||
}
|
}
|
||||||
|
|
||||||
func (b *SafeWebsocketClientBuilder) Build() (*SafeWebsocketClient, error) {
|
func (b *SafeWebsocketClientBuilder) Build(channelSize int) (*SafeWebsocketClient, error) {
|
||||||
if err := internal.NilChecker(b); err != nil {
|
if err := internal.NilChecker(b); err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
ctx, cancel := context.WithCancel(context.Background())
|
|
||||||
|
|
||||||
var useTLS bool
|
var useTLS bool
|
||||||
if b.useTLS != nil {
|
if b.useTLS != nil {
|
||||||
useTLS = *b.useTLS
|
useTLS = *b.useTLS
|
||||||
@@ -71,16 +117,16 @@ func (b *SafeWebsocketClientBuilder) Build() (*SafeWebsocketClient, error) {
|
|||||||
useTLS: useTLS,
|
useTLS: useTLS,
|
||||||
path: b.path,
|
path: b.path,
|
||||||
rawQuery: b.rawQuery,
|
rawQuery: b.rawQuery,
|
||||||
ctx: ctx,
|
dataChannel: make(chan []byte, channelSize),
|
||||||
cancel: cancel,
|
mu: custom_rwmutex.NewCustomRwMutex(),
|
||||||
dataChannel: make(chan []byte, 1),
|
|
||||||
mu: internal.NewCustomRwMutex(),
|
|
||||||
reconnectCh: make(chan struct{}, 1),
|
reconnectCh: make(chan struct{}, 1),
|
||||||
isConnected: false,
|
isConnected: false,
|
||||||
|
doneMap: NewSafeMap[string, chan struct{}](),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
go wsClient.reconnectHandler()
|
||||||
|
|
||||||
if err := wsClient.connect(); err != nil {
|
if err := wsClient.connect(); err != nil {
|
||||||
cancel()
|
|
||||||
return nil, fmt.Errorf("failed to establish initial connection: %v", err)
|
return nil, fmt.Errorf("failed to establish initial connection: %v", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -94,12 +140,14 @@ type SafeWebsocketClient struct {
|
|||||||
path *string
|
path *string
|
||||||
rawQuery *string
|
rawQuery *string
|
||||||
dataChannel chan []byte
|
dataChannel chan []byte
|
||||||
mu *internal.CustomRwMutex
|
mu *custom_rwmutex.CustomRwMutex
|
||||||
conn *websocket.Conn
|
conn *websocket.Conn
|
||||||
ctx context.Context
|
ctx context.Context
|
||||||
cancel context.CancelFunc
|
cancel context.CancelFunc
|
||||||
reconnectCh chan struct{}
|
reconnectCh chan struct{}
|
||||||
isConnected bool
|
isConnected bool
|
||||||
|
|
||||||
|
doneMap *SafeMap[string, chan struct{}]
|
||||||
}
|
}
|
||||||
|
|
||||||
func (wsClient *SafeWebsocketClient) connect() error {
|
func (wsClient *SafeWebsocketClient) connect() error {
|
||||||
@@ -128,75 +176,90 @@ func (wsClient *SafeWebsocketClient) connect() error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
conn.SetPingHandler(func(pingData string) error {
|
conn.SetPingHandler(func(pingData string) error {
|
||||||
if err := conn.WriteMessage(websocket.PongMessage, []byte(pingData)); err != nil {
|
return wsClient.mu.WriteHandler(func() error {
|
||||||
if err == websocket.ErrCloseSent {
|
if err := conn.WriteMessage(websocket.PongMessage, []byte(pingData)); err != nil {
|
||||||
return nil
|
if err == websocket.ErrCloseSent {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
if netErr, ok := err.(interface{ Timeout() bool }); ok && netErr.Timeout() {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
return err
|
||||||
}
|
}
|
||||||
if netErr, ok := err.(interface{ Timeout() bool }); ok && netErr.Timeout() {
|
return nil
|
||||||
return nil
|
})
|
||||||
}
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
})
|
})
|
||||||
|
|
||||||
wsClient.mu.WriteHandler(func() error {
|
wsClient.mu.WriteHandler(func() error {
|
||||||
|
if wsClient.conn != nil {
|
||||||
|
wsClient.conn.Close()
|
||||||
|
}
|
||||||
|
|
||||||
|
ctx, cancel := context.WithCancel(context.Background())
|
||||||
|
wsClient.ctx = ctx
|
||||||
|
wsClient.cancel = cancel
|
||||||
wsClient.conn = conn
|
wsClient.conn = conn
|
||||||
wsClient.isConnected = true
|
wsClient.isConnected = true
|
||||||
|
|
||||||
|
go wsClient.startPingTicker(ctx)
|
||||||
|
go wsClient.startReceiveHandler(ctx)
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
})
|
})
|
||||||
|
|
||||||
go wsClient.startPingTicker()
|
|
||||||
go wsClient.startReceiveHandler()
|
|
||||||
go wsClient.reconnectHandler()
|
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (wsClient *SafeWebsocketClient) startPingTicker() {
|
func (wsClient *SafeWebsocketClient) startPingTicker(ctx context.Context) {
|
||||||
ticker := time.NewTicker(pingPeriod)
|
ticker := time.NewTicker(pingPeriod)
|
||||||
defer ticker.Stop()
|
defer ticker.Stop()
|
||||||
|
|
||||||
for {
|
for {
|
||||||
select {
|
select {
|
||||||
case <-ticker.C:
|
case <-ticker.C:
|
||||||
wsClient.mu.WriteHandler(func() error {
|
wsClient.mu.WriteHandler(func() error {
|
||||||
|
if wsClient.conn == nil {
|
||||||
|
return fmt.Errorf("connecrtion closed")
|
||||||
|
}
|
||||||
if err := wsClient.conn.WriteMessage(websocket.PingMessage, []byte{}); err != nil {
|
if err := wsClient.conn.WriteMessage(websocket.PingMessage, []byte{}); err != nil {
|
||||||
log.Printf("Ping failed: %v. Will attempt reconnect.", err)
|
log.Printf("Ping failed: %v. Will attempt reconnect.", err)
|
||||||
wsClient.triggerReconnect()
|
wsClient.triggerReconnect()
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
})
|
})
|
||||||
case <-wsClient.ctx.Done():
|
case <-ctx.Done():
|
||||||
log.Println("Ping ticker stopped")
|
log.Println("Ping ticker stopped due to context cancellation")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (wsClient *SafeWebsocketClient) startReceiveHandler() {
|
func (wsClient *SafeWebsocketClient) startReceiveHandler(ctx context.Context) {
|
||||||
for {
|
for {
|
||||||
select {
|
select {
|
||||||
case <-wsClient.reconnectCh:
|
case <-ctx.Done():
|
||||||
case <-wsClient.ctx.Done():
|
|
||||||
log.Println("Reconnect handler stopped")
|
log.Println("Reconnect handler stopped")
|
||||||
return
|
return
|
||||||
default:
|
default:
|
||||||
if err := wsClient.mu.WriteHandler(func() error {
|
wsClient.mu.ReadHandler(func() error {
|
||||||
conn := wsClient.conn
|
conn := wsClient.conn
|
||||||
|
|
||||||
if conn == nil {
|
if conn == nil {
|
||||||
return fmt.Errorf("no active connection, waiting for reconnect")
|
wsClient.triggerReconnect()
|
||||||
|
return fmt.Errorf("connection closed")
|
||||||
}
|
}
|
||||||
_, message, err := conn.ReadMessage()
|
_, message, err := conn.ReadMessage()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
wsClient.triggerReconnect()
|
||||||
|
return fmt.Errorf("failed to read message: %v", err)
|
||||||
|
}
|
||||||
|
select {
|
||||||
|
case wsClient.dataChannel <- message:
|
||||||
|
default:
|
||||||
|
log.Println("Data channel full, dropping message")
|
||||||
}
|
}
|
||||||
wsClient.dataChannel <- message
|
|
||||||
return nil
|
return nil
|
||||||
}); err != nil {
|
})
|
||||||
wsClient.triggerReconnect()
|
|
||||||
return
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -209,11 +272,68 @@ func (wsClient *SafeWebsocketClient) triggerReconnect() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (wsClient *SafeWebsocketClient) reconnectHandler() {
|
func (wsClient *SafeWebsocketClient) reconnectHandler() {
|
||||||
for range wsClient.reconnectCh {
|
backoff := 1 * time.Second
|
||||||
wsClient.connect()
|
maxBackoff := 30 * time.Second
|
||||||
|
for {
|
||||||
|
if wsClient.ctx == nil {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
select {
|
||||||
|
case <-wsClient.reconnectCh:
|
||||||
|
log.Println("Reconnect triggered")
|
||||||
|
wsClient.mu.WriteHandler(func() error {
|
||||||
|
if wsClient.cancel != nil {
|
||||||
|
wsClient.cancel()
|
||||||
|
}
|
||||||
|
wsClient.isConnected = false
|
||||||
|
return nil
|
||||||
|
})
|
||||||
|
|
||||||
|
time.Sleep(100 * time.Millisecond)
|
||||||
|
|
||||||
|
isInnerLoop := true
|
||||||
|
for isInnerLoop {
|
||||||
|
log.Printf("Attempting reconnect in %v...", backoff)
|
||||||
|
select {
|
||||||
|
case <-time.After(backoff):
|
||||||
|
if err := wsClient.connect(); err != nil {
|
||||||
|
log.Printf("Reconnect failed: %v", err)
|
||||||
|
if backoff < maxBackoff {
|
||||||
|
backoff *= 2
|
||||||
|
}
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
log.Println("Reconnected successfully")
|
||||||
|
backoff = 1 * time.Second
|
||||||
|
isInnerLoop = false
|
||||||
|
continue
|
||||||
|
case <-wsClient.ctx.Done():
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
case <-wsClient.ctx.Done():
|
||||||
|
log.Println("Reconnect handler stopped due to client shutdown")
|
||||||
|
return
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (wsClient *SafeWebsocketClient) DataChannel() <-chan []byte {
|
func (wsClient *SafeWebsocketClient) DataChannel() <-chan []byte {
|
||||||
return wsClient.dataChannel
|
return wsClient.dataChannel
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (wsClient *SafeWebsocketClient) Close() error {
|
||||||
|
wsClient.mu.WriteHandler(func() error {
|
||||||
|
if wsClient.cancel != nil {
|
||||||
|
wsClient.cancel()
|
||||||
|
}
|
||||||
|
if wsClient.conn != nil {
|
||||||
|
wsClient.conn.Close()
|
||||||
|
}
|
||||||
|
wsClient.isConnected = false
|
||||||
|
return nil
|
||||||
|
})
|
||||||
|
close(wsClient.dataChannel)
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user