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
|
/*
* WebSocket-based protocol auxiliary functions
*
* Copyright (C) 2024 Runxi Yu <https://runxiyu.org>
* SPDX-License-Identifier: AGPL-3.0-or-later
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package main
import (
"context"
"fmt"
"sync/atomic"
"github.com/coder/websocket"
)
/*
* Split an IRC-style message of type []byte into type []string where each
* element is a complete argument. Generally, arguments are separated by
* spaces, and an argument that begins with a ':' causes the rest of the
* line to be treated as a single argument.
*/
func splitMsg(b *[]byte) []string {
mar := make([]string, 0, config.Perf.MessageArgumentsCap)
elem := make([]byte, 0, config.Perf.MessageBytesCap)
for i, c := range *b {
switch c {
case ' ':
if (*b)[i+1] == ':' {
mar = append(mar, string(elem))
mar = append(mar, string((*b)[i+2:]))
goto endl
}
mar = append(mar, string(elem))
elem = make([]byte, 0, config.Perf.MessageBytesCap)
default:
elem = append(elem, c)
}
}
mar = append(mar, string(elem))
endl:
return mar
}
func baseReportError(
ctx context.Context,
conn *websocket.Conn,
e string,
) error {
err := writeText(ctx, conn, "E :"+e)
if err != nil {
return fmt.Errorf("error reporting protocol violation: %w", err)
}
err = conn.Close(websocket.StatusProtocolError, e)
if err != nil {
return fmt.Errorf("error closing websocket: %w", err)
}
return nil
}
type reportErrorT func(e string) error
func makeReportError(ctx context.Context, conn *websocket.Conn) reportErrorT {
return func(e string) error {
return baseReportError(ctx, conn, e)
}
}
func propagateSelectedUpdate(course *courseT) {
course.Usems.Range(func(key, value interface{}) bool {
_ = key
usem, ok := value.(*usemT)
if !ok {
panic("Usems contains non-\"*usemT\" value")
}
usem.set()
return true
})
}
func sendSelectedUpdate(
ctx context.Context,
conn *websocket.Conn,
courseID int,
) error {
_course, ok := courses.Load(courseID)
if !ok {
return fmt.Errorf("%w: %d", errNoSuchCourse, courseID)
}
course, ok := _course.(*courseT)
if !ok {
panic("courses map has non-\"*courseT\" items")
}
if course == nil {
return fmt.Errorf("%w: %d", errNoSuchCourse, courseID)
}
selected := atomic.LoadUint32(&course.Selected)
err := writeText(ctx, conn, fmt.Sprintf("M %d %d", courseID, selected))
if err != nil {
return fmt.Errorf(
"error sending to websocket for course selected update: %w",
err,
)
}
return nil
}
|