fd0a27f610c31aef2cc6a9343a0db88617556771
[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, 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(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     if(!req->isvoid)
176         _xcb_in_expect_reply(c, *request, workaround);
177
178     ret = _xcb_out_write_block(c, padded, padlen);
179     pthread_mutex_unlock(&c->iolock);
180 #ifndef HAVE_ALLOCA
181     free(padded);
182 #endif
183
184     return ret;
185 }
186
187 int XCBFlush(XCBConnection *c)
188 {
189     int ret;
190     pthread_mutex_lock(&c->iolock);
191     ret = _xcb_out_flush(c);
192     pthread_mutex_unlock(&c->iolock);
193     return ret;
194 }
195
196 /* Private interface */
197
198 int _xcb_out_init(_xcb_out *out)
199 {
200     if(pthread_cond_init(&out->cond, 0))
201         return 0;
202     out->writing = 0;
203
204     out->queue_len = 0;
205     out->vec = 0;
206     out->vec_len = 0;
207
208     out->request = 0;
209     out->request_written = 0;
210
211     if(pthread_mutex_init(&out->reqlenlock, 0))
212         return 0;
213     out->maximum_request_length = 0;
214
215     return 1;
216 }
217
218 void _xcb_out_destroy(_xcb_out *out)
219 {
220     pthread_cond_destroy(&out->cond);
221     pthread_mutex_destroy(&out->reqlenlock);
222 }
223
224 /* precondition: there must be something for us to write. */
225 int _xcb_out_write(XCBConnection *c)
226 {
227     int n;
228     assert(!c->out.queue_len);
229     n = writev(c->fd, c->out.vec, c->out.vec_len);
230     if(n < 0 && errno == EAGAIN)
231         return 1;
232     if(n <= 0)
233         return 0;
234
235     for(; c->out.vec_len; --c->out.vec_len, ++c->out.vec)
236     {
237         int cur = c->out.vec->iov_len;
238         if(cur > n)
239             cur = n;
240         c->out.vec->iov_len -= cur;
241         c->out.vec->iov_base = (char *) c->out.vec->iov_base + cur;
242         n -= cur;
243         if(c->out.vec->iov_len)
244             break;
245     }
246     if(!c->out.vec_len)
247         c->out.vec = 0;
248     assert(n == 0);
249     return 1;
250 }
251
252 int _xcb_out_write_block(XCBConnection *c, struct iovec *vector, size_t count)
253 {
254     while(c->out.writing)
255         pthread_cond_wait(&c->out.cond, &c->iolock);
256     assert(!c->out.vec && !c->out.vec_len);
257     while(count && c->out.queue_len + vector[0].iov_len < sizeof(c->out.queue))
258     {
259         memcpy(c->out.queue + c->out.queue_len, vector[0].iov_base, vector[0].iov_len);
260         c->out.queue_len += vector[0].iov_len;
261         ++vector, --count;
262     }
263     if(!count)
264         return 1;
265
266     memmove(vector + 1, vector, count++ * sizeof(struct iovec));
267     vector[0].iov_base = c->out.queue;
268     vector[0].iov_len = c->out.queue_len;
269     c->out.queue_len = 0;
270
271     c->out.vec_len = count;
272     c->out.vec = vector;
273     return _xcb_out_flush(c);
274 }
275
276 int _xcb_out_flush(XCBConnection *c)
277 {
278     int ret = 1;
279     struct iovec vec;
280     if(c->out.queue_len)
281     {
282         assert(!c->out.vec && !c->out.vec_len);
283         vec.iov_base = c->out.queue;
284         vec.iov_len = c->out.queue_len;
285         c->out.vec = &vec;
286         c->out.vec_len = 1;
287         c->out.queue_len = 0;
288     }
289     while(ret && c->out.vec_len)
290         ret = _xcb_conn_wait(c, /*should_write*/ 1, &c->out.cond);
291     c->out.request_written = c->out.request;
292     pthread_cond_broadcast(&c->out.cond);
293     return ret;
294 }