libarchive-static 1.0.5 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- 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_internal.h +0 -1
- 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 +244 -137
- 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
@@ -1,257 +0,0 @@
|
|
1
|
-
/*-
|
2
|
-
* Copyright (c) 2003-2007 Tim Kientzle
|
3
|
-
* All rights reserved.
|
4
|
-
*
|
5
|
-
* Redistribution and use in source and binary forms, with or without
|
6
|
-
* modification, are permitted provided that the following conditions
|
7
|
-
* are met:
|
8
|
-
* 1. Redistributions of source code must retain the above copyright
|
9
|
-
* notice, this list of conditions and the following disclaimer.
|
10
|
-
* 2. Redistributions in binary form must reproduce the above copyright
|
11
|
-
* notice, this list of conditions and the following disclaimer in the
|
12
|
-
* documentation and/or other materials provided with the distribution.
|
13
|
-
*
|
14
|
-
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
|
15
|
-
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
16
|
-
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
17
|
-
* IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
|
18
|
-
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
19
|
-
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
20
|
-
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
21
|
-
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
22
|
-
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
23
|
-
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
24
|
-
*/
|
25
|
-
|
26
|
-
#include "archive_platform.h"
|
27
|
-
__FBSDID("$FreeBSD: head/lib/libarchive/archive_write_set_compression_none.c 201080 2009-12-28 02:03:54Z kientzle $");
|
28
|
-
|
29
|
-
#ifdef HAVE_ERRNO_H
|
30
|
-
#include <errno.h>
|
31
|
-
#endif
|
32
|
-
#ifdef HAVE_STDLIB_H
|
33
|
-
#include <stdlib.h>
|
34
|
-
#endif
|
35
|
-
#ifdef HAVE_STRING_H
|
36
|
-
#include <string.h>
|
37
|
-
#endif
|
38
|
-
|
39
|
-
#include "archive.h"
|
40
|
-
#include "archive_private.h"
|
41
|
-
#include "archive_write_private.h"
|
42
|
-
|
43
|
-
static int archive_compressor_none_finish(struct archive_write *a);
|
44
|
-
static int archive_compressor_none_init(struct archive_write *);
|
45
|
-
static int archive_compressor_none_write(struct archive_write *,
|
46
|
-
const void *, size_t);
|
47
|
-
|
48
|
-
struct archive_none {
|
49
|
-
char *buffer;
|
50
|
-
ssize_t buffer_size;
|
51
|
-
char *next; /* Current insert location */
|
52
|
-
ssize_t avail; /* Free space left in buffer */
|
53
|
-
};
|
54
|
-
|
55
|
-
int
|
56
|
-
archive_write_set_compression_none(struct archive *_a)
|
57
|
-
{
|
58
|
-
struct archive_write *a = (struct archive_write *)_a;
|
59
|
-
__archive_check_magic(&a->archive, ARCHIVE_WRITE_MAGIC,
|
60
|
-
ARCHIVE_STATE_NEW, "archive_write_set_compression_none");
|
61
|
-
a->compressor.init = &archive_compressor_none_init;
|
62
|
-
return (0);
|
63
|
-
}
|
64
|
-
|
65
|
-
/*
|
66
|
-
* Setup callback.
|
67
|
-
*/
|
68
|
-
static int
|
69
|
-
archive_compressor_none_init(struct archive_write *a)
|
70
|
-
{
|
71
|
-
int ret;
|
72
|
-
struct archive_none *state;
|
73
|
-
|
74
|
-
a->archive.compression_code = ARCHIVE_COMPRESSION_NONE;
|
75
|
-
a->archive.compression_name = "none";
|
76
|
-
|
77
|
-
if (a->client_opener != NULL) {
|
78
|
-
ret = (a->client_opener)(&a->archive, a->client_data);
|
79
|
-
if (ret != 0)
|
80
|
-
return (ret);
|
81
|
-
}
|
82
|
-
|
83
|
-
state = (struct archive_none *)malloc(sizeof(*state));
|
84
|
-
if (state == NULL) {
|
85
|
-
archive_set_error(&a->archive, ENOMEM,
|
86
|
-
"Can't allocate data for output buffering");
|
87
|
-
return (ARCHIVE_FATAL);
|
88
|
-
}
|
89
|
-
memset(state, 0, sizeof(*state));
|
90
|
-
|
91
|
-
state->buffer_size = a->bytes_per_block;
|
92
|
-
if (state->buffer_size != 0) {
|
93
|
-
state->buffer = (char *)malloc(state->buffer_size);
|
94
|
-
if (state->buffer == NULL) {
|
95
|
-
archive_set_error(&a->archive, ENOMEM,
|
96
|
-
"Can't allocate output buffer");
|
97
|
-
free(state);
|
98
|
-
return (ARCHIVE_FATAL);
|
99
|
-
}
|
100
|
-
}
|
101
|
-
|
102
|
-
state->next = state->buffer;
|
103
|
-
state->avail = state->buffer_size;
|
104
|
-
|
105
|
-
a->compressor.data = state;
|
106
|
-
a->compressor.write = archive_compressor_none_write;
|
107
|
-
a->compressor.finish = archive_compressor_none_finish;
|
108
|
-
return (ARCHIVE_OK);
|
109
|
-
}
|
110
|
-
|
111
|
-
/*
|
112
|
-
* Write data to the stream.
|
113
|
-
*/
|
114
|
-
static int
|
115
|
-
archive_compressor_none_write(struct archive_write *a, const void *vbuff,
|
116
|
-
size_t length)
|
117
|
-
{
|
118
|
-
const char *buff;
|
119
|
-
ssize_t remaining, to_copy;
|
120
|
-
ssize_t bytes_written;
|
121
|
-
struct archive_none *state;
|
122
|
-
|
123
|
-
state = (struct archive_none *)a->compressor.data;
|
124
|
-
buff = (const char *)vbuff;
|
125
|
-
if (a->client_writer == NULL) {
|
126
|
-
archive_set_error(&a->archive, ARCHIVE_ERRNO_PROGRAMMER,
|
127
|
-
"No write callback is registered? "
|
128
|
-
"This is probably an internal programming error.");
|
129
|
-
return (ARCHIVE_FATAL);
|
130
|
-
}
|
131
|
-
|
132
|
-
remaining = length;
|
133
|
-
|
134
|
-
/*
|
135
|
-
* If there is no buffer for blocking, just pass the data
|
136
|
-
* straight through to the client write callback. In
|
137
|
-
* particular, this supports "no write delay" operation for
|
138
|
-
* special applications. Just set the block size to zero.
|
139
|
-
*/
|
140
|
-
if (state->buffer_size == 0) {
|
141
|
-
while (remaining > 0) {
|
142
|
-
bytes_written = (a->client_writer)(&a->archive,
|
143
|
-
a->client_data, buff, remaining);
|
144
|
-
if (bytes_written <= 0)
|
145
|
-
return (ARCHIVE_FATAL);
|
146
|
-
a->archive.raw_position += bytes_written;
|
147
|
-
remaining -= bytes_written;
|
148
|
-
buff += bytes_written;
|
149
|
-
}
|
150
|
-
a->archive.file_position += length;
|
151
|
-
return (ARCHIVE_OK);
|
152
|
-
}
|
153
|
-
|
154
|
-
/* If the copy buffer isn't empty, try to fill it. */
|
155
|
-
if (state->avail < state->buffer_size) {
|
156
|
-
/* If buffer is not empty... */
|
157
|
-
/* ... copy data into buffer ... */
|
158
|
-
to_copy = (remaining > state->avail) ?
|
159
|
-
state->avail : remaining;
|
160
|
-
memcpy(state->next, buff, to_copy);
|
161
|
-
state->next += to_copy;
|
162
|
-
state->avail -= to_copy;
|
163
|
-
buff += to_copy;
|
164
|
-
remaining -= to_copy;
|
165
|
-
/* ... if it's full, write it out. */
|
166
|
-
if (state->avail == 0) {
|
167
|
-
bytes_written = (a->client_writer)(&a->archive,
|
168
|
-
a->client_data, state->buffer, state->buffer_size);
|
169
|
-
if (bytes_written <= 0)
|
170
|
-
return (ARCHIVE_FATAL);
|
171
|
-
/* XXX TODO: if bytes_written < state->buffer_size */
|
172
|
-
a->archive.raw_position += bytes_written;
|
173
|
-
state->next = state->buffer;
|
174
|
-
state->avail = state->buffer_size;
|
175
|
-
}
|
176
|
-
}
|
177
|
-
|
178
|
-
while (remaining > state->buffer_size) {
|
179
|
-
/* Write out full blocks directly to client. */
|
180
|
-
bytes_written = (a->client_writer)(&a->archive,
|
181
|
-
a->client_data, buff, state->buffer_size);
|
182
|
-
if (bytes_written <= 0)
|
183
|
-
return (ARCHIVE_FATAL);
|
184
|
-
a->archive.raw_position += bytes_written;
|
185
|
-
buff += bytes_written;
|
186
|
-
remaining -= bytes_written;
|
187
|
-
}
|
188
|
-
|
189
|
-
if (remaining > 0) {
|
190
|
-
/* Copy last bit into copy buffer. */
|
191
|
-
memcpy(state->next, buff, remaining);
|
192
|
-
state->next += remaining;
|
193
|
-
state->avail -= remaining;
|
194
|
-
}
|
195
|
-
|
196
|
-
a->archive.file_position += length;
|
197
|
-
return (ARCHIVE_OK);
|
198
|
-
}
|
199
|
-
|
200
|
-
|
201
|
-
/*
|
202
|
-
* Finish the compression.
|
203
|
-
*/
|
204
|
-
static int
|
205
|
-
archive_compressor_none_finish(struct archive_write *a)
|
206
|
-
{
|
207
|
-
ssize_t block_length;
|
208
|
-
ssize_t target_block_length;
|
209
|
-
ssize_t bytes_written;
|
210
|
-
int ret;
|
211
|
-
struct archive_none *state;
|
212
|
-
|
213
|
-
state = (struct archive_none *)a->compressor.data;
|
214
|
-
ret = ARCHIVE_OK;
|
215
|
-
if (a->client_writer == NULL) {
|
216
|
-
archive_set_error(&a->archive, ARCHIVE_ERRNO_PROGRAMMER,
|
217
|
-
"No write callback is registered? "
|
218
|
-
"This is probably an internal programming error.");
|
219
|
-
return (ARCHIVE_FATAL);
|
220
|
-
}
|
221
|
-
|
222
|
-
/* If there's pending data, pad and write the last block */
|
223
|
-
if (state->next != state->buffer) {
|
224
|
-
block_length = state->buffer_size - state->avail;
|
225
|
-
|
226
|
-
/* Tricky calculation to determine size of last block */
|
227
|
-
if (a->bytes_in_last_block <= 0)
|
228
|
-
/* Default or Zero: pad to full block */
|
229
|
-
target_block_length = a->bytes_per_block;
|
230
|
-
else
|
231
|
-
/* Round to next multiple of bytes_in_last_block. */
|
232
|
-
target_block_length = a->bytes_in_last_block *
|
233
|
-
( (block_length + a->bytes_in_last_block - 1) /
|
234
|
-
a->bytes_in_last_block);
|
235
|
-
if (target_block_length > a->bytes_per_block)
|
236
|
-
target_block_length = a->bytes_per_block;
|
237
|
-
if (block_length < target_block_length) {
|
238
|
-
memset(state->next, 0,
|
239
|
-
target_block_length - block_length);
|
240
|
-
block_length = target_block_length;
|
241
|
-
}
|
242
|
-
bytes_written = (a->client_writer)(&a->archive,
|
243
|
-
a->client_data, state->buffer, block_length);
|
244
|
-
if (bytes_written <= 0)
|
245
|
-
ret = ARCHIVE_FATAL;
|
246
|
-
else {
|
247
|
-
a->archive.raw_position += bytes_written;
|
248
|
-
ret = ARCHIVE_OK;
|
249
|
-
}
|
250
|
-
}
|
251
|
-
if (state->buffer)
|
252
|
-
free(state->buffer);
|
253
|
-
free(state);
|
254
|
-
a->compressor.data = NULL;
|
255
|
-
|
256
|
-
return (ret);
|
257
|
-
}
|
@@ -1,347 +0,0 @@
|
|
1
|
-
/*-
|
2
|
-
* Copyright (c) 2007 Joerg Sonnenberger
|
3
|
-
* All rights reserved.
|
4
|
-
*
|
5
|
-
* Redistribution and use in source and binary forms, with or without
|
6
|
-
* modification, are permitted provided that the following conditions
|
7
|
-
* are met:
|
8
|
-
* 1. Redistributions of source code must retain the above copyright
|
9
|
-
* notice, this list of conditions and the following disclaimer.
|
10
|
-
* 2. Redistributions in binary form must reproduce the above copyright
|
11
|
-
* notice, this list of conditions and the following disclaimer in the
|
12
|
-
* documentation and/or other materials provided with the distribution.
|
13
|
-
*
|
14
|
-
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
|
15
|
-
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
16
|
-
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
17
|
-
* IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
|
18
|
-
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
19
|
-
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
20
|
-
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
21
|
-
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
22
|
-
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
23
|
-
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
24
|
-
*/
|
25
|
-
|
26
|
-
#include "archive_platform.h"
|
27
|
-
|
28
|
-
__FBSDID("$FreeBSD: head/lib/libarchive/archive_write_set_compression_program.c 201104 2009-12-28 03:14:30Z kientzle $");
|
29
|
-
|
30
|
-
/* This capability is only available on POSIX systems. */
|
31
|
-
#if (!defined(HAVE_PIPE) || !defined(HAVE_FCNTL) || \
|
32
|
-
!(defined(HAVE_FORK) || defined(HAVE_VFORK))) && (!defined(_WIN32) || defined(__CYGWIN__))
|
33
|
-
#include "archive.h"
|
34
|
-
|
35
|
-
/*
|
36
|
-
* On non-Posix systems, allow the program to build, but choke if
|
37
|
-
* this function is actually invoked.
|
38
|
-
*/
|
39
|
-
int
|
40
|
-
archive_write_set_compression_program(struct archive *_a, const char *cmd)
|
41
|
-
{
|
42
|
-
archive_set_error(_a, -1,
|
43
|
-
"External compression programs not supported on this platform");
|
44
|
-
return (ARCHIVE_FATAL);
|
45
|
-
}
|
46
|
-
|
47
|
-
#else
|
48
|
-
|
49
|
-
#ifdef HAVE_SYS_WAIT_H
|
50
|
-
# include <sys/wait.h>
|
51
|
-
#endif
|
52
|
-
#ifdef HAVE_ERRNO_H
|
53
|
-
# include <errno.h>
|
54
|
-
#endif
|
55
|
-
#ifdef HAVE_FCNTL_H
|
56
|
-
# include <fcntl.h>
|
57
|
-
#endif
|
58
|
-
#ifdef HAVE_STDLIB_H
|
59
|
-
# include <stdlib.h>
|
60
|
-
#endif
|
61
|
-
#ifdef HAVE_STRING_H
|
62
|
-
# include <string.h>
|
63
|
-
#endif
|
64
|
-
|
65
|
-
#include "archive.h"
|
66
|
-
#include "archive_private.h"
|
67
|
-
#include "archive_write_private.h"
|
68
|
-
|
69
|
-
#include "filter_fork.h"
|
70
|
-
|
71
|
-
struct private_data {
|
72
|
-
char *description;
|
73
|
-
pid_t child;
|
74
|
-
int child_stdin, child_stdout;
|
75
|
-
|
76
|
-
char *child_buf;
|
77
|
-
size_t child_buf_len, child_buf_avail;
|
78
|
-
};
|
79
|
-
|
80
|
-
static int archive_compressor_program_finish(struct archive_write *);
|
81
|
-
static int archive_compressor_program_init(struct archive_write *);
|
82
|
-
static int archive_compressor_program_write(struct archive_write *,
|
83
|
-
const void *, size_t);
|
84
|
-
|
85
|
-
/*
|
86
|
-
* Allocate, initialize and return a archive object.
|
87
|
-
*/
|
88
|
-
int
|
89
|
-
archive_write_set_compression_program(struct archive *_a, const char *cmd)
|
90
|
-
{
|
91
|
-
struct archive_write *a = (struct archive_write *)_a;
|
92
|
-
__archive_check_magic(&a->archive, ARCHIVE_WRITE_MAGIC,
|
93
|
-
ARCHIVE_STATE_NEW, "archive_write_set_compression_program");
|
94
|
-
a->compressor.init = &archive_compressor_program_init;
|
95
|
-
a->compressor.config = strdup(cmd);
|
96
|
-
return (ARCHIVE_OK);
|
97
|
-
}
|
98
|
-
|
99
|
-
/*
|
100
|
-
* Setup callback.
|
101
|
-
*/
|
102
|
-
static int
|
103
|
-
archive_compressor_program_init(struct archive_write *a)
|
104
|
-
{
|
105
|
-
int ret;
|
106
|
-
struct private_data *state;
|
107
|
-
static const char *prefix = "Program: ";
|
108
|
-
char *cmd = a->compressor.config;
|
109
|
-
|
110
|
-
if (a->client_opener != NULL) {
|
111
|
-
ret = (a->client_opener)(&a->archive, a->client_data);
|
112
|
-
if (ret != ARCHIVE_OK)
|
113
|
-
return (ret);
|
114
|
-
}
|
115
|
-
|
116
|
-
state = (struct private_data *)malloc(sizeof(*state));
|
117
|
-
if (state == NULL) {
|
118
|
-
archive_set_error(&a->archive, ENOMEM,
|
119
|
-
"Can't allocate data for compression");
|
120
|
-
return (ARCHIVE_FATAL);
|
121
|
-
}
|
122
|
-
memset(state, 0, sizeof(*state));
|
123
|
-
|
124
|
-
a->archive.compression_code = ARCHIVE_COMPRESSION_PROGRAM;
|
125
|
-
state->description = (char *)malloc(strlen(prefix) + strlen(cmd) + 1);
|
126
|
-
strcpy(state->description, prefix);
|
127
|
-
strcat(state->description, cmd);
|
128
|
-
a->archive.compression_name = state->description;
|
129
|
-
|
130
|
-
state->child_buf_len = a->bytes_per_block;
|
131
|
-
state->child_buf_avail = 0;
|
132
|
-
state->child_buf = malloc(state->child_buf_len);
|
133
|
-
|
134
|
-
if (state->child_buf == NULL) {
|
135
|
-
archive_set_error(&a->archive, ENOMEM,
|
136
|
-
"Can't allocate data for compression buffer");
|
137
|
-
free(state);
|
138
|
-
return (ARCHIVE_FATAL);
|
139
|
-
}
|
140
|
-
|
141
|
-
if ((state->child = __archive_create_child(cmd,
|
142
|
-
&state->child_stdin, &state->child_stdout)) == -1) {
|
143
|
-
archive_set_error(&a->archive, EINVAL,
|
144
|
-
"Can't initialise filter");
|
145
|
-
free(state->child_buf);
|
146
|
-
free(state);
|
147
|
-
return (ARCHIVE_FATAL);
|
148
|
-
}
|
149
|
-
|
150
|
-
a->compressor.write = archive_compressor_program_write;
|
151
|
-
a->compressor.finish = archive_compressor_program_finish;
|
152
|
-
|
153
|
-
a->compressor.data = state;
|
154
|
-
return (0);
|
155
|
-
}
|
156
|
-
|
157
|
-
static ssize_t
|
158
|
-
child_write(struct archive_write *a, const char *buf, size_t buf_len)
|
159
|
-
{
|
160
|
-
struct private_data *state = a->compressor.data;
|
161
|
-
ssize_t ret;
|
162
|
-
|
163
|
-
if (state->child_stdin == -1)
|
164
|
-
return (-1);
|
165
|
-
|
166
|
-
if (buf_len == 0)
|
167
|
-
return (-1);
|
168
|
-
|
169
|
-
restart_write:
|
170
|
-
do {
|
171
|
-
ret = write(state->child_stdin, buf, buf_len);
|
172
|
-
} while (ret == -1 && errno == EINTR);
|
173
|
-
|
174
|
-
if (ret > 0)
|
175
|
-
return (ret);
|
176
|
-
if (ret == 0) {
|
177
|
-
close(state->child_stdin);
|
178
|
-
state->child_stdin = -1;
|
179
|
-
fcntl(state->child_stdout, F_SETFL, 0);
|
180
|
-
return (0);
|
181
|
-
}
|
182
|
-
if (ret == -1 && errno != EAGAIN)
|
183
|
-
return (-1);
|
184
|
-
|
185
|
-
if (state->child_stdout == -1) {
|
186
|
-
fcntl(state->child_stdin, F_SETFL, 0);
|
187
|
-
__archive_check_child(state->child_stdin, state->child_stdout);
|
188
|
-
goto restart_write;
|
189
|
-
}
|
190
|
-
|
191
|
-
do {
|
192
|
-
ret = read(state->child_stdout,
|
193
|
-
state->child_buf + state->child_buf_avail,
|
194
|
-
state->child_buf_len - state->child_buf_avail);
|
195
|
-
} while (ret == -1 && errno == EINTR);
|
196
|
-
|
197
|
-
if (ret == 0 || (ret == -1 && errno == EPIPE)) {
|
198
|
-
close(state->child_stdout);
|
199
|
-
state->child_stdout = -1;
|
200
|
-
fcntl(state->child_stdin, F_SETFL, 0);
|
201
|
-
goto restart_write;
|
202
|
-
}
|
203
|
-
if (ret == -1 && errno == EAGAIN) {
|
204
|
-
__archive_check_child(state->child_stdin, state->child_stdout);
|
205
|
-
goto restart_write;
|
206
|
-
}
|
207
|
-
if (ret == -1)
|
208
|
-
return (-1);
|
209
|
-
|
210
|
-
state->child_buf_avail += ret;
|
211
|
-
|
212
|
-
ret = (a->client_writer)(&a->archive, a->client_data,
|
213
|
-
state->child_buf, state->child_buf_avail);
|
214
|
-
if (ret <= 0)
|
215
|
-
return (-1);
|
216
|
-
|
217
|
-
if ((size_t)ret < state->child_buf_avail) {
|
218
|
-
memmove(state->child_buf, state->child_buf + ret,
|
219
|
-
state->child_buf_avail - ret);
|
220
|
-
}
|
221
|
-
state->child_buf_avail -= ret;
|
222
|
-
a->archive.raw_position += ret;
|
223
|
-
goto restart_write;
|
224
|
-
}
|
225
|
-
|
226
|
-
/*
|
227
|
-
* Write data to the compressed stream.
|
228
|
-
*/
|
229
|
-
static int
|
230
|
-
archive_compressor_program_write(struct archive_write *a, const void *buff,
|
231
|
-
size_t length)
|
232
|
-
{
|
233
|
-
ssize_t ret;
|
234
|
-
const char *buf;
|
235
|
-
|
236
|
-
if (a->client_writer == NULL) {
|
237
|
-
archive_set_error(&a->archive, ARCHIVE_ERRNO_PROGRAMMER,
|
238
|
-
"No write callback is registered? "
|
239
|
-
"This is probably an internal programming error.");
|
240
|
-
return (ARCHIVE_FATAL);
|
241
|
-
}
|
242
|
-
|
243
|
-
buf = buff;
|
244
|
-
while (length > 0) {
|
245
|
-
ret = child_write(a, buf, length);
|
246
|
-
if (ret == -1 || ret == 0) {
|
247
|
-
archive_set_error(&a->archive, EIO,
|
248
|
-
"Can't write to filter");
|
249
|
-
return (ARCHIVE_FATAL);
|
250
|
-
}
|
251
|
-
length -= ret;
|
252
|
-
buf += ret;
|
253
|
-
}
|
254
|
-
|
255
|
-
a->archive.file_position += length;
|
256
|
-
return (ARCHIVE_OK);
|
257
|
-
}
|
258
|
-
|
259
|
-
|
260
|
-
/*
|
261
|
-
* Finish the compression...
|
262
|
-
*/
|
263
|
-
static int
|
264
|
-
archive_compressor_program_finish(struct archive_write *a)
|
265
|
-
{
|
266
|
-
int ret, status;
|
267
|
-
ssize_t bytes_read, bytes_written;
|
268
|
-
struct private_data *state;
|
269
|
-
|
270
|
-
state = (struct private_data *)a->compressor.data;
|
271
|
-
ret = 0;
|
272
|
-
if (a->client_writer == NULL) {
|
273
|
-
archive_set_error(&a->archive, ARCHIVE_ERRNO_PROGRAMMER,
|
274
|
-
"No write callback is registered? "
|
275
|
-
"This is probably an internal programming error.");
|
276
|
-
ret = ARCHIVE_FATAL;
|
277
|
-
goto cleanup;
|
278
|
-
}
|
279
|
-
|
280
|
-
/* XXX pad compressed data. */
|
281
|
-
|
282
|
-
close(state->child_stdin);
|
283
|
-
state->child_stdin = -1;
|
284
|
-
fcntl(state->child_stdout, F_SETFL, 0);
|
285
|
-
|
286
|
-
for (;;) {
|
287
|
-
do {
|
288
|
-
bytes_read = read(state->child_stdout,
|
289
|
-
state->child_buf + state->child_buf_avail,
|
290
|
-
state->child_buf_len - state->child_buf_avail);
|
291
|
-
} while (bytes_read == -1 && errno == EINTR);
|
292
|
-
|
293
|
-
if (bytes_read == 0 || (bytes_read == -1 && errno == EPIPE))
|
294
|
-
break;
|
295
|
-
|
296
|
-
if (bytes_read == -1) {
|
297
|
-
archive_set_error(&a->archive, errno,
|
298
|
-
"Read from filter failed unexpectedly.");
|
299
|
-
ret = ARCHIVE_FATAL;
|
300
|
-
goto cleanup;
|
301
|
-
}
|
302
|
-
state->child_buf_avail += bytes_read;
|
303
|
-
|
304
|
-
bytes_written = (a->client_writer)(&a->archive, a->client_data,
|
305
|
-
state->child_buf, state->child_buf_avail);
|
306
|
-
if (bytes_written <= 0) {
|
307
|
-
ret = ARCHIVE_FATAL;
|
308
|
-
goto cleanup;
|
309
|
-
}
|
310
|
-
if ((size_t)bytes_written < state->child_buf_avail) {
|
311
|
-
memmove(state->child_buf,
|
312
|
-
state->child_buf + bytes_written,
|
313
|
-
state->child_buf_avail - bytes_written);
|
314
|
-
}
|
315
|
-
state->child_buf_avail -= bytes_written;
|
316
|
-
a->archive.raw_position += bytes_written;
|
317
|
-
}
|
318
|
-
|
319
|
-
/* XXX pad final compressed block. */
|
320
|
-
|
321
|
-
cleanup:
|
322
|
-
/* Shut down the child. */
|
323
|
-
if (state->child_stdin != -1)
|
324
|
-
close(state->child_stdin);
|
325
|
-
if (state->child_stdout != -1)
|
326
|
-
close(state->child_stdout);
|
327
|
-
while (waitpid(state->child, &status, 0) == -1 && errno == EINTR)
|
328
|
-
continue;
|
329
|
-
|
330
|
-
if (status != 0) {
|
331
|
-
archive_set_error(&a->archive, EIO,
|
332
|
-
"Filter exited with failure.");
|
333
|
-
ret = ARCHIVE_FATAL;
|
334
|
-
}
|
335
|
-
|
336
|
-
/* Release our configuration data. */
|
337
|
-
free(a->compressor.config);
|
338
|
-
a->compressor.config = NULL;
|
339
|
-
|
340
|
-
/* Release our private state data. */
|
341
|
-
free(state->child_buf);
|
342
|
-
free(state->description);
|
343
|
-
free(state);
|
344
|
-
return (ret);
|
345
|
-
}
|
346
|
-
|
347
|
-
#endif /* !defined(HAVE_PIPE) || !defined(HAVE_VFORK) || !defined(HAVE_FCNTL) */
|