X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=src%2Fcontext.h;h=d1322569999d5b6b6b234db11a43d2d39763cd35;hb=5ed7e51eb19a16f6f4e280abc33a2a4281b45166;hp=24bdb9c5a8083d450c3dc5445ae812acfee84f6b;hpb=7e5e4c6d2b654cfd3737c37e9e1894be43642721;p=m6w6%2Fext-psi diff --git a/src/context.h b/src/context.h index 24bdb9c..d132256 100644 --- a/src/context.h +++ b/src/context.h @@ -1,34 +1,38 @@ #ifndef _PSI_CONTEXT_H #define _PSI_CONTEXT_H -#include "parser.h" +struct psi_context; +struct psi_token; +struct psi_parser; +struct decl_callinfo; +struct impl_vararg; -#define PSI_ERROR 16 -#define PSI_WARNING 32 -typedef void (*PSI_ContextErrorFunc)(int type, const char *msg, ...); - -typedef struct PSI_Context PSI_Context; -typedef struct PSI_ContextOps PSI_ContextOps; - -struct PSI_ContextOps { - void (*init)(PSI_Context *C); - void (*dtor)(PSI_Context *C); - zend_function_entry *(*compile)(PSI_Context *C, PSI_Data *D); +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); }; -struct PSI_Context { +#include "data.h" + +struct psi_context { + PSI_DATA_MEMBERS; void *context; - PSI_ContextErrorFunc error; - struct PSI_ContextOps *ops; - struct PSI_Data *data; - zend_function_entry **closures; + struct psi_context_ops *ops; + zend_function_entry *closures; + struct psi_data *data; size_t count; }; -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