-
Notifications
You must be signed in to change notification settings - Fork 37
/
message_handler.go
183 lines (152 loc) · 3.96 KB
/
message_handler.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
package main
import (
"context"
"fmt"
"log"
"reflect"
"sync"
"time"
"github.com/bluenviron/gomavlib/v3"
"github.com/bluenviron/gomavlib/v3/pkg/dialects/common"
"github.com/bluenviron/gomavlib/v3/pkg/message"
)
const (
nodeInactiveAfter = 30 * time.Second
)
var zero reflect.Value
func getTarget(msg message.Message) (byte, byte, bool) {
rv := reflect.ValueOf(msg).Elem()
ts := rv.FieldByName("TargetSystem")
tc := rv.FieldByName("TargetComponent")
if ts != zero && tc != zero {
return byte(ts.Uint()), byte(tc.Uint()), true
}
return 0, 0, false
}
type remoteNodeKey struct {
channel *gomavlib.Channel
systemID byte
componentID byte
}
func (i remoteNodeKey) String() string {
return fmt.Sprintf("chan=%s sid=%d cid=%d", i.channel, i.systemID, i.componentID)
}
type messageHandler struct {
ctx context.Context
wg *sync.WaitGroup
streamreqDisable bool
node *gomavlib.Node
remoteNodeMutex sync.Mutex
remoteNodes map[remoteNodeKey]time.Time
}
func newMessageHandler(
ctx context.Context,
wg *sync.WaitGroup,
streamreqDisable bool,
node *gomavlib.Node,
) (*messageHandler, error) {
mh := &messageHandler{
ctx: ctx,
wg: wg,
streamreqDisable: streamreqDisable,
node: node,
remoteNodes: make(map[remoteNodeKey]time.Time),
}
wg.Add(1)
go mh.run()
return mh, nil
}
func (mh *messageHandler) run() {
defer mh.wg.Done()
// delete remote nodes after a period of inactivity
for {
select {
case <-time.After(10 * time.Second):
func() {
now := time.Now()
mh.remoteNodeMutex.Lock()
defer mh.remoteNodeMutex.Unlock()
for rnode, t := range mh.remoteNodes {
if now.Sub(t) >= nodeInactiveAfter {
log.Printf("node disappeared: %s", rnode)
delete(mh.remoteNodes, rnode)
}
}
}()
case <-mh.ctx.Done():
return
}
}
}
func (mh *messageHandler) findNodeBySystemID(systemID byte) *remoteNodeKey {
for key := range mh.remoteNodes {
if key.systemID == systemID {
return &key
}
}
return nil
}
func (mh *messageHandler) findNodeBySystemAndComponentID(systemID byte, componentID byte) *remoteNodeKey {
for key := range mh.remoteNodes {
if key.systemID == systemID && key.componentID == componentID {
return &key
}
}
return nil
}
func (mh *messageHandler) onEventFrame(evt *gomavlib.EventFrame) {
key := remoteNodeKey{
channel: evt.Channel,
systemID: evt.SystemID(),
componentID: evt.ComponentID(),
}
func() {
mh.remoteNodeMutex.Lock()
defer mh.remoteNodeMutex.Unlock()
if _, ok := mh.remoteNodes[key]; !ok {
log.Printf("node appeared: %s", key)
}
mh.remoteNodes[key] = time.Now()
}()
// stop stream request messages
if !mh.streamreqDisable {
if _, ok := evt.Message().(*common.MessageRequestDataStream); ok {
return
}
}
// if message has a target, route only to it
systemID, componentID, hasTarget := getTarget(evt.Message())
if hasTarget && systemID > 0 {
var key *remoteNodeKey
if componentID == 0 {
key = mh.findNodeBySystemID(systemID)
} else {
key = mh.findNodeBySystemAndComponentID(systemID, componentID)
}
if key != nil {
if key.channel == evt.Channel {
log.Printf("Warning: channel %s attempted to send message to itself, discarding", key.channel)
} else {
mh.node.WriteFrameTo(key.channel, evt.Frame) //nolint:errcheck
return
}
} else {
log.Printf(
"Warning: received message addressed to unexistent node with systemID=%d and componentID=%d",
systemID, componentID)
}
}
// otherwise, route message to every channel
mh.node.WriteFrameExcept(evt.Channel, evt.Frame) //nolint:errcheck
}
func (mh *messageHandler) onEventChannelClose(evt *gomavlib.EventChannelClose) {
mh.remoteNodeMutex.Lock()
defer mh.remoteNodeMutex.Unlock()
// delete remote nodes associated to channel
for key := range mh.remoteNodes {
if key.channel == evt.Channel {
delete(mh.remoteNodes, key)
log.Printf("node disappeared: %s", key)
}
}
}