-
Notifications
You must be signed in to change notification settings - Fork 313
/
Copy pathvolumecontrol.js
executable file
·516 lines (472 loc) · 19.4 KB
/
volumecontrol.js
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
'use strict';
var libQ = require('kew');
var spawn = require('child_process').spawn;
var execSync = require('child_process').execSync;
var exec = require('child_process').exec;
var Volume = {};
Volume.vol = null;
Volume.mute = null;
var device = '';
var mixer = '';
var maxvolume = '';
var volumecurve = '';
var volumesteps = '';
var currentvolume = '';
var hasHWMute = false;
var currentmute = false;
var premutevolume = '';
var mixertype = '';
var devicename = '';
var volumescript = {'enabled':false, 'setvolumescript':'', 'getvolumescript':''};
module.exports = CoreVolumeController;
function CoreVolumeController(commandRouter) {
// This fixed variable will let us refer to 'this' object at deeper scopes
var self = this;
// Save a reference to the parent commandRouter
self.commandRouter = commandRouter;
self.logger = self.commandRouter.logger;
device = this.commandRouter.executeOnPlugin('audio_interface', 'alsa_controller', 'getConfigParam', 'outputdevice');
if (device === 'softvolume') {
device = this.commandRouter.executeOnPlugin('audio_interface', 'alsa_controller', 'getConfigParam', 'softvolumenumber');
devicename = 'softvolume';
} else {
if (device.indexOf(',') >= 0) {
device = device.charAt(0);
}
var cards = this.commandRouter.executeOnPlugin('audio_interface', 'alsa_controller', 'getAlsaCards', '');
if ((cards[device] != undefined) && (cards[device].name != undefined)) {
devicename = cards[device].name;
}
}
var mixerdev = this.commandRouter.executeOnPlugin('audio_interface', 'alsa_controller', 'getConfigParam', 'mixer');
if (mixerdev.indexOf(',') >= 0) {
var mixerarr = mixerdev.split(',');
mixer = mixerarr[0]+','+mixerarr[1];
} else {
mixer = '"'+mixerdev+'"';
}
maxvolume = this.commandRouter.executeOnPlugin('audio_interface', 'alsa_controller', 'getConfigParam', 'volumemax');
volumecurve = this.commandRouter.executeOnPlugin('audio_interface', 'alsa_controller', 'getConfigParam', 'volumecurvemode');
volumesteps = this.commandRouter.executeOnPlugin('audio_interface', 'alsa_controller', 'getConfigParam', 'volumesteps');
mixertype = this.commandRouter.executeOnPlugin('audio_interface', 'alsa_controller', 'getConfigParam', 'mixer_type');
var amixer = function (args, cb) {
var ret = '';
var err = null;
var p = spawn('amixer', args, {uid:1000,gid:1000});
p.stdout.on('data', function (data) {
ret += data;
});
p.stderr.on('data', function (data) {
try {
// Avoid to pass pulse introduced error in parsing
//console.log('---' + data.toString().replace(/\n/g, '') + '---');
if (data.toString().replace(/\n/g, '') === 'No protocol specified' || data.toString().replace(/\n/g, '') === 'xcb_connection_has_error() returned true') {
// ignoring those errors
//console.log('IGNORING')
} else {
err = new Error('Alsa Mixer Error: ' + data);
}
} catch(e) {
err = new Error('Alsa Mixer Error: ' + data);
}
});
p.on('close', function () {
cb(err, ret.trim());
});
};
var reInfo = /[a-z][a-z ]*\: Playback [0-9-]+ \[([0-9]+)\%\] (?:[[0-9\.-]+dB\] )?\[(on|off)\]/i;
var reInfoOnlyVol = /[a-z][a-z ]*\: Playback [0-9-]+ \[([0-9]+)\%\] (?:[[0-9\.-]+dB\] )?\[/i;
var getInfo = function (cb) {
if (volumescript.enabled) {
try {
var scriptvolume = execSync('/bin/sh ' + volumescript.getvolumescript, { uid: 1000, gid: 1000, encoding: 'utf8'});
self.logger.info('External Volume: ' + scriptvolume);
Volume.mute = false;
if (volumescript.mapTo100 != undefined && volumescript.maxVol != undefined && volumescript.mapTo100) {
Volume.vol = parseInt((scriptvolume*100)/volumescript.maxVol);
} else {
Volume.vol = scriptvolume;
}
if (volumescript.getmutescript != undefined && volumescript.getmutescript.length > 0) {
var scriptmute = execSync('/bin/sh ' + volumescript.getmutescript, { uid: 1000, gid: 1000, encoding: 'utf8'});
self.logger.info('External Volume: ' + scriptmute)
if (parseInt(scriptmute) === 1) {
Volume.mute = true;
}
}
cb(null, {
volume: Volume.vol,
muted: Volume.mute
});
} catch(e) {
self.logger.info('Cannot get Volume with script: '+e);
cb(new Error('Cannot execute Volume script'));
}
} else {
if (volumecurve === 'logarithmic') {
var volumeParamsArray = ['-M', 'get', '-c', device, mixer];
} else {
var volumeParamsArray = ['get', '-c', device, mixer];
}
amixer(volumeParamsArray, function (err, data) {
if (err) {
cb(err);
} else {
var res = reInfo.exec(data);
if (res === null) {
var resOnlyVol = reInfoOnlyVol.exec(data);
if (resOnlyVol === null) {
cb(new Error('Alsa Mixer Error: failed to parse output'));
} else {
hasHWMute = false;
var volOut = parseInt(resOnlyVol[1], 10);
if (volOut === 0) {
var muteOut = true;
} else {
var muteOut = false;
}
cb(null, {
volume: volOut,
muted: muteOut
});
}
} else {
hasHWMute = true;
cb(null, {
volume: parseInt(res[1], 10),
muted: (res[2] == 'off')
});
}
}
});
}
};
self.getVolume = function (cb) {
getInfo(function (err, obj) {
if (err) {
cb(err);
} else {
cb(null, obj.volume);
}
});
};
self.setVolume = function (val, cb) {
if (volumescript.enabled) {
try {
if (volumescript.minVol != undefined && val < volumescript.minVol) {
val = volumescript.minVol;
}
if (volumescript.mapTo100 != undefined && volumescript.maxVol != undefined && volumescript.mapTo100) {
var cmd = '/bin/sh ' + volumescript.setvolumescript + ' ' + parseInt(val*(volumescript.maxVol/100));
} else {
if (volumescript.maxVol != undefined && val > volumescript.maxVol) {
val = volumescript.maxVol;
}
var cmd = '/bin/sh ' + volumescript.setvolumescript + ' ' + val;
}
self.logger.info('Volume script ' + cmd)
Volume.mute = false;
if (volumescript.setmutescript != undefined && volumescript.setmutescript.length > 0) {
if (val === 0) {
Volume.mute = true;
var scriptmute = execSync('/bin/sh ' + volumescript.setmutescript + ' 1', { uid: 1000, gid: 1000, encoding: 'utf8'});
} else {
execSync(cmd, { uid: 1000, gid: 1000, encoding: 'utf8', tty:'pts/1'});
var scriptmute = execSync('/bin/sh ' + volumescript.setmutescript + ' 0', { uid: 1000, gid: 1000, encoding: 'utf8'});
}
self.logger.info('External Volume: ' + scriptmute)
}
Volume.vol = parseInt(val);
currentvolume = parseInt(val);
self.commandRouter.volumioupdatevolume(Volume);
} catch(e) {
self.logger.info('Cannot set Volume with script: '+e);
}
} else {
if (volumecurve === 'logarithmic') {
amixer(['-M', 'set', '-c', device, mixer, 'unmute', val + '%'], function (err) {
cb(err);
});
if (devicename == 'PianoDACPlus' || devicename == 'Allo Piano 2.1' || devicename == 'PianoDACPlus multicodec-0') {
amixer(['-M', 'set', '-c', device, 'Subwoofer', 'unmute', val + '%'], function (err) {
});
}
} else {
amixer(['set', '-c', device, mixer, 'unmute', val + '%'], function (err) {
cb(err);
});
if (devicename == 'PianoDACPlus' || devicename == 'Allo Piano 2.1' || devicename == 'PianoDACPlus multicodec-0') {
amixer(['set', '-c', device, 'Subwoofer', 'unmute', val + '%'], function (err) {
});
}
}
}
};
self.getMuted = function (cb) {
getInfo(function (err, obj) {
if (err) {
cb(err);
} else {
cb(null, obj.muted);
}
});
};
self.setMuted = function (val, cb) {
if (hasHWMute) {
amixer(['set', '-c', device, mixer , (val ? 'mute' : 'unmute')], function (err) {
cb(err);
});
} else {
amixer(['set', '-c', device, mixer , (val ? 0 : premutevolume)], function (err) {
cb(err);
});
}
};
}
CoreVolumeController.prototype.updateVolumeSettings = function (data) {
var self = this;
self.logger.info('Updating Volume Controller Parameters: Device: '+ data.device + ' Name: '+ data.name +' Mixer: '+ data.mixer + ' Max Vol: ' + data.maxvolume + ' Vol Curve; ' + data.volumecurve + ' Vol Steps: ' + data.volumesteps);
if (data.mixertype !== undefined && mixertype !== 'None' && mixer !== undefined && mixer.length && (data.mixertype === 'None' || data.mixertype === 'Software')) {
self.setVolume(100, function (err) {
if (err) {
self.logger.error('Cannot set ALSA Volume: ' + err);
}
});
}
if (mixertype && mixertype === 'None' && data.mixertype !== undefined && (data.mixertype === 'Software' || data.mixertype === 'Hardware')) {
setTimeout(()=>{
self.setStartupVolume();
}, 5000)
}
device = data.device;
if (device.indexOf(',') >= 0) {
device = device.charAt(0);
}
mixer = '"'+data.mixer+'"';
if (data.mixer.indexOf(',') >= 0) {
var mixerarr = data.mixer.split(',');
mixer = mixerarr[0]+','+mixerarr[1];
} else {
mixer = '"'+data.mixer+'"';
}
maxvolume = data.maxvolume;
volumecurve = data.volumecurve;
volumesteps = data.volumesteps;
mixertype = data.mixertype
devicename = data.name;
return self.retrievevolume();
}
CoreVolumeController.prototype.updateVolumeScript = function (data) {
var self = this;
if (data.setvolumescript != undefined && data.getvolumescript != undefined) {
self.logger.info('Updating Volume script: '+ JSON.stringify(data));
volumescript = data;
}
}
// Public methods -----------------------------------------------------------------------------------
CoreVolumeController.prototype.alsavolume = function (VolumeInteger) {
var self = this;
var defer = libQ.defer();
self.logger.info('VolumeController::SetAlsaVolume' + VolumeInteger);
if (mixertype === 'None') {
Volume.vol = 100;
Volume.mute = false;
Volume.disableVolumeControl = true;
defer.resolve(Volume)
} else {
switch (VolumeInteger) {
case 'mute':
//Mute
self.getVolume(function (err, vol) {
if (vol == null) {
vol = currentvolume
}
currentmute = true;
premutevolume = vol;
if (mixertype === 'Software') {
Volume.vol = currentvolume;
Volume.mute = true;
Volume.disableVolumeControl = false;
defer.resolve(Volume)
self.setVolume(0, function (err) {
if (err) {
self.logger.error('Cannot set ALSA Volume: ' + err);
}
});
} else {
Volume.vol = premutevolume;
Volume.mute = true;
Volume.disableVolumeControl = false;
defer.resolve(Volume)
self.setMuted(true, function (err) {
});
}
});
break;
case 'unmute':
//Unmute
currentmute = false;
//Log Volume Control
Volume.vol = premutevolume;
Volume.mute = false;
Volume.disableVolumeControl = false;
currentvolume = premutevolume;
defer.resolve(Volume)
self.setVolume(premutevolume, function (err) {
if (err) {
self.logger.error('Cannot set ALSA Volume: ' + err);
}
});
break;
case 'toggle':
// Mute or unmute, depending on current state
if (Volume.mute){
defer.resolve(self.alsavolume('unmute'));
}
else {
defer.resolve(self.alsavolume('mute'));
}
break;
case '+':
self.getVolume(function (err, vol) {
if (vol == null || currentmute) {
vol = currentvolume;
}
VolumeInteger = Number(vol)+Number(volumesteps);
if (VolumeInteger > 100){
VolumeInteger = 100;
}
if (VolumeInteger > maxvolume){
VolumeInteger = maxvolume;
}
currentvolume = VolumeInteger;
Volume.vol = VolumeInteger
Volume.mute = false;
Volume.disableVolumeControl = false;
defer.resolve(Volume)
self.setVolume(VolumeInteger, function (err) {
if (err) {
self.logger.error('Cannot set ALSA Volume: ' + err);
}
});
});
break;
case '-':
//Decrease volume by one (TEST ONLY FUNCTION - IN PRODUCTION USE A NUMERIC VALUE INSTEAD)
self.getVolume(function (err, vol) {
if (vol == null || currentmute) {
vol = currentvolume
}
VolumeInteger = Number(vol)-Number(volumesteps);
if (VolumeInteger < 0){
VolumeInteger = 0;
}
if (VolumeInteger > maxvolume){
VolumeInteger = maxvolume;
}
currentvolume = VolumeInteger;
Volume.vol = VolumeInteger
Volume.mute = false;
Volume.disableVolumeControl = false;
defer.resolve(Volume)
self.setVolume(VolumeInteger, function (err) {
if (err) {
self.logger.error('Cannot set ALSA Volume: ' + err);
}
});
});
break;
default:
// Set the volume with numeric value 0-100
if (VolumeInteger < 0){
VolumeInteger = 0;
}
if (VolumeInteger > 100){
VolumeInteger = 100;
}
if (VolumeInteger > maxvolume){
VolumeInteger = maxvolume;
}
currentvolume = VolumeInteger;
Volume.vol = VolumeInteger;
Volume.mute = false;
Volume.disableVolumeControl = false;
defer.resolve(Volume)
self.setVolume(VolumeInteger, function (err) {
if (err) {
self.logger.error('Cannot set ALSA Volume: ' + err);
}
});
}
}
return defer.promise
};
CoreVolumeController.prototype.retrievevolume = function () {
var self = this;
var defer = libQ.defer();
if (mixertype === 'None') {
Volume.vol = 100;
Volume.mute = false;
Volume.disableVolumeControl = true;
return libQ.resolve(Volume)
.then(function (Volume) {
defer.resolve(Volume);
self.commandRouter.volumioupdatevolume(Volume);
});
} else if (mixertype === 'Software') {
exec("/usr/bin/amixer -M get -c " + device + " 'SoftMaster' | awk '$0~/%/{print}' | cut -d '[' -f2 | tr -d '[]%' | head -1", function (error, stdout, stderr) {
if (error) {
self.logger.error('Cannot read softvolume: ' + error);
} else {
var volume = stdout.replace('\n','');
currentvolume = volume;
if (currentvolume === '0') {
currentmute = true;
} else {
currentmute = false;
}
Volume.vol = volume;
Volume.mute = currentmute;
Volume.disableVolumeControl = false;
return libQ.resolve(Volume)
.then(function (Volume) {
defer.resolve(Volume);
self.commandRouter.volumioupdatevolume(Volume);
});
}
});
} else {
this.getVolume(function (err, vol) {
self.getMuted(function (err, mute) {
if (err) {
mute = false;
}
//Log volume control
self.logger.info('VolumeController:: Volume=' + vol + ' Mute =' + mute);
if (vol == null) {
vol = currentvolume;
mute = currentmute;
} else {
currentvolume = vol
}
Volume.vol = vol;
Volume.mute = mute;
Volume.disableVolumeControl = false;
return libQ.resolve(Volume)
.then(function (Volume) {
defer.resolve(Volume);
self.commandRouter.volumioupdatevolume(Volume);
});
});
});
}
return defer.promise
};
CoreVolumeController.prototype.setStartupVolume = function () {
var self = this;
var startupVolume = this.commandRouter.executeOnPlugin('audio_interface', 'alsa_controller', 'getConfigParam', 'volumestart');
if (startupVolume != 'disabled') {
self.logger.info('VolumeController:: Setting startup Volume ' + startupVolume);
return self.commandRouter.volumiosetvolume(parseInt(startupVolume));
}
};