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