-
Notifications
You must be signed in to change notification settings - Fork 0
/
socket.go
executable file
·173 lines (145 loc) · 3.31 KB
/
socket.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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
package go_remote
import (
"bytes"
"context"
"encoding/json"
"time"
"github.com/gorilla/websocket"
)
type ConnectionID int64
type Client struct {
Send chan []byte
Server *Server
User int
ConnID int
conn *websocket.Conn
ctx context.Context
}
type ResponseMessage struct {
Action string `json:"action"`
Body interface{} `json:"body,omitempty"`
}
type RequestMessage struct {
Action string `json:"action"`
Name string `json:"name"`
Body json.RawMessage `json:"body,omitempty"`
}
const pongWait = 60 * time.Second
const pingPeriod = (pongWait * 9) / 10
var MaxSocketMessageSize = 4000
const writeWait = 10 * time.Second
var (
newline = []byte{'\n'}
space = []byte{' '}
)
func (c *Client) Start() {
go c.readPump()
go c.writePump()
c.Server.Events.UserIn(c.User, c.ConnID)
c.SendMessage("start", c.ConnID)
}
func (c *Client) Context() context.Context {
return c.ctx
}
func (c *Client) SendMessage(name string, body interface{}) {
m, _ := json.Marshal(&ResponseMessage{Action: name, Body: body})
c.Send <- m
}
func (c *Client) readPump() {
defer func() {
c.Server.Events.UserOut(c.User, c.ConnID)
c.Server.Events.UnSubscribe("", c)
c.conn.Close()
}()
c.conn.SetReadLimit(int64(MaxSocketMessageSize))
c.conn.SetReadDeadline(time.Now().Add(pongWait))
c.conn.SetPongHandler(func(string) error {
c.conn.SetReadDeadline(time.Now().Add(pongWait))
return nil
})
for {
_, message, err := c.conn.ReadMessage()
if err != nil {
if websocket.IsUnexpectedCloseError(err, websocket.CloseGoingAway, websocket.CloseAbnormalClosure) {
log.Errorf("websocket error: %v", err)
}
break
}
message = bytes.TrimSpace(bytes.Replace(message, newline, space, -1))
go c.process(message)
}
}
func (c *Client) process(message []byte) {
m := RequestMessage{}
err := json.Unmarshal(message, &m)
if err != nil {
log.Errorf("invalid message: %s", message)
log.Errorf(err.Error())
return
}
if m.Action == "subscribe" {
c.Server.Events.Subscribe(m.Name, c)
}
if m.Action == "unsubscribe" {
c.Server.Events.UnSubscribe(m.Name, c)
}
if m.Action == "call" {
res := c.Server.Process(m.Body, c.ctx)
if len(res) < 1 {
log.Errorf("somehow process doesn't return results")
return
}
c.SendMessage("result", &res)
}
}
func (c *Client) writePump() {
ticker := time.NewTicker(pingPeriod)
defer func() {
ticker.Stop()
c.conn.Close()
}()
for {
select {
case message, ok := <-c.Send:
c.conn.SetWriteDeadline(time.Now().Add(writeWait))
if !ok {
// The hub closed the channel.
c.conn.WriteMessage(websocket.CloseMessage, []byte{})
return
}
w, err := c.conn.NextWriter(websocket.TextMessage)
if err != nil {
return
}
_, err = w.Write(message)
if err != nil {
return
}
err = w.Close()
if err != nil {
return
}
// Add queued messages to the current websocket message.
n := len(c.Send)
for i := 0; i < n; i++ {
w, err := c.conn.NextWriter(websocket.TextMessage)
if err != nil {
return
}
_, err = w.Write(<-c.Send)
if err != nil {
return
}
err = w.Close()
if err != nil {
return
}
}
case <-ticker.C:
c.conn.SetWriteDeadline(time.Now().Add(writeWait))
if err := c.conn.WriteMessage(websocket.PingMessage, nil); err != nil {
return
}
}
}
}