flush
[m6w6/ext-psi] / php_psi.h
1
2 #ifndef PHP_PSI_H
3 #define PHP_PSI_H
4
5 extern zend_module_entry psi_module_entry;
6 #define phpext_psi_ptr &psi_module_entry
7
8 #define PHP_PSI_VERSION "0.1.0"
9
10 #ifdef PHP_WIN32
11 # define PHP_PSI_API __declspec(dllexport)
12 #elif defined(__GNUC__) && __GNUC__ >= 4
13 # define PHP_PSI_API __attribute__ ((visibility("default")))
14 #else
15 # define PHP_PSI_API
16 #endif
17
18 #ifdef ZTS
19 #include "TSRM.h"
20 #endif
21
22 #include "context.h"
23 #include "parser.h"
24
25 void psi_error(int type, const char *msg, ...);
26
27 static inline int psi_check_env(const char *var) {
28 char *set = getenv(var);
29 return (set && *set && '0' != *set);
30 }
31
32 size_t psi_t_alignment(token_t t);
33 size_t psi_t_size(token_t t);
34 size_t psi_t_align(token_t t, size_t s);
35
36 int psi_internal_type(impl_type *type);
37 zend_internal_arg_info *psi_internal_arginfo(impl *impl);
38 size_t psi_num_min_args(impl *impl);
39
40 void psi_to_bool(zval *return_value, set_value *set, impl_val *ret_val);
41 void psi_to_int(zval *return_value, set_value *set, impl_val *ret_val);
42 void psi_to_double(zval *return_value, set_value *set, impl_val *ret_val);
43 void psi_to_string(zval *return_value, set_value *set, impl_val *ret_val);
44 void psi_to_array(zval *return_value, set_value *set, impl_val *ret_val);
45
46 void psi_call(zend_execute_data *execute_data, zval *return_value, impl *impl);
47
48 ZEND_BEGIN_MODULE_GLOBALS(psi)
49 char *engine;
50 char *directory;
51 PSI_Context context;
52 ZEND_END_MODULE_GLOBALS(psi);
53
54 #define PSI_G(v) ZEND_MODULE_GLOBALS_ACCESSOR(psi, v)
55
56 #if defined(ZTS) && defined(COMPILE_DL_PSI)
57 ZEND_TSRMLS_CACHE_EXTERN();
58 #endif
59
60 #endif /* PHP_PSI_H */
61
62
63 /*
64 * Local variables:
65 * tab-width: 4
66 * c-basic-offset: 4
67 * End:
68 * vim600: noet sw=4 ts=4 fdm=marker
69 * vim<600: noet sw=4 ts=4
70 */