forked from laruence/yaf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yaf_loader.h
107 lines (88 loc) · 3.99 KB
/
yaf_loader.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
/*
+----------------------------------------------------------------------+
| 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 |
| license@php.net so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Author: Xinchen Hui <laruence@php.net> |
+----------------------------------------------------------------------+
*/
/* $Id: yaf_loader.h 329002 2013-01-07 12:55:53Z laruence $ */
#ifndef YAF_LOADER_H
#define YAF_LOADER_H
#define YAF_DEFAULT_VIEW_EXT "phtml"
#define YAF_DEFAULT_LIBRARY_EXT YAF_DEFAULT_CONTROLLER_EXT
#define YAF_LIBRARY_DIRECTORY_NAME "library"
#define YAF_CONTROLLER_DIRECTORY_NAME "controllers"
#define YAF_PLUGIN_DIRECTORY_NAME "plugins"
#define YAF_MODULE_DIRECTORY_NAME "modules"
#define YAF_VIEW_DIRECTORY_NAME "views"
#define YAF_MODEL_DIRECTORY_NAME "models"
#define YAF_SPL_AUTOLOAD_REGISTER_NAME "spl_autoload_register"
#define YAF_AUTOLOAD_FUNC_NAME "autoload"
#define YAF_LOADER_PROPERTY_NAME_INSTANCE "_instance"
#define YAF_LOADER_PROPERTY_NAME_NAMESPACE "_local_ns"
#define YAF_LOADER_CONTROLLER "Controller"
#define YAF_LOADER_LEN_CONTROLLER 10
#define YAF_LOADER_MODEL "Model"
#define YAF_LOADER_LEN_MODEL 5
#define YAF_LOADER_PLUGIN "Plugin"
#define YAF_LOADER_LEN_PLUGIN 6
#define YAF_LOADER_RESERVERD "Yaf_"
#define YAF_LOADER_LEN_RESERVERD 3
/* {{{ This only effects internally */
#define YAF_LOADER_DAO "Dao_"
#define YAF_LOADER_LEN_DAO 4
#define YAF_LOADER_SERVICE "Service_"
#define YAF_LOADER_LEN_SERVICE 8
/* }}} */
#define YAF_LOADER_PROPERTY_NAME_LIBRARY "_library"
#define YAF_LOADER_PROPERTY_NAME_GLOBAL_LIB "_global_library"
#if ((PHP_MAJOR_VERSION == 5) && (PHP_MINOR_VERSION > 2)) || (PHP_MAJOR_VERSION > 5)
#define YAF_STORE_EG_ENVIRON() \
{ \
zval ** __old_return_value_pp = EG(return_value_ptr_ptr); \
zend_op ** __old_opline_ptr = EG(opline_ptr); \
zend_op_array * __old_op_array = EG(active_op_array);
#define YAF_RESTORE_EG_ENVIRON() \
EG(return_value_ptr_ptr) = __old_return_value_pp;\
EG(opline_ptr) = __old_opline_ptr; \
EG(active_op_array) = __old_op_array; \
}
#else
#define YAF_STORE_EG_ENVIRON() \
{ \
zval ** __old_return_value_pp = EG(return_value_ptr_ptr); \
zend_op ** __old_opline_ptr = EG(opline_ptr); \
zend_op_array * __old_op_array = EG(active_op_array); \
zend_function_state * __old_func_state = EG(function_state_ptr);
#define YAF_RESTORE_EG_ENVIRON() \
EG(return_value_ptr_ptr) = __old_return_value_pp;\
EG(opline_ptr) = __old_opline_ptr; \
EG(active_op_array) = __old_op_array; \
EG(function_state_ptr) = __old_func_state; \
}
#endif
extern zend_class_entry *yaf_loader_ce;
int yaf_internal_autoload(char *file_name, uint name_len, char **directory TSRMLS_DC);
int yaf_loader_import(char *path, int len, int use_path TSRMLS_DC);
int yaf_register_autoloader(yaf_loader_t *loader TSRMLS_DC);
int yaf_loader_register_namespace_single(char *prefix, uint len TSRMLS_DC);
yaf_loader_t * yaf_loader_instance(yaf_loader_t *this_ptr, char *library_path, char *global_path TSRMLS_DC);
extern PHPAPI int php_stream_open_for_zend_ex(const char *filename, zend_file_handle *handle, int mode TSRMLS_DC);
YAF_STARTUP_FUNCTION(loader);
#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
*/