Busybox: Upgrade to 1.21.1 (stable). lsof active.
[tomato.git] / release / src / router / php / Zend / zend_stack.c
blob3e7401f5ff686a529b25a4c4c72e32d70acb3795
1 /*
2 +----------------------------------------------------------------------+
3 | Zend Engine |
4 +----------------------------------------------------------------------+
5 | Copyright (c) 1998-2013 Zend Technologies Ltd. (http://www.zend.com) |
6 +----------------------------------------------------------------------+
7 | This source file is subject to version 2.00 of the Zend license, |
8 | that is bundled with this package in the file LICENSE, and is |
9 | available through the world-wide-web at the following url: |
10 | http://www.zend.com/license/2_00.txt. |
11 | If you did not receive a copy of the Zend license and are unable to |
12 | obtain it through the world-wide-web, please send a note to |
13 | license@zend.com so we can mail you a copy immediately. |
14 +----------------------------------------------------------------------+
15 | Authors: Andi Gutmans <andi@zend.com> |
16 | Zeev Suraski <zeev@zend.com> |
17 +----------------------------------------------------------------------+
20 /* $Id$ */
22 #include "zend.h"
23 #include "zend_stack.h"
25 ZEND_API int zend_stack_init(zend_stack *stack)
27 stack->top = 0;
28 stack->max = 0;
29 stack->elements = NULL;
30 return SUCCESS;
33 ZEND_API int zend_stack_push(zend_stack *stack, const void *element, int size)
35 if (stack->top >= stack->max) { /* we need to allocate more memory */
36 stack->elements = (void **) erealloc(stack->elements,
37 (sizeof(void **) * (stack->max += STACK_BLOCK_SIZE)));
38 if (!stack->elements) {
39 return FAILURE;
42 stack->elements[stack->top] = (void *) emalloc(size);
43 memcpy(stack->elements[stack->top], element, size);
44 return stack->top++;
48 ZEND_API int zend_stack_top(const zend_stack *stack, void **element)
50 if (stack->top > 0) {
51 *element = stack->elements[stack->top - 1];
52 return SUCCESS;
53 } else {
54 *element = NULL;
55 return FAILURE;
60 ZEND_API int zend_stack_del_top(zend_stack *stack)
62 if (stack->top > 0) {
63 efree(stack->elements[--stack->top]);
65 return SUCCESS;
69 ZEND_API int zend_stack_int_top(const zend_stack *stack)
71 int *e;
73 if (zend_stack_top(stack, (void **) &e) == FAILURE) {
74 return FAILURE; /* this must be a negative number, since negative numbers can't be address numbers */
75 } else {
76 return *e;
81 ZEND_API int zend_stack_is_empty(const zend_stack *stack)
83 if (stack->top == 0) {
84 return 1;
85 } else {
86 return 0;
91 ZEND_API int zend_stack_destroy(zend_stack *stack)
93 int i;
95 if (stack->elements) {
96 for (i = 0; i < stack->top; i++) {
97 efree(stack->elements[i]);
99 efree(stack->elements);
100 stack->elements = NULL;
103 return SUCCESS;
107 ZEND_API void **zend_stack_base(const zend_stack *stack)
109 return stack->elements;
113 ZEND_API int zend_stack_count(const zend_stack *stack)
115 return stack->top;
119 ZEND_API void zend_stack_apply(zend_stack *stack, int type, int (*apply_function)(void *element))
121 int i;
123 switch (type) {
124 case ZEND_STACK_APPLY_TOPDOWN:
125 for (i=stack->top-1; i>=0; i--) {
126 if (apply_function(stack->elements[i])) {
127 break;
130 break;
131 case ZEND_STACK_APPLY_BOTTOMUP:
132 for (i=0; i<stack->top; i++) {
133 if (apply_function(stack->elements[i])) {
134 break;
137 break;
142 ZEND_API void zend_stack_apply_with_argument(zend_stack *stack, int type, int (*apply_function)(void *element, void *arg), void *arg)
144 int i;
146 switch (type) {
147 case ZEND_STACK_APPLY_TOPDOWN:
148 for (i=stack->top-1; i>=0; i--) {
149 if (apply_function(stack->elements[i], arg)) {
150 break;
153 break;
154 case ZEND_STACK_APPLY_BOTTOMUP:
155 for (i=0; i<stack->top; i++) {
156 if (apply_function(stack->elements[i], arg)) {
157 break;
160 break;
165 * Local variables:
166 * tab-width: 4
167 * c-basic-offset: 4
168 * indent-tabs-mode: t
169 * End: