From b6111d70ed462e6e28f50cf9f9d5d129fa43afa4 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 20 Jul 2023 11:09:03 +0200 Subject: build out of sources tree --- REFLECTION | 307 +++++++++++++++++++++++++++++++------------------- php-pecl-gearman.spec | 76 +++++-------- 2 files changed, 223 insertions(+), 160 deletions(-) diff --git a/REFLECTION b/REFLECTION index 96e0b4c..c5c6f15 100644 --- a/REFLECTION +++ b/REFLECTION @@ -1,4 +1,4 @@ -Extension [ extension #119 gearman version 2.1.0 ] { +Extension [ extension #124 gearman version 2.1.0 ] { - Constants [157] { Constant [ string GEARMAN_DEFAULT_TCP_HOST ] { localhost } @@ -178,44 +178,47 @@ Extension [ extension #119 gearman version 2.1.0 ] { - Parameters [1] { Parameter #0 [ int $verbose ] } - - Return [ string or NULL ] + - Return [ ?string ] } Function [ function gearman_client_create ] { - Parameters [0] { } + - Return [ GearmanClient|false ] } Function [ function gearman_worker_create ] { - Parameters [0] { } + - Return [ GearmanWorker|false ] } Function [ function gearman_client_return_code ] { - Parameters [1] { Parameter #0 [ GearmanClient $obj ] } - - Return [ int or NULL ] + - Return [ ?int ] } Function [ function gearman_client_error ] { - Parameters [1] { Parameter #0 [ GearmanClient $obj ] } + - Return [ string|false|null ] } Function [ function gearman_client_get_errno ] { - Parameters [1] { Parameter #0 [ GearmanClient $obj ] } - - Return [ int or NULL ] + - Return [ ?int ] } Function [ function gearman_client_options ] { - Parameters [1] { Parameter #0 [ GearmanClient $obj ] } - - Return [ int or NULL ] + - Return [ ?int ] } Function [ function gearman_client_set_options ] { @@ -246,7 +249,7 @@ Extension [ extension #119 gearman version 2.1.0 ] { - Parameters [1] { Parameter #0 [ GearmanClient $obj ] } - - Return [ int or NULL ] + - Return [ ?int ] } Function [ function gearman_client_set_timeout ] { @@ -260,9 +263,9 @@ Extension [ extension #119 gearman version 2.1.0 ] { - Parameters [4] { Parameter #0 [ GearmanClient $obj ] - Parameter #1 [ string $host ] - Parameter #2 [ int $port ] - Parameter #3 [ bool $setupExceptionHandler ] + Parameter #1 [ string $host = null ] + Parameter #2 [ int $port = 0 ] + Parameter #3 [ bool $setupExceptionHandler = true ] } - Return [ bool ] } @@ -270,8 +273,8 @@ Extension [ extension #119 gearman version 2.1.0 ] { - Parameters [3] { Parameter #0 [ GearmanClient $obj ] - Parameter #1 [ string $servers ] - Parameter #2 [ bool $setupExceptionHandler ] + Parameter #1 [ string $servers = null ] + Parameter #2 [ bool $setupExceptionHandler = true ] } - Return [ bool ] } @@ -288,7 +291,7 @@ Extension [ extension #119 gearman version 2.1.0 ] { Parameter #0 [ GearmanClient $obj ] Parameter #1 [ string $function ] Parameter #2 [ string $workload ] - Parameter #3 [ string or NULL $unique ] + Parameter #3 [ ?string $unique = null ] } - Return [ string ] } @@ -298,7 +301,7 @@ Extension [ extension #119 gearman version 2.1.0 ] { Parameter #0 [ GearmanClient $obj ] Parameter #1 [ string $function ] Parameter #2 [ string $workload ] - Parameter #3 [ string or NULL $unique ] + Parameter #3 [ ?string $unique = null ] } - Return [ string ] } @@ -308,7 +311,7 @@ Extension [ extension #119 gearman version 2.1.0 ] { Parameter #0 [ GearmanClient $obj ] Parameter #1 [ string $function ] Parameter #2 [ string $workload ] - Parameter #3 [ string or NULL $unique ] + Parameter #3 [ ?string $unique = null ] } - Return [ string ] } @@ -318,7 +321,7 @@ Extension [ extension #119 gearman version 2.1.0 ] { Parameter #0 [ GearmanClient $obj ] Parameter #1 [ string $function ] Parameter #2 [ string $workload ] - Parameter #3 [ string or NULL $unique ] + Parameter #3 [ ?string $unique = null ] } - Return [ string ] } @@ -328,7 +331,7 @@ Extension [ extension #119 gearman version 2.1.0 ] { Parameter #0 [ GearmanClient $obj ] Parameter #1 [ string $function ] Parameter #2 [ string $workload ] - Parameter #3 [ string or NULL $unique ] + Parameter #3 [ ?string $unique = null ] } - Return [ string ] } @@ -338,7 +341,7 @@ Extension [ extension #119 gearman version 2.1.0 ] { Parameter #0 [ GearmanClient $obj ] Parameter #1 [ string $function ] Parameter #2 [ string $workload ] - Parameter #3 [ string or NULL $unique ] + Parameter #3 [ ?string $unique = null ] } - Return [ string ] } @@ -385,60 +388,66 @@ Extension [ extension #119 gearman version 2.1.0 ] { - Parameters [5] { Parameter #0 [ GearmanClient $obj ] Parameter #1 [ string $function_name ] - Parameter #2 [ $workload ] - Parameter #3 [ $context ] - Parameter #4 [ string or NULL $unique_key ] + Parameter #2 [ string|int|float $workload ] + Parameter #3 [ mixed $context = null ] + Parameter #4 [ ?string $unique_key = null ] } + - Return [ GearmanTask|false ] } Function [ function gearman_client_add_task_high ] { - Parameters [5] { Parameter #0 [ GearmanClient $obj ] Parameter #1 [ string $function_name ] - Parameter #2 [ $workload ] - Parameter #3 [ $context ] - Parameter #4 [ string or NULL $unique_key ] + Parameter #2 [ string|int|float $workload ] + Parameter #3 [ mixed $context = null ] + Parameter #4 [ ?string $unique_key = null ] } + - Return [ GearmanTask|false ] } Function [ function gearman_client_add_task_low ] { - Parameters [5] { Parameter #0 [ GearmanClient $obj ] Parameter #1 [ string $function_name ] - Parameter #2 [ $workload ] - Parameter #3 [ $context ] - Parameter #4 [ string or NULL $unique_key ] + Parameter #2 [ string|int|float $workload ] + Parameter #3 [ mixed $context = null ] + Parameter #4 [ ?string $unique_key = null ] } + - Return [ GearmanTask|false ] } Function [ function gearman_client_add_task_background ] { - Parameters [5] { Parameter #0 [ GearmanClient $obj ] Parameter #1 [ string $function_name ] - Parameter #2 [ $workload ] - Parameter #3 [ $context ] - Parameter #4 [ string or NULL $unique_key ] + Parameter #2 [ string|int|float $workload ] + Parameter #3 [ mixed $context = null ] + Parameter #4 [ ?string $unique_key = null ] } + - Return [ GearmanTask|false ] } Function [ function gearman_client_add_task_high_background ] { - Parameters [5] { Parameter #0 [ GearmanClient $obj ] Parameter #1 [ string $function_name ] - Parameter #2 [ $workload ] - Parameter #3 [ $context ] - Parameter #4 [ string or NULL $unique_key ] + Parameter #2 [ string|int|float $workload ] + Parameter #3 [ mixed $context = null ] + Parameter #4 [ ?string $unique_key = null ] } + - Return [ GearmanTask|false ] } Function [ function gearman_client_add_task_low_background ] { - Parameters [5] { Parameter #0 [ GearmanClient $obj ] Parameter #1 [ string $function_name ] - Parameter #2 [ $workload ] - Parameter #3 [ $context ] - Parameter #4 [ string or NULL $unique_key ] + Parameter #2 [ string|int|float $workload ] + Parameter #3 [ mixed $context = null ] + Parameter #4 [ ?string $unique_key = null ] } + - Return [ GearmanTask|false ] } Function [ function gearman_client_run_tasks ] { @@ -452,7 +461,7 @@ Extension [ extension #119 gearman version 2.1.0 ] { - Parameters [3] { Parameter #0 [ GearmanClient $obj ] Parameter #1 [ string $job_handle ] - Parameter #2 [ $context ] + Parameter #2 [ mixed $context = null ] } - Return [ GearmanTask ] } @@ -554,7 +563,7 @@ Extension [ extension #119 gearman version 2.1.0 ] { - Parameters [1] { Parameter #0 [ GearmanJob $obj ] } - - Return [ int or NULL ] + - Return [ ?int ] } Function [ function gearman_job_set_return ] { @@ -562,7 +571,7 @@ Extension [ extension #119 gearman version 2.1.0 ] { Parameter #0 [ GearmanJob $obj ] Parameter #1 [ int $gearman_return_t ] } - - Return [ bool or NULL ] + - Return [ ?bool ] } Function [ function gearman_job_send_data ] { @@ -570,7 +579,7 @@ Extension [ extension #119 gearman version 2.1.0 ] { Parameter #0 [ GearmanJob $obj ] Parameter #1 [ string $data ] } - - Return [ bool or NULL ] + - Return [ ?bool ] } Function [ function gearman_job_send_warning ] { @@ -617,18 +626,21 @@ Extension [ extension #119 gearman version 2.1.0 ] { - Parameters [1] { Parameter #0 [ GearmanJob $obj ] } + - Return [ string|bool ] } Function [ function gearman_job_function_name ] { - Parameters [1] { Parameter #0 [ GearmanJob $obj ] } + - Return [ string|bool ] } Function [ function gearman_job_unique ] { - Parameters [1] { Parameter #0 [ GearmanJob $obj ] } + - Return [ string|bool ] } Function [ function gearman_job_workload ] { @@ -642,70 +654,77 @@ Extension [ extension #119 gearman version 2.1.0 ] { - Parameters [1] { Parameter #0 [ GearmanJob $obj ] } - - Return [ int or NULL ] + - Return [ ?int ] } Function [ function gearman_task_return_code ] { - Parameters [1] { Parameter #0 [ GearmanTask $obj ] } - - Return [ int or NULL ] + - Return [ ?int ] } Function [ function gearman_task_function_name ] { - Parameters [1] { Parameter #0 [ GearmanTask $obj ] } + - Return [ string|bool|null ] } Function [ function gearman_task_unique ] { - Parameters [1] { Parameter #0 [ GearmanTask $obj ] } + - Return [ string|bool|null ] } Function [ function gearman_task_job_handle ] { - Parameters [1] { Parameter #0 [ GearmanTask $obj ] } + - Return [ string|bool|null ] } Function [ function gearman_task_is_known ] { - Parameters [1] { Parameter #0 [ GearmanTask $obj ] } - - Return [ bool or NULL ] + - Return [ ?bool ] } Function [ function gearman_task_is_running ] { - Parameters [1] { Parameter #0 [ GearmanTask $obj ] } - - Return [ bool or NULL ] + - Return [ ?bool ] } Function [ function gearman_task_numerator ] { - Parameters [1] { Parameter #0 [ GearmanTask $obj ] } + - Return [ int|bool|null ] } Function [ function gearman_task_denominator ] { - Parameters [1] { Parameter #0 [ GearmanTask $obj ] } + - Return [ int|bool|null ] } Function [ function gearman_task_data ] { - Parameters [1] { Parameter #0 [ GearmanTask $obj ] } + - Return [ string|bool|null ] } Function [ function gearman_task_data_size ] { - Parameters [1] { Parameter #0 [ GearmanTask $obj ] } + - Return [ int|false ] } Function [ function gearman_task_send_workload ] { @@ -713,6 +732,7 @@ Extension [ extension #119 gearman version 2.1.0 ] { Parameter #0 [ GearmanTask $obj ] Parameter #1 [ string $data ] } + - Return [ int|false ] } Function [ function gearman_task_recv_data ] { @@ -720,32 +740,35 @@ Extension [ extension #119 gearman version 2.1.0 ] { Parameter #0 [ GearmanTask $obj ] Parameter #1 [ int $data_len ] } + - Return [ array|bool ] } Function [ function gearman_worker_return_code ] { - Parameters [1] { Parameter #0 [ GearmanWorker $obj ] } - - Return [ int or NULL ] + - Return [ ?int ] } Function [ function gearman_worker_error ] { - Parameters [1] { Parameter #0 [ GearmanWorker $obj ] } + - Return [ string|false ] } Function [ function gearman_worker_errno ] { - Parameters [1] { Parameter #0 [ GearmanWorker $obj ] } + - Return [ int|false ] } Function [ function gearman_worker_options ] { - Parameters [1] { Parameter #0 [ GearmanWorker $obj ] } - - Return [ int or NULL ] + - Return [ ?int ] } Function [ function gearman_worker_set_options ] { @@ -753,7 +776,7 @@ Extension [ extension #119 gearman version 2.1.0 ] { Parameter #0 [ GearmanWorker $obj ] Parameter #1 [ int $option ] } - - Return [ bool or NULL ] + - Return [ ?bool ] } Function [ function gearman_worker_add_options ] { @@ -761,7 +784,7 @@ Extension [ extension #119 gearman version 2.1.0 ] { Parameter #0 [ GearmanWorker $obj ] Parameter #1 [ int $option ] } - - Return [ bool or NULL ] + - Return [ ?bool ] } Function [ function gearman_worker_remove_options ] { @@ -769,14 +792,14 @@ Extension [ extension #119 gearman version 2.1.0 ] { Parameter #0 [ GearmanWorker $obj ] Parameter #1 [ int $option ] } - - Return [ bool or NULL ] + - Return [ ?bool ] } Function [ function gearman_worker_timeout ] { - Parameters [1] { Parameter #0 [ GearmanWorker $obj ] } - - Return [ int or NULL ] + - Return [ ?int ] } Function [ function gearman_worker_set_timeout ] { @@ -798,8 +821,8 @@ Extension [ extension #119 gearman version 2.1.0 ] { - Parameters [3] { Parameter #0 [ GearmanWorker $obj ] - Parameter #1 [ string $host ] - Parameter #2 [ int $port ] + Parameter #1 [ string $host = null ] + Parameter #2 [ int $port = 0 ] } - Return [ bool ] } @@ -807,7 +830,7 @@ Extension [ extension #119 gearman version 2.1.0 ] { - Parameters [2] { Parameter #0 [ GearmanWorker $obj ] - Parameter #1 [ string $servers ] + Parameter #1 [ string $servers = null ] } - Return [ bool ] } @@ -823,7 +846,7 @@ Extension [ extension #119 gearman version 2.1.0 ] { - Parameters [3] { Parameter #0 [ GearmanWorker $obj ] Parameter #1 [ string $function_name ] - Parameter #2 [ int $timeout ] + Parameter #2 [ int $timeout = 0 ] } - Return [ bool ] } @@ -847,6 +870,7 @@ Extension [ extension #119 gearman version 2.1.0 ] { - Parameters [1] { Parameter #0 [ GearmanWorker $obj ] } + - Return [ GearmanWorker|false ] } Function [ function gearman_worker_add_function ] { @@ -854,8 +878,8 @@ Extension [ extension #119 gearman version 2.1.0 ] { Parameter #0 [ GearmanWorker $obj ] Parameter #1 [ string $function_name ] Parameter #2 [ callable $function ] - Parameter #3 [ $context ] - Parameter #4 [ int $timeout ] + Parameter #3 [ mixed $context = null ] + Parameter #4 [ int $timeout = 0 ] } - Return [ bool ] } @@ -898,7 +922,7 @@ Extension [ extension #119 gearman version 2.1.0 ] { } } - Method [ public method __destruct ] { + Method [ public method __destruct ] { - Parameters [0] { } @@ -915,6 +939,7 @@ Extension [ extension #119 gearman version 2.1.0 ] { - Parameters [0] { } + - Return [ string|false ] } Method [ public method getErrno ] { @@ -973,9 +998,9 @@ Extension [ extension #119 gearman version 2.1.0 ] { Method [ public method addServer ] { - Parameters [3] { - Parameter #0 [ string $host ] - Parameter #1 [ int $port ] - Parameter #2 [ bool $setupExceptionHandler ] + Parameter #0 [ string $host = null ] + Parameter #1 [ int $port = 0 ] + Parameter #2 [ bool $setupExceptionHandler = true ] } - Return [ bool ] } @@ -983,8 +1008,8 @@ Extension [ extension #119 gearman version 2.1.0 ] { Method [ public method addServers ] { - Parameters [2] { - Parameter #0 [ string $servers ] - Parameter #1 [ bool $setupExceptionHandler ] + Parameter #0 [ string $servers = null ] + Parameter #1 [ bool $setupExceptionHandler = true ] } - Return [ bool ] } @@ -1001,7 +1026,7 @@ Extension [ extension #119 gearman version 2.1.0 ] { - Parameters [3] { Parameter #0 [ string $function ] Parameter #1 [ string $workload ] - Parameter #2 [ string or NULL $unique ] + Parameter #2 [ ?string $unique = null ] } - Return [ string ] } @@ -1011,7 +1036,7 @@ Extension [ extension #119 gearman version 2.1.0 ] { - Parameters [3] { Parameter #0 [ string $function ] Parameter #1 [ string $workload ] - Parameter #2 [ string or NULL $unique ] + Parameter #2 [ ?string $unique = null ] } - Return [ string ] } @@ -1021,7 +1046,7 @@ Extension [ extension #119 gearman version 2.1.0 ] { - Parameters [3] { Parameter #0 [ string $function ] Parameter #1 [ string $workload ] - Parameter #2 [ string or NULL $unique ] + Parameter #2 [ ?string $unique = null ] } - Return [ string ] } @@ -1031,7 +1056,7 @@ Extension [ extension #119 gearman version 2.1.0 ] { - Parameters [3] { Parameter #0 [ string $function ] Parameter #1 [ string $workload ] - Parameter #2 [ string or NULL $unique ] + Parameter #2 [ ?string $unique = null ] } - Return [ string ] } @@ -1041,7 +1066,7 @@ Extension [ extension #119 gearman version 2.1.0 ] { - Parameters [3] { Parameter #0 [ string $function ] Parameter #1 [ string $workload ] - Parameter #2 [ string or NULL $unique ] + Parameter #2 [ ?string $unique = null ] } - Return [ string ] } @@ -1051,7 +1076,7 @@ Extension [ extension #119 gearman version 2.1.0 ] { - Parameters [3] { Parameter #0 [ string $function ] Parameter #1 [ string $workload ] - Parameter #2 [ string or NULL $unique ] + Parameter #2 [ ?string $unique = null ] } - Return [ string ] } @@ -1098,60 +1123,66 @@ Extension [ extension #119 gearman version 2.1.0 ] { - Parameters [4] { Parameter #0 [ string $function_name ] - Parameter #1 [ $workload ] - Parameter #2 [ $context ] - Parameter #3 [ string or NULL $unique_key ] + Parameter #1 [ string|int|float $workload ] + Parameter #2 [ mixed $context = null ] + Parameter #3 [ ?string $unique_key = null ] } + - Return [ GearmanTask|false ] } Method [ public method addTaskHigh ] { - Parameters [4] { Parameter #0 [ string $function_name ] - Parameter #1 [ $workload ] - Parameter #2 [ $context ] - Parameter #3 [ string or NULL $unique_key ] + Parameter #1 [ string|int|float $workload ] + Parameter #2 [ mixed $context = null ] + Parameter #3 [ ?string $unique_key = null ] } + - Return [ GearmanTask|false ] } Method [ public method addTaskLow ] { - Parameters [4] { Parameter #0 [ string $function_name ] - Parameter #1 [ $workload ] - Parameter #2 [ $context ] - Parameter #3 [ string or NULL $unique_key ] + Parameter #1 [ string|int|float $workload ] + Parameter #2 [ mixed $context = null ] + Parameter #3 [ ?string $unique_key = null ] } + - Return [ GearmanTask|false ] } Method [ public method addTaskBackground ] { - Parameters [4] { Parameter #0 [ string $function_name ] - Parameter #1 [ $workload ] - Parameter #2 [ $context ] - Parameter #3 [ string or NULL $unique_key ] + Parameter #1 [ string|int|float $workload ] + Parameter #2 [ mixed $context = null ] + Parameter #3 [ ?string $unique_key = null ] } + - Return [ GearmanTask|false ] } Method [ public method addTaskHighBackground ] { - Parameters [4] { Parameter #0 [ string $function_name ] - Parameter #1 [ $workload ] - Parameter #2 [ $context ] - Parameter #3 [ string or NULL $unique_key ] + Parameter #1 [ string|int|float $workload ] + Parameter #2 [ mixed $context = null ] + Parameter #3 [ ?string $unique_key = null ] } + - Return [ GearmanTask|false ] } Method [ public method addTaskLowBackground ] { - Parameters [4] { Parameter #0 [ string $function_name ] - Parameter #1 [ $workload ] - Parameter #2 [ $context ] - Parameter #3 [ string or NULL $unique_key ] + Parameter #1 [ string|int|float $workload ] + Parameter #2 [ mixed $context = null ] + Parameter #3 [ ?string $unique_key = null ] } + - Return [ GearmanTask|false ] } Method [ public method runTasks ] { @@ -1165,7 +1196,7 @@ Extension [ extension #119 gearman version 2.1.0 ] { - Parameters [2] { Parameter #0 [ string $job_handle ] - Parameter #1 [ $context ] + Parameter #1 [ mixed $context = null ] } - Return [ GearmanTask ] } @@ -1297,18 +1328,21 @@ Extension [ extension #119 gearman version 2.1.0 ] { - Parameters [0] { } + - Return [ string|bool ] } Method [ public method unique ] { - Parameters [0] { } + - Return [ string|bool ] } Method [ public method jobHandle ] { - Parameters [0] { } + - Return [ string|bool ] } Method [ public method isKnown ] { @@ -1329,24 +1363,28 @@ Extension [ extension #119 gearman version 2.1.0 ] { - Parameters [0] { } + - Return [ int|bool ] } Method [ public method taskDenominator ] { - Parameters [0] { } + - Return [ int|bool ] } Method [ public method data ] { - Parameters [0] { } + - Return [ string|bool ] } Method [ public method dataSize ] { - Parameters [0] { } + - Return [ int|false ] } Method [ public method sendWorkload ] { @@ -1354,6 +1392,7 @@ Extension [ extension #119 gearman version 2.1.0 ] { - Parameters [1] { Parameter #0 [ string $data ] } + - Return [ int|false ] } Method [ public method recvData ] { @@ -1361,6 +1400,7 @@ Extension [ extension #119 gearman version 2.1.0 ] { - Parameters [1] { Parameter #0 [ int $data_len ] } + - Return [ array|bool ] } } } @@ -1386,7 +1426,7 @@ Extension [ extension #119 gearman version 2.1.0 ] { } } - Method [ public method __destruct ] { + Method [ public method __destruct ] { - Parameters [0] { } @@ -1396,26 +1436,28 @@ Extension [ extension #119 gearman version 2.1.0 ] { - Parameters [0] { } - - Return [ int or NULL ] + - Return [ ?int ] } Method [ public method error ] { - Parameters [0] { } + - Return [ string|false ] } Method [ public method getErrno ] { - Parameters [0] { } + - Return [ int|false ] } Method [ public method options ] { - Parameters [0] { } - - Return [ int or NULL ] + - Return [ ?int ] } Method [ public method setOptions ] { @@ -1423,7 +1465,7 @@ Extension [ extension #119 gearman version 2.1.0 ] { - Parameters [1] { Parameter #0 [ int $option ] } - - Return [ bool or NULL ] + - Return [ ?bool ] } Method [ public method addOptions ] { @@ -1431,7 +1473,7 @@ Extension [ extension #119 gearman version 2.1.0 ] { - Parameters [1] { Parameter #0 [ int $option ] } - - Return [ bool or NULL ] + - Return [ ?bool ] } Method [ public method removeOptions ] { @@ -1439,14 +1481,14 @@ Extension [ extension #119 gearman version 2.1.0 ] { - Parameters [1] { Parameter #0 [ int $option ] } - - Return [ bool or NULL ] + - Return [ ?bool ] } Method [ public method timeout ] { - Parameters [0] { } - - Return [ int or NULL ] + - Return [ ?int ] } Method [ public method setTimeout ] { @@ -1468,8 +1510,8 @@ Extension [ extension #119 gearman version 2.1.0 ] { Method [ public method addServer ] { - Parameters [2] { - Parameter #0 [ string $host ] - Parameter #1 [ int $port ] + Parameter #0 [ string $host = null ] + Parameter #1 [ int $port = 0 ] } - Return [ bool ] } @@ -1477,7 +1519,7 @@ Extension [ extension #119 gearman version 2.1.0 ] { Method [ public method addServers ] { - Parameters [1] { - Parameter #0 [ string $servers ] + Parameter #0 [ string $servers = null ] } - Return [ bool ] } @@ -1493,7 +1535,7 @@ Extension [ extension #119 gearman version 2.1.0 ] { - Parameters [2] { Parameter #0 [ string $function_name ] - Parameter #1 [ int $timeout ] + Parameter #1 [ int $timeout = 0 ] } - Return [ bool ] } @@ -1517,6 +1559,7 @@ Extension [ extension #119 gearman version 2.1.0 ] { - Parameters [0] { } + - Return [ GearmanWorker|false ] } Method [ public method addFunction ] { @@ -1524,8 +1567,8 @@ Extension [ extension #119 gearman version 2.1.0 ] { - Parameters [4] { Parameter #0 [ string $function_name ] Parameter #1 [ callable $function ] - Parameter #2 [ $context ] - Parameter #3 [ int $timeout ] + Parameter #2 [ mixed $context = null ] + Parameter #3 [ int $timeout = 0 ] } - Return [ bool ] } @@ -1562,7 +1605,7 @@ Extension [ extension #119 gearman version 2.1.0 ] { } - Methods [14] { - Method [ public method __destruct ] { + Method [ public method __destruct ] { - Parameters [0] { } @@ -1572,7 +1615,7 @@ Extension [ extension #119 gearman version 2.1.0 ] { - Parameters [0] { } - - Return [ int or NULL ] + - Return [ ?int ] } Method [ public method setReturn ] { @@ -1580,7 +1623,7 @@ Extension [ extension #119 gearman version 2.1.0 ] { - Parameters [1] { Parameter #0 [ int $gearman_return_t ] } - - Return [ bool or NULL ] + - Return [ ?bool ] } Method [ public method sendData ] { @@ -1588,7 +1631,7 @@ Extension [ extension #119 gearman version 2.1.0 ] { - Parameters [1] { Parameter #0 [ string $data ] } - - Return [ bool or NULL ] + - Return [ ?bool ] } Method [ public method sendWarning ] { @@ -1635,18 +1678,21 @@ Extension [ extension #119 gearman version 2.1.0 ] { - Parameters [0] { } + - Return [ string|bool ] } Method [ public method functionName ] { - Parameters [0] { } + - Return [ string|bool ] } Method [ public method unique ] { - Parameters [0] { } + - Return [ string|bool ] } Method [ public method workload ] { @@ -1660,12 +1706,12 @@ Extension [ extension #119 gearman version 2.1.0 ] { - Parameters [0] { } - - Return [ int or NULL ] + - Return [ ?int ] } } } - Class [ final class GearmanException extends Exception implements Throwable ] { + Class [ final class GearmanException extends Exception implements Throwable, Stringable ] { - Constants [0] { } @@ -1677,47 +1723,82 @@ Extension [ extension #119 gearman version 2.1.0 ] { } - Properties [4] { - Property [ protected $message ] - Property [ protected $file ] - Property [ protected $line ] - Property [ public $code ] + Property [ protected $message = '' ] + Property [ protected string $file = '' ] + Property [ protected int $line = 0 ] + Property [ public $code = 0 ] } - Methods [10] { Method [ public method __construct ] { - Parameters [3] { - Parameter #0 [ $message ] - Parameter #1 [ $code ] - Parameter #2 [ $previous ] + Parameter #0 [ string $message = "" ] + Parameter #1 [ int $code = 0 ] + Parameter #2 [ ?Throwable $previous = null ] } } Method [ public method __wakeup ] { + + - Parameters [0] { + } + - Tentative return [ void ] } Method [ final public method getMessage ] { + + - Parameters [0] { + } + - Return [ string ] } Method [ final public method getCode ] { + + - Parameters [0] { + } } Method [ final public method getFile ] { + + - Parameters [0] { + } + - Return [ string ] } Method [ final public method getLine ] { + + - Parameters [0] { + } + - Return [ int ] } Method [ final public method getTrace ] { + + - Parameters [0] { + } + - Return [ array ] } Method [ final public method getPrevious ] { + + - Parameters [0] { + } + - Return [ ?Throwable ] } Method [ final public method getTraceAsString ] { + + - Parameters [0] { + } + - Return [ string ] } - Method [ public method __toString ] { + Method [ public method __toString ] { + + - Parameters [0] { + } + - Return [ string ] } } } diff --git a/php-pecl-gearman.spec b/php-pecl-gearman.spec index 8da46ec..4674333 100644 --- a/php-pecl-gearman.spec +++ b/php-pecl-gearman.spec @@ -8,30 +8,25 @@ # # Please, preserve the changelog entries # -%if 0%{?scl:1} -%global sub_prefix %{scl_prefix} -%scl_package php-pecl-gearman -%endif +%{?scl:%scl_package php-pecl-gearman} %global with_zts 0%{!?_without_zts:%{?__ztsphp:1}} %global pecl_name gearman -%if "%{php_version}" < "5.6" -%global ini_name %{pecl_name}.ini -%else -%global ini_name 40-%{pecl_name}.ini -%endif +%global ini_name 40-%{pecl_name}.ini +%global sources %{pecl_name}-%{version} +%global _configure ../%{sources}/configure -%bcond_without tests +%bcond_without tests -%global extver 2.1.0 -%global libver 1.1.0 +%global extver 2.1.0 +%global libver 1.1.0 -Name: %{?sub_prefix}php-pecl-gearman +Name: %{?scl_prefix}php-pecl-gearman Version: %{extver} -Release: 5%{?dist}%{!?nophptag:%(%{__php} -r 'echo ".".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')} +Release: 6%{?dist}%{!?nophptag:%(%{__php} -r 'echo ".".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')} Summary: PHP wrapper to libgearman -License: PHP +License: PHP-3.01 URL: https://pecl.php.net/package/gearman Source0: https://pecl.php.net/get/%{pecl_name}-%{version}.tgz @@ -48,34 +43,17 @@ BuildRequires: autoconf, automake, libtool Requires: %{?scl_prefix}php(zend-abi) = %{php_zend_api} Requires: %{?scl_prefix}php(api) = %{php_core_api} -%{?_sclreq:Requires: %{?scl_prefix}runtime%{?_sclreq}%{?_isa}} Provides: %{?scl_prefix}php-%{pecl_name} = %{version} Provides: %{?scl_prefix}php-%{pecl_name}%{?_isa} = %{version} Provides: %{?scl_prefix}php-pecl(%{pecl_name}) = %{version} Provides: %{?scl_prefix}php-pecl(%{pecl_name})%{?_isa} = %{version} -%if "%{?scl_prefix}" != "%{?sub_prefix}" -Provides: %{?scl_prefix}php-pecl-%{pecl_name} = %{version}-%{release} -Provides: %{?scl_prefix}php-pecl-%{pecl_name}%{?_isa} = %{version}-%{release} -%endif -%if "%{?packager}" == "Remi Collet" && 0%{!?scl:1} && 0%{?rhel} +%if "%{?packager}" == "Remi Collet" && 0%{!?scl:1} && 0%{?rhel} == 7 # 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.3" -Obsoletes: php73-pecl-%{pecl_name} <= %{version} -%endif -%if "%{php_version}" > "7.4" -Obsoletes: php74-pecl-%{pecl_name} <= %{version} -%endif -%if "%{php_version}" > "8.0" -Obsoletes: php80-pecl-%{pecl_name} <= %{version} -%endif -%if "%{php_version}" > "8.1" -Obsoletes: php81-pecl-%{pecl_name} <= %{version} -%endif %endif @@ -90,7 +68,6 @@ Package built for PHP %(%{__php} -r 'echo PHP_MAJOR_VERSION.".".PHP_MINOR_VERSIO %prep %setup -q -c -mv %{pecl_name}-%{version} NTS # Dont register tests on install sed -e 's/role="test"/role="src"/' \ @@ -98,8 +75,8 @@ sed -e 's/role="test"/role="src"/' \ -i package.xml -pushd NTS -%patch0 -p1 +pushd %{sources} +%patch -P0 -p1 extver=$(sed -n '/#define PHP_GEARMAN_VERSION/{s/.* "//;s/".*$//;p}' php_gearman.h) if test "x${extver}" != "x%{version}"; then @@ -113,25 +90,27 @@ cat >%{ini_name} < - 2.1.0-6 +- build out of sources tree + * Wed Sep 01 2021 Remi Collet - 2.1.0-5 - rebuild for 8.1.0RC1 -- cgit