From a606cf0f326b95b72af30d7a3d15ef294a2d1923 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Sat, 17 May 2014 17:19:42 +0200 Subject: php-pecl-*: add Reflection file --- REFLECTION | 483 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 483 insertions(+) create mode 100644 REFLECTION diff --git a/REFLECTION b/REFLECTION new file mode 100644 index 0000000..99b9ce1 --- /dev/null +++ b/REFLECTION @@ -0,0 +1,483 @@ +Extension [ extension #135 swoole version 1.7.1 ] { + + - Constants [32] { + Constant [ integer SWOOLE_BASE ] { 4 } + Constant [ integer SWOOLE_THREAD ] { 2 } + Constant [ integer SWOOLE_PROCESS ] { 3 } + Constant [ integer SWOOLE_SOCK_TCP ] { 1 } + Constant [ integer SWOOLE_SOCK_TCP6 ] { 3 } + Constant [ integer SWOOLE_SOCK_UDP ] { 2 } + Constant [ integer SWOOLE_SOCK_UDP6 ] { 4 } + Constant [ integer SWOOLE_TCP ] { 1 } + Constant [ integer SWOOLE_TCP6 ] { 3 } + Constant [ integer SWOOLE_UDP ] { 2 } + Constant [ integer SWOOLE_UDP6 ] { 4 } + Constant [ integer SWOOLE_UNIX_DGRAM ] { 5 } + Constant [ integer SWOOLE_UNIX_STREAM ] { 6 } + Constant [ integer SWOOLE_RWLOCK ] { 1 } + Constant [ integer SWOOLE_FILELOCK ] { 2 } + Constant [ integer SWOOLE_MUTEX ] { 3 } + Constant [ integer SWOOLE_SEM ] { 4 } + Constant [ integer SWOOLE_SPINLOCK ] { 5 } + Constant [ integer SWOOLE_SOCK_SYNC ] { 0 } + Constant [ integer SWOOLE_SOCK_ASYNC ] { 1 } + Constant [ integer SWOOLE_SYNC ] { 2048 } + Constant [ integer SWOOLE_ASYNC ] { 1024 } + Constant [ integer SWOOLE_KEEP ] { 512 } + Constant [ integer SWOOLE_EVENT_READ ] { 512 } + Constant [ integer SWOOLE_EVENT_WRITE ] { 1024 } + Constant [ integer SWOOLE_SIGN ] { 64 } + Constant [ integer SWOOLE_UNSIGN ] { 32 } + Constant [ integer SWOOLE_NET ] { 8 } + Constant [ integer SWOOLE_HOST ] { 16 } + Constant [ integer SWOOLE_SHORT ] { 2 } + Constant [ integer SWOOLE_INT ] { 4 } + Constant [ string SWOOLE_VERSION ] { 1.7.1 } + } + + - Functions { + Function [ function swoole_version ] { + } + Function [ function swoole_server_create ] { + + - Parameters [4] { + Parameter #0 [ $serv_host ] + Parameter #1 [ $serv_port ] + Parameter #2 [ $serv_mode ] + Parameter #3 [ $sock_type ] + } + } + Function [ function swoole_server_set ] { + + - Parameters [2] { + Parameter #0 [ swoole_server $zobject ] + Parameter #1 [ $zset ] + } + } + Function [ function swoole_server_start ] { + + - Parameters [1] { + Parameter #0 [ swoole_server $zobject ] + } + } + Function [ function swoole_server_send ] { + + - Parameters [4] { + Parameter #0 [ swoole_server $zobject ] + Parameter #1 [ $conn_fd ] + Parameter #2 [ $send_data ] + Parameter #3 [ $from_id ] + } + } + Function [ function swoole_server_sendfile ] { + + - Parameters [3] { + Parameter #0 [ swoole_server $zobject ] + Parameter #1 [ $conn_fd ] + Parameter #2 [ $filename ] + } + } + Function [ function swoole_server_close ] { + + - Parameters [2] { + Parameter #0 [ swoole_server $zobject ] + Parameter #1 [ $fd ] + } + } + Function [ function swoole_server_handler ] { + + - Parameters [3] { + Parameter #0 [ swoole_server $zobject ] + Parameter #1 [ $ha_name ] + Parameter #2 [ $cb ] + } + } + Function [ function swoole_server_on ] { + + - Parameters [3] { + Parameter #0 [ swoole_server $zobject ] + Parameter #1 [ $ha_name ] + Parameter #2 [ $cb ] + } + } + Function [ function swoole_server_addlisten ] { + + - Parameters [4] { + Parameter #0 [ swoole_server $zobject ] + Parameter #1 [ $host ] + Parameter #2 [ $port ] + Parameter #3 [ $sock_type ] + } + } + Function [ function swoole_server_addtimer ] { + + - Parameters [2] { + Parameter #0 [ swoole_server $zobject ] + Parameter #1 [ $interval ] + } + } + Function [ function swoole_server_deltimer ] { + + - Parameters [2] { + Parameter #0 [ swoole_server $zobject ] + Parameter #1 [ $interval ] + } + } + Function [ function swoole_server_task ] { + + - Parameters [3] { + Parameter #0 [ swoole_server $zobject ] + Parameter #1 [ $data ] + Parameter #2 [ $worker_id ] + } + } + Function [ function swoole_server_taskwait ] { + + - Parameters [4] { + Parameter #0 [ swoole_server $zobject ] + Parameter #1 [ $data ] + Parameter #2 [ $timeout ] + Parameter #3 [ $worker_id ] + } + } + Function [ function swoole_server_finish ] { + + - Parameters [2] { + Parameter #0 [ swoole_server $zobject ] + Parameter #1 [ $data ] + } + } + Function [ function swoole_server_reload ] { + + - Parameters [1] { + Parameter #0 [ swoole_server $zobject ] + } + } + Function [ function swoole_server_shutdown ] { + + - Parameters [1] { + Parameter #0 [ swoole_server $zobject ] + } + } + Function [ function swoole_server_heartbeat ] { + + - Parameters [2] { + Parameter #0 [ swoole_server $zobject ] + Parameter #1 [ $from_id ] + } + } + Function [ function swoole_connection_info ] { + + - Parameters [3] { + Parameter #0 [ swoole_server $zobject ] + Parameter #1 [ $fd ] + Parameter #2 [ $from_id ] + } + } + Function [ function swoole_connection_list ] { + + - Parameters [3] { + Parameter #0 [ swoole_server $zobject ] + Parameter #1 [ $start_fd ] + Parameter #2 [ $find_count ] + } + } + Function [ function swoole_event_add ] { + + - Parameters [2] { + Parameter #0 [ $fd ] + Parameter #1 [ $cb ] + } + } + Function [ function swoole_event_set ] { + } + Function [ function swoole_event_del ] { + + - Parameters [1] { + Parameter #0 [ $fd ] + } + } + Function [ function swoole_event_exit ] { + + - Parameters [0] { + } + } + Function [ function swoole_event_wait ] { + + - Parameters [0] { + } + } + Function [ function swoole_timer_add ] { + + - Parameters [2] { + Parameter #0 [ $interval ] + Parameter #1 [ $cb ] + } + } + Function [ function swoole_timer_del ] { + + - Parameters [1] { + Parameter #0 [ $interval ] + } + } + Function [ function swoole_async_read ] { + } + Function [ function swoole_async_write ] { + } + Function [ function swoole_async_readfile ] { + } + Function [ function swoole_async_writefile ] { + } + Function [ function swoole_async_dns_lookup ] { + } + Function [ function swoole_client_select ] { + } + Function [ function swoole_set_process_name ] { + } + Function [ function swoole_get_local_ip ] { + } + Function [ function swoole_strerror ] { + } + Function [ function swoole_errno ] { + } + Function [ function swoole_get_mysqli_sock ] { + } + } + + - Classes [3] { + Class [ class swoole_client ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [2] { + Property [ public $errCode ] + Property [ public $sock ] + } + + - Methods [6] { + Method [ public method __construct ] { + } + + Method [ public method connect ] { + } + + Method [ public method recv ] { + } + + Method [ public method send ] { + } + + Method [ public method close ] { + } + + Method [ public method on ] { + } + } + } + + Class [ class swoole_server ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [19] { + Method [ public method __construct ] { + + - Parameters [4] { + Parameter #0 [ $serv_host ] + Parameter #1 [ $serv_port ] + Parameter #2 [ $serv_mode ] + Parameter #3 [ $sock_type ] + } + } + + Method [ public method set ] { + + - Parameters [1] { + Parameter #0 [ $zset ] + } + } + + Method [ public method start ] { + + - Parameters [0] { + } + } + + Method [ public method send ] { + + - Parameters [3] { + Parameter #0 [ $conn_fd ] + Parameter #1 [ $send_data ] + Parameter #2 [ $from_id ] + } + } + + Method [ public method sendfile ] { + + - Parameters [2] { + Parameter #0 [ $conn_fd ] + Parameter #1 [ $filename ] + } + } + + Method [ public method close ] { + + - Parameters [1] { + Parameter #0 [ $fd ] + } + } + + Method [ public method task ] { + + - Parameters [2] { + Parameter #0 [ $data ] + Parameter #1 [ $worker_id ] + } + } + + Method [ public method taskwait ] { + + - Parameters [3] { + Parameter #0 [ $data ] + Parameter #1 [ $timeout ] + Parameter #2 [ $worker_id ] + } + } + + Method [ public method finish ] { + + - Parameters [1] { + Parameter #0 [ $data ] + } + } + + Method [ public method addlistener ] { + + - Parameters [3] { + Parameter #0 [ $host ] + Parameter #1 [ $port ] + Parameter #2 [ $sock_type ] + } + } + + Method [ public method addtimer ] { + + - Parameters [1] { + Parameter #0 [ $interval ] + } + } + + Method [ public method deltimer ] { + + - Parameters [1] { + Parameter #0 [ $interval ] + } + } + + Method [ public method reload ] { + + - Parameters [0] { + } + } + + Method [ public method shutdown ] { + + - Parameters [0] { + } + } + + Method [ public method hbcheck ] { + + - Parameters [1] { + Parameter #0 [ $from_id ] + } + } + + Method [ public method handler ] { + + - Parameters [2] { + Parameter #0 [ $ha_name ] + Parameter #1 [ $cb ] + } + } + + Method [ public method on ] { + + - Parameters [2] { + Parameter #0 [ $ha_name ] + Parameter #1 [ $cb ] + } + } + + Method [ public method connection_info ] { + + - Parameters [2] { + Parameter #0 [ $fd ] + Parameter #1 [ $from_id ] + } + } + + Method [ public method connection_list ] { + + - Parameters [2] { + Parameter #0 [ $start_fd ] + Parameter #1 [ $find_count ] + } + } + } + } + + Class [ class swoole_lock ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [6] { + Method [ public method __construct ] { + } + + Method [ public method lock ] { + } + + Method [ public method trylock ] { + } + + Method [ public method lock_read ] { + } + + Method [ public method trylock_read ] { + } + + Method [ public method unlock ] { + } + } + } + } +} + -- cgit