xcbext.h revision 709d36bb
1/* 2 * Copyright (C) 2001-2004 Bart Massey and Jamey Sharp. 3 * All Rights Reserved. 4 * 5 * Permission is hereby granted, free of charge, to any person obtaining a 6 * copy of this software and associated documentation files (the "Software"), 7 * to deal in the Software without restriction, including without limitation 8 * the rights to use, copy, modify, merge, publish, distribute, sublicense, 9 * and/or sell copies of the Software, and to permit persons to whom the 10 * Software is furnished to do so, subject to the following conditions: 11 * 12 * The above copyright notice and this permission notice shall be included in 13 * all copies or substantial portions of the Software. 14 * 15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 * AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN 19 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 20 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 * 22 * Except as contained in this notice, the names of the authors or their 23 * institutions shall not be used in advertising or otherwise to promote the 24 * sale, use or other dealings in this Software without prior written 25 * authorization from the authors. 26 */ 27 28#ifndef __XCBEXT_H 29#define __XCBEXT_H 30 31#include "xcb.h" 32 33#ifdef __cplusplus 34extern "C" { 35#endif 36 37/* xcb_ext.c */ 38 39struct xcb_extension_t { 40 const char *name; 41 int global_id; 42}; 43 44 45/* xcb_out.c */ 46 47typedef struct { 48 size_t count; 49 xcb_extension_t *ext; 50 uint8_t opcode; 51 uint8_t isvoid; 52} xcb_protocol_request_t; 53 54enum xcb_send_request_flags_t { 55 XCB_REQUEST_CHECKED = 1 << 0, 56 XCB_REQUEST_RAW = 1 << 1, 57 XCB_REQUEST_DISCARD_REPLY = 1 << 2, 58 XCB_REQUEST_REPLY_FDS = 1 << 3 59}; 60 61/** 62 * @brief Send a request to the server. 63 * @param c: The connection to the X server. 64 * @param flags: A combination of flags from the xcb_send_request_flags_t enumeration. 65 * @param vector: Data to send; must have two iovecs before start for internal use. 66 * @param request: Information about the request to be sent. 67 * @return The request's sequence number on success, 0 otherwise. 68 * 69 * This function sends a new request to the X server. The data of the request is 70 * given as an array of @c iovecs in the @p vector argument. The length of that 71 * array and the neccessary management information are given in the @p request 72 * argument. 73 * 74 * When this function returns, the request might or might not be sent already. 75 * Use xcb_flush() to make sure that it really was sent. 76 * 77 * Please note that this function is not the prefered way for sending requests. 78 * It's better to use the generated wrapper functions. 79 * 80 * Please note that xcb might use index -1 and -2 of the @p vector array internally, 81 * so they must be valid! 82 */ 83unsigned int xcb_send_request(xcb_connection_t *c, int flags, struct iovec *vector, const xcb_protocol_request_t *request); 84 85/** 86 * @brief Send a request to the server, with 64-bit sequence number returned. 87 * @param c: The connection to the X server. 88 * @param flags: A combination of flags from the xcb_send_request_flags_t enumeration. 89 * @param vector: Data to send; must have two iovecs before start for internal use. 90 * @param request: Information about the request to be sent. 91 * @return The request's sequence number on success, 0 otherwise. 92 * 93 * This function sends a new request to the X server. The data of the request is 94 * given as an array of @c iovecs in the @p vector argument. The length of that 95 * array and the neccessary management information are given in the @p request 96 * argument. 97 * 98 * When this function returns, the request might or might not be sent already. 99 * Use xcb_flush() to make sure that it really was sent. 100 * 101 * Please note that this function is not the prefered way for sending requests. 102 * It's better to use the generated wrapper functions. 103 * 104 * Please note that xcb might use index -1 and -2 of the @p vector array internally, 105 * so they must be valid! 106 */ 107uint64_t xcb_send_request64(xcb_connection_t *c, int flags, struct iovec *vector, const xcb_protocol_request_t *request); 108 109/** 110 * @brief Send a file descriptor to the server in the next call to xcb_send_request. 111 * @param c: The connection to the X server. 112 * @param fd: The file descriptor to send. 113 * 114 * After this function returns, the file descriptor given is owned by xcb and 115 * will be closed eventually. 116 * 117 * FIXME: How the heck is this supposed to work in a thread-safe way? There is a 118 * race between two threads doing xcb_send_fd(); xcb_send_request(); at the same 119 * time. 120 */ 121void xcb_send_fd(xcb_connection_t *c, int fd); 122 123/** 124 * @brief Take over the write side of the socket 125 * @param c: The connection to the X server. 126 * @param return_socket: Callback function that will be called when xcb wants 127 * to use the socket again. 128 * @param closure: Argument to the callback function. 129 * @param flags: A combination of flags from the xcb_send_request_flags_t enumeration. 130 * @param sent: Location to the sequence number of the last sequence request. 131 * Must not be NULL. 132 * @return 1 on success, else 0. 133 * 134 * xcb_take_socket allows external code to ask XCB for permission to 135 * take over the write side of the socket and send raw data with 136 * xcb_writev. xcb_take_socket provides the sequence number of the last 137 * request XCB sent. The caller of xcb_take_socket must supply a 138 * callback which XCB can call when it wants the write side of the 139 * socket back to make a request. This callback synchronizes with the 140 * external socket owner and flushes any output queues if appropriate. 141 * If you are sending requests which won't cause a reply, please note the 142 * comment for xcb_writev which explains some sequence number wrap issues. 143 * 144 * All replies that are generated while the socket is owned externally have 145 * @p flags applied to them. For example, use XCB_REQUEST_CHECK if you don't 146 * want errors to go to xcb's normal error handling, but instead having to be 147 * picked up via xcb_wait_for_reply(), xcb_poll_for_reply() or 148 * xcb_request_check(). 149 */ 150int xcb_take_socket(xcb_connection_t *c, void (*return_socket)(void *closure), void *closure, int flags, uint64_t *sent); 151 152/** 153 * @brief Send raw data to the X server. 154 * @param c: The connection to the X server. 155 * @param vector: Array of data to be sent. 156 * @param count: Number of entries in @p vector. 157 * @param requests: Number of requests that are being sent. 158 * @return 1 on success, else 0. 159 * 160 * You must own the write-side of the socket (you've called 161 * xcb_take_socket, and haven't returned from return_socket yet) to call 162 * xcb_writev. Also, the iovec must have at least 1 byte of data in it. 163 * You have to make sure that xcb can detect sequence number wraps correctly. 164 * This means that the first request you send after xcb_take_socket must cause a 165 * reply (e.g. just insert a GetInputFocus request). After every (1 << 16) - 1 166 * requests without a reply, you have to insert a request which will cause a 167 * reply. You can again use GetInputFocus for this. You do not have to wait for 168 * any of the GetInputFocus replies, but can instead handle them via 169 * xcb_discard_reply(). 170 */ 171int xcb_writev(xcb_connection_t *c, struct iovec *vector, int count, uint64_t requests); 172 173 174/* xcb_in.c */ 175 176/** 177 * @brief Wait for the reply of a given request. 178 * @param c: The connection to the X server. 179 * @param request: Sequence number of the request as returned by xcb_send_request(). 180 * @param e: Location to store errors in, or NULL. Ignored for unchecked requests. 181 * 182 * Returns the reply to the given request or returns null in the event of 183 * errors. Blocks until the reply or error for the request arrives, or an I/O 184 * error occurs. 185 */ 186void *xcb_wait_for_reply(xcb_connection_t *c, unsigned int request, xcb_generic_error_t **e); 187 188/** 189 * @brief Wait for the reply of a given request, with 64-bit sequence number 190 * @param c: The connection to the X server. 191 * @param request: 64-bit sequence number of the request as returned by xcb_send_request64(). 192 * @param e: Location to store errors in, or NULL. Ignored for unchecked requests. 193 * 194 * Returns the reply to the given request or returns null in the event of 195 * errors. Blocks until the reply or error for the request arrives, or an I/O 196 * error occurs. 197 * 198 * Unlike its xcb_wait_for_reply() counterpart, the given sequence number is not 199 * automatically "widened" to 64-bit. 200 */ 201void *xcb_wait_for_reply64(xcb_connection_t *c, uint64_t request, xcb_generic_error_t **e); 202 203/** 204 * @brief Poll for the reply of a given request. 205 * @param c: The connection to the X server. 206 * @param request: Sequence number of the request as returned by xcb_send_request(). 207 * @param reply: Location to store the reply in, must not be NULL. 208 * @param e: Location to store errors in, or NULL. Ignored for unchecked requests. 209 * @return 1 when the reply to the request was returned, else 0. 210 * 211 * Checks if the reply to the given request already received. Does not block. 212 */ 213int xcb_poll_for_reply(xcb_connection_t *c, unsigned int request, void **reply, xcb_generic_error_t **error); 214 215/** 216 * @brief Poll for the reply of a given request, with 64-bit sequence number. 217 * @param c: The connection to the X server. 218 * @param request: 64-bit sequence number of the request as returned by xcb_send_request(). 219 * @param reply: Location to store the reply in, must not be NULL. 220 * @param e: Location to store errors in, or NULL. Ignored for unchecked requests. 221 * @return 1 when the reply to the request was returned, else 0. 222 * 223 * Checks if the reply to the given request already received. Does not block. 224 * 225 * Unlike its xcb_poll_for_reply() counterpart, the given sequence number is not 226 * automatically "widened" to 64-bit. 227 */ 228int xcb_poll_for_reply64(xcb_connection_t *c, uint64_t request, void **reply, xcb_generic_error_t **error); 229 230/** 231 * @brief Don't use this, only needed by the generated code. 232 * @param c: The connection to the X server. 233 * @param reply: A reply that was received from the server 234 * @param replylen: The size of the reply. 235 * @return Pointer to the location where received file descriptors are stored. 236 */ 237int *xcb_get_reply_fds(xcb_connection_t *c, void *reply, size_t replylen); 238 239 240/* xcb_util.c */ 241 242/** 243 * @param mask: The mask to check 244 * @return The number of set bits in the mask 245 */ 246int xcb_popcount(uint32_t mask); 247 248/** 249 * @param list: The base of an array 250 * @param len: The length of the array 251 * @return The sum of all entries in the array. 252 */ 253int xcb_sumof(uint8_t *list, int len); 254 255#ifdef __cplusplus 256} 257#endif 258 259#endif 260