laag-xz 5.2.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (393) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +57 -0
  3. data/LICENSE.txt +65 -0
  4. data/README.org +34 -0
  5. data/ext/laag/xz/extconf.rb +21 -0
  6. data/laag-xz.gemspec +20 -0
  7. data/lib/laag/xz.rb +29 -0
  8. data/vendor/git.tukaani.org/xz/.gitignore +66 -0
  9. data/vendor/git.tukaani.org/xz/AUTHORS +27 -0
  10. data/vendor/git.tukaani.org/xz/COPYING +65 -0
  11. data/vendor/git.tukaani.org/xz/COPYING.GPLv2 +339 -0
  12. data/vendor/git.tukaani.org/xz/COPYING.GPLv3 +674 -0
  13. data/vendor/git.tukaani.org/xz/COPYING.LGPLv2.1 +502 -0
  14. data/vendor/git.tukaani.org/xz/ChangeLog +7 -0
  15. data/vendor/git.tukaani.org/xz/Doxyfile.in +1234 -0
  16. data/vendor/git.tukaani.org/xz/INSTALL +618 -0
  17. data/vendor/git.tukaani.org/xz/INSTALL.generic +365 -0
  18. data/vendor/git.tukaani.org/xz/Makefile.am +110 -0
  19. data/vendor/git.tukaani.org/xz/NEWS +571 -0
  20. data/vendor/git.tukaani.org/xz/PACKAGERS +231 -0
  21. data/vendor/git.tukaani.org/xz/README +308 -0
  22. data/vendor/git.tukaani.org/xz/THANKS +124 -0
  23. data/vendor/git.tukaani.org/xz/TODO +111 -0
  24. data/vendor/git.tukaani.org/xz/autogen.sh +22 -0
  25. data/vendor/git.tukaani.org/xz/build-aux/manconv.sh +58 -0
  26. data/vendor/git.tukaani.org/xz/build-aux/version.sh +24 -0
  27. data/vendor/git.tukaani.org/xz/configure.ac +900 -0
  28. data/vendor/git.tukaani.org/xz/debug/Makefile.am +30 -0
  29. data/vendor/git.tukaani.org/xz/debug/README +17 -0
  30. data/vendor/git.tukaani.org/xz/debug/crc32.c +39 -0
  31. data/vendor/git.tukaani.org/xz/debug/full_flush.c +103 -0
  32. data/vendor/git.tukaani.org/xz/debug/hex2bin.c +53 -0
  33. data/vendor/git.tukaani.org/xz/debug/known_sizes.c +129 -0
  34. data/vendor/git.tukaani.org/xz/debug/memusage.c +51 -0
  35. data/vendor/git.tukaani.org/xz/debug/repeat.c +36 -0
  36. data/vendor/git.tukaani.org/xz/debug/sync_flush.c +125 -0
  37. data/vendor/git.tukaani.org/xz/debug/translation.bash +100 -0
  38. data/vendor/git.tukaani.org/xz/doc/examples/00_README.txt +31 -0
  39. data/vendor/git.tukaani.org/xz/doc/examples/01_compress_easy.c +297 -0
  40. data/vendor/git.tukaani.org/xz/doc/examples/02_decompress.c +287 -0
  41. data/vendor/git.tukaani.org/xz/doc/examples/03_compress_custom.c +193 -0
  42. data/vendor/git.tukaani.org/xz/doc/examples/04_compress_easy_mt.c +206 -0
  43. data/vendor/git.tukaani.org/xz/doc/examples/Makefile +24 -0
  44. data/vendor/git.tukaani.org/xz/doc/examples_old/xz_pipe_comp.c +127 -0
  45. data/vendor/git.tukaani.org/xz/doc/examples_old/xz_pipe_decomp.c +123 -0
  46. data/vendor/git.tukaani.org/xz/doc/faq.txt +224 -0
  47. data/vendor/git.tukaani.org/xz/doc/history.txt +150 -0
  48. data/vendor/git.tukaani.org/xz/doc/lzma-file-format.txt +166 -0
  49. data/vendor/git.tukaani.org/xz/doc/xz-file-format.txt +1150 -0
  50. data/vendor/git.tukaani.org/xz/dos/INSTALL.txt +79 -0
  51. data/vendor/git.tukaani.org/xz/dos/Makefile +147 -0
  52. data/vendor/git.tukaani.org/xz/dos/README.txt +123 -0
  53. data/vendor/git.tukaani.org/xz/dos/config.h +136 -0
  54. data/vendor/git.tukaani.org/xz/extra/7z2lzma/7z2lzma.bash +115 -0
  55. data/vendor/git.tukaani.org/xz/extra/scanlzma/scanlzma.c +88 -0
  56. data/vendor/git.tukaani.org/xz/lib/Makefile.am +32 -0
  57. data/vendor/git.tukaani.org/xz/lib/getopt.c +1197 -0
  58. data/vendor/git.tukaani.org/xz/lib/getopt.in.h +226 -0
  59. data/vendor/git.tukaani.org/xz/lib/getopt1.c +171 -0
  60. data/vendor/git.tukaani.org/xz/lib/getopt_int.h +131 -0
  61. data/vendor/git.tukaani.org/xz/m4/.gitignore +38 -0
  62. data/vendor/git.tukaani.org/xz/m4/ax_check_capsicum.m4 +85 -0
  63. data/vendor/git.tukaani.org/xz/m4/ax_pthread.m4 +332 -0
  64. data/vendor/git.tukaani.org/xz/m4/getopt.m4 +71 -0
  65. data/vendor/git.tukaani.org/xz/m4/posix-shell.m4 +63 -0
  66. data/vendor/git.tukaani.org/xz/m4/tuklib_common.m4 +22 -0
  67. data/vendor/git.tukaani.org/xz/m4/tuklib_cpucores.m4 +176 -0
  68. data/vendor/git.tukaani.org/xz/m4/tuklib_integer.m4 +74 -0
  69. data/vendor/git.tukaani.org/xz/m4/tuklib_mbstr.m4 +30 -0
  70. data/vendor/git.tukaani.org/xz/m4/tuklib_physmem.m4 +212 -0
  71. data/vendor/git.tukaani.org/xz/m4/tuklib_progname.m4 +25 -0
  72. data/vendor/git.tukaani.org/xz/macosx/build.sh +113 -0
  73. data/vendor/git.tukaani.org/xz/po/.gitignore +31 -0
  74. data/vendor/git.tukaani.org/xz/po/LINGUAS +6 -0
  75. data/vendor/git.tukaani.org/xz/po/Makevars +46 -0
  76. data/vendor/git.tukaani.org/xz/po/POTFILES.in +13 -0
  77. data/vendor/git.tukaani.org/xz/po/cs.po +949 -0
  78. data/vendor/git.tukaani.org/xz/po/de.po +993 -0
  79. data/vendor/git.tukaani.org/xz/po/fr.po +978 -0
  80. data/vendor/git.tukaani.org/xz/po/it.po +1067 -0
  81. data/vendor/git.tukaani.org/xz/po/pl.po +968 -0
  82. data/vendor/git.tukaani.org/xz/po/vi.po +1039 -0
  83. data/vendor/git.tukaani.org/xz/src/Makefile.am +42 -0
  84. data/vendor/git.tukaani.org/xz/src/common/common_w32res.rc +50 -0
  85. data/vendor/git.tukaani.org/xz/src/common/mythread.h +521 -0
  86. data/vendor/git.tukaani.org/xz/src/common/sysdefs.h +202 -0
  87. data/vendor/git.tukaani.org/xz/src/common/tuklib_common.h +71 -0
  88. data/vendor/git.tukaani.org/xz/src/common/tuklib_config.h +7 -0
  89. data/vendor/git.tukaani.org/xz/src/common/tuklib_cpucores.c +100 -0
  90. data/vendor/git.tukaani.org/xz/src/common/tuklib_cpucores.h +23 -0
  91. data/vendor/git.tukaani.org/xz/src/common/tuklib_exit.c +57 -0
  92. data/vendor/git.tukaani.org/xz/src/common/tuklib_exit.h +25 -0
  93. data/vendor/git.tukaani.org/xz/src/common/tuklib_gettext.h +44 -0
  94. data/vendor/git.tukaani.org/xz/src/common/tuklib_integer.h +534 -0
  95. data/vendor/git.tukaani.org/xz/src/common/tuklib_mbstr.h +66 -0
  96. data/vendor/git.tukaani.org/xz/src/common/tuklib_mbstr_fw.c +31 -0
  97. data/vendor/git.tukaani.org/xz/src/common/tuklib_mbstr_width.c +64 -0
  98. data/vendor/git.tukaani.org/xz/src/common/tuklib_open_stdxxx.c +57 -0
  99. data/vendor/git.tukaani.org/xz/src/common/tuklib_open_stdxxx.h +23 -0
  100. data/vendor/git.tukaani.org/xz/src/common/tuklib_physmem.c +216 -0
  101. data/vendor/git.tukaani.org/xz/src/common/tuklib_physmem.h +28 -0
  102. data/vendor/git.tukaani.org/xz/src/common/tuklib_progname.c +50 -0
  103. data/vendor/git.tukaani.org/xz/src/common/tuklib_progname.h +32 -0
  104. data/vendor/git.tukaani.org/xz/src/liblzma/Makefile.am +122 -0
  105. data/vendor/git.tukaani.org/xz/src/liblzma/api/Makefile.am +23 -0
  106. data/vendor/git.tukaani.org/xz/src/liblzma/api/lzma.h +325 -0
  107. data/vendor/git.tukaani.org/xz/src/liblzma/api/lzma/base.h +659 -0
  108. data/vendor/git.tukaani.org/xz/src/liblzma/api/lzma/bcj.h +90 -0
  109. data/vendor/git.tukaani.org/xz/src/liblzma/api/lzma/block.h +581 -0
  110. data/vendor/git.tukaani.org/xz/src/liblzma/api/lzma/check.h +150 -0
  111. data/vendor/git.tukaani.org/xz/src/liblzma/api/lzma/container.h +632 -0
  112. data/vendor/git.tukaani.org/xz/src/liblzma/api/lzma/delta.h +77 -0
  113. data/vendor/git.tukaani.org/xz/src/liblzma/api/lzma/filter.h +425 -0
  114. data/vendor/git.tukaani.org/xz/src/liblzma/api/lzma/hardware.h +64 -0
  115. data/vendor/git.tukaani.org/xz/src/liblzma/api/lzma/index.h +686 -0
  116. data/vendor/git.tukaani.org/xz/src/liblzma/api/lzma/index_hash.h +107 -0
  117. data/vendor/git.tukaani.org/xz/src/liblzma/api/lzma/lzma12.h +420 -0
  118. data/vendor/git.tukaani.org/xz/src/liblzma/api/lzma/stream_flags.h +223 -0
  119. data/vendor/git.tukaani.org/xz/src/liblzma/api/lzma/version.h +121 -0
  120. data/vendor/git.tukaani.org/xz/src/liblzma/api/lzma/vli.h +166 -0
  121. data/vendor/git.tukaani.org/xz/src/liblzma/check/Makefile.inc +53 -0
  122. data/vendor/git.tukaani.org/xz/src/liblzma/check/check.c +174 -0
  123. data/vendor/git.tukaani.org/xz/src/liblzma/check/check.h +172 -0
  124. data/vendor/git.tukaani.org/xz/src/liblzma/check/crc32_fast.c +82 -0
  125. data/vendor/git.tukaani.org/xz/src/liblzma/check/crc32_small.c +61 -0
  126. data/vendor/git.tukaani.org/xz/src/liblzma/check/crc32_table.c +19 -0
  127. data/vendor/git.tukaani.org/xz/src/liblzma/check/crc32_table_be.h +525 -0
  128. data/vendor/git.tukaani.org/xz/src/liblzma/check/crc32_table_le.h +525 -0
  129. data/vendor/git.tukaani.org/xz/src/liblzma/check/crc32_tablegen.c +117 -0
  130. data/vendor/git.tukaani.org/xz/src/liblzma/check/crc32_x86.S +304 -0
  131. data/vendor/git.tukaani.org/xz/src/liblzma/check/crc64_fast.c +72 -0
  132. data/vendor/git.tukaani.org/xz/src/liblzma/check/crc64_small.c +53 -0
  133. data/vendor/git.tukaani.org/xz/src/liblzma/check/crc64_table.c +19 -0
  134. data/vendor/git.tukaani.org/xz/src/liblzma/check/crc64_table_be.h +521 -0
  135. data/vendor/git.tukaani.org/xz/src/liblzma/check/crc64_table_le.h +521 -0
  136. data/vendor/git.tukaani.org/xz/src/liblzma/check/crc64_tablegen.c +88 -0
  137. data/vendor/git.tukaani.org/xz/src/liblzma/check/crc64_x86.S +287 -0
  138. data/vendor/git.tukaani.org/xz/src/liblzma/check/crc_macros.h +30 -0
  139. data/vendor/git.tukaani.org/xz/src/liblzma/check/sha256.c +196 -0
  140. data/vendor/git.tukaani.org/xz/src/liblzma/common/Makefile.inc +79 -0
  141. data/vendor/git.tukaani.org/xz/src/liblzma/common/alone_decoder.c +243 -0
  142. data/vendor/git.tukaani.org/xz/src/liblzma/common/alone_decoder.h +23 -0
  143. data/vendor/git.tukaani.org/xz/src/liblzma/common/alone_encoder.c +163 -0
  144. data/vendor/git.tukaani.org/xz/src/liblzma/common/auto_decoder.c +195 -0
  145. data/vendor/git.tukaani.org/xz/src/liblzma/common/block_buffer_decoder.c +80 -0
  146. data/vendor/git.tukaani.org/xz/src/liblzma/common/block_buffer_encoder.c +337 -0
  147. data/vendor/git.tukaani.org/xz/src/liblzma/common/block_buffer_encoder.h +24 -0
  148. data/vendor/git.tukaani.org/xz/src/liblzma/common/block_decoder.c +257 -0
  149. data/vendor/git.tukaani.org/xz/src/liblzma/common/block_decoder.h +22 -0
  150. data/vendor/git.tukaani.org/xz/src/liblzma/common/block_encoder.c +223 -0
  151. data/vendor/git.tukaani.org/xz/src/liblzma/common/block_encoder.h +47 -0
  152. data/vendor/git.tukaani.org/xz/src/liblzma/common/block_header_decoder.c +124 -0
  153. data/vendor/git.tukaani.org/xz/src/liblzma/common/block_header_encoder.c +132 -0
  154. data/vendor/git.tukaani.org/xz/src/liblzma/common/block_util.c +90 -0
  155. data/vendor/git.tukaani.org/xz/src/liblzma/common/common.c +445 -0
  156. data/vendor/git.tukaani.org/xz/src/liblzma/common/common.h +314 -0
  157. data/vendor/git.tukaani.org/xz/src/liblzma/common/easy_buffer_encoder.c +27 -0
  158. data/vendor/git.tukaani.org/xz/src/liblzma/common/easy_decoder_memusage.c +24 -0
  159. data/vendor/git.tukaani.org/xz/src/liblzma/common/easy_encoder.c +24 -0
  160. data/vendor/git.tukaani.org/xz/src/liblzma/common/easy_encoder_memusage.c +24 -0
  161. data/vendor/git.tukaani.org/xz/src/liblzma/common/easy_preset.c +27 -0
  162. data/vendor/git.tukaani.org/xz/src/liblzma/common/easy_preset.h +32 -0
  163. data/vendor/git.tukaani.org/xz/src/liblzma/common/filter_buffer_decoder.c +88 -0
  164. data/vendor/git.tukaani.org/xz/src/liblzma/common/filter_buffer_encoder.c +55 -0
  165. data/vendor/git.tukaani.org/xz/src/liblzma/common/filter_common.c +337 -0
  166. data/vendor/git.tukaani.org/xz/src/liblzma/common/filter_common.h +48 -0
  167. data/vendor/git.tukaani.org/xz/src/liblzma/common/filter_decoder.c +184 -0
  168. data/vendor/git.tukaani.org/xz/src/liblzma/common/filter_decoder.h +23 -0
  169. data/vendor/git.tukaani.org/xz/src/liblzma/common/filter_encoder.c +286 -0
  170. data/vendor/git.tukaani.org/xz/src/liblzma/common/filter_encoder.h +27 -0
  171. data/vendor/git.tukaani.org/xz/src/liblzma/common/filter_flags_decoder.c +46 -0
  172. data/vendor/git.tukaani.org/xz/src/liblzma/common/filter_flags_encoder.c +56 -0
  173. data/vendor/git.tukaani.org/xz/src/liblzma/common/hardware_cputhreads.c +22 -0
  174. data/vendor/git.tukaani.org/xz/src/liblzma/common/hardware_physmem.c +25 -0
  175. data/vendor/git.tukaani.org/xz/src/liblzma/common/index.c +1250 -0
  176. data/vendor/git.tukaani.org/xz/src/liblzma/common/index.h +73 -0
  177. data/vendor/git.tukaani.org/xz/src/liblzma/common/index_decoder.c +352 -0
  178. data/vendor/git.tukaani.org/xz/src/liblzma/common/index_encoder.c +256 -0
  179. data/vendor/git.tukaani.org/xz/src/liblzma/common/index_encoder.h +23 -0
  180. data/vendor/git.tukaani.org/xz/src/liblzma/common/index_hash.c +334 -0
  181. data/vendor/git.tukaani.org/xz/src/liblzma/common/memcmplen.h +175 -0
  182. data/vendor/git.tukaani.org/xz/src/liblzma/common/outqueue.c +184 -0
  183. data/vendor/git.tukaani.org/xz/src/liblzma/common/outqueue.h +156 -0
  184. data/vendor/git.tukaani.org/xz/src/liblzma/common/stream_buffer_decoder.c +91 -0
  185. data/vendor/git.tukaani.org/xz/src/liblzma/common/stream_buffer_encoder.c +141 -0
  186. data/vendor/git.tukaani.org/xz/src/liblzma/common/stream_decoder.c +467 -0
  187. data/vendor/git.tukaani.org/xz/src/liblzma/common/stream_decoder.h +22 -0
  188. data/vendor/git.tukaani.org/xz/src/liblzma/common/stream_encoder.c +340 -0
  189. data/vendor/git.tukaani.org/xz/src/liblzma/common/stream_encoder_mt.c +1143 -0
  190. data/vendor/git.tukaani.org/xz/src/liblzma/common/stream_flags_common.c +47 -0
  191. data/vendor/git.tukaani.org/xz/src/liblzma/common/stream_flags_common.h +33 -0
  192. data/vendor/git.tukaani.org/xz/src/liblzma/common/stream_flags_decoder.c +82 -0
  193. data/vendor/git.tukaani.org/xz/src/liblzma/common/stream_flags_encoder.c +86 -0
  194. data/vendor/git.tukaani.org/xz/src/liblzma/common/vli_decoder.c +86 -0
  195. data/vendor/git.tukaani.org/xz/src/liblzma/common/vli_encoder.c +69 -0
  196. data/vendor/git.tukaani.org/xz/src/liblzma/common/vli_size.c +30 -0
  197. data/vendor/git.tukaani.org/xz/src/liblzma/delta/Makefile.inc +23 -0
  198. data/vendor/git.tukaani.org/xz/src/liblzma/delta/delta_common.c +73 -0
  199. data/vendor/git.tukaani.org/xz/src/liblzma/delta/delta_common.h +20 -0
  200. data/vendor/git.tukaani.org/xz/src/liblzma/delta/delta_decoder.c +78 -0
  201. data/vendor/git.tukaani.org/xz/src/liblzma/delta/delta_decoder.h +26 -0
  202. data/vendor/git.tukaani.org/xz/src/liblzma/delta/delta_encoder.c +125 -0
  203. data/vendor/git.tukaani.org/xz/src/liblzma/delta/delta_encoder.h +24 -0
  204. data/vendor/git.tukaani.org/xz/src/liblzma/delta/delta_private.h +37 -0
  205. data/vendor/git.tukaani.org/xz/src/liblzma/liblzma.map +108 -0
  206. data/vendor/git.tukaani.org/xz/src/liblzma/liblzma.pc.in +19 -0
  207. data/vendor/git.tukaani.org/xz/src/liblzma/liblzma_w32res.rc +12 -0
  208. data/vendor/git.tukaani.org/xz/src/liblzma/lz/Makefile.inc +22 -0
  209. data/vendor/git.tukaani.org/xz/src/liblzma/lz/lz_decoder.c +306 -0
  210. data/vendor/git.tukaani.org/xz/src/liblzma/lz/lz_decoder.h +234 -0
  211. data/vendor/git.tukaani.org/xz/src/liblzma/lz/lz_encoder.c +616 -0
  212. data/vendor/git.tukaani.org/xz/src/liblzma/lz/lz_encoder.h +327 -0
  213. data/vendor/git.tukaani.org/xz/src/liblzma/lz/lz_encoder_hash.h +108 -0
  214. data/vendor/git.tukaani.org/xz/src/liblzma/lz/lz_encoder_hash_table.h +68 -0
  215. data/vendor/git.tukaani.org/xz/src/liblzma/lz/lz_encoder_mf.c +744 -0
  216. data/vendor/git.tukaani.org/xz/src/liblzma/lzma/Makefile.inc +47 -0
  217. data/vendor/git.tukaani.org/xz/src/liblzma/lzma/fastpos.h +141 -0
  218. data/vendor/git.tukaani.org/xz/src/liblzma/lzma/fastpos_table.c +519 -0
  219. data/vendor/git.tukaani.org/xz/src/liblzma/lzma/fastpos_tablegen.c +56 -0
  220. data/vendor/git.tukaani.org/xz/src/liblzma/lzma/lzma2_decoder.c +310 -0
  221. data/vendor/git.tukaani.org/xz/src/liblzma/lzma/lzma2_decoder.h +29 -0
  222. data/vendor/git.tukaani.org/xz/src/liblzma/lzma/lzma2_encoder.c +410 -0
  223. data/vendor/git.tukaani.org/xz/src/liblzma/lzma/lzma2_encoder.h +43 -0
  224. data/vendor/git.tukaani.org/xz/src/liblzma/lzma/lzma_common.h +224 -0
  225. data/vendor/git.tukaani.org/xz/src/liblzma/lzma/lzma_decoder.c +1064 -0
  226. data/vendor/git.tukaani.org/xz/src/liblzma/lzma/lzma_decoder.h +53 -0
  227. data/vendor/git.tukaani.org/xz/src/liblzma/lzma/lzma_encoder.c +677 -0
  228. data/vendor/git.tukaani.org/xz/src/liblzma/lzma/lzma_encoder.h +58 -0
  229. data/vendor/git.tukaani.org/xz/src/liblzma/lzma/lzma_encoder_optimum_fast.c +170 -0
  230. data/vendor/git.tukaani.org/xz/src/liblzma/lzma/lzma_encoder_optimum_normal.c +855 -0
  231. data/vendor/git.tukaani.org/xz/src/liblzma/lzma/lzma_encoder_presets.c +64 -0
  232. data/vendor/git.tukaani.org/xz/src/liblzma/lzma/lzma_encoder_private.h +148 -0
  233. data/vendor/git.tukaani.org/xz/src/liblzma/rangecoder/Makefile.inc +21 -0
  234. data/vendor/git.tukaani.org/xz/src/liblzma/rangecoder/price.h +92 -0
  235. data/vendor/git.tukaani.org/xz/src/liblzma/rangecoder/price_table.c +22 -0
  236. data/vendor/git.tukaani.org/xz/src/liblzma/rangecoder/price_tablegen.c +87 -0
  237. data/vendor/git.tukaani.org/xz/src/liblzma/rangecoder/range_common.h +71 -0
  238. data/vendor/git.tukaani.org/xz/src/liblzma/rangecoder/range_decoder.h +185 -0
  239. data/vendor/git.tukaani.org/xz/src/liblzma/rangecoder/range_encoder.h +231 -0
  240. data/vendor/git.tukaani.org/xz/src/liblzma/simple/Makefile.inc +47 -0
  241. data/vendor/git.tukaani.org/xz/src/liblzma/simple/arm.c +71 -0
  242. data/vendor/git.tukaani.org/xz/src/liblzma/simple/armthumb.c +76 -0
  243. data/vendor/git.tukaani.org/xz/src/liblzma/simple/ia64.c +112 -0
  244. data/vendor/git.tukaani.org/xz/src/liblzma/simple/powerpc.c +75 -0
  245. data/vendor/git.tukaani.org/xz/src/liblzma/simple/simple_coder.c +282 -0
  246. data/vendor/git.tukaani.org/xz/src/liblzma/simple/simple_coder.h +72 -0
  247. data/vendor/git.tukaani.org/xz/src/liblzma/simple/simple_decoder.c +40 -0
  248. data/vendor/git.tukaani.org/xz/src/liblzma/simple/simple_decoder.h +22 -0
  249. data/vendor/git.tukaani.org/xz/src/liblzma/simple/simple_encoder.c +38 -0
  250. data/vendor/git.tukaani.org/xz/src/liblzma/simple/simple_encoder.h +23 -0
  251. data/vendor/git.tukaani.org/xz/src/liblzma/simple/simple_private.h +74 -0
  252. data/vendor/git.tukaani.org/xz/src/liblzma/simple/sparc.c +83 -0
  253. data/vendor/git.tukaani.org/xz/src/liblzma/simple/x86.c +159 -0
  254. data/vendor/git.tukaani.org/xz/src/liblzma/validate_map.sh +68 -0
  255. data/vendor/git.tukaani.org/xz/src/lzmainfo/Makefile.am +39 -0
  256. data/vendor/git.tukaani.org/xz/src/lzmainfo/lzmainfo.1 +60 -0
  257. data/vendor/git.tukaani.org/xz/src/lzmainfo/lzmainfo.c +219 -0
  258. data/vendor/git.tukaani.org/xz/src/lzmainfo/lzmainfo_w32res.rc +12 -0
  259. data/vendor/git.tukaani.org/xz/src/scripts/Makefile.am +55 -0
  260. data/vendor/git.tukaani.org/xz/src/scripts/xzdiff.1 +77 -0
  261. data/vendor/git.tukaani.org/xz/src/scripts/xzdiff.in +200 -0
  262. data/vendor/git.tukaani.org/xz/src/scripts/xzgrep.1 +98 -0
  263. data/vendor/git.tukaani.org/xz/src/scripts/xzgrep.in +215 -0
  264. data/vendor/git.tukaani.org/xz/src/scripts/xzless.1 +69 -0
  265. data/vendor/git.tukaani.org/xz/src/scripts/xzless.in +58 -0
  266. data/vendor/git.tukaani.org/xz/src/scripts/xzmore.1 +55 -0
  267. data/vendor/git.tukaani.org/xz/src/scripts/xzmore.in +78 -0
  268. data/vendor/git.tukaani.org/xz/src/xz/Makefile.am +111 -0
  269. data/vendor/git.tukaani.org/xz/src/xz/args.c +700 -0
  270. data/vendor/git.tukaani.org/xz/src/xz/args.h +44 -0
  271. data/vendor/git.tukaani.org/xz/src/xz/coder.c +936 -0
  272. data/vendor/git.tukaani.org/xz/src/xz/coder.h +76 -0
  273. data/vendor/git.tukaani.org/xz/src/xz/file_io.c +1300 -0
  274. data/vendor/git.tukaani.org/xz/src/xz/file_io.h +156 -0
  275. data/vendor/git.tukaani.org/xz/src/xz/hardware.c +150 -0
  276. data/vendor/git.tukaani.org/xz/src/xz/hardware.h +37 -0
  277. data/vendor/git.tukaani.org/xz/src/xz/list.c +1192 -0
  278. data/vendor/git.tukaani.org/xz/src/xz/list.h +18 -0
  279. data/vendor/git.tukaani.org/xz/src/xz/main.c +330 -0
  280. data/vendor/git.tukaani.org/xz/src/xz/main.h +30 -0
  281. data/vendor/git.tukaani.org/xz/src/xz/message.c +1258 -0
  282. data/vendor/git.tukaani.org/xz/src/xz/message.h +167 -0
  283. data/vendor/git.tukaani.org/xz/src/xz/mytime.c +89 -0
  284. data/vendor/git.tukaani.org/xz/src/xz/mytime.h +47 -0
  285. data/vendor/git.tukaani.org/xz/src/xz/options.c +363 -0
  286. data/vendor/git.tukaani.org/xz/src/xz/options.h +31 -0
  287. data/vendor/git.tukaani.org/xz/src/xz/private.h +66 -0
  288. data/vendor/git.tukaani.org/xz/src/xz/signals.c +209 -0
  289. data/vendor/git.tukaani.org/xz/src/xz/signals.h +43 -0
  290. data/vendor/git.tukaani.org/xz/src/xz/suffix.c +399 -0
  291. data/vendor/git.tukaani.org/xz/src/xz/suffix.h +28 -0
  292. data/vendor/git.tukaani.org/xz/src/xz/util.c +288 -0
  293. data/vendor/git.tukaani.org/xz/src/xz/util.h +123 -0
  294. data/vendor/git.tukaani.org/xz/src/xz/xz.1 +2786 -0
  295. data/vendor/git.tukaani.org/xz/src/xz/xz_w32res.rc +12 -0
  296. data/vendor/git.tukaani.org/xz/src/xzdec/Makefile.am +82 -0
  297. data/vendor/git.tukaani.org/xz/src/xzdec/lzmadec_w32res.rc +12 -0
  298. data/vendor/git.tukaani.org/xz/src/xzdec/xzdec.1 +146 -0
  299. data/vendor/git.tukaani.org/xz/src/xzdec/xzdec.c +323 -0
  300. data/vendor/git.tukaani.org/xz/src/xzdec/xzdec_w32res.rc +12 -0
  301. data/vendor/git.tukaani.org/xz/tests/Makefile.am +57 -0
  302. data/vendor/git.tukaani.org/xz/tests/bcj_test.c +65 -0
  303. data/vendor/git.tukaani.org/xz/tests/compress_prepared_bcj_sparc +0 -0
  304. data/vendor/git.tukaani.org/xz/tests/compress_prepared_bcj_x86 +0 -0
  305. data/vendor/git.tukaani.org/xz/tests/create_compress_files.c +158 -0
  306. data/vendor/git.tukaani.org/xz/tests/files/README +240 -0
  307. data/vendor/git.tukaani.org/xz/tests/files/bad-0-backward_size.xz +0 -0
  308. data/vendor/git.tukaani.org/xz/tests/files/bad-0-empty-truncated.xz +0 -0
  309. data/vendor/git.tukaani.org/xz/tests/files/bad-0-footer_magic.xz +0 -0
  310. data/vendor/git.tukaani.org/xz/tests/files/bad-0-header_magic.xz +0 -0
  311. data/vendor/git.tukaani.org/xz/tests/files/bad-0-nonempty_index.xz +0 -0
  312. data/vendor/git.tukaani.org/xz/tests/files/bad-0cat-alone.xz +0 -0
  313. data/vendor/git.tukaani.org/xz/tests/files/bad-0cat-header_magic.xz +0 -0
  314. data/vendor/git.tukaani.org/xz/tests/files/bad-0catpad-empty.xz +0 -0
  315. data/vendor/git.tukaani.org/xz/tests/files/bad-0pad-empty.xz +0 -0
  316. data/vendor/git.tukaani.org/xz/tests/files/bad-1-block_header-1.xz +0 -0
  317. data/vendor/git.tukaani.org/xz/tests/files/bad-1-block_header-2.xz +0 -0
  318. data/vendor/git.tukaani.org/xz/tests/files/bad-1-block_header-3.xz +0 -0
  319. data/vendor/git.tukaani.org/xz/tests/files/bad-1-block_header-4.xz +0 -0
  320. data/vendor/git.tukaani.org/xz/tests/files/bad-1-block_header-5.xz +0 -0
  321. data/vendor/git.tukaani.org/xz/tests/files/bad-1-block_header-6.xz +0 -0
  322. data/vendor/git.tukaani.org/xz/tests/files/bad-1-check-crc32.xz +0 -0
  323. data/vendor/git.tukaani.org/xz/tests/files/bad-1-check-crc64.xz +0 -0
  324. data/vendor/git.tukaani.org/xz/tests/files/bad-1-check-sha256.xz +0 -0
  325. data/vendor/git.tukaani.org/xz/tests/files/bad-1-lzma2-1.xz +0 -0
  326. data/vendor/git.tukaani.org/xz/tests/files/bad-1-lzma2-2.xz +0 -0
  327. data/vendor/git.tukaani.org/xz/tests/files/bad-1-lzma2-3.xz +0 -0
  328. data/vendor/git.tukaani.org/xz/tests/files/bad-1-lzma2-4.xz +0 -0
  329. data/vendor/git.tukaani.org/xz/tests/files/bad-1-lzma2-5.xz +0 -0
  330. data/vendor/git.tukaani.org/xz/tests/files/bad-1-lzma2-6.xz +0 -0
  331. data/vendor/git.tukaani.org/xz/tests/files/bad-1-lzma2-7.xz +0 -0
  332. data/vendor/git.tukaani.org/xz/tests/files/bad-1-lzma2-8.xz +0 -0
  333. data/vendor/git.tukaani.org/xz/tests/files/bad-1-stream_flags-1.xz +0 -0
  334. data/vendor/git.tukaani.org/xz/tests/files/bad-1-stream_flags-2.xz +0 -0
  335. data/vendor/git.tukaani.org/xz/tests/files/bad-1-stream_flags-3.xz +0 -0
  336. data/vendor/git.tukaani.org/xz/tests/files/bad-1-vli-1.xz +0 -0
  337. data/vendor/git.tukaani.org/xz/tests/files/bad-1-vli-2.xz +0 -0
  338. data/vendor/git.tukaani.org/xz/tests/files/bad-2-compressed_data_padding.xz +0 -0
  339. data/vendor/git.tukaani.org/xz/tests/files/bad-2-index-1.xz +0 -0
  340. data/vendor/git.tukaani.org/xz/tests/files/bad-2-index-2.xz +0 -0
  341. data/vendor/git.tukaani.org/xz/tests/files/bad-2-index-3.xz +0 -0
  342. data/vendor/git.tukaani.org/xz/tests/files/bad-2-index-4.xz +0 -0
  343. data/vendor/git.tukaani.org/xz/tests/files/bad-2-index-5.xz +0 -0
  344. data/vendor/git.tukaani.org/xz/tests/files/good-0-empty.xz +0 -0
  345. data/vendor/git.tukaani.org/xz/tests/files/good-0cat-empty.xz +0 -0
  346. data/vendor/git.tukaani.org/xz/tests/files/good-0catpad-empty.xz +0 -0
  347. data/vendor/git.tukaani.org/xz/tests/files/good-0pad-empty.xz +0 -0
  348. data/vendor/git.tukaani.org/xz/tests/files/good-1-3delta-lzma2.xz +0 -0
  349. data/vendor/git.tukaani.org/xz/tests/files/good-1-block_header-1.xz +0 -0
  350. data/vendor/git.tukaani.org/xz/tests/files/good-1-block_header-2.xz +0 -0
  351. data/vendor/git.tukaani.org/xz/tests/files/good-1-block_header-3.xz +0 -0
  352. data/vendor/git.tukaani.org/xz/tests/files/good-1-check-crc32.xz +0 -0
  353. data/vendor/git.tukaani.org/xz/tests/files/good-1-check-crc64.xz +0 -0
  354. data/vendor/git.tukaani.org/xz/tests/files/good-1-check-none.xz +0 -0
  355. data/vendor/git.tukaani.org/xz/tests/files/good-1-check-sha256.xz +0 -0
  356. data/vendor/git.tukaani.org/xz/tests/files/good-1-delta-lzma2.tiff.xz +0 -0
  357. data/vendor/git.tukaani.org/xz/tests/files/good-1-lzma2-1.xz +0 -0
  358. data/vendor/git.tukaani.org/xz/tests/files/good-1-lzma2-2.xz +0 -0
  359. data/vendor/git.tukaani.org/xz/tests/files/good-1-lzma2-3.xz +0 -0
  360. data/vendor/git.tukaani.org/xz/tests/files/good-1-lzma2-4.xz +0 -0
  361. data/vendor/git.tukaani.org/xz/tests/files/good-1-lzma2-5.xz +0 -0
  362. data/vendor/git.tukaani.org/xz/tests/files/good-1-sparc-lzma2.xz +0 -0
  363. data/vendor/git.tukaani.org/xz/tests/files/good-1-x86-lzma2.xz +0 -0
  364. data/vendor/git.tukaani.org/xz/tests/files/good-2-lzma2.xz +0 -0
  365. data/vendor/git.tukaani.org/xz/tests/files/unsupported-block_header.xz +0 -0
  366. data/vendor/git.tukaani.org/xz/tests/files/unsupported-check.xz +0 -0
  367. data/vendor/git.tukaani.org/xz/tests/files/unsupported-filter_flags-1.xz +0 -0
  368. data/vendor/git.tukaani.org/xz/tests/files/unsupported-filter_flags-2.xz +0 -0
  369. data/vendor/git.tukaani.org/xz/tests/files/unsupported-filter_flags-3.xz +0 -0
  370. data/vendor/git.tukaani.org/xz/tests/test_bcj_exact_size.c +113 -0
  371. data/vendor/git.tukaani.org/xz/tests/test_block_header.c +240 -0
  372. data/vendor/git.tukaani.org/xz/tests/test_check.c +83 -0
  373. data/vendor/git.tukaani.org/xz/tests/test_compress.sh +142 -0
  374. data/vendor/git.tukaani.org/xz/tests/test_files.sh +57 -0
  375. data/vendor/git.tukaani.org/xz/tests/test_filter_flags.c +258 -0
  376. data/vendor/git.tukaani.org/xz/tests/test_index.c +689 -0
  377. data/vendor/git.tukaani.org/xz/tests/test_scripts.sh +76 -0
  378. data/vendor/git.tukaani.org/xz/tests/test_stream_flags.c +180 -0
  379. data/vendor/git.tukaani.org/xz/tests/tests.h +124 -0
  380. data/vendor/git.tukaani.org/xz/tests/xzgrep_expected_output +39 -0
  381. data/vendor/git.tukaani.org/xz/windows/INSTALL-MSVC.txt +47 -0
  382. data/vendor/git.tukaani.org/xz/windows/INSTALL-MinGW.txt +138 -0
  383. data/vendor/git.tukaani.org/xz/windows/README-Windows.txt +122 -0
  384. data/vendor/git.tukaani.org/xz/windows/build.bash +203 -0
  385. data/vendor/git.tukaani.org/xz/windows/vs2013/config.h +148 -0
  386. data/vendor/git.tukaani.org/xz/windows/vs2013/liblzma.vcxproj +354 -0
  387. data/vendor/git.tukaani.org/xz/windows/vs2013/liblzma_dll.vcxproj +383 -0
  388. data/vendor/git.tukaani.org/xz/windows/vs2013/xz_win.sln +48 -0
  389. data/vendor/git.tukaani.org/xz/windows/vs2017/config.h +148 -0
  390. data/vendor/git.tukaani.org/xz/windows/vs2017/liblzma.vcxproj +355 -0
  391. data/vendor/git.tukaani.org/xz/windows/vs2017/liblzma_dll.vcxproj +384 -0
  392. data/vendor/git.tukaani.org/xz/windows/vs2017/xz_win.sln +48 -0
  393. metadata +457 -0
@@ -0,0 +1,90 @@
1
+ /**
2
+ * \file lzma/bcj.h
3
+ * \brief Branch/Call/Jump conversion filters
4
+ */
5
+
6
+ /*
7
+ * Author: Lasse Collin
8
+ *
9
+ * This file has been put into the public domain.
10
+ * You can do whatever you want with this file.
11
+ *
12
+ * See ../lzma.h for information about liblzma as a whole.
13
+ */
14
+
15
+ #ifndef LZMA_H_INTERNAL
16
+ # error Never include this file directly. Use <lzma.h> instead.
17
+ #endif
18
+
19
+
20
+ /* Filter IDs for lzma_filter.id */
21
+
22
+ #define LZMA_FILTER_X86 LZMA_VLI_C(0x04)
23
+ /**<
24
+ * Filter for x86 binaries
25
+ */
26
+
27
+ #define LZMA_FILTER_POWERPC LZMA_VLI_C(0x05)
28
+ /**<
29
+ * Filter for Big endian PowerPC binaries
30
+ */
31
+
32
+ #define LZMA_FILTER_IA64 LZMA_VLI_C(0x06)
33
+ /**<
34
+ * Filter for IA-64 (Itanium) binaries.
35
+ */
36
+
37
+ #define LZMA_FILTER_ARM LZMA_VLI_C(0x07)
38
+ /**<
39
+ * Filter for ARM binaries.
40
+ */
41
+
42
+ #define LZMA_FILTER_ARMTHUMB LZMA_VLI_C(0x08)
43
+ /**<
44
+ * Filter for ARM-Thumb binaries.
45
+ */
46
+
47
+ #define LZMA_FILTER_SPARC LZMA_VLI_C(0x09)
48
+ /**<
49
+ * Filter for SPARC binaries.
50
+ */
51
+
52
+
53
+ /**
54
+ * \brief Options for BCJ filters
55
+ *
56
+ * The BCJ filters never change the size of the data. Specifying options
57
+ * for them is optional: if pointer to options is NULL, default value is
58
+ * used. You probably never need to specify options to BCJ filters, so just
59
+ * set the options pointer to NULL and be happy.
60
+ *
61
+ * If options with non-default values have been specified when encoding,
62
+ * the same options must also be specified when decoding.
63
+ *
64
+ * \note At the moment, none of the BCJ filters support
65
+ * LZMA_SYNC_FLUSH. If LZMA_SYNC_FLUSH is specified,
66
+ * LZMA_OPTIONS_ERROR will be returned. If there is need,
67
+ * partial support for LZMA_SYNC_FLUSH can be added in future.
68
+ * Partial means that flushing would be possible only at
69
+ * offsets that are multiple of 2, 4, or 16 depending on
70
+ * the filter, except x86 which cannot be made to support
71
+ * LZMA_SYNC_FLUSH predictably.
72
+ */
73
+ typedef struct {
74
+ /**
75
+ * \brief Start offset for conversions
76
+ *
77
+ * This setting is useful only when the same filter is used
78
+ * _separately_ for multiple sections of the same executable file,
79
+ * and the sections contain cross-section branch/call/jump
80
+ * instructions. In that case it is beneficial to set the start
81
+ * offset of the non-first sections so that the relative addresses
82
+ * of the cross-section branch/call/jump instructions will use the
83
+ * same absolute addresses as in the first section.
84
+ *
85
+ * When the pointer to options is NULL, the default value (zero)
86
+ * is used.
87
+ */
88
+ uint32_t start_offset;
89
+
90
+ } lzma_options_bcj;
@@ -0,0 +1,581 @@
1
+ /**
2
+ * \file lzma/block.h
3
+ * \brief .xz Block handling
4
+ */
5
+
6
+ /*
7
+ * Author: Lasse Collin
8
+ *
9
+ * This file has been put into the public domain.
10
+ * You can do whatever you want with this file.
11
+ *
12
+ * See ../lzma.h for information about liblzma as a whole.
13
+ */
14
+
15
+ #ifndef LZMA_H_INTERNAL
16
+ # error Never include this file directly. Use <lzma.h> instead.
17
+ #endif
18
+
19
+
20
+ /**
21
+ * \brief Options for the Block and Block Header encoders and decoders
22
+ *
23
+ * Different Block handling functions use different parts of this structure.
24
+ * Some read some members, other functions write, and some do both. Only the
25
+ * members listed for reading need to be initialized when the specified
26
+ * functions are called. The members marked for writing will be assigned
27
+ * new values at some point either by calling the given function or by
28
+ * later calls to lzma_code().
29
+ */
30
+ typedef struct {
31
+ /**
32
+ * \brief Block format version
33
+ *
34
+ * To prevent API and ABI breakages when new features are needed,
35
+ * a version number is used to indicate which fields in this
36
+ * structure are in use:
37
+ * - liblzma >= 5.0.0: version = 0 is supported.
38
+ * - liblzma >= 5.1.4beta: Support for version = 1 was added,
39
+ * which adds the ignore_check field.
40
+ *
41
+ * If version is greater than one, most Block related functions
42
+ * will return LZMA_OPTIONS_ERROR (lzma_block_header_decode() works
43
+ * with any version value).
44
+ *
45
+ * Read by:
46
+ * - All functions that take pointer to lzma_block as argument,
47
+ * including lzma_block_header_decode().
48
+ *
49
+ * Written by:
50
+ * - lzma_block_header_decode()
51
+ */
52
+ uint32_t version;
53
+
54
+ /**
55
+ * \brief Size of the Block Header field
56
+ *
57
+ * This is always a multiple of four.
58
+ *
59
+ * Read by:
60
+ * - lzma_block_header_encode()
61
+ * - lzma_block_header_decode()
62
+ * - lzma_block_compressed_size()
63
+ * - lzma_block_unpadded_size()
64
+ * - lzma_block_total_size()
65
+ * - lzma_block_decoder()
66
+ * - lzma_block_buffer_decode()
67
+ *
68
+ * Written by:
69
+ * - lzma_block_header_size()
70
+ * - lzma_block_buffer_encode()
71
+ */
72
+ uint32_t header_size;
73
+ # define LZMA_BLOCK_HEADER_SIZE_MIN 8
74
+ # define LZMA_BLOCK_HEADER_SIZE_MAX 1024
75
+
76
+ /**
77
+ * \brief Type of integrity Check
78
+ *
79
+ * The Check ID is not stored into the Block Header, thus its value
80
+ * must be provided also when decoding.
81
+ *
82
+ * Read by:
83
+ * - lzma_block_header_encode()
84
+ * - lzma_block_header_decode()
85
+ * - lzma_block_compressed_size()
86
+ * - lzma_block_unpadded_size()
87
+ * - lzma_block_total_size()
88
+ * - lzma_block_encoder()
89
+ * - lzma_block_decoder()
90
+ * - lzma_block_buffer_encode()
91
+ * - lzma_block_buffer_decode()
92
+ */
93
+ lzma_check check;
94
+
95
+ /**
96
+ * \brief Size of the Compressed Data in bytes
97
+ *
98
+ * Encoding: If this is not LZMA_VLI_UNKNOWN, Block Header encoder
99
+ * will store this value to the Block Header. Block encoder doesn't
100
+ * care about this value, but will set it once the encoding has been
101
+ * finished.
102
+ *
103
+ * Decoding: If this is not LZMA_VLI_UNKNOWN, Block decoder will
104
+ * verify that the size of the Compressed Data field matches
105
+ * compressed_size.
106
+ *
107
+ * Usually you don't know this value when encoding in streamed mode,
108
+ * and thus cannot write this field into the Block Header.
109
+ *
110
+ * In non-streamed mode you can reserve space for this field before
111
+ * encoding the actual Block. After encoding the data, finish the
112
+ * Block by encoding the Block Header. Steps in detail:
113
+ *
114
+ * - Set compressed_size to some big enough value. If you don't know
115
+ * better, use LZMA_VLI_MAX, but remember that bigger values take
116
+ * more space in Block Header.
117
+ *
118
+ * - Call lzma_block_header_size() to see how much space you need to
119
+ * reserve for the Block Header.
120
+ *
121
+ * - Encode the Block using lzma_block_encoder() and lzma_code().
122
+ * It sets compressed_size to the correct value.
123
+ *
124
+ * - Use lzma_block_header_encode() to encode the Block Header.
125
+ * Because space was reserved in the first step, you don't need
126
+ * to call lzma_block_header_size() anymore, because due to
127
+ * reserving, header_size has to be big enough. If it is "too big",
128
+ * lzma_block_header_encode() will add enough Header Padding to
129
+ * make Block Header to match the size specified by header_size.
130
+ *
131
+ * Read by:
132
+ * - lzma_block_header_size()
133
+ * - lzma_block_header_encode()
134
+ * - lzma_block_compressed_size()
135
+ * - lzma_block_unpadded_size()
136
+ * - lzma_block_total_size()
137
+ * - lzma_block_decoder()
138
+ * - lzma_block_buffer_decode()
139
+ *
140
+ * Written by:
141
+ * - lzma_block_header_decode()
142
+ * - lzma_block_compressed_size()
143
+ * - lzma_block_encoder()
144
+ * - lzma_block_decoder()
145
+ * - lzma_block_buffer_encode()
146
+ * - lzma_block_buffer_decode()
147
+ */
148
+ lzma_vli compressed_size;
149
+
150
+ /**
151
+ * \brief Uncompressed Size in bytes
152
+ *
153
+ * This is handled very similarly to compressed_size above.
154
+ *
155
+ * uncompressed_size is needed by fewer functions than
156
+ * compressed_size. This is because uncompressed_size isn't
157
+ * needed to validate that Block stays within proper limits.
158
+ *
159
+ * Read by:
160
+ * - lzma_block_header_size()
161
+ * - lzma_block_header_encode()
162
+ * - lzma_block_decoder()
163
+ * - lzma_block_buffer_decode()
164
+ *
165
+ * Written by:
166
+ * - lzma_block_header_decode()
167
+ * - lzma_block_encoder()
168
+ * - lzma_block_decoder()
169
+ * - lzma_block_buffer_encode()
170
+ * - lzma_block_buffer_decode()
171
+ */
172
+ lzma_vli uncompressed_size;
173
+
174
+ /**
175
+ * \brief Array of filters
176
+ *
177
+ * There can be 1-4 filters. The end of the array is marked with
178
+ * .id = LZMA_VLI_UNKNOWN.
179
+ *
180
+ * Read by:
181
+ * - lzma_block_header_size()
182
+ * - lzma_block_header_encode()
183
+ * - lzma_block_encoder()
184
+ * - lzma_block_decoder()
185
+ * - lzma_block_buffer_encode()
186
+ * - lzma_block_buffer_decode()
187
+ *
188
+ * Written by:
189
+ * - lzma_block_header_decode(): Note that this does NOT free()
190
+ * the old filter options structures. All unused filters[] will
191
+ * have .id == LZMA_VLI_UNKNOWN and .options == NULL. If
192
+ * decoding fails, all filters[] are guaranteed to be
193
+ * LZMA_VLI_UNKNOWN and NULL.
194
+ *
195
+ * \note Because of the array is terminated with
196
+ * .id = LZMA_VLI_UNKNOWN, the actual array must
197
+ * have LZMA_FILTERS_MAX + 1 members or the Block
198
+ * Header decoder will overflow the buffer.
199
+ */
200
+ lzma_filter *filters;
201
+
202
+ /**
203
+ * \brief Raw value stored in the Check field
204
+ *
205
+ * After successful coding, the first lzma_check_size(check) bytes
206
+ * of this array contain the raw value stored in the Check field.
207
+ *
208
+ * Note that CRC32 and CRC64 are stored in little endian byte order.
209
+ * Take it into account if you display the Check values to the user.
210
+ *
211
+ * Written by:
212
+ * - lzma_block_encoder()
213
+ * - lzma_block_decoder()
214
+ * - lzma_block_buffer_encode()
215
+ * - lzma_block_buffer_decode()
216
+ */
217
+ uint8_t raw_check[LZMA_CHECK_SIZE_MAX];
218
+
219
+ /*
220
+ * Reserved space to allow possible future extensions without
221
+ * breaking the ABI. You should not touch these, because the names
222
+ * of these variables may change. These are and will never be used
223
+ * with the currently supported options, so it is safe to leave these
224
+ * uninitialized.
225
+ */
226
+ void *reserved_ptr1;
227
+ void *reserved_ptr2;
228
+ void *reserved_ptr3;
229
+ uint32_t reserved_int1;
230
+ uint32_t reserved_int2;
231
+ lzma_vli reserved_int3;
232
+ lzma_vli reserved_int4;
233
+ lzma_vli reserved_int5;
234
+ lzma_vli reserved_int6;
235
+ lzma_vli reserved_int7;
236
+ lzma_vli reserved_int8;
237
+ lzma_reserved_enum reserved_enum1;
238
+ lzma_reserved_enum reserved_enum2;
239
+ lzma_reserved_enum reserved_enum3;
240
+ lzma_reserved_enum reserved_enum4;
241
+
242
+ /**
243
+ * \brief A flag to Block decoder to not verify the Check field
244
+ *
245
+ * This field is supported by liblzma >= 5.1.4beta if .version >= 1.
246
+ *
247
+ * If this is set to true, the integrity check won't be calculated
248
+ * and verified. Unless you know what you are doing, you should
249
+ * leave this to false. (A reason to set this to true is when the
250
+ * file integrity is verified externally anyway and you want to
251
+ * speed up the decompression, which matters mostly when using
252
+ * SHA-256 as the integrity check.)
253
+ *
254
+ * If .version >= 1, read by:
255
+ * - lzma_block_decoder()
256
+ * - lzma_block_buffer_decode()
257
+ *
258
+ * Written by (.version is ignored):
259
+ * - lzma_block_header_decode() always sets this to false
260
+ */
261
+ lzma_bool ignore_check;
262
+
263
+ lzma_bool reserved_bool2;
264
+ lzma_bool reserved_bool3;
265
+ lzma_bool reserved_bool4;
266
+ lzma_bool reserved_bool5;
267
+ lzma_bool reserved_bool6;
268
+ lzma_bool reserved_bool7;
269
+ lzma_bool reserved_bool8;
270
+
271
+ } lzma_block;
272
+
273
+
274
+ /**
275
+ * \brief Decode the Block Header Size field
276
+ *
277
+ * To decode Block Header using lzma_block_header_decode(), the size of the
278
+ * Block Header has to be known and stored into lzma_block.header_size.
279
+ * The size can be calculated from the first byte of a Block using this macro.
280
+ * Note that if the first byte is 0x00, it indicates beginning of Index; use
281
+ * this macro only when the byte is not 0x00.
282
+ *
283
+ * There is no encoding macro, because Block Header encoder is enough for that.
284
+ */
285
+ #define lzma_block_header_size_decode(b) (((uint32_t)(b) + 1) * 4)
286
+
287
+
288
+ /**
289
+ * \brief Calculate Block Header Size
290
+ *
291
+ * Calculate the minimum size needed for the Block Header field using the
292
+ * settings specified in the lzma_block structure. Note that it is OK to
293
+ * increase the calculated header_size value as long as it is a multiple of
294
+ * four and doesn't exceed LZMA_BLOCK_HEADER_SIZE_MAX. Increasing header_size
295
+ * just means that lzma_block_header_encode() will add Header Padding.
296
+ *
297
+ * \return - LZMA_OK: Size calculated successfully and stored to
298
+ * block->header_size.
299
+ * - LZMA_OPTIONS_ERROR: Unsupported version, filters or
300
+ * filter options.
301
+ * - LZMA_PROG_ERROR: Invalid values like compressed_size == 0.
302
+ *
303
+ * \note This doesn't check that all the options are valid i.e. this
304
+ * may return LZMA_OK even if lzma_block_header_encode() or
305
+ * lzma_block_encoder() would fail. If you want to validate the
306
+ * filter chain, consider using lzma_memlimit_encoder() which as
307
+ * a side-effect validates the filter chain.
308
+ */
309
+ extern LZMA_API(lzma_ret) lzma_block_header_size(lzma_block *block)
310
+ lzma_nothrow lzma_attr_warn_unused_result;
311
+
312
+
313
+ /**
314
+ * \brief Encode Block Header
315
+ *
316
+ * The caller must have calculated the size of the Block Header already with
317
+ * lzma_block_header_size(). If a value larger than the one calculated by
318
+ * lzma_block_header_size() is used, the Block Header will be padded to the
319
+ * specified size.
320
+ *
321
+ * \param out Beginning of the output buffer. This must be
322
+ * at least block->header_size bytes.
323
+ * \param block Block options to be encoded.
324
+ *
325
+ * \return - LZMA_OK: Encoding was successful. block->header_size
326
+ * bytes were written to output buffer.
327
+ * - LZMA_OPTIONS_ERROR: Invalid or unsupported options.
328
+ * - LZMA_PROG_ERROR: Invalid arguments, for example
329
+ * block->header_size is invalid or block->filters is NULL.
330
+ */
331
+ extern LZMA_API(lzma_ret) lzma_block_header_encode(
332
+ const lzma_block *block, uint8_t *out)
333
+ lzma_nothrow lzma_attr_warn_unused_result;
334
+
335
+
336
+ /**
337
+ * \brief Decode Block Header
338
+ *
339
+ * block->version should (usually) be set to the highest value supported
340
+ * by the application. If the application sets block->version to a value
341
+ * higher than supported by the current liblzma version, this function will
342
+ * downgrade block->version to the highest value supported by it. Thus one
343
+ * should check the value of block->version after calling this function if
344
+ * block->version was set to a non-zero value and the application doesn't
345
+ * otherwise know that the liblzma version being used is new enough to
346
+ * support the specified block->version.
347
+ *
348
+ * The size of the Block Header must have already been decoded with
349
+ * lzma_block_header_size_decode() macro and stored to block->header_size.
350
+ *
351
+ * The integrity check type from Stream Header must have been stored
352
+ * to block->check.
353
+ *
354
+ * block->filters must have been allocated, but they don't need to be
355
+ * initialized (possible existing filter options are not freed).
356
+ *
357
+ * \param block Destination for Block options.
358
+ * \param allocator lzma_allocator for custom allocator functions.
359
+ * Set to NULL to use malloc() (and also free()
360
+ * if an error occurs).
361
+ * \param in Beginning of the input buffer. This must be
362
+ * at least block->header_size bytes.
363
+ *
364
+ * \return - LZMA_OK: Decoding was successful. block->header_size
365
+ * bytes were read from the input buffer.
366
+ * - LZMA_OPTIONS_ERROR: The Block Header specifies some
367
+ * unsupported options such as unsupported filters. This can
368
+ * happen also if block->version was set to a too low value
369
+ * compared to what would be required to properly represent
370
+ * the information stored in the Block Header.
371
+ * - LZMA_DATA_ERROR: Block Header is corrupt, for example,
372
+ * the CRC32 doesn't match.
373
+ * - LZMA_PROG_ERROR: Invalid arguments, for example
374
+ * block->header_size is invalid or block->filters is NULL.
375
+ */
376
+ extern LZMA_API(lzma_ret) lzma_block_header_decode(lzma_block *block,
377
+ const lzma_allocator *allocator, const uint8_t *in)
378
+ lzma_nothrow lzma_attr_warn_unused_result;
379
+
380
+
381
+ /**
382
+ * \brief Validate and set Compressed Size according to Unpadded Size
383
+ *
384
+ * Block Header stores Compressed Size, but Index has Unpadded Size. If the
385
+ * application has already parsed the Index and is now decoding Blocks,
386
+ * it can calculate Compressed Size from Unpadded Size. This function does
387
+ * exactly that with error checking:
388
+ *
389
+ * - Compressed Size calculated from Unpadded Size must be positive integer,
390
+ * that is, Unpadded Size must be big enough that after Block Header and
391
+ * Check fields there's still at least one byte for Compressed Size.
392
+ *
393
+ * - If Compressed Size was present in Block Header, the new value
394
+ * calculated from Unpadded Size is compared against the value
395
+ * from Block Header.
396
+ *
397
+ * \note This function must be called _after_ decoding the Block Header
398
+ * field so that it can properly validate Compressed Size if it
399
+ * was present in Block Header.
400
+ *
401
+ * \return - LZMA_OK: block->compressed_size was set successfully.
402
+ * - LZMA_DATA_ERROR: unpadded_size is too small compared to
403
+ * block->header_size and lzma_check_size(block->check).
404
+ * - LZMA_PROG_ERROR: Some values are invalid. For example,
405
+ * block->header_size must be a multiple of four and
406
+ * between 8 and 1024 inclusive.
407
+ */
408
+ extern LZMA_API(lzma_ret) lzma_block_compressed_size(
409
+ lzma_block *block, lzma_vli unpadded_size)
410
+ lzma_nothrow lzma_attr_warn_unused_result;
411
+
412
+
413
+ /**
414
+ * \brief Calculate Unpadded Size
415
+ *
416
+ * The Index field stores Unpadded Size and Uncompressed Size. The latter
417
+ * can be taken directly from the lzma_block structure after coding a Block,
418
+ * but Unpadded Size needs to be calculated from Block Header Size,
419
+ * Compressed Size, and size of the Check field. This is where this function
420
+ * is needed.
421
+ *
422
+ * \return Unpadded Size on success, or zero on error.
423
+ */
424
+ extern LZMA_API(lzma_vli) lzma_block_unpadded_size(const lzma_block *block)
425
+ lzma_nothrow lzma_attr_pure;
426
+
427
+
428
+ /**
429
+ * \brief Calculate the total encoded size of a Block
430
+ *
431
+ * This is equivalent to lzma_block_unpadded_size() except that the returned
432
+ * value includes the size of the Block Padding field.
433
+ *
434
+ * \return On success, total encoded size of the Block. On error,
435
+ * zero is returned.
436
+ */
437
+ extern LZMA_API(lzma_vli) lzma_block_total_size(const lzma_block *block)
438
+ lzma_nothrow lzma_attr_pure;
439
+
440
+
441
+ /**
442
+ * \brief Initialize .xz Block encoder
443
+ *
444
+ * Valid actions for lzma_code() are LZMA_RUN, LZMA_SYNC_FLUSH (only if the
445
+ * filter chain supports it), and LZMA_FINISH.
446
+ *
447
+ * \return - LZMA_OK: All good, continue with lzma_code().
448
+ * - LZMA_MEM_ERROR
449
+ * - LZMA_OPTIONS_ERROR
450
+ * - LZMA_UNSUPPORTED_CHECK: block->check specifies a Check ID
451
+ * that is not supported by this buid of liblzma. Initializing
452
+ * the encoder failed.
453
+ * - LZMA_PROG_ERROR
454
+ */
455
+ extern LZMA_API(lzma_ret) lzma_block_encoder(
456
+ lzma_stream *strm, lzma_block *block)
457
+ lzma_nothrow lzma_attr_warn_unused_result;
458
+
459
+
460
+ /**
461
+ * \brief Initialize .xz Block decoder
462
+ *
463
+ * Valid actions for lzma_code() are LZMA_RUN and LZMA_FINISH. Using
464
+ * LZMA_FINISH is not required. It is supported only for convenience.
465
+ *
466
+ * \return - LZMA_OK: All good, continue with lzma_code().
467
+ * - LZMA_UNSUPPORTED_CHECK: Initialization was successful, but
468
+ * the given Check ID is not supported, thus Check will be
469
+ * ignored.
470
+ * - LZMA_PROG_ERROR
471
+ * - LZMA_MEM_ERROR
472
+ */
473
+ extern LZMA_API(lzma_ret) lzma_block_decoder(
474
+ lzma_stream *strm, lzma_block *block)
475
+ lzma_nothrow lzma_attr_warn_unused_result;
476
+
477
+
478
+ /**
479
+ * \brief Calculate maximum output size for single-call Block encoding
480
+ *
481
+ * This is equivalent to lzma_stream_buffer_bound() but for .xz Blocks.
482
+ * See the documentation of lzma_stream_buffer_bound().
483
+ */
484
+ extern LZMA_API(size_t) lzma_block_buffer_bound(size_t uncompressed_size)
485
+ lzma_nothrow;
486
+
487
+
488
+ /**
489
+ * \brief Single-call .xz Block encoder
490
+ *
491
+ * In contrast to the multi-call encoder initialized with
492
+ * lzma_block_encoder(), this function encodes also the Block Header. This
493
+ * is required to make it possible to write appropriate Block Header also
494
+ * in case the data isn't compressible, and different filter chain has to be
495
+ * used to encode the data in uncompressed form using uncompressed chunks
496
+ * of the LZMA2 filter.
497
+ *
498
+ * When the data isn't compressible, header_size, compressed_size, and
499
+ * uncompressed_size are set just like when the data was compressible, but
500
+ * it is possible that header_size is too small to hold the filter chain
501
+ * specified in block->filters, because that isn't necessarily the filter
502
+ * chain that was actually used to encode the data. lzma_block_unpadded_size()
503
+ * still works normally, because it doesn't read the filters array.
504
+ *
505
+ * \param block Block options: block->version, block->check,
506
+ * and block->filters must have been initialized.
507
+ * \param allocator lzma_allocator for custom allocator functions.
508
+ * Set to NULL to use malloc() and free().
509
+ * \param in Beginning of the input buffer
510
+ * \param in_size Size of the input buffer
511
+ * \param out Beginning of the output buffer
512
+ * \param out_pos The next byte will be written to out[*out_pos].
513
+ * *out_pos is updated only if encoding succeeds.
514
+ * \param out_size Size of the out buffer; the first byte into
515
+ * which no data is written to is out[out_size].
516
+ *
517
+ * \return - LZMA_OK: Encoding was successful.
518
+ * - LZMA_BUF_ERROR: Not enough output buffer space.
519
+ * - LZMA_UNSUPPORTED_CHECK
520
+ * - LZMA_OPTIONS_ERROR
521
+ * - LZMA_MEM_ERROR
522
+ * - LZMA_DATA_ERROR
523
+ * - LZMA_PROG_ERROR
524
+ */
525
+ extern LZMA_API(lzma_ret) lzma_block_buffer_encode(
526
+ lzma_block *block, const lzma_allocator *allocator,
527
+ const uint8_t *in, size_t in_size,
528
+ uint8_t *out, size_t *out_pos, size_t out_size)
529
+ lzma_nothrow lzma_attr_warn_unused_result;
530
+
531
+
532
+ /**
533
+ * \brief Single-call uncompressed .xz Block encoder
534
+ *
535
+ * This is like lzma_block_buffer_encode() except this doesn't try to
536
+ * compress the data and instead encodes the data using LZMA2 uncompressed
537
+ * chunks. The required output buffer size can be determined with
538
+ * lzma_block_buffer_bound().
539
+ *
540
+ * Since the data won't be compressed, this function ignores block->filters.
541
+ * This function doesn't take lzma_allocator because this function doesn't
542
+ * allocate any memory from the heap.
543
+ */
544
+ extern LZMA_API(lzma_ret) lzma_block_uncomp_encode(lzma_block *block,
545
+ const uint8_t *in, size_t in_size,
546
+ uint8_t *out, size_t *out_pos, size_t out_size)
547
+ lzma_nothrow lzma_attr_warn_unused_result;
548
+
549
+
550
+ /**
551
+ * \brief Single-call .xz Block decoder
552
+ *
553
+ * This is single-call equivalent of lzma_block_decoder(), and requires that
554
+ * the caller has already decoded Block Header and checked its memory usage.
555
+ *
556
+ * \param block Block options just like with lzma_block_decoder().
557
+ * \param allocator lzma_allocator for custom allocator functions.
558
+ * Set to NULL to use malloc() and free().
559
+ * \param in Beginning of the input buffer
560
+ * \param in_pos The next byte will be read from in[*in_pos].
561
+ * *in_pos is updated only if decoding succeeds.
562
+ * \param in_size Size of the input buffer; the first byte that
563
+ * won't be read is in[in_size].
564
+ * \param out Beginning of the output buffer
565
+ * \param out_pos The next byte will be written to out[*out_pos].
566
+ * *out_pos is updated only if encoding succeeds.
567
+ * \param out_size Size of the out buffer; the first byte into
568
+ * which no data is written to is out[out_size].
569
+ *
570
+ * \return - LZMA_OK: Decoding was successful.
571
+ * - LZMA_OPTIONS_ERROR
572
+ * - LZMA_DATA_ERROR
573
+ * - LZMA_MEM_ERROR
574
+ * - LZMA_BUF_ERROR: Output buffer was too small.
575
+ * - LZMA_PROG_ERROR
576
+ */
577
+ extern LZMA_API(lzma_ret) lzma_block_buffer_decode(
578
+ lzma_block *block, const lzma_allocator *allocator,
579
+ const uint8_t *in, size_t *in_pos, size_t in_size,
580
+ uint8_t *out, size_t *out_pos, size_t out_size)
581
+ lzma_nothrow;