1999-04-26 03:36:57 +08:00
|
|
|
#ifndef _NEW_SAPI_H
|
|
|
|
#define _NEW_SAPI_H
|
|
|
|
|
1999-05-06 02:25:20 +08:00
|
|
|
#include "zend.h"
|
|
|
|
#include "zend_llist.h"
|
|
|
|
|
1999-04-26 22:00:49 +08:00
|
|
|
|
|
|
|
#if WIN32||WINNT
|
|
|
|
# ifdef SAPI_EXPORTS
|
|
|
|
# define SAPI_API __declspec(dllexport)
|
|
|
|
# else
|
|
|
|
# define SAPI_API __declspec(dllimport)
|
|
|
|
# endif
|
|
|
|
#else
|
|
|
|
#define SAPI_API
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
1999-05-06 02:25:20 +08:00
|
|
|
typedef struct {
|
|
|
|
char *header;
|
|
|
|
uint header_len;
|
|
|
|
} sapi_header_struct;
|
1999-05-03 02:07:41 +08:00
|
|
|
|
|
|
|
|
1999-05-06 02:25:20 +08:00
|
|
|
typedef struct {
|
|
|
|
zend_llist headers;
|
|
|
|
sapi_header_struct content_type;
|
|
|
|
int http_response_code;
|
|
|
|
} sapi_headers_struct;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct _sapi_module_struct sapi_module_struct;
|
1999-05-03 02:07:41 +08:00
|
|
|
|
1999-04-26 03:36:57 +08:00
|
|
|
|
1999-05-03 02:07:41 +08:00
|
|
|
extern sapi_module_struct sapi_module; /* true global */
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
char *query_string;
|
1999-05-03 03:31:56 +08:00
|
|
|
|
|
|
|
char *path_translated;
|
|
|
|
char *request_uri;
|
1999-05-06 02:25:20 +08:00
|
|
|
|
|
|
|
unsigned char headers_only;
|
1999-05-03 02:07:41 +08:00
|
|
|
} sapi_request_info;
|
1999-04-26 03:36:57 +08:00
|
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
void *server_context;
|
1999-05-03 02:07:41 +08:00
|
|
|
sapi_request_info request_info;
|
1999-05-06 02:25:20 +08:00
|
|
|
sapi_headers_struct sapi_headers;
|
1999-05-06 03:53:15 +08:00
|
|
|
unsigned char headers_sent;
|
1999-04-26 03:36:57 +08:00
|
|
|
} sapi_globals_struct;
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef ZTS
|
|
|
|
# define SLS_D sapi_globals_struct *sapi_globals
|
|
|
|
# define SLS_DC , SLS_D
|
|
|
|
# define SLS_C sapi_globals
|
|
|
|
# define SLS_CC , SLS_C
|
|
|
|
# define SG(v) (sapi_globals->v)
|
|
|
|
# define SLS_FETCH() sapi_globals_struct *sapi_globals = ts_resource(sapi_globals_id)
|
1999-04-26 22:00:49 +08:00
|
|
|
SAPI_API extern int sapi_globals_id;
|
1999-04-26 03:36:57 +08:00
|
|
|
#else
|
|
|
|
# define SLS_D
|
|
|
|
# define SLS_DC
|
|
|
|
# define SLS_C
|
|
|
|
# define SLS_CC
|
|
|
|
# define SG(v) (sapi_globals.v)
|
|
|
|
# define SLS_FETCH()
|
1999-04-26 22:00:49 +08:00
|
|
|
extern SAPI_API sapi_globals_struct sapi_globals;
|
1999-04-26 03:36:57 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
1999-05-06 05:11:27 +08:00
|
|
|
SAPI_API void sapi_startup(sapi_module_struct *sf);
|
|
|
|
SAPI_API void sapi_activate(SLS_D);
|
|
|
|
SAPI_API void sapi_deactivate(SLS_D);
|
|
|
|
|
|
|
|
SAPI_API int sapi_add_header(const char *header_line, uint header_line_len);
|
|
|
|
SAPI_API int sapi_send_headers();
|
|
|
|
|
1999-05-06 02:25:20 +08:00
|
|
|
|
|
|
|
struct _sapi_module_struct {
|
|
|
|
char *name;
|
|
|
|
|
|
|
|
int (*startup)(struct _sapi_module_struct *sapi_module);
|
|
|
|
int (*shutdown)(struct _sapi_module_struct *sapi_module);
|
|
|
|
|
|
|
|
int (*ub_write)(const char *str, unsigned int str_length);
|
|
|
|
|
|
|
|
int (*header_handler)(sapi_header_struct *sapi_header, sapi_headers_struct *sapi_headers);
|
|
|
|
int (*send_headers)(sapi_headers_struct *sapi_headers SLS_DC);
|
1999-05-06 05:05:44 +08:00
|
|
|
void (*send_header)(sapi_header_struct *sapi_header, void *server_context);
|
1999-05-06 02:25:20 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* header_handler() constants */
|
|
|
|
#define SAPI_HEADER_ADD (1<<0)
|
|
|
|
#define SAPI_HEADER_DELETE_ALL (1<<1)
|
|
|
|
#define SAPI_HEADER_SEND_NOW (1<<2)
|
|
|
|
|
|
|
|
|
|
|
|
#define SAPI_HEADER_SENT_SUCCESSFULLY 1
|
|
|
|
#define SAPI_HEADER_DO_SEND 2
|
|
|
|
#define SAPI_HEADER_SEND_FAILED 3
|
|
|
|
|
1999-05-06 05:47:04 +08:00
|
|
|
#define SAPI_DEFAULT_CONTENT_TYPE "Content-Type: text/html"
|
1999-05-06 02:25:20 +08:00
|
|
|
|
1999-04-26 03:36:57 +08:00
|
|
|
#endif /* _NEW_SAPI_H */
|