php-src/Zend/zend_llist.c

306 lines
6.6 KiB
C
Raw Normal View History

1999-04-07 18:10:10 +00:00
/*
+----------------------------------------------------------------------+
| Zend Engine |
+----------------------------------------------------------------------+
2001-02-26 05:43:27 +00:00
| Copyright (c) 1998-2001 Zend Technologies Ltd. (http://www.zend.com) |
1999-04-07 18:10:10 +00:00
+----------------------------------------------------------------------+
2000-03-06 05:26:39 +00:00
| This source file is subject to version 0.92 of the Zend license, |
1999-07-16 14:58:16 +00:00
| that is bundled with this package in the file LICENSE, and is |
| available at through the world-wide-web at |
2000-03-06 05:26:39 +00:00
| http://www.zend.com/license/0_92.txt. |
1999-07-16 14:58:16 +00:00
| If you did not receive a copy of the Zend license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| license@zend.com so we can mail you a copy immediately. |
1999-04-07 18:10:10 +00:00
+----------------------------------------------------------------------+
| Authors: Andi Gutmans <andi@zend.com> |
| Zeev Suraski <zeev@zend.com> |
+----------------------------------------------------------------------+
*/
1999-07-16 14:58:16 +00:00
1999-04-07 18:10:10 +00:00
#include "zend.h"
#include "zend_llist.h"
2001-09-19 10:25:04 +00:00
#include "zend_qsort.h"
1999-04-07 18:10:10 +00:00
ZEND_API void zend_llist_init(zend_llist *l, size_t size, llist_dtor_func_t dtor, unsigned char persistent)
1999-04-07 18:10:10 +00:00
{
2001-08-31 21:52:44 +00:00
l->head = NULL;
l->tail = NULL;
l->count = 0;
l->size = size;
l->dtor = dtor;
1999-04-07 18:10:10 +00:00
l->persistent = persistent;
}
ZEND_API void zend_llist_add_element(zend_llist *l, void *element)
{
zend_llist_element *tmp = pemalloc(sizeof(zend_llist_element)+l->size-1, l->persistent);
tmp->prev = l->tail;
tmp->next = NULL;
if (l->tail) {
l->tail->next = tmp;
} else {
l->head = tmp;
}
l->tail = tmp;
memcpy(tmp->data, element, l->size);
2001-08-31 21:52:44 +00:00
++l->count;
1999-04-07 18:10:10 +00:00
}
1999-05-12 18:06:14 +00:00
ZEND_API void zend_llist_prepend_element(zend_llist *l, void *element)
{
zend_llist_element *tmp = pemalloc(sizeof(zend_llist_element)+l->size-1, l->persistent);
tmp->next = l->head;
tmp->prev = NULL;
if (l->head) {
l->head->prev = tmp;
} else {
l->tail = tmp;
}
l->head = tmp;
memcpy(tmp->data, element, l->size);
2001-08-31 21:52:44 +00:00
++l->count;
1999-05-12 18:06:14 +00:00
}
2001-08-11 15:56:40 +00:00
#define DEL_LLIST_ELEMENT(current, l) \
2001-08-18 18:16:49 +00:00
if ((current)->prev) {\
(current)->prev->next = (current)->next;\
} else {\
2001-08-18 18:16:49 +00:00
(l)->head = (current)->next;\
}\
2001-08-18 18:16:49 +00:00
if ((current)->next) {\
(current)->next->prev = (current)->prev;\
} else {\
2001-08-18 18:16:49 +00:00
(l)->tail = (current)->prev;\
}\
2001-08-18 18:16:49 +00:00
if ((l)->dtor) {\
(l)->dtor((current)->data);\
pefree((current), (l)->persistent);\
2001-08-31 21:52:44 +00:00
}\
--l->count;
ZEND_API void zend_llist_del_element(zend_llist *l, void *element, int (*compare)(void *element1, void *element2))
1999-04-07 18:10:10 +00:00
{
zend_llist_element *current=l->head;
2001-08-18 18:16:49 +00:00
zend_llist_element *next;
1999-04-07 18:10:10 +00:00
while (current) {
2001-08-18 18:16:49 +00:00
next = current->next;
if (compare(current->data, element)) {
2001-08-11 15:56:40 +00:00
DEL_LLIST_ELEMENT(current, l);
1999-04-07 18:10:10 +00:00
break;
}
2001-08-18 18:16:49 +00:00
current = next;
1999-04-07 18:10:10 +00:00
}
}
ZEND_API void zend_llist_destroy(zend_llist *l)
{
1999-05-05 19:24:46 +00:00
zend_llist_element *current=l->head, *next;
while (current) {
next = current->next;
1999-05-05 19:24:46 +00:00
if (l->dtor) {
l->dtor(current->data);
}
1999-04-07 18:10:10 +00:00
pefree(current, l->persistent);
current = next;
}
2001-08-31 21:52:44 +00:00
l->count = 0;
1999-04-07 18:10:10 +00:00
}
1999-05-05 19:24:46 +00:00
ZEND_API void zend_llist_clean(zend_llist *l)
{
zend_llist_destroy(l);
l->head = l->tail = NULL;
}
2001-08-18 18:16:49 +00:00
ZEND_API void *zend_llist_remove_tail(zend_llist *l)
1999-04-07 18:10:10 +00:00
{
zend_llist_element *old_tail;
2001-08-18 18:16:49 +00:00
void *data;
1999-04-07 18:10:10 +00:00
if ((old_tail = l->tail)) {
if (l->tail->prev) {
l->tail->prev->next = NULL;
}
2001-08-18 18:16:49 +00:00
data = old_tail->data;
1999-04-07 18:10:10 +00:00
l->tail = l->tail->prev;
2000-04-25 09:45:58 +00:00
pefree(old_tail, l->persistent);
2001-08-18 18:16:49 +00:00
2001-08-31 21:52:44 +00:00
--l->count;
2001-08-18 18:16:49 +00:00
return data;
1999-04-07 18:10:10 +00:00
}
2001-08-18 18:16:49 +00:00
return NULL;
1999-04-07 18:10:10 +00:00
}
ZEND_API void zend_llist_copy(zend_llist *dst, zend_llist *src)
{
zend_llist_element *ptr;
zend_llist_init(dst, src->size, src->dtor, src->persistent);
ptr = src->head;
while (ptr) {
zend_llist_add_element(dst, ptr->data);
ptr = ptr->next;
}
}
ZEND_API void zend_llist_apply_with_del(zend_llist *l, int (*func)(void *data))
{
zend_llist_element *element, *next;
element=l->head;
while (element) {
next = element->next;
if (func(element->data)) {
2001-08-11 15:56:40 +00:00
DEL_LLIST_ELEMENT(element, l);
}
element = next;
}
}
2001-07-31 04:53:54 +00:00
ZEND_API void zend_llist_apply(zend_llist *l, llist_apply_func_t func TSRMLS_DC)
1999-04-07 18:10:10 +00:00
{
zend_llist_element *element;
for (element=l->head; element; element=element->next) {
2001-07-31 04:53:54 +00:00
func(element->data TSRMLS_CC);
1999-04-07 18:10:10 +00:00
}
}
2001-09-19 10:25:04 +00:00
ZEND_API void zend_llist_sort(zend_llist *l, llist_compare_func_t comp_func TSRMLS_DC)
{
size_t i;
zend_llist_element **elements;
zend_llist_element *element, **ptr;
2001-08-31 21:52:44 +00:00
if (l->count <= 0) {
return;
}
2001-08-31 21:52:44 +00:00
elements = (zend_llist_element **) emalloc(l->count * sizeof(zend_llist_element *));
ptr = &elements[0];
for (element=l->head; element; element=element->next) {
*ptr++ = element;
}
2001-09-19 10:25:04 +00:00
zend_qsort(elements, l->count, sizeof(zend_llist_element *), (compare_func_t) comp_func TSRMLS_CC);
l->head = elements[0];
elements[0]->prev = NULL;
2001-08-31 21:52:44 +00:00
for (i = 1; i < l->count; i++) {
elements[i]->prev = elements[i-1];
elements[i-1]->next = elements[i];
}
elements[i-1]->next = NULL;
l->tail = elements[i-1];
efree(elements);
}
1999-04-07 18:10:10 +00:00
2001-07-31 04:53:54 +00:00
ZEND_API void zend_llist_apply_with_argument(zend_llist *l, llist_apply_with_arg_func_t func, void *arg TSRMLS_DC)
1999-04-07 18:10:10 +00:00
{
zend_llist_element *element;
for (element=l->head; element; element=element->next) {
2001-07-31 04:53:54 +00:00
func(element->data, arg TSRMLS_CC);
1999-04-07 18:10:10 +00:00
}
}
2001-07-31 04:53:54 +00:00
ZEND_API void zend_llist_apply_with_arguments(zend_llist *l, llist_apply_with_args_func_t func TSRMLS_DC, int num_args, ...)
{
zend_llist_element *element;
va_list args;
va_start(args, num_args);
for (element=l->head; element; element=element->next) {
2001-07-31 04:53:54 +00:00
func(element->data, num_args, args TSRMLS_CC);
}
va_end(args);
}
1999-04-07 18:10:10 +00:00
ZEND_API int zend_llist_count(zend_llist *l)
{
2001-08-31 21:52:44 +00:00
return l->count;
1999-04-07 18:10:10 +00:00
}
2000-03-14 21:20:38 +00:00
ZEND_API void *zend_llist_get_first_ex(zend_llist *l, zend_llist_position *pos)
1999-04-07 18:10:10 +00:00
{
2000-03-14 21:20:38 +00:00
zend_llist_position *current = pos ? pos : &l->traverse_ptr;
*current = l->head;
if (*current) {
return (*current)->data;
1999-04-07 18:10:10 +00:00
} else {
return NULL;
}
}
2000-03-14 21:20:38 +00:00
ZEND_API void *zend_llist_get_last_ex(zend_llist *l, zend_llist_position *pos)
1999-04-07 18:10:10 +00:00
{
2000-03-14 21:20:38 +00:00
zend_llist_position *current = pos ? pos : &l->traverse_ptr;
*current = l->tail;
if (*current) {
return (*current)->data;
1999-04-07 18:10:10 +00:00
} else {
return NULL;
}
}
2000-03-14 21:20:38 +00:00
ZEND_API void *zend_llist_get_next_ex(zend_llist *l, zend_llist_position *pos)
1999-04-07 18:10:10 +00:00
{
2000-03-14 21:20:38 +00:00
zend_llist_position *current = pos ? pos : &l->traverse_ptr;
if (*current) {
*current = (*current)->next;
if (*current) {
return (*current)->data;
1999-04-07 18:10:10 +00:00
}
}
return NULL;
}
2000-03-14 21:20:38 +00:00
ZEND_API void *zend_llist_get_prev_ex(zend_llist *l, zend_llist_position *pos)
1999-04-07 18:10:10 +00:00
{
2000-03-14 21:20:38 +00:00
zend_llist_position *current = pos ? pos : &l->traverse_ptr;
if (*current) {
*current = (*current)->prev;
if (*current) {
return (*current)->data;
1999-04-07 18:10:10 +00:00
}
}
return NULL;
}