-
Notifications
You must be signed in to change notification settings - Fork 3
/
ws_connection.go
366 lines (340 loc) · 7.45 KB
/
ws_connection.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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
/*
* WebSocket connection routine
*
* Copyright (C) 2024 Runxi Yu <https://runxiyu.org>
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
package main
import (
"context"
"log/slog"
"sync"
"sync/atomic"
"time"
"github.com/coder/websocket"
)
type errbytesT struct {
err error
bytes *[]byte
}
var usemCount int64 /* atomic */
/*
* This is more appropriately typed as uint64, but it needs to be cast to int64
* later anyway due to time.Duration, so let's just use int64.
*/
/*
* The actual logic in handling the connection, after authentication has been
* completed.
*/
func handleConn(
ctx context.Context,
c *websocket.Conn,
userID string,
department string,
) (reterr error) {
_state, ok := states[department]
if !ok {
return errNoSuchYearGroup
}
if atomic.LoadUint32(_state) == 0 {
return errStudentAccessDisabled
}
send := make(chan string, config.Perf.SendQ)
chanSubPool, ok := chanPool[department]
if !ok {
return errNoSuchYearGroup
}
chanSubPool.Store(userID, &send)
defer chanSubPool.CompareAndDelete(userID, &send)
newCtx, newCancel := context.WithCancel(ctx)
_cancel, ok := cancelPool.Load(userID)
if ok {
cancel, ok := _cancel.(*context.CancelFunc)
if ok && cancel != nil {
(*cancel)()
}
/* TODO: Make the cancel synchronous */
}
cancelPool.Store(userID, &newCancel)
defer func() {
cancelPool.CompareAndDelete(userID, &newCancel)
}()
/* TODO: Tell the user their current choices here. Deprecate HELLO. */
usems := make(map[int]*usemT)
atomic.AddInt64(&usemCount, int64(atomic.LoadUint32(&numCourses)))
var err error
courses.Range(func(key, value interface{}) bool {
courseID, ok := key.(int)
if !ok {
err = errType
return false
}
course, ok := value.(*courseT)
if !ok {
err = errType
return false
}
usem := &usemT{} //exhaustruct:ignore
usem.init()
course.Usems.Store(userID, usem)
usems[courseID] = usem
return true
})
defer func() {
courses.Range(func(key, value interface{}) bool {
_ = key
course, ok := value.(*courseT)
if !ok {
reterr = errType
return false
}
course.Usems.Delete(userID)
return true
})
atomic.AddInt64(&usemCount, -int64(atomic.LoadUint32(&numCourses)))
}()
usemParent := make(chan int)
for courseID, usem := range usems {
go func() {
defer func() {
if e := recover(); e != nil {
slog.Error("panic", "arg", e)
}
}()
for {
select {
case <-newCtx.Done():
return
case <-usem.ch:
select {
case <-newCtx.Done():
return
case usemParent <- courseID:
}
}
time.Sleep(
time.Duration(
atomic.LoadInt64(&usemCount)>>
config.Perf.UsemDelayShiftBits,
) * time.Millisecond,
)
}
}()
}
var userCourseGroups userCourseGroupsT = make(map[string]struct{})
var userCourseTypes userCourseTypesT = make(map[string]int)
err = populateUserCourseTypesAndGroups(
newCtx,
&userCourseTypes,
&userCourseGroups,
userID,
)
if err != nil {
return err
}
/*
* Later we need to select from recv and send and perform the
* corresponding action. But we can't just select from c.Read because
* the function blocks. Therefore, we must spawn a goroutine that
* blocks on c.Read and send what it receives to a channel "recv"; and
* then we can select from that channel.
*/
recv := make(chan *errbytesT)
go func() {
defer func() {
if e := recover(); e != nil {
slog.Error("panic", "arg", e)
}
}()
for {
/*
* Here we use the original connection context instead
* of the new context we just created. Apparently when
* the context passed to Read expires, the connection
* gets closed, which makes it impossible for us to
* write the context expiry message to the client.
* So we pass the original connection context, which
* would get canceled anyway once we close the
* connection.
* See: https://github.com/coder/websocket/issues/242
* We still need to take care of this while sending so
* we don't infinitely block, and leak goroutines and
* cause the channel to remain out of reach of the
* garbage collector.
* It would be nice to return the newCtx.Err() but
* the only way to really do that is to use the recv
* channel which might not have a listener anymore.
* It's not really crucial anyways so we could just
* close this goroutine by returning here.
*/
_, b, err := c.Read(ctx)
if err != nil {
select {
case <-newCtx.Done():
_ = writeText(
ctx,
c,
"E :Context canceled",
)
/* Not a typo to use ctx here */
return
case recv <- &errbytesT{err: err, bytes: nil}:
}
return
}
select {
case <-newCtx.Done():
_ = writeText(ctx, c, "E :Context canceled")
/* Not a typo to use ctx here */
return
case recv <- &errbytesT{err: nil, bytes: &b}:
}
}
}()
for {
var mar []string
select {
case <-newCtx.Done():
/*
* We select this context done channel when entering
* other cases too (see below) because we need to
* make sure the context cancel works even if both
* the cancel signal and another event arrive while
* processing a select cycle.
*/
return wrapError(
errWsHandlerContextCanceled,
newCtx.Err(),
)
case sendText := <-send:
select {
case <-newCtx.Done():
return wrapError(
errWsHandlerContextCanceled,
newCtx.Err(),
)
default:
}
err := writeText(newCtx, c, sendText)
if err != nil {
return err
}
case courseID := <-usemParent:
select {
case <-newCtx.Done():
return wrapError(
errWsHandlerContextCanceled,
newCtx.Err(),
)
default:
}
err := sendSelectedUpdate(newCtx, c, courseID)
if err != nil {
return wrapError(
errCannotSend,
err,
)
}
continue
case errbytes := <-recv:
select {
case <-newCtx.Done():
return wrapError(
errWsHandlerContextCanceled,
newCtx.Err(),
)
default:
}
_state, ok = states[department]
if !ok {
return errNoSuchYearGroup
}
if atomic.LoadUint32(_state) == 0 {
return errStudentAccessDisabled
}
if errbytes.err != nil {
return wrapError(
errCannotReceiveMessage,
errbytes.err,
)
/*
* Note that this cannot return newCtx.Err(),
* so we handle the error reporting in the
* reading routine
*/
}
mar = splitMsg(errbytes.bytes)
switch mar[0] {
case "HELLO":
err := messageHello(
newCtx,
c,
mar,
userID,
department,
)
if err != nil {
return err
}
case "Y":
err := messageChooseCourse(
newCtx,
c,
mar,
userID,
department,
&userCourseGroups,
&userCourseTypes,
)
if err != nil {
return err
}
case "N":
err := messageUnchooseCourse(
newCtx,
c,
mar,
userID,
department,
&userCourseGroups,
&userCourseTypes,
)
if err != nil {
return err
}
case "YC":
err := messageConfirm(
newCtx,
c,
mar,
userID,
department,
&userCourseTypes,
)
if err != nil {
return err
}
case "NC":
err := messageUnconfirm(
newCtx,
c,
mar,
userID,
department,
)
if err != nil {
return err
}
default:
return wrapAny(errUnknownCommand, mar[0])
}
}
}
}
var cancelPool sync.Map /* string, *context.CancelFunc */
var chanPool = map[string]*sync.Map{
"Y9": {},
"Y10": {},
"Y11": {},
"Y12": {},
} /* string, *chan string */