ec5c35ec9f
This is a first step to decouple formatting from information because of two reasons: 1. The components should only gather and return the values by design 2. Fine grained user control should be a focus Scaling will be implemented in a different way in a later commit.
47 lines
921 B
C
47 lines
921 B
C
/* See LICENSE file for copyright and license details. */
|
|
#include <errno.h>
|
|
#include <fcntl.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#if defined(__OpenBSD__)
|
|
#include <soundcard.h>
|
|
#else
|
|
#include <sys/soundcard.h>
|
|
#endif
|
|
#include <sys/ioctl.h>
|
|
#include <unistd.h>
|
|
|
|
#include "../util.h"
|
|
|
|
const char *
|
|
vol_perc(const char *card)
|
|
{
|
|
size_t i;
|
|
int v, afd, devmask;
|
|
char *vnames[] = SOUND_DEVICE_NAMES;
|
|
|
|
if ((afd = open(card, O_RDONLY | O_NONBLOCK)) < 0) {
|
|
warn("open '%s':", card);
|
|
return NULL;
|
|
}
|
|
|
|
if (ioctl(afd, (int)SOUND_MIXER_READ_DEVMASK, &devmask) < 0) {
|
|
warn("ioctl 'SOUND_MIXER_READ_DEVMASK':");
|
|
close(afd);
|
|
return NULL;
|
|
}
|
|
for (i = 0; i < LEN(vnames); i++) {
|
|
if (devmask & (1 << i) && !strcmp("vol", vnames[i])) {
|
|
if (ioctl(afd, MIXER_READ(i), &v) < 0) {
|
|
warn("ioctl 'MIXER_READ(%ld)':", i);
|
|
close(afd);
|
|
return NULL;
|
|
}
|
|
}
|
|
}
|
|
|
|
close(afd);
|
|
|
|
return bprintf("%d", v & 0xff);
|
|
}
|