-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathhandler_dbgp.h
More file actions
103 lines (89 loc) · 4.7 KB
/
handler_dbgp.h
File metadata and controls
103 lines (89 loc) · 4.7 KB
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
/*
+----------------------------------------------------------------------+
| Xdebug |
+----------------------------------------------------------------------+
| Copyright (c) 2002-2022 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 |
| derick@xdebug.org so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
*/
#ifndef __HAVE_XDEBUG_HANDLER_DBGP_H__
#define __HAVE_XDEBUG_HANDLER_DBGP_H__
#include <string.h>
#include "handlers.h"
#include "lib/cmd_parser.h"
#include "lib/xml.h"
#define DBGP_VERSION "1.0"
typedef struct xdebug_dbgp_result {
int status;
int reason;
int code;
} xdebug_dbgp_result;
#define ADD_REASON_MESSAGE(c) { \
xdebug_xml_node *message = xdebug_xml_node_init("message"); \
xdebug_xml_add_text(message, xdstrdup(error_message_from_code(c))); \
xdebug_xml_add_child(error, message); \
}
#define RETURN_RESULT(s, r, c) { \
xdebug_xml_node *error = xdebug_xml_node_init("error"); \
xdebug_xml_node *message = xdebug_xml_node_init("message"); \
\
xdebug_xml_add_attribute(*retval, "status", xdebug_dbgp_status_strings[(s)]); \
xdebug_xml_add_attribute(*retval, "reason", xdebug_dbgp_reason_strings[(r)]); \
xdebug_xml_add_attribute_ex(error, "code", xdebug_sprintf("%u", (c)), 0, 1); \
xdebug_xml_add_text(message, xdstrdup(error_message_from_code(c))); \
xdebug_xml_add_child(error, message); \
\
xdebug_xml_add_child(*retval, error); \
return; \
}
#define RETURN_RESULT_WITH_MESSAGE(s, r, c, m) { \
xdebug_xml_node *error = xdebug_xml_node_init("error"); \
xdebug_xml_node *message = xdebug_xml_node_init("message"); \
\
xdebug_xml_add_attribute(*retval, "status", xdebug_dbgp_status_strings[(s)]); \
xdebug_xml_add_attribute(*retval, "reason", xdebug_dbgp_reason_strings[(r)]); \
xdebug_xml_add_attribute_ex(error, "code", xdebug_sprintf("%u", (c)), 0, 1); \
xdebug_xml_add_text(message, (m)); \
xdebug_xml_add_child(error, message); \
xdebug_xml_add_child(*retval, error); \
return; \
}
#define DBGP_FUNC_PARAMETERS xdebug_xml_node **retval, xdebug_con *context, xdebug_dbgp_arg *args
#define DBGP_FUNC_PASS_PARAMETERS retval, context, args
#define DBGP_FUNC(name) static void xdebug_dbgp_handle_##name(DBGP_FUNC_PARAMETERS)
#define DBGP_FUNC_ENTRY(name,flags) { #name, xdebug_dbgp_handle_##name, 0, flags },
#define DBGP_CONT_FUNC_ENTRY(name,flags) { #name, xdebug_dbgp_handle_##name, 1, flags },
#define DBGP_STOP_FUNC_ENTRY(name,flags) { #name, xdebug_dbgp_handle_##name, 2, flags },
#define XDEBUG_DBGP_NONE 1 << 0
#define XDEBUG_DBGP_POST_MORTEM 1 << 1 /* command is valid in 'stopping' (post mortem) state */
typedef struct xdebug_dbgp_cmd {
const char *name;
void (*handler)(DBGP_FUNC_PARAMETERS);
int cont;
int flags;
} xdebug_dbgp_cmd;
typedef struct xdebug_dbgp_resolve_context {
xdebug_con *context;
zend_string *filename;
xdebug_lines_list *lines_list;
} xdebug_dbgp_resolve_context;
int xdebug_dbgp_init(xdebug_con *context, int mode);
int xdebug_dbgp_deinit(xdebug_con *context);
int xdebug_dbgp_error(xdebug_con *context, int type, char *exception_type, char *message, const char *location, const unsigned int line, xdebug_vector *stack);
int xdebug_dbgp_break_on_line(xdebug_con *context, xdebug_brk_info *brk, zend_string *filename, int lineno);
int xdebug_dbgp_breakpoint(xdebug_con *context, xdebug_vector *stack, xdebug_str *filename, long lineno, int type, char *exception, char *code, const char *message, xdebug_brk_info *brk_info, zval *return_value);
int xdebug_dbgp_resolve_breakpoints(xdebug_con *context, zend_string *filename);
int xdebug_dbgp_stream_output(const char *string, unsigned int length);
int xdebug_dbgp_notification(xdebug_con *context, xdebug_str *filename, long lineno, int type, char *type_string, char *message);
int xdebug_dbgp_user_notify(xdebug_con *context, zend_string *filename, long lineno, zval *data);
void XDEBUG_ATTRIBUTE_FORMAT(printf, 2, 3) xdebug_dbgp_log(int log_level, const char *fmt, ...);
int xdebug_dbgp_register_eval_id(xdebug_con *context, function_stack_entry *fse);
extern xdebug_remote_handler xdebug_handler_dbgp;
#endif