Restructure to remove most deprecation warnings.
[free-sw/xcb/libxcb] / src / xcb_util.c
1 /* Copyright (C) 2001-2004 Bart Massey and Jamey Sharp.
2  *
3  * Permission is hereby granted, free of charge, to any person obtaining a
4  * copy of this software and associated documentation files (the "Software"),
5  * to deal in the Software without restriction, including without limitation
6  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
7  * and/or sell copies of the Software, and to permit persons to whom the
8  * Software is furnished to do so, subject to the following conditions:
9  * 
10  * The above copyright notice and this permission notice shall be included in
11  * all copies or substantial portions of the Software.
12  * 
13  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16  * AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
17  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
18  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
19  * 
20  * Except as contained in this notice, the names of the authors or their
21  * institutions shall not be used in advertising or otherwise to promote the
22  * sale, use or other dealings in this Software without prior written
23  * authorization from the authors.
24  */
25
26 /* Utility functions implementable using only public APIs. */
27
28 #include <assert.h>
29 #include <sys/select.h>
30 #include <sys/socket.h>
31 #include <sys/un.h>
32 #include <netinet/in.h>
33 #include <netdb.h>
34 #include <errno.h>
35 #include <stdio.h>
36 #include <stdlib.h>
37 #include <unistd.h>
38 #include <string.h>
39
40 #include "xcb.h"
41 #include "xcbext.h"
42
43 int XCBPopcount(CARD32 mask)
44 {
45     unsigned long y;
46     y = (mask >> 1) & 033333333333;
47     y = mask - y - ((y >> 1) & 033333333333);
48     return ((y + (y >> 3)) & 030707070707) % 077;
49 }
50
51 int XCBParseDisplay(const char *name, char **host, int *displayp, int *screenp)
52 {
53     int len, display, screen;
54     char *colon, *dot, *end;
55     if(!name || !*name)
56         name = getenv("DISPLAY");
57     if(!name)
58         return 0;
59     colon = strrchr(name, ':');
60     if(!colon)
61         return 0;
62     len = colon - name;
63     ++colon;
64     display = strtoul(colon, &dot, 10);
65     if(dot == colon)
66         return 0;
67     if(*dot == '\0')
68         screen = 0;
69     else
70     {
71         if(*dot != '.')
72             return 0;
73         ++dot;
74         screen = strtoul(dot, &end, 10);
75         if(end == dot || *end != '\0')
76             return 0;
77     }
78     /* At this point, the display string is fully parsed and valid, but
79      * the caller's memory is untouched. */
80
81     *host = malloc(len + 1);
82     if(!*host)
83         return 0;
84     memcpy(*host, name, len);
85     (*host)[len] = '\0';
86     *displayp = display;
87     if(screenp)
88         *screenp = screen;
89     return 1;
90 }
91
92 static int _xcb_open_tcp(const char *host, const unsigned short port);
93 static int _xcb_open_unix(const char *file);
94
95 static int _xcb_open(const char *host, const int display)
96 {
97     int fd;
98
99     if(*host)
100     {
101         /* display specifies TCP */
102         unsigned short port = X_TCP_PORT + display;
103         fd = _xcb_open_tcp(host, port);
104     }
105     else
106     {
107         /* display specifies Unix socket */
108         static const char base[] = "/tmp/.X11-unix/X";
109         char file[sizeof(base) + 20];
110         snprintf(file, sizeof(file), "%s%d", base, display);
111         fd = _xcb_open_unix(file);
112     }
113
114     return fd;
115 }
116
117 static int _xcb_open_tcp(const char *host, const unsigned short port)
118 {
119     int fd;
120     struct sockaddr_in addr;
121     struct hostent *hostaddr = gethostbyname(host);
122     if(!hostaddr)
123         return -1;
124     addr.sin_family = AF_INET;
125     addr.sin_port = htons(port);
126     memcpy(&addr.sin_addr, hostaddr->h_addr_list[0], sizeof(addr.sin_addr));
127
128     fd = socket(PF_INET, SOCK_STREAM, 0);
129     if(fd == -1)
130         return -1;
131     if(connect(fd, (struct sockaddr *) &addr, sizeof(addr)) == -1)
132         return -1;
133     return fd;
134 }
135
136 static int _xcb_open_unix(const char *file)
137 {
138     int fd;
139     struct sockaddr_un addr = { AF_UNIX };
140     strcpy(addr.sun_path, file);
141
142     fd = socket(AF_UNIX, SOCK_STREAM, 0);
143     if(fd == -1)
144         return -1;
145     if(connect(fd, (struct sockaddr *) &addr, sizeof(addr)) == -1)
146         return -1;
147     return fd;
148 }
149
150 XCBConnection *XCBConnect(const char *displayname, int *screenp)
151 {
152     int fd, display = 0;
153     char *host;
154     XCBConnection *c;
155     XCBAuthInfo auth;
156
157     if(!XCBParseDisplay(displayname, &host, &display, screenp))
158         return 0;
159     fd = _xcb_open(host, display);
160     free(host);
161     if(fd == -1)
162         return 0;
163
164     XCBGetAuthInfo(fd, &auth);
165     c = XCBConnectToFD(fd, &auth);
166     free(auth.name);
167     free(auth.data);
168     return c;
169 }
170
171 XCBConnection *XCBConnectToDisplayWithAuthInfo(const char *displayname, XCBAuthInfo *auth, int *screenp)
172 {
173     int fd, display = 0;
174     char *host;
175
176     if(!XCBParseDisplay(displayname, &host, &display, screenp))
177         return 0;
178     fd = _xcb_open(host, display);
179     free(host);
180     if(fd == -1)
181         return 0;
182
183     return XCBConnectToFD(fd, auth);
184 }
185
186 int XCBSync(XCBConnection *c, XCBGenericError **e)
187 {
188     XCBGetInputFocusRep *reply = XCBGetInputFocusReply(c, XCBGetInputFocus(c), e);
189     free(reply);
190     return reply != 0;
191 }
192
193
194
195
196 /* backwards compatible interfaces: remove before 1.0 release */
197 XCBConnection *XCBConnectBasic()
198 {
199     XCBConnection *c = XCBConnect(0, 0);
200     if(c)
201         return c;
202     perror("XCBConnect");
203     abort();
204 }
205
206 int XCBOpen(const char *host, const int display)
207 {
208         return _xcb_open(host, display);
209 }
210
211 int XCBOpenTCP(const char *host, const unsigned short port)
212 {
213         return _xcb_open_tcp(host, port);
214 }
215
216 int XCBOpenUnix(const char *file)
217 {
218         return _xcb_open_unix(file);
219 }