mirror of
https://gitlab.freedesktop.org/xorg/lib/libxcb.git
synced 2026-05-28 23:38:18 +02:00
Rename API to follow a new naming convention:
* XCB_CONSTANTS_UPPERCASE_WITH_UNDERSCORES
* xcb_functions_lowercase_with_underscores
* xcb_types_lowercase_with_underscores_and_suffix_t
* expand all abbreviations like "req", "rep", and "iter"
Word boundaries for the names in the protocol descriptions fall:
* Wherever the protocol descriptions already have an underscore
* Between a lowercase letter and a subsequent uppercase letter
* Before the last uppercase letter in a string of uppercase letters followed
by a lowercase letter (such as in LSBFirst between LSB and First)
* Before and after a string of digits (with exceptions for sized types like
xcb_char2b_t and xcb_glx_float32_t to match the stdint.h convention)
Also fix up some particular naming issues:
* Rename shape_op and shape_kind to drop the "shape_" prefix, since otherwise
these types end up as xcb_shape_shape_{op,kind}_t.
* Remove leading underscores from enums in the GLX protocol description,
previously needed to ensure a word separator, but now redundant.
This renaming breaks code written for the previous API naming convention. The
scripts in XCB's tools directory will convert code written for the old API to
use the new API; they work well enough that we used them to convert the
non-program-generated code in XCB, and when run on the old program-generated
code, they almost exactly reproduce the new program-generated code (modulo
whitespace and bugs in the old code generator).
Authors: Vincent Torri, Thomas Hunger, Josh Triplett
101 lines
2.7 KiB
C
101 lines
2.7 KiB
C
/* Copyright (C) 2001-2004 Bart Massey and Jamey Sharp.
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
* to deal in the Software without restriction, including without limitation
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
|
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
*
|
|
* Except as contained in this notice, the names of the authors or their
|
|
* institutions shall not be used in advertising or otherwise to promote the
|
|
* sale, use or other dealings in this Software without prior written
|
|
* authorization from the authors.
|
|
*/
|
|
|
|
/* A generic implementation of a list of void-pointers. */
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include "xcb.h"
|
|
#include "xcbint.h"
|
|
|
|
typedef struct node {
|
|
struct node *next;
|
|
unsigned int key;
|
|
void *data;
|
|
} node;
|
|
|
|
struct _xcb_map {
|
|
node *head;
|
|
node **tail;
|
|
};
|
|
|
|
/* Private interface */
|
|
|
|
_xcb_map *_xcb_map_new()
|
|
{
|
|
_xcb_map *list;
|
|
list = malloc(sizeof(_xcb_map));
|
|
if(!list)
|
|
return 0;
|
|
list->head = 0;
|
|
list->tail = &list->head;
|
|
return list;
|
|
}
|
|
|
|
void _xcb_map_delete(_xcb_map *list, xcb_list_free_func_t do_free)
|
|
{
|
|
if(!list)
|
|
return;
|
|
while(list->head)
|
|
{
|
|
node *cur = list->head;
|
|
if(do_free)
|
|
do_free(cur->data);
|
|
list->head = cur->next;
|
|
free(cur);
|
|
}
|
|
free(list);
|
|
}
|
|
|
|
int _xcb_map_put(_xcb_map *list, unsigned int key, void *data)
|
|
{
|
|
node *cur = malloc(sizeof(node));
|
|
if(!cur)
|
|
return 0;
|
|
cur->key = key;
|
|
cur->data = data;
|
|
cur->next = 0;
|
|
*list->tail = cur;
|
|
list->tail = &cur->next;
|
|
return 1;
|
|
}
|
|
|
|
void *_xcb_map_remove(_xcb_map *list, unsigned int key)
|
|
{
|
|
node **cur;
|
|
for(cur = &list->head; *cur; cur = &(*cur)->next)
|
|
if((*cur)->key == key)
|
|
{
|
|
node *tmp = *cur;
|
|
void *ret = (*cur)->data;
|
|
*cur = (*cur)->next;
|
|
if(!*cur)
|
|
list->tail = cur;
|
|
|
|
free(tmp);
|
|
return ret;
|
|
}
|
|
return 0;
|
|
}
|