-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmqttbridge.go
159 lines (138 loc) · 3.22 KB
/
mqttbridge.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
package main
import (
"github.com/sirupsen/logrus"
)
type MQTT interface {
Subscribe(topic string, callback func(topic string, payload []byte)) error
Unsubscribe(topics ...string) error
Publish(topic string, payload interface{}) error
}
type BridgeService struct {
mqtta, mqttb MQTT
devicelinks map[string]links
log *logrus.Logger
}
// The typical use case is to only append or overwrite a callback
type links struct {
// mqtta --> mqttb
fwd []string
// mqttb --> mqtta
rev []string
}
func isIn(arr []string, str string) bool {
for _, s := range arr {
if s == str {
return true
}
}
return false
}
func NewBridgeService(mqtta, mqttb MQTT, log *logrus.Logger) *BridgeService {
b := new(BridgeService)
b.mqtta = mqtta
b.mqttb = mqttb
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 *BridgeService) IsDeviceLinked(deviceid string) bool {
_, ok := b.devicelinks[deviceid]
return ok
}
func (b *BridgeService) 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 *BridgeService) 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 *BridgeService) 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.mqtta.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.mqttb.Publish(tb, payload); err != nil {
b.log.Errorf("Failed to publish to %s: %v", tb, err)
}
}
})
if err != nil {
return err
}
b.devicelinks[deviceid] = ls
return nil
}
func (b *BridgeService) 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.mqttb.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.mqtta.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 *BridgeService) RemoveLinksAll(deviceid string) error {
var err error
if ls, ok := b.devicelinks[deviceid]; ok {
if len(ls.fwd) > 0 {
e := b.mqtta.Unsubscribe(ls.fwd...)
// save and return only first error
if e != nil && err == nil {
err = e
}
}
if len(ls.rev) > 0 {
e := b.mqttb.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
}