-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbroadcast.go
67 lines (61 loc) · 1.11 KB
/
broadcast.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
package main
import (
"encoding/json"
"fmt"
"sync"
)
// Slow readers will be ignored
type broadcast struct {
lock sync.Mutex
listeners []chan<- []byte
lastBuf []byte
}
func (b *broadcast) Listen(ch chan<- []byte) func() {
b.lock.Lock()
defer b.lock.Unlock()
b.listeners = append(b.listeners, ch)
if len(b.lastBuf) > 0 {
select {
case ch <- b.lastBuf:
default:
}
}
return func() {
b.lock.Lock()
defer b.lock.Unlock()
old := b.listeners
b.listeners = make([]chan<- []byte, 0, len(b.listeners))
for _, l := range old {
if l == ch {
continue
}
b.listeners = append(b.listeners, l)
}
}
}
func (b *broadcast) Forward(ch <-chan []byte) {
for buf := range ch {
b.forward(buf)
}
}
func (b *broadcast) forward(buf []byte) {
b.lock.Lock()
defer b.lock.Unlock()
for _, l := range b.listeners {
select {
case l <- buf: // slow readers are skipped
default:
}
}
b.lastBuf = buf
}
func (b *broadcast) ForwardFlightData(ch <-chan FlightData) {
for fd := range ch {
buf, err := json.Marshal(fd)
if err != nil {
fmt.Println(err)
continue
}
b.forward(buf)
}
}