zstdlib 0.11.0-x86_64-darwin → 0.13.0-x86_64-darwin
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGES.md +16 -0
- data/Rakefile +1 -1
- data/ext/zstdlib_c/extconf.rb +9 -4
- data/ext/zstdlib_c/ruby/zlib-3.3/zstdlib.c +5090 -0
- data/ext/zstdlib_c/{zlib-1.2.12 → zlib-1.3.1}/adler32.c +5 -27
- data/ext/zstdlib_c/{zlib-1.2.12 → zlib-1.3.1}/compress.c +5 -16
- data/ext/zstdlib_c/{zlib-1.2.12 → zlib-1.3.1}/crc32.c +94 -161
- data/ext/zstdlib_c/{zlib-1.2.12 → zlib-1.3.1}/deflate.c +362 -434
- data/ext/zstdlib_c/{zlib-1.2.12 → zlib-1.3.1}/deflate.h +43 -12
- data/ext/zstdlib_c/{zlib-1.2.12 → zlib-1.3.1}/gzclose.c +1 -3
- data/ext/zstdlib_c/{zlib-1.2.12 → zlib-1.3.1}/gzguts.h +13 -18
- data/ext/zstdlib_c/{zlib-1.2.12 → zlib-1.3.1}/gzlib.c +28 -85
- data/ext/zstdlib_c/{zlib-1.2.12 → zlib-1.3.1}/gzread.c +23 -73
- data/ext/zstdlib_c/{zlib-1.2.12 → zlib-1.3.1}/gzwrite.c +19 -65
- data/ext/zstdlib_c/{zlib-1.2.12 → zlib-1.3.1}/infback.c +17 -30
- data/ext/zstdlib_c/{zlib-1.2.12 → zlib-1.3.1}/inffast.c +1 -4
- data/ext/zstdlib_c/{zlib-1.2.12 → zlib-1.3.1}/inffast.h +1 -1
- data/ext/zstdlib_c/{zlib-1.2.12 → zlib-1.3.1}/inflate.c +36 -102
- data/ext/zstdlib_c/{zlib-1.2.12 → zlib-1.3.1}/inftrees.c +6 -11
- data/ext/zstdlib_c/{zlib-1.2.12 → zlib-1.3.1}/inftrees.h +6 -6
- data/ext/zstdlib_c/{zlib-1.2.12 → zlib-1.3.1}/trees.c +290 -355
- data/ext/zstdlib_c/{zlib-1.2.12 → zlib-1.3.1}/uncompr.c +4 -12
- data/ext/zstdlib_c/{zlib-1.2.12 → zlib-1.3.1}/zconf.h +23 -14
- data/ext/zstdlib_c/{zlib-1.2.12 → zlib-1.3.1}/zlib.h +202 -199
- data/ext/zstdlib_c/{zlib-1.2.12 → zlib-1.3.1}/zutil.c +18 -44
- data/ext/zstdlib_c/{zlib-1.2.12 → zlib-1.3.1}/zutil.h +13 -33
- data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/common/allocations.h +1 -1
- data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/common/bitstream.h +49 -29
- data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/common/compiler.h +114 -22
- data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/common/cpu.h +36 -0
- data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/common/debug.c +6 -0
- data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/common/debug.h +20 -11
- data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/common/error_private.h +45 -36
- data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/common/fse.h +3 -2
- data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/common/fse_decompress.c +19 -17
- data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/common/huf.h +14 -1
- data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/common/mem.h +0 -9
- data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/common/pool.c +1 -1
- data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/common/pool.h +1 -1
- data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/common/portability_macros.h +2 -0
- data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/common/threading.c +8 -2
- data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/common/xxhash.c +5 -11
- data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/common/xxhash.h +2341 -1007
- data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/common/zstd_internal.h +5 -5
- data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/compress/fse_compress.c +8 -7
- data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/compress/huf_compress.c +54 -25
- data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/compress/zstd_compress.c +282 -161
- data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/compress/zstd_compress_internal.h +29 -27
- data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/compress/zstd_compress_superblock.c +224 -113
- data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/compress/zstd_cwksp.h +19 -13
- data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/compress/zstd_double_fast.c +17 -5
- data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/compress/zstd_double_fast.h +11 -0
- data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/compress/zstd_fast.c +14 -6
- data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/compress/zstd_lazy.c +129 -87
- data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/compress/zstd_lazy.h +103 -28
- data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/compress/zstd_ldm.c +8 -2
- data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/compress/zstd_opt.c +216 -112
- data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/compress/zstd_opt.h +31 -7
- data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/compress/zstdmt_compress.c +94 -79
- data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/decompress/huf_decompress.c +188 -126
- data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/decompress/huf_decompress_amd64.S +38 -19
- data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/decompress/zstd_decompress.c +84 -32
- data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/decompress/zstd_decompress_block.c +231 -208
- data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/decompress/zstd_decompress_block.h +1 -1
- data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/decompress/zstd_decompress_internal.h +2 -0
- data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/zstd.h +129 -60
- data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/zlibWrapper/gzclose.c +1 -3
- data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/zlibWrapper/gzlib.c +20 -73
- data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/zlibWrapper/gzread.c +17 -58
- data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/zlibWrapper/gzwrite.c +18 -58
- data/lib/2.4/zstdlib_c.bundle +0 -0
- data/lib/2.5/zstdlib_c.bundle +0 -0
- data/lib/2.6/zstdlib_c.bundle +0 -0
- data/lib/2.7/zstdlib_c.bundle +0 -0
- data/lib/3.0/zstdlib_c.bundle +0 -0
- data/lib/3.1/zstdlib_c.bundle +0 -0
- data/lib/3.2/zstdlib_c.bundle +0 -0
- data/lib/3.3/zstdlib_c.bundle +0 -0
- metadata +105 -103
- /data/ext/zstdlib_c/{zlib-1.2.12 → zlib-1.3.1}/crc32.h +0 -0
- /data/ext/zstdlib_c/{zlib-1.2.12 → zlib-1.3.1}/inffixed.h +0 -0
- /data/ext/zstdlib_c/{zlib-1.2.12 → zlib-1.3.1}/inflate.h +0 -0
- /data/ext/zstdlib_c/{zlib-1.2.12 → zlib-1.3.1}/trees.h +0 -0
- /data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/common/bits.h +0 -0
- /data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/common/entropy_common.c +0 -0
- /data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/common/error_private.c +0 -0
- /data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/common/threading.h +0 -0
- /data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/common/zstd_common.c +0 -0
- /data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/common/zstd_deps.h +0 -0
- /data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/common/zstd_trace.h +0 -0
- /data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/compress/clevels.h +0 -0
- /data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/compress/hist.c +0 -0
- /data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/compress/hist.h +0 -0
- /data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/compress/zstd_compress_literals.c +0 -0
- /data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/compress/zstd_compress_literals.h +0 -0
- /data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/compress/zstd_compress_sequences.c +0 -0
- /data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/compress/zstd_compress_sequences.h +0 -0
- /data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/compress/zstd_compress_superblock.h +0 -0
- /data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/compress/zstd_fast.h +0 -0
- /data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/compress/zstd_ldm.h +0 -0
- /data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/compress/zstd_ldm_geartab.h +0 -0
- /data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/compress/zstdmt_compress.h +0 -0
- /data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/decompress/zstd_ddict.c +0 -0
- /data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/decompress/zstd_ddict.h +0 -0
- /data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/zdict.h +0 -0
- /data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/lib/zstd_errors.h +0 -0
- /data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/zlibWrapper/gzcompatibility.h +0 -0
- /data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/zlibWrapper/gzguts.h +0 -0
- /data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/zlibWrapper/zstd_zlibwrapper.c +0 -0
- /data/ext/zstdlib_c/{zstd-1.5.5 → zstd-1.5.6}/zlibWrapper/zstd_zlibwrapper.h +0 -0
| @@ -24,12 +24,8 @@ | |
| 24 24 | 
             
               Z_DATA_ERROR if the input data was corrupted, including if the input data is
         | 
| 25 25 | 
             
               an incomplete zlib stream.
         | 
| 26 26 | 
             
            */
         | 
| 27 | 
            -
            int ZEXPORT uncompress2  | 
| 28 | 
            -
             | 
| 29 | 
            -
                uLongf *destLen;
         | 
| 30 | 
            -
                const Bytef *source;
         | 
| 31 | 
            -
                uLong *sourceLen;
         | 
| 32 | 
            -
            {
         | 
| 27 | 
            +
            int ZEXPORT uncompress2(Bytef *dest, uLongf *destLen, const Bytef *source,
         | 
| 28 | 
            +
                                    uLong *sourceLen) {
         | 
| 33 29 | 
             
                z_stream stream;
         | 
| 34 30 | 
             
                int err;
         | 
| 35 31 | 
             
                const uInt max = (uInt)-1;
         | 
| @@ -83,11 +79,7 @@ int ZEXPORT uncompress2 (dest, destLen, source, sourceLen) | |
| 83 79 | 
             
                       err;
         | 
| 84 80 | 
             
            }
         | 
| 85 81 |  | 
| 86 | 
            -
            int ZEXPORT uncompress  | 
| 87 | 
            -
             | 
| 88 | 
            -
                uLongf *destLen;
         | 
| 89 | 
            -
                const Bytef *source;
         | 
| 90 | 
            -
                uLong sourceLen;
         | 
| 91 | 
            -
            {
         | 
| 82 | 
            +
            int ZEXPORT uncompress(Bytef *dest, uLongf *destLen, const Bytef *source,
         | 
| 83 | 
            +
                                   uLong sourceLen) {
         | 
| 92 84 | 
             
                return uncompress2(dest, destLen, source, &sourceLen);
         | 
| 93 85 | 
             
            }
         | 
| @@ -1,5 +1,5 @@ | |
| 1 1 | 
             
            /* zconf.h -- configuration of the zlib compression library
         | 
| 2 | 
            -
             * Copyright (C) 1995- | 
| 2 | 
            +
             * Copyright (C) 1995-2024 Jean-loup Gailly, Mark Adler
         | 
| 3 3 | 
             
             * For conditions of distribution and use, see copyright notice in zlib.h
         | 
| 4 4 | 
             
             */
         | 
| 5 5 |  | 
| @@ -38,6 +38,9 @@ | |
| 38 38 | 
             
            #  define crc32                 z_crc32
         | 
| 39 39 | 
             
            #  define crc32_combine         z_crc32_combine
         | 
| 40 40 | 
             
            #  define crc32_combine64       z_crc32_combine64
         | 
| 41 | 
            +
            #  define crc32_combine_gen     z_crc32_combine_gen
         | 
| 42 | 
            +
            #  define crc32_combine_gen64   z_crc32_combine_gen64
         | 
| 43 | 
            +
            #  define crc32_combine_op      z_crc32_combine_op
         | 
| 41 44 | 
             
            #  define crc32_z               z_crc32_z
         | 
| 42 45 | 
             
            #  define deflate               z_deflate
         | 
| 43 46 | 
             
            #  define deflateBound          z_deflateBound
         | 
| @@ -238,7 +241,11 @@ | |
| 238 241 | 
             
            #endif
         | 
| 239 242 |  | 
| 240 243 | 
             
            #ifdef Z_SOLO
         | 
| 241 | 
            -
             | 
| 244 | 
            +
            #  ifdef _WIN64
         | 
| 245 | 
            +
                 typedef unsigned long long z_size_t;
         | 
| 246 | 
            +
            #  else
         | 
| 247 | 
            +
                 typedef unsigned long z_size_t;
         | 
| 248 | 
            +
            #  endif
         | 
| 242 249 | 
             
            #else
         | 
| 243 250 | 
             
            #  define z_longlong long long
         | 
| 244 251 | 
             
            #  if defined(NO_SIZE_T)
         | 
| @@ -293,14 +300,6 @@ | |
| 293 300 | 
             
            #  endif
         | 
| 294 301 | 
             
            #endif
         | 
| 295 302 |  | 
| 296 | 
            -
            #ifndef Z_ARG /* function prototypes for stdarg */
         | 
| 297 | 
            -
            #  if defined(STDC) || defined(Z_HAVE_STDARG_H)
         | 
| 298 | 
            -
            #    define Z_ARG(args)  args
         | 
| 299 | 
            -
            #  else
         | 
| 300 | 
            -
            #    define Z_ARG(args)  ()
         | 
| 301 | 
            -
            #  endif
         | 
| 302 | 
            -
            #endif
         | 
| 303 | 
            -
             | 
| 304 303 | 
             
            /* The following definitions for FAR are needed only for MSDOS mixed
         | 
| 305 304 | 
             
             * model programming (small or medium model with some far allocations).
         | 
| 306 305 | 
             
             * This was tested only with MSC; for other MSDOS compilers you may have
         | 
| @@ -349,6 +348,9 @@ | |
| 349 348 | 
             
            #    ifdef FAR
         | 
| 350 349 | 
             
            #      undef FAR
         | 
| 351 350 | 
             
            #    endif
         | 
| 351 | 
            +
            #    ifndef WIN32_LEAN_AND_MEAN
         | 
| 352 | 
            +
            #      define WIN32_LEAN_AND_MEAN
         | 
| 353 | 
            +
            #    endif
         | 
| 352 354 | 
             
            #    include <windows.h>
         | 
| 353 355 | 
             
                 /* No need for _export, use ZLIB.DEF instead. */
         | 
| 354 356 | 
             
                 /* For complete Windows compatibility, use WINAPI, not __stdcall. */
         | 
| @@ -467,11 +469,18 @@ typedef uLong FAR uLongf; | |
| 467 469 | 
             
            #  undef _LARGEFILE64_SOURCE
         | 
| 468 470 | 
             
            #endif
         | 
| 469 471 |  | 
| 470 | 
            -
            # | 
| 471 | 
            -
            #   | 
| 472 | 
            +
            #ifndef Z_HAVE_UNISTD_H
         | 
| 473 | 
            +
            #  ifdef __WATCOMC__
         | 
| 474 | 
            +
            #    define Z_HAVE_UNISTD_H
         | 
| 475 | 
            +
            #  endif
         | 
| 476 | 
            +
            #endif
         | 
| 477 | 
            +
            #ifndef Z_HAVE_UNISTD_H
         | 
| 478 | 
            +
            #  if defined(_LARGEFILE64_SOURCE) && !defined(_WIN32)
         | 
| 479 | 
            +
            #    define Z_HAVE_UNISTD_H
         | 
| 480 | 
            +
            #  endif
         | 
| 472 481 | 
             
            #endif
         | 
| 473 482 | 
             
            #ifndef Z_SOLO
         | 
| 474 | 
            -
            #  if defined(Z_HAVE_UNISTD_H) | 
| 483 | 
            +
            #  if defined(Z_HAVE_UNISTD_H)
         | 
| 475 484 | 
             
            #    include <unistd.h>         /* for SEEK_*, off_t, and _LFS64_LARGEFILE */
         | 
| 476 485 | 
             
            #    ifdef VMS
         | 
| 477 486 | 
             
            #      include <unixio.h>       /* for off_t */
         | 
| @@ -507,7 +516,7 @@ typedef uLong FAR uLongf; | |
| 507 516 | 
             
            #if !defined(_WIN32) && defined(Z_LARGE64)
         | 
| 508 517 | 
             
            #  define z_off64_t off64_t
         | 
| 509 518 | 
             
            #else
         | 
| 510 | 
            -
            #  if defined(_WIN32) && !defined(__GNUC__) | 
| 519 | 
            +
            #  if defined(_WIN32) && !defined(__GNUC__)
         | 
| 511 520 | 
             
            #    define z_off64_t __int64
         | 
| 512 521 | 
             
            #  else
         | 
| 513 522 | 
             
            #    define z_off64_t z_off_t
         |