add new function pa_yes_no()
[pulseaudio.git] / src / modules / module-mmkbd-evdev.c
blob47a106456646f42514e94cd27381e53eeb39b505
1 /* $Id$ */
3 /***
4 This file is part of PulseAudio.
6 Copyright 2005-2006 Lennart Poettering
8 PulseAudio is free software; you can redistribute it and/or modify
9 it under the terms of the GNU Lesser General Public License as published
10 by the Free Software Foundation; either version 2 of the License,
11 or (at your option) any later version.
13 PulseAudio is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 General Public License for more details.
18 You should have received a copy of the GNU Lesser General Public License
19 along with PulseAudio; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
21 USA.
22 ***/
24 #ifdef HAVE_CONFIG_H
25 #include <config.h>
26 #endif
28 #include <stdio.h>
29 #include <unistd.h>
30 #include <string.h>
31 #include <stdlib.h>
32 #include <errno.h>
33 #include <fcntl.h>
35 #include <linux/input.h>
37 #include <pulse/xmalloc.h>
39 #include <pulsecore/core-error.h>
40 #include <pulsecore/module.h>
41 #include <pulsecore/log.h>
42 #include <pulsecore/namereg.h>
43 #include <pulsecore/sink.h>
44 #include <pulsecore/modargs.h>
45 #include <pulsecore/core-util.h>
47 #include "module-mmkbd-evdev-symdef.h"
49 PA_MODULE_AUTHOR("Lennart Poettering")
50 PA_MODULE_DESCRIPTION("Multimedia keyboard support via Linux evdev")
51 PA_MODULE_VERSION(PACKAGE_VERSION)
52 PA_MODULE_USAGE("device=<evdev device> sink=<sink name>")
54 #define DEFAULT_DEVICE "/dev/input/event0"
57 * This isn't defined in older kernel headers and there is no way of
58 * detecting it.
60 struct _input_id {
61 __u16 bustype;
62 __u16 vendor;
63 __u16 product;
64 __u16 version;
67 static const char* const valid_modargs[] = {
68 "device",
69 "sink",
70 NULL,
73 struct userdata {
74 int fd, fd_type;
75 pa_io_event *io;
76 char *sink_name;
77 pa_module *module;
80 static void io_callback(pa_mainloop_api *io, PA_GCC_UNUSED pa_io_event *e, PA_GCC_UNUSED int fd, pa_io_event_flags_t events, void*userdata) {
81 struct userdata *u = userdata;
83 pa_assert(io);
84 pa_assert(u);
86 if (events & (PA_IO_EVENT_HANGUP|PA_IO_EVENT_ERROR)) {
87 pa_log("Lost connection to evdev device.");
88 goto fail;
91 if (events & PA_IO_EVENT_INPUT) {
92 struct input_event ev;
94 if (pa_loop_read(u->fd, &ev, sizeof(ev), &u->fd_type) <= 0) {
95 pa_log("Failed to read from event device: %s", pa_cstrerror(errno));
96 goto fail;
99 if (ev.type == EV_KEY && (ev.value == 1 || ev.value == 2)) {
100 enum { INVALID, UP, DOWN, MUTE_TOGGLE } volchange = INVALID;
102 pa_log_debug("Key code=%u, value=%u", ev.code, ev.value);
104 switch (ev.code) {
105 case KEY_VOLUMEDOWN: volchange = DOWN; break;
106 case KEY_VOLUMEUP: volchange = UP; break;
107 case KEY_MUTE: volchange = MUTE_TOGGLE; break;
110 if (volchange != INVALID) {
111 pa_sink *s;
113 if (!(s = pa_namereg_get(u->module->core, u->sink_name, PA_NAMEREG_SINK, 1)))
114 pa_log("Failed to get sink '%s'", u->sink_name);
115 else {
116 int i;
117 pa_cvolume cv = *pa_sink_get_volume(s);
119 #define DELTA (PA_VOLUME_NORM/20)
121 switch (volchange) {
122 case UP:
123 for (i = 0; i < cv.channels; i++) {
124 cv.values[i] += DELTA;
126 if (cv.values[i] > PA_VOLUME_NORM)
127 cv.values[i] = PA_VOLUME_NORM;
130 pa_sink_set_volume(s, &cv);
131 break;
133 case DOWN:
134 for (i = 0; i < cv.channels; i++) {
135 if (cv.values[i] >= DELTA)
136 cv.values[i] -= DELTA;
137 else
138 cv.values[i] = PA_VOLUME_MUTED;
141 pa_sink_set_volume(s, &cv);
142 break;
144 case MUTE_TOGGLE:
146 pa_sink_set_mute(s, !pa_sink_get_mute(s));
147 break;
149 case INVALID:
157 return;
159 fail:
160 u->module->core->mainloop->io_free(u->io);
161 u->io = NULL;
163 pa_module_unload_request(u->module);
166 #define test_bit(bit, array) (array[bit/8] & (1<<(bit%8)))
168 int pa__init(pa_module*m) {
170 pa_modargs *ma = NULL;
171 struct userdata *u;
172 int version;
173 struct _input_id input_id;
174 char name[256];
175 uint8_t evtype_bitmask[EV_MAX/8 + 1];
177 pa_assert(m);
179 if (!(ma = pa_modargs_new(m->argument, valid_modargs))) {
180 pa_log("Failed to parse module arguments");
181 goto fail;
184 m->userdata = u = pa_xnew(struct userdata,1);
185 u->module = m;
186 u->io = NULL;
187 u->sink_name = pa_xstrdup(pa_modargs_get_value(ma, "sink", NULL));
188 u->fd = -1;
189 u->fd_type = 0;
191 if ((u->fd = open(pa_modargs_get_value(ma, "device", DEFAULT_DEVICE), O_RDONLY)) < 0) {
192 pa_log("failed to open evdev device: %s", pa_cstrerror(errno));
193 goto fail;
196 if (ioctl(u->fd, EVIOCGVERSION, &version) < 0) {
197 pa_log("EVIOCGVERSION failed: %s", pa_cstrerror(errno));
198 goto fail;
201 pa_log_info("evdev driver version %i.%i.%i", version >> 16, (version >> 8) & 0xff, version & 0xff);
203 if(ioctl(u->fd, EVIOCGID, &input_id)) {
204 pa_log("EVIOCGID failed: %s", pa_cstrerror(errno));
205 goto fail;
208 pa_log_info("evdev vendor 0x%04hx product 0x%04hx version 0x%04hx bustype %u",
209 input_id.vendor, input_id.product, input_id.version, input_id.bustype);
211 memset(name, 0, sizeof(name));
212 if(ioctl(u->fd, EVIOCGNAME(sizeof(name)), name) < 0) {
213 pa_log("EVIOCGNAME failed: %s", pa_cstrerror(errno));
214 goto fail;
217 pa_log_info("evdev device name: %s", name);
219 memset(evtype_bitmask, 0, sizeof(evtype_bitmask));
220 if (ioctl(u->fd, EVIOCGBIT(0, EV_MAX), evtype_bitmask) < 0) {
221 pa_log("EVIOCGBIT failed: %s", pa_cstrerror(errno));
222 goto fail;
225 if (!test_bit(EV_KEY, evtype_bitmask)) {
226 pa_log("Device has no keys.");
227 goto fail;
230 u->io = m->core->mainloop->io_new(m->core->mainloop, u->fd, PA_IO_EVENT_INPUT|PA_IO_EVENT_HANGUP, io_callback, u);
232 pa_modargs_free(ma);
234 return 0;
236 fail:
238 if (ma)
239 pa_modargs_free(ma);
241 pa__done(m);
242 return -1;
245 void pa__done(pa_module*m) {
246 struct userdata *u;
248 pa_assert(m);
250 if (!(u = m->userdata))
251 return;
253 if (u->io)
254 m->core->mainloop->io_free(u->io);
256 if (u->fd >= 0)
257 pa_assert_se(pa_close(u->fd) == 0);
259 pa_xfree(u->sink_name);
260 pa_xfree(u);