libwz 0.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 (362) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +165 -0
  3. package/binding.gyp +149 -0
  4. package/deps/tiny-aes/.github/workflows/c-cpp.yml +27 -0
  5. package/deps/tiny-aes/CMakeLists.txt +17 -0
  6. package/deps/tiny-aes/Makefile +61 -0
  7. package/deps/tiny-aes/README.md +83 -0
  8. package/deps/tiny-aes/aes.c +572 -0
  9. package/deps/tiny-aes/aes.h +91 -0
  10. package/deps/tiny-aes/aes.hpp +12 -0
  11. package/deps/tiny-aes/conanfile.py +73 -0
  12. package/deps/tiny-aes/library.json +19 -0
  13. package/deps/tiny-aes/library.properties +11 -0
  14. package/deps/tiny-aes/test.c +316 -0
  15. package/deps/tiny-aes/test.cpp +2 -0
  16. package/deps/tiny-aes/test_package/CMakeLists.txt +11 -0
  17. package/deps/tiny-aes/test_package/conanfile.py +17 -0
  18. package/deps/tiny-aes/unlicense.txt +24 -0
  19. package/deps/zlib/.cmake-format.yaml +245 -0
  20. package/deps/zlib/.github/workflows/c-std.yml +268 -0
  21. package/deps/zlib/.github/workflows/cmake.yml +147 -0
  22. package/deps/zlib/.github/workflows/configure.yml +146 -0
  23. package/deps/zlib/.github/workflows/contribs.yml +64 -0
  24. package/deps/zlib/.github/workflows/fuzz.yml +25 -0
  25. package/deps/zlib/.github/workflows/msys-cygwin.yml +92 -0
  26. package/deps/zlib/.github/workflows/others.yml +153 -0
  27. package/deps/zlib/BUILD.bazel +134 -0
  28. package/deps/zlib/CMakeLists.txt +310 -0
  29. package/deps/zlib/ChangeLog +1669 -0
  30. package/deps/zlib/FAQ +371 -0
  31. package/deps/zlib/INDEX +67 -0
  32. package/deps/zlib/LICENSE +22 -0
  33. package/deps/zlib/MODULE.bazel +9 -0
  34. package/deps/zlib/Makefile.in +426 -0
  35. package/deps/zlib/README +115 -0
  36. package/deps/zlib/README-cmake.md +79 -0
  37. package/deps/zlib/adler32.c +164 -0
  38. package/deps/zlib/amiga/Makefile.pup +69 -0
  39. package/deps/zlib/amiga/Makefile.sas +68 -0
  40. package/deps/zlib/compress.c +99 -0
  41. package/deps/zlib/configure +1078 -0
  42. package/deps/zlib/contrib/CMakeLists.txt +61 -0
  43. package/deps/zlib/contrib/README.contrib +57 -0
  44. package/deps/zlib/contrib/ada/CMakeLists.txt +217 -0
  45. package/deps/zlib/contrib/ada/buffer_demo.adb +106 -0
  46. package/deps/zlib/contrib/ada/cmake/Modules/CMakeADACompiler.cmake.in +23 -0
  47. package/deps/zlib/contrib/ada/cmake/Modules/CMakeADAInformation.cmake +133 -0
  48. package/deps/zlib/contrib/ada/cmake/Modules/CMakeDetermineADACompiler.cmake +33 -0
  49. package/deps/zlib/contrib/ada/cmake/Modules/CMakeTestADACompiler.cmake +46 -0
  50. package/deps/zlib/contrib/ada/cmake/binder_helper.cmake +47 -0
  51. package/deps/zlib/contrib/ada/cmake/compile_helper.cmake +32 -0
  52. package/deps/zlib/contrib/ada/cmake/exe_link_helper.cmake +53 -0
  53. package/deps/zlib/contrib/ada/cmake/shared_link_helper.cmake +52 -0
  54. package/deps/zlib/contrib/ada/cmake/static_link_helper.cmake +25 -0
  55. package/deps/zlib/contrib/ada/mtest.adb +156 -0
  56. package/deps/zlib/contrib/ada/read.adb +156 -0
  57. package/deps/zlib/contrib/ada/readme.txt +65 -0
  58. package/deps/zlib/contrib/ada/test.adb +463 -0
  59. package/deps/zlib/contrib/ada/zlib-streams.adb +225 -0
  60. package/deps/zlib/contrib/ada/zlib-streams.ads +114 -0
  61. package/deps/zlib/contrib/ada/zlib-thin.adb +142 -0
  62. package/deps/zlib/contrib/ada/zlib-thin.ads +450 -0
  63. package/deps/zlib/contrib/ada/zlib.adb +701 -0
  64. package/deps/zlib/contrib/ada/zlib.ads +328 -0
  65. package/deps/zlib/contrib/ada/zlib.gpr +20 -0
  66. package/deps/zlib/contrib/blast/CMakeLists.txt +166 -0
  67. package/deps/zlib/contrib/blast/Makefile +14 -0
  68. package/deps/zlib/contrib/blast/README +4 -0
  69. package/deps/zlib/contrib/blast/blast-test.c +42 -0
  70. package/deps/zlib/contrib/blast/blast.c +422 -0
  71. package/deps/zlib/contrib/blast/blast.h +84 -0
  72. package/deps/zlib/contrib/blast/blastConfig.cmake.in +18 -0
  73. package/deps/zlib/contrib/blast/test/CMakeLists.txt +193 -0
  74. package/deps/zlib/contrib/blast/test/add_subdirectory_exclude_test.cmake.in +27 -0
  75. package/deps/zlib/contrib/blast/test/add_subdirectory_test.cmake.in +25 -0
  76. package/deps/zlib/contrib/blast/test/find_package_no_components_test.cmake.in +24 -0
  77. package/deps/zlib/contrib/blast/test/find_package_test.cmake.in +24 -0
  78. package/deps/zlib/contrib/blast/test/find_package_wrong_components_test.cmake.in +24 -0
  79. package/deps/zlib/contrib/blast/test.pk +0 -0
  80. package/deps/zlib/contrib/blast/test.txt +1 -0
  81. package/deps/zlib/contrib/blast/tester.cmake +28 -0
  82. package/deps/zlib/contrib/crc32vx/CMakeLists.txt +67 -0
  83. package/deps/zlib/contrib/crc32vx/README +9 -0
  84. package/deps/zlib/contrib/crc32vx/crc32_vx.c +254 -0
  85. package/deps/zlib/contrib/crc32vx/crc32_vx_hooks.h +9 -0
  86. package/deps/zlib/contrib/delphi/ZLib.pas +557 -0
  87. package/deps/zlib/contrib/delphi/ZLibConst.pas +11 -0
  88. package/deps/zlib/contrib/delphi/readme.txt +76 -0
  89. package/deps/zlib/contrib/delphi/zlibd32.mak +99 -0
  90. package/deps/zlib/contrib/dotzlib/DotZLib/AssemblyInfo.cs +58 -0
  91. package/deps/zlib/contrib/dotzlib/DotZLib/ChecksumImpl.cs +202 -0
  92. package/deps/zlib/contrib/dotzlib/DotZLib/CircularBuffer.cs +83 -0
  93. package/deps/zlib/contrib/dotzlib/DotZLib/CodecBase.cs +198 -0
  94. package/deps/zlib/contrib/dotzlib/DotZLib/Deflater.cs +106 -0
  95. package/deps/zlib/contrib/dotzlib/DotZLib/DotZLib.cs +288 -0
  96. package/deps/zlib/contrib/dotzlib/DotZLib/DotZLib.csproj +141 -0
  97. package/deps/zlib/contrib/dotzlib/DotZLib/GZipStream.cs +301 -0
  98. package/deps/zlib/contrib/dotzlib/DotZLib/Inflater.cs +105 -0
  99. package/deps/zlib/contrib/dotzlib/DotZLib/UnitTests.cs +274 -0
  100. package/deps/zlib/contrib/dotzlib/DotZLib.build +33 -0
  101. package/deps/zlib/contrib/dotzlib/DotZLib.chm +0 -0
  102. package/deps/zlib/contrib/dotzlib/DotZLib.sln +21 -0
  103. package/deps/zlib/contrib/dotzlib/LICENSE_1_0.txt +23 -0
  104. package/deps/zlib/contrib/dotzlib/readme.txt +58 -0
  105. package/deps/zlib/contrib/gcc_gvmat64/CMakeLists.txt +19 -0
  106. package/deps/zlib/contrib/gcc_gvmat64/gvmat64.S +570 -0
  107. package/deps/zlib/contrib/infback9/CMakeLists.txt +19 -0
  108. package/deps/zlib/contrib/infback9/README +1 -0
  109. package/deps/zlib/contrib/infback9/infback9.c +603 -0
  110. package/deps/zlib/contrib/infback9/infback9.h +37 -0
  111. package/deps/zlib/contrib/infback9/inffix9.h +107 -0
  112. package/deps/zlib/contrib/infback9/inflate9.h +47 -0
  113. package/deps/zlib/contrib/infback9/inftree9.c +319 -0
  114. package/deps/zlib/contrib/infback9/inftree9.h +61 -0
  115. package/deps/zlib/contrib/iostream/test.cpp +24 -0
  116. package/deps/zlib/contrib/iostream/zfstream.cpp +329 -0
  117. package/deps/zlib/contrib/iostream/zfstream.h +128 -0
  118. package/deps/zlib/contrib/iostream2/zstream.h +306 -0
  119. package/deps/zlib/contrib/iostream2/zstream_test.cpp +25 -0
  120. package/deps/zlib/contrib/iostream3/CMakeLists.txt +200 -0
  121. package/deps/zlib/contrib/iostream3/README +35 -0
  122. package/deps/zlib/contrib/iostream3/TODO +17 -0
  123. package/deps/zlib/contrib/iostream3/iostream3Config.cmake.in +23 -0
  124. package/deps/zlib/contrib/iostream3/test/CMakeLists.txt +191 -0
  125. package/deps/zlib/contrib/iostream3/test/add_subdirectory_exclude_test.cmake.in +27 -0
  126. package/deps/zlib/contrib/iostream3/test/add_subdirectory_test.cmake.in +25 -0
  127. package/deps/zlib/contrib/iostream3/test/find_package_no_components_test.cmake.in +24 -0
  128. package/deps/zlib/contrib/iostream3/test/find_package_test.cmake.in +24 -0
  129. package/deps/zlib/contrib/iostream3/test/find_package_wrong_components_test.cmake.in +24 -0
  130. package/deps/zlib/contrib/iostream3/test.cc +50 -0
  131. package/deps/zlib/contrib/iostream3/zfstream.cc +479 -0
  132. package/deps/zlib/contrib/iostream3/zfstream.h +466 -0
  133. package/deps/zlib/contrib/minizip/CMakeLists.txt +387 -0
  134. package/deps/zlib/contrib/minizip/LICENSE.Info-Zip +58 -0
  135. package/deps/zlib/contrib/minizip/Makefile +33 -0
  136. package/deps/zlib/contrib/minizip/Makefile.am +45 -0
  137. package/deps/zlib/contrib/minizip/MiniZip64_Changes.txt +6 -0
  138. package/deps/zlib/contrib/minizip/MiniZip64_info.txt +69 -0
  139. package/deps/zlib/contrib/minizip/configure.ac +32 -0
  140. package/deps/zlib/contrib/minizip/crypt.h +125 -0
  141. package/deps/zlib/contrib/minizip/ints.h +57 -0
  142. package/deps/zlib/contrib/minizip/ioapi.c +231 -0
  143. package/deps/zlib/contrib/minizip/ioapi.h +183 -0
  144. package/deps/zlib/contrib/minizip/iowin32.c +447 -0
  145. package/deps/zlib/contrib/minizip/iowin32.h +27 -0
  146. package/deps/zlib/contrib/minizip/make_vms.com +25 -0
  147. package/deps/zlib/contrib/minizip/miniunz.c +647 -0
  148. package/deps/zlib/contrib/minizip/miniunzip.1 +63 -0
  149. package/deps/zlib/contrib/minizip/minizip.1 +46 -0
  150. package/deps/zlib/contrib/minizip/minizip.c +511 -0
  151. package/deps/zlib/contrib/minizip/minizip.pc.in +13 -0
  152. package/deps/zlib/contrib/minizip/minizip.pc.txt +13 -0
  153. package/deps/zlib/contrib/minizip/minizipConfig.cmake.in +27 -0
  154. package/deps/zlib/contrib/minizip/mztools.c +294 -0
  155. package/deps/zlib/contrib/minizip/mztools.h +37 -0
  156. package/deps/zlib/contrib/minizip/skipset.h +366 -0
  157. package/deps/zlib/contrib/minizip/test/CMakeLists.txt +176 -0
  158. package/deps/zlib/contrib/minizip/test/add_subdirectory_exclude_test.cmake.in +29 -0
  159. package/deps/zlib/contrib/minizip/test/add_subdirectory_test.cmake.in +28 -0
  160. package/deps/zlib/contrib/minizip/test/find_package_no_components_test.cmake.in +26 -0
  161. package/deps/zlib/contrib/minizip/test/find_package_test.cmake.in +26 -0
  162. package/deps/zlib/contrib/minizip/test/find_package_wrong_components_test.cmake.in +26 -0
  163. package/deps/zlib/contrib/minizip/test/test_helper.cm +32 -0
  164. package/deps/zlib/contrib/minizip/unzip.c +1984 -0
  165. package/deps/zlib/contrib/minizip/unzip.h +442 -0
  166. package/deps/zlib/contrib/minizip/zip.c +2246 -0
  167. package/deps/zlib/contrib/minizip/zip.h +371 -0
  168. package/deps/zlib/contrib/nuget/nuget.csproj +45 -0
  169. package/deps/zlib/contrib/nuget/nuget.sln +22 -0
  170. package/deps/zlib/contrib/pascal/example.pas +599 -0
  171. package/deps/zlib/contrib/pascal/readme.txt +76 -0
  172. package/deps/zlib/contrib/pascal/zlibd32.mak +99 -0
  173. package/deps/zlib/contrib/pascal/zlibpas.pas +276 -0
  174. package/deps/zlib/contrib/puff/CMakeLists.txt +154 -0
  175. package/deps/zlib/contrib/puff/Makefile +42 -0
  176. package/deps/zlib/contrib/puff/README +63 -0
  177. package/deps/zlib/contrib/puff/bin-writer.c +26 -0
  178. package/deps/zlib/contrib/puff/puff.c +840 -0
  179. package/deps/zlib/contrib/puff/puff.h +35 -0
  180. package/deps/zlib/contrib/puff/puffConfig.cmake.in +18 -0
  181. package/deps/zlib/contrib/puff/pufftest.c +168 -0
  182. package/deps/zlib/contrib/puff/test/CMakeLists.txt +262 -0
  183. package/deps/zlib/contrib/puff/test/add_subdirectory_exclude_test.cmake.in +26 -0
  184. package/deps/zlib/contrib/puff/test/add_subdirectory_test.cmake.in +25 -0
  185. package/deps/zlib/contrib/puff/test/find_package_no_components_test.cmake.in +24 -0
  186. package/deps/zlib/contrib/puff/test/find_package_test.cmake.in +24 -0
  187. package/deps/zlib/contrib/puff/test/find_package_wrong_components_test.cmake.in +24 -0
  188. package/deps/zlib/contrib/puff/test/tester-cov.cmake +58 -0
  189. package/deps/zlib/contrib/puff/test/tester.cmake +16 -0
  190. package/deps/zlib/contrib/puff/zeros.raw +0 -0
  191. package/deps/zlib/contrib/testzlib/CMakeLists.txt +44 -0
  192. package/deps/zlib/contrib/testzlib/testzlib.c +275 -0
  193. package/deps/zlib/contrib/testzlib/testzlib.txt +10 -0
  194. package/deps/zlib/contrib/vstudio/readme.txt +22 -0
  195. package/deps/zlib/contrib/zlib1-dll/CMakeLists.txt +196 -0
  196. package/deps/zlib/contrib/zlib1-dll/readme.txt +21 -0
  197. package/deps/zlib/crc32.c +983 -0
  198. package/deps/zlib/crc32.h +9446 -0
  199. package/deps/zlib/deflate.c +2185 -0
  200. package/deps/zlib/deflate.h +383 -0
  201. package/deps/zlib/doc/algorithm.txt +209 -0
  202. package/deps/zlib/doc/crc-doc.1.0.pdf +0 -0
  203. package/deps/zlib/doc/rfc1950.txt +619 -0
  204. package/deps/zlib/doc/rfc1951.txt +955 -0
  205. package/deps/zlib/doc/rfc1952.txt +675 -0
  206. package/deps/zlib/doc/txtvsbin.txt +107 -0
  207. package/deps/zlib/examples/README.examples +54 -0
  208. package/deps/zlib/examples/enough.c +597 -0
  209. package/deps/zlib/examples/fitblk.c +233 -0
  210. package/deps/zlib/examples/gun.c +702 -0
  211. package/deps/zlib/examples/gzappend.c +504 -0
  212. package/deps/zlib/examples/gzjoin.c +449 -0
  213. package/deps/zlib/examples/gzlog.c +1061 -0
  214. package/deps/zlib/examples/gzlog.h +91 -0
  215. package/deps/zlib/examples/gznorm.c +474 -0
  216. package/deps/zlib/examples/zlib_how.html +550 -0
  217. package/deps/zlib/examples/zpipe.c +206 -0
  218. package/deps/zlib/examples/zran.c +546 -0
  219. package/deps/zlib/examples/zran.h +53 -0
  220. package/deps/zlib/gzclose.c +23 -0
  221. package/deps/zlib/gzguts.h +216 -0
  222. package/deps/zlib/gzlib.c +609 -0
  223. package/deps/zlib/gzread.c +668 -0
  224. package/deps/zlib/gzwrite.c +700 -0
  225. package/deps/zlib/infback.c +581 -0
  226. package/deps/zlib/inffast.c +321 -0
  227. package/deps/zlib/inffast.h +11 -0
  228. package/deps/zlib/inffixed.h +94 -0
  229. package/deps/zlib/inflate.c +1413 -0
  230. package/deps/zlib/inflate.h +126 -0
  231. package/deps/zlib/inftrees.c +424 -0
  232. package/deps/zlib/inftrees.h +64 -0
  233. package/deps/zlib/make_vms.com +867 -0
  234. package/deps/zlib/msdos/Makefile.bor +115 -0
  235. package/deps/zlib/msdos/Makefile.dj2 +104 -0
  236. package/deps/zlib/msdos/Makefile.emx +69 -0
  237. package/deps/zlib/msdos/Makefile.msc +112 -0
  238. package/deps/zlib/msdos/Makefile.tc +100 -0
  239. package/deps/zlib/os400/README400 +48 -0
  240. package/deps/zlib/os400/bndsrc +144 -0
  241. package/deps/zlib/os400/make.sh +383 -0
  242. package/deps/zlib/os400/zlibfixed.rpgle +578 -0
  243. package/deps/zlib/os400/zlibfree.rpgle +634 -0
  244. package/deps/zlib/qnx/package.qpg +141 -0
  245. package/deps/zlib/test/CMakeLists.txt +318 -0
  246. package/deps/zlib/test/add_subdirectory_exclude_test.cmake.in +29 -0
  247. package/deps/zlib/test/add_subdirectory_test.cmake.in +28 -0
  248. package/deps/zlib/test/example.c +552 -0
  249. package/deps/zlib/test/find_package_no_components_test.cmake.in +27 -0
  250. package/deps/zlib/test/find_package_test.cmake.in +27 -0
  251. package/deps/zlib/test/find_package_wrong_components_test.cmake.in +27 -0
  252. package/deps/zlib/test/infcover.c +672 -0
  253. package/deps/zlib/test/minigzip.c +592 -0
  254. package/deps/zlib/treebuild.xml +116 -0
  255. package/deps/zlib/trees.c +1119 -0
  256. package/deps/zlib/trees.h +128 -0
  257. package/deps/zlib/uncompr.c +101 -0
  258. package/deps/zlib/watcom/watcom_f.mak +43 -0
  259. package/deps/zlib/watcom/watcom_l.mak +43 -0
  260. package/deps/zlib/win32/DLL_FAQ.txt +381 -0
  261. package/deps/zlib/win32/Makefile.bor +109 -0
  262. package/deps/zlib/win32/Makefile.gcc +177 -0
  263. package/deps/zlib/win32/Makefile.msc +159 -0
  264. package/deps/zlib/win32/README-WIN32.txt +103 -0
  265. package/deps/zlib/win32/VisualC.txt +3 -0
  266. package/deps/zlib/win32/zlib.def +104 -0
  267. package/deps/zlib/win32/zlib1.rc +37 -0
  268. package/deps/zlib/zconf.h.in +551 -0
  269. package/deps/zlib/zlib.3 +149 -0
  270. package/deps/zlib/zlib.3.pdf +0 -0
  271. package/deps/zlib/zlib.h +2057 -0
  272. package/deps/zlib/zlib.map +116 -0
  273. package/deps/zlib/zlib.pc.cmakein +14 -0
  274. package/deps/zlib/zlib.pc.in +14 -0
  275. package/deps/zlib/zlibConfig.cmake.in +18 -0
  276. package/deps/zlib/zutil.c +313 -0
  277. package/deps/zlib/zutil.h +331 -0
  278. package/dist/index.d.ts +266 -0
  279. package/dist/index.js +1146 -0
  280. package/dist/libwz.js +5632 -0
  281. package/dist/libwz.wasm +0 -0
  282. package/include/wz/CRC32.h +182 -0
  283. package/include/wz/PngUtility.h +72 -0
  284. package/include/wz/PortalType.h +124 -0
  285. package/include/wz/Properties/WzBinaryProperty.h +70 -0
  286. package/include/wz/Properties/WzCanvasProperty.h +55 -0
  287. package/include/wz/Properties/WzConvexProperty.h +34 -0
  288. package/include/wz/Properties/WzDoubleProperty.h +32 -0
  289. package/include/wz/Properties/WzFloatProperty.h +30 -0
  290. package/include/wz/Properties/WzIntProperty.h +30 -0
  291. package/include/wz/Properties/WzLongProperty.h +30 -0
  292. package/include/wz/Properties/WzLuaProperty.h +31 -0
  293. package/include/wz/Properties/WzNullProperty.h +15 -0
  294. package/include/wz/Properties/WzPngProperty.h +53 -0
  295. package/include/wz/Properties/WzRawDataProperty.h +46 -0
  296. package/include/wz/Properties/WzShortProperty.h +31 -0
  297. package/include/wz/Properties/WzStringProperty.h +32 -0
  298. package/include/wz/Properties/WzSubProperty.h +35 -0
  299. package/include/wz/Properties/WzUOLProperty.h +44 -0
  300. package/include/wz/Properties/WzVectorProperty.h +40 -0
  301. package/include/wz/Properties/WzVideoProperty.h +43 -0
  302. package/include/wz/Result.h +58 -0
  303. package/include/wz/Util/Defines.h +16 -0
  304. package/include/wz/Util/ListFileParser.h +20 -0
  305. package/include/wz/Util/WzBinaryReader.h +95 -0
  306. package/include/wz/Util/WzBinaryWriter.h +72 -0
  307. package/include/wz/Util/WzBlobDataSource.h +30 -0
  308. package/include/wz/Util/WzDataSource.h +49 -0
  309. package/include/wz/Util/WzKeyGenerator.h +28 -0
  310. package/include/wz/Util/WzMutableKey.h +39 -0
  311. package/include/wz/Util/WzPath.h +37 -0
  312. package/include/wz/Util/WzStream.h +86 -0
  313. package/include/wz/Util/WzTool.h +42 -0
  314. package/include/wz/WzAESConstant.h +17 -0
  315. package/include/wz/WzDirectory.h +97 -0
  316. package/include/wz/WzEnums.h +76 -0
  317. package/include/wz/WzFile.h +99 -0
  318. package/include/wz/WzHeader.h +47 -0
  319. package/include/wz/WzImage.h +97 -0
  320. package/include/wz/WzImageProperty.h +92 -0
  321. package/include/wz/WzObject.h +55 -0
  322. package/include/wz/WzPropertyCollection.h +115 -0
  323. package/include/wz/wz.h +41 -0
  324. package/include/wz/wz_api.h +432 -0
  325. package/package.json +93 -0
  326. package/src/PngUtility.cpp +328 -0
  327. package/src/Properties/WzBinaryProperty.cpp +183 -0
  328. package/src/Properties/WzCanvasProperty.cpp +262 -0
  329. package/src/Properties/WzConvexProperty.cpp +159 -0
  330. package/src/Properties/WzDoubleProperty.cpp +12 -0
  331. package/src/Properties/WzFloatProperty.cpp +17 -0
  332. package/src/Properties/WzIntProperty.cpp +12 -0
  333. package/src/Properties/WzLongProperty.cpp +12 -0
  334. package/src/Properties/WzLuaProperty.cpp +37 -0
  335. package/src/Properties/WzNullProperty.cpp +11 -0
  336. package/src/Properties/WzPngProperty.cpp +637 -0
  337. package/src/Properties/WzRawDataProperty.cpp +116 -0
  338. package/src/Properties/WzShortProperty.cpp +12 -0
  339. package/src/Properties/WzStringProperty.cpp +44 -0
  340. package/src/Properties/WzSubProperty.cpp +129 -0
  341. package/src/Properties/WzUOLProperty.cpp +136 -0
  342. package/src/Properties/WzVectorProperty.cpp +22 -0
  343. package/src/Properties/WzVideoProperty.cpp +115 -0
  344. package/src/Util/ListFileParser.cpp +48 -0
  345. package/src/Util/WzBinaryReader.cpp +368 -0
  346. package/src/Util/WzBinaryWriter.cpp +305 -0
  347. package/src/Util/WzBlobDataSource.cpp +47 -0
  348. package/src/Util/WzDataSource.cpp +61 -0
  349. package/src/Util/WzKeyGenerator.cpp +43 -0
  350. package/src/Util/WzMutableKey.cpp +59 -0
  351. package/src/Util/WzStream.cpp +196 -0
  352. package/src/Util/WzTool.cpp +266 -0
  353. package/src/WzAESConstant.cpp +12 -0
  354. package/src/WzDirectory.cpp +669 -0
  355. package/src/WzEnums.cpp +20 -0
  356. package/src/WzFile.cpp +450 -0
  357. package/src/WzImage.cpp +350 -0
  358. package/src/WzImageProperty.cpp +469 -0
  359. package/src/WzObject.cpp +174 -0
  360. package/src/WzPropertyCollection.cpp +84 -0
  361. package/src/capi/wz_api.cpp +1996 -0
  362. package/src/node/binding.cpp +1776 -0
package/deps/zlib/FAQ ADDED
@@ -0,0 +1,371 @@
1
+
2
+ Frequently Asked Questions about zlib
3
+
4
+
5
+ If your question is not there, please check the zlib home page
6
+ https://zlib.net/ which may have more recent information.
7
+ The latest zlib FAQ is at https://zlib.net/zlib_faq.html
8
+
9
+
10
+ 1. Is zlib Y2K-compliant?
11
+
12
+ Yes. zlib doesn't handle dates.
13
+
14
+ 2. Where can I get a Windows DLL version?
15
+
16
+ The zlib sources can be compiled without change to produce a DLL. See the
17
+ file win32/DLL_FAQ.txt in the zlib distribution.
18
+
19
+ 3. Where can I get a Visual Basic interface to zlib?
20
+
21
+ See
22
+ * https://zlib.net/nelson/
23
+ * win32/DLL_FAQ.txt in the zlib distribution
24
+
25
+ 4. compress() returns Z_BUF_ERROR.
26
+
27
+ Make sure that before the call of compress(), the length of the compressed
28
+ buffer is equal to the available size of the compressed buffer and not
29
+ zero. For Visual Basic, check that this parameter is passed by reference
30
+ ("as any"), not by value ("as long").
31
+
32
+ 5. deflate() or inflate() returns Z_BUF_ERROR.
33
+
34
+ Before making the call, make sure that avail_in and avail_out are not zero.
35
+ When setting the parameter flush equal to Z_FINISH, also make sure that
36
+ avail_out is big enough to allow processing all pending input. Note that a
37
+ Z_BUF_ERROR is not fatal--another call to deflate() or inflate() can be
38
+ made with more input or output space. A Z_BUF_ERROR may in fact be
39
+ unavoidable depending on how the functions are used, since it is not
40
+ possible to tell whether or not there is more output pending when
41
+ strm.avail_out returns with zero. See https://zlib.net/zlib_how.html for a
42
+ heavily annotated example.
43
+
44
+ 6. Where's the zlib documentation (man pages, etc.)?
45
+
46
+ It's in zlib.h . Examples of zlib usage are in the files test/example.c
47
+ and test/minigzip.c, with more in examples/ .
48
+
49
+ 7. Why don't you use GNU autoconf or libtool or ...?
50
+
51
+ Because we would like to keep zlib as a very small and simple package.
52
+ zlib is rather portable and doesn't need much configuration.
53
+
54
+ 8. I found a bug in zlib.
55
+
56
+ Most of the time, such problems are due to an incorrect usage of zlib.
57
+ Please try to reproduce the problem with a small program and send the
58
+ corresponding source to us at zlib@gzip.org . Do not send multi-megabyte
59
+ data files without prior agreement.
60
+
61
+ 9. Why do I get "undefined reference to gzputc"?
62
+
63
+ If "make test" produces something like
64
+
65
+ example.o(.text+0x154): undefined reference to `gzputc'
66
+
67
+ check that you don't have old files libz.* in /usr/lib, /usr/local/lib or
68
+ /usr/X11R6/lib. Remove any old versions, then do "make install".
69
+
70
+ 10. I need a Delphi interface to zlib.
71
+
72
+ See the contrib/delphi directory in the zlib distribution.
73
+
74
+ 11. Can zlib handle .zip archives?
75
+
76
+ Not by itself, no. See the directory contrib/minizip in the zlib
77
+ distribution.
78
+
79
+ 12. Can zlib handle .Z files?
80
+
81
+ No, sorry. You have to spawn an uncompress or gunzip subprocess, or adapt
82
+ the code of uncompress on your own.
83
+
84
+ 13. How can I make a Unix shared library?
85
+
86
+ By default a shared (and a static) library is built for Unix. So:
87
+
88
+ make distclean
89
+ ./configure
90
+ make
91
+
92
+ 14. How do I install a shared zlib library on Unix?
93
+
94
+ After the above, then:
95
+
96
+ make install
97
+
98
+ However, many flavors of Unix come with a shared zlib already installed.
99
+ Before going to the trouble of compiling a shared version of zlib and
100
+ trying to install it, you may want to check if it's already there! If you
101
+ can #include <zlib.h>, it's there. The -lz option will probably link to
102
+ it. You can check the version at the top of zlib.h or with the
103
+ ZLIB_VERSION symbol defined in zlib.h .
104
+
105
+ 15. I have a question about OttoPDF.
106
+
107
+ We are not the authors of OttoPDF. The real author is on the OttoPDF web
108
+ site: Joel Hainley, jhainley@myndkryme.com.
109
+
110
+ 16. Can zlib decode Flate data in an Adobe PDF file?
111
+
112
+ Yes. See https://www.pdflib.com/ . To modify PDF forms, see
113
+ https://sourceforge.net/projects/acroformtool/ .
114
+
115
+ 17. Why am I getting this "register_frame_info not found" error on Solaris?
116
+
117
+ After installing zlib 1.1.4 on Solaris 2.6, running applications using zlib
118
+ generates an error such as:
119
+
120
+ ld.so.1: rpm: fatal: relocation error: file /usr/local/lib/libz.so:
121
+ symbol __register_frame_info: referenced symbol not found
122
+
123
+ The symbol __register_frame_info is not part of zlib, it is generated by
124
+ the C compiler (cc or gcc). You must recompile applications using zlib
125
+ which have this problem. This problem is specific to Solaris. See
126
+ http://www.sunfreeware.com for Solaris versions of zlib and applications
127
+ using zlib.
128
+
129
+ 18. Why does gzip give an error on a file I make with compress/deflate?
130
+
131
+ The compress and deflate functions produce data in the zlib format, which
132
+ is different and incompatible with the gzip format. The gz* functions in
133
+ zlib on the other hand use the gzip format. Both the zlib and gzip formats
134
+ use the same compressed data format internally, but have different headers
135
+ and trailers around the compressed data.
136
+
137
+ 19. Ok, so why are there two different formats?
138
+
139
+ The gzip format was designed to retain the directory information about a
140
+ single file, such as the name and last modification date. The zlib format
141
+ on the other hand was designed for in-memory and communication channel
142
+ applications, and has a much more compact header and trailer and uses a
143
+ faster integrity check than gzip.
144
+
145
+ 20. Well that's nice, but how do I make a gzip file in memory?
146
+
147
+ You can request that deflate write the gzip format instead of the zlib
148
+ format using deflateInit2(). You can also request that inflate decode the
149
+ gzip format using inflateInit2(). Read zlib.h for more details.
150
+
151
+ 21. Is zlib thread-safe?
152
+
153
+ Yes. However any library routines that zlib uses and any application-
154
+ provided memory allocation routines must also be thread-safe. zlib's gz*
155
+ functions use stdio library routines, and most of zlib's functions use the
156
+ library memory allocation routines by default. zlib's *Init* functions
157
+ allow for the application to provide custom memory allocation routines.
158
+
159
+ If the non-default BUILDFIXED or DYNAMIC_CRC_TABLE defines are used on a
160
+ system without atomics (e.g. pre-C11), then inflate() and crc32() will not
161
+ be thread safe.
162
+
163
+ Of course, you should only operate on any given zlib or gzip stream from a
164
+ single thread at a time.
165
+
166
+ 22. Can I use zlib in my commercial application?
167
+
168
+ Yes. Please read the license in zlib.h.
169
+
170
+ 23. Is zlib under the GNU license?
171
+
172
+ No. Please read the license in zlib.h.
173
+
174
+ 24. The license says that altered source versions must be "plainly marked". So
175
+ what exactly do I need to do to meet that requirement?
176
+
177
+ You need to change the ZLIB_VERSION and ZLIB_VERNUM #defines in zlib.h. In
178
+ particular, the final version number needs to be changed to "f", and an
179
+ identification string should be appended to ZLIB_VERSION. Version numbers
180
+ x.x.x.f are reserved for modifications to zlib by others than the zlib
181
+ maintainers. For example, if the version of the base zlib you are altering
182
+ is "1.2.3.4", then in zlib.h you should change ZLIB_VERNUM to 0x123f, and
183
+ ZLIB_VERSION to something like "1.2.3.f-zachary-mods-v3". You can also
184
+ update the version strings in deflate.c and inftrees.c.
185
+
186
+ For altered source distributions, you should also note the origin and
187
+ nature of the changes in zlib.h, as well as in ChangeLog and README, along
188
+ with the dates of the alterations. The origin should include at least your
189
+ name (or your company's name), and an email address to contact for help or
190
+ issues with the library.
191
+
192
+ Note that distributing a compiled zlib library along with zlib.h and
193
+ zconf.h is also a source distribution, and so you should change
194
+ ZLIB_VERSION and ZLIB_VERNUM and note the origin and nature of the changes
195
+ in zlib.h as you would for a full source distribution.
196
+
197
+ 25. Will zlib work on a big-endian or little-endian architecture, and can I
198
+ exchange compressed data between them?
199
+
200
+ Yes and yes.
201
+
202
+ 26. Will zlib work on a 64-bit machine?
203
+
204
+ Yes. It has been tested on 64-bit machines, and has no dependence on any
205
+ data types being limited to 32-bits in length. If you have any
206
+ difficulties, please provide a complete problem report to zlib@gzip.org
207
+
208
+ 27. Will zlib decompress data from the PKWare Data Compression Library?
209
+
210
+ No. The PKWare DCL uses a completely different compressed data format than
211
+ does PKZIP and zlib. However, you can look in zlib's contrib/blast
212
+ directory for a possible solution to your problem.
213
+
214
+ 28. Can I access data randomly in a compressed stream?
215
+
216
+ No, not without some preparation. If when compressing you periodically use
217
+ Z_FULL_FLUSH, carefully write all the pending data at those points, and
218
+ keep an index of those locations, then you can start decompression at those
219
+ points. You have to be careful to not use Z_FULL_FLUSH too often, since it
220
+ can significantly degrade compression. Alternatively, you can scan a
221
+ deflate stream once to generate an index, and then use that index for
222
+ random access. See examples/zran.c .
223
+
224
+ 29. Does zlib work on MVS, OS/390, CICS, etc.?
225
+
226
+ It has in the past, but we have not heard of any recent evidence. There
227
+ were working ports of zlib 1.1.4 to MVS, but those links no longer work.
228
+ If you know of recent, successful applications of zlib on these operating
229
+ systems, please let us know. Thanks.
230
+
231
+ 30. Is there some simpler, easier to read version of inflate I can look at to
232
+ understand the deflate format?
233
+
234
+ First off, you should read RFC 1951. Second, yes. Look in zlib's
235
+ contrib/puff directory.
236
+
237
+ 31. Does zlib infringe on any patents?
238
+
239
+ As far as we know, no. In fact, that was originally the whole point behind
240
+ zlib. Look here for some more information:
241
+
242
+ https://web.archive.org/web/20180729212847/http://www.gzip.org/#faq11
243
+
244
+ 32. Can zlib work with greater than 4 GB of data?
245
+
246
+ Yes. inflate() and deflate() will process any amount of data correctly.
247
+ Each call of inflate() or deflate() is limited to input and output chunks
248
+ of the maximum value that can be stored in the compiler's "unsigned int"
249
+ type, but there is no limit to the number of chunks. Note however that the
250
+ strm.total_in and strm_total_out counters may be limited to 4 GB. These
251
+ counters are provided as a convenience and are not used internally by
252
+ inflate() or deflate(). The application can easily set up its own counters
253
+ updated after each call of inflate() or deflate() to count beyond 4 GB.
254
+ compress() and uncompress() may be limited to 4 GB, since they operate in a
255
+ single call. gzseek() and gztell() may be limited to 4 GB depending on how
256
+ zlib is compiled. See the zlibCompileFlags() function in zlib.h.
257
+
258
+ The word "may" appears several times above since there is a 4 GB limit only
259
+ if the compiler's "long" type is 32 bits. If the compiler's "long" type is
260
+ 64 bits, then the limit is 16 exabytes.
261
+
262
+ 33. Does zlib have any security vulnerabilities?
263
+
264
+ The only one that we are aware of is potentially in gzprintf(). If zlib is
265
+ compiled to use sprintf() or vsprintf(), which requires that ZLIB_INSECURE
266
+ be defined, then there is no protection against a buffer overflow of an 8K
267
+ string space (or other value as set by gzbuffer()), other than the caller
268
+ of gzprintf() assuring that the output will not exceed 8K. On the other
269
+ hand, if zlib is compiled to use snprintf() or vsnprintf(), which should
270
+ normally be the case, then there is no vulnerability. The ./configure
271
+ script will display warnings if an insecure variation of sprintf() will be
272
+ used by gzprintf(). Also the zlibCompileFlags() function will return
273
+ information on what variant of sprintf() is used by gzprintf().
274
+
275
+ If you don't have snprintf() or vsnprintf() and would like one, you can
276
+ find a good portable implementation in stb_sprintf.h here:
277
+
278
+ https://github.com/nothings/stb
279
+
280
+ Note that you should be using the most recent version of zlib. Versions
281
+ 1.1.3 and before were subject to a double-free vulnerability, and versions
282
+ 1.2.1 and 1.2.2 were subject to an access exception when decompressing
283
+ invalid compressed data.
284
+
285
+ 34. Is there a Java version of zlib?
286
+
287
+ Probably what you want is to use zlib in Java. zlib is already included
288
+ as part of the Java SDK in the java.util.zip package. If you really want
289
+ a version of zlib written in the Java language, look on the zlib home
290
+ page for links: https://zlib.net/ .
291
+
292
+ 35. I get this or that compiler or source-code scanner warning when I crank it
293
+ up to maximally-pedantic. Can't you guys write proper code?
294
+
295
+ Many years ago, we gave up attempting to avoid warnings on every compiler
296
+ in the universe. It just got to be a waste of time, and some compilers
297
+ were downright silly as well as contradicted each other. So now, we simply
298
+ make sure that the code always works.
299
+
300
+ 36. Valgrind (or some similar memory access checker) says that deflate is
301
+ performing a conditional jump that depends on an uninitialized value.
302
+ Isn't that a bug?
303
+
304
+ No. That is intentional for performance reasons, and the output of deflate
305
+ is not affected. This only started showing up recently since zlib 1.2.x
306
+ uses malloc() by default for allocations, whereas earlier versions used
307
+ calloc(), which zeros out the allocated memory. Even though the code was
308
+ correct, versions 1.2.4 and later was changed to not stimulate these
309
+ checkers.
310
+
311
+ 37. Will zlib read the (insert any ancient or arcane format here) compressed
312
+ data format?
313
+
314
+ Probably not. Look in the comp.compression FAQ for pointers to various
315
+ formats and associated software.
316
+
317
+ 38. How can I encrypt/decrypt zip files with zlib?
318
+
319
+ zlib doesn't support encryption. The original PKZIP encryption is very
320
+ weak and can be broken with freely available programs. To get strong
321
+ encryption, use GnuPG, https://www.gnupg.org/ , which already includes zlib
322
+ compression. For PKZIP compatible "encryption", look at
323
+ https://infozip.sourceforge.net/
324
+
325
+ 39. What's the difference between the "gzip" and "deflate" HTTP 1.1 encodings?
326
+
327
+ "gzip" is the gzip format, and "deflate" is the zlib format. They should
328
+ probably have called the second one "zlib" instead to avoid confusion with
329
+ the raw deflate compressed data format. While the HTTP 1.1 RFC 2616
330
+ correctly points to the zlib specification in RFC 1950 for the "deflate"
331
+ transfer encoding, there have been reports of servers and browsers that
332
+ incorrectly produce or expect raw deflate data per the deflate
333
+ specification in RFC 1951, most notably Microsoft. So even though the
334
+ "deflate" transfer encoding using the zlib format would be the more
335
+ efficient approach (and in fact exactly what the zlib format was designed
336
+ for), using the "gzip" transfer encoding is probably more reliable due to
337
+ an unfortunate choice of name on the part of the HTTP 1.1 authors.
338
+
339
+ Bottom line: use the gzip format for HTTP 1.1 encoding.
340
+
341
+ 40. Does zlib support the new "Deflate64" format introduced by PKWare?
342
+
343
+ No. PKWare has apparently decided to keep that format proprietary, since
344
+ they have not documented it as they have previous compression formats. In
345
+ any case, the compression improvements are so modest compared to other more
346
+ modern approaches, that it's not worth the effort to implement.
347
+
348
+ 41. I'm having a problem with the zip functions in zlib, can you help?
349
+
350
+ There are no zip functions in zlib. You are probably using minizip by
351
+ Giles Vollant, which is found in the contrib directory of zlib. It is not
352
+ part of zlib. In fact none of the stuff in contrib is part of zlib. The
353
+ files in there are not supported by the zlib authors. You need to contact
354
+ the authors of the respective contribution for help.
355
+
356
+ 42. The match.asm code in contrib is under the GNU General Public License.
357
+ Since it's part of zlib, doesn't that mean that all of zlib falls under the
358
+ GNU GPL?
359
+
360
+ No. The files in contrib are not part of zlib. They were contributed by
361
+ other authors and are provided as a convenience to the user within the zlib
362
+ distribution. Each item in contrib has its own license.
363
+
364
+ 43. Is zlib subject to export controls? What is its ECCN?
365
+
366
+ zlib is not subject to export controls, and so is classified as EAR99.
367
+
368
+ 44. Can you please sign these lengthy legal documents and fax them back to us
369
+ so that we can use your software in our product?
370
+
371
+ No. Go away. Shoo.
@@ -0,0 +1,67 @@
1
+ CMakeLists.txt cmake build file
2
+ ChangeLog history of changes
3
+ FAQ Frequently Asked Questions about zlib
4
+ INDEX this file
5
+ Makefile dummy Makefile that tells you to ./configure
6
+ Makefile.in template for Unix Makefile
7
+ README guess what
8
+ configure configure script for Unix
9
+ make_vms.com makefile for VMS
10
+ test/example.c zlib usages examples for build testing
11
+ test/minigzip.c minimal gzip-like functionality for build testing
12
+ test/infcover.c inf*.c code coverage for build coverage testing
13
+ treebuild.xml XML description of source file dependencies
14
+ zconf.h.cmakein zconf.h template for cmake
15
+ zconf.h.in zconf.h template for configure
16
+ zlib.3 Man page for zlib
17
+ zlib.3.pdf Man page in PDF format
18
+ zlib.map Linux symbol information
19
+ zlib.pc.in Template for pkg-config descriptor
20
+ zlib.pc.cmakein zlib.pc template for cmake
21
+ zlib2ansi perl script to convert source files for C++ compilation
22
+
23
+ amiga/ makefiles for Amiga SAS C
24
+ doc/ documentation for formats and algorithms
25
+ msdos/ makefiles for MSDOS
26
+ old/ makefiles for various architectures and zlib documentation
27
+ files that have not yet been updated for zlib 1.2.x
28
+ os400/ makefiles for OS/400
29
+ qnx/ makefiles for QNX
30
+ watcom/ makefiles for OpenWatcom
31
+ win32/ makefiles for Windows
32
+
33
+ zlib public header files (required for library use):
34
+ zconf.h
35
+ zlib.h
36
+
37
+ private source files used to build the zlib library:
38
+ adler32.c
39
+ compress.c
40
+ crc32.c
41
+ crc32.h
42
+ deflate.c
43
+ deflate.h
44
+ gzclose.c
45
+ gzguts.h
46
+ gzlib.c
47
+ gzread.c
48
+ gzwrite.c
49
+ infback.c
50
+ inffast.c
51
+ inffast.h
52
+ inffixed.h
53
+ inflate.c
54
+ inflate.h
55
+ inftrees.c
56
+ inftrees.h
57
+ trees.c
58
+ trees.h
59
+ uncompr.c
60
+ zutil.c
61
+ zutil.h
62
+
63
+ source files for sample programs
64
+ See examples/README.examples
65
+
66
+ unsupported contributions by third parties
67
+ See contrib/README.contrib
@@ -0,0 +1,22 @@
1
+ Copyright notice:
2
+
3
+ (C) 1995-2026 Jean-loup Gailly and Mark Adler
4
+
5
+ This software is provided 'as-is', without any express or implied
6
+ warranty. In no event will the authors be held liable for any damages
7
+ arising from the use of this software.
8
+
9
+ Permission is granted to anyone to use this software for any purpose,
10
+ including commercial applications, and to alter it and redistribute it
11
+ freely, subject to the following restrictions:
12
+
13
+ 1. The origin of this software must not be misrepresented; you must not
14
+ claim that you wrote the original software. If you use this software
15
+ in a product, an acknowledgment in the product documentation would be
16
+ appreciated but is not required.
17
+ 2. Altered source versions must be plainly marked as such, and must not be
18
+ misrepresented as being the original software.
19
+ 3. This notice may not be removed or altered from any source distribution.
20
+
21
+ Jean-loup Gailly Mark Adler
22
+ jloup@gzip.org madler@alumni.caltech.edu
@@ -0,0 +1,9 @@
1
+ module(
2
+ name = "zlib",
3
+ version = "0.0.0",
4
+ compatibility_level = 1,
5
+ )
6
+
7
+ bazel_dep(name = "platforms", version = "0.0.10")
8
+ bazel_dep(name = "rules_cc", version = "0.0.16")
9
+ bazel_dep(name = "rules_license", version = "1.0.0")