mirror of
https://github.com/MariaDB/server.git
synced 2025-01-21 14:32:34 +01:00
1d1dc31a06
symbols. Use it for all definitions of non-static variables and functions. lexyy.c, make_flex.sh: Declare yylex as UNIV_INTERN, not static. It is referenced from pars0grm.c. Actually, according to nm .libs/ha_innodb.so|grep -w '[ABCE-TVXYZ]' the following symbols are still global: * The vtable for class ha_innodb * pars0grm.c: The function yyparse() and the variables yychar, yylval, yynerrs The required changes to the Bison-generated file pars0grm.c will be addressed in a separate commit, which will add a script similar to make_flex.sh. The class ha_innodb is renamed from class ha_innobase by a #define. Thus, there will be no clash with the builtin InnoDB. However, there will be some overhead for invoking virtual methods of class ha_innodb. Ideas for making the vtable hidden are welcome. -fvisibility=hidden is not available in GCC 3.
169 lines
3.5 KiB
C
169 lines
3.5 KiB
C
#include "ut0list.h"
|
|
#ifdef UNIV_NONINL
|
|
#include "ut0list.ic"
|
|
#endif
|
|
|
|
/********************************************************************
|
|
Create a new list. */
|
|
UNIV_INTERN
|
|
ib_list_t*
|
|
ib_list_create(void)
|
|
/*=================*/
|
|
/* out: list */
|
|
{
|
|
ib_list_t* list = mem_alloc(sizeof(ib_list_t));
|
|
|
|
list->first = NULL;
|
|
list->last = NULL;
|
|
list->is_heap_list = FALSE;
|
|
|
|
return(list);
|
|
}
|
|
|
|
/********************************************************************
|
|
Create a new list using the given heap. ib_list_free MUST NOT BE CALLED for
|
|
lists created with this function. */
|
|
UNIV_INTERN
|
|
ib_list_t*
|
|
ib_list_create_heap(
|
|
/*================*/
|
|
/* out: list */
|
|
mem_heap_t* heap) /* in: memory heap to use */
|
|
{
|
|
ib_list_t* list = mem_heap_alloc(heap, sizeof(ib_list_t));
|
|
|
|
list->first = NULL;
|
|
list->last = NULL;
|
|
list->is_heap_list = TRUE;
|
|
|
|
return(list);
|
|
}
|
|
|
|
/********************************************************************
|
|
Free a list. */
|
|
UNIV_INTERN
|
|
void
|
|
ib_list_free(
|
|
/*=========*/
|
|
ib_list_t* list) /* in: list */
|
|
{
|
|
ut_a(!list->is_heap_list);
|
|
|
|
/* We don't check that the list is empty because it's entirely valid
|
|
to e.g. have all the nodes allocated from a single heap that is then
|
|
freed after the list itself is freed. */
|
|
|
|
mem_free(list);
|
|
}
|
|
|
|
/********************************************************************
|
|
Add the data to the start of the list. */
|
|
UNIV_INTERN
|
|
ib_list_node_t*
|
|
ib_list_add_first(
|
|
/*==============*/
|
|
/* out: new list node*/
|
|
ib_list_t* list, /* in: list */
|
|
void* data, /* in: data */
|
|
mem_heap_t* heap) /* in: memory heap to use */
|
|
{
|
|
return(ib_list_add_after(list, ib_list_get_first(list), data, heap));
|
|
}
|
|
|
|
/********************************************************************
|
|
Add the data to the end of the list. */
|
|
UNIV_INTERN
|
|
ib_list_node_t*
|
|
ib_list_add_last(
|
|
/*=============*/
|
|
/* out: new list node*/
|
|
ib_list_t* list, /* in: list */
|
|
void* data, /* in: data */
|
|
mem_heap_t* heap) /* in: memory heap to use */
|
|
{
|
|
return(ib_list_add_after(list, ib_list_get_last(list), data, heap));
|
|
}
|
|
|
|
/********************************************************************
|
|
Add the data after the indicated node. */
|
|
UNIV_INTERN
|
|
ib_list_node_t*
|
|
ib_list_add_after(
|
|
/*==============*/
|
|
/* out: new list node*/
|
|
ib_list_t* list, /* in: list */
|
|
ib_list_node_t* prev_node, /* in: node preceding new node (can
|
|
be NULL) */
|
|
void* data, /* in: data */
|
|
mem_heap_t* heap) /* in: memory heap to use */
|
|
{
|
|
ib_list_node_t* node = mem_heap_alloc(heap, sizeof(ib_list_node_t));
|
|
|
|
node->data = data;
|
|
|
|
if (!list->first) {
|
|
/* Empty list. */
|
|
|
|
ut_a(!prev_node);
|
|
|
|
node->prev = NULL;
|
|
node->next = NULL;
|
|
|
|
list->first = node;
|
|
list->last = node;
|
|
} else if (!prev_node) {
|
|
/* Start of list. */
|
|
|
|
node->prev = NULL;
|
|
node->next = list->first;
|
|
|
|
list->first->prev = node;
|
|
|
|
list->first = node;
|
|
} else {
|
|
/* Middle or end of list. */
|
|
|
|
node->prev = prev_node;
|
|
node->next = prev_node->next;
|
|
|
|
prev_node->next = node;
|
|
|
|
if (node->next) {
|
|
node->next->prev = node;
|
|
} else {
|
|
list->last = node;
|
|
}
|
|
}
|
|
|
|
return(node);
|
|
}
|
|
|
|
/********************************************************************
|
|
Remove the node from the list. */
|
|
UNIV_INTERN
|
|
void
|
|
ib_list_remove(
|
|
/*===========*/
|
|
ib_list_t* list, /* in: list */
|
|
ib_list_node_t* node) /* in: node to remove */
|
|
{
|
|
if (node->prev) {
|
|
node->prev->next = node->next;
|
|
} else {
|
|
/* First item in list. */
|
|
|
|
ut_ad(list->first == node);
|
|
|
|
list->first = node->next;
|
|
}
|
|
|
|
if (node->next) {
|
|
node->next->prev = node->prev;
|
|
} else {
|
|
/* Last item in list. */
|
|
|
|
ut_ad(list->last == node);
|
|
|
|
list->last = node->prev;
|
|
}
|
|
}
|