Merge commit 'origin/master-tx'
[platform/upstream/pulseaudio.git] / src / pulsecore / x11prop.c
1 /***
2   This file is part of PulseAudio.
3
4   Copyright 2004-2006 Lennart Poettering
5
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.1 of the License,
9   or (at your option) any later version.
10
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.
15
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
19   USA.
20 ***/
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <string.h>
27
28 #include <X11/Xlib.h>
29 #include <X11/Xatom.h>
30
31 #include "x11prop.h"
32
33 void pa_x11_set_prop(Display *d, const char *name, const char *data) {
34     Atom a = XInternAtom(d, name, False);
35     XChangeProperty(d, RootWindow(d, 0), a, XA_STRING, 8, PropModeReplace, (const unsigned char*) data, (int) (strlen(data)+1));
36 }
37
38 void pa_x11_del_prop(Display *d, const char *name) {
39     Atom a = XInternAtom(d, name, False);
40     XDeleteProperty(d, RootWindow(d, 0), a);
41 }
42
43 char* pa_x11_get_prop(Display *d, const char *name, char *p, size_t l) {
44     Atom actual_type;
45     int actual_format;
46     unsigned long nitems;
47     unsigned long nbytes_after;
48     unsigned char *prop = NULL;
49     char *ret = NULL;
50
51     Atom a = XInternAtom(d, name, False);
52     if (XGetWindowProperty(d, RootWindow(d, 0), a, 0, (long) ((l+2)/4), False, XA_STRING, &actual_type, &actual_format, &nitems, &nbytes_after, &prop) != Success)
53         goto finish;
54
55     if (actual_type != XA_STRING)
56         goto finish;
57
58     memcpy(p, prop, nitems);
59     p[nitems] = 0;
60
61     ret = p;
62
63 finish:
64
65     if (prop)
66         XFree(prop);
67
68     return ret;
69 }