xcbext.h revision 709d36bb
1602e473dSmrg/* 2602e473dSmrg * Copyright (C) 2001-2004 Bart Massey and Jamey Sharp. 3602e473dSmrg * All Rights Reserved. 4602e473dSmrg * 5602e473dSmrg * Permission is hereby granted, free of charge, to any person obtaining a 6602e473dSmrg * copy of this software and associated documentation files (the "Software"), 7602e473dSmrg * to deal in the Software without restriction, including without limitation 8602e473dSmrg * the rights to use, copy, modify, merge, publish, distribute, sublicense, 9602e473dSmrg * and/or sell copies of the Software, and to permit persons to whom the 10602e473dSmrg * Software is furnished to do so, subject to the following conditions: 11602e473dSmrg * 12602e473dSmrg * The above copyright notice and this permission notice shall be included in 13602e473dSmrg * all copies or substantial portions of the Software. 14602e473dSmrg * 15602e473dSmrg * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16602e473dSmrg * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17602e473dSmrg * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18602e473dSmrg * AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN 19602e473dSmrg * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 20602e473dSmrg * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21602e473dSmrg * 22602e473dSmrg * Except as contained in this notice, the names of the authors or their 23602e473dSmrg * institutions shall not be used in advertising or otherwise to promote the 24602e473dSmrg * sale, use or other dealings in this Software without prior written 25602e473dSmrg * authorization from the authors. 26602e473dSmrg */ 27602e473dSmrg 28602e473dSmrg#ifndef __XCBEXT_H 29602e473dSmrg#define __XCBEXT_H 30602e473dSmrg 31602e473dSmrg#include "xcb.h" 32602e473dSmrg 33602e473dSmrg#ifdef __cplusplus 34602e473dSmrgextern "C" { 35602e473dSmrg#endif 36602e473dSmrg 37602e473dSmrg/* xcb_ext.c */ 38602e473dSmrg 39602e473dSmrgstruct xcb_extension_t { 40602e473dSmrg const char *name; 41602e473dSmrg int global_id; 42602e473dSmrg}; 43602e473dSmrg 44602e473dSmrg 45602e473dSmrg/* xcb_out.c */ 46602e473dSmrg 47602e473dSmrgtypedef struct { 48602e473dSmrg size_t count; 49602e473dSmrg xcb_extension_t *ext; 50602e473dSmrg uint8_t opcode; 51602e473dSmrg uint8_t isvoid; 52602e473dSmrg} xcb_protocol_request_t; 53602e473dSmrg 54602e473dSmrgenum xcb_send_request_flags_t { 55602e473dSmrg XCB_REQUEST_CHECKED = 1 << 0, 56602e473dSmrg XCB_REQUEST_RAW = 1 << 1, 571016ad83Smrg XCB_REQUEST_DISCARD_REPLY = 1 << 2, 581016ad83Smrg XCB_REQUEST_REPLY_FDS = 1 << 3 59602e473dSmrg}; 60602e473dSmrg 611c7386f4Smrg/** 621c7386f4Smrg * @brief Send a request to the server. 631c7386f4Smrg * @param c: The connection to the X server. 641c7386f4Smrg * @param flags: A combination of flags from the xcb_send_request_flags_t enumeration. 651c7386f4Smrg * @param vector: Data to send; must have two iovecs before start for internal use. 661c7386f4Smrg * @param request: Information about the request to be sent. 671c7386f4Smrg * @return The request's sequence number on success, 0 otherwise. 681c7386f4Smrg * 691c7386f4Smrg * This function sends a new request to the X server. The data of the request is 701c7386f4Smrg * given as an array of @c iovecs in the @p vector argument. The length of that 711c7386f4Smrg * array and the neccessary management information are given in the @p request 721c7386f4Smrg * argument. 731c7386f4Smrg * 741c7386f4Smrg * When this function returns, the request might or might not be sent already. 751c7386f4Smrg * Use xcb_flush() to make sure that it really was sent. 761c7386f4Smrg * 771c7386f4Smrg * Please note that this function is not the prefered way for sending requests. 781c7386f4Smrg * It's better to use the generated wrapper functions. 791c7386f4Smrg * 801c7386f4Smrg * Please note that xcb might use index -1 and -2 of the @p vector array internally, 811c7386f4Smrg * so they must be valid! 821c7386f4Smrg */ 83602e473dSmrgunsigned int xcb_send_request(xcb_connection_t *c, int flags, struct iovec *vector, const xcb_protocol_request_t *request); 84602e473dSmrg 85709d36bbSmrg/** 86709d36bbSmrg * @brief Send a request to the server, with 64-bit sequence number returned. 87709d36bbSmrg * @param c: The connection to the X server. 88709d36bbSmrg * @param flags: A combination of flags from the xcb_send_request_flags_t enumeration. 89709d36bbSmrg * @param vector: Data to send; must have two iovecs before start for internal use. 90709d36bbSmrg * @param request: Information about the request to be sent. 91709d36bbSmrg * @return The request's sequence number on success, 0 otherwise. 92709d36bbSmrg * 93709d36bbSmrg * This function sends a new request to the X server. The data of the request is 94709d36bbSmrg * given as an array of @c iovecs in the @p vector argument. The length of that 95709d36bbSmrg * array and the neccessary management information are given in the @p request 96709d36bbSmrg * argument. 97709d36bbSmrg * 98709d36bbSmrg * When this function returns, the request might or might not be sent already. 99709d36bbSmrg * Use xcb_flush() to make sure that it really was sent. 100709d36bbSmrg * 101709d36bbSmrg * Please note that this function is not the prefered way for sending requests. 102709d36bbSmrg * It's better to use the generated wrapper functions. 103709d36bbSmrg * 104709d36bbSmrg * Please note that xcb might use index -1 and -2 of the @p vector array internally, 105709d36bbSmrg * so they must be valid! 106709d36bbSmrg */ 107709d36bbSmrguint64_t xcb_send_request64(xcb_connection_t *c, int flags, struct iovec *vector, const xcb_protocol_request_t *request); 108709d36bbSmrg 1091c7386f4Smrg/** 1101c7386f4Smrg * @brief Send a file descriptor to the server in the next call to xcb_send_request. 1111c7386f4Smrg * @param c: The connection to the X server. 1121c7386f4Smrg * @param fd: The file descriptor to send. 1131c7386f4Smrg * 1141c7386f4Smrg * After this function returns, the file descriptor given is owned by xcb and 1151c7386f4Smrg * will be closed eventually. 1161c7386f4Smrg * 1171c7386f4Smrg * FIXME: How the heck is this supposed to work in a thread-safe way? There is a 1181c7386f4Smrg * race between two threads doing xcb_send_fd(); xcb_send_request(); at the same 1191c7386f4Smrg * time. 1201c7386f4Smrg */ 1211016ad83Smrgvoid xcb_send_fd(xcb_connection_t *c, int fd); 1221016ad83Smrg 1231c7386f4Smrg/** 1241c7386f4Smrg * @brief Take over the write side of the socket 1251c7386f4Smrg * @param c: The connection to the X server. 1261c7386f4Smrg * @param return_socket: Callback function that will be called when xcb wants 1271c7386f4Smrg * to use the socket again. 1281c7386f4Smrg * @param closure: Argument to the callback function. 1291c7386f4Smrg * @param flags: A combination of flags from the xcb_send_request_flags_t enumeration. 1301c7386f4Smrg * @param sent: Location to the sequence number of the last sequence request. 1311c7386f4Smrg * Must not be NULL. 1321c7386f4Smrg * @return 1 on success, else 0. 1331c7386f4Smrg * 1341c7386f4Smrg * xcb_take_socket allows external code to ask XCB for permission to 135602e473dSmrg * take over the write side of the socket and send raw data with 136602e473dSmrg * xcb_writev. xcb_take_socket provides the sequence number of the last 137602e473dSmrg * request XCB sent. The caller of xcb_take_socket must supply a 138602e473dSmrg * callback which XCB can call when it wants the write side of the 139602e473dSmrg * socket back to make a request. This callback synchronizes with the 14021298544Smrg * external socket owner and flushes any output queues if appropriate. 14121298544Smrg * If you are sending requests which won't cause a reply, please note the 14221298544Smrg * comment for xcb_writev which explains some sequence number wrap issues. 1431c7386f4Smrg * 1441c7386f4Smrg * All replies that are generated while the socket is owned externally have 1451c7386f4Smrg * @p flags applied to them. For example, use XCB_REQUEST_CHECK if you don't 1461c7386f4Smrg * want errors to go to xcb's normal error handling, but instead having to be 1471c7386f4Smrg * picked up via xcb_wait_for_reply(), xcb_poll_for_reply() or 1481c7386f4Smrg * xcb_request_check(). 1491c7386f4Smrg */ 150602e473dSmrgint xcb_take_socket(xcb_connection_t *c, void (*return_socket)(void *closure), void *closure, int flags, uint64_t *sent); 151602e473dSmrg 1521c7386f4Smrg/** 1531c7386f4Smrg * @brief Send raw data to the X server. 1541c7386f4Smrg * @param c: The connection to the X server. 1551c7386f4Smrg * @param vector: Array of data to be sent. 1561c7386f4Smrg * @param count: Number of entries in @p vector. 1571c7386f4Smrg * @param requests: Number of requests that are being sent. 1581c7386f4Smrg * @return 1 on success, else 0. 1591c7386f4Smrg * 1601c7386f4Smrg * You must own the write-side of the socket (you've called 161602e473dSmrg * xcb_take_socket, and haven't returned from return_socket yet) to call 162602e473dSmrg * xcb_writev. Also, the iovec must have at least 1 byte of data in it. 16321298544Smrg * You have to make sure that xcb can detect sequence number wraps correctly. 16421298544Smrg * This means that the first request you send after xcb_take_socket must cause a 16521298544Smrg * reply (e.g. just insert a GetInputFocus request). After every (1 << 16) - 1 16621298544Smrg * requests without a reply, you have to insert a request which will cause a 16721298544Smrg * reply. You can again use GetInputFocus for this. You do not have to wait for 16821298544Smrg * any of the GetInputFocus replies, but can instead handle them via 1691c7386f4Smrg * xcb_discard_reply(). 1701c7386f4Smrg */ 171602e473dSmrgint xcb_writev(xcb_connection_t *c, struct iovec *vector, int count, uint64_t requests); 172602e473dSmrg 173602e473dSmrg 174602e473dSmrg/* xcb_in.c */ 175602e473dSmrg 1761c7386f4Smrg/** 1771c7386f4Smrg * @brief Wait for the reply of a given request. 1781c7386f4Smrg * @param c: The connection to the X server. 1791c7386f4Smrg * @param request: Sequence number of the request as returned by xcb_send_request(). 1801c7386f4Smrg * @param e: Location to store errors in, or NULL. Ignored for unchecked requests. 1811c7386f4Smrg * 1821c7386f4Smrg * Returns the reply to the given request or returns null in the event of 1831c7386f4Smrg * errors. Blocks until the reply or error for the request arrives, or an I/O 1841c7386f4Smrg * error occurs. 1851c7386f4Smrg */ 186602e473dSmrgvoid *xcb_wait_for_reply(xcb_connection_t *c, unsigned int request, xcb_generic_error_t **e); 1871c7386f4Smrg 188709d36bbSmrg/** 189709d36bbSmrg * @brief Wait for the reply of a given request, with 64-bit sequence number 190709d36bbSmrg * @param c: The connection to the X server. 191709d36bbSmrg * @param request: 64-bit sequence number of the request as returned by xcb_send_request64(). 192709d36bbSmrg * @param e: Location to store errors in, or NULL. Ignored for unchecked requests. 193709d36bbSmrg * 194709d36bbSmrg * Returns the reply to the given request or returns null in the event of 195709d36bbSmrg * errors. Blocks until the reply or error for the request arrives, or an I/O 196709d36bbSmrg * error occurs. 197709d36bbSmrg * 198709d36bbSmrg * Unlike its xcb_wait_for_reply() counterpart, the given sequence number is not 199709d36bbSmrg * automatically "widened" to 64-bit. 200709d36bbSmrg */ 201709d36bbSmrgvoid *xcb_wait_for_reply64(xcb_connection_t *c, uint64_t request, xcb_generic_error_t **e); 202709d36bbSmrg 2031c7386f4Smrg/** 2041c7386f4Smrg * @brief Poll for the reply of a given request. 2051c7386f4Smrg * @param c: The connection to the X server. 2061c7386f4Smrg * @param request: Sequence number of the request as returned by xcb_send_request(). 2071c7386f4Smrg * @param reply: Location to store the reply in, must not be NULL. 2081c7386f4Smrg * @param e: Location to store errors in, or NULL. Ignored for unchecked requests. 2091c7386f4Smrg * @return 1 when the reply to the request was returned, else 0. 2101c7386f4Smrg * 2111c7386f4Smrg * Checks if the reply to the given request already received. Does not block. 2121c7386f4Smrg */ 213602e473dSmrgint xcb_poll_for_reply(xcb_connection_t *c, unsigned int request, void **reply, xcb_generic_error_t **error); 2141c7386f4Smrg 215709d36bbSmrg/** 216709d36bbSmrg * @brief Poll for the reply of a given request, with 64-bit sequence number. 217709d36bbSmrg * @param c: The connection to the X server. 218709d36bbSmrg * @param request: 64-bit sequence number of the request as returned by xcb_send_request(). 219709d36bbSmrg * @param reply: Location to store the reply in, must not be NULL. 220709d36bbSmrg * @param e: Location to store errors in, or NULL. Ignored for unchecked requests. 221709d36bbSmrg * @return 1 when the reply to the request was returned, else 0. 222709d36bbSmrg * 223709d36bbSmrg * Checks if the reply to the given request already received. Does not block. 224709d36bbSmrg * 225709d36bbSmrg * Unlike its xcb_poll_for_reply() counterpart, the given sequence number is not 226709d36bbSmrg * automatically "widened" to 64-bit. 227709d36bbSmrg */ 228709d36bbSmrgint xcb_poll_for_reply64(xcb_connection_t *c, uint64_t request, void **reply, xcb_generic_error_t **error); 229709d36bbSmrg 2301c7386f4Smrg/** 2311c7386f4Smrg * @brief Don't use this, only needed by the generated code. 2321c7386f4Smrg * @param c: The connection to the X server. 2331c7386f4Smrg * @param reply: A reply that was received from the server 2341c7386f4Smrg * @param replylen: The size of the reply. 2351c7386f4Smrg * @return Pointer to the location where received file descriptors are stored. 2361c7386f4Smrg */ 2371016ad83Smrgint *xcb_get_reply_fds(xcb_connection_t *c, void *reply, size_t replylen); 238602e473dSmrg 239602e473dSmrg 240602e473dSmrg/* xcb_util.c */ 241602e473dSmrg 2421c7386f4Smrg/** 2431c7386f4Smrg * @param mask: The mask to check 2441c7386f4Smrg * @return The number of set bits in the mask 2451c7386f4Smrg */ 246602e473dSmrgint xcb_popcount(uint32_t mask); 2471c7386f4Smrg 2481c7386f4Smrg/** 2491c7386f4Smrg * @param list: The base of an array 2501c7386f4Smrg * @param len: The length of the array 2511c7386f4Smrg * @return The sum of all entries in the array. 2521c7386f4Smrg */ 25321298544Smrgint xcb_sumof(uint8_t *list, int len); 254602e473dSmrg 255602e473dSmrg#ifdef __cplusplus 256602e473dSmrg} 257602e473dSmrg#endif 258602e473dSmrg 259602e473dSmrg#endif 260