]> code.delx.au - pulseaudio/blob - src/polyp/client-conf-x11.c
Cleaned up the includes after the restructuring. Indicate which headers are
[pulseaudio] / src / polyp / client-conf-x11.c
1 /* $Id$ */
2
3 /***
4 This file is part of polypaudio.
5
6 polypaudio 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.
10
11 polypaudio 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.
15
16 You should have received a copy of the GNU Lesser General Public License
17 along with polypaudio; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-13071
19 USA.
20 ***/
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <string.h>
27 #include <assert.h>
28
29 #include <X11/Xlib.h>
30 #include <X11/Xatom.h>
31
32 #include <polypcore/x11prop.h>
33 #include <polypcore/log.h>
34 #include <polypcore/xmalloc.h>
35 #include <polypcore/util.h>
36
37 #include "client-conf-x11.h"
38
39 int pa_client_conf_from_x11(pa_client_conf *c, const char *dname) {
40 Display *d = NULL;
41 int ret = -1;
42 char t[1024];
43
44 if (!dname && !getenv("DISPLAY"))
45 goto finish;
46
47 if (!(d = XOpenDisplay(dname))) {
48 pa_log(__FILE__": XOpenDisplay() failed\n");
49 goto finish;
50 }
51
52 if (pa_x11_get_prop(d, "POLYP_SERVER", t, sizeof(t))) {
53 pa_xfree(c->default_server);
54 c->default_server = pa_xstrdup(t);
55 }
56
57 if (pa_x11_get_prop(d, "POLYP_SINK", t, sizeof(t))) {
58 pa_xfree(c->default_sink);
59 c->default_sink = pa_xstrdup(t);
60 }
61
62 if (pa_x11_get_prop(d, "POLYP_SOURCE", t, sizeof(t))) {
63 pa_xfree(c->default_source);
64 c->default_source = pa_xstrdup(t);
65 }
66
67 if (pa_x11_get_prop(d, "POLYP_COOKIE", t, sizeof(t))) {
68 uint8_t cookie[PA_NATIVE_COOKIE_LENGTH];
69
70 if (pa_parsehex(t, cookie, sizeof(cookie)) != sizeof(cookie)) {
71 pa_log(__FILE__": failed to parse cookie data\n");
72 goto finish;
73 }
74
75 assert(sizeof(cookie) == sizeof(c->cookie));
76 memcpy(c->cookie, cookie, sizeof(cookie));
77
78 c->cookie_valid = 1;
79
80 pa_xfree(c->cookie_file);
81 c->cookie_file = NULL;
82 }
83
84 ret = 0;
85
86 finish:
87 if (d)
88 XCloseDisplay(d);
89
90 return ret;
91
92 }