-
Notifications
You must be signed in to change notification settings - Fork 62
/
publisher_sub.go
206 lines (170 loc) · 3.65 KB
/
publisher_sub.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
package goroslib
import (
"context"
"fmt"
"net"
"time"
"github.com/bluenviron/goroslib/v2/pkg/prototcp"
)
const (
writeBufferSize = 64
)
type publisherSubscriber struct {
pub *Publisher
callerID string
tcpNConn net.Conn
tcpTConn *prototcp.Conn
udpAddr *net.UDPAddr
ctx context.Context
ctxCancel func()
// in
chWriteMessage chan interface{}
}
func newPublisherSubscriber(
pub *Publisher,
callerID string,
tcpNConn net.Conn,
tcpTConn *prototcp.Conn,
udpAddr *net.UDPAddr,
) *publisherSubscriber {
ctx, ctxCancel := context.WithCancel(pub.ctx)
ps := &publisherSubscriber{
pub: pub,
callerID: callerID,
tcpNConn: tcpNConn,
tcpTConn: tcpTConn,
udpAddr: udpAddr,
ctx: ctx,
ctxCancel: ctxCancel,
chWriteMessage: make(chan interface{}, writeBufferSize),
}
pub.subscribersWg.Add(1)
go ps.run()
return ps
}
func (ps *publisherSubscriber) subscriberLabel() string {
if ps.tcpNConn != nil {
return "'" + ps.tcpNConn.RemoteAddr().String() + "' (TCP)"
}
return "'" + ps.udpAddr.String() + "' (UDP)"
}
func (ps *publisherSubscriber) run() {
defer ps.pub.subscribersWg.Done()
ps.pub.conf.Node.Log(LogLevelDebug,
"publisher '%s' got a new subscriber %s",
ps.pub.conf.Node.absoluteTopicName(ps.pub.conf.Topic),
ps.subscriberLabel())
if ps.pub.conf.onSubscriber != nil {
ps.pub.conf.onSubscriber()
}
var err error
if ps.tcpNConn != nil {
err = ps.runTCP()
} else {
err = ps.runUDP()
}
ps.ctxCancel()
select {
case ps.pub.subscriberClose <- ps:
case <-ps.pub.ctx.Done():
}
ps.pub.conf.Node.Log(LogLevelDebug,
"publisher '%s' lost subscriber %s: %s",
ps.pub.conf.Node.absoluteTopicName(ps.pub.conf.Topic),
ps.subscriberLabel(),
err)
}
func (ps *publisherSubscriber) runTCP() error {
ps.tcpNConn.SetReadDeadline(time.Time{})
readerErr := make(chan error)
go func() {
readerErr <- ps.runTCPReader()
}()
writerErr := make(chan error)
writerClose := make(chan struct{})
go func() {
writerErr <- ps.runTCPWriter(writerClose)
}()
select {
case err := <-readerErr:
ps.tcpNConn.Close()
close(writerClose)
<-writerErr
return err
case err := <-writerErr:
ps.tcpNConn.Close()
<-readerErr
return err
case <-ps.ctx.Done():
ps.tcpNConn.Close()
<-readerErr
close(writerClose)
<-writerErr
return fmt.Errorf("terminated")
}
}
func (ps *publisherSubscriber) runTCPReader() error {
buf := make([]byte, 64)
for {
_, err := ps.tcpNConn.Read(buf)
if err != nil {
return err
}
}
}
func (ps *publisherSubscriber) runTCPWriter(writerClose chan struct{}) error {
for {
select {
case msg := <-ps.chWriteMessage:
ps.tcpNConn.SetWriteDeadline(time.Now().Add(ps.pub.conf.Node.conf.WriteTimeout))
err := ps.tcpTConn.WriteMessage(msg)
if err != nil {
return err
}
case <-writerClose:
return fmt.Errorf("terminated")
}
}
}
func (ps *publisherSubscriber) runUDP() error {
curMessageID := uint8(0)
for {
select {
case msg := <-ps.chWriteMessage:
curMessageID++
err := ps.pub.conf.Node.udprosConn.WriteMessage(
ps.pub.id,
curMessageID,
msg,
ps.udpAddr)
if err != nil {
return err
}
case <-ps.ctx.Done():
return fmt.Errorf("terminated")
}
}
}
func (ps *publisherSubscriber) busInfo() []interface{} {
proto := func() string {
if ps.tcpNConn != nil {
return "TCPROS"
}
return "UDPROS"
}()
return []interface{}{
0,
ps.callerID,
"o",
proto,
ps.pub.conf.Node.absoluteTopicName(ps.pub.conf.Topic),
true,
}
}
func (ps *publisherSubscriber) writeMessage(msg interface{}) {
select {
case ps.chWriteMessage <- msg:
case <-ps.ctx.Done():
default: // buffer is full
}
}