-
Notifications
You must be signed in to change notification settings - Fork 1
/
bridge.go
211 lines (184 loc) · 4.73 KB
/
bridge.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
package pubsub
import (
"github.com/sirupsen/logrus"
)
// Bridge holds configuration for a PubSub bridge
type Bridge struct {
pubsuba, pubsubb PubSub
devicelinks map[string]links
log *logrus.Logger
}
// The typical use case is to only append or overwrite a callback
type links struct {
// subsubA --> subsubB
fwd []string
// subsubB --> subsubA
rev []string
}
func isIn(arr []string, str string) bool {
for _, s := range arr {
if s == str {
return true
}
}
return false
}
// NewBridge instantiates a PubSub bridge that allows you to map topics from
// one pubsub interface to another and the reverse.
// The log is used to declare errors when publishing asynchronously.
func NewBridge(pubsuba, pubsubb PubSub, log *logrus.Logger) *Bridge {
b := new(Bridge)
b.pubsuba = pubsuba
b.pubsubb = pubsubb
b.devicelinks = make(map[string]links)
b.log = log
// disable logging
if log == nil {
b.log = logrus.New()
b.log.SetLevel(0)
}
return b
}
func (b *Bridge) IsDeviceLinked(deviceid string) bool {
_, ok := b.devicelinks[deviceid]
return ok
}
func (b *Bridge) IsLinkFwd(deviceid, topica string) bool {
if ls, ok := b.devicelinks[deviceid]; ok {
for _, l := range ls.fwd {
if l == topica {
return true
}
}
}
return false
}
func (b *Bridge) IsLinkRev(deviceid, topicb string) bool {
if ls, ok := b.devicelinks[deviceid]; ok {
for _, l := range ls.rev {
if l == topicb {
return true
}
}
}
return false
}
func (b *Bridge) AddLinkFwd(deviceid, topica string, topicb ...string) error {
ls, ok := b.devicelinks[deviceid]
if !ok {
ls = links{make([]string, 0), make([]string, 0)}
}
// Mark down our link
if !isIn(ls.fwd, topica) {
ls.fwd = append(ls.fwd, topica)
}
// Subscribe
err := b.pubsuba.Subscribe(topica, func(topic string, payload []byte) {
for _, tb := range topicb {
b.log.Debugf("Received on %s and publishing to %s", topic, tb)
if err := b.pubsubb.Publish(tb, payload); err != nil {
b.log.Errorf("Failed to publish to %s: %v", tb, err)
}
}
})
if err != nil {
return err
}
// Commit changes
b.devicelinks[deviceid] = ls
return nil
}
func (b *Bridge) AddFwd(deviceid, topica string, callback func(pubsubb PubSub, topica string, payload []byte) error) error {
ls, ok := b.devicelinks[deviceid]
if !ok {
ls = links{make([]string, 0), make([]string, 0)}
}
// Mark down our link
if !isIn(ls.fwd, topica) {
ls.fwd = append(ls.fwd, topica)
}
err := b.pubsuba.Subscribe(topica, func(topic string, payload []byte) {
logitem := b.log.WithField("deviceid", deviceid).WithField("topica", topic)
logitem.Debugf("Running custom callback on received payload")
if err := callback(b.pubsubb, topic, payload); err != nil {
logitem.Errorf("Callback reported %v", err)
}
})
if err != nil {
return err
}
// Commit changes
b.devicelinks[deviceid] = ls
return nil
}
func (b *Bridge) AddLinkRev(deviceid, topicb string, topica ...string) error {
ls, ok := b.devicelinks[deviceid]
if !ok {
ls = links{make([]string, 0), make([]string, 0)}
}
// Mark down our link
if !isIn(ls.rev, topicb) {
ls.rev = append(ls.rev, topicb)
}
// Subscribe
err := b.pubsubb.Subscribe(topicb, func(topic string, payload []byte) {
for _, ta := range topica {
b.log.Debugf("Received on %s and publishing to %v", topic, ta)
if err := b.pubsuba.Publish(ta, payload); err != nil {
b.log.Errorf("Failed to publish to %s: %v", ta, err)
}
}
})
if err != nil {
return err
}
// Commit changes
b.devicelinks[deviceid] = ls
return nil
}
func (b *Bridge) AddRev(deviceid, topicb string, callback func(pubsuba PubSub, topicb string, payload []byte) error) error {
ls, ok := b.devicelinks[deviceid]
if !ok {
ls = links{make([]string, 0), make([]string, 0)}
}
// Mark down our link
if !isIn(ls.rev, topicb) {
ls.rev = append(ls.rev, topicb)
}
err := b.pubsubb.Subscribe(topicb, func(topic string, payload []byte) {
logitem := b.log.WithField("deviceid", deviceid).WithField("topicb", topic)
logitem.Debugf("Running custom callback on received payload")
if err := callback(b.pubsubb, topic, payload); err != nil {
logitem.Errorf("Callback reported %v", err)
}
})
if err != nil {
return err
}
// Commit changes
b.devicelinks[deviceid] = ls
return nil
}
func (b *Bridge) RemoveLinksAll(deviceid string) error {
var err error
if ls, ok := b.devicelinks[deviceid]; ok {
if len(ls.fwd) > 0 {
e := b.pubsuba.Unsubscribe(ls.fwd...)
// save and return only first error
if e != nil && err == nil {
err = e
}
}
if len(ls.rev) > 0 {
e := b.pubsubb.Unsubscribe(ls.rev...)
// save and return only first error
if e != nil && err == nil {
err = e
}
}
ls.fwd = nil
ls.rev = nil
delete(b.devicelinks, deviceid)
}
return err
}