2018-05-12 16:03:00 +00:00
|
|
|
/*
|
2009-07-28 21:44:22 +00:00
|
|
|
*
|
|
|
|
* Conky, a system monitor, based on torsmo
|
2005-08-05 01:06:17 +00:00
|
|
|
*
|
2007-08-10 19:53:44 +00:00
|
|
|
* Any original torsmo code is licensed under the BSD license
|
|
|
|
*
|
|
|
|
* All code written since the fork of torsmo is licensed under the GPL
|
|
|
|
*
|
|
|
|
* Please see COPYING for details
|
|
|
|
*
|
|
|
|
* Copyright (c) 2004, Hannu Saransaari and Lauri Hakkarainen
|
2019-01-05 15:52:43 +00:00
|
|
|
* Copyright (c) 2005-2019 Brenden Matthews, Philip Kovacs, et. al.
|
2008-02-20 20:30:45 +00:00
|
|
|
* (see AUTHORS)
|
2007-08-10 19:53:44 +00:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2008-02-20 20:30:45 +00:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2005-08-05 01:06:17 +00:00
|
|
|
*
|
2008-12-09 23:35:49 +00:00
|
|
|
*/
|
2005-08-05 01:06:17 +00:00
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
#include <ctype.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <sys/ioctl.h>
|
2008-03-29 12:44:29 +00:00
|
|
|
#include "conky.h"
|
2008-12-15 21:40:24 +00:00
|
|
|
#include "logging.h"
|
2009-08-05 22:46:51 +00:00
|
|
|
#include "specials.h"
|
2009-10-06 19:48:26 +00:00
|
|
|
#include "text_object.h"
|
2005-07-20 00:30:40 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_LINUX_SOUNDCARD_H
|
|
|
|
#include <linux/soundcard.h>
|
|
|
|
#else
|
2007-03-01 01:43:43 +00:00
|
|
|
#ifdef __OpenBSD__
|
|
|
|
#include <soundcard.h>
|
|
|
|
#else
|
2005-07-20 00:30:40 +00:00
|
|
|
#include <sys/soundcard.h>
|
2008-02-20 20:30:45 +00:00
|
|
|
#endif /* __OpenBSD__ */
|
|
|
|
#endif /* HAVE_LINUX_SOUNDCARD_H */
|
2005-07-20 00:30:40 +00:00
|
|
|
|
2018-01-19 14:00:42 +00:00
|
|
|
#if defined(__sun)
|
|
|
|
#include <stropts.h>
|
2018-05-12 16:03:00 +00:00
|
|
|
#include <unistd.h>
|
2018-01-19 14:00:42 +00:00
|
|
|
#endif
|
|
|
|
|
2005-07-20 00:30:40 +00:00
|
|
|
#define MIXER_DEV "/dev/mixer"
|
|
|
|
|
|
|
|
static int mixer_fd;
|
|
|
|
static const char *devs[] = SOUND_DEVICE_NAMES;
|
2009-04-28 16:56:49 +00:00
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
int mixer_init(const char *name) {
|
|
|
|
unsigned int i;
|
|
|
|
|
2019-02-23 19:40:34 +00:00
|
|
|
if (name == 0 || name[0] == '\0') { name = "vol"; }
|
2018-05-12 16:03:00 +00:00
|
|
|
|
|
|
|
/* open mixer */
|
|
|
|
if (mixer_fd <= 0) {
|
|
|
|
mixer_fd = open(MIXER_DEV, O_RDONLY);
|
|
|
|
if (mixer_fd == -1) {
|
|
|
|
NORM_ERR("can't open %s: %s", MIXER_DEV, strerror(errno));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < sizeof(devs) / sizeof(const char *); i++) {
|
2019-02-23 19:40:34 +00:00
|
|
|
if (strcasecmp(devs[i], name) == 0) { return i; }
|
2018-05-12 16:03:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
2005-07-20 00:30:40 +00:00
|
|
|
}
|
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
static int mixer_get(int i) {
|
|
|
|
static char rep = 0;
|
|
|
|
int val = -1;
|
2005-07-20 00:30:40 +00:00
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
if (ioctl(mixer_fd, MIXER_READ(i), &val) == -1) {
|
2019-02-23 19:40:34 +00:00
|
|
|
if (!rep) { NORM_ERR("mixer ioctl: %s", strerror(errno)); }
|
2018-05-12 16:03:00 +00:00
|
|
|
rep = 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
rep = 0;
|
2008-02-20 20:30:45 +00:00
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
return val;
|
2005-07-20 00:30:40 +00:00
|
|
|
}
|
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
static int mixer_get_avg(int i) {
|
|
|
|
int v = mixer_get(i);
|
2005-07-20 00:30:40 +00:00
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
return ((v >> 8) + (v & 0xFF)) / 2;
|
2009-04-28 16:56:49 +00:00
|
|
|
}
|
2009-08-05 22:46:51 +00:00
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
static int mixer_get_left(int i) { return mixer_get(i) >> 8; }
|
|
|
|
|
|
|
|
static int mixer_get_right(int i) { return mixer_get(i) & 0xFF; }
|
|
|
|
int mixer_is_mute(int i) { return !mixer_get(i); }
|
|
|
|
|
2009-10-06 19:48:26 +00:00
|
|
|
#define mixer_to_255(i, x) x
|
2009-08-05 22:46:51 +00:00
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
void parse_mixer_arg(struct text_object *obj, const char *arg) {
|
|
|
|
obj->data.l = mixer_init(arg);
|
2009-10-06 19:48:26 +00:00
|
|
|
}
|
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
uint8_t mixer_percentage(struct text_object *obj) {
|
|
|
|
return mixer_get_avg(obj->data.l);
|
2009-11-08 15:36:35 +00:00
|
|
|
}
|
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
uint8_t mixerl_percentage(struct text_object *obj) {
|
|
|
|
return mixer_get_left(obj->data.l);
|
2009-11-08 15:36:35 +00:00
|
|
|
}
|
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
uint8_t mixerr_percentage(struct text_object *obj) {
|
|
|
|
return mixer_get_right(obj->data.l);
|
2009-11-08 15:36:35 +00:00
|
|
|
}
|
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
int check_mixer_muted(struct text_object *obj) {
|
|
|
|
if (!mixer_is_mute(obj->data.l)) return 0;
|
|
|
|
return 1;
|
2009-10-06 19:48:26 +00:00
|
|
|
}
|
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
void scan_mixer_bar(struct text_object *obj, const char *arg) {
|
|
|
|
char buf1[64];
|
|
|
|
int n;
|
|
|
|
|
|
|
|
if (arg && sscanf(arg, "%63s %n", buf1, &n) >= 1) {
|
|
|
|
obj->data.i = mixer_init(buf1);
|
|
|
|
scan_bar(obj, arg + n, 100);
|
|
|
|
} else {
|
2018-05-12 23:26:31 +00:00
|
|
|
obj->data.i = mixer_init(nullptr);
|
2018-05-12 16:03:00 +00:00
|
|
|
scan_bar(obj, arg, 100);
|
|
|
|
}
|
2009-08-05 22:46:51 +00:00
|
|
|
}
|
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
double mixer_barval(struct text_object *obj) {
|
|
|
|
return mixer_to_255(obj->data.i, mixer_get_avg(obj->data.i));
|
2009-11-08 15:36:35 +00:00
|
|
|
}
|
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
double mixerl_barval(struct text_object *obj) {
|
|
|
|
return mixer_to_255(obj->data.i, mixer_get_left(obj->data.i));
|
2009-11-08 15:36:35 +00:00
|
|
|
}
|
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
double mixerr_barval(struct text_object *obj) {
|
|
|
|
return mixer_to_255(obj->data.i, mixer_get_right(obj->data.i));
|
2009-11-08 15:36:35 +00:00
|
|
|
}
|