mirror of
https://github.com/danog/ext-uv.git
synced 2024-11-26 20:14:47 +01:00
218 lines
4.4 KiB
C
218 lines
4.4 KiB
C
#ifndef PHP_UV_H
|
|
|
|
#define PHP_UV_H
|
|
|
|
#define PHP_UV_EXTNAME "uv"
|
|
#define PHP_UV_EXTVER "0.0.1"
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#ifdef PHP_WIN32
|
|
#include <Winsock2.h>
|
|
#include <Mswsock.h>
|
|
#include <psapi.h>
|
|
#include <Iphlpapi.h>
|
|
#endif
|
|
|
|
#ifndef PHP_UV_DTRACE
|
|
#define PHP_UV_DTRACE 0
|
|
#endif
|
|
|
|
#if PHP_UV_DTRACE >= 1
|
|
#include <dtrace.h>
|
|
#include <sys/sdt.h>
|
|
#include "phpuv_dtrace.h"
|
|
#define PHP_UV_PROBE(PROBE) PHPUV_TRACE_##PROBE();
|
|
#else
|
|
#define PHP_UV_PROBE(PROBE)
|
|
#endif
|
|
|
|
#include "php.h"
|
|
#include "uv.h"
|
|
#include "http_parser.h"
|
|
|
|
#include "php_network.h"
|
|
#include "php_streams.h"
|
|
|
|
#ifndef PHP_WIN32
|
|
#include "ext/sockets/php_sockets.h"
|
|
#endif
|
|
|
|
#include "zend_interfaces.h"
|
|
|
|
/* Define the entry point symbol
|
|
* Zend will use when loading this module
|
|
*/
|
|
extern zend_module_entry uv_module_entry;
|
|
#define phpext_uv_ptr &uv_module_entry;
|
|
|
|
extern zend_class_entry *uv_class_entry;
|
|
|
|
enum php_uv_lock_type{
|
|
IS_UV_RWLOCK = 1,
|
|
IS_UV_MUTEX = 2,
|
|
IS_UV_SEMAPHORE = 3,
|
|
};
|
|
|
|
enum php_uv_resource_type{
|
|
IS_UV_TCP = 0,
|
|
IS_UV_UDP = 1,
|
|
IS_UV_PIPE = 2,
|
|
IS_UV_IDLE = 3,
|
|
IS_UV_TIMER = 4,
|
|
IS_UV_ASYNC = 5,
|
|
IS_UV_LOOP = 6,
|
|
IS_UV_HANDLE = 7,
|
|
IS_UV_STREAM = 8,
|
|
IS_UV_ADDRINFO = 9,
|
|
IS_UV_PROCESS = 10,
|
|
IS_UV_PREPARE = 11,
|
|
IS_UV_CHECK = 12,
|
|
IS_UV_WORK = 13,
|
|
IS_UV_FS = 14,
|
|
IS_UV_FS_EVENT = 15,
|
|
IS_UV_TTY = 16,
|
|
IS_UV_FS_POLL = 17,
|
|
IS_UV_POLL = 18,
|
|
IS_UV_MAX = 19
|
|
};
|
|
|
|
enum php_uv_callback_type{
|
|
PHP_UV_LISTEN_CB = 0,
|
|
PHP_UV_READ_CB = 1,
|
|
PHP_UV_READ2_CB = 2,
|
|
PHP_UV_WRITE_CB = 3,
|
|
PHP_UV_SHUTDOWN_CB = 4,
|
|
PHP_UV_CLOSE_CB = 5,
|
|
PHP_UV_TIMER_CB = 6,
|
|
PHP_UV_IDLE_CB = 7,
|
|
PHP_UV_CONNECT_CB = 8,
|
|
PHP_UV_GETADDR_CB = 9,
|
|
PHP_UV_RECV_CB = 10,
|
|
PHP_UV_SEND_CB = 11,
|
|
PHP_UV_PIPE_CONNECT_CB = 12,
|
|
PHP_UV_PROC_CLOSE_CB = 13,
|
|
PHP_UV_PREPARE_CB = 14,
|
|
PHP_UV_CHECK_CB = 15,
|
|
PHP_UV_ASYNC_CB = 16,
|
|
PHP_UV_WORK_CB = 17,
|
|
PHP_UV_AFTER_WORK_CB = 18,
|
|
PHP_UV_FS_CB = 19,
|
|
PHP_UV_FS_EVENT_CB = 20,
|
|
PHP_UV_FS_POLL_CB = 21,
|
|
PHP_UV_POLL_CB = 22,
|
|
PHP_UV_CB_MAX = 23
|
|
};
|
|
|
|
typedef struct {
|
|
zend_fcall_info fci;
|
|
zend_fcall_info_cache fcc;
|
|
} php_uv_cb_t;
|
|
|
|
typedef struct {
|
|
int in_free;
|
|
#ifdef ZTS
|
|
void ***thread_ctx;
|
|
#endif
|
|
int resource_id;
|
|
int type;
|
|
uv_os_sock_t sock;
|
|
union {
|
|
uv_tcp_t tcp;
|
|
uv_udp_t udp;
|
|
uv_pipe_t pipe;
|
|
uv_idle_t idle;
|
|
uv_timer_t timer;
|
|
uv_async_t async;
|
|
uv_loop_t loop;
|
|
uv_handle_t handle;
|
|
uv_stream_t stream;
|
|
uv_getaddrinfo_t addrinfo;
|
|
uv_prepare_t prepare;
|
|
uv_check_t check;
|
|
uv_process_t process;
|
|
uv_work_t work;
|
|
uv_fs_t fs;
|
|
uv_fs_event_t fs_event;
|
|
uv_tty_t tty;
|
|
uv_fs_poll_t fs_poll;
|
|
uv_poll_t poll;
|
|
} uv;
|
|
char *buffer;
|
|
zval *address;
|
|
php_uv_cb_t *callback[PHP_UV_CB_MAX];
|
|
} php_uv_t;
|
|
|
|
typedef struct {
|
|
ares_channel channel;
|
|
struct ares_options options;
|
|
zval *gethostbyname_cb;
|
|
zval *gethostbyaddr_cb;
|
|
int resource_id;
|
|
} php_uv_ares_t;
|
|
|
|
typedef struct {
|
|
int is_ipv4;
|
|
int resource_id;
|
|
union {
|
|
struct sockaddr_in ipv4;
|
|
struct sockaddr_in6 ipv6;
|
|
} addr;
|
|
} php_uv_sockaddr_t;
|
|
|
|
typedef struct {
|
|
int locked;
|
|
enum php_uv_lock_type type;
|
|
int resource_id;
|
|
union {
|
|
uv_rwlock_t rwlock;
|
|
uv_mutex_t mutex;
|
|
uv_sem_t semaphore;
|
|
} lock;
|
|
} php_uv_lock_t;
|
|
|
|
|
|
typedef struct {
|
|
struct http_parser parser;
|
|
struct http_parser_url handle;
|
|
struct http_parser_settings settings;
|
|
int is_response;
|
|
int was_header_value;
|
|
int finished;
|
|
zval *data;
|
|
zval *headers;
|
|
char *tmp;
|
|
} php_http_parser_context;
|
|
|
|
#define PHP_UV_HTTPPARSER_RESOURCE_NAME "uv_httpparser"
|
|
|
|
#define PHP_UV_RESOURCE_NAME "uv"
|
|
#define PHP_UV_SOCKADDR_RESOURCE_NAME "uv_sockaddr"
|
|
#define PHP_UV_LOOP_RESOURCE_NAME "uv_loop"
|
|
#define PHP_UV_ARES_RESOURCE_NAME "uv_ares"
|
|
#define PHP_UV_LOCK_RESOURCE_NAME "uv_lock"
|
|
#define PHP_UV_MUTEX_RESOURCE_NAME "uv_mutex"
|
|
|
|
|
|
#if PHP_VERSION_ID>=50399
|
|
#define PHP_UV_LIST_INSERT(type, handle) zend_list_insert(type, handle TSRMLS_CC)
|
|
#else
|
|
#define PHP_UV_LIST_INSERT(type, handle) zend_list_insert(type, handle)
|
|
#endif
|
|
|
|
/* TODO: remove these macro when libuv provides uv_inet_ntop & uv_inet_pton */
|
|
#ifdef PHP_WIN32
|
|
# include "libuv/src/ares/inet_net_pton.h"
|
|
# include <Ws2tcpip.h>
|
|
# define uv_inet_pton ares_inet_pton
|
|
# define uv_inet_ntop ares_inet_ntop
|
|
#else
|
|
# include <arpa/inet.h>
|
|
# define uv_inet_pton inet_pton
|
|
# define uv_inet_ntop inet_ntop
|
|
#endif
|
|
|
|
#endif /* PHP_UV_H */
|