4 This file is part of PulseAudio.
6 PulseAudio is free software; you can redistribute it and/or modify
7 it under the terms of the GNU Lesser General Public License as published
8 by the Free Software Foundation; either version 2 of the License,
9 or (at your option) any later version.
11 PulseAudio is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public License
17 along with PulseAudio; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
32 #include <X11/XKBlib.h>
34 #include <pulse/xmalloc.h>
36 #include <pulsecore/iochannel.h>
37 #include <pulsecore/sink.h>
38 #include <pulsecore/core-scache.h>
39 #include <pulsecore/modargs.h>
40 #include <pulsecore/namereg.h>
41 #include <pulsecore/log.h>
42 #include <pulsecore/x11wrap.h>
44 #include "module-x11-bell-symdef.h"
46 PA_MODULE_AUTHOR("Lennart Poettering")
47 PA_MODULE_DESCRIPTION("X11 Bell interceptor")
48 PA_MODULE_VERSION(PACKAGE_VERSION
)
49 PA_MODULE_USAGE("sink=<sink to connect to> sample=<sample name> display=<X11 display>")
57 pa_x11_wrapper
*x11_wrapper
;
58 pa_x11_client
*x11_client
;
61 static const char* const valid_modargs
[] = {
68 static int ring_bell(struct userdata
*u
, int percent
) {
72 if (!(s
= pa_namereg_get(u
->core
, u
->sink_name
, PA_NAMEREG_SINK
, 1))) {
73 pa_log(__FILE__
": Invalid sink: %s", u
->sink_name
);
77 pa_scache_play_item(u
->core
, u
->scache_item
, s
, (percent
*PA_VOLUME_NORM
)/100);
81 static int x11_event_callback(pa_x11_wrapper
*w
, XEvent
*e
, void *userdata
) {
82 XkbBellNotifyEvent
*bne
;
83 struct userdata
*u
= userdata
;
84 assert(w
&& e
&& u
&& u
->x11_wrapper
== w
);
86 if (((XkbEvent
*) e
)->any
.xkb_type
!= XkbBellNotify
)
89 bne
= (XkbBellNotifyEvent
*) e
;
91 if (ring_bell(u
, bne
->percent
) < 0) {
92 pa_log_info(__FILE__
": Ringing bell failed, reverting to X11 device bell.");
93 XkbForceDeviceBell(pa_x11_wrapper_get_display(w
), bne
->device
, bne
->bell_class
, bne
->bell_id
, bne
->percent
);
99 int pa__init(pa_core
*c
, pa_module
*m
) {
100 struct userdata
*u
= NULL
;
101 pa_modargs
*ma
= NULL
;
103 unsigned int auto_ctrls
, auto_values
;
106 if (!(ma
= pa_modargs_new(m
->argument
, valid_modargs
))) {
107 pa_log(__FILE__
": failed to parse module arguments");
111 m
->userdata
= u
= pa_xmalloc(sizeof(struct userdata
));
113 u
->scache_item
= pa_xstrdup(pa_modargs_get_value(ma
, "sample", "x11-bell"));
114 u
->sink_name
= pa_xstrdup(pa_modargs_get_value(ma
, "sink", NULL
));
115 u
->x11_client
= NULL
;
117 if (!(u
->x11_wrapper
= pa_x11_wrapper_get(c
, pa_modargs_get_value(ma
, "display", NULL
))))
120 major
= XkbMajorVersion
;
121 minor
= XkbMinorVersion
;
123 if (!XkbLibraryVersion(&major
, &minor
)) {
124 pa_log(__FILE__
": XkbLibraryVersion() failed");
128 major
= XkbMajorVersion
;
129 minor
= XkbMinorVersion
;
132 if (!XkbQueryExtension(pa_x11_wrapper_get_display(u
->x11_wrapper
), NULL
, &u
->xkb_event_base
, NULL
, &major
, &minor
)) {
133 pa_log(__FILE__
": XkbQueryExtension() failed");
137 XkbSelectEvents(pa_x11_wrapper_get_display(u
->x11_wrapper
), XkbUseCoreKbd
, XkbBellNotifyMask
, XkbBellNotifyMask
);
138 auto_ctrls
= auto_values
= XkbAudibleBellMask
;
139 XkbSetAutoResetControls(pa_x11_wrapper_get_display(u
->x11_wrapper
), XkbAudibleBellMask
, &auto_ctrls
, &auto_values
);
140 XkbChangeEnabledControls(pa_x11_wrapper_get_display(u
->x11_wrapper
), XkbUseCoreKbd
, XkbAudibleBellMask
, 0);
142 u
->x11_client
= pa_x11_client_new(u
->x11_wrapper
, x11_event_callback
, u
);
156 void pa__done(pa_core
*c
, pa_module
*m
) {
157 struct userdata
*u
= m
->userdata
;
160 pa_xfree(u
->scache_item
);
161 pa_xfree(u
->sink_name
);
164 pa_x11_client_free(u
->x11_client
);
167 pa_x11_wrapper_unref(u
->x11_wrapper
);