summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2016-11-01 16:50:17 +0100
committerRemi Collet <fedora@famillecollet.com>2016-11-01 16:50:17 +0100
commitbdb8f4810ecebcb21116d78122a01bc20ba0bc53 (patch)
tree96aef2d0b910ae2c17511e512239fd3794a681c5
parentad23f29119865feb18a1ce7091304e7ea1e6c7a5 (diff)
dump the spec
-rw-r--r--REFLECTION-DEV1207
-rw-r--r--php-pecl-amqp-dev.spec410
2 files changed, 1617 insertions, 0 deletions
diff --git a/REFLECTION-DEV b/REFLECTION-DEV
new file mode 100644
index 0000000..46c8f4c
--- /dev/null
+++ b/REFLECTION-DEV
@@ -0,0 +1,1207 @@
+Extension [ <persistent> extension #72 amqp version 1.7.1 ] {
+
+ - INI {
+ Entry [ amqp.host <ALL> ]
+ Current = 'localhost'
+ }
+ Entry [ amqp.vhost <ALL> ]
+ Current = '/'
+ }
+ Entry [ amqp.port <ALL> ]
+ Current = '5672'
+ }
+ Entry [ amqp.timeout <ALL> ]
+ Current = ''
+ }
+ Entry [ amqp.read_timeout <ALL> ]
+ Current = '0'
+ }
+ Entry [ amqp.write_timeout <ALL> ]
+ Current = '0'
+ }
+ Entry [ amqp.connect_timeout <ALL> ]
+ Current = '0'
+ }
+ Entry [ amqp.login <ALL> ]
+ Current = 'guest'
+ }
+ Entry [ amqp.password <ALL> ]
+ Current = 'guest'
+ }
+ Entry [ amqp.auto_ack <ALL> ]
+ Current = '0'
+ }
+ Entry [ amqp.prefetch_count <ALL> ]
+ Current = '3'
+ }
+ Entry [ amqp.channel_max <ALL> ]
+ Current = '256'
+ }
+ Entry [ amqp.frame_max <ALL> ]
+ Current = '131072'
+ }
+ Entry [ amqp.heartbeat <ALL> ]
+ Current = '0'
+ }
+ }
+
+ - Constants [22] {
+ Constant [ integer AMQP_NOPARAM ] { 0 }
+ Constant [ integer AMQP_JUST_CONSUME ] { 1 }
+ Constant [ integer AMQP_DURABLE ] { 2 }
+ Constant [ integer AMQP_PASSIVE ] { 4 }
+ Constant [ integer AMQP_EXCLUSIVE ] { 8 }
+ Constant [ integer AMQP_AUTODELETE ] { 16 }
+ Constant [ integer AMQP_INTERNAL ] { 32 }
+ Constant [ integer AMQP_NOLOCAL ] { 64 }
+ Constant [ integer AMQP_AUTOACK ] { 128 }
+ Constant [ integer AMQP_IFEMPTY ] { 256 }
+ Constant [ integer AMQP_IFUNUSED ] { 512 }
+ Constant [ integer AMQP_MANDATORY ] { 1024 }
+ Constant [ integer AMQP_IMMEDIATE ] { 2048 }
+ Constant [ integer AMQP_MULTIPLE ] { 4096 }
+ Constant [ integer AMQP_NOWAIT ] { 8192 }
+ Constant [ integer AMQP_REQUEUE ] { 16384 }
+ Constant [ string AMQP_EX_TYPE_DIRECT ] { direct }
+ Constant [ string AMQP_EX_TYPE_FANOUT ] { fanout }
+ Constant [ string AMQP_EX_TYPE_TOPIC ] { topic }
+ Constant [ string AMQP_EX_TYPE_HEADERS ] { headers }
+ Constant [ integer AMQP_OS_SOCKET_TIMEOUT_ERRNO ] { 536870923 }
+ Constant [ integer PHP_AMQP_MAX_CHANNELS ] { 256 }
+ }
+
+ - Classes [10] {
+ Class [ <internal:amqp> class AMQPConnection ] {
+
+ - Constants [0] {
+ }
+
+ - Static properties [0] {
+ }
+
+ - Static methods [0] {
+ }
+
+ - Properties [11] {
+ Property [ <default> private $login ]
+ Property [ <default> private $password ]
+ Property [ <default> private $host ]
+ Property [ <default> private $vhost ]
+ Property [ <default> private $port ]
+ Property [ <default> private $read_timeout ]
+ Property [ <default> private $write_timeout ]
+ Property [ <default> private $connect_timeout ]
+ Property [ <default> private $channel_max ]
+ Property [ <default> private $frame_max ]
+ Property [ <default> private $heartbeat ]
+ }
+
+ - Methods [29] {
+ Method [ <internal:amqp, ctor> public method __construct ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <optional> array $credentials ]
+ }
+ }
+
+ Method [ <internal:amqp> public method isConnected ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:amqp> public method connect ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:amqp> public method pconnect ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:amqp> public method pdisconnect ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:amqp> public method disconnect ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:amqp> public method reconnect ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:amqp> public method preconnect ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:amqp> public method getLogin ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:amqp> public method setLogin ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $login ]
+ }
+ }
+
+ Method [ <internal:amqp> public method getPassword ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:amqp> public method setPassword ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $password ]
+ }
+ }
+
+ Method [ <internal:amqp> public method getHost ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:amqp> public method setHost ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $host ]
+ }
+ }
+
+ Method [ <internal:amqp> public method getPort ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:amqp> public method setPort ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $port ]
+ }
+ }
+
+ Method [ <internal:amqp> public method getVhost ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:amqp> public method setVhost ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $vhost ]
+ }
+ }
+
+ Method [ <internal:amqp> public method getTimeout ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:amqp> public method setTimeout ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $timeout ]
+ }
+ }
+
+ Method [ <internal:amqp> public method getReadTimeout ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:amqp> public method setReadTimeout ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $timeout ]
+ }
+ }
+
+ Method [ <internal:amqp> public method getWriteTimeout ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:amqp> public method setWriteTimeout ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $timeout ]
+ }
+ }
+
+ Method [ <internal:amqp> public method getUsedChannels ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:amqp> public method getMaxChannels ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:amqp> public method isPersistent ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:amqp> public method getHeartbeatInterval ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:amqp> public method getMaxFrameSize ] {
+
+ - Parameters [0] {
+ }
+ }
+ }
+ }
+
+ Class [ <internal:amqp> class AMQPChannel ] {
+
+ - Constants [0] {
+ }
+
+ - Static properties [0] {
+ }
+
+ - Static methods [0] {
+ }
+
+ - Properties [3] {
+ Property [ <default> private $connection ]
+ Property [ <default> private $prefetch_count ]
+ Property [ <default> private $prefetch_size ]
+ }
+
+ - Methods [13] {
+ Method [ <internal:amqp, ctor> public method __construct ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> AMQPConnection $amqp_connection ]
+ }
+ }
+
+ Method [ <internal:amqp> public method isConnected ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:amqp> public method getChannelId ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:amqp> public method setPrefetchSize ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $size ]
+ }
+ }
+
+ Method [ <internal:amqp> public method getPrefetchSize ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:amqp> public method setPrefetchCount ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $count ]
+ }
+ }
+
+ Method [ <internal:amqp> public method getPrefetchCount ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:amqp> public method qos ] {
+
+ - Parameters [2] {
+ Parameter #0 [ <required> $size ]
+ Parameter #1 [ <required> $count ]
+ }
+ }
+
+ Method [ <internal:amqp> public method startTransaction ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:amqp> public method commitTransaction ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:amqp> public method rollbackTransaction ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:amqp> public method getConnection ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:amqp> public method basicRecover ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <optional> $requeue ]
+ }
+ }
+ }
+ }
+
+ Class [ <internal:amqp> class AMQPQueue ] {
+
+ - Constants [0] {
+ }
+
+ - Static properties [0] {
+ }
+
+ - Static methods [0] {
+ }
+
+ - Properties [9] {
+ Property [ <default> private $connection ]
+ Property [ <default> private $channel ]
+ Property [ <default> private $name ]
+ Property [ <default> private $consumer_tag ]
+ Property [ <default> private $passive ]
+ Property [ <default> private $durable ]
+ Property [ <default> private $exclusive ]
+ Property [ <default> private $auto_delete ]
+ Property [ <default> private $arguments ]
+ }
+
+ - Methods [25] {
+ Method [ <internal:amqp, ctor> public method __construct ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> AMQPChannel $amqp_channel ]
+ }
+ }
+
+ Method [ <internal:amqp> public method getName ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:amqp> public method setName ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $queue_name ]
+ }
+ }
+
+ Method [ <internal:amqp> public method getFlags ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:amqp> public method setFlags ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $flags ]
+ }
+ }
+
+ Method [ <internal:amqp> public method getArgument ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $argument ]
+ }
+ }
+
+ Method [ <internal:amqp> public method getArguments ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:amqp> public method setArgument ] {
+
+ - Parameters [2] {
+ Parameter #0 [ <required> $key ]
+ Parameter #1 [ <required> $value ]
+ }
+ }
+
+ Method [ <internal:amqp> public method setArguments ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> array $arguments ]
+ }
+ }
+
+ Method [ <internal:amqp> public method hasArgument ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $key ]
+ }
+ }
+
+ Method [ <internal:amqp> public method declareQueue ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:amqp> public method bind ] {
+
+ - Parameters [3] {
+ Parameter #0 [ <required> $exchange_name ]
+ Parameter #1 [ <optional> $routing_key ]
+ Parameter #2 [ <optional> $arguments ]
+ }
+ }
+
+ Method [ <internal:amqp> public method get ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <optional> $flags ]
+ }
+ }
+
+ Method [ <internal:amqp> public method consume ] {
+
+ - Parameters [3] {
+ Parameter #0 [ <required> $callback ]
+ Parameter #1 [ <optional> $flags ]
+ Parameter #2 [ <optional> $consumer_tag ]
+ }
+ }
+
+ Method [ <internal:amqp> public method ack ] {
+
+ - Parameters [2] {
+ Parameter #0 [ <required> $delivery_tag ]
+ Parameter #1 [ <optional> $flags ]
+ }
+ }
+
+ Method [ <internal:amqp> public method nack ] {
+
+ - Parameters [2] {
+ Parameter #0 [ <required> $delivery_tag ]
+ Parameter #1 [ <optional> $flags ]
+ }
+ }
+
+ Method [ <internal:amqp> public method reject ] {
+
+ - Parameters [2] {
+ Parameter #0 [ <required> $delivery_tag ]
+ Parameter #1 [ <optional> $flags ]
+ }
+ }
+
+ Method [ <internal:amqp> public method purge ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:amqp> public method cancel ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <optional> $consumer_tag ]
+ }
+ }
+
+ Method [ <internal:amqp> public method delete ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <optional> $flags ]
+ }
+ }
+
+ Method [ <internal:amqp> public method unbind ] {
+
+ - Parameters [3] {
+ Parameter #0 [ <required> $exchange_name ]
+ Parameter #1 [ <optional> $routing_key ]
+ Parameter #2 [ <optional> $arguments ]
+ }
+ }
+
+ Method [ <internal:amqp> public method getChannel ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:amqp> public method getConnection ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:amqp> public method getConsumerTag ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal, deprecated:amqp> public method declare ] {
+
+ - Parameters [0] {
+ }
+ }
+ }
+ }
+
+ Class [ <internal:amqp> class AMQPExchange ] {
+
+ - Constants [0] {
+ }
+
+ - Static properties [0] {
+ }
+
+ - Static methods [0] {
+ }
+
+ - Properties [9] {
+ Property [ <default> private $connection ]
+ Property [ <default> private $channel ]
+ Property [ <default> private $name ]
+ Property [ <default> private $type ]
+ Property [ <default> private $passive ]
+ Property [ <default> private $durable ]
+ Property [ <default> private $auto_delete ]
+ Property [ <default> private $internal ]
+ Property [ <default> private $arguments ]
+ }
+
+ - Methods [20] {
+ Method [ <internal:amqp, ctor> public method __construct ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> AMQPChannel $amqp_channel ]
+ }
+ }
+
+ Method [ <internal:amqp> public method getName ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:amqp> public method setName ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $exchange_name ]
+ }
+ }
+
+ Method [ <internal:amqp> public method getFlags ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:amqp> public method setFlags ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $flags ]
+ }
+ }
+
+ Method [ <internal:amqp> public method getType ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:amqp> public method setType ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $exchange_type ]
+ }
+ }
+
+ Method [ <internal:amqp> public method getArgument ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $argument ]
+ }
+ }
+
+ Method [ <internal:amqp> public method getArguments ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:amqp> public method setArgument ] {
+
+ - Parameters [2] {
+ Parameter #0 [ <required> $key ]
+ Parameter #1 [ <required> $value ]
+ }
+ }
+
+ Method [ <internal:amqp> public method setArguments ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> array $arguments ]
+ }
+ }
+
+ Method [ <internal:amqp> public method hasArgument ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $argument ]
+ }
+ }
+
+ Method [ <internal:amqp> public method declareExchange ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:amqp> public method bind ] {
+
+ - Parameters [3] {
+ Parameter #0 [ <required> $exchange_name ]
+ Parameter #1 [ <required> $routing_key ]
+ Parameter #2 [ <optional> $flags ]
+ }
+ }
+
+ Method [ <internal:amqp> public method unbind ] {
+
+ - Parameters [3] {
+ Parameter #0 [ <required> $exchange_name ]
+ Parameter #1 [ <required> $routing_key ]
+ Parameter #2 [ <optional> $flags ]
+ }
+ }
+
+ Method [ <internal:amqp> public method delete ] {
+
+ - Parameters [2] {
+ Parameter #0 [ <optional> $exchange_name ]
+ Parameter #1 [ <optional> $flags ]
+ }
+ }
+
+ Method [ <internal:amqp> public method publish ] {
+
+ - Parameters [4] {
+ Parameter #0 [ <required> $message ]
+ Parameter #1 [ <optional> $routing_key ]
+ Parameter #2 [ <optional> $flags ]
+ Parameter #3 [ <optional> array $headers ]
+ }
+ }
+
+ Method [ <internal:amqp> public method getChannel ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:amqp> public method getConnection ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal, deprecated:amqp> public method declare ] {
+
+ - Parameters [0] {
+ }
+ }
+ }
+ }
+
+ Class [ <internal:amqp> class AMQPEnvelope ] {
+
+ - Constants [0] {
+ }
+
+ - Static properties [0] {
+ }
+
+ - Static methods [0] {
+ }
+
+ - Properties [18] {
+ Property [ <default> private $body ]
+ Property [ <default> private $delivery_tag ]
+ Property [ <default> private $is_redelivery ]
+ Property [ <default> private $exchange_name ]
+ Property [ <default> private $routing_key ]
+ Property [ <default> private $content_type ]
+ Property [ <default> private $content_encoding ]
+ Property [ <default> private $headers ]
+ Property [ <default> private $delivery_mode ]
+ Property [ <default> private $priority ]
+ Property [ <default> private $correlation_id ]
+ Property [ <default> private $reply_to ]
+ Property [ <default> private $expiration ]
+ Property [ <default> private $message_id ]
+ Property [ <default> private $timestamp ]
+ Property [ <default> private $type ]
+ Property [ <default> private $user_id ]
+ Property [ <default> private $app_id ]
+ }
+
+ - Methods [21] {
+ Method [ <internal:amqp, ctor> public method __construct ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:amqp> public method getBody ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:amqp> public method getRoutingKey ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:amqp> public method getDeliveryTag ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:amqp> public method getDeliveryMode ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:amqp> public method getExchangeName ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:amqp> public method isRedelivery ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:amqp> public method getContentType ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:amqp> public method getContentEncoding ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:amqp> public method getType ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:amqp> public method getTimestamp ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:amqp> public method getPriority ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:amqp> public method getExpiration ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:amqp> public method getUserId ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:amqp> public method getAppId ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:amqp> public method getMessageId ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:amqp> public method getReplyTo ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:amqp> public method getCorrelationId ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:amqp> public method getHeaders ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:amqp> public method getHeader ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $name ]
+ }
+ }
+
+ Method [ <internal:amqp> public method hasHeader ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $name ]
+ }
+ }
+ }
+ }
+
+ Class [ <internal:amqp> class AMQPException extends Exception implements Throwable ] {
+
+ - Constants [0] {
+ }
+
+ - Static properties [0] {
+ }
+
+ - Static methods [0] {
+ }
+
+ - Properties [4] {
+ Property [ <default> protected $message ]
+ Property [ <default> protected $code ]
+ Property [ <default> protected $file ]
+ Property [ <default> protected $line ]
+ }
+
+ - Methods [10] {
+ Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
+
+ - Parameters [3] {
+ Parameter #0 [ <optional> $message ]
+ Parameter #1 [ <optional> $code ]
+ Parameter #2 [ <optional> $previous ]
+ }
+ }
+
+ Method [ <internal:Core, inherits Exception> public method __wakeup ] {
+ }
+
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getMessage ] {
+ }
+
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getCode ] {
+ }
+
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getFile ] {
+ }
+
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getLine ] {
+ }
+
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTrace ] {
+ }
+
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getPrevious ] {
+ }
+
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTraceAsString ] {
+ }
+
+ Method [ <internal:Core, inherits Exception, prototype Throwable> public method __toString ] {
+ }
+ }
+ }
+
+ Class [ <internal:amqp> class AMQPConnectionException extends AMQPException implements Throwable ] {
+
+ - Constants [0] {
+ }
+
+ - Static properties [0] {
+ }
+
+ - Static methods [0] {
+ }
+
+ - Properties [4] {
+ Property [ <default> protected $message ]
+ Property [ <default> protected $code ]
+ Property [ <default> protected $file ]
+ Property [ <default> protected $line ]
+ }
+
+ - Methods [10] {
+ Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
+
+ - Parameters [3] {
+ Parameter #0 [ <optional> $message ]
+ Parameter #1 [ <optional> $code ]
+ Parameter #2 [ <optional> $previous ]
+ }
+ }
+
+ Method [ <internal:Core, inherits Exception> public method __wakeup ] {
+ }
+
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getMessage ] {
+ }
+
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getCode ] {
+ }
+
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getFile ] {
+ }
+
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getLine ] {
+ }
+
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTrace ] {
+ }
+
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getPrevious ] {
+ }
+
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTraceAsString ] {
+ }
+
+ Method [ <internal:Core, inherits Exception, prototype Throwable> public method __toString ] {
+ }
+ }
+ }
+
+ Class [ <internal:amqp> class AMQPChannelException extends AMQPException implements Throwable ] {
+
+ - Constants [0] {
+ }
+
+ - Static properties [0] {
+ }
+
+ - Static methods [0] {
+ }
+
+ - Properties [4] {
+ Property [ <default> protected $message ]
+ Property [ <default> protected $code ]
+ Property [ <default> protected $file ]
+ Property [ <default> protected $line ]
+ }
+
+ - Methods [10] {
+ Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
+
+ - Parameters [3] {
+ Parameter #0 [ <optional> $message ]
+ Parameter #1 [ <optional> $code ]
+ Parameter #2 [ <optional> $previous ]
+ }
+ }
+
+ Method [ <internal:Core, inherits Exception> public method __wakeup ] {
+ }
+
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getMessage ] {
+ }
+
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getCode ] {
+ }
+
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getFile ] {
+ }
+
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getLine ] {
+ }
+
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTrace ] {
+ }
+
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getPrevious ] {
+ }
+
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTraceAsString ] {
+ }
+
+ Method [ <internal:Core, inherits Exception, prototype Throwable> public method __toString ] {
+ }
+ }
+ }
+
+ Class [ <internal:amqp> class AMQPQueueException extends AMQPException implements Throwable ] {
+
+ - Constants [0] {
+ }
+
+ - Static properties [0] {
+ }
+
+ - Static methods [0] {
+ }
+
+ - Properties [4] {
+ Property [ <default> protected $message ]
+ Property [ <default> protected $code ]
+ Property [ <default> protected $file ]
+ Property [ <default> protected $line ]
+ }
+
+ - Methods [10] {
+ Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
+
+ - Parameters [3] {
+ Parameter #0 [ <optional> $message ]
+ Parameter #1 [ <optional> $code ]
+ Parameter #2 [ <optional> $previous ]
+ }
+ }
+
+ Method [ <internal:Core, inherits Exception> public method __wakeup ] {
+ }
+
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getMessage ] {
+ }
+
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getCode ] {
+ }
+
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getFile ] {
+ }
+
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getLine ] {
+ }
+
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTrace ] {
+ }
+
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getPrevious ] {
+ }
+
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTraceAsString ] {
+ }
+
+ Method [ <internal:Core, inherits Exception, prototype Throwable> public method __toString ] {
+ }
+ }
+ }
+
+ Class [ <internal:amqp> class AMQPExchangeException extends AMQPException implements Throwable ] {
+
+ - Constants [0] {
+ }
+
+ - Static properties [0] {
+ }
+
+ - Static methods [0] {
+ }
+
+ - Properties [4] {
+ Property [ <default> protected $message ]
+ Property [ <default> protected $code ]
+ Property [ <default> protected $file ]
+ Property [ <default> protected $line ]
+ }
+
+ - Methods [10] {
+ Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
+
+ - Parameters [3] {
+ Parameter #0 [ <optional> $message ]
+ Parameter #1 [ <optional> $code ]
+ Parameter #2 [ <optional> $previous ]
+ }
+ }
+
+ Method [ <internal:Core, inherits Exception> public method __wakeup ] {
+ }
+
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getMessage ] {
+ }
+
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getCode ] {
+ }
+
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getFile ] {
+ }
+
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getLine ] {
+ }
+
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTrace ] {
+ }
+
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getPrevious ] {
+ }
+
+ Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTraceAsString ] {
+ }
+
+ Method [ <internal:Core, inherits Exception, prototype Throwable> public method __toString ] {
+ }
+ }
+ }
+ }
+}
+
diff --git a/php-pecl-amqp-dev.spec b/php-pecl-amqp-dev.spec
new file mode 100644
index 0000000..908a494
--- /dev/null
+++ b/php-pecl-amqp-dev.spec
@@ -0,0 +1,410 @@
+# remirepo spec file for php-pecl-amqp
+# with SCL compatibility, from:
+#
+# Fedora spec file for php-pecl-amqp
+#
+# Copyright (c) 2012-2016 Remi Collet
+# License: CC-BY-SA
+# http://creativecommons.org/licenses/by-sa/4.0/
+#
+# Please, preserve the changelog entries
+#
+%if 0%{?scl:1}
+%if "%{scl}" == "rh-php56"
+%global sub_prefix more-php56-
+%else
+%global sub_prefix %{scl_prefix}
+%endif
+%scl_package php-pecl-amqp
+%endif
+
+%global with_zts 0%{!?_without_zts:%{?__ztsphp:1}}
+%global with_tests 0%{?_with_tests:1}
+%global pecl_name amqp
+%if "%{php_version}" < "5.6"
+%global ini_name %{pecl_name}.ini
+%else
+%global ini_name 40-%{pecl_name}.ini
+%endif
+
+Summary: Communicate with any AMQP compliant server
+Name: %{?sub_prefix}php-pecl-amqp
+Version: 1.7.1
+Release: 2%{?dist}%{!?scl:%{!?nophptag:%(%{__php} -r 'echo ".".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')}}
+License: PHP
+Group: Development/Languages
+URL: http://pecl.php.net/package/amqp
+Source0: http://pecl.php.net/get/%{pecl_name}-%{version}%{?prever}.tgz
+
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
+BuildRequires: %{?scl_prefix}php-devel > 5.3.0
+BuildRequires: %{?scl_prefix}php-pear
+%if "%{?vendor}" == "Remi Collet"
+# Upstream requires 0.5.2, set 0.8.0 to ensure "last" is used.
+BuildRequires: librabbitmq-devel >= 0.8.0
+%else
+BuildRequires: librabbitmq-devel >= 0.5.2
+%endif
+%if %{with_tests}
+BuildRequires: rabbitmq-server
+%endif
+
+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 "%{?vendor}" == "Remi Collet" && 0%{!?scl:1}
+# Other third party repo stuff
+Obsoletes: php53-pecl-%{pecl_name} <= %{version}
+Obsoletes: php53u-pecl-%{pecl_name} <= %{version}
+Obsoletes: php54-pecl-%{pecl_name} <= %{version}
+Obsoletes: php54w-pecl-%{pecl_name} <= %{version}
+%if "%{php_version}" > "5.5"
+Obsoletes: php55u-pecl-%{pecl_name} <= %{version}
+Obsoletes: php55w-pecl-%{pecl_name} <= %{version}
+%endif
+%if "%{php_version}" > "5.6"
+Obsoletes: php56u-pecl-%{pecl_name} <= %{version}
+Obsoletes: php56w-pecl-%{pecl_name} <= %{version}
+%endif
+%if "%{php_version}" > "7.0"
+Obsoletes: php70u-pecl-%{pecl_name} <= %{version}
+Obsoletes: php70w-pecl-%{pecl_name} <= %{version}
+%endif
+%if "%{php_version}" > "7.1"
+Obsoletes: php71u-pecl-%{pecl_name} <= %{version}
+Obsoletes: php71w-pecl-%{pecl_name} <= %{version}
+%endif
+%endif
+
+%if 0%{?fedora} < 20 && 0%{?rhel} < 7
+# filter private shared
+%{?filter_provides_in: %filter_provides_in %{_libdir}/.*\.so$}
+%{?filter_setup}
+%endif
+
+
+%description
+This extension can communicate with any AMQP spec 0-9-1 compatible server,
+such as RabbitMQ, OpenAMQP and Qpid, giving you the ability to create and
+delete exchanges and queues, as well as publish to any exchange and consume
+from any queue.
+
+Package built for PHP %(%{__php} -r 'echo PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')%{?scl: as Software Collection (%{scl} by %{?scl_vendor}%{!?scl_vendor:rh})}.
+
+
+%prep
+%setup -q -c
+
+# Don't install/register tests
+sed -e 's/role="test"/role="src"/' \
+ %{?_licensedir:-e '/LICENSE/s/role="doc"/role="src"/' } \
+ -i package.xml
+
+mv %{pecl_name}-%{version}%{?prever} NTS
+cd NTS
+sed -e 's/CFLAGS="-I/CFLAGS="-fPIC -I/' -i config.m4
+
+# Upstream often forget to change this
+extver=$(sed -n '/#define PHP_AMQP_VERSION/{s/.* "//;s/".*$//;p}' php_amqp.h)
+if test "x${extver}" != "x%{version}%{?prever}"; then
+ : Error: Upstream version is ${extver}, expecting %{version}%{?prever}.
+ exit 1
+fi
+cd ..
+
+cat > %{ini_name} << 'EOF'
+; Enable %{pecl_name} extension module
+extension = %{pecl_name}.so
+
+; Whether calls to AMQPQueue::get() and AMQPQueue::consume()
+; should require that the client explicitly acknowledge messages.
+; Setting this value to 1 will pass in the AMQP_AUTOACK flag to
+; the above method calls if the flags field is omitted.
+;amqp.auto_ack = 0
+
+; The host to which to connect.
+;amqp.host = localhost
+
+; The login to use while connecting to the broker.
+;amqp.login = guest
+
+; The password to use while connecting to the broker.
+;amqp.password = guest
+
+; The port on which to connect.
+;amqp.port = 5672
+
+; The number of messages to prefect from the server during a
+; call to AMQPQueue::get() or AMQPQueue::consume() during which
+; the AMQP_AUTOACK flag is not set.
+;amqp.prefetch_count = 3
+
+; The virtual host on the broker to which to connect.
+;amqp.vhost = /
+
+; Timeout
+;amqp.timeout =
+;amqp.read_timeout = 0
+;amqp.write_timeout = 0
+;amqp.connect_timeout = 0
+
+;amqp.channel_max = 256
+;amqp.frame_max = 131072
+;amqp.heartbeat = 0
+EOF
+
+%if %{with_zts}
+cp -pr NTS ZTS
+%endif
+
+
+%build
+cd NTS
+%{_bindir}/phpize
+%configure --with-php-config=%{_bindir}/php-config
+make %{?_smp_mflags}
+
+%if %{with_zts}
+cd ../ZTS
+%{_bindir}/zts-phpize
+%configure --with-php-config=%{_bindir}/zts-php-config
+make %{?_smp_mflags}
+%endif
+
+
+%install
+rm -rf %{buildroot}
+make -C NTS install INSTALL_ROOT=%{buildroot}
+
+# Drop in the bit of configuration
+install -Dpm 644 %{ini_name} %{buildroot}%{php_inidir}/%{ini_name}
+
+# Install XML package description
+install -Dpm 644 package.xml %{buildroot}%{pecl_xmldir}/%{name}.xml
+
+%if %{with_zts}
+make -C ZTS install INSTALL_ROOT=%{buildroot}
+install -Dpm 644 %{ini_name} %{buildroot}%{php_ztsinidir}/%{ini_name}
+%endif
+
+# Documentation
+cd NTS
+for i in $(grep 'role="doc"' ../package.xml | sed -e 's/^.*name="//;s/".*$//')
+do install -Dpm 644 $i %{buildroot}%{pecl_docdir}/%{pecl_name}/$i
+done
+
+
+%check
+: Minimal load test for NTS extension
+%{__php} --no-php-ini \
+ --define extension=NTS/modules/%{pecl_name}.so \
+ -m | grep %{pecl_name}
+
+%if %{with_zts}
+: Minimal load test for ZTS extension
+%{__ztsphp} --no-php-ini \
+ --define extension=ZTS/modules/%{pecl_name}.so \
+ -m | grep %{pecl_name}
+%endif
+
+%if %{with_tests}
+mkdir log run base
+: Launch the RabbitMQ service
+export RABBITMQ_PID_FILE=$PWD/run/pid
+export RABBITMQ_LOG_BASE=$PWD/log
+export RABBITMQ_MNESIA_BASE=$PWD/base
+/usr/lib/rabbitmq/bin/rabbitmq-server &>log/output &
+/usr/lib/rabbitmq/bin/rabbitmqctl wait $RABBITMQ_PID_FILE
+
+ret=0
+pushd NTS
+: Run the upstream test Suite for NTS extension
+TEST_PHP_EXECUTABLE=%{__php} \
+TEST_PHP_ARGS="-n -d extension=$PWD/modules/%{pecl_name}.so" \
+NO_INTERACTION=1 \
+REPORT_EXIT_STATUS=1 \
+%{__php} -n run-tests.php --show-diff || ret=1
+popd
+
+%if %{with_zts}
+pushd ZTS
+: Run the upstream test Suite for ZTS extension
+TEST_PHP_EXECUTABLE=%{__ztsphp} \
+TEST_PHP_ARGS="-n -d extension=$PWD/modules/%{pecl_name}.so" \
+NO_INTERACTION=1 \
+REPORT_EXIT_STATUS=1 \
+%{__ztsphp} -n run-tests.php --show-diff || ret=1
+popd
+%endif
+
+: Cleanup
+if [ -s $RABBITMQ_PID_FILE ]; then
+ kill $(cat $RABBITMQ_PID_FILE)
+fi
+rm -rf log run base
+
+exit $ret
+%endif
+
+
+%clean
+rm -rf %{buildroot}
+
+
+%if 0%{?fedora} < 24
+# when pear installed alone, after us
+%triggerin -- %{?scl_prefix}php-pear
+if [ -x %{__pecl} ] ; then
+ %{pecl_install} %{pecl_xmldir}/%{name}.xml >/dev/null || :
+fi
+
+# posttrans as pear can be installed after us
+%posttrans
+if [ -x %{__pecl} ] ; then
+ %{pecl_install} %{pecl_xmldir}/%{name}.xml >/dev/null || :
+fi
+
+%postun
+if [ $1 -eq 0 -a -x %{__pecl} ] ; then
+ %{pecl_uninstall} %{pecl_name} >/dev/null || :
+fi
+%endif
+
+
+%files
+%defattr(-,root,root,-)
+%{?_licensedir:%license NTS/LICENSE}
+%doc %{pecl_docdir}/%{pecl_name}
+%{pecl_xmldir}/%{name}.xml
+
+%config(noreplace) %{php_inidir}/%{ini_name}
+%{php_extdir}/%{pecl_name}.so
+
+%if %{with_zts}
+%config(noreplace) %{php_ztsinidir}/%{ini_name}
+%{php_ztsextdir}/%{pecl_name}.so
+%endif
+
+
+%changelog
+* Wed Sep 14 2016 Remi Collet <remi@fedoraproject.org> - 1.7.1-2
+- rebuild for PHP 7.1 new API version
+
+* Sun Jul 10 2016 Remi Collet <remi@fedoraproject.org> - 1.7.1-1
+- Update to 1.7.1 (php 5 and 7, stable)
+
+* Tue Apr 26 2016 Remi Collet <remi@fedoraproject.org> - 1.7.0-1
+- update to 1.7.0 (php 5 and 7, stable)
+
+* Fri Mar 4 2016 Remi Collet <remi@fedoraproject.org> - 1.7.0-0.3.alpha2
+- adapt for F24
+
+* Sat Dec 26 2015 Remi Collet <remi@fedoraproject.org> - 1.7.0-0.2.alpha2
+- update to 1.7.0alpha2
+
+* Thu Nov 12 2015 Remi Collet <remi@fedoraproject.org> - 1.7.0-0.1.alpha1
+- update to 1.7.0alpha1
+
+* Tue Nov 3 2015 Remi Collet <remi@fedoraproject.org> - 1.6.0-2
+- update to 1.6.0 (stable)
+- fix typo in config file
+
+* Fri Sep 18 2015 Remi Collet <remi@fedoraproject.org> - 1.6.0-0.4.beta4
+- open https://github.com/pdezwart/php-amqp/pull/178 - librabbitmq 0.5
+- open https://github.com/pdezwart/php-amqp/pull/179 --with-libdir
+
+* Fri Sep 18 2015 Remi Collet <remi@fedoraproject.org> - 1.6.0-0.3.beta4
+- update to 1.6.0beta4
+
+* Fri Jun 19 2015 Remi Collet <remi@fedoraproject.org> - 1.6.0-0.2.beta3
+- allow build against rh-php56 (as more-php56)
+
+* Mon Apr 20 2015 Remi Collet <remi@fedoraproject.org> - 1.6.0-0.1.beta3
+- update to 1.6.0beta3
+- drop runtime dependency on pear, new scriptlets
+- don't install/register tests
+
+* Wed Dec 24 2014 Remi Collet <remi@fedoraproject.org> - 1.4.0-1.1
+- Fedora 21 SCL mass rebuild
+
+* Mon Aug 25 2014 Remi Collet <rcollet@redhat.com> - 1.4.0-1
+- improve SCL build
+
+* Tue Apr 15 2014 Remi Collet <remi@fedoraproject.org> - 1.4.0-1
+- update to 1.6.0 (stable)
+
+* Wed Apr 9 2014 Remi Collet <remi@fedoraproject.org> - 1.4.0-0.3.beta2
+- add numerical prefix to extension configuration file
+
+* Sun Mar 9 2014 Remi Collet <remi@fedoraproject.org> - 1.4.0-0.2.beta2
+- update to 1.4.0beta2
+
+* Thu Jan 16 2014 Remi Collet <remi@fedoraproject.org> - 1.4.0-0.1.beta1
+- update to 1.4.0beta1
+- adapt for SCL
+
+* Mon Nov 25 2013 Remi Collet <remi@fedoraproject.org> - 1.3.0-1
+- update to 1.3.0 (beta)
+- cleanups for Copr
+- install doc in pecl doc_dir
+- install tests in pecl test_dir (in devel)
+- add --with tests option to run upstream tests during build
+
+* Sat Sep 28 2013 Remi Collet <remi@fedoraproject.org> - 1.2.0-2
+- rebuild with librabbitmq 0.4.1
+
+* Thu May 30 2013 Remi Collet <remi@fedoraproject.org> - 1.2.0-1
+- Update to 1.2.0 (stable)
+
+* Fri Apr 19 2013 Remi Collet <remi@fedoraproject.org> - 1.0.10-1
+- Update to 1.0.10 (stable)
+
+* Wed Mar 13 2013 Remi Collet <remi@fedoraproject.org> - 1.0.9-3
+- rebuild for new librabbitmq
+
+* Tue Nov 13 2012 Remi Collet <remi@fedoraproject.org> - 1.0.9-1
+- update to 1.0.9 (stable)
+
+* Mon Nov 12 2012 Remi Collet <remi@fedoraproject.org> - 1.0.8-1
+- update to 1.0.8 (stable)
+- build ZTS extension
+- also provides php-amqp
+
+* Wed Sep 12 2012 Remi Collet <remi@fedoraproject.org> - 1.0.7-1
+- update to 1.0.7 (stable)
+- cleanups
+
+* Mon Aug 27 2012 Remi Collet <remi@fedoraproject.org> - 1.0.5-1
+- update to 1.0.5
+- LICENSE now provided in upstream tarball
+
+* Wed Aug 01 2012 Remi Collet <remi@fedoraproject.org> - 1.0.4-1
+- update to 1.0.4
+
+* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.3-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
+
+* Sat May 19 2012 Remi Collet <remi@fedoraproject.org> - 1.0.3-1
+- update to 1.0.3
+- add extension version check (and fix)
+
+* Mon Mar 19 2012 Remi Collet <remi@fedoraproject.org> - 1.0.1-3
+- clean EL-5 stuff as requires php 5.2.0, https://bugs.php.net/61351
+
+* Sat Mar 10 2012 Remi Collet <remi@fedoraproject.org> - 1.0.1-2
+- rebuild for PHP 5.4
+
+* Sat Mar 10 2012 Remi Collet <remi@fedoraproject.org> - 1.0.1-1
+- Initial RPM release without ZTS extension
+- open request for LICENSE file https://bugs.php.net/61337
+