-
Notifications
You must be signed in to change notification settings - Fork 6
/
hinawa-apogee-ensemble-cli
executable file
·473 lines (425 loc) · 16.2 KB
/
hinawa-apogee-ensemble-cli
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
#!/usr/bin/env python3
# SPDX-License-Identifier: GPL-3.0-or-later
# Copyright (C) 2018 Takashi Sakamoto
from hinawa_utils.misc.cli_kit import CliKit
from hinawa_utils.bebob.apogee_ensemble_unit import ApogeeEnsembleUnit
def handle_clock_src(unit, args):
ops = ('set', 'get')
srcs = unit.get_clock_src_labels()
if len(args) >= 1 and args[0] in ops:
op = args[0]
if op == 'set' and len(args) >= 2 and args[1] in srcs:
src = args[1]
unit.set_clock_src(src)
return True
elif op == 'get':
print(unit.get_clock_src())
return True
print('Arguments for clock-source command:')
print(' clock-source OP [SRC]')
print(' OP: [{0}]'.format('|'.join(ops)))
print(' SRC: [{0}] if OP=set'.format('|'.join(srcs)))
print(' Packet streaming should be stopped.')
return False
def handle_knob_states(unit, args):
states = unit.get_knob_states()
for key, val in states.items():
print('{0}: {1}'.format(key, val))
return True
def handle_knob_volume(unit, args):
ops = ('set', 'get')
targets = unit.get_knob_out_labels()
if len(args) >= 2 and args[0] in targets and args[1] in ops:
target = args[0]
op = args[1]
if op == 'set' and len(args) >= 3:
db = float(args[2])
unit.set_knob_out_volume(target, db)
return True
elif op == 'get':
states = unit.get_knob_states()
print(states[target])
return True
print('Arguments for out-volume command:')
print(' out-volume TARGET OP [dB]')
print(' TARGET: [{0}]'.format('|'.join(targets)))
print(' OP: [{0}]'.format('|'.join(ops)))
print(' dB: [-127.00..0.00] if OP=set')
return False
def handle_stream_mode(unit, args):
ops = ('set', 'get')
modes = unit.get_stream_mode_labels()
if len(args) >= 1:
op = args[0]
if op in ops:
if op == 'set' and len(args) >= 2 and args[1] in modes:
mode = args[1]
unit.set_stream_mode(mode)
return True
elif op == 'get':
print(unit.get_stream_mode())
return True
print('Arguments for stream-mode command:')
print(' stream-mode OP [MODE]')
print(' OP: [{0}]'.format('|'.join(ops)))
print(' MODE: [{0}] if OP=set'.format('|'.join(modes)))
print(' This operation corresponds bus-reset.')
return False
def handle_display_mode(unit, args):
ops = ('set', 'get')
if len(args) >= 1 and args[0] in ops:
op = args[0]
if op == 'set' and len(args) >= 2 and args[1] in ('0', '1'):
enable = bool(int(args[1]))
unit.set_display_mode(enable)
return True
elif op == 'get':
print(unit.get_display_mode())
return True
print('Arguments for display-mode command:')
print(' display-mode OP [ENABLE]')
print(' OP: [{0}]'.format('|'.join(ops)))
print(' ENABLE: [0|1] if OP=set')
return False
def handle_display_target(unit, args):
ops = ('set', 'get')
targets = unit.get_display_target_labels()
if len(args) >= 1 and args[0] in ops:
op = args[0]
if op == 'set' and len(args) >= 2 and args[1] in targets:
target = args[1]
unit.set_display_target(target)
return True
elif op == 'get':
print(unit.get_display_target())
return True
print('Arguments for display-target command:')
print(' display-target OP [TARGET]')
print(' OP: [{0}]'.format('|'.join(ops)))
print(' TARGET: [{0}] if OP=set'.format('|'.join(targets)))
return False
def handle_display_illuminate(unit, args):
ops = ('set', 'get')
if len(args) >= 1 and args[0] in ops:
op = args[0]
if op == 'set' and len(args) >= 2 and args[1] in ('0', '1'):
enable = bool(int(args[1]))
unit.set_display_illuminate(enable)
return True
elif op == 'get':
print(unit.get_display_illuminate())
return True
print('Arguments for display-illuminate command:')
print(' display-illuminate OP [ENABLE]')
print(' OP: [{0}]'.format('|'.join(ops)))
print(' ENABLE: [0|1]')
return False
def handle_display_overhold(unit, args):
ops = ('set', 'get')
if len(args) >= 1 and args[0] in ops:
op = args[0]
if op == 'set' and len(args) >= 2 and args[1] in ('0', '1'):
enable = bool(int(args[1]))
unit.set_display_overhold(enable)
return True
elif op == 'get':
print(unit.get_display_overhold())
return True
print('Arguments for display-overhold command:')
print(' display-overhold OP [ENABLE]')
print(' OP: [{0}]'.format('|'.join(ops)))
print(' ENABLE: [0|1]')
return False
def handle_opt_iface_mode(unit, args):
ops = ('set', 'get')
targets = unit.get_opt_iface_target_labels()
modes = unit.get_opt_iface_mode_labels()
if len(args) >= 2 and args[0] in targets and args[1] in ops:
target = args[0]
op = args[1]
if op == 'set' and len(args) >= 3 and args[2] in modes:
mode = args[2]
unit.set_opt_iface_mode(target, mode)
return True
elif op == 'get':
print(unit.get_opt_iface_mode(target))
return True
print('Arguments for opt-iface-mode command:')
print(' opt-iface-mode TARGET OP [MODE]')
print(' TARGET: [{0}]'.format('|'.join(targets)))
print(' OP: [{0}]'.format('|'.join(ops)))
print(' MODE: [{0}]'.format('|'.join(modes)))
return False
def handle_cd_mode(unit, args):
ops = ('set', 'get')
if len(args) >= 1 and args[0] in ops:
op = args[0]
if op == 'set' and len(args) >= 2 and args[1] in ('0', '1'):
enable = bool(int(args[1]))
unit.set_cd_mode(enable)
return True
elif op == 'get':
print(unit.get_cd_mode())
return True
print('Arguments for cd-mode command:')
print(' cd-mode OP [ENABLE]')
print(' OP: [{0}]'.format('|'.join(ops)))
print(' ENABLE: [0|1]')
return False
def handle_in_attenuate(unit, args):
ops = ('set', 'get')
targets = unit.get_line_in_labels()
attrs = unit.get_in_attr_labels()
if len(args) >= 2 and args[0] in targets and args[1] in ops:
target = args[0]
op = args[1]
if op == 'set' and len(args) >= 3 and args[2] in attrs:
attr = args[2]
unit.set_in_attr(target, attr)
return True
elif op == 'get':
print(unit.get_in_attr(target))
return True
print('Arguments for in-attenuate command:')
print(' in-attenuate TARGET OP [ATTR]')
print(' TARGET: [{0}]'.format('|'.join(targets)))
print(' OP: [{0}]'.format('|'.join(ops)))
print(' ATTR: [{0}] if OP=set'.format('|'.join(attrs)))
return False
def handle_in_limit(unit, args):
ops = ('set', 'get')
targets = unit.get_line_in_labels()
if len(args) >= 2 and args[0] in targets and args[1] in ops:
target = args[0]
op = args[1]
if op == 'set' and len(args) >= 3 and args[2] in ('0', '1'):
enable = bool(int(args[2]))
unit.set_soft_limit(target, enable)
return True
elif op == 'get':
print(unit.get_soft_limit(target))
return True
print('Arguments for in-limit command:')
print(' in-limit TARGET OP [ENABLE]')
print(' TARGET: [{0}]'.format('|'.join(targets)))
print(' OP: [{0}]'.format('|'.join(ops)))
print(' ENABLE: [0|1] if OP=set')
return False
def handle_mic_polarity(unit, args):
ops = ('set', 'get')
targets = unit.get_mic_labels()
if len(args) >= 2 and args[0] in targets and args[1] in ops:
target = args[0]
op = args[1]
if op == 'set' and len(args) >= 3 and args[2] in ('0', '1'):
invert = bool(int(args[2]))
unit.set_polarity(target, invert)
return True
elif op == 'get':
print(unit.get_polarity(target))
return True
print('Arguments for mic-polarity command:')
print(' mic-polarity TARGET OP [INVERT]')
print(' TARGET: [{0}]'.format('|'.join(targets)))
print(' OP: [{0}]'.format('|'.join(ops)))
print(' INVERT: [0|1] if OP=set')
return False
def handle_mic_power(unit, args):
ops = ('set', 'get')
targets = unit.get_mic_labels()
if len(args) >= 2 and args[0] in targets and args[1] in ops:
target = args[0]
op = args[1]
if op == 'set' and len(args) >= 3 and args[2] in ('0', '1'):
enable = bool(int(args[2]))
unit.set_phantom_power(target, enable)
return True
elif op == 'get':
print(unit.get_phantom_power(target))
return True
print('Arguments for mic-power command:')
print(' mic-power TARGET OP [ENABLE]')
print(' TARGET: [{0}]'.format('|'.join(targets)))
print(' OP: [{0}]'.format('|'.join(ops)))
print(' ENABLE: [0|1] if OP=set')
return False
def handle_out_attenuate(unit, args):
ops = ('set', 'get')
targets = unit.get_line_out_labels()
attrs = unit.get_out_attr_labels()
if len(args) >= 2 and args[0] in targets and args[1] in ops:
target = args[0]
op = args[1]
if op == 'set' and len(args) >= 3 and args[2] in attrs:
attr = args[2]
unit.set_out_attr(target, attr)
return True
elif op == 'get':
print(unit.get_out_attr(target))
return True
print('Arguments for out-attenuate command:')
print(' out-attenuate TARGET OP [ATTR]')
print(' TARGET: [{0}]'.format('|'.join(targets)))
print(' OP: [{0}]'.format('|'.join(ops)))
print(' ATTR: [{0}] if OP=set'.format('|'.join(attrs)))
return False
def handle_cap_src(unit, args):
ops = ('set', 'get')
targets = unit.get_cap_labels()
srcs = unit.get_cap_src_labels()
if len(args) >= 2 and args[0] in targets and args[1] in ops:
target = args[0]
op = args[1]
if op == 'set' and len(args) >= 3 and args[2] in srcs:
dst = args[2]
unit.set_cap_src(target, dst)
return True
elif op == 'get':
print(unit.get_cap_src(target))
return True
print('Arguments for cap-src command:')
print(' cap-src TARGET OP [DST]')
print(' TARGET: [{0}]'.format('|'.join(targets)))
print(' OP: [{0}]'.format('|'.join(ops)))
print(' SRC: [{0}] if OP=set'.format('|'.join(srcs)))
return False
def handle_out_src(unit, args):
ops = ('set', 'get')
targets = unit.get_out_labels()
srcs = unit.get_out_src_labels()
if len(args) >= 2 and args[0] in targets and args[1] in ops:
target = args[0]
op = args[1]
if op == 'set' and len(args) >= 3 and args[2] in srcs:
src = args[2]
unit.set_out_src(target, src)
return True
elif op == 'get':
print(unit.get_out_src(target))
return True
print('Arguments for out-src command:')
print(' out-src TARGET OP [SRC]')
print(' TARGET: [{0}]'.format('|'.join(targets)))
print(' OP: [{0}]'.format('|'.join(ops)))
print(' SRC: [{0}] if OP=set'.format('|'.join(srcs)))
return False
def handle_hp_src(unit, args):
ops = ('set', 'get')
targets = unit.get_hp_labels()
srcs = unit.get_hp_src_labels()
if len(args) >= 2 and args[0] in targets and args[1] in ops:
target = args[0]
op = args[1]
if op == 'set' and len(args) >= 3 and args[2] in srcs:
src = args[2]
unit.set_hp_src(target, src)
return True
elif op == 'get':
print(unit.get_hp_src(target))
return True
print('Arguments for hp-src command:')
print(' hp-src TARGET OP [SRC]')
print(' TARGET: [{0}]'.format('|'.join(targets)))
print(' OP: [{0}]'.format('|'.join(ops)))
print(' SRC: [{0}] if OP=set'.format('|'.join(srcs)))
return False
def handle_mixer_src(unit, args):
ops = ('set', 'get')
targets = unit.get_mixer_labels()
srcs = unit.get_mixer_src_labels()
if (len(args) >= 3 and args[0] in targets and args[1] in srcs
and args[2] in ops):
target = args[0]
src = args[1]
op = args[2]
if op == 'set' and len(args) >= 5:
db = float(args[3])
balance = float(args[4])
unit.set_mixer_src(target, src, db, balance)
return True
elif op == 'get':
print(unit.get_mixer_src(target, src))
return True
print('Arguments for mixer-src command:')
print(' mixer-src TARGET SRC OP [dB BALANCE]')
print(' TARGET: [{0}]'.format('|'.join(targets)))
print(' SRC: [{0}]'.format('|'.join(srcs)))
print(' OP: [{0}]'.format('|'.join(ops)))
print(' dB: [-48.0..0.0] if OP=set')
print(' BALANCE:[0.0..100.0] if OP=set')
return False
def handle_reset_meters(unit, args):
unit.reset_meters()
return True
def handle_16bit_mode(unit, args):
ops = ('set', 'get')
targets = unit.get_16bit_mode_labels()
if len(args) >= 1 and args[0] in ops:
op = args[0]
if op == 'set' and len(args) >= 2 and args[1] in targets:
target = args[1]
unit.set_16bit_mode(target)
return True
elif op == 'get':
print(unit.get_16bit_mode())
return True
print('Arguments for 16bit-mode command:')
print(' 16bit-mode OP [TARGET]')
print(' OP: [{0}]'.format('|'.join(ops)))
print(' TARGET: [{0}] if OP=set'.format('|'.join(targets)))
return False
def handle_spdif_resample(unit, args):
ops = ('set', 'get')
ifaces = unit.get_spdif_resample_iface_labels()
directions = unit.get_spdif_resample_direction_labels()
rates = unit.get_spdif_resample_rate_labels()
if len(args) >= 1 and args[0] in ops:
op = args[0]
if (op == 'set' and len(args) >= 5 and args[1] in ('0', '1')
and args[2] in ifaces and args[3] in directions
and int(args[4]) in rates):
enable = bool(int(args[1]))
iface = args[2]
direction = args[3]
rate = int(args[4])
unit.set_spdif_resample(enable, iface, direction, rate)
return True
elif op == 'get':
print(unit.get_spdif_resample())
return True
print('Arguments for spdif-resample command:')
print(' spdif-resample OP [ENABLE IFACE DIRECTION RATE]')
print(' OP: [{0}]'.format('|'.join(ops)))
print(' ENABLE: [0|1] if OP=set')
print(' IFACE: [{0}] if OP=set'.format('|'.join(ifaces)))
print(' DIRECTION: [{0}] if OP=set'.format('|'.join(directions)))
print(' RATE: [{0}] if OP=set'.format('|'.join(map(str, rates))))
return False
cmds = {
'clock-source': handle_clock_src,
'knob-states': handle_knob_states,
'knob-volume': handle_knob_volume,
'stream-mode': handle_stream_mode,
'display-mode': handle_display_mode,
'display-target': handle_display_target,
'display-illuminate': handle_display_illuminate,
'display-overhold': handle_display_overhold,
'opt-iface-mode': handle_opt_iface_mode,
'cd-mode': handle_cd_mode,
'in-attenuate': handle_in_attenuate,
'in-limit': handle_in_limit,
'mic-polarity': handle_mic_polarity,
'mic-power': handle_mic_power,
'out-attenuate': handle_out_attenuate,
'cap-src': handle_cap_src,
'out-src': handle_out_src,
'hp-src': handle_hp_src,
'mixer-src': handle_mixer_src,
'reset-meters': handle_reset_meters,
'16bit-mode': handle_16bit_mode,
'spdif-resample': handle_spdif_resample,
}
fullpath = CliKit.seek_snd_unit_path()
if fullpath:
with ApogeeEnsembleUnit(fullpath) as unit:
CliKit.dispatch_command(unit, cmds)