2017-09-17 23:45:03 +08:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
2018-03-29 01:46:27 +08:00
|
|
|
#include <errno.h>
|
2017-09-17 22:18:17 +08:00
|
|
|
#include <fcntl.h>
|
2018-05-07 17:21:59 +08:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
2018-04-29 21:41:18 +08:00
|
|
|
#if defined(__OpenBSD__)
|
2018-05-07 17:21:59 +08:00
|
|
|
#include <soundcard.h>
|
2018-04-29 21:41:18 +08:00
|
|
|
#else
|
2018-05-07 17:21:59 +08:00
|
|
|
#include <sys/soundcard.h>
|
2018-04-29 21:41:18 +08:00
|
|
|
#endif
|
2017-09-17 22:18:17 +08:00
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2017-09-24 21:33:01 +08:00
|
|
|
#include "../util.h"
|
2017-09-17 22:18:17 +08:00
|
|
|
|
|
|
|
const char *
|
|
|
|
vol_perc(const char *card)
|
|
|
|
{
|
2018-05-17 23:40:11 +08:00
|
|
|
size_t i;
|
2017-09-17 22:18:17 +08:00
|
|
|
int v, afd, devmask;
|
|
|
|
char *vnames[] = SOUND_DEVICE_NAMES;
|
|
|
|
|
2018-05-07 04:28:56 +08:00
|
|
|
if ((afd = open(card, O_RDONLY | O_NONBLOCK)) < 0) {
|
2018-05-18 16:59:05 +08:00
|
|
|
warn("open '%s':", card);
|
2017-09-17 22:18:17 +08:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2018-05-07 04:28:56 +08:00
|
|
|
if (ioctl(afd, (int)SOUND_MIXER_READ_DEVMASK, &devmask) < 0) {
|
2018-05-18 16:59:05 +08:00
|
|
|
warn("ioctl 'SOUND_MIXER_READ_DEVMASK':");
|
2017-09-17 22:18:17 +08:00
|
|
|
close(afd);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
for (i = 0; i < LEN(vnames); i++) {
|
|
|
|
if (devmask & (1 << i) && !strcmp("vol", vnames[i])) {
|
2018-05-07 04:28:56 +08:00
|
|
|
if (ioctl(afd, MIXER_READ(i), &v) < 0) {
|
2018-05-18 16:59:05 +08:00
|
|
|
warn("ioctl 'MIXER_READ(%ld)':", i);
|
2017-09-17 22:18:17 +08:00
|
|
|
close(afd);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
close(afd);
|
|
|
|
|
2018-05-21 06:16:54 +08:00
|
|
|
return bprintf("%d", v & 0xff);
|
2017-09-17 22:18:17 +08:00
|
|
|
}
|