1999-04-08 02:10:10 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Zend Engine |
|
|
|
|
+----------------------------------------------------------------------+
|
2019-01-30 17:23:29 +08:00
|
|
|
| Copyright (c) Zend Technologies Ltd. (http://www.zend.com) |
|
1999-04-08 02:10:10 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2001-12-11 23:16:21 +08:00
|
|
|
| This source file is subject to version 2.00 of the Zend license, |
|
2015-01-03 17:22:58 +08:00
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
2003-06-11 04:04:29 +08:00
|
|
|
| available through the world-wide-web at the following url: |
|
2001-12-11 23:16:21 +08:00
|
|
|
| http://www.zend.com/license/2_00.txt. |
|
1999-07-16 22:58:16 +08: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-08 02:10:10 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2018-11-01 23:20:07 +08:00
|
|
|
| Authors: Andi Gutmans <andi@php.net> |
|
|
|
|
| Zeev Suraski <zeev@php.net> |
|
1999-04-08 02:10:10 +08:00
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "zend.h"
|
|
|
|
#include "zend_ptr_stack.h"
|
2018-09-17 10:39:01 +08:00
|
|
|
#include <stdarg.h>
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2021-01-15 19:30:54 +08:00
|
|
|
ZEND_API void zend_ptr_stack_init_ex(zend_ptr_stack *stack, bool persistent)
|
1999-04-08 02:10:10 +08:00
|
|
|
{
|
2010-07-09 15:31:18 +08:00
|
|
|
stack->top_element = stack->elements = NULL;
|
|
|
|
stack->top = stack->max = 0;
|
2007-11-09 18:34:27 +08:00
|
|
|
stack->persistent = persistent;
|
|
|
|
}
|
|
|
|
|
|
|
|
ZEND_API void zend_ptr_stack_init(zend_ptr_stack *stack)
|
|
|
|
{
|
|
|
|
zend_ptr_stack_init_ex(stack, 0);
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-12-26 07:52:00 +08:00
|
|
|
ZEND_API void zend_ptr_stack_n_push(zend_ptr_stack *stack, int count, ...)
|
1999-07-30 19:55:53 +08:00
|
|
|
{
|
|
|
|
va_list ptr;
|
|
|
|
void *elem;
|
2015-01-03 17:22:58 +08:00
|
|
|
|
2004-07-31 05:00:37 +08:00
|
|
|
ZEND_PTR_STACK_RESIZE_IF_NEEDED(stack, count)
|
|
|
|
|
1999-07-30 19:55:53 +08:00
|
|
|
va_start(ptr, count);
|
|
|
|
while (count>0) {
|
|
|
|
elem = va_arg(ptr, void *);
|
|
|
|
stack->top++;
|
|
|
|
*(stack->top_element++) = elem;
|
|
|
|
count--;
|
|
|
|
}
|
|
|
|
va_end(ptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-12-26 07:52:00 +08:00
|
|
|
ZEND_API void zend_ptr_stack_n_pop(zend_ptr_stack *stack, int count, ...)
|
1999-07-30 19:55:53 +08:00
|
|
|
{
|
|
|
|
va_list ptr;
|
|
|
|
void **elem;
|
2015-01-03 17:22:58 +08:00
|
|
|
|
1999-07-30 19:55:53 +08:00
|
|
|
va_start(ptr, count);
|
|
|
|
while (count>0) {
|
|
|
|
elem = va_arg(ptr, void **);
|
1999-07-30 20:27:04 +08:00
|
|
|
*elem = *(--stack->top_element);
|
1999-07-30 19:55:53 +08:00
|
|
|
stack->top--;
|
|
|
|
count--;
|
|
|
|
}
|
|
|
|
va_end(ptr);
|
|
|
|
}
|
1999-04-08 02:10:10 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ZEND_API void zend_ptr_stack_destroy(zend_ptr_stack *stack)
|
|
|
|
{
|
|
|
|
if (stack->elements) {
|
2007-11-09 18:34:27 +08:00
|
|
|
pefree(stack->elements, stack->persistent);
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ZEND_API void zend_ptr_stack_apply(zend_ptr_stack *stack, void (*func)(void *))
|
|
|
|
{
|
|
|
|
int i = stack->top;
|
|
|
|
|
|
|
|
while (--i >= 0) {
|
|
|
|
func(stack->elements[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-15 21:07:59 +08:00
|
|
|
ZEND_API void zend_ptr_stack_reverse_apply(zend_ptr_stack *stack, void (*func)(void *))
|
|
|
|
{
|
|
|
|
int i = 0;
|
|
|
|
|
|
|
|
while (i < stack->top) {
|
|
|
|
func(stack->elements[i++]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2021-01-15 19:30:54 +08:00
|
|
|
ZEND_API void zend_ptr_stack_clean(zend_ptr_stack *stack, void (*func)(void *), bool free_elements)
|
1999-04-08 02:10:10 +08:00
|
|
|
{
|
|
|
|
zend_ptr_stack_apply(stack, func);
|
2000-06-18 02:04:58 +08:00
|
|
|
if (free_elements) {
|
|
|
|
int i = stack->top;
|
|
|
|
|
|
|
|
while (--i >= 0) {
|
2007-11-09 18:34:27 +08:00
|
|
|
pefree(stack->elements[i], stack->persistent);
|
2000-06-18 02:04:58 +08:00
|
|
|
}
|
|
|
|
}
|
1999-04-08 02:10:10 +08:00
|
|
|
stack->top = 0;
|
1999-04-14 01:03:10 +08:00
|
|
|
stack->top_element = stack->elements;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
1999-04-13 02:29:09 +08:00
|
|
|
|
|
|
|
|
2000-06-18 02:04:58 +08:00
|
|
|
ZEND_API int zend_ptr_stack_num_elements(zend_ptr_stack *stack)
|
|
|
|
{
|
|
|
|
return stack->top;
|
|
|
|
}
|