libarchive-static 1.0.6 → 1.1.0

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.
Files changed (295) hide show
  1. checksums.yaml +4 -4
  2. data/ext/extconf.rb +2 -9
  3. data/ext/libarchive-0.1.1/ext/archive_read_support_compression.c +6 -6
  4. data/ext/libarchive-0.1.1/ext/archive_read_support_compression.o +0 -0
  5. data/ext/libarchive-0.1.1/ext/archive_read_support_format.o +0 -0
  6. data/ext/libarchive-0.1.1/ext/archive_write_open_rb_str.c +1 -1
  7. data/ext/libarchive-0.1.1/ext/archive_write_open_rb_str.o +0 -0
  8. data/ext/libarchive-0.1.1/ext/archive_write_set_compression.c +5 -5
  9. data/ext/libarchive-0.1.1/ext/archive_write_set_compression.o +0 -0
  10. data/ext/libarchive-0.1.1/ext/config.h +23 -0
  11. data/ext/libarchive-0.1.1/ext/config.log +230 -0
  12. data/ext/libarchive-0.1.1/ext/config.status +671 -0
  13. data/ext/libarchive-0.1.1/ext/libarchive.c +1 -1
  14. data/ext/libarchive-0.1.1/ext/libarchive.o +0 -0
  15. data/ext/libarchive-0.1.1/ext/libarchive_archive.c +7 -7
  16. data/ext/libarchive-0.1.1/ext/libarchive_archive.o +0 -0
  17. data/ext/libarchive-0.1.1/ext/libarchive_entry.c +6 -0
  18. data/ext/libarchive-0.1.1/ext/libarchive_entry.o +0 -0
  19. data/ext/libarchive-0.1.1/ext/libarchive_reader.c +6 -4
  20. data/ext/libarchive-0.1.1/ext/libarchive_reader.o +0 -0
  21. data/ext/libarchive-0.1.1/ext/libarchive_ruby.so +0 -0
  22. data/ext/libarchive-0.1.1/ext/libarchive_win32.h +1 -1
  23. data/ext/libarchive-0.1.1/ext/libarchive_writer.c +2 -2
  24. data/ext/libarchive-0.1.1/ext/libarchive_writer.o +0 -0
  25. data/ext/libarchive-3.6.2/Makefile.in +16892 -0
  26. data/ext/libarchive-3.6.2/build/autoconf/ax_append_compile_flags.m4 +67 -0
  27. data/ext/libarchive-3.6.2/build/autoconf/ax_append_flag.m4 +71 -0
  28. data/ext/libarchive-3.6.2/build/autoconf/ax_check_compile_flag.m4 +74 -0
  29. data/ext/libarchive-3.6.2/build/autoconf/ax_require_defined.m4 +37 -0
  30. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/build/autoconf/check_stdcall_func.m4 +0 -0
  31. data/ext/libarchive-3.6.2/build/autoconf/compile +348 -0
  32. data/ext/libarchive-3.6.2/build/autoconf/config.guess +1754 -0
  33. data/ext/libarchive-3.6.2/build/autoconf/config.rpath +696 -0
  34. data/ext/libarchive-3.6.2/build/autoconf/config.sub +1890 -0
  35. data/ext/libarchive-3.6.2/build/autoconf/depcomp +791 -0
  36. data/ext/libarchive-3.6.2/build/autoconf/iconv.m4 +271 -0
  37. data/ext/libarchive-3.6.2/build/autoconf/install-sh +541 -0
  38. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/build/autoconf/la_uid_t.m4 +0 -0
  39. data/ext/libarchive-3.6.2/build/autoconf/lib-ld.m4 +109 -0
  40. data/ext/libarchive-3.6.2/build/autoconf/lib-link.m4 +777 -0
  41. data/ext/libarchive-3.6.2/build/autoconf/lib-prefix.m4 +224 -0
  42. data/ext/libarchive-3.6.2/build/autoconf/ltmain.sh +11251 -0
  43. data/ext/libarchive-3.6.2/build/autoconf/m4_ax_compile_check_sizeof.m4 +115 -0
  44. data/ext/libarchive-3.6.2/build/autoconf/missing +215 -0
  45. data/ext/libarchive-3.6.2/build/autoconf/test-driver +153 -0
  46. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/build/pkgconfig/libarchive.pc.in +4 -1
  47. data/ext/libarchive-3.6.2/config.h.in +1504 -0
  48. data/ext/libarchive-3.6.2/configure +25558 -0
  49. data/ext/libarchive-3.6.2/libarchive/archive.h +1212 -0
  50. data/ext/libarchive-3.6.2/libarchive/archive_acl.c +2097 -0
  51. data/ext/libarchive-3.6.2/libarchive/archive_acl_private.h +83 -0
  52. data/ext/libarchive-3.6.2/libarchive/archive_blake2.h +197 -0
  53. data/ext/libarchive-3.6.2/libarchive/archive_blake2_impl.h +161 -0
  54. data/ext/libarchive-3.6.2/libarchive/archive_blake2s_ref.c +369 -0
  55. data/ext/libarchive-3.6.2/libarchive/archive_blake2sp_ref.c +361 -0
  56. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_check_magic.c +63 -22
  57. data/ext/libarchive-3.6.2/libarchive/archive_cmdline.c +227 -0
  58. data/ext/libarchive-3.6.2/libarchive/archive_cmdline_private.h +47 -0
  59. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_crc32.h +17 -0
  60. data/ext/libarchive-3.6.2/libarchive/archive_cryptor.c +534 -0
  61. data/ext/libarchive-3.6.2/libarchive/archive_cryptor_private.h +188 -0
  62. data/ext/libarchive-3.6.2/libarchive/archive_digest.c +1505 -0
  63. data/ext/libarchive-3.6.2/libarchive/archive_digest_private.h +416 -0
  64. data/ext/libarchive-3.6.2/libarchive/archive_disk_acl_darwin.c +559 -0
  65. data/ext/libarchive-3.6.2/libarchive/archive_disk_acl_freebsd.c +712 -0
  66. data/ext/libarchive-3.6.2/libarchive/archive_disk_acl_linux.c +760 -0
  67. data/ext/libarchive-3.6.2/libarchive/archive_disk_acl_sunos.c +824 -0
  68. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_endian.h +48 -15
  69. data/ext/libarchive-3.6.2/libarchive/archive_entry.c +2149 -0
  70. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_entry.h +305 -106
  71. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_entry_copy_bhfi.c +5 -4
  72. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_entry_copy_stat.c +9 -3
  73. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_entry_link_resolver.c +104 -62
  74. data/ext/libarchive-3.6.2/libarchive/archive_entry_locale.h +92 -0
  75. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_entry_private.h +65 -49
  76. data/ext/libarchive-3.6.2/libarchive/archive_entry_sparse.c +156 -0
  77. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_entry_stat.c +6 -6
  78. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_entry_strmode.c +1 -1
  79. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_entry_xattr.c +4 -6
  80. data/ext/libarchive-3.6.2/libarchive/archive_getdate.c +1165 -0
  81. data/ext/libarchive-3.6.2/libarchive/archive_getdate.h +39 -0
  82. data/ext/libarchive-3.6.2/libarchive/archive_hmac.c +334 -0
  83. data/ext/libarchive-3.6.2/libarchive/archive_hmac_private.h +117 -0
  84. data/ext/libarchive-3.6.2/libarchive/archive_match.c +1875 -0
  85. data/ext/libarchive-3.6.2/libarchive/archive_openssl_evp_private.h +53 -0
  86. data/ext/libarchive-3.6.2/libarchive/archive_openssl_hmac_private.h +54 -0
  87. data/ext/libarchive-3.6.2/libarchive/archive_options.c +218 -0
  88. data/ext/libarchive-3.6.2/libarchive/archive_options_private.h +51 -0
  89. data/ext/libarchive-3.6.2/libarchive/archive_pack_dev.c +337 -0
  90. data/ext/libarchive-3.6.2/libarchive/archive_pack_dev.h +49 -0
  91. data/ext/libarchive-3.6.2/libarchive/archive_pathmatch.c +463 -0
  92. data/ext/libarchive-3.6.2/libarchive/archive_pathmatch.h +52 -0
  93. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_platform.h +77 -9
  94. data/ext/libarchive-3.6.2/libarchive/archive_platform_acl.h +55 -0
  95. data/ext/libarchive-3.6.2/libarchive/archive_platform_xattr.h +47 -0
  96. data/ext/libarchive-3.6.2/libarchive/archive_ppmd7.c +1168 -0
  97. data/ext/libarchive-3.6.2/libarchive/archive_ppmd7_private.h +119 -0
  98. data/ext/libarchive-3.6.2/libarchive/archive_ppmd8.c +1287 -0
  99. data/ext/libarchive-3.6.2/libarchive/archive_ppmd8_private.h +148 -0
  100. data/ext/libarchive-3.6.2/libarchive/archive_ppmd_private.h +151 -0
  101. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_private.h +74 -18
  102. data/ext/libarchive-3.6.2/libarchive/archive_random.c +272 -0
  103. data/ext/libarchive-3.6.2/libarchive/archive_random_private.h +36 -0
  104. data/ext/libarchive-3.6.2/libarchive/archive_rb.c +709 -0
  105. data/ext/libarchive-3.6.2/libarchive/archive_rb.h +113 -0
  106. data/ext/libarchive-3.6.2/libarchive/archive_read.c +1756 -0
  107. data/ext/libarchive-3.6.2/libarchive/archive_read_add_passphrase.c +190 -0
  108. data/ext/libarchive-3.6.2/libarchive/archive_read_append_filter.c +204 -0
  109. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_data_into_fd.c +64 -18
  110. data/ext/libarchive-3.6.2/libarchive/archive_read_disk_entry_from_file.c +1086 -0
  111. data/ext/libarchive-3.6.2/libarchive/archive_read_disk_posix.c +2732 -0
  112. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_disk_private.h +40 -4
  113. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_disk_set_standard_lookup.c +21 -11
  114. data/ext/libarchive-3.6.2/libarchive/archive_read_disk_windows.c +2479 -0
  115. data/ext/libarchive-3.6.2/libarchive/archive_read_extract.c +60 -0
  116. data/ext/{libarchive-2.8.4/libarchive/archive_read_extract.c → libarchive-3.6.2/libarchive/archive_read_extract2.c} +34 -61
  117. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_open_fd.c +70 -49
  118. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_open_file.c +38 -23
  119. data/ext/libarchive-3.6.2/libarchive/archive_read_open_filename.c +586 -0
  120. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_open_memory.c +58 -28
  121. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_private.h +127 -59
  122. data/ext/libarchive-3.6.2/libarchive/archive_read_set_format.c +117 -0
  123. data/ext/libarchive-3.6.2/libarchive/archive_read_set_options.c +133 -0
  124. 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
  125. data/ext/libarchive-3.6.2/libarchive/archive_read_support_filter_by_code.c +83 -0
  126. 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
  127. 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
  128. data/ext/libarchive-3.6.2/libarchive/archive_read_support_filter_grzip.c +112 -0
  129. 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
  130. data/ext/libarchive-3.6.2/libarchive/archive_read_support_filter_lrzip.c +122 -0
  131. data/ext/libarchive-3.6.2/libarchive/archive_read_support_filter_lz4.c +742 -0
  132. data/ext/libarchive-3.6.2/libarchive/archive_read_support_filter_lzop.c +499 -0
  133. 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
  134. 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
  135. 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
  136. 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
  137. 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
  138. data/ext/libarchive-3.6.2/libarchive/archive_read_support_filter_zstd.c +297 -0
  139. data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_7zip.c +3900 -0
  140. data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_all.c +89 -0
  141. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_support_format_ar.c +126 -72
  142. data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_by_code.c +92 -0
  143. data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_cab.c +3228 -0
  144. data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_cpio.c +1104 -0
  145. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_support_format_empty.c +14 -11
  146. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_support_format_iso9660.c +990 -541
  147. data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_lha.c +2916 -0
  148. data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_mtree.c +2150 -0
  149. data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_rar.c +3797 -0
  150. data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_rar5.c +4251 -0
  151. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_support_format_raw.c +38 -31
  152. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_support_format_tar.c +1157 -629
  153. data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_warc.c +848 -0
  154. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_support_format_xar.c +439 -258
  155. data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_zip.c +4270 -0
  156. data/ext/libarchive-3.6.2/libarchive/archive_string.c +4240 -0
  157. data/ext/libarchive-3.6.2/libarchive/archive_string.h +243 -0
  158. data/ext/libarchive-3.6.2/libarchive/archive_string_composition.h +2292 -0
  159. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_string_sprintf.c +44 -16
  160. data/ext/libarchive-3.6.2/libarchive/archive_util.c +655 -0
  161. data/ext/libarchive-3.6.2/libarchive/archive_version_details.c +151 -0
  162. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_virtual.c +85 -16
  163. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_windows.c +214 -541
  164. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_windows.h +74 -106
  165. data/ext/libarchive-3.6.2/libarchive/archive_write.c +828 -0
  166. data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter.c +72 -0
  167. data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_b64encode.c +304 -0
  168. data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_by_name.c +77 -0
  169. data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_bzip2.c +401 -0
  170. 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
  171. data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_grzip.c +135 -0
  172. data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_gzip.c +442 -0
  173. data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_lrzip.c +197 -0
  174. data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_lz4.c +700 -0
  175. data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_lzop.c +478 -0
  176. 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
  177. data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_program.c +391 -0
  178. data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_uuencode.c +295 -0
  179. data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_xz.c +545 -0
  180. data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_zstd.c +418 -0
  181. data/ext/libarchive-3.6.2/libarchive/archive_write_disk_posix.c +4711 -0
  182. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_disk_private.h +9 -2
  183. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_disk_set_standard_lookup.c +30 -29
  184. data/ext/libarchive-3.6.2/libarchive/archive_write_disk_windows.c +2842 -0
  185. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_open_fd.c +15 -10
  186. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_open_file.c +15 -9
  187. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_open_filename.c +128 -20
  188. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_open_memory.c +7 -18
  189. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_private.h +72 -29
  190. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_set_format.c +56 -3
  191. data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_7zip.c +2322 -0
  192. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_set_format_ar.c +54 -34
  193. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_set_format_by_name.c +20 -2
  194. data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_cpio.c +11 -0
  195. data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_cpio_binary.c +610 -0
  196. data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_cpio_newc.c +457 -0
  197. data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_cpio_odc.c +500 -0
  198. data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_filter_by_ext.c +142 -0
  199. data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_gnutar.c +755 -0
  200. data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_iso9660.c +8165 -0
  201. data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_mtree.c +2217 -0
  202. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_set_format_pax.c +1049 -387
  203. data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_private.h +42 -0
  204. data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_raw.c +125 -0
  205. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_set_format_shar.c +62 -47
  206. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_set_format_ustar.c +279 -108
  207. data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_v7tar.c +638 -0
  208. data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_warc.c +453 -0
  209. data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_xar.c +3259 -0
  210. data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_zip.c +1704 -0
  211. data/ext/libarchive-3.6.2/libarchive/archive_write_set_options.c +130 -0
  212. data/ext/libarchive-3.6.2/libarchive/archive_write_set_passphrase.c +95 -0
  213. data/ext/libarchive-3.6.2/libarchive/archive_xxhash.h +48 -0
  214. data/ext/libarchive-3.6.2/libarchive/config_freebsd.h +271 -0
  215. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/filter_fork.h +10 -5
  216. data/ext/{libarchive-2.8.4/libarchive/filter_fork.c → libarchive-3.6.2/libarchive/filter_fork_posix.c} +98 -19
  217. data/ext/libarchive-3.6.2/libarchive/filter_fork_windows.c +236 -0
  218. data/ext/libarchive-3.6.2/libarchive/xxhash.c +525 -0
  219. data/ext/libarchive-static-makefile +144 -80
  220. data/ext/libarchive-static-wrapper-makefile +1 -1
  221. data/ext/zlib-1.2.13/Makefile.in +404 -0
  222. data/ext/{zlib-1.2.5 → zlib-1.2.13}/adler32.c +51 -34
  223. data/ext/{zlib-1.2.5 → zlib-1.2.13}/compress.c +27 -21
  224. data/ext/zlib-1.2.13/configure +922 -0
  225. data/ext/zlib-1.2.13/crc32.c +1125 -0
  226. data/ext/zlib-1.2.13/crc32.h +9446 -0
  227. data/ext/{zlib-1.2.5 → zlib-1.2.13}/deflate.c +842 -459
  228. data/ext/{zlib-1.2.5 → zlib-1.2.13}/deflate.h +37 -33
  229. data/ext/{zlib-1.2.5 → zlib-1.2.13}/gzclose.c +0 -0
  230. data/ext/{zlib-1.2.5 → zlib-1.2.13}/gzguts.h +103 -16
  231. data/ext/{zlib-1.2.5 → zlib-1.2.13}/gzlib.c +155 -53
  232. data/ext/zlib-1.2.13/gzread.c +650 -0
  233. data/ext/zlib-1.2.13/gzwrite.c +677 -0
  234. data/ext/{zlib-1.2.5 → zlib-1.2.13}/infback.c +24 -12
  235. data/ext/{zlib-1.2.5 → zlib-1.2.13}/inffast.c +49 -66
  236. data/ext/{zlib-1.2.5 → zlib-1.2.13}/inffast.h +0 -0
  237. data/ext/{zlib-1.2.5 → zlib-1.2.13}/inffixed.h +3 -3
  238. data/ext/{zlib-1.2.5 → zlib-1.2.13}/inflate.c +209 -94
  239. data/ext/{zlib-1.2.5 → zlib-1.2.13}/inflate.h +9 -5
  240. data/ext/{zlib-1.2.5 → zlib-1.2.13}/inftrees.c +24 -50
  241. data/ext/{zlib-1.2.5 → zlib-1.2.13}/inftrees.h +1 -1
  242. data/ext/{zlib-1.2.5 → zlib-1.2.13}/trees.c +135 -198
  243. data/ext/{zlib-1.2.5 → zlib-1.2.13}/trees.h +0 -0
  244. data/ext/zlib-1.2.13/uncompr.c +93 -0
  245. data/ext/{zlib-1.2.5 → zlib-1.2.13}/zconf.h +182 -63
  246. data/ext/{zlib-1.2.5 → zlib-1.2.13}/zlib.h +617 -295
  247. data/ext/{zlib-1.2.5 → zlib-1.2.13}/zutil.c +50 -41
  248. data/ext/{zlib-1.2.5 → zlib-1.2.13}/zutil.h +83 -82
  249. metadata +241 -133
  250. data/ext/libarchive-0.1.1/libarchive.c +0 -1762
  251. data/ext/libarchive-2.8.4/Makefile.in +0 -7076
  252. data/ext/libarchive-2.8.4/build/autoconf/compile +0 -143
  253. data/ext/libarchive-2.8.4/build/autoconf/config.guess +0 -1502
  254. data/ext/libarchive-2.8.4/build/autoconf/config.sub +0 -1708
  255. data/ext/libarchive-2.8.4/build/autoconf/depcomp +0 -630
  256. data/ext/libarchive-2.8.4/build/autoconf/install-sh +0 -291
  257. data/ext/libarchive-2.8.4/build/autoconf/ltmain.sh +0 -8406
  258. data/ext/libarchive-2.8.4/build/autoconf/missing +0 -376
  259. data/ext/libarchive-2.8.4/config.h.in +0 -772
  260. data/ext/libarchive-2.8.4/configure +0 -17916
  261. data/ext/libarchive-2.8.4/libarchive/archive.h +0 -741
  262. data/ext/libarchive-2.8.4/libarchive/archive_entry.c +0 -2202
  263. data/ext/libarchive-2.8.4/libarchive/archive_hash.h +0 -281
  264. data/ext/libarchive-2.8.4/libarchive/archive_read.c +0 -1249
  265. data/ext/libarchive-2.8.4/libarchive/archive_read_disk.c +0 -198
  266. data/ext/libarchive-2.8.4/libarchive/archive_read_disk_entry_from_file.c +0 -570
  267. data/ext/libarchive-2.8.4/libarchive/archive_read_open_filename.c +0 -272
  268. data/ext/libarchive-2.8.4/libarchive/archive_read_support_format_cpio.c +0 -777
  269. data/ext/libarchive-2.8.4/libarchive/archive_read_support_format_mtree.c +0 -1304
  270. data/ext/libarchive-2.8.4/libarchive/archive_read_support_format_zip.c +0 -903
  271. data/ext/libarchive-2.8.4/libarchive/archive_string.c +0 -453
  272. data/ext/libarchive-2.8.4/libarchive/archive_string.h +0 -148
  273. data/ext/libarchive-2.8.4/libarchive/archive_util.c +0 -391
  274. data/ext/libarchive-2.8.4/libarchive/archive_write.c +0 -466
  275. data/ext/libarchive-2.8.4/libarchive/archive_write_disk.c +0 -2628
  276. data/ext/libarchive-2.8.4/libarchive/archive_write_set_compression_bzip2.c +0 -408
  277. data/ext/libarchive-2.8.4/libarchive/archive_write_set_compression_gzip.c +0 -477
  278. data/ext/libarchive-2.8.4/libarchive/archive_write_set_compression_none.c +0 -257
  279. data/ext/libarchive-2.8.4/libarchive/archive_write_set_compression_program.c +0 -347
  280. data/ext/libarchive-2.8.4/libarchive/archive_write_set_compression_xz.c +0 -438
  281. data/ext/libarchive-2.8.4/libarchive/archive_write_set_format_cpio.c +0 -344
  282. data/ext/libarchive-2.8.4/libarchive/archive_write_set_format_cpio_newc.c +0 -295
  283. data/ext/libarchive-2.8.4/libarchive/archive_write_set_format_mtree.c +0 -1050
  284. data/ext/libarchive-2.8.4/libarchive/archive_write_set_format_zip.c +0 -667
  285. data/ext/libarchive-2.8.4/libarchive/config_freebsd.h +0 -154
  286. data/ext/libarchive-2.8.4/libarchive/filter_fork_windows.c +0 -113
  287. data/ext/zlib-1.2.5/Makefile.in +0 -257
  288. data/ext/zlib-1.2.5/configure +0 -596
  289. data/ext/zlib-1.2.5/crc32.c +0 -442
  290. data/ext/zlib-1.2.5/crc32.h +0 -441
  291. data/ext/zlib-1.2.5/example.c +0 -565
  292. data/ext/zlib-1.2.5/gzread.c +0 -653
  293. data/ext/zlib-1.2.5/gzwrite.c +0 -531
  294. data/ext/zlib-1.2.5/minigzip.c +0 -440
  295. data/ext/zlib-1.2.5/uncompr.c +0 -59
@@ -1,565 +0,0 @@
1
- /* example.c -- usage example of the zlib compression library
2
- * Copyright (C) 1995-2006 Jean-loup Gailly.
3
- * For conditions of distribution and use, see copyright notice in zlib.h
4
- */
5
-
6
- /* @(#) $Id$ */
7
-
8
- #include "zlib.h"
9
- #include <stdio.h>
10
-
11
- #ifdef STDC
12
- # include <string.h>
13
- # include <stdlib.h>
14
- #endif
15
-
16
- #if defined(VMS) || defined(RISCOS)
17
- # define TESTFILE "foo-gz"
18
- #else
19
- # define TESTFILE "foo.gz"
20
- #endif
21
-
22
- #define CHECK_ERR(err, msg) { \
23
- if (err != Z_OK) { \
24
- fprintf(stderr, "%s error: %d\n", msg, err); \
25
- exit(1); \
26
- } \
27
- }
28
-
29
- const char hello[] = "hello, hello!";
30
- /* "hello world" would be more standard, but the repeated "hello"
31
- * stresses the compression code better, sorry...
32
- */
33
-
34
- const char dictionary[] = "hello";
35
- uLong dictId; /* Adler32 value of the dictionary */
36
-
37
- void test_compress OF((Byte *compr, uLong comprLen,
38
- Byte *uncompr, uLong uncomprLen));
39
- void test_gzio OF((const char *fname,
40
- Byte *uncompr, uLong uncomprLen));
41
- void test_deflate OF((Byte *compr, uLong comprLen));
42
- void test_inflate OF((Byte *compr, uLong comprLen,
43
- Byte *uncompr, uLong uncomprLen));
44
- void test_large_deflate OF((Byte *compr, uLong comprLen,
45
- Byte *uncompr, uLong uncomprLen));
46
- void test_large_inflate OF((Byte *compr, uLong comprLen,
47
- Byte *uncompr, uLong uncomprLen));
48
- void test_flush OF((Byte *compr, uLong *comprLen));
49
- void test_sync OF((Byte *compr, uLong comprLen,
50
- Byte *uncompr, uLong uncomprLen));
51
- void test_dict_deflate OF((Byte *compr, uLong comprLen));
52
- void test_dict_inflate OF((Byte *compr, uLong comprLen,
53
- Byte *uncompr, uLong uncomprLen));
54
- int main OF((int argc, char *argv[]));
55
-
56
- /* ===========================================================================
57
- * Test compress() and uncompress()
58
- */
59
- void test_compress(compr, comprLen, uncompr, uncomprLen)
60
- Byte *compr, *uncompr;
61
- uLong comprLen, uncomprLen;
62
- {
63
- int err;
64
- uLong len = (uLong)strlen(hello)+1;
65
-
66
- err = compress(compr, &comprLen, (const Bytef*)hello, len);
67
- CHECK_ERR(err, "compress");
68
-
69
- strcpy((char*)uncompr, "garbage");
70
-
71
- err = uncompress(uncompr, &uncomprLen, compr, comprLen);
72
- CHECK_ERR(err, "uncompress");
73
-
74
- if (strcmp((char*)uncompr, hello)) {
75
- fprintf(stderr, "bad uncompress\n");
76
- exit(1);
77
- } else {
78
- printf("uncompress(): %s\n", (char *)uncompr);
79
- }
80
- }
81
-
82
- /* ===========================================================================
83
- * Test read/write of .gz files
84
- */
85
- void test_gzio(fname, uncompr, uncomprLen)
86
- const char *fname; /* compressed file name */
87
- Byte *uncompr;
88
- uLong uncomprLen;
89
- {
90
- #ifdef NO_GZCOMPRESS
91
- fprintf(stderr, "NO_GZCOMPRESS -- gz* functions cannot compress\n");
92
- #else
93
- int err;
94
- int len = (int)strlen(hello)+1;
95
- gzFile file;
96
- z_off_t pos;
97
-
98
- file = gzopen(fname, "wb");
99
- if (file == NULL) {
100
- fprintf(stderr, "gzopen error\n");
101
- exit(1);
102
- }
103
- gzputc(file, 'h');
104
- if (gzputs(file, "ello") != 4) {
105
- fprintf(stderr, "gzputs err: %s\n", gzerror(file, &err));
106
- exit(1);
107
- }
108
- if (gzprintf(file, ", %s!", "hello") != 8) {
109
- fprintf(stderr, "gzprintf err: %s\n", gzerror(file, &err));
110
- exit(1);
111
- }
112
- gzseek(file, 1L, SEEK_CUR); /* add one zero byte */
113
- gzclose(file);
114
-
115
- file = gzopen(fname, "rb");
116
- if (file == NULL) {
117
- fprintf(stderr, "gzopen error\n");
118
- exit(1);
119
- }
120
- strcpy((char*)uncompr, "garbage");
121
-
122
- if (gzread(file, uncompr, (unsigned)uncomprLen) != len) {
123
- fprintf(stderr, "gzread err: %s\n", gzerror(file, &err));
124
- exit(1);
125
- }
126
- if (strcmp((char*)uncompr, hello)) {
127
- fprintf(stderr, "bad gzread: %s\n", (char*)uncompr);
128
- exit(1);
129
- } else {
130
- printf("gzread(): %s\n", (char*)uncompr);
131
- }
132
-
133
- pos = gzseek(file, -8L, SEEK_CUR);
134
- if (pos != 6 || gztell(file) != pos) {
135
- fprintf(stderr, "gzseek error, pos=%ld, gztell=%ld\n",
136
- (long)pos, (long)gztell(file));
137
- exit(1);
138
- }
139
-
140
- if (gzgetc(file) != ' ') {
141
- fprintf(stderr, "gzgetc error\n");
142
- exit(1);
143
- }
144
-
145
- if (gzungetc(' ', file) != ' ') {
146
- fprintf(stderr, "gzungetc error\n");
147
- exit(1);
148
- }
149
-
150
- gzgets(file, (char*)uncompr, (int)uncomprLen);
151
- if (strlen((char*)uncompr) != 7) { /* " hello!" */
152
- fprintf(stderr, "gzgets err after gzseek: %s\n", gzerror(file, &err));
153
- exit(1);
154
- }
155
- if (strcmp((char*)uncompr, hello + 6)) {
156
- fprintf(stderr, "bad gzgets after gzseek\n");
157
- exit(1);
158
- } else {
159
- printf("gzgets() after gzseek: %s\n", (char*)uncompr);
160
- }
161
-
162
- gzclose(file);
163
- #endif
164
- }
165
-
166
- /* ===========================================================================
167
- * Test deflate() with small buffers
168
- */
169
- void test_deflate(compr, comprLen)
170
- Byte *compr;
171
- uLong comprLen;
172
- {
173
- z_stream c_stream; /* compression stream */
174
- int err;
175
- uLong len = (uLong)strlen(hello)+1;
176
-
177
- c_stream.zalloc = (alloc_func)0;
178
- c_stream.zfree = (free_func)0;
179
- c_stream.opaque = (voidpf)0;
180
-
181
- err = deflateInit(&c_stream, Z_DEFAULT_COMPRESSION);
182
- CHECK_ERR(err, "deflateInit");
183
-
184
- c_stream.next_in = (Bytef*)hello;
185
- c_stream.next_out = compr;
186
-
187
- while (c_stream.total_in != len && c_stream.total_out < comprLen) {
188
- c_stream.avail_in = c_stream.avail_out = 1; /* force small buffers */
189
- err = deflate(&c_stream, Z_NO_FLUSH);
190
- CHECK_ERR(err, "deflate");
191
- }
192
- /* Finish the stream, still forcing small buffers: */
193
- for (;;) {
194
- c_stream.avail_out = 1;
195
- err = deflate(&c_stream, Z_FINISH);
196
- if (err == Z_STREAM_END) break;
197
- CHECK_ERR(err, "deflate");
198
- }
199
-
200
- err = deflateEnd(&c_stream);
201
- CHECK_ERR(err, "deflateEnd");
202
- }
203
-
204
- /* ===========================================================================
205
- * Test inflate() with small buffers
206
- */
207
- void test_inflate(compr, comprLen, uncompr, uncomprLen)
208
- Byte *compr, *uncompr;
209
- uLong comprLen, uncomprLen;
210
- {
211
- int err;
212
- z_stream d_stream; /* decompression stream */
213
-
214
- strcpy((char*)uncompr, "garbage");
215
-
216
- d_stream.zalloc = (alloc_func)0;
217
- d_stream.zfree = (free_func)0;
218
- d_stream.opaque = (voidpf)0;
219
-
220
- d_stream.next_in = compr;
221
- d_stream.avail_in = 0;
222
- d_stream.next_out = uncompr;
223
-
224
- err = inflateInit(&d_stream);
225
- CHECK_ERR(err, "inflateInit");
226
-
227
- while (d_stream.total_out < uncomprLen && d_stream.total_in < comprLen) {
228
- d_stream.avail_in = d_stream.avail_out = 1; /* force small buffers */
229
- err = inflate(&d_stream, Z_NO_FLUSH);
230
- if (err == Z_STREAM_END) break;
231
- CHECK_ERR(err, "inflate");
232
- }
233
-
234
- err = inflateEnd(&d_stream);
235
- CHECK_ERR(err, "inflateEnd");
236
-
237
- if (strcmp((char*)uncompr, hello)) {
238
- fprintf(stderr, "bad inflate\n");
239
- exit(1);
240
- } else {
241
- printf("inflate(): %s\n", (char *)uncompr);
242
- }
243
- }
244
-
245
- /* ===========================================================================
246
- * Test deflate() with large buffers and dynamic change of compression level
247
- */
248
- void test_large_deflate(compr, comprLen, uncompr, uncomprLen)
249
- Byte *compr, *uncompr;
250
- uLong comprLen, uncomprLen;
251
- {
252
- z_stream c_stream; /* compression stream */
253
- int err;
254
-
255
- c_stream.zalloc = (alloc_func)0;
256
- c_stream.zfree = (free_func)0;
257
- c_stream.opaque = (voidpf)0;
258
-
259
- err = deflateInit(&c_stream, Z_BEST_SPEED);
260
- CHECK_ERR(err, "deflateInit");
261
-
262
- c_stream.next_out = compr;
263
- c_stream.avail_out = (uInt)comprLen;
264
-
265
- /* At this point, uncompr is still mostly zeroes, so it should compress
266
- * very well:
267
- */
268
- c_stream.next_in = uncompr;
269
- c_stream.avail_in = (uInt)uncomprLen;
270
- err = deflate(&c_stream, Z_NO_FLUSH);
271
- CHECK_ERR(err, "deflate");
272
- if (c_stream.avail_in != 0) {
273
- fprintf(stderr, "deflate not greedy\n");
274
- exit(1);
275
- }
276
-
277
- /* Feed in already compressed data and switch to no compression: */
278
- deflateParams(&c_stream, Z_NO_COMPRESSION, Z_DEFAULT_STRATEGY);
279
- c_stream.next_in = compr;
280
- c_stream.avail_in = (uInt)comprLen/2;
281
- err = deflate(&c_stream, Z_NO_FLUSH);
282
- CHECK_ERR(err, "deflate");
283
-
284
- /* Switch back to compressing mode: */
285
- deflateParams(&c_stream, Z_BEST_COMPRESSION, Z_FILTERED);
286
- c_stream.next_in = uncompr;
287
- c_stream.avail_in = (uInt)uncomprLen;
288
- err = deflate(&c_stream, Z_NO_FLUSH);
289
- CHECK_ERR(err, "deflate");
290
-
291
- err = deflate(&c_stream, Z_FINISH);
292
- if (err != Z_STREAM_END) {
293
- fprintf(stderr, "deflate should report Z_STREAM_END\n");
294
- exit(1);
295
- }
296
- err = deflateEnd(&c_stream);
297
- CHECK_ERR(err, "deflateEnd");
298
- }
299
-
300
- /* ===========================================================================
301
- * Test inflate() with large buffers
302
- */
303
- void test_large_inflate(compr, comprLen, uncompr, uncomprLen)
304
- Byte *compr, *uncompr;
305
- uLong comprLen, uncomprLen;
306
- {
307
- int err;
308
- z_stream d_stream; /* decompression stream */
309
-
310
- strcpy((char*)uncompr, "garbage");
311
-
312
- d_stream.zalloc = (alloc_func)0;
313
- d_stream.zfree = (free_func)0;
314
- d_stream.opaque = (voidpf)0;
315
-
316
- d_stream.next_in = compr;
317
- d_stream.avail_in = (uInt)comprLen;
318
-
319
- err = inflateInit(&d_stream);
320
- CHECK_ERR(err, "inflateInit");
321
-
322
- for (;;) {
323
- d_stream.next_out = uncompr; /* discard the output */
324
- d_stream.avail_out = (uInt)uncomprLen;
325
- err = inflate(&d_stream, Z_NO_FLUSH);
326
- if (err == Z_STREAM_END) break;
327
- CHECK_ERR(err, "large inflate");
328
- }
329
-
330
- err = inflateEnd(&d_stream);
331
- CHECK_ERR(err, "inflateEnd");
332
-
333
- if (d_stream.total_out != 2*uncomprLen + comprLen/2) {
334
- fprintf(stderr, "bad large inflate: %ld\n", d_stream.total_out);
335
- exit(1);
336
- } else {
337
- printf("large_inflate(): OK\n");
338
- }
339
- }
340
-
341
- /* ===========================================================================
342
- * Test deflate() with full flush
343
- */
344
- void test_flush(compr, comprLen)
345
- Byte *compr;
346
- uLong *comprLen;
347
- {
348
- z_stream c_stream; /* compression stream */
349
- int err;
350
- uInt len = (uInt)strlen(hello)+1;
351
-
352
- c_stream.zalloc = (alloc_func)0;
353
- c_stream.zfree = (free_func)0;
354
- c_stream.opaque = (voidpf)0;
355
-
356
- err = deflateInit(&c_stream, Z_DEFAULT_COMPRESSION);
357
- CHECK_ERR(err, "deflateInit");
358
-
359
- c_stream.next_in = (Bytef*)hello;
360
- c_stream.next_out = compr;
361
- c_stream.avail_in = 3;
362
- c_stream.avail_out = (uInt)*comprLen;
363
- err = deflate(&c_stream, Z_FULL_FLUSH);
364
- CHECK_ERR(err, "deflate");
365
-
366
- compr[3]++; /* force an error in first compressed block */
367
- c_stream.avail_in = len - 3;
368
-
369
- err = deflate(&c_stream, Z_FINISH);
370
- if (err != Z_STREAM_END) {
371
- CHECK_ERR(err, "deflate");
372
- }
373
- err = deflateEnd(&c_stream);
374
- CHECK_ERR(err, "deflateEnd");
375
-
376
- *comprLen = c_stream.total_out;
377
- }
378
-
379
- /* ===========================================================================
380
- * Test inflateSync()
381
- */
382
- void test_sync(compr, comprLen, uncompr, uncomprLen)
383
- Byte *compr, *uncompr;
384
- uLong comprLen, uncomprLen;
385
- {
386
- int err;
387
- z_stream d_stream; /* decompression stream */
388
-
389
- strcpy((char*)uncompr, "garbage");
390
-
391
- d_stream.zalloc = (alloc_func)0;
392
- d_stream.zfree = (free_func)0;
393
- d_stream.opaque = (voidpf)0;
394
-
395
- d_stream.next_in = compr;
396
- d_stream.avail_in = 2; /* just read the zlib header */
397
-
398
- err = inflateInit(&d_stream);
399
- CHECK_ERR(err, "inflateInit");
400
-
401
- d_stream.next_out = uncompr;
402
- d_stream.avail_out = (uInt)uncomprLen;
403
-
404
- inflate(&d_stream, Z_NO_FLUSH);
405
- CHECK_ERR(err, "inflate");
406
-
407
- d_stream.avail_in = (uInt)comprLen-2; /* read all compressed data */
408
- err = inflateSync(&d_stream); /* but skip the damaged part */
409
- CHECK_ERR(err, "inflateSync");
410
-
411
- err = inflate(&d_stream, Z_FINISH);
412
- if (err != Z_DATA_ERROR) {
413
- fprintf(stderr, "inflate should report DATA_ERROR\n");
414
- /* Because of incorrect adler32 */
415
- exit(1);
416
- }
417
- err = inflateEnd(&d_stream);
418
- CHECK_ERR(err, "inflateEnd");
419
-
420
- printf("after inflateSync(): hel%s\n", (char *)uncompr);
421
- }
422
-
423
- /* ===========================================================================
424
- * Test deflate() with preset dictionary
425
- */
426
- void test_dict_deflate(compr, comprLen)
427
- Byte *compr;
428
- uLong comprLen;
429
- {
430
- z_stream c_stream; /* compression stream */
431
- int err;
432
-
433
- c_stream.zalloc = (alloc_func)0;
434
- c_stream.zfree = (free_func)0;
435
- c_stream.opaque = (voidpf)0;
436
-
437
- err = deflateInit(&c_stream, Z_BEST_COMPRESSION);
438
- CHECK_ERR(err, "deflateInit");
439
-
440
- err = deflateSetDictionary(&c_stream,
441
- (const Bytef*)dictionary, sizeof(dictionary));
442
- CHECK_ERR(err, "deflateSetDictionary");
443
-
444
- dictId = c_stream.adler;
445
- c_stream.next_out = compr;
446
- c_stream.avail_out = (uInt)comprLen;
447
-
448
- c_stream.next_in = (Bytef*)hello;
449
- c_stream.avail_in = (uInt)strlen(hello)+1;
450
-
451
- err = deflate(&c_stream, Z_FINISH);
452
- if (err != Z_STREAM_END) {
453
- fprintf(stderr, "deflate should report Z_STREAM_END\n");
454
- exit(1);
455
- }
456
- err = deflateEnd(&c_stream);
457
- CHECK_ERR(err, "deflateEnd");
458
- }
459
-
460
- /* ===========================================================================
461
- * Test inflate() with a preset dictionary
462
- */
463
- void test_dict_inflate(compr, comprLen, uncompr, uncomprLen)
464
- Byte *compr, *uncompr;
465
- uLong comprLen, uncomprLen;
466
- {
467
- int err;
468
- z_stream d_stream; /* decompression stream */
469
-
470
- strcpy((char*)uncompr, "garbage");
471
-
472
- d_stream.zalloc = (alloc_func)0;
473
- d_stream.zfree = (free_func)0;
474
- d_stream.opaque = (voidpf)0;
475
-
476
- d_stream.next_in = compr;
477
- d_stream.avail_in = (uInt)comprLen;
478
-
479
- err = inflateInit(&d_stream);
480
- CHECK_ERR(err, "inflateInit");
481
-
482
- d_stream.next_out = uncompr;
483
- d_stream.avail_out = (uInt)uncomprLen;
484
-
485
- for (;;) {
486
- err = inflate(&d_stream, Z_NO_FLUSH);
487
- if (err == Z_STREAM_END) break;
488
- if (err == Z_NEED_DICT) {
489
- if (d_stream.adler != dictId) {
490
- fprintf(stderr, "unexpected dictionary");
491
- exit(1);
492
- }
493
- err = inflateSetDictionary(&d_stream, (const Bytef*)dictionary,
494
- sizeof(dictionary));
495
- }
496
- CHECK_ERR(err, "inflate with dict");
497
- }
498
-
499
- err = inflateEnd(&d_stream);
500
- CHECK_ERR(err, "inflateEnd");
501
-
502
- if (strcmp((char*)uncompr, hello)) {
503
- fprintf(stderr, "bad inflate with dict\n");
504
- exit(1);
505
- } else {
506
- printf("inflate with dictionary: %s\n", (char *)uncompr);
507
- }
508
- }
509
-
510
- /* ===========================================================================
511
- * Usage: example [output.gz [input.gz]]
512
- */
513
-
514
- int main(argc, argv)
515
- int argc;
516
- char *argv[];
517
- {
518
- Byte *compr, *uncompr;
519
- uLong comprLen = 10000*sizeof(int); /* don't overflow on MSDOS */
520
- uLong uncomprLen = comprLen;
521
- static const char* myVersion = ZLIB_VERSION;
522
-
523
- if (zlibVersion()[0] != myVersion[0]) {
524
- fprintf(stderr, "incompatible zlib version\n");
525
- exit(1);
526
-
527
- } else if (strcmp(zlibVersion(), ZLIB_VERSION) != 0) {
528
- fprintf(stderr, "warning: different zlib version\n");
529
- }
530
-
531
- printf("zlib version %s = 0x%04x, compile flags = 0x%lx\n",
532
- ZLIB_VERSION, ZLIB_VERNUM, zlibCompileFlags());
533
-
534
- compr = (Byte*)calloc((uInt)comprLen, 1);
535
- uncompr = (Byte*)calloc((uInt)uncomprLen, 1);
536
- /* compr and uncompr are cleared to avoid reading uninitialized
537
- * data and to ensure that uncompr compresses well.
538
- */
539
- if (compr == Z_NULL || uncompr == Z_NULL) {
540
- printf("out of memory\n");
541
- exit(1);
542
- }
543
- test_compress(compr, comprLen, uncompr, uncomprLen);
544
-
545
- test_gzio((argc > 1 ? argv[1] : TESTFILE),
546
- uncompr, uncomprLen);
547
-
548
- test_deflate(compr, comprLen);
549
- test_inflate(compr, comprLen, uncompr, uncomprLen);
550
-
551
- test_large_deflate(compr, comprLen, uncompr, uncomprLen);
552
- test_large_inflate(compr, comprLen, uncompr, uncomprLen);
553
-
554
- test_flush(compr, &comprLen);
555
- test_sync(compr, comprLen, uncompr, uncomprLen);
556
- comprLen = uncomprLen;
557
-
558
- test_dict_deflate(compr, comprLen);
559
- test_dict_inflate(compr, comprLen, uncompr, uncomprLen);
560
-
561
- free(compr);
562
- free(uncompr);
563
-
564
- return 0;
565
- }