1999-04-08 02:10:10 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Zend Engine |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Copyright (c) 1998, 1999 Andi Gutmans, Zeev Suraski |
|
|
|
|
+----------------------------------------------------------------------+
|
1999-07-20 04:02:12 +08:00
|
|
|
| This source file is subject to version 0.91 of the Zend license, |
|
1999-07-16 22:58:16 +08:00
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
|
|
|
| available at through the world-wide-web at |
|
1999-07-20 04:02:12 +08:00
|
|
|
| http://www.zend.com/license/0_91.txt. |
|
1999-07-16 22:58:16 +08:00
|
|
|
| If you did not receive a copy of the Zend license and are unable to |
|
|
|
|
| obtain it through the world-wide-web, please send a note to |
|
|
|
|
| license@zend.com so we can mail you a copy immediately. |
|
1999-04-08 02:10:10 +08:00
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Authors: Andi Gutmans <andi@zend.com> |
|
|
|
|
| Zeev Suraski <zeev@zend.com> |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
|
1999-07-16 22:58:16 +08:00
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
#ifndef _ZEND_H
|
|
|
|
#define _ZEND_H
|
|
|
|
|
1999-07-20 03:58:44 +08:00
|
|
|
#define ZEND_VERSION "0.90"
|
1999-04-08 02:10:10 +08:00
|
|
|
|
1999-04-23 11:32:33 +08:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
#define BEGIN_EXTERN_C() extern "C" {
|
|
|
|
#define END_EXTERN_C() }
|
|
|
|
#else
|
|
|
|
#define BEGIN_EXTERN_C()
|
|
|
|
#define END_EXTERN_C()
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* general definitions
|
|
|
|
*/
|
|
|
|
|
|
|
|
#if WINNT||WIN32
|
|
|
|
#include "config.w32.h"
|
|
|
|
#else
|
1999-04-20 04:10:26 +08:00
|
|
|
#include "zend_config.h"
|
1999-04-08 02:10:10 +08:00
|
|
|
#include "config.unix.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "zend_errors.h"
|
|
|
|
#include "zend_alloc.h"
|
|
|
|
|
1999-07-06 01:05:38 +08:00
|
|
|
/* this is a workaround for a bug in gcc */
|
1999-07-07 05:02:07 +08:00
|
|
|
#if SIZEOF_VOID_P == 8 || (1)
|
1999-07-03 05:12:03 +08:00
|
|
|
typedef unsigned int zend_bool;
|
|
|
|
#else
|
|
|
|
typedef unsigned char zend_bool;
|
|
|
|
#endif
|
1999-04-08 02:10:10 +08:00
|
|
|
|
|
|
|
#undef SUCCESS
|
|
|
|
#undef FAILURE
|
|
|
|
#define SUCCESS 0
|
|
|
|
#define FAILURE -1 /* this MUST stay a negative number, or it may effect functions! */
|
|
|
|
|
|
|
|
|
|
|
|
#include "zend_hash.h"
|
|
|
|
#include "zend_llist.h"
|
|
|
|
|
|
|
|
|
1999-05-28 20:06:59 +08:00
|
|
|
#define INTERNAL_FUNCTION_PARAMETERS int ht, zval *return_value, HashTable *list, HashTable *plist, zval *this_ptr
|
|
|
|
#define INTERNAL_FUNCTION_PARAM_PASSTHRU ht, return_value, list, plist, this_ptr
|
1999-04-08 02:10:10 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* zval
|
|
|
|
*/
|
|
|
|
typedef struct _zval_struct zval;
|
|
|
|
typedef struct _zend_class_entry zend_class_entry;
|
|
|
|
|
1999-05-23 00:10:51 +08:00
|
|
|
typedef union _zvalue_value {
|
1999-04-08 02:10:10 +08:00
|
|
|
long lval; /* long value */
|
|
|
|
double dval; /* double value */
|
|
|
|
struct {
|
|
|
|
char *val;
|
|
|
|
int len;
|
|
|
|
} str;
|
|
|
|
char chval; /* char value */
|
|
|
|
HashTable *ht; /* hash table value */
|
|
|
|
struct {
|
|
|
|
zend_class_entry *ce;
|
|
|
|
HashTable *properties;
|
|
|
|
} obj;
|
|
|
|
} zvalue_value;
|
|
|
|
|
|
|
|
|
|
|
|
struct _zval_struct {
|
|
|
|
/* Variable information */
|
|
|
|
zvalue_value value; /* value */
|
|
|
|
unsigned char type; /* active type */
|
1999-07-10 04:43:59 +08:00
|
|
|
struct {
|
|
|
|
unsigned int locks:7;
|
|
|
|
unsigned int is_ref:1;
|
|
|
|
} EA;
|
1999-04-08 02:10:10 +08:00
|
|
|
short refcount;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
1999-05-23 00:10:51 +08:00
|
|
|
typedef struct _zend_function_entry {
|
1999-04-08 02:10:10 +08:00
|
|
|
char *fname;
|
|
|
|
void (*handler)(INTERNAL_FUNCTION_PARAMETERS);
|
|
|
|
unsigned char *func_arg_types;
|
1999-04-18 23:11:52 +08:00
|
|
|
} zend_function_entry;
|
1999-04-08 02:10:10 +08:00
|
|
|
|
|
|
|
|
1999-05-23 00:10:51 +08:00
|
|
|
typedef struct _zend_property_reference {
|
1999-04-08 02:10:10 +08:00
|
|
|
int type; /* read, write or r/w */
|
1999-07-27 00:57:06 +08:00
|
|
|
zval *object;
|
1999-04-08 02:10:10 +08:00
|
|
|
zend_llist elements_list;
|
|
|
|
} zend_property_reference;
|
|
|
|
|
|
|
|
|
|
|
|
|
1999-05-23 00:10:51 +08:00
|
|
|
typedef struct _zend_overloaded_element {
|
1999-04-08 02:10:10 +08:00
|
|
|
int type; /* array offset or object proprety */
|
|
|
|
zval element;
|
|
|
|
} zend_overloaded_element;
|
|
|
|
|
|
|
|
|
|
|
|
struct _zend_class_entry {
|
|
|
|
char type;
|
|
|
|
char *name;
|
|
|
|
uint name_length;
|
|
|
|
struct _zend_class_entry *parent;
|
1999-04-18 23:11:52 +08:00
|
|
|
int *refcount;
|
1999-04-08 02:10:10 +08:00
|
|
|
|
|
|
|
HashTable function_table;
|
|
|
|
HashTable default_properties;
|
1999-05-28 20:06:59 +08:00
|
|
|
zend_function_entry *builtin_functions;
|
1999-04-08 02:10:10 +08:00
|
|
|
|
|
|
|
/* handlers */
|
|
|
|
void (*handle_function_call)(INTERNAL_FUNCTION_PARAMETERS, zend_property_reference *property_reference);
|
|
|
|
zval (*handle_property_get)(zend_property_reference *property_reference);
|
|
|
|
int (*handle_property_set)(zend_property_reference *property_reference, zval *value);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
1999-05-23 00:10:51 +08:00
|
|
|
typedef struct _zend_utility_functions {
|
1999-04-08 02:10:10 +08:00
|
|
|
void (*error_function)(int type, const char *format, ...);
|
|
|
|
int (*printf_function)(const char *format, ...);
|
|
|
|
int (*write_function)(const char *str, uint str_length);
|
|
|
|
FILE *(*fopen_function)(const char *filename);
|
|
|
|
void (*message_handler)(long message, void *data);
|
|
|
|
void (*block_interruptions)();
|
|
|
|
void (*unblock_interruptions)();
|
1999-06-20 04:22:56 +08:00
|
|
|
int (*get_ini_entry)(char *name, uint name_length, zval *contents);
|
1999-04-08 02:10:10 +08:00
|
|
|
} zend_utility_functions;
|
|
|
|
|
|
|
|
|
1999-05-23 00:10:51 +08:00
|
|
|
typedef struct _zend_utility_values {
|
1999-04-08 02:10:10 +08:00
|
|
|
unsigned char short_tags;
|
|
|
|
unsigned char asp_tags;
|
|
|
|
} zend_utility_values;
|
|
|
|
|
|
|
|
|
|
|
|
#undef MIN
|
|
|
|
#undef MAX
|
|
|
|
#define MAX(a,b) (((a)>(b))?(a):(b))
|
|
|
|
#define MIN(a,b) (((a)<(b))?(a):(b))
|
|
|
|
|
|
|
|
/* data types */
|
|
|
|
#define IS_LONG 1
|
|
|
|
#define IS_DOUBLE 2
|
|
|
|
#define IS_STRING 3
|
|
|
|
#define IS_ARRAY 4
|
|
|
|
#define IS_OBJECT 5
|
|
|
|
#define IS_BC 6 /* for parser internal use only */
|
|
|
|
#define IS_BOOL 7
|
|
|
|
#define IS_RESOURCE 8
|
|
|
|
#define IS_CONSTANT 9
|
|
|
|
#define IS_METHOD 10 /* for overloaded function calls */
|
|
|
|
|
1999-04-10 19:21:55 +08:00
|
|
|
int zend_startup(zend_utility_functions *utility_functions, char **extensions);
|
1999-04-08 02:10:10 +08:00
|
|
|
void zend_shutdown();
|
1999-06-06 04:00:00 +08:00
|
|
|
|
1999-04-10 19:21:55 +08:00
|
|
|
void zend_set_utility_values(zend_utility_values *utility_values);
|
1999-05-15 23:47:24 +08:00
|
|
|
BEGIN_EXTERN_C()
|
1999-04-08 02:10:10 +08:00
|
|
|
ZEND_API void zend_bailout();
|
1999-05-15 23:47:24 +08:00
|
|
|
END_EXTERN_C()
|
1999-04-08 02:10:10 +08:00
|
|
|
ZEND_API char *get_zend_version();
|
|
|
|
|
1999-06-11 18:44:26 +08:00
|
|
|
ZEND_API void zend_make_printable_zval(zval *expr, zval *expr_copy, int *use_copy);
|
1999-04-08 02:10:10 +08:00
|
|
|
ZEND_API int zend_print_zval(zval *expr, int indent);
|
|
|
|
ZEND_API void zend_print_zval_r(zval *expr, int indent);
|
|
|
|
|
|
|
|
ZEND_API extern char *empty_string;
|
|
|
|
ZEND_API extern char *undefined_variable_string;
|
|
|
|
|
|
|
|
#define STR_FREE(ptr) if (ptr && ptr!=empty_string && ptr!=undefined_variable_string) { efree(ptr); }
|
|
|
|
|
|
|
|
|
|
|
|
/* output support */
|
|
|
|
#define ZEND_WRITE(str, str_len) zend_write((str), (str_len))
|
|
|
|
#define ZEND_PUTS(str) zend_write((str), strlen((str)))
|
|
|
|
#define ZEND_PUTC(c) zend_write(&(c), 1), (c)
|
|
|
|
|
1999-04-23 11:32:33 +08:00
|
|
|
BEGIN_EXTERN_C()
|
1999-04-08 02:10:10 +08:00
|
|
|
extern ZEND_API int (*zend_printf)(const char *format, ...);
|
|
|
|
extern ZEND_API int (*zend_write)(const char *str, uint str_length);
|
|
|
|
extern ZEND_API void (*zend_error)(int type, const char *format, ...);
|
|
|
|
extern FILE *(*zend_fopen)(const char *filename);
|
|
|
|
extern void (*zend_block_interruptions)();
|
|
|
|
extern void (*zend_unblock_interruptions)();
|
1999-04-23 11:32:33 +08:00
|
|
|
extern void (*zend_message_dispatcher)(long message, void *data);
|
1999-06-20 04:22:56 +08:00
|
|
|
extern ZEND_API int (*zend_get_ini_entry)(char *name, uint name_length, zval *contents);
|
1999-04-23 11:32:33 +08:00
|
|
|
END_EXTERN_C()
|
1999-04-08 02:10:10 +08:00
|
|
|
|
|
|
|
|
|
|
|
void zenderror(char *error);
|
|
|
|
|
1999-06-04 19:44:02 +08:00
|
|
|
extern ZEND_API zend_class_entry zend_standard_class_def;
|
1999-04-08 02:10:10 +08:00
|
|
|
extern zend_utility_values zend_uv;
|
|
|
|
|
|
|
|
#define ZEND_UV(name) (zend_uv.name)
|
|
|
|
|
|
|
|
|
|
|
|
#define HANDLE_BLOCK_INTERRUPTIONS() if (zend_block_interruptions) { zend_block_interruptions(); }
|
|
|
|
#define HANDLE_UNBLOCK_INTERRUPTIONS() if (zend_unblock_interruptions) { zend_unblock_interruptions(); }
|
|
|
|
|
|
|
|
|
|
|
|
/* Messages for applications of Zend */
|
|
|
|
#define ZMSG_ENABLE_TRACK_VARS 1L
|
|
|
|
#define ZMSG_FAILED_INCLUDE_FOPEN 2L
|
|
|
|
#define ZMSG_FAILED_REQUIRE_FOPEN 3L
|
|
|
|
#define ZMSG_FAILED_HIGHLIGHT_FOPEN 4L
|
|
|
|
#define ZMSG_MEMORY_LEAK_DETECTED 5L
|
1999-05-22 19:20:56 +08:00
|
|
|
#define ZMSG_MEMORY_LEAK_REPEATED 6L
|
1999-06-01 02:39:29 +08:00
|
|
|
#define ZMSG_LOG_SCRIPT_NAME 7L
|
1999-04-08 02:10:10 +08:00
|
|
|
|
1999-07-10 04:43:59 +08:00
|
|
|
#define INIT_PZVAL(z) \
|
|
|
|
(z)->refcount = 1; \
|
|
|
|
(z)->EA.is_ref = 0; \
|
|
|
|
(z)->EA.locks = 0;
|
|
|
|
|
1999-07-24 00:02:51 +08:00
|
|
|
#define MAKE_STD_ZVAL(zv) \
|
1999-07-10 04:43:59 +08:00
|
|
|
zv = (zval *) emalloc(sizeof(zval)); \
|
|
|
|
INIT_PZVAL(zv);
|
|
|
|
|
1999-07-24 00:02:51 +08:00
|
|
|
#define SEPARATE_ZVAL(ppzv) \
|
|
|
|
{ \
|
|
|
|
zval *orig_ptr = *(ppzv); \
|
|
|
|
\
|
|
|
|
if (orig_ptr->refcount>1) { \
|
|
|
|
orig_ptr->refcount--; \
|
|
|
|
*(ppzv) = (zval *) emalloc(sizeof(zval)); \
|
|
|
|
**(ppzv) = *orig_ptr; \
|
|
|
|
zval_copy_ctor(*(ppzv)); \
|
|
|
|
(*(ppzv))->refcount=1; \
|
|
|
|
(*(ppzv))->EA.is_ref = 0; \
|
|
|
|
(*(ppzv))->EA.locks = 0; \
|
|
|
|
} \
|
|
|
|
}
|
|
|
|
|
1999-08-16 03:29:39 +08:00
|
|
|
#define ZEND_MAX_RESERVED_RESOURCES 1
|
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
#endif /* _ZEND_H */
|