8eb8a7a6d2b0ea0bc9133357c7aaa37db206d36a
[free-sw/xcb/libxcb] / src / xcb_out.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 /* Stuff that sends stuff to the server. */
27
28 #include <assert.h>
29 #include <stdlib.h>
30 #include <unistd.h>
31 #include <string.h>
32 #include <errno.h>
33
34 #ifndef __GNUC__
35 # if HAVE_ALLOCA_H
36 #  include <alloca.h>
37 # else
38 #  ifdef _AIX
39  #pragma alloca
40 #  endif
41 # endif
42 #endif
43
44 #include "xcb.h"
45 #include "xcbext.h"
46 #include "xcbint.h"
47 #include "extensions/bigreq.h"
48
49 static int force_sequence_wrap(XCBConnection *c)
50 {
51     int ret = 1;
52     if((c->out.request - c->in.request_read) > 65530)
53     {
54         pthread_mutex_unlock(&c->iolock);
55         ret = XCBSync(c, 0);
56         pthread_mutex_lock(&c->iolock);
57     }
58     return ret;
59 }
60
61 /* Public interface */
62
63 CARD32 XCBGetMaximumRequestLength(XCBConnection *c)
64 {
65     pthread_mutex_lock(&c->out.reqlenlock);
66     if(!c->out.maximum_request_length)
67     {
68         const XCBQueryExtensionRep *ext;
69         c->out.maximum_request_length = c->setup->maximum_request_length;
70         ext = XCBGetExtensionData(c, &XCBBigRequestsId);
71         if(ext && ext->present)
72         {
73             XCBBigRequestsEnableRep *r = XCBBigRequestsEnableReply(c, XCBBigRequestsEnable(c), 0);
74             c->out.maximum_request_length = r->maximum_request_length;
75             free(r);
76         }
77     }
78     pthread_mutex_unlock(&c->out.reqlenlock);
79     return c->out.maximum_request_length;
80 }
81
82 int XCBSendRequest(XCBConnection *c, unsigned int *request, int flags, struct iovec *vector, const XCBProtocolRequest *req)
83 {
84     static const char pad[3];
85     int ret;
86     int i;
87     struct iovec *padded;
88     int padlen = 0;
89     CARD16 shortlen = 0;
90     CARD32 longlen = 0;
91     enum workarounds workaround = WORKAROUND_NONE;
92
93     assert(c != 0);
94     assert(request != 0);
95     assert(vector != 0);
96     assert(req->count > 0);
97
98     /* set the major opcode, and the minor opcode for extensions */
99     if(req->ext)
100     {
101         const XCBQueryExtensionRep *extension = XCBGetExtensionData(c, req->ext);
102         /* TODO: better error handling here, please! */
103         assert(extension && extension->present);
104         ((CARD8 *) vector[0].iov_base)[0] = extension->major_opcode;
105         ((CARD8 *) vector[0].iov_base)[1] = req->opcode;
106
107         /* do we need to work around the X server bug described in glx.xml? */
108         if(!req->isvoid && strcmp(req->ext->name, "GLX") &&
109                 ((req->opcode == 17 && ((CARD32 *) vector[0].iov_base)[0] == 0x10004) ||
110                  req->opcode == 21))
111             workaround = WORKAROUND_GLX_GET_FB_CONFIGS_BUG;
112     }
113     else
114         ((CARD8 *) vector[0].iov_base)[0] = req->opcode;
115
116     /* put together the length field, possibly using BIGREQUESTS */
117     for(i = 0; i < req->count; ++i)
118         longlen += (vector[i].iov_len + 3) >> 2;
119
120     if(longlen <= c->setup->maximum_request_length)
121     {
122         /* we don't need BIGREQUESTS. */
123         shortlen = longlen;
124         longlen = 0;
125     }
126     else if(longlen > XCBGetMaximumRequestLength(c))
127         return 0; /* server can't take this; maybe need BIGREQUESTS? */
128
129     padded =
130 #ifdef HAVE_ALLOCA
131         alloca
132 #else
133         malloc
134 #endif
135         ((req->count * 2 + 3) * sizeof(struct iovec));
136     /* set the length field. */
137     ((CARD16 *) vector[0].iov_base)[1] = shortlen;
138     if(!shortlen)
139     {
140         padded[0].iov_base = vector[0].iov_base;
141         padded[0].iov_len = sizeof(CARD32);
142         vector[0].iov_base = ((char *) vector[0].iov_base) + sizeof(CARD32);
143         vector[0].iov_len -= sizeof(CARD32);
144         ++longlen;
145         padded[1].iov_base = &longlen;
146         padded[1].iov_len = sizeof(CARD32);
147         padlen = 2;
148     }
149
150     for(i = 0; i < req->count; ++i)
151     {
152         if(!vector[i].iov_len)
153             continue;
154         padded[padlen].iov_base = vector[i].iov_base;
155         padded[padlen++].iov_len = vector[i].iov_len;
156         if(!XCB_PAD(vector[i].iov_len))
157             continue;
158         padded[padlen].iov_base = (caddr_t) pad;
159         padded[padlen++].iov_len = XCB_PAD(vector[i].iov_len);
160     }
161
162     /* get a sequence number and arrange for delivery. */
163     pthread_mutex_lock(&c->iolock);
164     if(req->isvoid && !force_sequence_wrap(c))
165     {
166         pthread_mutex_unlock(&c->iolock);
167 #ifndef HAVE_ALLOCA
168         free(padded);
169 #endif
170         return -1;
171     }
172
173     *request = ++c->out.request;
174
175     _xcb_in_expect_reply(c, *request, workaround, flags);
176
177     ret = _xcb_out_write_block(c, padded, padlen);
178     pthread_mutex_unlock(&c->iolock);
179 #ifndef HAVE_ALLOCA
180     free(padded);
181 #endif
182
183     return ret;
184 }
185
186 int XCBFlush(XCBConnection *c)
187 {
188     int ret;
189     pthread_mutex_lock(&c->iolock);
190     ret = _xcb_out_flush(c);
191     pthread_mutex_unlock(&c->iolock);
192     return ret;
193 }
194
195 /* Private interface */
196
197 int _xcb_out_init(_xcb_out *out)
198 {
199     if(pthread_cond_init(&out->cond, 0))
200         return 0;
201     out->writing = 0;
202
203     out->queue_len = 0;
204     out->vec = 0;
205     out->vec_len = 0;
206
207     out->request = 0;
208     out->request_written = 0;
209
210     if(pthread_mutex_init(&out->reqlenlock, 0))
211         return 0;
212     out->maximum_request_length = 0;
213
214     return 1;
215 }
216
217 void _xcb_out_destroy(_xcb_out *out)
218 {
219     pthread_cond_destroy(&out->cond);
220     pthread_mutex_destroy(&out->reqlenlock);
221 }
222
223 /* precondition: there must be something for us to write. */
224 int _xcb_out_write(XCBConnection *c)
225 {
226     int n;
227     assert(!c->out.queue_len);
228     n = writev(c->fd, c->out.vec, c->out.vec_len);
229     if(n < 0 && errno == EAGAIN)
230         return 1;
231     if(n <= 0)
232         return 0;
233
234     for(; c->out.vec_len; --c->out.vec_len, ++c->out.vec)
235     {
236         int cur = c->out.vec->iov_len;
237         if(cur > n)
238             cur = n;
239         c->out.vec->iov_len -= cur;
240         c->out.vec->iov_base = (char *) c->out.vec->iov_base + cur;
241         n -= cur;
242         if(c->out.vec->iov_len)
243             break;
244     }
245     if(!c->out.vec_len)
246         c->out.vec = 0;
247     assert(n == 0);
248     return 1;
249 }
250
251 int _xcb_out_write_block(XCBConnection *c, struct iovec *vector, size_t count)
252 {
253     while(c->out.writing)
254         pthread_cond_wait(&c->out.cond, &c->iolock);
255     assert(!c->out.vec && !c->out.vec_len);
256     while(count && c->out.queue_len + vector[0].iov_len < sizeof(c->out.queue))
257     {
258         memcpy(c->out.queue + c->out.queue_len, vector[0].iov_base, vector[0].iov_len);
259         c->out.queue_len += vector[0].iov_len;
260         ++vector, --count;
261     }
262     if(!count)
263         return 1;
264
265     memmove(vector + 1, vector, count++ * sizeof(struct iovec));
266     vector[0].iov_base = c->out.queue;
267     vector[0].iov_len = c->out.queue_len;
268     c->out.queue_len = 0;
269
270     c->out.vec_len = count;
271     c->out.vec = vector;
272     return _xcb_out_flush(c);
273 }
274
275 int _xcb_out_flush(XCBConnection *c)
276 {
277     int ret = 1;
278     struct iovec vec;
279     if(c->out.queue_len)
280     {
281         assert(!c->out.vec && !c->out.vec_len);
282         vec.iov_base = c->out.queue;
283         vec.iov_len = c->out.queue_len;
284         c->out.vec = &vec;
285         c->out.vec_len = 1;
286         c->out.queue_len = 0;
287     }
288     while(ret && c->out.vec_len)
289         ret = _xcb_conn_wait(c, /*should_write*/ 1, &c->out.cond);
290     c->out.request_written = c->out.request;
291     pthread_cond_broadcast(&c->out.cond);
292     return ret;
293 }