xcbext.h revision 1c7386f4
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 851c7386f4Smrg/** 861c7386f4Smrg * @brief Send a file descriptor to the server in the next call to xcb_send_request. 871c7386f4Smrg * @param c: The connection to the X server. 881c7386f4Smrg * @param fd: The file descriptor to send. 891c7386f4Smrg * 901c7386f4Smrg * After this function returns, the file descriptor given is owned by xcb and 911c7386f4Smrg * will be closed eventually. 921c7386f4Smrg * 931c7386f4Smrg * FIXME: How the heck is this supposed to work in a thread-safe way? There is a 941c7386f4Smrg * race between two threads doing xcb_send_fd(); xcb_send_request(); at the same 951c7386f4Smrg * time. 961c7386f4Smrg */ 971016ad83Smrgvoid xcb_send_fd(xcb_connection_t *c, int fd); 981016ad83Smrg 991c7386f4Smrg/** 1001c7386f4Smrg * @brief Take over the write side of the socket 1011c7386f4Smrg * @param c: The connection to the X server. 1021c7386f4Smrg * @param return_socket: Callback function that will be called when xcb wants 1031c7386f4Smrg * to use the socket again. 1041c7386f4Smrg * @param closure: Argument to the callback function. 1051c7386f4Smrg * @param flags: A combination of flags from the xcb_send_request_flags_t enumeration. 1061c7386f4Smrg * @param sent: Location to the sequence number of the last sequence request. 1071c7386f4Smrg * Must not be NULL. 1081c7386f4Smrg * @return 1 on success, else 0. 1091c7386f4Smrg * 1101c7386f4Smrg * xcb_take_socket allows external code to ask XCB for permission to 111602e473dSmrg * take over the write side of the socket and send raw data with 112602e473dSmrg * xcb_writev. xcb_take_socket provides the sequence number of the last 113602e473dSmrg * request XCB sent. The caller of xcb_take_socket must supply a 114602e473dSmrg * callback which XCB can call when it wants the write side of the 115602e473dSmrg * socket back to make a request. This callback synchronizes with the 11621298544Smrg * external socket owner and flushes any output queues if appropriate. 11721298544Smrg * If you are sending requests which won't cause a reply, please note the 11821298544Smrg * comment for xcb_writev which explains some sequence number wrap issues. 1191c7386f4Smrg * 1201c7386f4Smrg * All replies that are generated while the socket is owned externally have 1211c7386f4Smrg * @p flags applied to them. For example, use XCB_REQUEST_CHECK if you don't 1221c7386f4Smrg * want errors to go to xcb's normal error handling, but instead having to be 1231c7386f4Smrg * picked up via xcb_wait_for_reply(), xcb_poll_for_reply() or 1241c7386f4Smrg * xcb_request_check(). 1251c7386f4Smrg */ 126602e473dSmrgint xcb_take_socket(xcb_connection_t *c, void (*return_socket)(void *closure), void *closure, int flags, uint64_t *sent); 127602e473dSmrg 1281c7386f4Smrg/** 1291c7386f4Smrg * @brief Send raw data to the X server. 1301c7386f4Smrg * @param c: The connection to the X server. 1311c7386f4Smrg * @param vector: Array of data to be sent. 1321c7386f4Smrg * @param count: Number of entries in @p vector. 1331c7386f4Smrg * @param requests: Number of requests that are being sent. 1341c7386f4Smrg * @return 1 on success, else 0. 1351c7386f4Smrg * 1361c7386f4Smrg * You must own the write-side of the socket (you've called 137602e473dSmrg * xcb_take_socket, and haven't returned from return_socket yet) to call 138602e473dSmrg * xcb_writev. Also, the iovec must have at least 1 byte of data in it. 13921298544Smrg * You have to make sure that xcb can detect sequence number wraps correctly. 14021298544Smrg * This means that the first request you send after xcb_take_socket must cause a 14121298544Smrg * reply (e.g. just insert a GetInputFocus request). After every (1 << 16) - 1 14221298544Smrg * requests without a reply, you have to insert a request which will cause a 14321298544Smrg * reply. You can again use GetInputFocus for this. You do not have to wait for 14421298544Smrg * any of the GetInputFocus replies, but can instead handle them via 1451c7386f4Smrg * xcb_discard_reply(). 1461c7386f4Smrg */ 147602e473dSmrgint xcb_writev(xcb_connection_t *c, struct iovec *vector, int count, uint64_t requests); 148602e473dSmrg 149602e473dSmrg 150602e473dSmrg/* xcb_in.c */ 151602e473dSmrg 1521c7386f4Smrg/** 1531c7386f4Smrg * @brief Wait for the reply of a given request. 1541c7386f4Smrg * @param c: The connection to the X server. 1551c7386f4Smrg * @param request: Sequence number of the request as returned by xcb_send_request(). 1561c7386f4Smrg * @param e: Location to store errors in, or NULL. Ignored for unchecked requests. 1571c7386f4Smrg * 1581c7386f4Smrg * Returns the reply to the given request or returns null in the event of 1591c7386f4Smrg * errors. Blocks until the reply or error for the request arrives, or an I/O 1601c7386f4Smrg * error occurs. 1611c7386f4Smrg */ 162602e473dSmrgvoid *xcb_wait_for_reply(xcb_connection_t *c, unsigned int request, xcb_generic_error_t **e); 1631c7386f4Smrg 1641c7386f4Smrg/** 1651c7386f4Smrg * @brief Poll for the reply of a given request. 1661c7386f4Smrg * @param c: The connection to the X server. 1671c7386f4Smrg * @param request: Sequence number of the request as returned by xcb_send_request(). 1681c7386f4Smrg * @param reply: Location to store the reply in, must not be NULL. 1691c7386f4Smrg * @param e: Location to store errors in, or NULL. Ignored for unchecked requests. 1701c7386f4Smrg * @return 1 when the reply to the request was returned, else 0. 1711c7386f4Smrg * 1721c7386f4Smrg * Checks if the reply to the given request already received. Does not block. 1731c7386f4Smrg */ 174602e473dSmrgint xcb_poll_for_reply(xcb_connection_t *c, unsigned int request, void **reply, xcb_generic_error_t **error); 1751c7386f4Smrg 1761c7386f4Smrg/** 1771c7386f4Smrg * @brief Don't use this, only needed by the generated code. 1781c7386f4Smrg * @param c: The connection to the X server. 1791c7386f4Smrg * @param reply: A reply that was received from the server 1801c7386f4Smrg * @param replylen: The size of the reply. 1811c7386f4Smrg * @return Pointer to the location where received file descriptors are stored. 1821c7386f4Smrg */ 1831016ad83Smrgint *xcb_get_reply_fds(xcb_connection_t *c, void *reply, size_t replylen); 184602e473dSmrg 185602e473dSmrg 186602e473dSmrg/* xcb_util.c */ 187602e473dSmrg 1881c7386f4Smrg/** 1891c7386f4Smrg * @param mask: The mask to check 1901c7386f4Smrg * @return The number of set bits in the mask 1911c7386f4Smrg */ 192602e473dSmrgint xcb_popcount(uint32_t mask); 1931c7386f4Smrg 1941c7386f4Smrg/** 1951c7386f4Smrg * @param list: The base of an array 1961c7386f4Smrg * @param len: The length of the array 1971c7386f4Smrg * @return The sum of all entries in the array. 1981c7386f4Smrg */ 19921298544Smrgint xcb_sumof(uint8_t *list, int len); 200602e473dSmrg 201602e473dSmrg#ifdef __cplusplus 202602e473dSmrg} 203602e473dSmrg#endif 204602e473dSmrg 205602e473dSmrg#endif 206