forked from laruence/yaf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yaf_exception.h
85 lines (71 loc) · 2.73 KB
/
yaf_exception.h
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
/*
+----------------------------------------------------------------------+
| Yet Another Framework |
+----------------------------------------------------------------------+
| This source file is subject to version 3.01 of the PHP license, |
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
| http://www.php.net/license/3_01.txt |
| If you did not receive a copy of the PHP 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. |
+----------------------------------------------------------------------+
| Author: Xinchen Hui <[email protected]> |
+----------------------------------------------------------------------+
*/
#ifndef YAF_EXCEPTION_H
#define YAF_EXCEPTION_H
#define YAF_MAX_BUILDIN_EXCEPTION 10
#define YAF_ERR_BASE 512
#define YAF_UERR_BASE 1024
#define YAF_ERR_MASK 127
#define YAF_ERR_STARTUP_FAILED 512
#define YAF_ERR_ROUTE_FAILED 513
#define YAF_ERR_DISPATCH_FAILED 514
#define YAF_ERR_NOTFOUND_MODULE 515
#define YAF_ERR_NOTFOUND_CONTROLLER 516
#define YAF_ERR_NOTFOUND_ACTION 517
#define YAF_ERR_NOTFOUND_VIEW 518
#define YAF_ERR_CALL_FAILED 519
#define YAF_ERR_AUTOLOAD_FAILED 520
#define YAF_ERR_TYPE_ERROR 521
#define YAF_EXCEPTION_OFFSET(x) (x & YAF_ERR_MASK)
#define YAF_CORRESPOND_ERROR(x) (x>>9L)
#define YAF_EXCEPTION_HANDLE(dispatcher, request, response) \
if (EG(exception)) { \
if (YAF_G(catch_exception)) { \
yaf_dispatcher_exception_handler(dispatcher, request, response TSRMLS_CC); \
} \
zval_ptr_dtor(&response); \
return NULL; \
}
#define YAF_EXCEPTION_HANDLE_NORET(dispatcher, request, response) \
if (EG(exception)) { \
if (YAF_G(catch_exception)) { \
yaf_dispatcher_exception_handler(dispatcher, request, response TSRMLS_CC); \
} \
}
#define YAF_EXCEPTION_ERASE_EXCEPTION() \
do { \
EG(current_execute_data)->opline = EG(opline_before_exception); \
} while(0)
#define YAF_UNINITIALIZED_OBJECT(obj) \
do { \
zval_dtor(obj); \
ZVAL_FALSE(obj); \
} while(0)
extern zend_class_entry *yaf_ce_RuntimeException;
extern zend_class_entry *yaf_exception_ce;
extern zend_class_entry *yaf_buildin_exceptions[YAF_MAX_BUILDIN_EXCEPTION];
void yaf_trigger_error(int type TSRMLS_DC, char *format, ...);
void yaf_throw_exception(long code, char *message TSRMLS_DC);
YAF_STARTUP_FUNCTION(exception);
#endif
/*
* Local variables:
* tab-width: 4
* c-basic-offset: 4
* End:
* vim600: noet sw=4 ts=4 fdm=marker
* vim<600: noet sw=4 ts=4
*/