1 Star 0 Fork 9

中华田园人/Yaf

forked from Gitee 极速下载/Yaf 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
yaf_loader.h 3.28 KB
一键复制 编辑 原始数据 按行查看 历史
惠新宸 提交于 2016-08-12 13:07 . Minor opt
/*
+----------------------------------------------------------------------+
| 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> |
+----------------------------------------------------------------------+
*/
#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"
#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; \
}
extern zend_class_entry *yaf_loader_ce;
int yaf_internal_autoload(char *file_name, size_t name_len, char **directory);
int yaf_loader_import(zend_string *path, int use_path);
int yaf_register_autoloader(yaf_loader_t *loader);
int yaf_loader_register_namespace_single(char *prefix, size_t len);
yaf_loader_t *yaf_loader_instance(yaf_loader_t *this_ptr, zend_string *library_path, zend_string *global_path);
extern PHPAPI int php_stream_open_for_zend_ex(const char *filename, zend_file_handle *handle, int mode);
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
*/
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/Chinese_pastoral_person/Yaf1.git
git@gitee.com:Chinese_pastoral_person/Yaf1.git
Chinese_pastoral_person
Yaf1
Yaf
master

搜索帮助