-
Notifications
You must be signed in to change notification settings - Fork 0
/
bacpypes_mqtt.py
executable file
·822 lines (603 loc) · 22.5 KB
/
bacpypes_mqtt.py
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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
#!/usr/bin/env python
"""
This module provides a virtual link layer using MQTT.
"""
import ssl
from struct import pack, unpack
from bacpypes.errors import EncodingError, DecodingError
from bacpypes.debugging import bacpypes_debugging, DebugContents, ModuleLogger, btox
from bacpypes.comm import Server, ServiceAccessPoint, ApplicationServiceElement
from bacpypes.core import deferred
from bacpypes.pdu import Address, LocalStation, LocalBroadcast, PCI, PDUData, PDU
import paho.mqtt.client as _paho_mqtt
# some debugging
_debug = 0
_log = ModuleLogger(globals())
# settings
ADDRESS_LENGTH = 3
BROADCAST_TOPIC = "@all"
default_lan_name = "b"
default_broker_host = "test.mosquitto.org"
default_broker_port = 1883
default_broker_keepalive = 60
def addr2topic(addr):
"""Return a decimal encoded string of the local station address. This
assumes that the ADDRESS_LENGTH is 3 octets."""
return str(unpack(">I", b"\0" + addr.addrAddr)[0])
def topic2addr(topic):
"""Convert decimal encoded topic name to a local station address. This
assumes that the ADDRESS_LENGTH is 3 octets."""
return LocalStation(pack(">I", int(topic))[-3:])
# a dictionary of message type values and classes
bvl_pdu_types = {}
def register_bvlpdu_type(klass):
bvl_pdu_types[klass.messageType] = klass
#
# BVLCI
#
@bacpypes_debugging
class BVLCI(PCI, DebugContents):
_debug_contents = ("bvlciFunction",)
result = 0x00
poll = 0x01
online = 0x02
offline = 0x03
lostConnection = 0x04
encapsulatedNPDU = 0x05
joinGroup = 0x06
leaveGroup = 0x07
def __init__(self, *args, **kwargs):
if _debug:
BVLCI._debug("__init__ %r %r", args, kwargs)
super(BVLCI, self).__init__(*args, **kwargs)
self.bvlciFunction = None
def update(self, bvlci):
PCI.update(self, bvlci)
self.bvlciFunction = bvlci.bvlciFunction
def encode(self, pdu):
"""encode the contents of the BVLCI into the PDU."""
if _debug:
BVLCI._debug("encode %s", str(pdu))
# copy the basics
PCI.update(pdu, self)
pdu.put(self.bvlciFunction)
def decode(self, pdu):
"""decode the contents of the PDU into the BVLCI."""
if _debug:
BVLCI._debug("decode %s", str(pdu))
# copy the basics
PCI.update(self, pdu)
self.bvlciFunction = pdu.get()
def bvlci_contents(self, use_dict=None, as_class=dict):
"""Return the contents of an object as a dict."""
if _debug:
BVLCI._debug("bvlci_contents use_dict=%r as_class=%r", use_dict, as_class)
# make/extend the dictionary of content
if use_dict is None:
use_dict = as_class()
# save the mapped value
use_dict.__setitem__("function", self.bvlciFunction)
# return what we built/updated
return use_dict
#
# BVLPDU
#
@bacpypes_debugging
class BVLPDU(BVLCI, PDUData):
def __init__(self, *args, **kwargs):
if _debug:
BVLPDU._debug("__init__ %r %r", args, kwargs)
super(BVLPDU, self).__init__(*args, **kwargs)
def encode(self, pdu):
BVLCI.encode(self, pdu)
pdu.put_data(self.pduData)
def decode(self, pdu):
BVLCI.decode(self, pdu)
self.pduData = pdu.get_data(len(pdu.pduData))
def bvlpdu_contents(self, use_dict=None, as_class=dict):
return PDUData.pdudata_contents(self, use_dict=use_dict, as_class=as_class)
def dict_contents(self, use_dict=None, as_class=dict, key_values=()):
"""Return the contents of an object as a dict."""
if _debug:
BVLPDU._debug(
"dict_contents use_dict=%r as_class=%r key_values=%r",
use_dict,
as_class,
key_values,
)
# make/extend the dictionary of content
if use_dict is None:
use_dict = as_class()
# call the superclasses
self.bvlci_contents(use_dict=use_dict, as_class=as_class)
self.bvlpdu_contents(use_dict=use_dict, as_class=as_class)
# return what we built/updated
return use_dict
def as_bytes(self):
if _debug:
BVLPDU._debug("as_bytes")
bvlpdu = BVLPDU()
self.encode(bvlpdu)
pdu = PDU()
bvlpdu.encode(pdu)
return pdu.pduData
#
# key_value_contents
#
@bacpypes_debugging
def key_value_contents(use_dict=None, as_class=dict, key_values=()):
"""Return the contents of an object as a dict."""
if _debug:
key_value_contents._debug(
"key_value_contents use_dict=%r as_class=%r key_values=%r",
use_dict,
as_class,
key_values,
)
# make/extend the dictionary of content
if use_dict is None:
use_dict = as_class()
# loop through the values and save them
for k, v in key_values:
if v is not None:
if hasattr(v, "dict_contents"):
v = v.dict_contents(as_class=as_class)
use_dict.__setitem__(k, v)
# return what we built/updated
return use_dict
# ------------------------------
#
# Result
#
class Result(BVLPDU):
_debug_contents = ("bvlciResultCode",)
messageType = BVLCI.result
def __init__(self, addr=None, code=None, *args, **kwargs):
super(Result, self).__init__(*args, **kwargs)
self.bvlciFunction = BVLCI.result
self.bvlciAddress = addr
self.bvlciResultCode = code
def encode(self, bvlpdu):
BVLCI.update(bvlpdu, self)
bvlpdu.put_data(self.bvlciAddress.addrAddr)
bvlpdu.put_short(self.bvlciResultCode)
def decode(self, bvlpdu):
BVLCI.update(self, bvlpdu)
self.bvlciAddress = LocalStation(bvlpdu.get_data(ADDRESS_LENGTH))
self.bvlciResultCode = bvlpdu.get_short()
def bvlpdu_contents(self, use_dict=None, as_class=dict):
"""Return the contents of an object as a dict."""
return key_value_contents(
use_dict=use_dict,
as_class=as_class,
key_values=(("function", "Result"), ("result_code", self.bvlciResultCode)),
)
register_bvlpdu_type(Result)
#
# Poll
#
class Poll(BVLPDU):
_debug_contents = ("bvlciAddress",)
messageType = BVLCI.poll
def __init__(self, addr=None, *args, **kwargs):
super(Online, self).__init__(*args, **kwargs)
self.bvlciFunction = BVLCI.poll
self.bvlciAddress = addr
def encode(self, bvlpdu):
BVLCI.update(bvlpdu, self)
bvlpdu.put_data(self.bvlciAddress.addrAddr)
def decode(self, bvlpdu):
BVLCI.update(self, bvlpdu)
self.bvlciAddress = LocalStation(bvlpdu.get_data(ADDRESS_LENGTH))
def bvlpdu_contents(self, use_dict=None, as_class=dict):
"""Return the contents of an object as a dict."""
return key_value_contents(
use_dict=use_dict,
as_class=as_class,
key_values=(("function", "Poll"), ("address", self.bvlciAddress)),
)
register_bvlpdu_type(Poll)
#
# Online
#
class Online(BVLPDU):
_debug_contents = ("bvlciAddress",)
messageType = BVLCI.online
def __init__(self, addr=None, *args, **kwargs):
super(Online, self).__init__(*args, **kwargs)
self.bvlciFunction = BVLCI.online
self.bvlciAddress = addr
def encode(self, bvlpdu):
BVLCI.update(bvlpdu, self)
bvlpdu.put_data(self.bvlciAddress.addrAddr)
def decode(self, bvlpdu):
BVLCI.update(self, bvlpdu)
self.bvlciAddress = LocalStation(bvlpdu.get_data(ADDRESS_LENGTH))
def bvlpdu_contents(self, use_dict=None, as_class=dict):
"""Return the contents of an object as a dict."""
return key_value_contents(
use_dict=use_dict,
as_class=as_class,
key_values=(("function", "Online"), ("address", self.bvlciAddress)),
)
register_bvlpdu_type(Online)
#
# Offline
#
class Offline(BVLPDU):
_debug_contents = ("bvlciAddress",)
messageType = BVLCI.offline
def __init__(self, addr=None, *args, **kwargs):
super(Offline, self).__init__(*args, **kwargs)
self.bvlciFunction = BVLCI.offline
self.bvlciAddress = addr
def encode(self, bvlpdu):
BVLCI.update(bvlpdu, self)
bvlpdu.put_data(self.bvlciAddress.addrAddr)
def decode(self, bvlpdu):
BVLCI.update(self, bvlpdu)
self.bvlciAddress = LocalStation(bvlpdu.get_data(ADDRESS_LENGTH))
def bvlpdu_contents(self, use_dict=None, as_class=dict):
"""Return the contents of an object as a dict."""
return key_value_contents(
use_dict=use_dict,
as_class=as_class,
key_values=(("function", "Offline"), ("address", self.bvlciAddress)),
)
register_bvlpdu_type(Offline)
#
# LostConnection
#
class LostConnection(BVLPDU):
_debug_contents = ("bvlciAddress",)
messageType = BVLCI.lostConnection
def __init__(self, addr=None, *args, **kwargs):
super(LostConnection, self).__init__(*args, **kwargs)
self.bvlciFunction = BVLCI.lostConnection
self.bvlciAddress = addr
def encode(self, bvlpdu):
BVLCI.update(bvlpdu, self)
bvlpdu.put_data(self.bvlciAddress.addrAddr)
def decode(self, bvlpdu):
BVLCI.update(self, bvlpdu)
self.bvlciAddress = LocalStation(bvlpdu.get_data(ADDRESS_LENGTH))
def bvlpdu_contents(self, use_dict=None, as_class=dict):
"""Return the contents of an object as a dict."""
return key_value_contents(
use_dict=use_dict,
as_class=as_class,
key_values=(("function", "LostConnection"), ("address", self.bvlciAddress)),
)
register_bvlpdu_type(LostConnection)
#
# EncapsulatedNPDU
#
class EncapsulatedNPDU(BVLPDU):
_debug_contents = ("bvlciAddress",)
messageType = BVLCI.encapsulatedNPDU
def __init__(self, addr=None, *args, **kwargs):
super(EncapsulatedNPDU, self).__init__(*args, **kwargs)
self.bvlciFunction = BVLCI.encapsulatedNPDU
self.bvlciAddress = addr
def encode(self, bvlpdu):
BVLCI.update(bvlpdu, self)
# encode the address
bvlpdu.put_data(self.bvlciAddress.addrAddr)
# encode the rest of the data
bvlpdu.put_data(self.pduData)
def decode(self, bvlpdu):
BVLCI.update(self, bvlpdu)
# get the address
self.bvlciAddress = LocalStation(bvlpdu.get_data(ADDRESS_LENGTH))
# get the rest of the data
self.pduData = bvlpdu.get_data(len(bvlpdu.pduData))
def bvlpdu_contents(self, use_dict=None, as_class=dict):
"""Return the contents of an object as a dict."""
# make/extend the dictionary of content
if use_dict is None:
use_dict = as_class()
# call the normal procedure
key_value_contents(
use_dict=use_dict,
as_class=as_class,
key_values=(
("function", "encapsulatedNPDU"),
("address", self.bvlciAddress),
),
)
# this message has data
PDUData.dict_contents(self, use_dict=use_dict, as_class=as_class)
# return what we built/updated
return use_dict
register_bvlpdu_type(EncapsulatedNPDU)
#
# JoinGroup
#
class JoinGroup(BVLPDU):
_debug_contents = ("bvlciAddress",)
messageType = BVLCI.joinGroup
def __init__(self, addr=None, *args, **kwargs):
super(JoinGroup, self).__init__(*args, **kwargs)
self.bvlciFunction = BVLCI.joinGroup
self.bvlciAddress = addr
def encode(self, bvlpdu):
BVLCI.update(bvlpdu, self)
bvlpdu.put_data(self.bvlciAddress.addrAddr)
def decode(self, bvlpdu):
BVLCI.update(self, bvlpdu)
self.bvlciAddress = LocalStation(bvlpdu.get_data(ADDRESS_LENGTH))
def bvlpdu_contents(self, use_dict=None, as_class=dict):
"""Return the contents of an object as a dict."""
return key_value_contents(
use_dict=use_dict,
as_class=as_class,
key_values=(("function", "JoinGroup"), ("address", self.bvlciAddress)),
)
register_bvlpdu_type(JoinGroup)
#
# LeaveGroup
#
class LeaveGroup(BVLPDU):
_debug_contents = ("bvlciAddress",)
messageType = BVLCI.leaveGroup
def __init__(self, addr=None, *args, **kwargs):
super(LeaveGroup, self).__init__(*args, **kwargs)
self.bvlciFunction = BVLCI.leaveGroup
self.bvlciAddress = addr
def encode(self, bvlpdu):
BVLCI.update(bvlpdu, self)
bvlpdu.put_data(self.bvlciAddress.addrAddr)
def decode(self, bvlpdu):
BVLCI.update(self, bvlpdu)
self.bvlciAddress = LocalStation(bvlpdu.get_data(ADDRESS_LENGTH))
def bvlpdu_contents(self, use_dict=None, as_class=dict):
"""Return the contents of an object as a dict."""
return key_value_contents(
use_dict=use_dict,
as_class=as_class,
key_values=(("function", "LeaveGroup"), ("address", self.bvlciAddress)),
)
register_bvlpdu_type(LeaveGroup)
#
# MQTTClient
#
# This class is a mapping between the client/server pattern and the
# MQTT API.
#
@bacpypes_debugging
class MQTTClient(ServiceAccessPoint, Server):
def __init__(
self,
lan,
client,
host=default_broker_host,
port=default_broker_port,
username=None,
password=None,
keepalive=default_broker_keepalive,
cafile=None,
sap=None,
sid=None,
):
if _debug:
MQTTClient._debug(
"__init__ %r %r %r %r %r", lan, client, host, port, keepalive
)
MQTTClient._debug(" - username, password: %r, %r", username, password)
MQTTClient._debug(" - cafile: %r", cafile)
ServiceAccessPoint.__init__(self, sap)
Server.__init__(self, sid)
# save the lan and client address
self.lan = lan
self.client = client
# save the connection parameters
self.host = host
self.port = port
self.username = username
self.password = password
self.keepalive = keepalive
self.cafile = cafile
# create a client and set the callbacks
self.mqtt_client = _paho_mqtt.Client()
self.mqtt_client.on_connect = self.on_connect
self.mqtt_client.on_disconnect = self.on_disconnect
self.mqtt_client.on_subscribe = self.on_subscribe
self.mqtt_client.on_message = self.on_message
self.mqtt_client.on_publish = self.on_publish
self.mqtt_client.on_unsubscribe = self.on_unsubscribe
# use TLS
if self.cafile:
self.mqtt_client.tls_set(
ca_certs=self.cafile, cert_reqs=ssl.CERT_REQUIRED, tls_version=None
)
if _debug:
MQTTClient._debug(" - tls set")
# we are not connected
self.mqtt_connected = False
self.local_topic = self.lan + "/" + addr2topic(client)
if _debug:
MQTTClient._debug(" - local topic: %r", self.local_topic)
self.broadcast_topic = self.lan + "/" + BROADCAST_TOPIC
if _debug:
MQTTClient._debug(" - broadcast topic: %r", self.broadcast_topic)
# build a LostConnection last will, encode it
lost_connection = LostConnection(self.client)
# set the last will
response = self.mqtt_client.will_set(
self.broadcast_topic, lost_connection.as_bytes(), 0, False
)
if _debug:
MQTTClient._debug(" - will_set: %r", response)
def on_connect(self, client, userdata, flags, rc):
"""Callback for when the client receives a CONNACK response from the server.
"""
if _debug:
MQTTClient._debug("on_connect %r %r %r %r", client, userdata, flags, rc)
# we are connected
if rc == 0:
if _debug:
MQTTClient._debug(" - connected")
self.mqtt_connected = True
def on_disconnect(self, client, userdata, rc):
"""Callback for when the client is disconnected from the server.
"""
if _debug:
MQTTClient._debug("on_disconnect %r %r %r", client, userdata, rc)
# we are connected
if rc == 0:
if _debug:
MQTTClient._debug(" - normal disconnect")
# we are no longer connected
self.mqtt_connected = False
def on_subscribe(self, client, userdata, mid, granted_qos):
if _debug:
MQTTClient._debug(
"on_subscribe %r %r %r %r", client, userdata, mid, granted_qos
)
def on_message(self, client, userdata, msg):
"""Callback for when a PUBLISH message is received from the server.
"""
if _debug:
MQTTClient._debug("on_message %r, %s", msg.topic, btox(msg.payload, "."))
# get the topic
topic_address = msg.topic.split("/")[-1]
if _debug:
MQTTClient._debug(" - topic_address: %r", topic_address)
# wrap it up and decode it
pdu = PDU(msg.payload)
bvlpdu = BVLPDU()
bvlpdu.decode(pdu)
if _debug:
MQTTClient._debug(" - bvlpdu: %r", bvlpdu)
# decode the next layer
xpdu = bvl_pdu_types[bvlpdu.bvlciFunction]()
xpdu.decode(bvlpdu)
if _debug:
MQTTClient._debug(" - xpdu: %r", xpdu)
if isinstance(xpdu, EncapsulatedNPDU):
# from ourselves?
if xpdu.bvlciAddress == self.client:
if _debug:
MQTTClient._debug(" - from ourselves")
return
# build a PDU with the client address
ypdu = PDU(
xpdu.pduData, source=xpdu.bvlciAddress, user_data=xpdu.pduUserData
)
if topic_address == BROADCAST_TOPIC:
ypdu.destination = LocalBroadcast()
else:
ypdu.destination = self.client
if _debug:
MQTTClient._debug(" - upstream ypdu: %r", ypdu)
deferred(self.response, ypdu)
def on_publish(self, client, userdata, mid):
"""Callback for when the data is published."""
if _debug:
MQTTClient._debug("on_publish ...")
def on_unsubscribe(self, client, userdata, mid):
if _debug:
MQTTClient._debug("on_unsubscribe ...")
def indication(self, pdu):
if _debug:
MQTTClient._debug("indication %r", pdu)
# make sure we're connected
if not self.mqtt_connected:
if _debug:
MQTTClient._debug(" - not connected")
return
# make an encapsulated PDU
xpdu = EncapsulatedNPDU(self.client, pdu, user_data=pdu.pduUserData)
# check for local stations
if pdu.pduDestination.addrType == Address.localStationAddr:
destination_topic = self.lan + "/" + addr2topic(pdu.pduDestination)
elif pdu.pduDestination.addrType == Address.localBroadcastAddr:
destination_topic = self.broadcast_topic
if _debug:
MQTTClient._debug(" - destination_topic: %r", destination_topic)
MQTTClient._debug(" - encapsulated xpdu: %r", xpdu)
# send it to the topic
response = self.mqtt_client.publish(destination_topic, xpdu.as_bytes())
if _debug:
MQTTClient._debug(" - publish: %r", response)
def sap_indication(self, blvpdu):
if _debug:
MQTTClient._debug("sap_indication %r", blvpdu)
def sap_confirmation(self, blvpdu):
if _debug:
MQTTClient._debug("sap_confirmation %r", blvpdu)
#
# MQTTServiceElement
#
@bacpypes_debugging
class MQTTServiceElement(ApplicationServiceElement):
def __init__(self, eid=None):
if _debug:
MQTTServiceElement._debug("__init__ eid=%r", eid)
ApplicationServiceElement.__init__(self, eid)
def startup(self):
if _debug:
MQTTServiceElement._debug("startup")
# service access point has client
sap = self.elementService
# username and password authentication
if sap.username and sap.password:
if _debug:
MQTTServiceElement._debug(
" - username, password: %r, %r", sap.username, sap.password
)
sap.mqtt_client.username_pw_set(
username=sap.username, password=sap.password
)
# queue up a start the connection process
response = sap.mqtt_client.connect(sap.host, sap.port, sap.keepalive)
if _debug:
MQTTServiceElement._debug(" - connect: %r", response)
# subscribe to both topics at the same time
result, mid = sap.mqtt_client.subscribe(
[(sap.local_topic, 1), (sap.broadcast_topic, 1)]
)
if _debug:
MQTTServiceElement._debug(
" - subscribe result, mid: %r, %r", result, mid
)
# build an Online PDU, encode it
online = Online(sap.client)
# we are ready to roll
response = sap.mqtt_client.publish(sap.broadcast_topic, online.as_bytes())
if _debug:
MQTTServiceElement._debug(" - publish online: %r", response)
# start the client loop
response = sap.mqtt_client.loop_start()
if _debug:
MQTTServiceElement._debug(" - loop_start: %r", response)
def shutdown(self):
if _debug:
MQTTServiceElement._debug("shutdown")
# service access point has client
sap = self.elementService
# stop listening
result, mid = sap.mqtt_client.unsubscribe(sap.broadcast_topic)
if _debug:
MQTTServiceElement._debug(
" - broadcast unsubscribe result, mid: %r, %r", result, mid
)
result, mid = sap.mqtt_client.unsubscribe(sap.local_topic)
if _debug:
MQTTServiceElement._debug(
" - local unsubscribe result, mid: %r, %r", result, mid
)
# build an Offline PDU, encode it
offline = Offline(sap.client)
# we are going away
response = sap.mqtt_client.publish(sap.broadcast_topic, offline.as_bytes())
if _debug:
MQTTServiceElement._debug(" - publish offline: %r", response)
# disconnect
response = sap.mqtt_client.disconnect()
if _debug:
MQTTServiceElement._debug(" - disconnect: %r", response)
# stop the client loop
response = sap.mqtt_client.loop_stop()
if _debug:
MQTTServiceElement._debug(" - loop_stop: %r", response)