From 4f8a0b41d3890d3d95bea0e508d45a711f3f061a Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 13 Aug 2025 06:43:05 +0200 Subject: update to 0.15.0 drop patch merged upstream --- REFLECTION | 218 ++++++++++++++++++++++++++++++++++++++++++++++++------------- 1 file changed, 172 insertions(+), 46 deletions(-) (limited to 'REFLECTION') diff --git a/REFLECTION b/REFLECTION index d6b83f4..f81548c 100644 --- a/REFLECTION +++ b/REFLECTION @@ -1,4 +1,4 @@ -Extension [ extension #114 zstd version 0.14.0 ] { +Extension [ extension #129 zstd version 0.15.0 ] { - Dependencies { Dependency [ apcu (Optional) ] @@ -9,7 +9,7 @@ Extension [ extension #114 zstd version 0.14.0 ] { Current = '0' } Entry [ zstd.output_compression_level ] - Current = '-1' + Current = '3' } Entry [ zstd.output_compression_dict ] Current = '' @@ -20,136 +20,224 @@ Extension [ extension #114 zstd version 0.14.0 ] { Constant [ int ZSTD_COMPRESS_LEVEL_MIN ] { 1 } Constant [ int ZSTD_COMPRESS_LEVEL_MAX ] { 22 } Constant [ int ZSTD_COMPRESS_LEVEL_DEFAULT ] { 3 } - Constant [ int LIBZSTD_VERSION_NUMBER ] { 10506 } - Constant [ string LIBZSTD_VERSION_STRING ] { 1.5.6 } + Constant [ int ZSTD_VERSION_NUMBER ] { 10507 } + Constant [ string ZSTD_VERSION_TEXT ] { 1.5.7 } } - Functions { Function [ function zstd_compress ] { - - Parameters [2] { - Parameter #0 [ $data ] - Parameter #1 [ $level = ] + - Parameters [3] { + Parameter #0 [ string $data ] + Parameter #1 [ int $level = ZSTD_COMPRESS_LEVEL_DEFAULT ] + Parameter #2 [ ?string $dict = null ] } + - Return [ string|false ] } Function [ function zstd_uncompress ] { - - Parameters [1] { - Parameter #0 [ $data ] + - Parameters [2] { + Parameter #0 [ string $data ] + Parameter #1 [ ?string $dict = null ] } + - Return [ string|false ] } Function [ function zstd_decompress ] { - - Parameters [1] { - Parameter #0 [ $data ] + - Parameters [2] { + Parameter #0 [ string $data ] + Parameter #1 [ ?string $dict = null ] } + - Return [ string|false ] } Function [ function zstd_compress_dict ] { - Parameters [3] { - Parameter #0 [ $data ] - Parameter #1 [ $dictBuffer ] - Parameter #2 [ $level = ] + Parameter #0 [ string $data ] + Parameter #1 [ string $dict ] + Parameter #2 [ int $level = ZSTD_COMPRESS_LEVEL_DEFAULT ] } + - Return [ string|false ] } Function [ function zstd_uncompress_dict ] { - Parameters [2] { - Parameter #0 [ $data ] - Parameter #1 [ $dictBuffer ] + Parameter #0 [ string $data ] + Parameter #1 [ string $dict ] } + - Return [ string|false ] } Function [ function zstd_compress_usingcdict ] { - Parameters [3] { - Parameter #0 [ $data ] - Parameter #1 [ $dictBuffer ] - Parameter #2 [ $level = ] + Parameter #0 [ string $data ] + Parameter #1 [ string $dict ] + Parameter #2 [ int $level = ZSTD_COMPRESS_LEVEL_DEFAULT ] } + - Return [ string|false ] } Function [ function zstd_decompress_dict ] { - Parameters [2] { - Parameter #0 [ $data ] - Parameter #1 [ $dictBuffer ] + Parameter #0 [ string $data ] + Parameter #1 [ string $dict ] } + - Return [ string|false ] } Function [ function zstd_uncompress_usingcdict ] { - Parameters [2] { - Parameter #0 [ $data ] - Parameter #1 [ $dictBuffer ] + Parameter #0 [ string $data ] + Parameter #1 [ string $dict ] } + - Return [ string|false ] } Function [ function zstd_decompress_usingcdict ] { - Parameters [2] { - Parameter #0 [ $data ] - Parameter #1 [ $dictBuffer ] + Parameter #0 [ string $data ] + Parameter #1 [ string $dict ] } + - Return [ string|false ] } - Function [ function Zstd\compress ] { + Function [ function zstd_compress_init ] { - Parameters [2] { - Parameter #0 [ $data ] - Parameter #1 [ $level = ] + Parameter #0 [ int $level = ZSTD_COMPRESS_LEVEL_DEFAULT ] + Parameter #1 [ ?string $dict = null ] } + - Return [ Zstd\Compress\Context|false ] } - Function [ function Zstd\uncompress ] { + Function [ function zstd_compress_add ] { + + - Parameters [3] { + Parameter #0 [ Zstd\Compress\Context $context ] + Parameter #1 [ string $data ] + Parameter #2 [ bool $end = false ] + } + - Return [ string|false ] + } + Function [ function zstd_uncompress_init ] { - Parameters [1] { - Parameter #0 [ $data ] + Parameter #0 [ ?string $dict = null ] + } + - Return [ Zstd\UnCompress\Context|false ] + } + Function [ function zstd_uncompress_add ] { + + - Parameters [2] { + Parameter #0 [ Zstd\UnCompress\Context $context ] + Parameter #1 [ string $data ] } + - Return [ string|false ] + } + Function [ function Zstd\compress ] { + + - Parameters [3] { + Parameter #0 [ string $data ] + Parameter #1 [ int $level = ZSTD_COMPRESS_LEVEL_DEFAULT ] + Parameter #2 [ ?string $dict = null ] + } + - Return [ string|false ] + } + Function [ function Zstd\uncompress ] { + + - Parameters [2] { + Parameter #0 [ string $data ] + Parameter #1 [ ?string $dict = null ] + } + - Return [ string|false ] } Function [ function Zstd\decompress ] { - - Parameters [1] { - Parameter #0 [ $data ] + - Parameters [2] { + Parameter #0 [ string $data ] + Parameter #1 [ ?string $dict = null ] } + - Return [ string|false ] } Function [ function Zstd\compress_dict ] { - Parameters [3] { - Parameter #0 [ $data ] - Parameter #1 [ $dictBuffer ] - Parameter #2 [ $level = ] + Parameter #0 [ string $data ] + Parameter #1 [ string $dict ] + Parameter #2 [ int $level = ZSTD_COMPRESS_LEVEL_DEFAULT ] } + - Return [ string|false ] } Function [ function Zstd\compress_usingcdict ] { - Parameters [3] { - Parameter #0 [ $data ] - Parameter #1 [ $dictBuffer ] - Parameter #2 [ $level = ] + Parameter #0 [ string $data ] + Parameter #1 [ string $dict ] + Parameter #2 [ int $level = ZSTD_COMPRESS_LEVEL_DEFAULT ] } + - Return [ string|false ] } Function [ function Zstd\uncompress_dict ] { - Parameters [2] { - Parameter #0 [ $data ] - Parameter #1 [ $dictBuffer ] + Parameter #0 [ string $data ] + Parameter #1 [ string $dict ] } + - Return [ string|false ] } Function [ function Zstd\decompress_dict ] { - Parameters [2] { - Parameter #0 [ $data ] - Parameter #1 [ $dictBuffer ] + Parameter #0 [ string $data ] + Parameter #1 [ string $dict ] } + - Return [ string|false ] } Function [ function Zstd\uncompress_usingcdict ] { - Parameters [2] { - Parameter #0 [ $data ] - Parameter #1 [ $dictBuffer ] + Parameter #0 [ string $data ] + Parameter #1 [ string $dict ] } + - Return [ string|false ] } Function [ function Zstd\decompress_usingcdict ] { - Parameters [2] { - Parameter #0 [ $data ] - Parameter #1 [ $dictBuffer ] + Parameter #0 [ string $data ] + Parameter #1 [ string $dict ] + } + - Return [ string|false ] + } + Function [ function Zstd\compress_init ] { + + - Parameters [2] { + Parameter #0 [ int $level = ZSTD_COMPRESS_LEVEL_DEFAULT ] + Parameter #1 [ ?string $dict = null ] + } + - Return [ Zstd\Compress\Context|false ] + } + Function [ function Zstd\compress_add ] { + + - Parameters [3] { + Parameter #0 [ Zstd\Compress\Context $context ] + Parameter #1 [ string $data ] + Parameter #2 [ bool $end = false ] + } + - Return [ string|false ] + } + Function [ function Zstd\uncompress_init ] { + + - Parameters [1] { + Parameter #0 [ ?string $dict = null ] + } + - Return [ Zstd\UnCompress\Context|false ] + } + Function [ function Zstd\uncompress_add ] { + + - Parameters [2] { + Parameter #0 [ Zstd\UnCompress\Context $context ] + Parameter #1 [ string $data ] } + - Return [ string|false ] } Function [ function ob_zstd_handler ] { @@ -160,5 +248,43 @@ Extension [ extension #114 zstd version 0.14.0 ] { - Return [ string|false ] } } + + - Classes [2] { + Class [ final class Zstd\Compress\Context ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [0] { + } + } + + Class [ final class Zstd\UnCompress\Context ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [0] { + } + } + } } -- cgit