From d0f530e25ede4b46fe53d49b106b9ac59f3c38b7 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 23 Nov 2016 06:55:12 +0100 Subject: php-tarantool: rename the spec --- REFLECTION-PHP7 | 445 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 445 insertions(+) create mode 100644 REFLECTION-PHP7 (limited to 'REFLECTION-PHP7') diff --git a/REFLECTION-PHP7 b/REFLECTION-PHP7 new file mode 100644 index 0000000..3145162 --- /dev/null +++ b/REFLECTION-PHP7 @@ -0,0 +1,445 @@ +Extension [ extension #125 tarantool version 0.1.0 ] { + + - INI { + Entry [ tarantool.persistent ] + Current = '0' + } + Entry [ tarantool.use_namespace ] + Current = '0' + } + Entry [ tarantool.connection_alias ] + Current = '0' + } + Entry [ tarantool.timeout ] + Current = '10.0' + } + Entry [ tarantool.request_timeout ] + Current = '10.0' + } + Entry [ tarantool.retry_count ] + Current = '1' + } + Entry [ tarantool.retry_sleep ] + Current = '0.1' + } + } + + - Constants [12] { + Constant [ integer TARANTOOL_ITER_EQ ] { 0 } + Constant [ integer TARANTOOL_ITER_REQ ] { 1 } + Constant [ integer TARANTOOL_ITER_ALL ] { 2 } + Constant [ integer TARANTOOL_ITER_LT ] { 3 } + Constant [ integer TARANTOOL_ITER_LE ] { 4 } + Constant [ integer TARANTOOL_ITER_GE ] { 5 } + Constant [ integer TARANTOOL_ITER_GT ] { 6 } + Constant [ integer TARANTOOL_ITER_BITSET_ALL_SET ] { 7 } + Constant [ integer TARANTOOL_ITER_BITSET_ANY_SET ] { 8 } + Constant [ integer TARANTOOL_ITER_BITSET_ALL_NOT_SET ] { 9 } + Constant [ integer TARANTOOL_ITER_OVERLAPS ] { 10 } + Constant [ integer TARANTOOL_ITER_NEIGHBOR ] { 11 } + } + + - Classes [5] { + Class [ class Tarantool ] { + + - Constants [15] { + Constant [ integer ITERATOR_EQ ] { 0 } + Constant [ integer ITERATOR_REQ ] { 1 } + Constant [ integer ITERATOR_ALL ] { 2 } + Constant [ integer ITERATOR_LT ] { 3 } + Constant [ integer ITERATOR_LE ] { 4 } + Constant [ integer ITERATOR_GE ] { 5 } + Constant [ integer ITERATOR_GT ] { 6 } + Constant [ integer ITERATOR_BITS_ALL_SET ] { 7 } + Constant [ integer ITERATOR_BITSET_ALL_SET ] { 7 } + Constant [ integer ITERATOR_BITS_ANY_SET ] { 8 } + Constant [ integer ITERATOR_BITSET_ANY_SET ] { 8 } + Constant [ integer ITERATOR_BITS_ALL_NOT_SET ] { 9 } + Constant [ integer ITERATOR_BITSET_ALL_NOT_SET ] { 9 } + Constant [ integer ITERATOR_OVERLAPS ] { 10 } + Constant [ integer ITERATOR_NEIGHBOR ] { 11 } + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [18] { + Method [ public method __construct ] { + + - Parameters [5] { + Parameter #0 [ $host ] + Parameter #1 [ $port ] + Parameter #2 [ $login ] + Parameter #3 [ $password ] + Parameter #4 [ $persistent_id ] + } + } + + Method [ public method connect ] { + + - Parameters [0] { + } + } + + Method [ public method reconnect ] { + + - Parameters [0] { + } + } + + Method [ public method close ] { + + - Parameters [0] { + } + } + + Method [ public method flush_schema ] { + + - Parameters [0] { + } + } + + Method [ public method authenticate ] { + + - Parameters [2] { + Parameter #0 [ $login ] + Parameter #1 [ $password ] + } + } + + Method [ public method ping ] { + + - Parameters [0] { + } + } + + Method [ public method select ] { + + - Parameters [6] { + Parameter #0 [ $space ] + Parameter #1 [ $key ] + Parameter #2 [ $index ] + Parameter #3 [ $limit ] + Parameter #4 [ $offset ] + Parameter #5 [ $iterator ] + } + } + + Method [ public method insert ] { + + - Parameters [2] { + Parameter #0 [ $space ] + Parameter #1 [ array $tuple ] + } + } + + Method [ public method replace ] { + + - Parameters [2] { + Parameter #0 [ $space ] + Parameter #1 [ array $tuple ] + } + } + + Method [ public method call ] { + + - Parameters [2] { + Parameter #0 [ $proc ] + Parameter #1 [ $tuple ] + } + } + + Method [ public method eval ] { + + - Parameters [2] { + Parameter #0 [ $proc ] + Parameter #1 [ $tuple ] + } + } + + Method [ public method delete ] { + + - Parameters [3] { + Parameter #0 [ $space ] + Parameter #1 [ $key ] + Parameter #2 [ $index ] + } + } + + Method [ public method update ] { + + - Parameters [4] { + Parameter #0 [ $space ] + Parameter #1 [ $key ] + Parameter #2 [ array $args ] + Parameter #3 [ $index ] + } + } + + Method [ public method upsert ] { + + - Parameters [3] { + Parameter #0 [ $space ] + Parameter #1 [ array $tuple ] + Parameter #2 [ array $args ] + } + } + + Method [ public method evaluate ] { + + - Parameters [2] { + Parameter #0 [ $proc ] + Parameter #1 [ $tuple ] + } + } + + Method [ public method flushSchema ] { + + - Parameters [0] { + } + } + + Method [ public method disconnect ] { + + - Parameters [0] { + } + } + } + } + + Class [ class TarantoolException extends Exception implements Throwable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ protected $message ] + Property [ protected $code ] + Property [ protected $file ] + Property [ protected $line ] + } + + - Methods [10] { + Method [ method __construct ] { + + - Parameters [3] { + Parameter #0 [ $message ] + Parameter #1 [ $code ] + Parameter #2 [ $previous ] + } + } + + Method [ public method __wakeup ] { + } + + Method [ final public method getMessage ] { + } + + Method [ final public method getCode ] { + } + + Method [ final public method getFile ] { + } + + Method [ final public method getLine ] { + } + + Method [ final public method getTrace ] { + } + + Method [ final public method getPrevious ] { + } + + Method [ final public method getTraceAsString ] { + } + + Method [ public method __toString ] { + } + } + } + + Class [ class TarantoolIOException extends TarantoolException implements Throwable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ protected $message ] + Property [ protected $code ] + Property [ protected $file ] + Property [ protected $line ] + } + + - Methods [10] { + Method [ method __construct ] { + + - Parameters [3] { + Parameter #0 [ $message ] + Parameter #1 [ $code ] + Parameter #2 [ $previous ] + } + } + + Method [ public method __wakeup ] { + } + + Method [ final public method getMessage ] { + } + + Method [ final public method getCode ] { + } + + Method [ final public method getFile ] { + } + + Method [ final public method getLine ] { + } + + Method [ final public method getTrace ] { + } + + Method [ final public method getPrevious ] { + } + + Method [ final public method getTraceAsString ] { + } + + Method [ public method __toString ] { + } + } + } + + Class [ class TarantoolClientError extends TarantoolException implements Throwable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ protected $message ] + Property [ protected $code ] + Property [ protected $file ] + Property [ protected $line ] + } + + - Methods [10] { + Method [ method __construct ] { + + - Parameters [3] { + Parameter #0 [ $message ] + Parameter #1 [ $code ] + Parameter #2 [ $previous ] + } + } + + Method [ public method __wakeup ] { + } + + Method [ final public method getMessage ] { + } + + Method [ final public method getCode ] { + } + + Method [ final public method getFile ] { + } + + Method [ final public method getLine ] { + } + + Method [ final public method getTrace ] { + } + + Method [ final public method getPrevious ] { + } + + Method [ final public method getTraceAsString ] { + } + + Method [ public method __toString ] { + } + } + } + + Class [ class TarantoolParsingException extends TarantoolException implements Throwable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ protected $message ] + Property [ protected $code ] + Property [ protected $file ] + Property [ protected $line ] + } + + - Methods [10] { + Method [ method __construct ] { + + - Parameters [3] { + Parameter #0 [ $message ] + Parameter #1 [ $code ] + Parameter #2 [ $previous ] + } + } + + Method [ public method __wakeup ] { + } + + Method [ final public method getMessage ] { + } + + Method [ final public method getCode ] { + } + + Method [ final public method getFile ] { + } + + Method [ final public method getLine ] { + } + + Method [ final public method getTrace ] { + } + + Method [ final public method getPrevious ] { + } + + Method [ final public method getTraceAsString ] { + } + + Method [ public method __toString ] { + } + } + } + } +} + -- cgit