libarchive-static 1.0.6 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ext/extconf.rb +2 -9
- data/ext/libarchive-0.1.1/ext/archive_read_support_compression.c +6 -6
- data/ext/libarchive-0.1.1/ext/archive_read_support_compression.o +0 -0
- data/ext/libarchive-0.1.1/ext/archive_read_support_format.o +0 -0
- data/ext/libarchive-0.1.1/ext/archive_write_open_rb_str.c +1 -1
- data/ext/libarchive-0.1.1/ext/archive_write_open_rb_str.o +0 -0
- data/ext/libarchive-0.1.1/ext/archive_write_set_compression.c +5 -5
- data/ext/libarchive-0.1.1/ext/archive_write_set_compression.o +0 -0
- data/ext/libarchive-0.1.1/ext/config.h +23 -0
- data/ext/libarchive-0.1.1/ext/config.log +230 -0
- data/ext/libarchive-0.1.1/ext/config.status +671 -0
- data/ext/libarchive-0.1.1/ext/libarchive.c +1 -1
- data/ext/libarchive-0.1.1/ext/libarchive.o +0 -0
- data/ext/libarchive-0.1.1/ext/libarchive_archive.c +7 -7
- data/ext/libarchive-0.1.1/ext/libarchive_archive.o +0 -0
- data/ext/libarchive-0.1.1/ext/libarchive_entry.c +6 -0
- data/ext/libarchive-0.1.1/ext/libarchive_entry.o +0 -0
- data/ext/libarchive-0.1.1/ext/libarchive_reader.c +6 -4
- data/ext/libarchive-0.1.1/ext/libarchive_reader.o +0 -0
- data/ext/libarchive-0.1.1/ext/libarchive_ruby.so +0 -0
- data/ext/libarchive-0.1.1/ext/libarchive_win32.h +1 -1
- data/ext/libarchive-0.1.1/ext/libarchive_writer.c +2 -2
- data/ext/libarchive-0.1.1/ext/libarchive_writer.o +0 -0
- data/ext/libarchive-3.6.2/Makefile.in +16892 -0
- data/ext/libarchive-3.6.2/build/autoconf/ax_append_compile_flags.m4 +67 -0
- data/ext/libarchive-3.6.2/build/autoconf/ax_append_flag.m4 +71 -0
- data/ext/libarchive-3.6.2/build/autoconf/ax_check_compile_flag.m4 +74 -0
- data/ext/libarchive-3.6.2/build/autoconf/ax_require_defined.m4 +37 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/build/autoconf/check_stdcall_func.m4 +0 -0
- data/ext/libarchive-3.6.2/build/autoconf/compile +348 -0
- data/ext/libarchive-3.6.2/build/autoconf/config.guess +1754 -0
- data/ext/libarchive-3.6.2/build/autoconf/config.rpath +696 -0
- data/ext/libarchive-3.6.2/build/autoconf/config.sub +1890 -0
- data/ext/libarchive-3.6.2/build/autoconf/depcomp +791 -0
- data/ext/libarchive-3.6.2/build/autoconf/iconv.m4 +271 -0
- data/ext/libarchive-3.6.2/build/autoconf/install-sh +541 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/build/autoconf/la_uid_t.m4 +0 -0
- data/ext/libarchive-3.6.2/build/autoconf/lib-ld.m4 +109 -0
- data/ext/libarchive-3.6.2/build/autoconf/lib-link.m4 +777 -0
- data/ext/libarchive-3.6.2/build/autoconf/lib-prefix.m4 +224 -0
- data/ext/libarchive-3.6.2/build/autoconf/ltmain.sh +11251 -0
- data/ext/libarchive-3.6.2/build/autoconf/m4_ax_compile_check_sizeof.m4 +115 -0
- data/ext/libarchive-3.6.2/build/autoconf/missing +215 -0
- data/ext/libarchive-3.6.2/build/autoconf/test-driver +153 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/build/pkgconfig/libarchive.pc.in +4 -1
- data/ext/libarchive-3.6.2/config.h.in +1504 -0
- data/ext/libarchive-3.6.2/configure +25558 -0
- data/ext/libarchive-3.6.2/libarchive/archive.h +1212 -0
- data/ext/libarchive-3.6.2/libarchive/archive_acl.c +2097 -0
- data/ext/libarchive-3.6.2/libarchive/archive_acl_private.h +83 -0
- data/ext/libarchive-3.6.2/libarchive/archive_blake2.h +197 -0
- data/ext/libarchive-3.6.2/libarchive/archive_blake2_impl.h +161 -0
- data/ext/libarchive-3.6.2/libarchive/archive_blake2s_ref.c +369 -0
- data/ext/libarchive-3.6.2/libarchive/archive_blake2sp_ref.c +361 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_check_magic.c +63 -22
- data/ext/libarchive-3.6.2/libarchive/archive_cmdline.c +227 -0
- data/ext/libarchive-3.6.2/libarchive/archive_cmdline_private.h +47 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_crc32.h +17 -0
- data/ext/libarchive-3.6.2/libarchive/archive_cryptor.c +534 -0
- data/ext/libarchive-3.6.2/libarchive/archive_cryptor_private.h +188 -0
- data/ext/libarchive-3.6.2/libarchive/archive_digest.c +1505 -0
- data/ext/libarchive-3.6.2/libarchive/archive_digest_private.h +416 -0
- data/ext/libarchive-3.6.2/libarchive/archive_disk_acl_darwin.c +559 -0
- data/ext/libarchive-3.6.2/libarchive/archive_disk_acl_freebsd.c +712 -0
- data/ext/libarchive-3.6.2/libarchive/archive_disk_acl_linux.c +760 -0
- data/ext/libarchive-3.6.2/libarchive/archive_disk_acl_sunos.c +824 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_endian.h +48 -15
- data/ext/libarchive-3.6.2/libarchive/archive_entry.c +2149 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_entry.h +305 -106
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_entry_copy_bhfi.c +5 -4
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_entry_copy_stat.c +9 -3
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_entry_link_resolver.c +104 -62
- data/ext/libarchive-3.6.2/libarchive/archive_entry_locale.h +92 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_entry_private.h +65 -49
- data/ext/libarchive-3.6.2/libarchive/archive_entry_sparse.c +156 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_entry_stat.c +6 -6
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_entry_strmode.c +1 -1
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_entry_xattr.c +4 -6
- data/ext/libarchive-3.6.2/libarchive/archive_getdate.c +1165 -0
- data/ext/libarchive-3.6.2/libarchive/archive_getdate.h +39 -0
- data/ext/libarchive-3.6.2/libarchive/archive_hmac.c +334 -0
- data/ext/libarchive-3.6.2/libarchive/archive_hmac_private.h +117 -0
- data/ext/libarchive-3.6.2/libarchive/archive_match.c +1875 -0
- data/ext/libarchive-3.6.2/libarchive/archive_openssl_evp_private.h +53 -0
- data/ext/libarchive-3.6.2/libarchive/archive_openssl_hmac_private.h +54 -0
- data/ext/libarchive-3.6.2/libarchive/archive_options.c +218 -0
- data/ext/libarchive-3.6.2/libarchive/archive_options_private.h +51 -0
- data/ext/libarchive-3.6.2/libarchive/archive_pack_dev.c +337 -0
- data/ext/libarchive-3.6.2/libarchive/archive_pack_dev.h +49 -0
- data/ext/libarchive-3.6.2/libarchive/archive_pathmatch.c +463 -0
- data/ext/libarchive-3.6.2/libarchive/archive_pathmatch.h +52 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_platform.h +77 -9
- data/ext/libarchive-3.6.2/libarchive/archive_platform_acl.h +55 -0
- data/ext/libarchive-3.6.2/libarchive/archive_platform_xattr.h +47 -0
- data/ext/libarchive-3.6.2/libarchive/archive_ppmd7.c +1168 -0
- data/ext/libarchive-3.6.2/libarchive/archive_ppmd7_private.h +119 -0
- data/ext/libarchive-3.6.2/libarchive/archive_ppmd8.c +1287 -0
- data/ext/libarchive-3.6.2/libarchive/archive_ppmd8_private.h +148 -0
- data/ext/libarchive-3.6.2/libarchive/archive_ppmd_private.h +151 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_private.h +74 -18
- data/ext/libarchive-3.6.2/libarchive/archive_random.c +272 -0
- data/ext/libarchive-3.6.2/libarchive/archive_random_private.h +36 -0
- data/ext/libarchive-3.6.2/libarchive/archive_rb.c +709 -0
- data/ext/libarchive-3.6.2/libarchive/archive_rb.h +113 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read.c +1756 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_add_passphrase.c +190 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_append_filter.c +204 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_data_into_fd.c +64 -18
- data/ext/libarchive-3.6.2/libarchive/archive_read_disk_entry_from_file.c +1086 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_disk_posix.c +2732 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_disk_private.h +40 -4
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_disk_set_standard_lookup.c +21 -11
- data/ext/libarchive-3.6.2/libarchive/archive_read_disk_windows.c +2479 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_extract.c +60 -0
- data/ext/{libarchive-2.8.4/libarchive/archive_read_extract.c → libarchive-3.6.2/libarchive/archive_read_extract2.c} +34 -61
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_open_fd.c +70 -49
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_open_file.c +38 -23
- data/ext/libarchive-3.6.2/libarchive/archive_read_open_filename.c +586 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_open_memory.c +58 -28
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_private.h +127 -59
- data/ext/libarchive-3.6.2/libarchive/archive_read_set_format.c +117 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_set_options.c +133 -0
- data/ext/{libarchive-2.8.4/libarchive/archive_read_support_compression_all.c → libarchive-3.6.2/libarchive/archive_read_support_filter_all.c} +35 -10
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_filter_by_code.c +83 -0
- data/ext/{libarchive-2.8.4/libarchive/archive_read_support_compression_bzip2.c → libarchive-3.6.2/libarchive/archive_read_support_filter_bzip2.c} +38 -26
- data/ext/{libarchive-2.8.4/libarchive/archive_read_support_compression_compress.c → libarchive-3.6.2/libarchive/archive_read_support_filter_compress.c} +52 -44
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_filter_grzip.c +112 -0
- data/ext/{libarchive-2.8.4/libarchive/archive_read_support_compression_gzip.c → libarchive-3.6.2/libarchive/archive_read_support_filter_gzip.c} +108 -37
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_filter_lrzip.c +122 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_filter_lz4.c +742 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_filter_lzop.c +499 -0
- data/ext/{libarchive-2.8.4/libarchive/archive_read_support_compression_none.c → libarchive-3.6.2/libarchive/archive_read_support_filter_none.c} +15 -3
- data/ext/{libarchive-2.8.4/libarchive/archive_read_support_compression_program.c → libarchive-3.6.2/libarchive/archive_read_support_filter_program.c} +114 -77
- data/ext/{libarchive-2.8.4/libarchive/archive_read_support_compression_rpm.c → libarchive-3.6.2/libarchive/archive_read_support_filter_rpm.c} +31 -31
- data/ext/{libarchive-2.8.4/libarchive/archive_read_support_compression_uu.c → libarchive-3.6.2/libarchive/archive_read_support_filter_uu.c} +141 -85
- data/ext/{libarchive-2.8.4/libarchive/archive_read_support_compression_xz.c → libarchive-3.6.2/libarchive/archive_read_support_filter_xz.c} +369 -284
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_filter_zstd.c +297 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_7zip.c +3900 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_all.c +89 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_support_format_ar.c +126 -72
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_by_code.c +92 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_cab.c +3228 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_cpio.c +1104 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_support_format_empty.c +14 -11
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_support_format_iso9660.c +990 -541
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_lha.c +2916 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_mtree.c +2150 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_rar.c +3797 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_rar5.c +4251 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_support_format_raw.c +38 -31
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_support_format_tar.c +1157 -629
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_warc.c +848 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_support_format_xar.c +439 -258
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_zip.c +4270 -0
- data/ext/libarchive-3.6.2/libarchive/archive_string.c +4240 -0
- data/ext/libarchive-3.6.2/libarchive/archive_string.h +243 -0
- data/ext/libarchive-3.6.2/libarchive/archive_string_composition.h +2292 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_string_sprintf.c +44 -16
- data/ext/libarchive-3.6.2/libarchive/archive_util.c +655 -0
- data/ext/libarchive-3.6.2/libarchive/archive_version_details.c +151 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_virtual.c +85 -16
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_windows.c +214 -541
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_windows.h +74 -106
- data/ext/libarchive-3.6.2/libarchive/archive_write.c +828 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter.c +72 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_b64encode.c +304 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_by_name.c +77 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_bzip2.c +401 -0
- data/ext/{libarchive-2.8.4/libarchive/archive_write_set_compression_compress.c → libarchive-3.6.2/libarchive/archive_write_add_filter_compress.c} +86 -131
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_grzip.c +135 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_gzip.c +442 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_lrzip.c +197 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_lz4.c +700 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_lzop.c +478 -0
- data/ext/{libarchive-2.8.4/libarchive/archive_read_support_format_all.c → libarchive-3.6.2/libarchive/archive_write_add_filter_none.c} +11 -11
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_program.c +391 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_uuencode.c +295 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_xz.c +545 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_zstd.c +418 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_disk_posix.c +4711 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_disk_private.h +9 -2
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_disk_set_standard_lookup.c +30 -29
- data/ext/libarchive-3.6.2/libarchive/archive_write_disk_windows.c +2842 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_open_fd.c +15 -10
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_open_file.c +15 -9
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_open_filename.c +128 -20
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_open_memory.c +7 -18
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_private.h +72 -29
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_set_format.c +56 -3
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_7zip.c +2322 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_set_format_ar.c +54 -34
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_set_format_by_name.c +20 -2
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_cpio.c +11 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_cpio_binary.c +610 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_cpio_newc.c +457 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_cpio_odc.c +500 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_filter_by_ext.c +142 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_gnutar.c +755 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_iso9660.c +8165 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_mtree.c +2217 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_set_format_pax.c +1049 -387
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_private.h +42 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_raw.c +125 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_set_format_shar.c +62 -47
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_set_format_ustar.c +279 -108
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_v7tar.c +638 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_warc.c +453 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_xar.c +3259 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_zip.c +1704 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_options.c +130 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_passphrase.c +95 -0
- data/ext/libarchive-3.6.2/libarchive/archive_xxhash.h +48 -0
- data/ext/libarchive-3.6.2/libarchive/config_freebsd.h +271 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/filter_fork.h +10 -5
- data/ext/{libarchive-2.8.4/libarchive/filter_fork.c → libarchive-3.6.2/libarchive/filter_fork_posix.c} +98 -19
- data/ext/libarchive-3.6.2/libarchive/filter_fork_windows.c +236 -0
- data/ext/libarchive-3.6.2/libarchive/xxhash.c +525 -0
- data/ext/libarchive-static-makefile +144 -80
- data/ext/libarchive-static-wrapper-makefile +1 -1
- data/ext/zlib-1.2.13/Makefile.in +404 -0
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/adler32.c +51 -34
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/compress.c +27 -21
- data/ext/zlib-1.2.13/configure +922 -0
- data/ext/zlib-1.2.13/crc32.c +1125 -0
- data/ext/zlib-1.2.13/crc32.h +9446 -0
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/deflate.c +842 -459
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/deflate.h +37 -33
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/gzclose.c +0 -0
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/gzguts.h +103 -16
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/gzlib.c +155 -53
- data/ext/zlib-1.2.13/gzread.c +650 -0
- data/ext/zlib-1.2.13/gzwrite.c +677 -0
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/infback.c +24 -12
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/inffast.c +49 -66
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/inffast.h +0 -0
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/inffixed.h +3 -3
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/inflate.c +209 -94
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/inflate.h +9 -5
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/inftrees.c +24 -50
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/inftrees.h +1 -1
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/trees.c +135 -198
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/trees.h +0 -0
- data/ext/zlib-1.2.13/uncompr.c +93 -0
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/zconf.h +182 -63
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/zlib.h +617 -295
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/zutil.c +50 -41
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/zutil.h +83 -82
- metadata +241 -133
- data/ext/libarchive-0.1.1/libarchive.c +0 -1762
- data/ext/libarchive-2.8.4/Makefile.in +0 -7076
- data/ext/libarchive-2.8.4/build/autoconf/compile +0 -143
- data/ext/libarchive-2.8.4/build/autoconf/config.guess +0 -1502
- data/ext/libarchive-2.8.4/build/autoconf/config.sub +0 -1708
- data/ext/libarchive-2.8.4/build/autoconf/depcomp +0 -630
- data/ext/libarchive-2.8.4/build/autoconf/install-sh +0 -291
- data/ext/libarchive-2.8.4/build/autoconf/ltmain.sh +0 -8406
- data/ext/libarchive-2.8.4/build/autoconf/missing +0 -376
- data/ext/libarchive-2.8.4/config.h.in +0 -772
- data/ext/libarchive-2.8.4/configure +0 -17916
- data/ext/libarchive-2.8.4/libarchive/archive.h +0 -741
- data/ext/libarchive-2.8.4/libarchive/archive_entry.c +0 -2202
- data/ext/libarchive-2.8.4/libarchive/archive_hash.h +0 -281
- data/ext/libarchive-2.8.4/libarchive/archive_read.c +0 -1249
- data/ext/libarchive-2.8.4/libarchive/archive_read_disk.c +0 -198
- data/ext/libarchive-2.8.4/libarchive/archive_read_disk_entry_from_file.c +0 -570
- data/ext/libarchive-2.8.4/libarchive/archive_read_open_filename.c +0 -272
- data/ext/libarchive-2.8.4/libarchive/archive_read_support_format_cpio.c +0 -777
- data/ext/libarchive-2.8.4/libarchive/archive_read_support_format_mtree.c +0 -1304
- data/ext/libarchive-2.8.4/libarchive/archive_read_support_format_zip.c +0 -903
- data/ext/libarchive-2.8.4/libarchive/archive_string.c +0 -453
- data/ext/libarchive-2.8.4/libarchive/archive_string.h +0 -148
- data/ext/libarchive-2.8.4/libarchive/archive_util.c +0 -391
- data/ext/libarchive-2.8.4/libarchive/archive_write.c +0 -466
- data/ext/libarchive-2.8.4/libarchive/archive_write_disk.c +0 -2628
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_compression_bzip2.c +0 -408
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_compression_gzip.c +0 -477
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_compression_none.c +0 -257
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_compression_program.c +0 -347
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_compression_xz.c +0 -438
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_format_cpio.c +0 -344
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_format_cpio_newc.c +0 -295
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_format_mtree.c +0 -1050
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_format_zip.c +0 -667
- data/ext/libarchive-2.8.4/libarchive/config_freebsd.h +0 -154
- data/ext/libarchive-2.8.4/libarchive/filter_fork_windows.c +0 -113
- data/ext/zlib-1.2.5/Makefile.in +0 -257
- data/ext/zlib-1.2.5/configure +0 -596
- data/ext/zlib-1.2.5/crc32.c +0 -442
- data/ext/zlib-1.2.5/crc32.h +0 -441
- data/ext/zlib-1.2.5/example.c +0 -565
- data/ext/zlib-1.2.5/gzread.c +0 -653
- data/ext/zlib-1.2.5/gzwrite.c +0 -531
- data/ext/zlib-1.2.5/minigzip.c +0 -440
- data/ext/zlib-1.2.5/uncompr.c +0 -59
data/ext/zlib-1.2.5/minigzip.c
DELETED
@@ -1,440 +0,0 @@
|
|
1
|
-
/* minigzip.c -- simulate gzip using the zlib compression library
|
2
|
-
* Copyright (C) 1995-2006, 2010 Jean-loup Gailly.
|
3
|
-
* For conditions of distribution and use, see copyright notice in zlib.h
|
4
|
-
*/
|
5
|
-
|
6
|
-
/*
|
7
|
-
* minigzip is a minimal implementation of the gzip utility. This is
|
8
|
-
* only an example of using zlib and isn't meant to replace the
|
9
|
-
* full-featured gzip. No attempt is made to deal with file systems
|
10
|
-
* limiting names to 14 or 8+3 characters, etc... Error checking is
|
11
|
-
* very limited. So use minigzip only for testing; use gzip for the
|
12
|
-
* real thing. On MSDOS, use only on file names without extension
|
13
|
-
* or in pipe mode.
|
14
|
-
*/
|
15
|
-
|
16
|
-
/* @(#) $Id$ */
|
17
|
-
|
18
|
-
#include "zlib.h"
|
19
|
-
#include <stdio.h>
|
20
|
-
|
21
|
-
#ifdef STDC
|
22
|
-
# include <string.h>
|
23
|
-
# include <stdlib.h>
|
24
|
-
#endif
|
25
|
-
|
26
|
-
#ifdef USE_MMAP
|
27
|
-
# include <sys/types.h>
|
28
|
-
# include <sys/mman.h>
|
29
|
-
# include <sys/stat.h>
|
30
|
-
#endif
|
31
|
-
|
32
|
-
#if defined(MSDOS) || defined(OS2) || defined(WIN32) || defined(__CYGWIN__)
|
33
|
-
# include <fcntl.h>
|
34
|
-
# include <io.h>
|
35
|
-
# ifdef UNDER_CE
|
36
|
-
# include <stdlib.h>
|
37
|
-
# endif
|
38
|
-
# define SET_BINARY_MODE(file) setmode(fileno(file), O_BINARY)
|
39
|
-
#else
|
40
|
-
# define SET_BINARY_MODE(file)
|
41
|
-
#endif
|
42
|
-
|
43
|
-
#ifdef VMS
|
44
|
-
# define unlink delete
|
45
|
-
# define GZ_SUFFIX "-gz"
|
46
|
-
#endif
|
47
|
-
#ifdef RISCOS
|
48
|
-
# define unlink remove
|
49
|
-
# define GZ_SUFFIX "-gz"
|
50
|
-
# define fileno(file) file->__file
|
51
|
-
#endif
|
52
|
-
#if defined(__MWERKS__) && __dest_os != __be_os && __dest_os != __win32_os
|
53
|
-
# include <unix.h> /* for fileno */
|
54
|
-
#endif
|
55
|
-
|
56
|
-
#if !defined(Z_HAVE_UNISTD_H) && !defined(_LARGEFILE64_SOURCE)
|
57
|
-
#ifndef WIN32 /* unlink already in stdio.h for WIN32 */
|
58
|
-
extern int unlink OF((const char *));
|
59
|
-
#endif
|
60
|
-
#endif
|
61
|
-
|
62
|
-
#if defined(UNDER_CE)
|
63
|
-
# include <windows.h>
|
64
|
-
# define perror(s) pwinerror(s)
|
65
|
-
|
66
|
-
/* Map the Windows error number in ERROR to a locale-dependent error
|
67
|
-
message string and return a pointer to it. Typically, the values
|
68
|
-
for ERROR come from GetLastError.
|
69
|
-
|
70
|
-
The string pointed to shall not be modified by the application,
|
71
|
-
but may be overwritten by a subsequent call to strwinerror
|
72
|
-
|
73
|
-
The strwinerror function does not change the current setting
|
74
|
-
of GetLastError. */
|
75
|
-
|
76
|
-
static char *strwinerror (error)
|
77
|
-
DWORD error;
|
78
|
-
{
|
79
|
-
static char buf[1024];
|
80
|
-
|
81
|
-
wchar_t *msgbuf;
|
82
|
-
DWORD lasterr = GetLastError();
|
83
|
-
DWORD chars = FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM
|
84
|
-
| FORMAT_MESSAGE_ALLOCATE_BUFFER,
|
85
|
-
NULL,
|
86
|
-
error,
|
87
|
-
0, /* Default language */
|
88
|
-
(LPVOID)&msgbuf,
|
89
|
-
0,
|
90
|
-
NULL);
|
91
|
-
if (chars != 0) {
|
92
|
-
/* If there is an \r\n appended, zap it. */
|
93
|
-
if (chars >= 2
|
94
|
-
&& msgbuf[chars - 2] == '\r' && msgbuf[chars - 1] == '\n') {
|
95
|
-
chars -= 2;
|
96
|
-
msgbuf[chars] = 0;
|
97
|
-
}
|
98
|
-
|
99
|
-
if (chars > sizeof (buf) - 1) {
|
100
|
-
chars = sizeof (buf) - 1;
|
101
|
-
msgbuf[chars] = 0;
|
102
|
-
}
|
103
|
-
|
104
|
-
wcstombs(buf, msgbuf, chars + 1);
|
105
|
-
LocalFree(msgbuf);
|
106
|
-
}
|
107
|
-
else {
|
108
|
-
sprintf(buf, "unknown win32 error (%ld)", error);
|
109
|
-
}
|
110
|
-
|
111
|
-
SetLastError(lasterr);
|
112
|
-
return buf;
|
113
|
-
}
|
114
|
-
|
115
|
-
static void pwinerror (s)
|
116
|
-
const char *s;
|
117
|
-
{
|
118
|
-
if (s && *s)
|
119
|
-
fprintf(stderr, "%s: %s\n", s, strwinerror(GetLastError ()));
|
120
|
-
else
|
121
|
-
fprintf(stderr, "%s\n", strwinerror(GetLastError ()));
|
122
|
-
}
|
123
|
-
|
124
|
-
#endif /* UNDER_CE */
|
125
|
-
|
126
|
-
#ifndef GZ_SUFFIX
|
127
|
-
# define GZ_SUFFIX ".gz"
|
128
|
-
#endif
|
129
|
-
#define SUFFIX_LEN (sizeof(GZ_SUFFIX)-1)
|
130
|
-
|
131
|
-
#define BUFLEN 16384
|
132
|
-
#define MAX_NAME_LEN 1024
|
133
|
-
|
134
|
-
#ifdef MAXSEG_64K
|
135
|
-
# define local static
|
136
|
-
/* Needed for systems with limitation on stack size. */
|
137
|
-
#else
|
138
|
-
# define local
|
139
|
-
#endif
|
140
|
-
|
141
|
-
char *prog;
|
142
|
-
|
143
|
-
void error OF((const char *msg));
|
144
|
-
void gz_compress OF((FILE *in, gzFile out));
|
145
|
-
#ifdef USE_MMAP
|
146
|
-
int gz_compress_mmap OF((FILE *in, gzFile out));
|
147
|
-
#endif
|
148
|
-
void gz_uncompress OF((gzFile in, FILE *out));
|
149
|
-
void file_compress OF((char *file, char *mode));
|
150
|
-
void file_uncompress OF((char *file));
|
151
|
-
int main OF((int argc, char *argv[]));
|
152
|
-
|
153
|
-
/* ===========================================================================
|
154
|
-
* Display error message and exit
|
155
|
-
*/
|
156
|
-
void error(msg)
|
157
|
-
const char *msg;
|
158
|
-
{
|
159
|
-
fprintf(stderr, "%s: %s\n", prog, msg);
|
160
|
-
exit(1);
|
161
|
-
}
|
162
|
-
|
163
|
-
/* ===========================================================================
|
164
|
-
* Compress input to output then close both files.
|
165
|
-
*/
|
166
|
-
|
167
|
-
void gz_compress(in, out)
|
168
|
-
FILE *in;
|
169
|
-
gzFile out;
|
170
|
-
{
|
171
|
-
local char buf[BUFLEN];
|
172
|
-
int len;
|
173
|
-
int err;
|
174
|
-
|
175
|
-
#ifdef USE_MMAP
|
176
|
-
/* Try first compressing with mmap. If mmap fails (minigzip used in a
|
177
|
-
* pipe), use the normal fread loop.
|
178
|
-
*/
|
179
|
-
if (gz_compress_mmap(in, out) == Z_OK) return;
|
180
|
-
#endif
|
181
|
-
for (;;) {
|
182
|
-
len = (int)fread(buf, 1, sizeof(buf), in);
|
183
|
-
if (ferror(in)) {
|
184
|
-
perror("fread");
|
185
|
-
exit(1);
|
186
|
-
}
|
187
|
-
if (len == 0) break;
|
188
|
-
|
189
|
-
if (gzwrite(out, buf, (unsigned)len) != len) error(gzerror(out, &err));
|
190
|
-
}
|
191
|
-
fclose(in);
|
192
|
-
if (gzclose(out) != Z_OK) error("failed gzclose");
|
193
|
-
}
|
194
|
-
|
195
|
-
#ifdef USE_MMAP /* MMAP version, Miguel Albrecht <malbrech@eso.org> */
|
196
|
-
|
197
|
-
/* Try compressing the input file at once using mmap. Return Z_OK if
|
198
|
-
* if success, Z_ERRNO otherwise.
|
199
|
-
*/
|
200
|
-
int gz_compress_mmap(in, out)
|
201
|
-
FILE *in;
|
202
|
-
gzFile out;
|
203
|
-
{
|
204
|
-
int len;
|
205
|
-
int err;
|
206
|
-
int ifd = fileno(in);
|
207
|
-
caddr_t buf; /* mmap'ed buffer for the entire input file */
|
208
|
-
off_t buf_len; /* length of the input file */
|
209
|
-
struct stat sb;
|
210
|
-
|
211
|
-
/* Determine the size of the file, needed for mmap: */
|
212
|
-
if (fstat(ifd, &sb) < 0) return Z_ERRNO;
|
213
|
-
buf_len = sb.st_size;
|
214
|
-
if (buf_len <= 0) return Z_ERRNO;
|
215
|
-
|
216
|
-
/* Now do the actual mmap: */
|
217
|
-
buf = mmap((caddr_t) 0, buf_len, PROT_READ, MAP_SHARED, ifd, (off_t)0);
|
218
|
-
if (buf == (caddr_t)(-1)) return Z_ERRNO;
|
219
|
-
|
220
|
-
/* Compress the whole file at once: */
|
221
|
-
len = gzwrite(out, (char *)buf, (unsigned)buf_len);
|
222
|
-
|
223
|
-
if (len != (int)buf_len) error(gzerror(out, &err));
|
224
|
-
|
225
|
-
munmap(buf, buf_len);
|
226
|
-
fclose(in);
|
227
|
-
if (gzclose(out) != Z_OK) error("failed gzclose");
|
228
|
-
return Z_OK;
|
229
|
-
}
|
230
|
-
#endif /* USE_MMAP */
|
231
|
-
|
232
|
-
/* ===========================================================================
|
233
|
-
* Uncompress input to output then close both files.
|
234
|
-
*/
|
235
|
-
void gz_uncompress(in, out)
|
236
|
-
gzFile in;
|
237
|
-
FILE *out;
|
238
|
-
{
|
239
|
-
local char buf[BUFLEN];
|
240
|
-
int len;
|
241
|
-
int err;
|
242
|
-
|
243
|
-
for (;;) {
|
244
|
-
len = gzread(in, buf, sizeof(buf));
|
245
|
-
if (len < 0) error (gzerror(in, &err));
|
246
|
-
if (len == 0) break;
|
247
|
-
|
248
|
-
if ((int)fwrite(buf, 1, (unsigned)len, out) != len) {
|
249
|
-
error("failed fwrite");
|
250
|
-
}
|
251
|
-
}
|
252
|
-
if (fclose(out)) error("failed fclose");
|
253
|
-
|
254
|
-
if (gzclose(in) != Z_OK) error("failed gzclose");
|
255
|
-
}
|
256
|
-
|
257
|
-
|
258
|
-
/* ===========================================================================
|
259
|
-
* Compress the given file: create a corresponding .gz file and remove the
|
260
|
-
* original.
|
261
|
-
*/
|
262
|
-
void file_compress(file, mode)
|
263
|
-
char *file;
|
264
|
-
char *mode;
|
265
|
-
{
|
266
|
-
local char outfile[MAX_NAME_LEN];
|
267
|
-
FILE *in;
|
268
|
-
gzFile out;
|
269
|
-
|
270
|
-
if (strlen(file) + strlen(GZ_SUFFIX) >= sizeof(outfile)) {
|
271
|
-
fprintf(stderr, "%s: filename too long\n", prog);
|
272
|
-
exit(1);
|
273
|
-
}
|
274
|
-
|
275
|
-
strcpy(outfile, file);
|
276
|
-
strcat(outfile, GZ_SUFFIX);
|
277
|
-
|
278
|
-
in = fopen(file, "rb");
|
279
|
-
if (in == NULL) {
|
280
|
-
perror(file);
|
281
|
-
exit(1);
|
282
|
-
}
|
283
|
-
out = gzopen(outfile, mode);
|
284
|
-
if (out == NULL) {
|
285
|
-
fprintf(stderr, "%s: can't gzopen %s\n", prog, outfile);
|
286
|
-
exit(1);
|
287
|
-
}
|
288
|
-
gz_compress(in, out);
|
289
|
-
|
290
|
-
unlink(file);
|
291
|
-
}
|
292
|
-
|
293
|
-
|
294
|
-
/* ===========================================================================
|
295
|
-
* Uncompress the given file and remove the original.
|
296
|
-
*/
|
297
|
-
void file_uncompress(file)
|
298
|
-
char *file;
|
299
|
-
{
|
300
|
-
local char buf[MAX_NAME_LEN];
|
301
|
-
char *infile, *outfile;
|
302
|
-
FILE *out;
|
303
|
-
gzFile in;
|
304
|
-
size_t len = strlen(file);
|
305
|
-
|
306
|
-
if (len + strlen(GZ_SUFFIX) >= sizeof(buf)) {
|
307
|
-
fprintf(stderr, "%s: filename too long\n", prog);
|
308
|
-
exit(1);
|
309
|
-
}
|
310
|
-
|
311
|
-
strcpy(buf, file);
|
312
|
-
|
313
|
-
if (len > SUFFIX_LEN && strcmp(file+len-SUFFIX_LEN, GZ_SUFFIX) == 0) {
|
314
|
-
infile = file;
|
315
|
-
outfile = buf;
|
316
|
-
outfile[len-3] = '\0';
|
317
|
-
} else {
|
318
|
-
outfile = file;
|
319
|
-
infile = buf;
|
320
|
-
strcat(infile, GZ_SUFFIX);
|
321
|
-
}
|
322
|
-
in = gzopen(infile, "rb");
|
323
|
-
if (in == NULL) {
|
324
|
-
fprintf(stderr, "%s: can't gzopen %s\n", prog, infile);
|
325
|
-
exit(1);
|
326
|
-
}
|
327
|
-
out = fopen(outfile, "wb");
|
328
|
-
if (out == NULL) {
|
329
|
-
perror(file);
|
330
|
-
exit(1);
|
331
|
-
}
|
332
|
-
|
333
|
-
gz_uncompress(in, out);
|
334
|
-
|
335
|
-
unlink(infile);
|
336
|
-
}
|
337
|
-
|
338
|
-
|
339
|
-
/* ===========================================================================
|
340
|
-
* Usage: minigzip [-c] [-d] [-f] [-h] [-r] [-1 to -9] [files...]
|
341
|
-
* -c : write to standard output
|
342
|
-
* -d : decompress
|
343
|
-
* -f : compress with Z_FILTERED
|
344
|
-
* -h : compress with Z_HUFFMAN_ONLY
|
345
|
-
* -r : compress with Z_RLE
|
346
|
-
* -1 to -9 : compression level
|
347
|
-
*/
|
348
|
-
|
349
|
-
int main(argc, argv)
|
350
|
-
int argc;
|
351
|
-
char *argv[];
|
352
|
-
{
|
353
|
-
int copyout = 0;
|
354
|
-
int uncompr = 0;
|
355
|
-
gzFile file;
|
356
|
-
char *bname, outmode[20];
|
357
|
-
|
358
|
-
strcpy(outmode, "wb6 ");
|
359
|
-
|
360
|
-
prog = argv[0];
|
361
|
-
bname = strrchr(argv[0], '/');
|
362
|
-
if (bname)
|
363
|
-
bname++;
|
364
|
-
else
|
365
|
-
bname = argv[0];
|
366
|
-
argc--, argv++;
|
367
|
-
|
368
|
-
if (!strcmp(bname, "gunzip"))
|
369
|
-
uncompr = 1;
|
370
|
-
else if (!strcmp(bname, "zcat"))
|
371
|
-
copyout = uncompr = 1;
|
372
|
-
|
373
|
-
while (argc > 0) {
|
374
|
-
if (strcmp(*argv, "-c") == 0)
|
375
|
-
copyout = 1;
|
376
|
-
else if (strcmp(*argv, "-d") == 0)
|
377
|
-
uncompr = 1;
|
378
|
-
else if (strcmp(*argv, "-f") == 0)
|
379
|
-
outmode[3] = 'f';
|
380
|
-
else if (strcmp(*argv, "-h") == 0)
|
381
|
-
outmode[3] = 'h';
|
382
|
-
else if (strcmp(*argv, "-r") == 0)
|
383
|
-
outmode[3] = 'R';
|
384
|
-
else if ((*argv)[0] == '-' && (*argv)[1] >= '1' && (*argv)[1] <= '9' &&
|
385
|
-
(*argv)[2] == 0)
|
386
|
-
outmode[2] = (*argv)[1];
|
387
|
-
else
|
388
|
-
break;
|
389
|
-
argc--, argv++;
|
390
|
-
}
|
391
|
-
if (outmode[3] == ' ')
|
392
|
-
outmode[3] = 0;
|
393
|
-
if (argc == 0) {
|
394
|
-
SET_BINARY_MODE(stdin);
|
395
|
-
SET_BINARY_MODE(stdout);
|
396
|
-
if (uncompr) {
|
397
|
-
file = gzdopen(fileno(stdin), "rb");
|
398
|
-
if (file == NULL) error("can't gzdopen stdin");
|
399
|
-
gz_uncompress(file, stdout);
|
400
|
-
} else {
|
401
|
-
file = gzdopen(fileno(stdout), outmode);
|
402
|
-
if (file == NULL) error("can't gzdopen stdout");
|
403
|
-
gz_compress(stdin, file);
|
404
|
-
}
|
405
|
-
} else {
|
406
|
-
if (copyout) {
|
407
|
-
SET_BINARY_MODE(stdout);
|
408
|
-
}
|
409
|
-
do {
|
410
|
-
if (uncompr) {
|
411
|
-
if (copyout) {
|
412
|
-
file = gzopen(*argv, "rb");
|
413
|
-
if (file == NULL)
|
414
|
-
fprintf(stderr, "%s: can't gzopen %s\n", prog, *argv);
|
415
|
-
else
|
416
|
-
gz_uncompress(file, stdout);
|
417
|
-
} else {
|
418
|
-
file_uncompress(*argv);
|
419
|
-
}
|
420
|
-
} else {
|
421
|
-
if (copyout) {
|
422
|
-
FILE * in = fopen(*argv, "rb");
|
423
|
-
|
424
|
-
if (in == NULL) {
|
425
|
-
perror(*argv);
|
426
|
-
} else {
|
427
|
-
file = gzdopen(fileno(stdout), outmode);
|
428
|
-
if (file == NULL) error("can't gzdopen stdout");
|
429
|
-
|
430
|
-
gz_compress(in, file);
|
431
|
-
}
|
432
|
-
|
433
|
-
} else {
|
434
|
-
file_compress(*argv, outmode);
|
435
|
-
}
|
436
|
-
}
|
437
|
-
} while (argv++, --argc);
|
438
|
-
}
|
439
|
-
return 0;
|
440
|
-
}
|
data/ext/zlib-1.2.5/uncompr.c
DELETED
@@ -1,59 +0,0 @@
|
|
1
|
-
/* uncompr.c -- decompress a memory buffer
|
2
|
-
* Copyright (C) 1995-2003, 2010 Jean-loup Gailly.
|
3
|
-
* For conditions of distribution and use, see copyright notice in zlib.h
|
4
|
-
*/
|
5
|
-
|
6
|
-
/* @(#) $Id$ */
|
7
|
-
|
8
|
-
#define ZLIB_INTERNAL
|
9
|
-
#include "zlib.h"
|
10
|
-
|
11
|
-
/* ===========================================================================
|
12
|
-
Decompresses the source buffer into the destination buffer. sourceLen is
|
13
|
-
the byte length of the source buffer. Upon entry, destLen is the total
|
14
|
-
size of the destination buffer, which must be large enough to hold the
|
15
|
-
entire uncompressed data. (The size of the uncompressed data must have
|
16
|
-
been saved previously by the compressor and transmitted to the decompressor
|
17
|
-
by some mechanism outside the scope of this compression library.)
|
18
|
-
Upon exit, destLen is the actual size of the compressed buffer.
|
19
|
-
|
20
|
-
uncompress returns Z_OK if success, Z_MEM_ERROR if there was not
|
21
|
-
enough memory, Z_BUF_ERROR if there was not enough room in the output
|
22
|
-
buffer, or Z_DATA_ERROR if the input data was corrupted.
|
23
|
-
*/
|
24
|
-
int ZEXPORT uncompress (dest, destLen, source, sourceLen)
|
25
|
-
Bytef *dest;
|
26
|
-
uLongf *destLen;
|
27
|
-
const Bytef *source;
|
28
|
-
uLong sourceLen;
|
29
|
-
{
|
30
|
-
z_stream stream;
|
31
|
-
int err;
|
32
|
-
|
33
|
-
stream.next_in = (Bytef*)source;
|
34
|
-
stream.avail_in = (uInt)sourceLen;
|
35
|
-
/* Check for source > 64K on 16-bit machine: */
|
36
|
-
if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
|
37
|
-
|
38
|
-
stream.next_out = dest;
|
39
|
-
stream.avail_out = (uInt)*destLen;
|
40
|
-
if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
|
41
|
-
|
42
|
-
stream.zalloc = (alloc_func)0;
|
43
|
-
stream.zfree = (free_func)0;
|
44
|
-
|
45
|
-
err = inflateInit(&stream);
|
46
|
-
if (err != Z_OK) return err;
|
47
|
-
|
48
|
-
err = inflate(&stream, Z_FINISH);
|
49
|
-
if (err != Z_STREAM_END) {
|
50
|
-
inflateEnd(&stream);
|
51
|
-
if (err == Z_NEED_DICT || (err == Z_BUF_ERROR && stream.avail_in == 0))
|
52
|
-
return Z_DATA_ERROR;
|
53
|
-
return err;
|
54
|
-
}
|
55
|
-
*destLen = stream.total_out;
|
56
|
-
|
57
|
-
err = inflateEnd(&stream);
|
58
|
-
return err;
|
59
|
-
}
|