From 6f26382a064c9f9619ccc74a9c8e0d54c39ba9ac Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Sun, 17 Jan 2021 06:52:12 +0100 Subject: update to 2.1.0 sources from pecl --- .gitignore | 2 + PHPINFO | 4 +- REFLECTION | 855 +++++++++++++++++++++++++++++--------------------- php-pecl-gearman.spec | 54 ++-- 4 files changed, 517 insertions(+), 398 deletions(-) diff --git a/.gitignore b/.gitignore index 1ab5c4f..01f0400 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,7 @@ +clog package-*.xml *.tgz +*.tar.bz2 *.tar.gz *.tar.xz *.tar.xz.asc diff --git a/PHPINFO b/PHPINFO index 3f3a197..d6b0184 100644 --- a/PHPINFO +++ b/PHPINFO @@ -2,7 +2,7 @@ gearman gearman support => enabled -extension version => 2.0.6 -libgearman version => 1.1.18 +extension version => 2.1.0 +libgearman version => 1.1.19.1 Default TCP Host => localhost Default TCP Port => 4730 diff --git a/REFLECTION b/REFLECTION index bdb312c..96e0b4c 100644 --- a/REFLECTION +++ b/REFLECTION @@ -1,4 +1,4 @@ -Extension [ extension #109 gearman version 2.0.6 ] { +Extension [ extension #119 gearman version 2.1.0 ] { - Constants [157] { Constant [ string GEARMAN_DEFAULT_TCP_HOST ] { localhost } @@ -165,639 +165,714 @@ Extension [ extension #109 gearman version 2.0.6 ] { - Parameters [0] { } + - Return [ string ] } Function [ function gearman_bugreport ] { - Parameters [0] { } + - Return [ string ] } Function [ function gearman_verbose_name ] { - Parameters [1] { - Parameter #0 [ $verbose ] + Parameter #0 [ int $verbose ] } + - Return [ string or NULL ] } Function [ function gearman_client_create ] { - Parameters [0] { } } + Function [ function gearman_worker_create ] { + + - Parameters [0] { + } + } Function [ function gearman_client_return_code ] { - Parameters [1] { - Parameter #0 [ $client_object ] + Parameter #0 [ GearmanClient $obj ] } + - Return [ int or NULL ] } Function [ function gearman_client_error ] { - Parameters [1] { - Parameter #0 [ $client_object ] + Parameter #0 [ GearmanClient $obj ] } } Function [ function gearman_client_get_errno ] { - Parameters [1] { - Parameter #0 [ $client_object ] + Parameter #0 [ GearmanClient $obj ] } + - Return [ int or NULL ] } Function [ function gearman_client_options ] { - Parameters [1] { - Parameter #0 [ $client_object ] + Parameter #0 [ GearmanClient $obj ] } + - Return [ int or NULL ] } Function [ function gearman_client_set_options ] { - Parameters [2] { - Parameter #0 [ $client_object ] - Parameter #1 [ $option ] + Parameter #0 [ GearmanClient $obj ] + Parameter #1 [ int $option ] } + - Return [ bool ] } Function [ function gearman_client_add_options ] { - Parameters [2] { - Parameter #0 [ $client_object ] - Parameter #1 [ $option ] + Parameter #0 [ GearmanClient $obj ] + Parameter #1 [ int $option ] } + - Return [ bool ] } Function [ function gearman_client_remove_options ] { - Parameters [2] { - Parameter #0 [ $client_object ] - Parameter #1 [ $option ] + Parameter #0 [ GearmanClient $obj ] + Parameter #1 [ int $option ] } + - Return [ bool ] } Function [ function gearman_client_timeout ] { - Parameters [1] { - Parameter #0 [ $client_object ] + Parameter #0 [ GearmanClient $obj ] } + - Return [ int or NULL ] } Function [ function gearman_client_set_timeout ] { - Parameters [2] { - Parameter #0 [ $client_object ] - Parameter #1 [ $timeout ] - } - } - Function [ function gearman_client_context ] { - - - Parameters [1] { - Parameter #0 [ $client_object ] - } - } - Function [ function gearman_client_set_context ] { - - - Parameters [2] { - Parameter #0 [ $client_object ] - Parameter #1 [ $context ] + Parameter #0 [ GearmanClient $obj ] + Parameter #1 [ int $timeout ] } + - Return [ bool ] } Function [ function gearman_client_add_server ] { - Parameters [4] { - Parameter #0 [ $client_object ] - Parameter #1 [ $host ] - Parameter #2 [ $port ] - Parameter #3 [ $enableExceptionHandler ] + Parameter #0 [ GearmanClient $obj ] + Parameter #1 [ string $host ] + Parameter #2 [ int $port ] + Parameter #3 [ bool $setupExceptionHandler ] } + - Return [ bool ] } Function [ function gearman_client_add_servers ] { - Parameters [3] { - Parameter #0 [ $client_object ] - Parameter #1 [ $servers ] - Parameter #2 [ $setupExceptionHandler ] + Parameter #0 [ GearmanClient $obj ] + Parameter #1 [ string $servers ] + Parameter #2 [ bool $setupExceptionHandler ] } + - Return [ bool ] } Function [ function gearman_client_wait ] { - Parameters [1] { - Parameter #0 [ $client_object ] + Parameter #0 [ GearmanClient $obj ] } + - Return [ bool ] } Function [ function gearman_client_do_normal ] { - Parameters [4] { - Parameter #0 [ $client_object ] - Parameter #1 [ $function_name ] - Parameter #2 [ $workload ] - Parameter #3 [ $unique ] + Parameter #0 [ GearmanClient $obj ] + Parameter #1 [ string $function ] + Parameter #2 [ string $workload ] + Parameter #3 [ string or NULL $unique ] } + - Return [ string ] } Function [ function gearman_client_do_high ] { - Parameters [4] { - Parameter #0 [ $client_object ] - Parameter #1 [ $function_name ] - Parameter #2 [ $workload ] - Parameter #3 [ $unique ] + Parameter #0 [ GearmanClient $obj ] + Parameter #1 [ string $function ] + Parameter #2 [ string $workload ] + Parameter #3 [ string or NULL $unique ] } + - Return [ string ] } Function [ function gearman_client_do_low ] { - Parameters [4] { - Parameter #0 [ $client_object ] - Parameter #1 [ $function_name ] - Parameter #2 [ $workload ] - Parameter #3 [ $unique ] + Parameter #0 [ GearmanClient $obj ] + Parameter #1 [ string $function ] + Parameter #2 [ string $workload ] + Parameter #3 [ string or NULL $unique ] } + - Return [ string ] } - Function [ function gearman_client_do_job_handle ] { + Function [ function gearman_client_do_background ] { - - Parameters [1] { - Parameter #0 [ $client_object ] + - Parameters [4] { + Parameter #0 [ GearmanClient $obj ] + Parameter #1 [ string $function ] + Parameter #2 [ string $workload ] + Parameter #3 [ string or NULL $unique ] } + - Return [ string ] } - Function [ function gearman_client_do_status ] { + Function [ function gearman_client_do_high_background ] { - - Parameters [1] { - Parameter #0 [ $client_object ] + - Parameters [4] { + Parameter #0 [ GearmanClient $obj ] + Parameter #1 [ string $function ] + Parameter #2 [ string $workload ] + Parameter #3 [ string or NULL $unique ] } + - Return [ string ] } - Function [ function gearman_client_do_background ] { + Function [ function gearman_client_do_low_background ] { - Parameters [4] { - Parameter #0 [ $client_object ] - Parameter #1 [ $function_name ] - Parameter #2 [ $workload ] - Parameter #3 [ $unique ] + Parameter #0 [ GearmanClient $obj ] + Parameter #1 [ string $function ] + Parameter #2 [ string $workload ] + Parameter #3 [ string or NULL $unique ] } + - Return [ string ] } - Function [ function gearman_client_do_high_background ] { + Function [ function gearman_client_do_job_handle ] { - - Parameters [4] { - Parameter #0 [ $client_object ] - Parameter #1 [ $function_name ] - Parameter #2 [ $workload ] - Parameter #3 [ $unique ] + - Parameters [1] { + Parameter #0 [ GearmanClient $obj ] } + - Return [ string ] } - Function [ function gearman_client_do_low_background ] { + Function [ function gearman_client_do_status ] { - - Parameters [4] { - Parameter #0 [ $client_object ] - Parameter #1 [ $function_name ] - Parameter #2 [ $workload ] - Parameter #3 [ $unique ] + - Parameters [1] { + Parameter #0 [ GearmanClient $obj ] } + - Return [ array ] } Function [ function gearman_client_job_status ] { - Parameters [2] { - Parameter #0 [ $client_object ] - Parameter #1 [ $job_handle ] + Parameter #0 [ GearmanClient $obj ] + Parameter #1 [ string $job_handle ] } + - Return [ array ] } Function [ function gearman_client_job_status_by_unique_key ] { - Parameters [2] { - Parameter #0 [ $client_object ] - Parameter #1 [ $unique_key ] + Parameter #0 [ GearmanClient $obj ] + Parameter #1 [ string $unique_key ] } + - Return [ array ] } Function [ function gearman_client_ping ] { - Parameters [2] { - Parameter #0 [ $client_object ] - Parameter #1 [ $workload ] + Parameter #0 [ GearmanClient $obj ] + Parameter #1 [ string $workload ] } + - Return [ bool ] } Function [ function gearman_client_add_task ] { - Parameters [5] { - Parameter #0 [ $client_object ] - Parameter #1 [ $function_name ] + Parameter #0 [ GearmanClient $obj ] + Parameter #1 [ string $function_name ] Parameter #2 [ $workload ] Parameter #3 [ $context ] - Parameter #4 [ $unique ] + Parameter #4 [ string or NULL $unique_key ] } } Function [ function gearman_client_add_task_high ] { - Parameters [5] { - Parameter #0 [ $client_object ] - Parameter #1 [ $function_name ] + Parameter #0 [ GearmanClient $obj ] + Parameter #1 [ string $function_name ] Parameter #2 [ $workload ] Parameter #3 [ $context ] - Parameter #4 [ $unique ] + Parameter #4 [ string or NULL $unique_key ] } } Function [ function gearman_client_add_task_low ] { - Parameters [5] { - Parameter #0 [ $client_object ] - Parameter #1 [ $function_name ] + Parameter #0 [ GearmanClient $obj ] + Parameter #1 [ string $function_name ] Parameter #2 [ $workload ] Parameter #3 [ $context ] - Parameter #4 [ $unique ] + Parameter #4 [ string or NULL $unique_key ] } } Function [ function gearman_client_add_task_background ] { - Parameters [5] { - Parameter #0 [ $client_object ] - Parameter #1 [ $function_name ] + Parameter #0 [ GearmanClient $obj ] + Parameter #1 [ string $function_name ] Parameter #2 [ $workload ] Parameter #3 [ $context ] - Parameter #4 [ $unique ] + Parameter #4 [ string or NULL $unique_key ] } } Function [ function gearman_client_add_task_high_background ] { - Parameters [5] { - Parameter #0 [ $client_object ] - Parameter #1 [ $function_name ] + Parameter #0 [ GearmanClient $obj ] + Parameter #1 [ string $function_name ] Parameter #2 [ $workload ] Parameter #3 [ $context ] - Parameter #4 [ $unique ] + Parameter #4 [ string or NULL $unique_key ] } } Function [ function gearman_client_add_task_low_background ] { - Parameters [5] { - Parameter #0 [ $client_object ] - Parameter #1 [ $function_name ] + Parameter #0 [ GearmanClient $obj ] + Parameter #1 [ string $function_name ] Parameter #2 [ $workload ] Parameter #3 [ $context ] - Parameter #4 [ $unique ] + Parameter #4 [ string or NULL $unique_key ] } } + Function [ function gearman_client_run_tasks ] { + + - Parameters [1] { + Parameter #0 [ GearmanClient $obj ] + } + - Return [ bool ] + } Function [ function gearman_client_add_task_status ] { - Parameters [3] { - Parameter #0 [ $client_object ] - Parameter #1 [ $job_handle ] + Parameter #0 [ GearmanClient $obj ] + Parameter #1 [ string $job_handle ] Parameter #2 [ $context ] } + - Return [ GearmanTask ] } Function [ function gearman_client_set_workload_callback ] { - Parameters [2] { - Parameter #0 [ $client_object ] - Parameter #1 [ $callback ] + Parameter #0 [ GearmanClient $obj ] + Parameter #1 [ callable $function ] } + - Return [ bool ] } Function [ function gearman_client_set_created_callback ] { - Parameters [2] { - Parameter #0 [ $client_object ] - Parameter #1 [ $callback ] + Parameter #0 [ GearmanClient $obj ] + Parameter #1 [ callable $function ] } + - Return [ bool ] } Function [ function gearman_client_set_data_callback ] { - Parameters [2] { - Parameter #0 [ $client_object ] - Parameter #1 [ $callback ] + Parameter #0 [ GearmanClient $obj ] + Parameter #1 [ callable $function ] } + - Return [ bool ] } Function [ function gearman_client_set_warning_callback ] { - Parameters [2] { - Parameter #0 [ $client_object ] - Parameter #1 [ $callback ] + Parameter #0 [ GearmanClient $obj ] + Parameter #1 [ callable $function ] } + - Return [ bool ] } Function [ function gearman_client_set_status_callback ] { - Parameters [2] { - Parameter #0 [ $client_object ] - Parameter #1 [ $callback ] + Parameter #0 [ GearmanClient $obj ] + Parameter #1 [ callable $function ] } + - Return [ bool ] } Function [ function gearman_client_set_complete_callback ] { - Parameters [2] { - Parameter #0 [ $client_object ] - Parameter #1 [ $callback ] + Parameter #0 [ GearmanClient $obj ] + Parameter #1 [ callable $function ] } + - Return [ bool ] } Function [ function gearman_client_set_exception_callback ] { - Parameters [2] { - Parameter #0 [ $client_object ] - Parameter #1 [ $callback ] + Parameter #0 [ GearmanClient $obj ] + Parameter #1 [ callable $function ] } + - Return [ bool ] } Function [ function gearman_client_set_fail_callback ] { - Parameters [2] { - Parameter #0 [ $client_object ] - Parameter #1 [ $callback ] + Parameter #0 [ GearmanClient $obj ] + Parameter #1 [ callable $function ] } + - Return [ bool ] } Function [ function gearman_client_clear_callbacks ] { - Parameters [1] { - Parameter #0 [ $client_object ] + Parameter #0 [ GearmanClient $obj ] } + - Return [ bool ] } - Function [ function gearman_client_run_tasks ] { + Function [ function gearman_client_context ] { - Parameters [1] { - Parameter #0 [ $client_object ] + Parameter #0 [ GearmanClient $obj ] } + - Return [ string ] + } + Function [ function gearman_client_set_context ] { + + - Parameters [2] { + Parameter #0 [ GearmanClient $obj ] + Parameter #1 [ string $data ] + } + - Return [ bool ] + } + Function [ function gearman_client_enable_exception_handler ] { + + - Parameters [1] { + Parameter #0 [ GearmanClient $obj ] + } + - Return [ bool ] + } + Function [ function gearman_job_return_code ] { + + - Parameters [1] { + Parameter #0 [ GearmanJob $obj ] + } + - Return [ int or NULL ] + } + Function [ function gearman_job_set_return ] { + + - Parameters [2] { + Parameter #0 [ GearmanJob $obj ] + Parameter #1 [ int $gearman_return_t ] + } + - Return [ bool or NULL ] + } + Function [ function gearman_job_send_data ] { + + - Parameters [2] { + Parameter #0 [ GearmanJob $obj ] + Parameter #1 [ string $data ] + } + - Return [ bool or NULL ] + } + Function [ function gearman_job_send_warning ] { + + - Parameters [2] { + Parameter #0 [ GearmanJob $obj ] + Parameter #1 [ string $warning ] + } + - Return [ bool ] + } + Function [ function gearman_job_send_status ] { + + - Parameters [3] { + Parameter #0 [ GearmanJob $obj ] + Parameter #1 [ int $numerator ] + Parameter #2 [ int $denominator ] + } + - Return [ bool ] + } + Function [ function gearman_job_send_complete ] { + + - Parameters [2] { + Parameter #0 [ GearmanJob $obj ] + Parameter #1 [ string $result ] + } + - Return [ bool ] + } + Function [ function gearman_job_send_exception ] { + + - Parameters [2] { + Parameter #0 [ GearmanJob $obj ] + Parameter #1 [ string $exception ] + } + - Return [ bool ] + } + Function [ function gearman_job_send_fail ] { + + - Parameters [1] { + Parameter #0 [ GearmanJob $obj ] + } + - Return [ bool ] + } + Function [ function gearman_job_handle ] { + + - Parameters [1] { + Parameter #0 [ GearmanJob $obj ] + } + } + Function [ function gearman_job_function_name ] { + + - Parameters [1] { + Parameter #0 [ GearmanJob $obj ] + } + } + Function [ function gearman_job_unique ] { + + - Parameters [1] { + Parameter #0 [ GearmanJob $obj ] + } + } + Function [ function gearman_job_workload ] { + + - Parameters [1] { + Parameter #0 [ GearmanJob $obj ] + } + - Return [ string ] + } + Function [ function gearman_job_workload_size ] { + + - Parameters [1] { + Parameter #0 [ GearmanJob $obj ] + } + - Return [ int or NULL ] } Function [ function gearman_task_return_code ] { - Parameters [1] { - Parameter #0 [ $task_object ] + Parameter #0 [ GearmanTask $obj ] } + - Return [ int or NULL ] } Function [ function gearman_task_function_name ] { - Parameters [1] { - Parameter #0 [ $task_object ] + Parameter #0 [ GearmanTask $obj ] } } Function [ function gearman_task_unique ] { - Parameters [1] { - Parameter #0 [ $task_object ] + Parameter #0 [ GearmanTask $obj ] } } Function [ function gearman_task_job_handle ] { - Parameters [1] { - Parameter #0 [ $task_object ] + Parameter #0 [ GearmanTask $obj ] } } Function [ function gearman_task_is_known ] { - Parameters [1] { - Parameter #0 [ $task_object ] + Parameter #0 [ GearmanTask $obj ] } + - Return [ bool or NULL ] } Function [ function gearman_task_is_running ] { - Parameters [1] { - Parameter #0 [ $task_object ] + Parameter #0 [ GearmanTask $obj ] } + - Return [ bool or NULL ] } Function [ function gearman_task_numerator ] { - Parameters [1] { - Parameter #0 [ $task_object ] + Parameter #0 [ GearmanTask $obj ] } } Function [ function gearman_task_denominator ] { - Parameters [1] { - Parameter #0 [ $task_object ] + Parameter #0 [ GearmanTask $obj ] } } Function [ function gearman_task_data ] { - Parameters [1] { - Parameter #0 [ $task_object ] + Parameter #0 [ GearmanTask $obj ] } } Function [ function gearman_task_data_size ] { - Parameters [1] { - Parameter #0 [ $task_object ] + Parameter #0 [ GearmanTask $obj ] } } Function [ function gearman_task_send_workload ] { - Parameters [2] { - Parameter #0 [ $task_object ] - Parameter #1 [ $data ] + Parameter #0 [ GearmanTask $obj ] + Parameter #1 [ string $data ] } } Function [ function gearman_task_recv_data ] { - Parameters [2] { - Parameter #0 [ $task_object ] - Parameter #1 [ $data_len ] + Parameter #0 [ GearmanTask $obj ] + Parameter #1 [ int $data_len ] } } Function [ function gearman_worker_return_code ] { - Parameters [1] { - Parameter #0 [ $worker_object ] - } - } - Function [ function gearman_worker_create ] { - - - Parameters [0] { + Parameter #0 [ GearmanWorker $obj ] } + - Return [ int or NULL ] } Function [ function gearman_worker_error ] { - Parameters [1] { - Parameter #0 [ $worker_object ] + Parameter #0 [ GearmanWorker $obj ] } } Function [ function gearman_worker_errno ] { - Parameters [1] { - Parameter #0 [ $worker_object ] + Parameter #0 [ GearmanWorker $obj ] } } Function [ function gearman_worker_options ] { - Parameters [1] { - Parameter #0 [ $worker_object ] + Parameter #0 [ GearmanWorker $obj ] } + - Return [ int or NULL ] } Function [ function gearman_worker_set_options ] { - Parameters [2] { - Parameter #0 [ $worker_object ] - Parameter #1 [ $option ] + Parameter #0 [ GearmanWorker $obj ] + Parameter #1 [ int $option ] } + - Return [ bool or NULL ] } Function [ function gearman_worker_add_options ] { - Parameters [2] { - Parameter #0 [ $worker_object ] - Parameter #1 [ $option ] + Parameter #0 [ GearmanWorker $obj ] + Parameter #1 [ int $option ] } + - Return [ bool or NULL ] } Function [ function gearman_worker_remove_options ] { - Parameters [2] { - Parameter #0 [ $worker_object ] - Parameter #1 [ $option ] + Parameter #0 [ GearmanWorker $obj ] + Parameter #1 [ int $option ] } + - Return [ bool or NULL ] } Function [ function gearman_worker_timeout ] { - Parameters [1] { - Parameter #0 [ $worker_object ] + Parameter #0 [ GearmanWorker $obj ] } + - Return [ int or NULL ] } Function [ function gearman_worker_set_timeout ] { - Parameters [2] { - Parameter #0 [ $worker_object ] - Parameter #1 [ $timeout ] + Parameter #0 [ GearmanWorker $obj ] + Parameter #1 [ int $timeout ] } + - Return [ bool ] } Function [ function gearman_worker_set_id ] { - Parameters [2] { - Parameter #0 [ $worker_object ] - Parameter #1 [ $id ] + Parameter #0 [ GearmanWorker $obj ] + Parameter #1 [ string $id ] } + - Return [ bool ] } Function [ function gearman_worker_add_server ] { - Parameters [3] { - Parameter #0 [ $worker_object ] - Parameter #1 [ $host ] - Parameter #2 [ $port ] + Parameter #0 [ GearmanWorker $obj ] + Parameter #1 [ string $host ] + Parameter #2 [ int $port ] } + - Return [ bool ] } Function [ function gearman_worker_add_servers ] { - Parameters [2] { - Parameter #0 [ $worker_object ] - Parameter #1 [ $servers ] + Parameter #0 [ GearmanWorker $obj ] + Parameter #1 [ string $servers ] } + - Return [ bool ] } Function [ function gearman_worker_wait ] { - Parameters [1] { - Parameter #0 [ $worker_object ] + Parameter #0 [ GearmanWorker $obj ] } + - Return [ bool ] } Function [ function gearman_worker_register ] { - Parameters [3] { - Parameter #0 [ $worker_object ] - Parameter #1 [ $function_name ] - Parameter #2 [ $timeout ] + Parameter #0 [ GearmanWorker $obj ] + Parameter #1 [ string $function_name ] + Parameter #2 [ int $timeout ] } + - Return [ bool ] } Function [ function gearman_worker_unregister ] { - Parameters [2] { - Parameter #0 [ $worker_object ] - Parameter #1 [ $function_name ] + Parameter #0 [ GearmanWorker $obj ] + Parameter #1 [ string $function_name ] } + - Return [ bool ] } Function [ function gearman_worker_unregister_all ] { - Parameters [1] { - Parameter #0 [ $worker_object ] + Parameter #0 [ GearmanWorker $obj ] } + - Return [ bool ] } Function [ function gearman_worker_grab_job ] { - Parameters [1] { - Parameter #0 [ $worker_object ] + Parameter #0 [ GearmanWorker $obj ] } } Function [ function gearman_worker_add_function ] { - Parameters [5] { - Parameter #0 [ $worker_object ] - Parameter #1 [ $function_name ] - Parameter #2 [ $function ] - Parameter #3 [ $data ] - Parameter #4 [ $timeout ] + Parameter #0 [ GearmanWorker $obj ] + Parameter #1 [ string $function_name ] + Parameter #2 [ callable $function ] + Parameter #3 [ $context ] + Parameter #4 [ int $timeout ] } + - Return [ bool ] } Function [ function gearman_worker_work ] { - Parameters [1] { - Parameter #0 [ $worker_object ] + Parameter #0 [ GearmanWorker $obj ] } + - Return [ bool ] } Function [ function gearman_worker_ping ] { - Parameters [2] { - Parameter #0 [ $worker_object ] - Parameter #1 [ $workload ] - } - } - Function [ function gearman_job_return_code ] { - - - Parameters [1] { - Parameter #0 [ $job_object ] - } - } - Function [ function gearman_job_set_return ] { - - - Parameters [2] { - Parameter #0 [ $job_object ] - Parameter #1 [ $gearman_return_t ] - } - } - Function [ function gearman_job_send_data ] { - - - Parameters [2] { - Parameter #0 [ $job_object ] - Parameter #1 [ $data ] - } - } - Function [ function gearman_job_send_warning ] { - - - Parameters [2] { - Parameter #0 [ $job_object ] - Parameter #1 [ $warning ] - } - } - Function [ function gearman_job_send_status ] { - - - Parameters [3] { - Parameter #0 [ $job_object ] - Parameter #1 [ $numerator ] - Parameter #2 [ $denominator ] - } - } - Function [ function gearman_job_send_complete ] { - - - Parameters [2] { - Parameter #0 [ $job_object ] - Parameter #1 [ $result ] - } - } - Function [ function gearman_job_send_exception ] { - - - Parameters [2] { - Parameter #0 [ $job_object ] - Parameter #1 [ $exception ] - } - } - Function [ function gearman_job_send_fail ] { - - - Parameters [1] { - Parameter #0 [ $job_object ] - } - } - Function [ function gearman_job_handle ] { - - - Parameters [1] { - Parameter #0 [ $job_object ] - } - } - Function [ function gearman_job_function_name ] { - - - Parameters [1] { - Parameter #0 [ $job_object ] - } - } - Function [ function gearman_job_unique ] { - - - Parameters [1] { - Parameter #0 [ $job_object ] - } - } - Function [ function gearman_job_workload ] { - - - Parameters [1] { - Parameter #0 [ $job_object ] - } - } - Function [ function gearman_job_workload_size ] { - - - Parameters [1] { - Parameter #0 [ $job_object ] + Parameter #0 [ GearmanWorker $obj ] + Parameter #1 [ string $data ] } + - Return [ bool ] } } @@ -833,6 +908,7 @@ Extension [ extension #109 gearman version 2.0.6 ] { - Parameters [0] { } + - Return [ int ] } Method [ public method error ] { @@ -845,311 +921,346 @@ Extension [ extension #109 gearman version 2.0.6 ] { - Parameters [0] { } + - Return [ int ] } Method [ public method options ] { - Parameters [0] { } + - Return [ int ] } Method [ public method setOptions ] { - Parameters [1] { - Parameter #0 [ $option ] + Parameter #0 [ int $option ] } + - Return [ bool ] } Method [ public method addOptions ] { - Parameters [1] { - Parameter #0 [ $option ] + Parameter #0 [ int $option ] } + - Return [ bool ] } Method [ public method removeOptions ] { - Parameters [1] { - Parameter #0 [ $option ] + Parameter #0 [ int $option ] } + - Return [ bool ] } Method [ public method timeout ] { - Parameters [0] { } + - Return [ int ] } Method [ public method setTimeout ] { - Parameters [1] { - Parameter #0 [ $timeout ] - } - } - - Method [ public method context ] { - - - Parameters [0] { - } - } - - Method [ public method setContext ] { - - - Parameters [1] { - Parameter #0 [ $context ] + Parameter #0 [ int $timeout ] } + - Return [ bool ] } Method [ public method addServer ] { - Parameters [3] { - Parameter #0 [ $host ] - Parameter #1 [ $port ] - Parameter #2 [ $enableExceptionHandler ] + Parameter #0 [ string $host ] + Parameter #1 [ int $port ] + Parameter #2 [ bool $setupExceptionHandler ] } + - Return [ bool ] } Method [ public method addServers ] { - Parameters [2] { - Parameter #0 [ $servers ] - Parameter #1 [ $setupExceptionHandler ] + Parameter #0 [ string $servers ] + Parameter #1 [ bool $setupExceptionHandler ] } + - Return [ bool ] } Method [ public method wait ] { - Parameters [0] { } + - Return [ bool ] } Method [ public method doNormal ] { - Parameters [3] { - Parameter #0 [ $function_name ] - Parameter #1 [ $workload ] - Parameter #2 [ $unique ] + Parameter #0 [ string $function ] + Parameter #1 [ string $workload ] + Parameter #2 [ string or NULL $unique ] } + - Return [ string ] } Method [ public method doHigh ] { - Parameters [3] { - Parameter #0 [ $function_name ] - Parameter #1 [ $workload ] - Parameter #2 [ $unique ] + Parameter #0 [ string $function ] + Parameter #1 [ string $workload ] + Parameter #2 [ string or NULL $unique ] } + - Return [ string ] } - Method [ public method doLow ] { + Method [ public method dolow ] { - Parameters [3] { - Parameter #0 [ $function_name ] - Parameter #1 [ $workload ] - Parameter #2 [ $unique ] + Parameter #0 [ string $function ] + Parameter #1 [ string $workload ] + Parameter #2 [ string or NULL $unique ] } + - Return [ string ] } Method [ public method doBackground ] { - Parameters [3] { - Parameter #0 [ $function_name ] - Parameter #1 [ $workload ] - Parameter #2 [ $unique ] + Parameter #0 [ string $function ] + Parameter #1 [ string $workload ] + Parameter #2 [ string or NULL $unique ] } + - Return [ string ] } Method [ public method doHighBackground ] { - Parameters [3] { - Parameter #0 [ $function_name ] - Parameter #1 [ $workload ] - Parameter #2 [ $unique ] + Parameter #0 [ string $function ] + Parameter #1 [ string $workload ] + Parameter #2 [ string or NULL $unique ] } + - Return [ string ] } Method [ public method doLowBackground ] { - Parameters [3] { - Parameter #0 [ $function_name ] - Parameter #1 [ $workload ] - Parameter #2 [ $unique ] + Parameter #0 [ string $function ] + Parameter #1 [ string $workload ] + Parameter #2 [ string or NULL $unique ] } + - Return [ string ] } Method [ public method doJobHandle ] { - Parameters [0] { } + - Return [ string ] } Method [ public method doStatus ] { - Parameters [0] { } + - Return [ array ] } Method [ public method jobStatus ] { - Parameters [1] { - Parameter #0 [ $job_handle ] + Parameter #0 [ string $job_handle ] } + - Return [ array ] } Method [ public method jobStatusByUniqueKey ] { - Parameters [1] { - Parameter #0 [ $unique_key ] + Parameter #0 [ string $unique_key ] } + - Return [ array ] } Method [ public method ping ] { - Parameters [1] { - Parameter #0 [ $workload ] + Parameter #0 [ string $workload ] } + - Return [ bool ] } Method [ public method addTask ] { - Parameters [4] { - Parameter #0 [ $function_name ] + Parameter #0 [ string $function_name ] Parameter #1 [ $workload ] Parameter #2 [ $context ] - Parameter #3 [ $unique ] + Parameter #3 [ string or NULL $unique_key ] } } Method [ public method addTaskHigh ] { - Parameters [4] { - Parameter #0 [ $function_name ] + Parameter #0 [ string $function_name ] Parameter #1 [ $workload ] Parameter #2 [ $context ] - Parameter #3 [ $unique ] + Parameter #3 [ string or NULL $unique_key ] } } Method [ public method addTaskLow ] { - Parameters [4] { - Parameter #0 [ $function_name ] + Parameter #0 [ string $function_name ] Parameter #1 [ $workload ] Parameter #2 [ $context ] - Parameter #3 [ $unique ] + Parameter #3 [ string or NULL $unique_key ] } } Method [ public method addTaskBackground ] { - Parameters [4] { - Parameter #0 [ $function_name ] + Parameter #0 [ string $function_name ] Parameter #1 [ $workload ] Parameter #2 [ $context ] - Parameter #3 [ $unique ] + Parameter #3 [ string or NULL $unique_key ] } } Method [ public method addTaskHighBackground ] { - Parameters [4] { - Parameter #0 [ $function_name ] + Parameter #0 [ string $function_name ] Parameter #1 [ $workload ] Parameter #2 [ $context ] - Parameter #3 [ $unique ] + Parameter #3 [ string or NULL $unique_key ] } } Method [ public method addTaskLowBackground ] { - Parameters [4] { - Parameter #0 [ $function_name ] + Parameter #0 [ string $function_name ] Parameter #1 [ $workload ] Parameter #2 [ $context ] - Parameter #3 [ $unique ] + Parameter #3 [ string or NULL $unique_key ] + } + } + + Method [ public method runTasks ] { + + - Parameters [0] { } + - Return [ bool ] } Method [ public method addTaskStatus ] { - Parameters [2] { - Parameter #0 [ $job_handle ] + Parameter #0 [ string $job_handle ] Parameter #1 [ $context ] } + - Return [ GearmanTask ] } Method [ public method setWorkloadCallback ] { - Parameters [1] { - Parameter #0 [ $callback ] + Parameter #0 [ callable $function ] } + - Return [ bool ] } Method [ public method setCreatedCallback ] { - Parameters [1] { - Parameter #0 [ $callback ] + Parameter #0 [ callable $function ] } + - Return [ bool ] } Method [ public method setDataCallback ] { - Parameters [1] { - Parameter #0 [ $callback ] + Parameter #0 [ callable $function ] } + - Return [ bool ] } Method [ public method setWarningCallback ] { - Parameters [1] { - Parameter #0 [ $callback ] + Parameter #0 [ callable $function ] } + - Return [ bool ] } Method [ public method setStatusCallback ] { - Parameters [1] { - Parameter #0 [ $callback ] + Parameter #0 [ callable $function ] } + - Return [ bool ] } Method [ public method setCompleteCallback ] { - Parameters [1] { - Parameter #0 [ $callback ] + Parameter #0 [ callable $function ] } + - Return [ bool ] } Method [ public method setExceptionCallback ] { - Parameters [1] { - Parameter #0 [ $callback ] + Parameter #0 [ callable $function ] } + - Return [ bool ] } Method [ public method setFailCallback ] { - Parameters [1] { - Parameter #0 [ $callback ] + Parameter #0 [ callable $function ] } + - Return [ bool ] } Method [ public method clearCallbacks ] { - Parameters [0] { } + - Return [ bool ] } - Method [ public method runTasks ] { + Method [ public method context ] { - Parameters [0] { } + - Return [ string ] + } + + Method [ public method setContext ] { + + - Parameters [1] { + Parameter #0 [ string $data ] + } + - Return [ bool ] } Method [ public method enableExceptionHandler ] { - Parameters [0] { } + - Return [ bool ] } } } @@ -1168,23 +1279,18 @@ Extension [ extension #109 gearman version 2.0.6 ] { - Properties [0] { } - - Methods [14] { + - Methods [13] { Method [ public method __construct ] { - Parameters [0] { } } - Method [ public method __destruct ] { - - - Parameters [0] { - } - } - Method [ public method returnCode ] { - Parameters [0] { } + - Return [ int ] } Method [ public method functionName ] { @@ -1209,12 +1315,14 @@ Extension [ extension #109 gearman version 2.0.6 ] { - Parameters [0] { } + - Return [ bool ] } Method [ public method isRunning ] { - Parameters [0] { } + - Return [ bool ] } Method [ public method taskNumerator ] { @@ -1229,29 +1337,29 @@ Extension [ extension #109 gearman version 2.0.6 ] { } } - Method [ public method sendWorkload ] { + Method [ public method data ] { - - Parameters [1] { - Parameter #0 [ $data ] + - Parameters [0] { } } - Method [ public method data ] { + Method [ public method dataSize ] { - Parameters [0] { } } - Method [ public method dataSize ] { + Method [ public method sendWorkload ] { - - Parameters [0] { + - Parameters [1] { + Parameter #0 [ string $data ] } } Method [ public method recvData ] { - Parameters [1] { - Parameter #0 [ $data_len ] + Parameter #0 [ int $data_len ] } } } @@ -1288,6 +1396,7 @@ Extension [ extension #109 gearman version 2.0.6 ] { - Parameters [0] { } + - Return [ int or NULL ] } Method [ public method error ] { @@ -1306,89 +1415,102 @@ Extension [ extension #109 gearman version 2.0.6 ] { - Parameters [0] { } + - Return [ int or NULL ] } Method [ public method setOptions ] { - Parameters [1] { - Parameter #0 [ $option ] + Parameter #0 [ int $option ] } + - Return [ bool or NULL ] } Method [ public method addOptions ] { - Parameters [1] { - Parameter #0 [ $option ] + Parameter #0 [ int $option ] } + - Return [ bool or NULL ] } Method [ public method removeOptions ] { - Parameters [1] { - Parameter #0 [ $option ] + Parameter #0 [ int $option ] } + - Return [ bool or NULL ] } Method [ public method timeout ] { - Parameters [0] { } + - Return [ int or NULL ] } Method [ public method setTimeout ] { - Parameters [1] { - Parameter #0 [ $timeout ] + Parameter #0 [ int $timeout ] } + - Return [ bool ] } Method [ public method setId ] { - Parameters [1] { - Parameter #0 [ $id ] + Parameter #0 [ string $id ] } + - Return [ bool ] } Method [ public method addServer ] { - Parameters [2] { - Parameter #0 [ $host ] - Parameter #1 [ $port ] + Parameter #0 [ string $host ] + Parameter #1 [ int $port ] } + - Return [ bool ] } Method [ public method addServers ] { - Parameters [1] { - Parameter #0 [ $servers ] + Parameter #0 [ string $servers ] } + - Return [ bool ] } Method [ public method wait ] { - Parameters [0] { } + - Return [ bool ] } Method [ public method register ] { - Parameters [2] { - Parameter #0 [ $function_name ] - Parameter #1 [ $timeout ] + Parameter #0 [ string $function_name ] + Parameter #1 [ int $timeout ] } + - Return [ bool ] } Method [ public method unregister ] { - Parameters [1] { - Parameter #0 [ $function_name ] + Parameter #0 [ string $function_name ] } + - Return [ bool ] } Method [ public method unregisterAll ] { - Parameters [0] { } + - Return [ bool ] } Method [ public method grabJob ] { @@ -1400,24 +1522,27 @@ Extension [ extension #109 gearman version 2.0.6 ] { Method [ public method addFunction ] { - Parameters [4] { - Parameter #0 [ $function_name ] - Parameter #1 [ $function ] - Parameter #2 [ $data ] - Parameter #3 [ $timeout ] + Parameter #0 [ string $function_name ] + Parameter #1 [ callable $function ] + Parameter #2 [ $context ] + Parameter #3 [ int $timeout ] } + - Return [ bool ] } Method [ public method work ] { - Parameters [0] { } + - Return [ bool ] } - Method [ public method echo ] { + Method [ public method ping ] { - Parameters [1] { - Parameter #0 [ $workload ] + Parameter #0 [ string $data ] } + - Return [ bool ] } } } @@ -1447,55 +1572,63 @@ Extension [ extension #109 gearman version 2.0.6 ] { - Parameters [0] { } + - Return [ int or NULL ] } Method [ public method setReturn ] { - Parameters [1] { - Parameter #0 [ $gearman_return_t ] + Parameter #0 [ int $gearman_return_t ] } + - Return [ bool or NULL ] } Method [ public method sendData ] { - Parameters [1] { - Parameter #0 [ $data ] + Parameter #0 [ string $data ] } + - Return [ bool or NULL ] } Method [ public method sendWarning ] { - Parameters [1] { - Parameter #0 [ $warning ] + Parameter #0 [ string $warning ] } + - Return [ bool ] } Method [ public method sendStatus ] { - Parameters [2] { - Parameter #0 [ $numerator ] - Parameter #1 [ $denominator ] + Parameter #0 [ int $numerator ] + Parameter #1 [ int $denominator ] } + - Return [ bool ] } Method [ public method sendComplete ] { - Parameters [1] { - Parameter #0 [ $result ] + Parameter #0 [ string $result ] } + - Return [ bool ] } Method [ public method sendException ] { - Parameters [1] { - Parameter #0 [ $exception ] + Parameter #0 [ string $exception ] } + - Return [ bool ] } Method [ public method sendFail ] { - Parameters [0] { } + - Return [ bool ] } Method [ public method handle ] { @@ -1520,12 +1653,14 @@ Extension [ extension #109 gearman version 2.0.6 ] { - Parameters [0] { } + - Return [ string ] } Method [ public method workloadSize ] { - Parameters [0] { } + - Return [ int or NULL ] } } } diff --git a/php-pecl-gearman.spec b/php-pecl-gearman.spec index 66935d5..0349188 100644 --- a/php-pecl-gearman.spec +++ b/php-pecl-gearman.spec @@ -13,12 +13,6 @@ %scl_package php-pecl-gearman %endif -%global gh_commit afd2ed880c67455fbf28097dfde7bd3e368c183e -%global gh_short %(c=%{gh_commit}; echo ${c:0:7}) -%global gh_date 20200120 -%global gh_owner wcgallego -%global gh_project pecl-gearman -%global with_tests 0%{?_with_tests:1} %global with_zts 0%{!?_without_zts:%{?__ztsphp:1}} %global pecl_name gearman %if "%{php_version}" < "5.6" @@ -27,22 +21,24 @@ %global ini_name 40-%{pecl_name}.ini %endif -%global extver 2.0.6 +%global extver 2.1.0 %global libver 1.1.0 Name: %{?sub_prefix}php-pecl-gearman Version: %{extver} -Release: 2%{?dist}%{!?nophptag:%(%{__php} -r 'echo ".".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')} +Release: 1%{?dist}%{!?nophptag:%(%{__php} -r 'echo ".".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')} Summary: PHP wrapper to libgearman License: PHP -URL: https://github.com/%{gh_owner}/%{gh_project} -Source0: https://github.com/%{gh_owner}/%{gh_project}/archive/%{gh_commit}/%{pecl_name}-%{version}%{?prever}-%{gh_short}.tar.gz +URL: https://pecl.php.net/package/gearman +Source0: https://pecl.php.net/get/%{pecl_name}-%{version}.tgz BuildRequires: libgearman-devel > %{libver} +BuildRequires: make BuildRequires: %{?dtsprefix}gcc -BuildRequires: %{?scl_prefix}php-devel > 7 +BuildRequires: %{?dtsprefix}gcc +BuildRequires: %{?scl_prefix}php-devel >= 7.0 BuildRequires: %{?scl_prefix}php-pear # Required by phpize BuildRequires: autoconf, automake, libtool @@ -60,32 +56,20 @@ Provides: %{?scl_prefix}php-pecl-%{pecl_name} = %{version}-%{rele Provides: %{?scl_prefix}php-pecl-%{pecl_name}%{?_isa} = %{version}-%{release} %endif -%if "%{?vendor}" == "Remi Collet" && 0%{!?scl:1} && 0%{?rhel} +%if "%{?packager}" == "Remi Collet" && 0%{!?scl:1} && 0%{?rhel} # Other third party repo stuff Obsoletes: php55w-pecl-%{pecl_name} <= %{version} +Obsoletes: php56u-pecl-%{pecl_name} <= %{version} Obsoletes: php56w-pecl-%{pecl_name} <= %{version} -%if "%{php_version}" > "7.1" -Obsoletes: php71u-pecl-%{pecl_name} <= %{version} -Obsoletes: php71w-pecl-%{pecl_name} <= %{version} -%endif -%if "%{php_version}" > "7.2" -Obsoletes: php72u-pecl-%{pecl_name} <= %{version} -Obsoletes: php72w-pecl-%{pecl_name} <= %{version} -%endif %if "%{php_version}" > "7.3" Obsoletes: php73-pecl-%{pecl_name} <= %{version} -Obsoletes: php73w-pecl-%{pecl_name} <= %{version} %endif %if "%{php_version}" > "7.4" Obsoletes: php74-pecl-%{pecl_name} <= %{version} -Obsoletes: php74w-pecl-%{pecl_name} <= %{version} %endif +%if "%{php_version}" > "8.0" +Obsoletes: php80-pecl-%{pecl_name} <= %{version} %endif - -%if 0%{?fedora} < 20 && 0%{?rhel} < 7 -# Filter shared private -%{?filter_provides_in: %filter_provides_in %{_libdir}/.*\.so$} -%{?filter_setup} %endif @@ -100,13 +84,7 @@ Package built for PHP %(%{__php} -r 'echo PHP_MAJOR_VERSION.".".PHP_MINOR_VERSIO %prep %setup -q -c -mv %{gh_project}-%{gh_commit} NTS -%{__php} -r ' - $pkg = simplexml_load_file("NTS/package.xml"); - $pkg->date = substr("%{gh_date}",0,4)."-".substr("%{gh_date}",4,2)."-".substr("%{gh_date}",6,2); - $pkg->version->release = "%{version}"; - $pkg->asXML("package.xml"); -' +mv %{pecl_name}-%{version} NTS # Dont register tests on install sed -e 's/role="test"/role="src"/' \ @@ -174,13 +152,13 @@ done : Minimal load test for NTS extension %{__php} --no-php-ini \ --define extension=%{buildroot}%{php_extdir}/%{pecl_name}.so \ - --modules | grep %{pecl_name} + --modules | grep '^%{pecl_name}$' %if %{with_zts} : Minimal load test for ZTS extension %{__ztsphp} --no-php-ini \ --define extension=%{buildroot}%{php_ztsextdir}/%{pecl_name}.so \ - --modules | grep %{pecl_name} + --modules | grep '^%{pecl_name}$' %endif @@ -219,6 +197,10 @@ fi %changelog +* Sun Jan 17 2021 Remi Collet - 2.1.0-1 +- update to 2.1.0 +- sources from pecl + * Thu Feb 6 2020 Remi Collet - 2.0.6-2 - add upstream patch for PHP 7.4 https://github.com/remicollet/remirepo/issues/139 -- cgit