summaryrefslogtreecommitdiffstats
path: root/polyp/module-x11-bell.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2004-10-30 01:55:16 +0000
committerLennart Poettering <lennart@poettering.net>2004-10-30 01:55:16 +0000
commit899788b4c5e23af9dabfb98c5f864c2f933804f4 (patch)
treed31b7ae1a90099163e2bd4f6307e84141d49fb02 /polyp/module-x11-bell.c
parent4e5c44de30de40b80354820f8ac1738a9636515a (diff)
some updates for pa_hashmap
add property infrastructure add module module-x11-publish allow ldpreloading of all modules abstract x11wrap from module-x11-bell git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@268 fefdeb5f-60dc-0310-8127-8f9354f1896f
Diffstat (limited to 'polyp/module-x11-bell.c')
-rw-r--r--polyp/module-x11-bell.c84
1 files changed, 33 insertions, 51 deletions
diff --git a/polyp/module-x11-bell.c b/polyp/module-x11-bell.c
index ae69f9cb..23433c8f 100644
--- a/polyp/module-x11-bell.c
+++ b/polyp/module-x11-bell.c
@@ -38,25 +38,23 @@
#include "xmalloc.h"
#include "namereg.h"
#include "log.h"
+#include "x11wrap.h"
+#include "module-x11-bell-symdef.h"
PA_MODULE_AUTHOR("Lennart Poettering")
PA_MODULE_DESCRIPTION("X11 Bell interceptor")
PA_MODULE_VERSION(PACKAGE_VERSION)
PA_MODULE_USAGE("sink=<sink to connect to> sample=<sample name> display=<X11 display>")
-struct x11_source {
- struct pa_io_event *io_event;
- struct x11_source *next;
-};
-
struct userdata {
struct pa_core *core;
- Display *display;
- struct x11_source *x11_sources;
int xkb_event_base;
-
char *sink_name;
char *scache_item;
+ Display *display;
+
+ struct pa_x11_wrapper *x11_wrapper;
+ struct pa_x11_client *x11_client;
};
static const char* const valid_modargs[] = {
@@ -79,35 +77,22 @@ static int ring_bell(struct userdata *u, int percent) {
return 0;
}
-static void io_callback(struct pa_mainloop_api*a, struct pa_io_event *e, int fd, enum pa_io_event_flags f, void *userdata) {
+static int x11_event_callback(struct pa_x11_wrapper *w, XEvent *e, void *userdata) {
+ XkbBellNotifyEvent *bne;
struct userdata *u = userdata;
- assert(u);
-
- while (XPending(u->display)) {
- XEvent e;
- XkbBellNotifyEvent *bne;
- XNextEvent(u->display, &e);
-
- if (((XkbEvent*) &e)->any.xkb_type != XkbBellNotify)
- continue;
-
- bne = ((XkbBellNotifyEvent*) &e);
-
- if (ring_bell(u, bne->percent) < 0) {
- pa_log(__FILE__": Ringing bell failed, reverting to X11 device bell.\n");
- XkbForceDeviceBell(u->display, bne->device, bne->bell_class, bne->bell_id, bne->percent);
- }
- }
-}
+ assert(w && e && u && u->x11_wrapper == w);
+
+ if (((XkbEvent*) e)->any.xkb_type != XkbBellNotify)
+ return 0;
+
+ bne = (XkbBellNotifyEvent*) e;
-static void new_io_source(struct userdata *u, int fd) {
- struct x11_source *s;
+ if (ring_bell(u, bne->percent) < 0) {
+ pa_log(__FILE__": Ringing bell failed, reverting to X11 device bell.\n");
+ XkbForceDeviceBell(pa_x11_wrapper_get_display(w), bne->device, bne->bell_class, bne->bell_id, bne->percent);
+ }
- s = pa_xmalloc(sizeof(struct x11_source));
- s->io_event = u->core->mainloop->io_new(u->core->mainloop, fd, PA_IO_EVENT_INPUT, io_callback, u);
- assert(s->io_event);
- s->next = u->x11_sources;
- u->x11_sources = s;
+ return 1;
}
int pa__init(struct pa_core *c, struct pa_module*m) {
@@ -124,18 +109,15 @@ int pa__init(struct pa_core *c, struct pa_module*m) {
m->userdata = u = pa_xmalloc(sizeof(struct userdata));
u->core = c;
- u->display = NULL;
- u->x11_sources = NULL;
u->scache_item = pa_xstrdup(pa_modargs_get_value(ma, "sample", "x11-bell"));
u->sink_name = pa_xstrdup(pa_modargs_get_value(ma, "sink", NULL));
+ u->x11_client = NULL;
- if (!(u->display = XOpenDisplay(pa_modargs_get_value(ma, "display", NULL)))) {
- pa_log(__FILE__": XOpenDisplay() failed\n");
+ if (!(u->x11_wrapper = pa_x11_wrapper_get(c, pa_modargs_get_value(ma, "display", NULL))))
goto fail;
- }
-
- new_io_source(u, ConnectionNumber(u->display));
+ u->display = pa_x11_wrapper_get_display(u->x11_wrapper);
+
major = XkbMajorVersion;
minor = XkbMinorVersion;
@@ -147,6 +129,7 @@ int pa__init(struct pa_core *c, struct pa_module*m) {
major = XkbMajorVersion;
minor = XkbMinorVersion;
+
if (!XkbQueryExtension(u->display, NULL, &u->xkb_event_base, NULL, &major, &minor)) {
pa_log(__FILE__": XkbQueryExtension() failed\n");
goto fail;
@@ -157,6 +140,8 @@ int pa__init(struct pa_core *c, struct pa_module*m) {
XkbSetAutoResetControls(u->display, XkbAudibleBellMask, &auto_ctrls, &auto_values);
XkbChangeEnabledControls(u->display, XkbUseCoreKbd, XkbAudibleBellMask, 0);
+ u->x11_client = pa_x11_client_new(u->x11_wrapper, x11_event_callback, u);
+
pa_modargs_free(ma);
return 0;
@@ -173,17 +158,14 @@ void pa__done(struct pa_core *c, struct pa_module*m) {
struct userdata *u = m->userdata;
assert(c && m && u);
- while (u->x11_sources) {
- struct x11_source *s = u->x11_sources;
- u->x11_sources = u->x11_sources->next;
- c->mainloop->io_free(s->io_event);
- pa_xfree(s);
- }
-
pa_xfree(u->scache_item);
pa_xfree(u->sink_name);
-
- if (u->display)
- XCloseDisplay(u->display);
+
+ if (u->x11_client)
+ pa_x11_client_free(u->x11_client);
+
+ if (u->x11_wrapper)
+ pa_x11_wrapper_unref(u->x11_wrapper);
+
pa_xfree(u);
}