forked from xdebug/xdebug
-
Notifications
You must be signed in to change notification settings - Fork 0
/
xdebug_private.c
108 lines (91 loc) · 2.88 KB
/
xdebug_private.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
/*
+----------------------------------------------------------------------+
| Xdebug |
+----------------------------------------------------------------------+
| Copyright (c) 2002-2018 Derick Rethans |
+----------------------------------------------------------------------+
| This source file is subject to version 1.01 of the Xdebug license, |
| that is bundled with this package in the file LICENSE, and is |
| available at through the world-wide-web at |
| https://xdebug.org/license.php |
| If you did not receive a copy of the Xdebug license and are unable |
| to obtain it through the world-wide-web, please send a note to |
| [email protected] so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Authors: Derick Rethans <[email protected]> |
+----------------------------------------------------------------------+
*/
#include "php_xdebug.h"
#include "xdebug_private.h"
ZEND_EXTERN_MODULE_GLOBALS(xdebug)
function_stack_entry *xdebug_get_stack_head(TSRMLS_D)
{
xdebug_llist_element *le;
if (XG(stack)) {
if ((le = XDEBUG_LLIST_HEAD(XG(stack)))) {
return XDEBUG_LLIST_VALP(le);
} else {
return NULL;
}
} else {
return NULL;
}
}
function_stack_entry *xdebug_get_stack_frame(int nr TSRMLS_DC)
{
xdebug_llist_element *le;
if (!XG(stack)) {
return NULL;
}
if (!(le = XDEBUG_LLIST_TAIL(XG(stack)))) {
return NULL;
}
if (nr < 0) {
return NULL;
}
while (nr) {
nr--;
le = XDEBUG_LLIST_PREV(le);
if (!le) {
return NULL;
}
}
return XDEBUG_LLIST_VALP(le);
}
function_stack_entry *xdebug_get_stack_tail(TSRMLS_D)
{
xdebug_llist_element *le;
if (XG(stack)) {
if ((le = XDEBUG_LLIST_TAIL(XG(stack)))) {
return XDEBUG_LLIST_VALP(le);
} else {
return NULL;
}
} else {
return NULL;
}
}
static void xdebug_used_var_hash_from_llist_dtor(void *data)
{
xdebug_str *var_name = (xdebug_str*) data;
xdebug_str_free(var_name);
}
static int xdebug_compare_le_xdebug_str(const void *le1, const void *le2)
{
return strcmp(
((xdebug_str *) XDEBUG_LLIST_VALP(*(xdebug_llist_element **) le1))->d,
((xdebug_str *) XDEBUG_LLIST_VALP(*(xdebug_llist_element **) le2))->d
);
}
xdebug_hash* xdebug_declared_var_hash_from_llist(xdebug_llist *list)
{
xdebug_hash *tmp;
xdebug_llist_element *le;
xdebug_str *var_name;
tmp = xdebug_hash_alloc_with_sort(32, xdebug_used_var_hash_from_llist_dtor, xdebug_compare_le_xdebug_str);
for (le = XDEBUG_LLIST_HEAD(list); le != NULL; le = XDEBUG_LLIST_NEXT(le)) {
var_name = (xdebug_str*) XDEBUG_LLIST_VALP(le);
xdebug_hash_add(tmp, var_name->d, var_name->l, xdebug_str_copy(var_name));
}
return tmp;
}