Reformatted all code
[monky] / src / mixer.c
1 /* Conky, a system monitor, based on torsmo
2  *
3  * Any original torsmo code is licensed under the BSD license
4  *
5  * All code written since the fork of torsmo is licensed under the GPL
6  *
7  * Please see COPYING for details
8  *
9  * Copyright (c) 2004, Hannu Saransaari and Lauri Hakkarainen
10  * Copyright (c) 2005-2007 Brenden Matthews, Philip Kovacs, et. al.
11  *      (see AUTHORS)
12  * All rights reserved.
13  *
14  * This program is free software: you can redistribute it and/or modify
15  * it under the terms of the GNU General Public License as published by
16  * the Free Software Foundation, either version 3 of the License, or
17  * (at your option) any later version.
18  *
19  * This program is distributed in the hope that it will be useful,
20  * but WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  * GNU General Public License for more details.
23  * You should have received a copy of the GNU General Public License
24  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
25  *
26  * $Id$ */
27
28 #include <sys/ioctl.h>
29
30 #include <errno.h>
31 #include <fcntl.h>
32 #include <string.h>
33 #include <stdlib.h>
34
35 #include "conky.h"
36
37 #ifdef HAVE_LINUX_SOUNDCARD_H
38 #include <linux/soundcard.h>
39 #else
40 #ifdef __OpenBSD__
41 #include <soundcard.h>
42 #else
43 #include <sys/soundcard.h>
44 #endif /* __OpenBSD__ */
45 #endif /* HAVE_LINUX_SOUNDCARD_H */
46
47 #define MIXER_DEV "/dev/mixer"
48
49 static int mixer_fd;
50 static const char *devs[] = SOUND_DEVICE_NAMES;
51
52 int mixer_init(const char *name)
53 {
54         unsigned int i;
55
56         if (name == 0 || name[0] == '\0') {
57                 name = "vol";
58         }
59
60         /* open mixer */
61         if (mixer_fd <= 0) {
62                 mixer_fd = open(MIXER_DEV, O_RDONLY);
63                 if (mixer_fd == -1) {
64                         ERR("can't open %s: %s", MIXER_DEV, strerror(errno));
65                         return -1;
66                 }
67         }
68
69         for (i = 0; i < sizeof(devs) / sizeof(const char *); i++) {
70                 if (strcasecmp(devs[i], name) == 0) {
71                         return i;
72                 }
73         }
74
75         return -1;
76 }
77
78 static int mixer_get(int i)
79 {
80         static char rep = 0;
81         int val = -1;
82
83         if (ioctl(mixer_fd, MIXER_READ(i), &val) == -1) {
84                 if (!rep) {
85                         ERR("mixer ioctl: %s", strerror(errno));
86                 }
87                 rep = 1;
88                 return 0;
89         }
90         rep = 0;
91
92         return val;
93 }
94
95 int mixer_get_avg(int i)
96 {
97         int v = mixer_get(i);
98
99         return ((v >> 8) + (v & 0xFF)) / 2;
100 }
101
102 int mixer_get_left(int i)
103 {
104         return mixer_get(i) >> 8;
105 }
106
107 int mixer_get_right(int i)
108 {
109         return mixer_get(i) & 0xFF;
110 }