-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathxapman.py
2078 lines (1865 loc) · 94.8 KB
/
xapman.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
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import XAPX00
from copy import deepcopy
import mqtt
import json
import inspect
import os
MQTT_HOST = os.environ['MQTT_HOST']
MQTT_PORT = os.environ['MQTT_PORT']
MQTT_ROOT = os.environ['MQTT_ROOT']
SERIAL_PORT = os.environ['SERIAL_PORT']
BAUD_RATE = os.environ['BAUD_RATE']
RAMP_RATE = os.environ['RAMP_RATE']
channel_data = {"XAP800": {1: {"ig": "M", "og": "O", "itype": "Mic", "otype": "Output"},
2: {"ig": "M", "og": "O", "itype": "Mic", "otype": "Output"},
3: {"ig": "M", "og": "O", "itype": "Mic", "otype": "Output"},
4: {"ig": "M", "og": "O", "itype": "Mic", "otype": "Output"},
5: {"ig": "M", "og": "O", "itype": "Mic", "otype": "Output"},
6: {"ig": "M", "og": "O", "itype": "Mic", "otype": "Output"},
7: {"ig": "M", "og": "O", "itype": "Mic", "otype": "Output"},
8: {"ig": "M", "og": "O", "itype": "Mic", "otype": "Output"},
9: {"ig": "I", "og": "O", "itype": "Line", "otype": "Output"},
10: {"ig": "I", "og": "O", "itype": "Line", "otype": "Output"},
11: {"ig": "I", "og": "O", "itype": "Line", "otype": "Output"},
12: {"ig": "I", "og": "O", "itype": "Line", "otype": "Output"},
"A": {"ig": "P", "og": "P", "itype": "Processing", "otype": "Processing"},
"B": {"ig": "P", "og": "P", "itype": "Processing", "otype": "Processing"},
"C": {"ig": "P", "og": "P", "itype": "Processing", "otype": "Processing"},
"D": {"ig": "P", "og": "P", "itype": "Processing", "otype": "Processing"},
"E": {"ig": "P", "og": "P", "itype": "Processing", "otype": "Processing"},
"F": {"ig": "P", "og": "P", "itype": "Processing", "otype": "Processing"},
"G": {"ig": "P", "og": "P", "itype": "Processing", "otype": "Processing"},
"H": {"ig": "P", "og": "P", "itype": "Processing", "otype": "Processing"},
"O": {"ig": "E", "og": "E", "itype": "Expansion", "otype": "Expansion"},
"P": {"ig": "E", "og": "E", "itype": "Expansion", "otype": "Expansion"},
"Q": {"ig": "E", "og": "E", "itype": "Expansion", "otype": "Expansion"},
"R": {"ig": "E", "og": "E", "itype": "Expansion", "otype": "Expansion"},
"S": {"ig": "E", "og": "E", "itype": "Expansion", "otype": "Expansion"},
"T": {"ig": "E", "og": "E", "itype": "Expansion", "otype": "Expansion"},
"U": {"ig": "E", "og": "E", "itype": "Expansion", "otype": "Expansion"},
"V": {"ig": "E", "og": "E", "itype": "Expansion", "otype": "Expansion"},
"W": {"ig": "E", "og": "E", "itype": "Expansion", "otype": "Expansion"},
"X": {"ig": "E", "og": "E", "itype": "Expansion", "otype": "Expansion"},
"Y": {"ig": "E", "og": "E", "itype": "Expansion", "otype": "Expansion"},
"Z": {"ig": "E", "og": "E", "itype": "Expansion", "otype": "Expansion"}
},
"XAP400": {1: {"ig": "M", "og": "O", "itype": "Mic", "otype": "Output"},
2: {"ig": "M", "og": "O", "itype": "Mic", "otype": "Output"},
3: {"ig": "M", "og": "O", "itype": "Mic", "otype": "Output"},
4: {"ig": "M", "og": "O", "itype": "Mic", "otype": "Output"},
5: {"ig": "I", "og": "O", "itype": "Line", "otype": "Output"},
6: {"ig": "I", "og": "O", "itype": "Line", "otype": "Output"},
7: {"ig": "I", "og": "O", "itype": "Line", "otype": "Output"},
8: {"ig": "I", "og": "O", "itype": "Line", "otype": "Output"},
"A": {"ig": "P", "og": "P", "itype": "Processing", "otype": "Processing"},
"B": {"ig": "P", "og": "P", "itype": "Processing", "otype": "Processing"},
"C": {"ig": "P", "og": "P", "itype": "Processing", "otype": "Processing"},
"D": {"ig": "P", "og": "P", "itype": "Processing", "otype": "Processing"},
"O": {"ig": "E", "og": "E", "itype": "Expansion", "otype": "Expansion"},
"P": {"ig": "E", "og": "E", "itype": "Expansion", "otype": "Expansion"},
"Q": {"ig": "E", "og": "E", "itype": "Expansion", "otype": "Expansion"},
"R": {"ig": "E", "og": "E", "itype": "Expansion", "otype": "Expansion"},
"S": {"ig": "E", "og": "E", "itype": "Expansion", "otype": "Expansion"},
"T": {"ig": "E", "og": "E", "itype": "Expansion", "otype": "Expansion"},
"U": {"ig": "E", "og": "E", "itype": "Expansion", "otype": "Expansion"},
"V": {"ig": "E", "og": "E", "itype": "Expansion", "otype": "Expansion"},
"W": {"ig": "E", "og": "E", "itype": "Expansion", "otype": "Expansion"},
"X": {"ig": "E", "og": "E", "itype": "Expansion", "otype": "Expansion"},
"Y": {"ig": "E", "og": "E", "itype": "Expansion", "otype": "Expansion"},
"Z": {"ig": "E", "og": "E", "itype": "Expansion", "otype": "Expansion"}
}}
gating_groups = {1: None,
2: None,
3: None,
4: None,
"A": None,
"B": None,
"C": None,
"D": None}
local_gating_groups = [1, 2, 3, 4]
filter_data = {"Mic": {1: None,
2: None,
3: None,
4: None},
"Processing": {1: None,
2: None,
3: None,
4: None,
5: None,
6: None,
7: None,
8: None,
9: None,
10: None,
11: None,
12: None,
13: None,
14: None,
15: None},
"Line": None,
"Expansion": None
}
filter_types = {None: "Not Configured",
1: "All Pass",
2: "Low Pass",
3: "High Pass",
4: "Low Shelving",
5: "High Shelving",
6: "Parametric EQ",
7: "CD Horn",
8: "Bessel Crossover",
9: "Butterworth Crossover",
10: "Linkwitz-Riley Crossover",
11: "Notch"}
matrix_y = {"XAP800": {1: None,
2: None,
3: None,
4: None,
5: None,
6: None,
7: None,
8: None,
9: None,
10: None,
11: None,
12: None,
"O": None,
"P": None,
"Q": None,
"R": None,
"S": None,
"T": None,
"U": None,
"V": None,
"W": None,
"X": None,
"Y": None,
"Z": None,
"A": None,
"B": None,
"C": None,
"D": None,
"E": None,
"F": None,
"G": None,
"H": None},
"XAP400": {1: None,
2: None,
3: None,
4: None,
5: None,
6: None,
7: None,
8: None,
"O": None,
"P": None,
"Q": None,
"R": None,
"S": None,
"T": None,
"U": None,
"V": None,
"W": None,
"X": None,
"Y": None,
"Z": None,
"A": None,
"B": None,
"C": None,
"D": None}}
matrix = {"XAP800": {1: deepcopy(matrix_y['XAP800']),
2: deepcopy(matrix_y['XAP800']),
3: deepcopy(matrix_y['XAP800']),
4: deepcopy(matrix_y['XAP800']),
5: deepcopy(matrix_y['XAP800']),
6: deepcopy(matrix_y['XAP800']),
7: deepcopy(matrix_y['XAP800']),
8: deepcopy(matrix_y['XAP800']),
9: deepcopy(matrix_y['XAP800']),
10: deepcopy(matrix_y['XAP800']),
11: deepcopy(matrix_y['XAP800']),
12: deepcopy(matrix_y['XAP800']),
"O": deepcopy(matrix_y['XAP800']),
"P": deepcopy(matrix_y['XAP800']),
"Q": deepcopy(matrix_y['XAP800']),
"R": deepcopy(matrix_y['XAP800']),
"S": deepcopy(matrix_y['XAP800']),
"T": deepcopy(matrix_y['XAP800']),
"U": deepcopy(matrix_y['XAP800']),
"V": deepcopy(matrix_y['XAP800']),
"W": deepcopy(matrix_y['XAP800']),
"X": deepcopy(matrix_y['XAP800']),
"Y": deepcopy(matrix_y['XAP800']),
"Z": deepcopy(matrix_y['XAP800']),
"A": deepcopy(matrix_y['XAP800']),
"B": deepcopy(matrix_y['XAP800']),
"C": deepcopy(matrix_y['XAP800']),
"D": deepcopy(matrix_y['XAP800']),
"E": deepcopy(matrix_y['XAP800']),
"F": deepcopy(matrix_y['XAP800']),
"G": deepcopy(matrix_y['XAP800']),
"H": deepcopy(matrix_y['XAP800'])},
"XAP400": {1: deepcopy(matrix_y['XAP400']),
2: deepcopy(matrix_y['XAP400']),
3: deepcopy(matrix_y['XAP400']),
4: deepcopy(matrix_y['XAP400']),
5: deepcopy(matrix_y['XAP400']),
6: deepcopy(matrix_y['XAP400']),
7: deepcopy(matrix_y['XAP400']),
8: deepcopy(matrix_y['XAP400']),
"O": deepcopy(matrix_y['XAP400']),
"P": deepcopy(matrix_y['XAP400']),
"Q": deepcopy(matrix_y['XAP400']),
"R": deepcopy(matrix_y['XAP400']),
"S": deepcopy(matrix_y['XAP400']),
"T": deepcopy(matrix_y['XAP400']),
"U": deepcopy(matrix_y['XAP400']),
"V": deepcopy(matrix_y['XAP400']),
"W": deepcopy(matrix_y['XAP400']),
"X": deepcopy(matrix_y['XAP400']),
"Y": deepcopy(matrix_y['XAP400']),
"Z": deepcopy(matrix_y['XAP400']),
"A": deepcopy(matrix_y['XAP400']),
"B": deepcopy(matrix_y['XAP400']),
"C": deepcopy(matrix_y['XAP400']),
"D": deepcopy(matrix_y['XAP400'])}}
class connect(object):
"""Xap Serial Connection Wrapper
"""
def __repr__(self):
return "XapConnection: " + self.serial_path
def __init__(self, serial_path=SERIAL_PORT,
baudrate=BAUD_RATE,
mqtt_root="Home/Audio/",
device_type="XAP800",
ramp_rate=RAMP_RATE,
init=True):
self.mqtt_root = mqtt_root
self.baudrate = baudrate
self.ramp_rate = ramp_rate
self.serial_path = serial_path
self.mqttRestrictedAttributes = ["mqtt_root",
"comms",
"mqtt_string",
"gating_groups",
"mqttRestrictedFunctions",
"mqttRestrictedAttributes"
"matrix",
"input_channels",
"output_channels"]
self.mqttRestrictedFunctions = ["mqttSubscribe",
"mqttRunFunction",
"mqttSubscribeFunctions",
"calcMqttString",
"scanDevices"]
self.mqtt = mqtt.MQTT()
self.mqtt.subscriptions = []
self.initialize = init # Do not scan devices for data
self.units = {}
print("Connecting to MQTT Server")
self.mqtt.conn()
self.mqtt.loop_start()
print("Connecting...")
self.comms = XAPX00.XAPX00(comPort=serial_path, baudRate=baudrate, XAPType=device_type, object=self)
self.comms.convertDb = 0
self.comms.connect()
self.scanDevices()
print("Scanning Expansion Bus and allocating channels...")
self.expansion_bus = ExpansionBusManager(self)
if init:
print(" ExBus Status: " + self.expansion_bus.statusReport())
def scanDevices(self):
"""Scan for XAP units"""
self.units = {}
print("Scanning for devices...")
delay = self.comms._maxrespdelay
self.comms._maxrespdelay = 0.1 # reduce timeout delay when searching for non-existant devices
# self.comms.available_units = [{"device_id": 0, "device_type": "XAP800"}] # Debug line to limit scanning time
for device in self.comms.available_units:
u = device['device_id']
self.comms.write_to_object = False
uid = self.comms.getUniqueId(u)
if uid != None:
unit = {'id': str(u), 'UID':uid, 'version':self.comms.getVersion(u), "type": device['device_type']}
print("Found " + unit['type'] + " at ID " + unit['id'] + " - " + unit['UID'] + " Ver. " + unit['version'] )
self.comms.write_to_object = True
self.units[u] = XapUnit(self, XAP_unit=u, unitType=device['device_type'])
self.units[u].initialize()
if self.initialize:
self.comms.write_to_object = True
print("Scanned " + str(len(self.units)) + " units.")
self.comms._maxrespdelay = delay
return self.units
def addChannelRoute(self, source, dest):
"""Link Channels - Calculates Expansion Bus if needed
Tries to use Expansion Bus Efficiently
Logic:
Unit 0 Channel 1 to Unit 1 Channel 2
If source channel is connected to ExBus alone, use that existing channel
If destination channel is connected to only 1 output, use that existing channel
Otherwise procure a new channel if available
"""
if source.unit.device_id == dest.unit.device_id:
source.unit.matrix[source.channel][dest.channel].linkChannels()
return "Linked Input: " + str(source.channel) + " to Output: " + str(dest.channel)
else:
usable_bus = None
for exbus in source.getExBus():
if self.expansion_bus.getChannelUsage(exbus)['input'] == 1:
usable_bus = exbus
break
if usable_bus is None:
for exbus in dest.getExBus():
if self.expansion_bus.getChannelUsage(exbus)['output'] == 1:
usable_bus = exbus
break
if usable_bus is None:
usable_bus = self.expansion_bus.requestExpChannel() # Get a ExBus
if usable_bus is False:
raise NoExpansionBusAvailable("There is no Expansion Bus Channels Available")
source.unit.matrix[source.channel][usable_bus].linkChannels()
dest.unit.matrix[usable_bus][dest.channel].linkChannels()
self.expansion_bus.getChannelUsage(usable_bus)
return "Linked Input: " + str(source.channel) + " to Output: " + str(dest.channel) + " Via ExBus: " + str(usable_bus)
def delChannelRoute(self, source, dest):
"""unLink Channels - Releases Expansion Bus if possible"""
if source.unit.device_id == dest.unit.device_id:
source.unit.matrix[source.channel][dest.channel].unlinkChannels()
return "UnLinked Input: " + str(source.channel) + " to Output: " + str(dest.channel)
else:
released = ""
exBus = source.getExBus()
if self.expansion_bus.getChannelUsage(exBus)['output'] <= 1:
source.unit.matrix[source.channel][exBus].unlinkChannels()
released = " Released ExBus: " + str(exBus)
dest.unit.matrix[exBus][dest.channel].unlinkChannels()
self.expansion_bus.getChannelUsage(exBus)
return "UnLinked Input: " + str(source.channel) + " to Output: " + str(dest.channel) + released
class XapUnit(object):
"""Xap Unit Wrapper
The following are not implemented;
Presets, Macros, Serial Strings, Preset/Macro Locking, Master Mode, gateing report
"""
def __repr__(self):
return "Unit: " + self.device_type + " (ID " + str(self.device_id) + ")"
def __init__(self, xap_connection, XAP_unit=0, unitType="XAP800"):
self.mqttRestrictedAttributes = ["connection",
"comms",
"mqtt_string",
"gating_groups",
"mqttRestrictedFunctions",
"mqttRestrictedAttributes"
"matrix",
"input_channels",
"output_channels"]
self.mqttRestrictedFunctions = ["mqttSubscribe",
"mqttRunFunction",
"mqttSubscribeFunctions",
"calcMqttString",
"initialize",
"scanMatrix",
"scanOutputChannels",
"scanInputChannels"]
self.connection = xap_connection
self.comms = xap_connection.comms
self.device_id = XAP_unit
self.mqtt_string = None
self.label = None
self.getLabel()
self.calcMqttString()
self.device_type = unitType
self.serial_number = None
self.FW_version = None
self.DSP_version = None
self.master_mode = None
self.master_mode_string = None
self.modem_mode = None
self.modem_pass = None
self.modem_init_string = None
self.baudrate = None
self.flowcontrol = None
self.program_strings = None
self.safety_mute = None
self.panel_timeout = None
self.panel_lockout = None
self.panel_passcode = None
self.output_channels = None
self.input_channels = None
self.processing_channels = None
self.expansion_busses = None
self.matrix = None
self.gating_groups = deepcopy(gating_groups)
for group, data in self.gating_groups.items():
self.gating_groups[group] = GatingGroup(group, self.connection, self)
self.mqttSubscribeFunctions()
self.device_id = self.device_id # This will publish MQTT values that were missed
def __setattr__(self, name, value):
super().__setattr__(name, value)
try:
if self.connection.mqtt:
if name not in self.mqttRestrictedAttributes and value != None:
self.connection.mqtt.publish(self.mqtt_string + name, json.dumps(value))
except:
noop = 1
def mqttSubscribeFunctions(self):
if self.connection.mqtt:
for item in self.__dir__():
if item[0] != "_" and item not in self.mqttRestrictedFunctions and callable(getattr(self, item)):
self.connection.mqtt.subscriptions.append(self.mqtt_string + item)
self.connection.mqtt.subscribe(self.mqtt_string + item)
self.connection.mqtt.message_callback_add(self.mqtt_string + item, self.mqttRunFunction)
def mqttRunFunction(self, mosq, obj, msg):
if msg.topic.split()[-1] not in self.mqttRestrictedFunctions:
try:
func = getattr(self, msg.topic.split("/")[-1])
try:
args = inspect.signature(func).parameters.items()
maxargs = len(args)
minargs = 0
for k, v in args:
if v.default is inspect.Parameter.empty:
minargs += 1
except TypeError:
return
if maxargs is 0:
self.comms.mqtt_command_queue.append({'cmd': func, 'args': []})
else:
payload = json.loads(msg.payload)
if isinstance(payload, list):
if maxargs >= len(payload) >= minargs:
self.comms.mqtt_command_queue.append({'cmd': func, 'args': payload})
else:
print("BadPayloadLength Topic: " + msg.topic + " Payload:" + str(msg.payload) +
'MaxArgs:' + str(maxargs) + ' MinArgs:' + str(minargs))
else:
print("BadPayload: " + msg.topic + " " + str(msg.qos) + " " + str(msg.payload))
except:
print("Command Failed - Unknown Reason Topic:" + str(msg.topic) + " Payload:" + str(msg.payload))
print("Data: " + msg.topic + " " + str(msg.qos) + " " + str(msg.payload))
def calcMqttString(self):
self.mqtt_string = (self.connection.mqtt_root + (self.label + "/") if self.label != "" else (self.device_type + "(" + str(self.device_id) + ")/"))
def initialize(self):
if self.connection.initialize is True:
self.refreshData()
self.scanOutputChannels()
self.scanInputChannels()
self.scanMatrix()
print(" Scanning Output Channels...")
for id, channel in self.output_channels.items():
channel.initialize()
print(" Scanning Input Channels...")
for id, channel in self.input_channels.items():
channel.initialize()
print(" Scanning Matrix...")
for y, row in self.matrix.items():
for x, matrix_item in row.items():
if matrix_item:
matrix_item.initialize()
print(" Scanning Gating Groups...")
for group, data in self.gating_groups.items():
self.gating_groups[group].initialize()
def refreshData(self):
"""Fetch all data XAP Unit"""
self.getLabel()
self.getID()
self.getFW()
self.getDSP()
self.getSerialNumber()
self.getModemMode()
self.getModemInit()
self.getModemPass()
self.getSafetyMute()
self.getPanelTimeout()
self.getPanelLock()
return True
def clearMatrix(self):
for inChannel, row in self.matrix.items():
for outChannel, object in row.items():
if (channel_data[self.device_type][outChannel]['otype'] == "Expansion" or channel_data[self.device_type][outChannel]['otype'] == "Processing") and inChannel == outChannel:
continue
else:
if object.state != 0:
object.unlinkChannels()
return
def scanMatrix(self):
self.matrix = deepcopy(matrix[self.device_type])
for inChannel, row in self.matrix.items():
for outChannel, object in row.items():
if inChannel == outChannel and channel_data[self.device_type][outChannel]['otype'] != "Output":
continue
else:
self.matrix[inChannel][outChannel] = MatrixLink(self.connection, self, self.input_channels[inChannel],
self.output_channels[outChannel])
return
def scanOutputChannels(self):
"""Fetch all output channels from Unit"""
self.output_channels = {}
for channel, data in channel_data[self.device_type].items():
self.output_channels[channel] = OutputChannel(self, channel=channel)
return
def scanInputChannels(self):
"""Fetch all output channels from Unit"""
self.input_channels = {}
for channel, data in channel_data[self.device_type].items():
self.input_channels[channel] = InputChannel(self, channel=channel)
return
def getID(self):
"""Fetch ID from XAP Unit"""
uid = self.comms.getDeviceID(unitCode=self.device_id)
return uid
def getFW(self):
"""Fetch FW Version from XAP Unit"""
FW = self.comms.getVersion(unitCode=self.device_id)
return FW
def getDSP(self):
"""Fetch DSP Version from XAP Unit"""
DSP = self.comms.getDSPVersion(unitCode=self.device_id)
return DSP
def getGateStatus(self):
"""Fetch DSP Version from XAP Unit"""
gates = self.comms.getGate(unitCode=self.device_id)
return gates
def setGateReport(self, toggle):
"""Fetch Label from XAP Unit"""
report = self.comms.setGateReport(toggle, unitCode=self.device_id)
return report
def getSerialNumber(self):
"""Fetch Unique ID from XAP Unit"""
serial = self.comms.getUniqueId(unitCode=self.device_id)
return serial
def getLabel(self):
"""Fetch Label from XAP Unit"""
label = self.comms.getLabel(0, "U", unitCode=self.device_id)
self.label = label
self.calcMqttString()
return label
def setLabel(self, label):
"""Fetch Label from XAP Unit"""
label = self.comms.setLabel(0, "U", label, unitCode=self.device_id)
self.label = label
self.calcMqttString()
return label
def getModemMode(self):
"""Fetch Modem Mode from XAP Unit"""
mode = self.comms.getModemMode(unitCode=self.device_id)
return mode
def setModemMode(self, isEnabled):
"""Set Modem Mode to XAP Unit"""
mode = self.comms.setModemMode(isEnabled, unitCode=self.device_id)
return mode
def getModemInit(self):
"""Fetch Modem Init String from XAP Unit"""
string = self.comms.getModemInitString(unitCode=self.device_id)
return string
def setModemInit(self, string):
"""Set Modem Init String to XAP Unit"""
string = self.comms.setModemInitString(string, unitCode=self.device_id)
return string
def getModemPass(self):
"""Fetch Modem Init String from XAP Unit"""
string = self.comms.getModemModePassword(unitCode=self.device_id)
return string
def setModemPass(self, string):
"""Set Modem Init String to XAP Unit"""
string = self.comms.setModemModePassword(string, unitCode=self.device_id)
return string
def getSafetyMute(self):
"""Fetch safety mute status from XAP Unit"""
status = self.comms.getSafetyMute(unitCode=self.device_id)
return status
def setSafetyMute(self, isEnabled):
"""Set safety mute status to XAP Unit"""
status = self.comms.setSafetyMute(isEnabled, unitCode=self.device_id)
return status
def getPanelTimeout(self):
"""Fetch panel timout in min from XAP Unit"""
minutes = self.comms.getScreenTimeout(unitCode=self.device_id)
return minutes
def setPanelTimeout(self, minutes):
"""Set panel timout in min to XAP Unit"""
minutes = self.comms.setScreenTimeout(minutes, unitCode=self.device_id)
return minutes
def getPanelLock(self):
"""Fetch panel lock from XAP Unit"""
status = self.comms.getFrontPanelLock(unitCode=self.device_id)
return status
def setPanelLock(self, isEnabled):
"""Set panel lock to XAP Unit"""
status = self.comms.setFrontPanelLock(isEnabled, unitCode=self.device_id)
return status
def runPreset(self, preset):
"""Execute Preset number"""
status = self.comms.setPreset(preset, unitCode=self.device_id)
return status
class OutputChannel(object):
"""XAP Output Channel Wrapper"""
def __repr__(self):
return "Output: " + str(self.unit.device_id) + ":" + str(self.channel) + " | " + self.label
def __init__(self, unit, channel):
self.mqttRestrictedAttributes = ["connection",
"comms",
"mqtt_string",
"unit",
"mqttRestrictedFunctions",
"mqttRestrictedAttributes"]
self.mqttRestrictedFunctions = ["mqttSubscribe",
"mqttRunFunction",
"mqttSubscribeFunctions",
"calcMqttString",
"initialize"]
self.mqtt_string = None
self.unit = unit
self.connection = unit.connection
self.comms = unit.comms
self.channel = channel
self.group = channel_data[unit.device_type][channel]['og']
self.label = None
self.getLabel()
self.calcMqttString()
self.type = channel_data[unit.device_type][channel]['otype']
self.ramp_rate = self.connection.ramp_rate
self.gain = None
self.gain_string = None
self.gain_min = None
self.gain_min_string = None
self.gain_max = None
self.gain_max_string = None
self.number_of_mic_attenuation = None#
self.mute = None
self.level = None # Not yet implemented
self.level_metering_point = None # Not yet implemented
self.exBus = None #
self.constant_gain = None # Also known as Number of Mics (NOM)
self.channel = self.channel # This will publish MQTT values that were missed
self.group = self.group # This will publish MQTT values that were missed
self.mqttSubscribeFunctions()
def __setattr__(self, name, value):
super().__setattr__(name, value)
try:
if self.connection.mqtt:
if name not in self.mqttRestrictedAttributes and value != None:
self.connection.mqtt.publish(self.mqtt_string + name, json.dumps(value))
except:
noop = 1
def mqttRunFunction(self, mosq, obj, msg):
if msg.topic.split()[-1] not in self.mqttRestrictedFunctions:
try:
func = getattr(self, msg.topic.split("/")[-1])
try:
args = inspect.signature(func).parameters.items()
maxargs = len(args)
minargs = 0
for k, v in args:
if v.default is inspect.Parameter.empty:
minargs += 1
except TypeError:
return
if maxargs is 0:
self.comms.mqtt_command_queue.append({'cmd': func, 'args': []})
else:
payload = json.loads(msg.payload)
if isinstance(payload, list):
if maxargs >= len(payload) >= minargs:
self.comms.mqtt_command_queue.append({'cmd': func, 'args': payload})
else:
print("BadPayloadLength Topic: " + msg.topic + " Payload:" + str(msg.payload) +
'MaxArgs:' + str(maxargs) + ' MinArgs:' + str(minargs))
else:
print("BadPayload: " + msg.topic + " " + str(msg.qos) + " " + str(msg.payload))
except:
print("Command Failed - Unknown Reason Topic:" + str(msg.topic) + " Payload:" + str(msg.payload))
print("Data: " + msg.topic + " " + str(msg.qos) + " " + str(msg.payload))
def mqttSubscribeFunctions(self):
if self.connection.mqtt:
for item in self.__dir__():
if item[0] != "_" and item not in self.mqttRestrictedFunctions and callable(getattr(self, item)):
self.connection.mqtt.subscriptions.append(self.mqtt_string + item)
self.connection.mqtt.subscribe(self.mqtt_string + item)
self.connection.mqtt.message_callback_add(self.mqtt_string + item, self.mqttRunFunction)
def calcMqttString(self):
self.mqtt_string = self.unit.mqtt_string + "Outputs/" + ((self.label + "/") if self.label != "" else (str(self.channel) + "/"))
self.label = self.label # To ensure label is published to MQTT
def initialize(self):
"""Fetch all data Channel Data"""
self.getLabel()
self.getMaxGain()
self.getMinGain()
self.getMute()
self.getGain()
return True
def getLabel(self):
"""Fetch Label from XAP Unit"""
label = self.comms.getLabel(self.channel, self.group, unitCode=self.unit.device_id, inout=0)
self.label = label
self.calcMqttString()
return label
def setLabel(self, label):
"""Fetch Label from XAP Unit"""
label = self.comms.setLabel(self.channel, self.group, label, unitCode=self.unit.device_id, inout=0)
self.label = label
self.calcMqttString()
return label
def getMaxGain(self):
"""Fetch Max Gain for Channel"""
if self.group == "E": # Expansion Bus is Not Compatible with this function
return None
gain_max = self.comms.getMaxGain(self.channel, channel_data[self.unit.device_type][self.channel]['og'], unitCode=self.unit.device_id)
return gain_max
def setMaxGain(self, gain_max):
"""Set Max Gain for Channel"""
if self.group == "E": # Expansion Bus is Not Compatible with this function
return None
gain_max = self.comms.setMaxGain(self.channel, channel_data[self.unit.device_type][self.channel]['og'], gain_max, unitCode=self.unit.device_id)
return gain_max
def getMinGain(self):
"""Fetch Max Gain for Channel"""
if self.group == "E": # Expansion Bus is Not Compatible with this function
return None
gain_min = self.comms.getMinGain(self.channel, channel_data[self.unit.device_type][self.channel]['og'], unitCode=self.unit.device_id)
return gain_min
def setMinGain(self, gain_min):
"""Set Max Gain for Channel"""
if self.group == "E": # Expansion Bus is Not Compatible with this function
return None
gain_min = self.comms.setMinGain(self.channel, channel_data[self.unit.device_type][self.channel]['og'], gain_min, unitCode=self.unit.device_id)
return gain_min
def getMute(self):
"""Fetch mute status for Channel"""
if self.group == "E": # Expansion Bus is Not Compatible with this function
return None
mute = self.comms.getMute(self.channel, channel_data[self.unit.device_type][self.channel]['og'], unitCode=self.unit.device_id)
return mute
def setMute(self, mute):
"""Set mute status for Channel"""
if self.group == "E": # Expansion Bus is Not Compatible with this function
return None
mute = self.comms.setMute(self.channel, channel_data[self.unit.device_type][self.channel]['og'], mute, unitCode=self.unit.device_id)
return mute
def setProportionalGain(self, prop_gain):
"""Set gain 0-1 proportional to max_gain for Channel"""
if self.group == "E": # Expansion Bus is Not Compatible with this function
return None
prop_gain = self.comms.setPropGain(self.channel, prop_gain, 1, channel_data[self.unit.device_type][self.channel]['og'], unitCode=self.unit.device_id)
return prop_gain
def rampToDb(self, targetDb, rate=False):
"""Ramp Gain to specified DB"""
if not rate:
rate = self.ramp_rate
ramp = self.comms.ramp(self.channel, self.group, rate, targetDb, unitCode=self.unit.device_id)
return ramp
def rampToPercent(self, targetPercent, rate=False):
"""Ramp Gain to specified % between min and max gain"""
if not rate:
rate = self.ramp_rate
if targetPercent < 0 or targetPercent > 1:
raise NotSupported("Percentage must be between 0 and 1")
targetDb = (self.gain_max - self.gain_min) * targetPercent
ramp = self.comms.ramp(self.channel, self.group, rate, targetDb, unitCode=self.unit.device_id)
return ramp
def getGain(self):
"""Fetch absolute gain for Channel"""
if self.group == "E": # Expansion Bus is Not Compatible with this function
return None
gain = self.comms.getGain(self.channel, channel_data[self.unit.device_type][self.channel]['og'], unitCode=self.unit.device_id)
return gain
def setGain(self, gain, isAbsolute=True):
"""Set absolute gain for Channel"""
if self.group == "E": # Expansion Bus is Not Compatible with this function
return None
gain = self.comms.setGain(self.channel, channel_data[self.unit.device_type][self.channel]['og'], gain, unitCode=self.unit.device_id, isAbsolute=isAbsolute)
return gain
def getExBus(self):
exBus = []
for channel, data in channel_data[self.unit.device_type].items():
if data['otype'] == "Expansion":
if self.unit.matrix[channel][self.channel] is not None:
if self.unit.matrix[channel][self.channel].enabled:
exBus.append(channel)
self.exBus = exBus
return exBus
class InputChannel(object):
"""XAP Input Channel Wrapper"""
def __repr__(self):
return "Input: " + str(self.unit.device_id) + ":" + str(self.channel) + " | " + self.label
def __init__(self, unit, channel):
self.mqttRestrictedAttributes = ["connection",
"comms",
"mqtt_string",
"unit",
"filters",
"mqttRestrictedFunctions",
"mqttRestrictedAttributes"]
self.mqttRestrictedFunctions = ["mqttSubscribe",
"mqttRunFunction",
"mqttSubscribeFunctions",
"calcMqttString",
"initialize"]
self.unit = unit
self.connection = unit.connection
self.comms = unit.comms
self.channel = channel
self.group = channel_data[unit.device_type][channel]['ig']
self.ramp_rate = self.connection.ramp_rate
self.label = None
self.mqtt_string = None
self.getLabel()
self.calcMqttString()
self.group = self.group # This will publish MQTT values that were missed
self.channel = self.channel # This will publish MQTT values that were missed
self.type = channel_data[unit.device_type][channel]['itype']
self.gain = None
self.gain_string = None
self.gain_min = None
self.gain_max = None
self.gain_min_string = None
self.gain_max_string = None
self.mute = None
self.level = None # Not yet Implemented
self.mic = None #!!
self.exBus = None #!!
self.AGC = None # True or False - Automatic Gain Control
self.AGC_target = None # -30 to 20dB
self.AGC_threshold = None # -50 to 0dB
self.AGC_attack = None # 0.1 to 10.0s in .1 increments
self.AGC_gain = None # 0.0 to 18.0dB
self.AGC_target_string = None # -30 to 20dB
self.AGC_threshold_string = None # -50 to 0dB
self.AGC_attack_string = None # 0.1 to 10.0s in .1 increments
self.AGC_gain_string = None # 0.0 to 18.0dB
self.filters = deepcopy(filter_data[self.type])
# Microphone Input Only
self.phantom_power = None
self.NC = None # True or False - Noise Cancellation
self.NC_depth = None # 6 to 15dB
self.AEC = None # True or False - Acoutstic Echo Canceller
self.AEC_PA_reference = None # None or OutputChannel
self.NLP = None # False = Off, Soft, Medium, Aggresive - Non-Linear Processing
self.NLP_string = None # False = Off, Soft, Medium, Aggresive - Non-Linear Processing
self.adaptive_ambient = None # True or False
self.ambient_level = None # -80.0 to 0.0dB
self.ambient_level_string = None # -80.0 to 0.0dB
self.PA_adaptive = None # True or False
self.gating = None # False, Manual On, Manual Off
self.gating_string = None
self.gate_holdtime = None # 0.10 - 8.00s
self.gate_holdtime_string = None # 0.10 - 8.00s
self.gate_override = None # True or False
self.gate_ratio = None # 0-50dB
self.gate_open = None # True False
self.gate_on = None # True False
self.gate_group = None # 1-4 and A-D (gate group)
self.gate_chairman = None # True or False
self.gate_decay = None # Slow, Medium, Fast
self.gate_decay_string = None # Slow, Medium, Fast
self.gain_coarse = None
self.gain_coarse_string = None
self.gate_attenuation = None # 0-60dB
self.gate_attenuation_string = None # 0-60dB
# Processing Input Only
self.delay = None
self.delay_time_string = None
self.delay_time = None
self.compressor = None # True or False
self.compressor_group = None #
self.compressor_gain = None #
self.compressor_threshold = None
self.compressor_ratio = None
self.compressor_attack = None
self.compressor_release = None
self.compressor_gain_string = None #
self.compressor_threshold_string = None
self.compressor_ratio_string = None
self.compressor_attack_string = None
self.compressor_release_string = None
self.mqttSubscribeFunctions()
def __setattr__(self, name, value):
super().__setattr__(name, value)
try:
if self.connection.mqtt:
if name not in self.mqttRestrictedAttributes and value != None:
self.connection.mqtt.publish(self.mqtt_string + name, json.dumps(value))
except:
noop = 1
def mqttSubscribeFunctions(self):
if self.connection.mqtt:
for item in self.__dir__():
if item[0] != "_" and item not in self.mqttRestrictedFunctions and callable(getattr(self, item)):
self.connection.mqtt.subscriptions.append(self.mqtt_string + item)
self.connection.mqtt.subscribe(self.mqtt_string + item)
self.connection.mqtt.message_callback_add(self.mqtt_string + item, self.mqttRunFunction)
def calcMqttString(self):
self.mqtt_string = self.unit.mqtt_string + "Inputs/" + ((self.label + "/") if self.label != "" else (str(self.channel) + "/"))
self.label = self.label # To ensure label is published to MQTT
def mqttRunFunction(self, mosq, obj, msg):
if msg.topic.split()[-1] not in self.mqttRestrictedFunctions:
try:
func = getattr(self, msg.topic.split("/")[-1])
try:
args = inspect.signature(func).parameters.items()
maxargs = len(args)
minargs = 0
for k, v in args:
if v.default is inspect.Parameter.empty:
minargs += 1
except TypeError:
return
if maxargs is 0:
self.comms.mqtt_command_queue.append({'cmd': func, 'args': []})
else:
payload = json.loads(msg.payload)
if isinstance(payload, list):
if maxargs >= len(payload) >= minargs:
self.comms.mqtt_command_queue.append({'cmd': func, 'args': payload})
else:
print("BadPayloadLength Topic: " + msg.topic + " Payload:" + str(msg.payload) +
'MaxArgs:' + str(maxargs) + ' MinArgs:' + str(minargs))
else:
print("BadPayload: " + msg.topic + " " + str(msg.qos) + " " + str(msg.payload))