-
Notifications
You must be signed in to change notification settings - Fork 86
/
websocket_hub.go
281 lines (251 loc) · 6.55 KB
/
websocket_hub.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
// Copyright 2016 Martin Hebnes Pedersen (LA5NTA). All rights reserved.
// Use of this source code is governed by the MIT-license that can be
// found in the LICENSE file.
package main
import (
"bufio"
"encoding/json"
"errors"
"io"
"log"
"os"
"path"
"runtime"
"sync"
"time"
"github.com/fsnotify/fsnotify"
"github.com/gorilla/websocket"
"github.com/la5nta/pat/internal/debug"
"github.com/la5nta/pat/internal/osutil"
"github.com/la5nta/wl2k-go/mailbox"
)
const KeepaliveInterval = 4 * time.Minute
// WSConn represent one connection in the WSHub pool
type WSConn struct {
conn *websocket.Conn
out chan interface{}
}
// WSHub is a hub for broadcasting data to several websocket connections
type WSHub struct {
mu sync.Mutex
pool map[*WSConn]struct{}
}
func NewWSHub() *WSHub {
w := &WSHub{pool: map[*WSConn]struct{}{}}
go w.watchMBox()
return w
}
func (w *WSHub) UpdateStatus() { w.WriteJSON(struct{ Status Status }{getStatus()}) }
func (w *WSHub) WriteProgress(p Progress) { w.WriteJSON(struct{ Progress Progress }{p}) }
func (w *WSHub) WriteNotification(n Notification) {
w.WriteJSON(struct{ Notification Notification }{n})
}
func (w *WSHub) Prompt(p Prompt) {
w.WriteJSON(struct{ Prompt Prompt }{p})
go func() { <-p.cancel; w.WriteJSON(struct{ PromptAbort Prompt }{p}) }()
}
func (w *WSHub) WriteJSON(v interface{}) {
if w == nil {
return
}
w.mu.Lock()
for c := range w.pool {
select {
case c.out <- v:
case <-time.After(3 * time.Second):
debug.Printf("Closing one unresponsive web socket")
c.conn.Close()
delete(w.pool, c)
}
}
w.mu.Unlock()
}
func (w *WSHub) ClientAddrs() []string {
if w == nil {
return nil
}
w.mu.Lock()
defer w.mu.Unlock()
addrs := make([]string, 0, len(w.pool))
for c := range w.pool {
addrs = append(addrs, c.conn.RemoteAddr().String())
}
return addrs
}
func (w *WSHub) watchMBox() {
// Maximise ulimit -n:
// fsnotify opens a file descriptor for every file in the directories it watches, which
// may more files than the current soft limit. The is especially a problem on macOS which
// has a default soft limit of only 256 files. Windows does not have a such a limit.
if runtime.GOOS != "windows" {
if err := osutil.RaiseOpenFileLimit(4096); err != nil {
log.Printf("Unable to raise open file limit: %v", err)
}
}
fsWatcher, err := fsnotify.NewWatcher()
if err != nil {
log.Println("Unable to start fs watcher: ", err)
return
}
defer fsWatcher.Close()
// Add all directories in the mailbox to the watcher
for _, dir := range []string{mailbox.DIR_INBOX, mailbox.DIR_OUTBOX, mailbox.DIR_SENT, mailbox.DIR_ARCHIVE} {
p := path.Join(mbox.MBoxPath, dir)
debug.Printf("Adding '%s' to fs watcher", p)
if err := fsWatcher.Add(p); err != nil {
log.Printf("Unable to add path '%s' to fs watcher: %v", p, err)
}
}
// Listen for filesystem events and broadcast updates to all clients
for {
select {
case e := <-fsWatcher.Events:
if e.Op == fsnotify.Chmod {
continue
}
// Make sure we don't send many of these events over a short period.
drainUntilSilence(fsWatcher, 100*time.Millisecond)
websocketHub.WriteJSON(struct {
UpdateMailbox bool
}{true})
case err := <-fsWatcher.Errors:
log.Println(err)
}
}
}
// Handle adds a new websocket to the hub
//
// It will block until the client either stops responding or closes the connection.
func (w *WSHub) Handle(conn *websocket.Conn) {
debug.Printf("ws[%s] subscribed", conn.RemoteAddr())
c := &WSConn{
conn: conn,
out: make(chan interface{}, 1),
}
w.mu.Lock()
w.pool[c] = struct{}{}
w.mu.Unlock()
// Initial status update
// (broadcasted as it includes info to other clients about this new one)
w.UpdateStatus()
quit := wsReadLoop(conn)
// Disconnect and remove client when this handler returns.
defer func() {
debug.Printf("ws[%s] unsubscribing...", conn.RemoteAddr())
c.conn.Close()
w.mu.Lock()
delete(w.pool, c)
w.mu.Unlock()
w.UpdateStatus()
debug.Printf("ws[%s] unsubscribed", conn.RemoteAddr())
}()
lines, done, err := tailFile(fOptions.LogPath)
if err != nil {
log.Println(err)
return
}
defer close(done)
ticker := time.NewTicker(KeepaliveInterval)
defer ticker.Stop()
for {
var err error
c.conn.SetWriteDeadline(time.Time{})
select {
case <-ticker.C:
debug.Printf("ws[%s] ping", conn.RemoteAddr())
c.conn.SetWriteDeadline(time.Now().Add(5 * time.Second))
err = c.conn.WriteJSON(struct {
Ping bool
}{true})
case line := <-lines:
c.conn.SetWriteDeadline(time.Now().Add(5 * time.Second))
err = c.conn.WriteJSON(struct {
LogLine string
}{string(line)})
case v := <-c.out:
c.conn.SetWriteDeadline(time.Now().Add(5 * time.Second))
err = c.conn.WriteJSON(v)
case <-quit:
// The read loop failed/disconnected. Abort.
return
}
if err != nil {
debug.Printf("ws[%s] write error: %v", conn.RemoteAddr(), err)
return
}
}
}
// drainEvents reads from w.Events and blocks until the channel has been silent for at least 50 ms.
func drainUntilSilence(w *fsnotify.Watcher, silenceDur time.Duration) {
timer := time.NewTimer(silenceDur)
defer timer.Stop()
for {
select {
case <-w.Events:
if !timer.Stop() {
<-timer.C
}
timer.Reset(silenceDur)
case <-timer.C:
return
}
}
}
// Expects the file to never get renamed/truncated or deleted
func tailFile(path string) (<-chan []byte, chan<- struct{}, error) {
lines := make(chan []byte)
done := make(chan struct{})
file, err := os.Open(path)
if err != nil {
return nil, nil, err
}
go func() {
rd := bufio.NewReader(file)
for {
data, _, err := rd.ReadLine()
if errors.Is(err, io.EOF) {
time.Sleep(time.Millisecond * 100)
continue
}
select {
case <-done:
file.Close()
return
case lines <- data:
}
}
}()
return lines, done, nil
}
func handleWSMessage(v map[string]json.RawMessage) {
raw, ok := v["prompt_response"]
if !ok {
return
}
var resp PromptResponse
json.Unmarshal(raw, &resp)
promptHub.Respond(resp.ID, resp.Value, resp.Err)
}
func wsReadLoop(c *websocket.Conn) <-chan struct{} {
quit := make(chan struct{})
go func() {
for {
v := map[string]json.RawMessage{}
// We should at least get a ping response once per KeepaliveInterval.
c.SetReadDeadline(time.Now().Add(KeepaliveInterval + 10*time.Second))
err := c.ReadJSON(&v)
if err != nil {
debug.Printf("ws[%s] read error: %v", c.RemoteAddr(), err)
close(quit)
return
}
if _, ok := v["Pong"]; ok {
// That's the Ping response.
debug.Printf("ws[%s] pong", c.RemoteAddr())
continue
}
go handleWSMessage(v)
}
}()
return quit
}