types refactoring
[m6w6/ext-psi] / src / context.h
index d75c19ed829106580848241504575919f7f79402..d1322569999d5b6b6b234db11a43d2d39763cd35 100644 (file)
@@ -1,29 +1,38 @@
 #ifndef _PSI_CONTEXT_H
 #define _PSI_CONTEXT_H
 
-#define PSI_ERROR 16
-#define PSI_WARNING 32
-typedef void (*PSI_ContextErrorFunc)(int type, const char *msg, ...);
+struct psi_context;
+struct psi_token;
+struct psi_parser;
+struct decl_callinfo;
+struct impl_vararg;
 
-typedef struct PSI_ContextOps {
-       void (*init)(struct PSI_Context *C);
-       void (*dtor)(struct PSI_Context *C);
-       zend_function_entry *(*compile)(struct PSI_Context *C, struct PSI_Data *D);
-} PSI_ContextOps;
+struct psi_context_ops {
+       void (*init)(struct psi_context *C);
+       void (*dtor)(struct psi_context *C);
+       zend_function_entry *(*compile)(struct psi_context *C);
+       void (*call)(struct psi_context *C, struct decl_callinfo *decl_call, struct impl_vararg *va);
+};
 
-typedef struct PSI_Context {
-       void *opaque;
-       PSI_ContextErrorFunc error;
-       struct PSI_ContextOps *ops;
-       struct PSI_Data *data;
-       zend_function_entry **closures;
+#include "data.h"
+
+struct psi_context {
+       PSI_DATA_MEMBERS;
+       void *context;
+       struct psi_context_ops *ops;
+       zend_function_entry *closures;
+       struct psi_data *data;
        size_t count;
-} PSI_Context;
+};
 
-PSI_Context *PSI_ContextInit(PSI_Context *C, PSI_ContextOps *ops, PSI_ContextErrorFunc error);
-void PSI_ContextBuild(PSI_Context *C, const char *path);
-zend_function_entry *PSI_ContextCompile(PSI_Context *C, PSI_Data *D);
-void PSI_ContextDtor(PSI_Context *C);
-void PSI_ContextFree(PSI_Context **C);
+struct psi_context *psi_context_init(struct psi_context *C, struct psi_context_ops *ops, psi_error_cb error, unsigned flags);
+void psi_context_build(struct psi_context *C, const char *path);
+int psi_context_validate(struct psi_context *C, struct psi_parser *P);
+int psi_context_validate_data(struct psi_data *C, struct psi_data *D);
+zend_function_entry *psi_context_compile(struct psi_context *C);
+void psi_context_call(struct psi_context *C, struct decl_callinfo *decl_call, struct impl_vararg *va);
+void psi_context_dump(struct psi_context *C, int fd);
+void psi_context_dtor(struct psi_context *C);
+void psi_context_free(struct psi_context **C);
 
 #endif