zval passthru
[m6w6/ext-psi] / php_psi.h
index cce350390016fe3ad2b4150e4d7df63e6a6c570f..3d68d587405990ae41ba4abfeeed96467d0a55c4 100644 (file)
--- a/php_psi.h
+++ b/php_psi.h
@@ -1,4 +1,3 @@
-
 #ifndef PHP_PSI_H
 #define PHP_PSI_H
 
@@ -21,11 +20,38 @@ extern zend_module_entry psi_module_entry;
 
 #include "context.h"
 
+void psi_error_wrapper(void *context, PSI_Token *t, int type, const char *msg, ...);
+void psi_error(int type, const char *fn, unsigned ln, const char *msg, ...);
+void psi_verror(int type, const char *fn, unsigned ln, const char *msg, va_list argv);
+
+static inline int psi_check_env(const char *var) {
+       char *set = getenv(var);
+       return (set && *set && '0' != *set);
+}
+
+typedef struct psi_object {
+       void *data;
+       size_t size;
+       zend_object std;
+} psi_object;
+
+static inline psi_object *PSI_OBJ(zval *zv, zend_object *zo) {
+       if (zv) {
+               zo = Z_OBJ_P(zv);
+       }
+       return (void *) (((char *) zo) - zo->handlers->offset);
+}
+
+PHP_PSI_API zend_class_entry *psi_object_get_class_entry();
+
 ZEND_BEGIN_MODULE_GLOBALS(psi)
+       char *engine;
        char *directory;
        PSI_Context context;
 ZEND_END_MODULE_GLOBALS(psi);
 
+ZEND_EXTERN_MODULE_GLOBALS(psi);
+
 #define PSI_G(v) ZEND_MODULE_GLOBALS_ACCESSOR(psi, v)
 
 #if defined(ZTS) && defined(COMPILE_DL_PSI)