-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathclient.go
134 lines (117 loc) · 2.93 KB
/
client.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
package lightcable
import (
"context"
"net/http"
"time"
"github.com/gorilla/websocket"
)
const (
// Time allowed to write a message to the peer.
writeWait = 10 * time.Second
// Time allowed to read the next pong message from the peer.
pongWait = 60 * time.Second
// Send pings to peer with this period. Must be less than pongWait.
pingPeriod = (pongWait * 9) / 10
)
var upgrader = websocket.Upgrader{
ReadBufferSize: 1024,
WriteBufferSize: 1024,
CheckOrigin: func(r *http.Request) bool { return true },
}
// Message represents a message send and received from the Websocket connection.
//
// Code is websocket Opcode
// Name is user custom Name
type Message struct {
Room string
Name string
Code int
Data []byte
conn *websocket.Conn
}
// Client is a middleman between the websocket connection and the worker.
type Client struct {
Name string
Room string
Err error
worker *worker
// The websocket connection.
conn *websocket.Conn
// Buffered channel of outbound messages.
send chan Message
}
// readPump pumps messages from the websocket connection to the worker.
//
// The application runs readPump in a per-connection goroutine. The application
// ensures that there is at most one reader on a connection by executing all
// reads from this goroutine.
func (c *Client) readPump() {
defer func() {
c.worker.unregister <- c
c.conn.Close()
}()
if err := c.conn.SetReadDeadline(time.Now().Add(pongWait)); err != nil {
c.Err = err
}
c.conn.SetPongHandler(func(string) error {
return c.conn.SetReadDeadline(time.Now().Add(pongWait))
})
for {
code, data, err := c.conn.ReadMessage()
if err != nil {
c.Err = err
break
}
msg := Message{
Name: c.Name,
Room: c.Room,
Code: code,
Data: data,
conn: c.conn,
}
c.worker.server.onMessage(&msg)
c.worker.broadcast <- msg
}
}
// writePump pumps messages from the worker to the websocket connection.
//
// A goroutine running writePump is started for each connection. The
// application ensures that there is at most one writer to a connection by
// executing all writes from this goroutine.
func (c *Client) writePump(ctx context.Context) {
ticker := time.NewTicker(pingPeriod)
defer func() {
ticker.Stop()
c.conn.Close()
}()
for {
select {
case msg, ok := <-c.send:
if err := c.conn.SetWriteDeadline(time.Now().Add(writeWait)); err != nil {
c.Err = err
}
if !ok {
// The worker closed the channel.
if err := c.conn.WriteMessage(websocket.CloseMessage, []byte{}); err != nil {
c.Err = err
}
return
}
if err := c.conn.WriteMessage(msg.Code, msg.Data); err != nil {
c.Err = err
return
}
case <-ticker.C:
if err := c.conn.SetWriteDeadline(time.Now().Add(writeWait)); err != nil {
c.Err = err
}
if err := c.conn.WriteMessage(websocket.PingMessage, nil); err != nil {
c.Err = err
return
}
case <-ctx.Done():
c.conn.WriteMessage(websocket.CloseMessage, []byte{})
return
}
}
}