forked from rancher/remotedialer
-
Notifications
You must be signed in to change notification settings - Fork 3
/
wsconn.go
80 lines (69 loc) · 1.58 KB
/
wsconn.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
package remotedialer
import (
"context"
"fmt"
"io"
"sync"
"time"
"github.com/gorilla/websocket"
)
type wsConn struct {
sync.Mutex
conn *websocket.Conn
}
func newWSConn(conn *websocket.Conn) *wsConn {
w := &wsConn{
conn: conn,
}
w.setupDeadline()
return w
}
func (w *wsConn) WriteMessage(messageType int, deadline time.Time, data []byte) error {
if deadline.IsZero() {
w.Lock()
defer w.Unlock()
return w.conn.WriteMessage(messageType, data)
}
ctx, cancel := context.WithDeadline(context.Background(), deadline)
defer cancel()
done := make(chan error, 1)
go func() {
w.Lock()
defer w.Unlock()
done <- w.conn.WriteMessage(messageType, data)
}()
select {
case <-ctx.Done():
return fmt.Errorf("i/o timeout")
case err := <-done:
return err
}
}
func (w *wsConn) NextReader() (int, io.Reader, error) {
return w.conn.NextReader()
}
func (w *wsConn) setupDeadline() {
w.conn.SetReadDeadline(time.Now().Add(PingWaitDuration))
w.conn.SetPingHandler(func(string) error {
w.Lock()
err := w.conn.WriteControl(websocket.PongMessage, []byte(""), time.Now().Add(PingWaitDuration))
w.Unlock()
if err != nil {
return err
}
if err := w.conn.SetReadDeadline(time.Now().Add(PingWaitDuration)); err != nil {
return err
}
w.Lock()
defer w.Unlock()
return w.conn.SetWriteDeadline(time.Now().Add(PingWaitDuration))
})
w.conn.SetPongHandler(func(string) error {
if err := w.conn.SetReadDeadline(time.Now().Add(PingWaitDuration)); err != nil {
return err
}
w.Lock()
defer w.Unlock()
return w.conn.SetWriteDeadline(time.Now().Add(PingWaitDuration))
})
}