forked from xdebug/xdebug
-
Notifications
You must be signed in to change notification settings - Fork 0
/
xdebug_handlers.c
88 lines (78 loc) · 2.36 KB
/
xdebug_handlers.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
/*
+----------------------------------------------------------------------+
| Xdebug |
+----------------------------------------------------------------------+
| Copyright (c) 2002-2011 Derick Rethans |
+----------------------------------------------------------------------+
| This source file is subject to version 1.0 of the Xdebug license, |
| that is bundled with this package in the file LICENSE, and is |
| available at through the world-wide-web at |
| http://xdebug.derickrethans.nl/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_com.h"
#include "xdebug_handlers.h"
#include "xdebug_handler_dbgp.h"
#include "xdebug_mm.h"
xdebug_remote_handler_info handlers[] = {
{ "dbgp", "DBGp - Common DeBuGger Protocol", xdebug_handler_dbgp },
{ 0, NULL, { NULL } }
};
xdebug_remote_handler* xdebug_handler_get(char* mode)
{
xdebug_remote_handler_info *ptr = handlers;
while (ptr->name) {
if (strcmp(mode, ptr->name) == 0) {
return &ptr->handler;
}
ptr++;
}
return NULL;
}
xdebug_remote_handler_info* xdebug_handlers_get(void)
{
return handlers;
}
void xdebug_brk_info_dtor(xdebug_brk_info *brk)
{
if (brk->type) {
xdfree(brk->type);
}
if (brk->classname) {
xdfree(brk->classname);
}
if (brk->functionname) {
xdfree(brk->functionname);
}
if (brk->file) {
xdfree(brk->file);
}
if (brk->condition) {
efree(brk->condition);
}
xdfree(brk);
}
void xdebug_hash_brk_dtor(xdebug_brk_info *brk)
{
xdebug_brk_info_dtor(brk);
}
void xdebug_llist_brk_dtor(void *dummy, xdebug_brk_info *brk)
{
xdebug_brk_info_dtor(brk);
}
void xdebug_hash_eval_info_dtor(xdebug_eval_info *ei)
{
ei->refcount--;
if (ei->refcount == 0) {
xdfree(ei->contents);
xdfree(ei);
} else {
/* refcount wasn't 0 yet, so we won't free it yet */
}
}