Add copyright notices to all relevant files. (based on svn log)
[profile/ivi/pulseaudio.git] / src / modules / module-mmkbd-evdev.c
1 /* $Id$ */
2
3 /***
4   This file is part of PulseAudio.
5
6   Copyright 2005-2006 Lennart Poettering
7
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.
12
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.
17
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 ***/
23
24 #ifdef HAVE_CONFIG_H
25 #include <config.h>
26 #endif
27
28 #include <stdio.h>
29 #include <assert.h>
30 #include <unistd.h>
31 #include <string.h>
32 #include <stdlib.h>
33 #include <errno.h>
34 #include <fcntl.h>
35
36 #include <linux/input.h>
37
38 #include <pulse/xmalloc.h>
39
40 #include <pulsecore/core-error.h>
41 #include <pulsecore/module.h>
42 #include <pulsecore/log.h>
43 #include <pulsecore/namereg.h>
44 #include <pulsecore/sink.h>
45 #include <pulsecore/modargs.h>
46 #include <pulsecore/core-util.h>
47
48 #include "module-mmkbd-evdev-symdef.h"
49
50 PA_MODULE_AUTHOR("Lennart Poettering")
51 PA_MODULE_DESCRIPTION("Multimedia keyboard support via Linux evdev")
52 PA_MODULE_VERSION(PACKAGE_VERSION)
53 PA_MODULE_USAGE("device=<evdev device> sink=<sink name>")
54
55 #define DEFAULT_DEVICE "/dev/input/event0"
56
57 /*
58  * This isn't defined in older kernel headers and there is no way of
59  * detecting it.
60  */
61 struct _input_id {
62     __u16 bustype;
63     __u16 vendor;
64     __u16 product;
65     __u16 version;
66 };
67
68 static const char* const valid_modargs[] = {
69     "device",
70     "sink",
71     NULL,
72 };
73
74 struct userdata {
75     int fd, fd_type;
76     pa_io_event *io;
77     char *sink_name;
78     pa_module *module;
79 };
80
81 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) {
82     struct userdata *u = userdata;
83     assert(io);
84     assert(u);
85
86     if (events & (PA_IO_EVENT_HANGUP|PA_IO_EVENT_ERROR)) {
87         pa_log("lost connection to evdev device.");
88         goto fail;
89     }
90
91     if (events & PA_IO_EVENT_INPUT) {
92         struct input_event ev;
93
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;
97         }
98
99         if (ev.type == EV_KEY && (ev.value == 1 || ev.value == 2)) {
100             enum { INVALID, UP, DOWN, MUTE_TOGGLE } volchange = INVALID;
101
102             pa_log_debug("key code=%u, value=%u", ev.code, ev.value);
103
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;
108             }
109
110             if (volchange != INVALID) {
111                 pa_sink *s;
112
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, PA_MIXER_HARDWARE);
118
119 #define DELTA (PA_VOLUME_NORM/20)
120
121                     switch (volchange) {
122                         case UP:
123                             for (i = 0; i < cv.channels; i++) {
124                                 cv.values[i] += DELTA;
125
126                                 if (cv.values[i] > PA_VOLUME_NORM)
127                                     cv.values[i] = PA_VOLUME_NORM;
128                             }
129
130                             pa_sink_set_volume(s, PA_MIXER_HARDWARE, &cv);
131                             break;
132
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;
139                             }
140
141                             pa_sink_set_volume(s, PA_MIXER_HARDWARE, &cv);
142                             break;
143
144                         case MUTE_TOGGLE:
145
146                             pa_sink_set_mute(s, PA_MIXER_HARDWARE, !pa_sink_get_mute(s, PA_MIXER_HARDWARE));
147                             break;
148
149                         case INVALID:
150                             ;
151                     }
152                 }
153             }
154         }
155     }
156
157     return;
158
159 fail:
160     u->module->core->mainloop->io_free(u->io);
161     u->io = NULL;
162
163     pa_module_unload_request(u->module);
164 }
165
166 #define test_bit(bit, array) (array[bit/8] & (1<<(bit%8)))
167
168 int pa__init(pa_core *c, pa_module*m) {
169     pa_modargs *ma = NULL;
170     struct userdata *u;
171     int version;
172     struct _input_id input_id;
173     char name[256];
174     uint8_t evtype_bitmask[EV_MAX/8 + 1];
175     assert(c && m);
176
177     if (!(ma = pa_modargs_new(m->argument, valid_modargs))) {
178         pa_log("Failed to parse module arguments");
179         goto fail;
180     }
181
182     m->userdata = u = pa_xmalloc(sizeof(struct userdata));
183     u->module = m;
184     u->io = NULL;
185     u->sink_name = pa_xstrdup(pa_modargs_get_value(ma, "sink", NULL));
186     u->fd = -1;
187     u->fd_type = 0;
188
189     if ((u->fd = open(pa_modargs_get_value(ma, "device", DEFAULT_DEVICE), O_RDONLY)) < 0) {
190         pa_log("failed to open evdev device: %s", pa_cstrerror(errno));
191         goto fail;
192     }
193
194     if (ioctl(u->fd, EVIOCGVERSION, &version) < 0) {
195         pa_log("EVIOCGVERSION failed: %s", pa_cstrerror(errno));
196         goto fail;
197     }
198
199     pa_log_info("evdev driver version %i.%i.%i", version >> 16, (version >> 8) & 0xff, version & 0xff);
200
201     if(ioctl(u->fd, EVIOCGID, &input_id)) {
202         pa_log("EVIOCGID failed: %s", pa_cstrerror(errno));
203         goto fail;
204     }
205
206     pa_log_info("evdev vendor 0x%04hx product 0x%04hx version 0x%04hx bustype %u",
207                 input_id.vendor, input_id.product, input_id.version, input_id.bustype);
208
209     memset(name, 0, sizeof(name));
210     if(ioctl(u->fd, EVIOCGNAME(sizeof(name)), name) < 0) {
211         pa_log("EVIOCGNAME failed: %s", pa_cstrerror(errno));
212         goto fail;
213     }
214
215     pa_log_info("evdev device name: %s", name);
216
217     memset(evtype_bitmask, 0, sizeof(evtype_bitmask));
218     if (ioctl(u->fd, EVIOCGBIT(0, EV_MAX), evtype_bitmask) < 0) {
219         pa_log("EVIOCGBIT failed: %s", pa_cstrerror(errno));
220         goto fail;
221     }
222
223     if (!test_bit(EV_KEY, evtype_bitmask)) {
224         pa_log("device has no keys.");
225         goto fail;
226     }
227
228     u->io = c->mainloop->io_new(c->mainloop, u->fd, PA_IO_EVENT_INPUT|PA_IO_EVENT_HANGUP, io_callback, u);
229
230     pa_modargs_free(ma);
231
232     return 0;
233
234 fail:
235
236     if (ma)
237         pa_modargs_free(ma);
238
239     pa__done(c, m);
240     return -1;
241 }
242
243 void pa__done(pa_core *c, pa_module*m) {
244     struct userdata *u;
245     assert(c);
246     assert(m);
247
248     if (!(u = m->userdata))
249         return;
250
251     if (u->io)
252         m->core->mainloop->io_free(u->io);
253
254     if (u->fd >= 0)
255         close(u->fd);
256
257     pa_xfree(u->sink_name);
258     pa_xfree(u);
259 }