-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpeer.go
80 lines (68 loc) · 1.57 KB
/
peer.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
package main
import (
"fmt"
"log/slog"
"sync"
"github.com/gorilla/websocket"
)
type Peer interface {
Send([]byte) error
GetPeerSubscription() <-chan string
}
type WSPeer struct {
mu sync.RWMutex
conn *websocket.Conn
topics []string
peerTopicsAction chan<- PeerTopicsAction
PeerSubscription chan string
}
func NewWSPeer(conn *websocket.Conn, peerTopicsAction chan PeerTopicsAction) *WSPeer {
peerSubscription := make(chan string)
topics := []string{}
p := &WSPeer{
conn: conn,
peerTopicsAction: peerTopicsAction,
PeerSubscription: peerSubscription,
topics: topics,
}
go p.readLoop()
return p
}
func (p *WSPeer) readLoop() {
var msg WSMessage
for {
if err := p.conn.ReadJSON(&msg); err != nil {
slog.Error("ws peer read error", "err", err)
return
}
if err := p.handleMessage(msg); err != nil {
slog.Error("ws peer handle msg error", "err", err)
return
}
}
}
func (p *WSPeer) handleMessage(msg WSMessage) error {
// validation of message
if len(msg.Topics) == 0 {
return fmt.Errorf("no topics specified")
}
p.peerTopicsAction <- PeerTopicsAction{
Peer: p,
Action: msg.Action,
Topics: msg.Topics,
}
if len(p.topics) > 0 {
p.PeerSubscription <- "update"
}
p.topics = append(p.topics, msg.Topics...)
fmt.Printf("handling message %+v \n", msg)
return nil
}
func (p *WSPeer) Send(b []byte) error {
p.mu.Lock()
defer p.mu.Unlock()
return p.conn.WriteMessage(websocket.BinaryMessage, b)
}
func (p *WSPeer) GetPeerSubscription() <-chan string {
return p.PeerSubscription
}