UrgentcareCLI 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (308) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +3 -0
  3. data/Gemfile.lock +60 -25
  4. data/Notes +1 -1
  5. data/README.md +5 -5
  6. data/Rakefile +2 -0
  7. data/UrgentCare.gemspec +3 -3
  8. data/background.jpg +0 -0
  9. data/lib/UrgentCare.rb +3 -0
  10. data/lib/UrgentCare/CLI.rb +6 -2
  11. data/lib/UrgentCare/version.rb +1 -1
  12. data/lib/Urgentcare/Scraper.rb +65 -23
  13. data/node_modules/.bin/rimraf +1 -0
  14. data/node_modules/.package-lock.json +250 -0
  15. data/node_modules/balanced-match/.github/FUNDING.yml +2 -0
  16. data/node_modules/balanced-match/LICENSE.md +21 -0
  17. data/node_modules/balanced-match/README.md +97 -0
  18. data/node_modules/balanced-match/index.js +62 -0
  19. data/node_modules/balanced-match/package.json +48 -0
  20. data/node_modules/brace-expansion/LICENSE +21 -0
  21. data/node_modules/brace-expansion/README.md +129 -0
  22. data/node_modules/brace-expansion/index.js +201 -0
  23. data/node_modules/brace-expansion/package.json +47 -0
  24. data/node_modules/concat-map/.travis.yml +4 -0
  25. data/node_modules/concat-map/LICENSE +18 -0
  26. data/node_modules/concat-map/README.markdown +62 -0
  27. data/node_modules/concat-map/example/map.js +6 -0
  28. data/node_modules/concat-map/index.js +13 -0
  29. data/node_modules/concat-map/package.json +43 -0
  30. data/node_modules/concat-map/test/map.js +39 -0
  31. data/node_modules/core-util-is/LICENSE +19 -0
  32. data/node_modules/core-util-is/README.md +3 -0
  33. data/node_modules/core-util-is/float.patch +604 -0
  34. data/node_modules/core-util-is/lib/util.js +107 -0
  35. data/node_modules/core-util-is/package.json +32 -0
  36. data/node_modules/core-util-is/test.js +68 -0
  37. data/node_modules/fs.realpath/LICENSE +43 -0
  38. data/node_modules/fs.realpath/README.md +33 -0
  39. data/node_modules/fs.realpath/index.js +66 -0
  40. data/node_modules/fs.realpath/old.js +303 -0
  41. data/node_modules/fs.realpath/package.json +26 -0
  42. data/node_modules/glob/LICENSE +21 -0
  43. data/node_modules/glob/README.md +375 -0
  44. data/node_modules/glob/changelog.md +67 -0
  45. data/node_modules/glob/common.js +234 -0
  46. data/node_modules/glob/glob.js +788 -0
  47. data/node_modules/glob/package.json +51 -0
  48. data/node_modules/glob/sync.js +484 -0
  49. data/node_modules/immediate/LICENSE.txt +20 -0
  50. data/node_modules/immediate/README.md +93 -0
  51. data/node_modules/immediate/dist/immediate.js +75 -0
  52. data/node_modules/immediate/dist/immediate.min.js +1 -0
  53. data/node_modules/immediate/lib/browser.js +69 -0
  54. data/node_modules/immediate/lib/index.js +73 -0
  55. data/node_modules/immediate/package.json +42 -0
  56. data/node_modules/inflight/LICENSE +15 -0
  57. data/node_modules/inflight/README.md +37 -0
  58. data/node_modules/inflight/inflight.js +54 -0
  59. data/node_modules/inflight/package.json +29 -0
  60. data/node_modules/inherits/LICENSE +16 -0
  61. data/node_modules/inherits/README.md +42 -0
  62. data/node_modules/inherits/inherits.js +9 -0
  63. data/node_modules/inherits/inherits_browser.js +27 -0
  64. data/node_modules/inherits/package.json +29 -0
  65. data/node_modules/isarray/.npmignore +1 -0
  66. data/node_modules/isarray/.travis.yml +4 -0
  67. data/node_modules/isarray/Makefile +6 -0
  68. data/node_modules/isarray/README.md +60 -0
  69. data/node_modules/isarray/component.json +19 -0
  70. data/node_modules/isarray/index.js +5 -0
  71. data/node_modules/isarray/package.json +45 -0
  72. data/node_modules/isarray/test.js +20 -0
  73. data/node_modules/jszip/.codeclimate.yml +16 -0
  74. data/node_modules/jszip/.editorconfig +8 -0
  75. data/node_modules/jszip/.jshintignore +1 -0
  76. data/node_modules/jszip/.jshintrc +21 -0
  77. data/node_modules/jszip/.travis.yml +17 -0
  78. data/node_modules/jszip/CHANGES.md +163 -0
  79. data/node_modules/jszip/LICENSE.markdown +651 -0
  80. data/node_modules/jszip/README.markdown +35 -0
  81. data/node_modules/jszip/dist/jszip.js +30 -0
  82. data/node_modules/jszip/dist/jszip.min.js +13 -0
  83. data/node_modules/jszip/index.d.ts +270 -0
  84. data/node_modules/jszip/lib/base64.js +106 -0
  85. data/node_modules/jszip/lib/compressedObject.js +74 -0
  86. data/node_modules/jszip/lib/compressions.js +14 -0
  87. data/node_modules/jszip/lib/crc32.js +77 -0
  88. data/node_modules/jszip/lib/defaults.js +11 -0
  89. data/node_modules/jszip/lib/external.js +19 -0
  90. data/node_modules/jszip/lib/flate.js +85 -0
  91. data/node_modules/jszip/lib/generate/ZipFileWorker.js +540 -0
  92. data/node_modules/jszip/lib/generate/index.js +57 -0
  93. data/node_modules/jszip/lib/index.js +52 -0
  94. data/node_modules/jszip/lib/license_header.js +11 -0
  95. data/node_modules/jszip/lib/load.js +81 -0
  96. data/node_modules/jszip/lib/nodejs/NodejsStreamInputAdapter.js +74 -0
  97. data/node_modules/jszip/lib/nodejs/NodejsStreamOutputAdapter.js +42 -0
  98. data/node_modules/jszip/lib/nodejsUtils.js +57 -0
  99. data/node_modules/jszip/lib/object.js +389 -0
  100. data/node_modules/jszip/lib/readable-stream-browser.js +9 -0
  101. data/node_modules/jszip/lib/reader/ArrayReader.js +57 -0
  102. data/node_modules/jszip/lib/reader/DataReader.js +116 -0
  103. data/node_modules/jszip/lib/reader/NodeBufferReader.js +19 -0
  104. data/node_modules/jszip/lib/reader/StringReader.js +38 -0
  105. data/node_modules/jszip/lib/reader/Uint8ArrayReader.js +22 -0
  106. data/node_modules/jszip/lib/reader/readerFor.js +28 -0
  107. data/node_modules/jszip/lib/signature.js +7 -0
  108. data/node_modules/jszip/lib/stream/ConvertWorker.js +26 -0
  109. data/node_modules/jszip/lib/stream/Crc32Probe.js +24 -0
  110. data/node_modules/jszip/lib/stream/DataLengthProbe.js +29 -0
  111. data/node_modules/jszip/lib/stream/DataWorker.js +116 -0
  112. data/node_modules/jszip/lib/stream/GenericWorker.js +263 -0
  113. data/node_modules/jszip/lib/stream/StreamHelper.js +212 -0
  114. data/node_modules/jszip/lib/support.js +38 -0
  115. data/node_modules/jszip/lib/utf8.js +275 -0
  116. data/node_modules/jszip/lib/utils.js +476 -0
  117. data/node_modules/jszip/lib/zipEntries.js +262 -0
  118. data/node_modules/jszip/lib/zipEntry.js +294 -0
  119. data/node_modules/jszip/lib/zipObject.js +133 -0
  120. data/node_modules/jszip/package.json +63 -0
  121. data/node_modules/jszip/vendor/FileSaver.js +247 -0
  122. data/node_modules/lie/README.md +62 -0
  123. data/node_modules/lie/dist/lie.js +350 -0
  124. data/node_modules/lie/dist/lie.min.js +1 -0
  125. data/node_modules/lie/dist/lie.polyfill.js +358 -0
  126. data/node_modules/lie/dist/lie.polyfill.min.js +1 -0
  127. data/node_modules/lie/lib/browser.js +273 -0
  128. data/node_modules/lie/lib/index.js +298 -0
  129. data/node_modules/lie/license.md +7 -0
  130. data/node_modules/lie/lie.d.ts +244 -0
  131. data/node_modules/lie/package.json +69 -0
  132. data/node_modules/lie/polyfill.js +4 -0
  133. data/node_modules/minimatch/LICENSE +15 -0
  134. data/node_modules/minimatch/README.md +209 -0
  135. data/node_modules/minimatch/minimatch.js +923 -0
  136. data/node_modules/minimatch/package.json +30 -0
  137. data/node_modules/once/LICENSE +15 -0
  138. data/node_modules/once/README.md +79 -0
  139. data/node_modules/once/once.js +42 -0
  140. data/node_modules/once/package.json +33 -0
  141. data/node_modules/pako/CHANGELOG.md +164 -0
  142. data/node_modules/pako/LICENSE +21 -0
  143. data/node_modules/pako/README.md +191 -0
  144. data/node_modules/pako/dist/pako.js +6818 -0
  145. data/node_modules/pako/dist/pako.min.js +1 -0
  146. data/node_modules/pako/dist/pako_deflate.js +3997 -0
  147. data/node_modules/pako/dist/pako_deflate.min.js +1 -0
  148. data/node_modules/pako/dist/pako_inflate.js +3300 -0
  149. data/node_modules/pako/dist/pako_inflate.min.js +1 -0
  150. data/node_modules/pako/index.js +14 -0
  151. data/node_modules/pako/lib/deflate.js +400 -0
  152. data/node_modules/pako/lib/inflate.js +423 -0
  153. data/node_modules/pako/lib/utils/common.js +105 -0
  154. data/node_modules/pako/lib/utils/strings.js +187 -0
  155. data/node_modules/pako/lib/zlib/README +59 -0
  156. data/node_modules/pako/lib/zlib/adler32.js +51 -0
  157. data/node_modules/pako/lib/zlib/constants.js +68 -0
  158. data/node_modules/pako/lib/zlib/crc32.js +59 -0
  159. data/node_modules/pako/lib/zlib/deflate.js +1874 -0
  160. data/node_modules/pako/lib/zlib/gzheader.js +58 -0
  161. data/node_modules/pako/lib/zlib/inffast.js +345 -0
  162. data/node_modules/pako/lib/zlib/inflate.js +1556 -0
  163. data/node_modules/pako/lib/zlib/inftrees.js +343 -0
  164. data/node_modules/pako/lib/zlib/messages.js +32 -0
  165. data/node_modules/pako/lib/zlib/trees.js +1222 -0
  166. data/node_modules/pako/lib/zlib/zstream.js +47 -0
  167. data/node_modules/pako/package.json +44 -0
  168. data/node_modules/path-is-absolute/index.js +20 -0
  169. data/node_modules/path-is-absolute/license +21 -0
  170. data/node_modules/path-is-absolute/package.json +43 -0
  171. data/node_modules/path-is-absolute/readme.md +59 -0
  172. data/node_modules/process-nextick-args/index.js +45 -0
  173. data/node_modules/process-nextick-args/license.md +19 -0
  174. data/node_modules/process-nextick-args/package.json +25 -0
  175. data/node_modules/process-nextick-args/readme.md +18 -0
  176. data/node_modules/readable-stream/.travis.yml +34 -0
  177. data/node_modules/readable-stream/CONTRIBUTING.md +38 -0
  178. data/node_modules/readable-stream/GOVERNANCE.md +136 -0
  179. data/node_modules/readable-stream/LICENSE +47 -0
  180. data/node_modules/readable-stream/README.md +58 -0
  181. data/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md +60 -0
  182. data/node_modules/readable-stream/duplex-browser.js +1 -0
  183. data/node_modules/readable-stream/duplex.js +1 -0
  184. data/node_modules/readable-stream/lib/_stream_duplex.js +131 -0
  185. data/node_modules/readable-stream/lib/_stream_passthrough.js +47 -0
  186. data/node_modules/readable-stream/lib/_stream_readable.js +1019 -0
  187. data/node_modules/readable-stream/lib/_stream_transform.js +214 -0
  188. data/node_modules/readable-stream/lib/_stream_writable.js +687 -0
  189. data/node_modules/readable-stream/lib/internal/streams/BufferList.js +79 -0
  190. data/node_modules/readable-stream/lib/internal/streams/destroy.js +74 -0
  191. data/node_modules/readable-stream/lib/internal/streams/stream-browser.js +1 -0
  192. data/node_modules/readable-stream/lib/internal/streams/stream.js +1 -0
  193. data/node_modules/readable-stream/package.json +52 -0
  194. data/node_modules/readable-stream/passthrough.js +1 -0
  195. data/node_modules/readable-stream/readable-browser.js +7 -0
  196. data/node_modules/readable-stream/readable.js +19 -0
  197. data/node_modules/readable-stream/transform.js +1 -0
  198. data/node_modules/readable-stream/writable-browser.js +1 -0
  199. data/node_modules/readable-stream/writable.js +8 -0
  200. data/node_modules/rimraf/LICENSE +15 -0
  201. data/node_modules/rimraf/README.md +101 -0
  202. data/node_modules/rimraf/bin.js +50 -0
  203. data/node_modules/rimraf/package.json +29 -0
  204. data/node_modules/rimraf/rimraf.js +372 -0
  205. data/node_modules/safe-buffer/LICENSE +21 -0
  206. data/node_modules/safe-buffer/README.md +584 -0
  207. data/node_modules/safe-buffer/index.d.ts +187 -0
  208. data/node_modules/safe-buffer/index.js +62 -0
  209. data/node_modules/safe-buffer/package.json +37 -0
  210. data/node_modules/selenium-webdriver/CHANGES.md +1114 -0
  211. data/node_modules/selenium-webdriver/LICENSE +202 -0
  212. data/node_modules/selenium-webdriver/NOTICE +2 -0
  213. data/node_modules/selenium-webdriver/README.md +229 -0
  214. data/node_modules/selenium-webdriver/chrome.js +295 -0
  215. data/node_modules/selenium-webdriver/chromium.js +829 -0
  216. data/node_modules/selenium-webdriver/devtools/CDPConnection.js +35 -0
  217. data/node_modules/selenium-webdriver/edge.js +224 -0
  218. data/node_modules/selenium-webdriver/example/chrome_android.js +45 -0
  219. data/node_modules/selenium-webdriver/example/chrome_mobile_emulation.js +46 -0
  220. data/node_modules/selenium-webdriver/example/firefox_channels.js +84 -0
  221. data/node_modules/selenium-webdriver/example/google_search.js +50 -0
  222. data/node_modules/selenium-webdriver/example/google_search_test.js +70 -0
  223. data/node_modules/selenium-webdriver/example/headless.js +63 -0
  224. data/node_modules/selenium-webdriver/example/logging.js +64 -0
  225. data/node_modules/selenium-webdriver/firefox.js +789 -0
  226. data/node_modules/selenium-webdriver/http/index.js +324 -0
  227. data/node_modules/selenium-webdriver/http/util.js +172 -0
  228. data/node_modules/selenium-webdriver/ie.js +503 -0
  229. data/node_modules/selenium-webdriver/index.js +825 -0
  230. data/node_modules/selenium-webdriver/io/exec.js +162 -0
  231. data/node_modules/selenium-webdriver/io/index.js +348 -0
  232. data/node_modules/selenium-webdriver/io/zip.js +223 -0
  233. data/node_modules/selenium-webdriver/lib/atoms/find-elements.js +123 -0
  234. data/node_modules/selenium-webdriver/lib/atoms/get-attribute.js +101 -0
  235. data/node_modules/selenium-webdriver/lib/atoms/is-displayed.js +101 -0
  236. data/node_modules/selenium-webdriver/lib/atoms/mutation-listener.js +55 -0
  237. data/node_modules/selenium-webdriver/lib/by.js +415 -0
  238. data/node_modules/selenium-webdriver/lib/capabilities.js +553 -0
  239. data/node_modules/selenium-webdriver/lib/command.js +206 -0
  240. data/node_modules/selenium-webdriver/lib/error.js +605 -0
  241. data/node_modules/selenium-webdriver/lib/http.js +704 -0
  242. data/node_modules/selenium-webdriver/lib/input.js +946 -0
  243. data/node_modules/selenium-webdriver/lib/logging.js +661 -0
  244. data/node_modules/selenium-webdriver/lib/promise.js +285 -0
  245. data/node_modules/selenium-webdriver/lib/proxy.js +212 -0
  246. data/node_modules/selenium-webdriver/lib/session.js +77 -0
  247. data/node_modules/selenium-webdriver/lib/symbols.js +37 -0
  248. data/node_modules/selenium-webdriver/lib/until.js +429 -0
  249. data/node_modules/selenium-webdriver/lib/webdriver.js +2919 -0
  250. data/node_modules/selenium-webdriver/net/index.js +107 -0
  251. data/node_modules/selenium-webdriver/net/portprober.js +75 -0
  252. data/node_modules/selenium-webdriver/opera.js +406 -0
  253. data/node_modules/selenium-webdriver/package.json +54 -0
  254. data/node_modules/selenium-webdriver/proxy.js +32 -0
  255. data/node_modules/selenium-webdriver/remote/index.js +624 -0
  256. data/node_modules/selenium-webdriver/safari.js +168 -0
  257. data/node_modules/selenium-webdriver/testing/index.js +504 -0
  258. data/node_modules/set-immediate-shim/index.js +7 -0
  259. data/node_modules/set-immediate-shim/package.json +34 -0
  260. data/node_modules/set-immediate-shim/readme.md +31 -0
  261. data/node_modules/string_decoder/.travis.yml +50 -0
  262. data/node_modules/string_decoder/LICENSE +48 -0
  263. data/node_modules/string_decoder/README.md +47 -0
  264. data/node_modules/string_decoder/lib/string_decoder.js +296 -0
  265. data/node_modules/string_decoder/package.json +31 -0
  266. data/node_modules/tmp/CHANGELOG.md +288 -0
  267. data/node_modules/tmp/LICENSE +21 -0
  268. data/node_modules/tmp/README.md +365 -0
  269. data/node_modules/tmp/lib/tmp.js +780 -0
  270. data/node_modules/tmp/node_modules/.bin/rimraf +1 -0
  271. data/node_modules/tmp/node_modules/rimraf/CHANGELOG.md +65 -0
  272. data/node_modules/tmp/node_modules/rimraf/LICENSE +15 -0
  273. data/node_modules/tmp/node_modules/rimraf/README.md +101 -0
  274. data/node_modules/tmp/node_modules/rimraf/bin.js +68 -0
  275. data/node_modules/tmp/node_modules/rimraf/package.json +32 -0
  276. data/node_modules/tmp/node_modules/rimraf/rimraf.js +360 -0
  277. data/node_modules/tmp/package.json +58 -0
  278. data/node_modules/util-deprecate/History.md +16 -0
  279. data/node_modules/util-deprecate/LICENSE +24 -0
  280. data/node_modules/util-deprecate/README.md +53 -0
  281. data/node_modules/util-deprecate/browser.js +67 -0
  282. data/node_modules/util-deprecate/node.js +6 -0
  283. data/node_modules/util-deprecate/package.json +27 -0
  284. data/node_modules/wrappy/LICENSE +15 -0
  285. data/node_modules/wrappy/README.md +36 -0
  286. data/node_modules/wrappy/package.json +29 -0
  287. data/node_modules/wrappy/wrappy.js +33 -0
  288. data/node_modules/ws/LICENSE +21 -0
  289. data/node_modules/ws/README.md +496 -0
  290. data/node_modules/ws/browser.js +8 -0
  291. data/node_modules/ws/index.js +10 -0
  292. data/node_modules/ws/lib/buffer-util.js +129 -0
  293. data/node_modules/ws/lib/constants.js +10 -0
  294. data/node_modules/ws/lib/event-target.js +184 -0
  295. data/node_modules/ws/lib/extension.js +223 -0
  296. data/node_modules/ws/lib/limiter.js +55 -0
  297. data/node_modules/ws/lib/permessage-deflate.js +517 -0
  298. data/node_modules/ws/lib/receiver.js +507 -0
  299. data/node_modules/ws/lib/sender.js +405 -0
  300. data/node_modules/ws/lib/stream.js +165 -0
  301. data/node_modules/ws/lib/validation.js +104 -0
  302. data/node_modules/ws/lib/websocket-server.js +418 -0
  303. data/node_modules/ws/lib/websocket.js +942 -0
  304. data/node_modules/ws/package.json +56 -0
  305. data/package-lock.json +458 -0
  306. data/package.json +5 -0
  307. data/selenium.log +1 -0
  308. metadata +314 -19
@@ -0,0 +1,59 @@
1
+ 'use strict';
2
+
3
+ // Note: we can't get significant speed boost here.
4
+ // So write code to minimize size - no pregenerated tables
5
+ // and array tools dependencies.
6
+
7
+ // (C) 1995-2013 Jean-loup Gailly and Mark Adler
8
+ // (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin
9
+ //
10
+ // This software is provided 'as-is', without any express or implied
11
+ // warranty. In no event will the authors be held liable for any damages
12
+ // arising from the use of this software.
13
+ //
14
+ // Permission is granted to anyone to use this software for any purpose,
15
+ // including commercial applications, and to alter it and redistribute it
16
+ // freely, subject to the following restrictions:
17
+ //
18
+ // 1. The origin of this software must not be misrepresented; you must not
19
+ // claim that you wrote the original software. If you use this software
20
+ // in a product, an acknowledgment in the product documentation would be
21
+ // appreciated but is not required.
22
+ // 2. Altered source versions must be plainly marked as such, and must not be
23
+ // misrepresented as being the original software.
24
+ // 3. This notice may not be removed or altered from any source distribution.
25
+
26
+ // Use ordinary array, since untyped makes no boost here
27
+ function makeTable() {
28
+ var c, table = [];
29
+
30
+ for (var n = 0; n < 256; n++) {
31
+ c = n;
32
+ for (var k = 0; k < 8; k++) {
33
+ c = ((c & 1) ? (0xEDB88320 ^ (c >>> 1)) : (c >>> 1));
34
+ }
35
+ table[n] = c;
36
+ }
37
+
38
+ return table;
39
+ }
40
+
41
+ // Create table on load. Just 255 signed longs. Not a problem.
42
+ var crcTable = makeTable();
43
+
44
+
45
+ function crc32(crc, buf, len, pos) {
46
+ var t = crcTable,
47
+ end = pos + len;
48
+
49
+ crc ^= -1;
50
+
51
+ for (var i = pos; i < end; i++) {
52
+ crc = (crc >>> 8) ^ t[(crc ^ buf[i]) & 0xFF];
53
+ }
54
+
55
+ return (crc ^ (-1)); // >>> 0;
56
+ }
57
+
58
+
59
+ module.exports = crc32;
@@ -0,0 +1,1874 @@
1
+ 'use strict';
2
+
3
+ // (C) 1995-2013 Jean-loup Gailly and Mark Adler
4
+ // (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin
5
+ //
6
+ // This software is provided 'as-is', without any express or implied
7
+ // warranty. In no event will the authors be held liable for any damages
8
+ // arising from the use of this software.
9
+ //
10
+ // Permission is granted to anyone to use this software for any purpose,
11
+ // including commercial applications, and to alter it and redistribute it
12
+ // freely, subject to the following restrictions:
13
+ //
14
+ // 1. The origin of this software must not be misrepresented; you must not
15
+ // claim that you wrote the original software. If you use this software
16
+ // in a product, an acknowledgment in the product documentation would be
17
+ // appreciated but is not required.
18
+ // 2. Altered source versions must be plainly marked as such, and must not be
19
+ // misrepresented as being the original software.
20
+ // 3. This notice may not be removed or altered from any source distribution.
21
+
22
+ var utils = require('../utils/common');
23
+ var trees = require('./trees');
24
+ var adler32 = require('./adler32');
25
+ var crc32 = require('./crc32');
26
+ var msg = require('./messages');
27
+
28
+ /* Public constants ==========================================================*/
29
+ /* ===========================================================================*/
30
+
31
+
32
+ /* Allowed flush values; see deflate() and inflate() below for details */
33
+ var Z_NO_FLUSH = 0;
34
+ var Z_PARTIAL_FLUSH = 1;
35
+ //var Z_SYNC_FLUSH = 2;
36
+ var Z_FULL_FLUSH = 3;
37
+ var Z_FINISH = 4;
38
+ var Z_BLOCK = 5;
39
+ //var Z_TREES = 6;
40
+
41
+
42
+ /* Return codes for the compression/decompression functions. Negative values
43
+ * are errors, positive values are used for special but normal events.
44
+ */
45
+ var Z_OK = 0;
46
+ var Z_STREAM_END = 1;
47
+ //var Z_NEED_DICT = 2;
48
+ //var Z_ERRNO = -1;
49
+ var Z_STREAM_ERROR = -2;
50
+ var Z_DATA_ERROR = -3;
51
+ //var Z_MEM_ERROR = -4;
52
+ var Z_BUF_ERROR = -5;
53
+ //var Z_VERSION_ERROR = -6;
54
+
55
+
56
+ /* compression levels */
57
+ //var Z_NO_COMPRESSION = 0;
58
+ //var Z_BEST_SPEED = 1;
59
+ //var Z_BEST_COMPRESSION = 9;
60
+ var Z_DEFAULT_COMPRESSION = -1;
61
+
62
+
63
+ var Z_FILTERED = 1;
64
+ var Z_HUFFMAN_ONLY = 2;
65
+ var Z_RLE = 3;
66
+ var Z_FIXED = 4;
67
+ var Z_DEFAULT_STRATEGY = 0;
68
+
69
+ /* Possible values of the data_type field (though see inflate()) */
70
+ //var Z_BINARY = 0;
71
+ //var Z_TEXT = 1;
72
+ //var Z_ASCII = 1; // = Z_TEXT
73
+ var Z_UNKNOWN = 2;
74
+
75
+
76
+ /* The deflate compression method */
77
+ var Z_DEFLATED = 8;
78
+
79
+ /*============================================================================*/
80
+
81
+
82
+ var MAX_MEM_LEVEL = 9;
83
+ /* Maximum value for memLevel in deflateInit2 */
84
+ var MAX_WBITS = 15;
85
+ /* 32K LZ77 window */
86
+ var DEF_MEM_LEVEL = 8;
87
+
88
+
89
+ var LENGTH_CODES = 29;
90
+ /* number of length codes, not counting the special END_BLOCK code */
91
+ var LITERALS = 256;
92
+ /* number of literal bytes 0..255 */
93
+ var L_CODES = LITERALS + 1 + LENGTH_CODES;
94
+ /* number of Literal or Length codes, including the END_BLOCK code */
95
+ var D_CODES = 30;
96
+ /* number of distance codes */
97
+ var BL_CODES = 19;
98
+ /* number of codes used to transfer the bit lengths */
99
+ var HEAP_SIZE = 2 * L_CODES + 1;
100
+ /* maximum heap size */
101
+ var MAX_BITS = 15;
102
+ /* All codes must not exceed MAX_BITS bits */
103
+
104
+ var MIN_MATCH = 3;
105
+ var MAX_MATCH = 258;
106
+ var MIN_LOOKAHEAD = (MAX_MATCH + MIN_MATCH + 1);
107
+
108
+ var PRESET_DICT = 0x20;
109
+
110
+ var INIT_STATE = 42;
111
+ var EXTRA_STATE = 69;
112
+ var NAME_STATE = 73;
113
+ var COMMENT_STATE = 91;
114
+ var HCRC_STATE = 103;
115
+ var BUSY_STATE = 113;
116
+ var FINISH_STATE = 666;
117
+
118
+ var BS_NEED_MORE = 1; /* block not completed, need more input or more output */
119
+ var BS_BLOCK_DONE = 2; /* block flush performed */
120
+ var BS_FINISH_STARTED = 3; /* finish started, need only more output at next deflate */
121
+ var BS_FINISH_DONE = 4; /* finish done, accept no more input or output */
122
+
123
+ var OS_CODE = 0x03; // Unix :) . Don't detect, use this default.
124
+
125
+ function err(strm, errorCode) {
126
+ strm.msg = msg[errorCode];
127
+ return errorCode;
128
+ }
129
+
130
+ function rank(f) {
131
+ return ((f) << 1) - ((f) > 4 ? 9 : 0);
132
+ }
133
+
134
+ function zero(buf) { var len = buf.length; while (--len >= 0) { buf[len] = 0; } }
135
+
136
+
137
+ /* =========================================================================
138
+ * Flush as much pending output as possible. All deflate() output goes
139
+ * through this function so some applications may wish to modify it
140
+ * to avoid allocating a large strm->output buffer and copying into it.
141
+ * (See also read_buf()).
142
+ */
143
+ function flush_pending(strm) {
144
+ var s = strm.state;
145
+
146
+ //_tr_flush_bits(s);
147
+ var len = s.pending;
148
+ if (len > strm.avail_out) {
149
+ len = strm.avail_out;
150
+ }
151
+ if (len === 0) { return; }
152
+
153
+ utils.arraySet(strm.output, s.pending_buf, s.pending_out, len, strm.next_out);
154
+ strm.next_out += len;
155
+ s.pending_out += len;
156
+ strm.total_out += len;
157
+ strm.avail_out -= len;
158
+ s.pending -= len;
159
+ if (s.pending === 0) {
160
+ s.pending_out = 0;
161
+ }
162
+ }
163
+
164
+
165
+ function flush_block_only(s, last) {
166
+ trees._tr_flush_block(s, (s.block_start >= 0 ? s.block_start : -1), s.strstart - s.block_start, last);
167
+ s.block_start = s.strstart;
168
+ flush_pending(s.strm);
169
+ }
170
+
171
+
172
+ function put_byte(s, b) {
173
+ s.pending_buf[s.pending++] = b;
174
+ }
175
+
176
+
177
+ /* =========================================================================
178
+ * Put a short in the pending buffer. The 16-bit value is put in MSB order.
179
+ * IN assertion: the stream state is correct and there is enough room in
180
+ * pending_buf.
181
+ */
182
+ function putShortMSB(s, b) {
183
+ // put_byte(s, (Byte)(b >> 8));
184
+ // put_byte(s, (Byte)(b & 0xff));
185
+ s.pending_buf[s.pending++] = (b >>> 8) & 0xff;
186
+ s.pending_buf[s.pending++] = b & 0xff;
187
+ }
188
+
189
+
190
+ /* ===========================================================================
191
+ * Read a new buffer from the current input stream, update the adler32
192
+ * and total number of bytes read. All deflate() input goes through
193
+ * this function so some applications may wish to modify it to avoid
194
+ * allocating a large strm->input buffer and copying from it.
195
+ * (See also flush_pending()).
196
+ */
197
+ function read_buf(strm, buf, start, size) {
198
+ var len = strm.avail_in;
199
+
200
+ if (len > size) { len = size; }
201
+ if (len === 0) { return 0; }
202
+
203
+ strm.avail_in -= len;
204
+
205
+ // zmemcpy(buf, strm->next_in, len);
206
+ utils.arraySet(buf, strm.input, strm.next_in, len, start);
207
+ if (strm.state.wrap === 1) {
208
+ strm.adler = adler32(strm.adler, buf, len, start);
209
+ }
210
+
211
+ else if (strm.state.wrap === 2) {
212
+ strm.adler = crc32(strm.adler, buf, len, start);
213
+ }
214
+
215
+ strm.next_in += len;
216
+ strm.total_in += len;
217
+
218
+ return len;
219
+ }
220
+
221
+
222
+ /* ===========================================================================
223
+ * Set match_start to the longest match starting at the given string and
224
+ * return its length. Matches shorter or equal to prev_length are discarded,
225
+ * in which case the result is equal to prev_length and match_start is
226
+ * garbage.
227
+ * IN assertions: cur_match is the head of the hash chain for the current
228
+ * string (strstart) and its distance is <= MAX_DIST, and prev_length >= 1
229
+ * OUT assertion: the match length is not greater than s->lookahead.
230
+ */
231
+ function longest_match(s, cur_match) {
232
+ var chain_length = s.max_chain_length; /* max hash chain length */
233
+ var scan = s.strstart; /* current string */
234
+ var match; /* matched string */
235
+ var len; /* length of current match */
236
+ var best_len = s.prev_length; /* best match length so far */
237
+ var nice_match = s.nice_match; /* stop if match long enough */
238
+ var limit = (s.strstart > (s.w_size - MIN_LOOKAHEAD)) ?
239
+ s.strstart - (s.w_size - MIN_LOOKAHEAD) : 0/*NIL*/;
240
+
241
+ var _win = s.window; // shortcut
242
+
243
+ var wmask = s.w_mask;
244
+ var prev = s.prev;
245
+
246
+ /* Stop when cur_match becomes <= limit. To simplify the code,
247
+ * we prevent matches with the string of window index 0.
248
+ */
249
+
250
+ var strend = s.strstart + MAX_MATCH;
251
+ var scan_end1 = _win[scan + best_len - 1];
252
+ var scan_end = _win[scan + best_len];
253
+
254
+ /* The code is optimized for HASH_BITS >= 8 and MAX_MATCH-2 multiple of 16.
255
+ * It is easy to get rid of this optimization if necessary.
256
+ */
257
+ // Assert(s->hash_bits >= 8 && MAX_MATCH == 258, "Code too clever");
258
+
259
+ /* Do not waste too much time if we already have a good match: */
260
+ if (s.prev_length >= s.good_match) {
261
+ chain_length >>= 2;
262
+ }
263
+ /* Do not look for matches beyond the end of the input. This is necessary
264
+ * to make deflate deterministic.
265
+ */
266
+ if (nice_match > s.lookahead) { nice_match = s.lookahead; }
267
+
268
+ // Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead");
269
+
270
+ do {
271
+ // Assert(cur_match < s->strstart, "no future");
272
+ match = cur_match;
273
+
274
+ /* Skip to next match if the match length cannot increase
275
+ * or if the match length is less than 2. Note that the checks below
276
+ * for insufficient lookahead only occur occasionally for performance
277
+ * reasons. Therefore uninitialized memory will be accessed, and
278
+ * conditional jumps will be made that depend on those values.
279
+ * However the length of the match is limited to the lookahead, so
280
+ * the output of deflate is not affected by the uninitialized values.
281
+ */
282
+
283
+ if (_win[match + best_len] !== scan_end ||
284
+ _win[match + best_len - 1] !== scan_end1 ||
285
+ _win[match] !== _win[scan] ||
286
+ _win[++match] !== _win[scan + 1]) {
287
+ continue;
288
+ }
289
+
290
+ /* The check at best_len-1 can be removed because it will be made
291
+ * again later. (This heuristic is not always a win.)
292
+ * It is not necessary to compare scan[2] and match[2] since they
293
+ * are always equal when the other bytes match, given that
294
+ * the hash keys are equal and that HASH_BITS >= 8.
295
+ */
296
+ scan += 2;
297
+ match++;
298
+ // Assert(*scan == *match, "match[2]?");
299
+
300
+ /* We check for insufficient lookahead only every 8th comparison;
301
+ * the 256th check will be made at strstart+258.
302
+ */
303
+ do {
304
+ /*jshint noempty:false*/
305
+ } while (_win[++scan] === _win[++match] && _win[++scan] === _win[++match] &&
306
+ _win[++scan] === _win[++match] && _win[++scan] === _win[++match] &&
307
+ _win[++scan] === _win[++match] && _win[++scan] === _win[++match] &&
308
+ _win[++scan] === _win[++match] && _win[++scan] === _win[++match] &&
309
+ scan < strend);
310
+
311
+ // Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan");
312
+
313
+ len = MAX_MATCH - (strend - scan);
314
+ scan = strend - MAX_MATCH;
315
+
316
+ if (len > best_len) {
317
+ s.match_start = cur_match;
318
+ best_len = len;
319
+ if (len >= nice_match) {
320
+ break;
321
+ }
322
+ scan_end1 = _win[scan + best_len - 1];
323
+ scan_end = _win[scan + best_len];
324
+ }
325
+ } while ((cur_match = prev[cur_match & wmask]) > limit && --chain_length !== 0);
326
+
327
+ if (best_len <= s.lookahead) {
328
+ return best_len;
329
+ }
330
+ return s.lookahead;
331
+ }
332
+
333
+
334
+ /* ===========================================================================
335
+ * Fill the window when the lookahead becomes insufficient.
336
+ * Updates strstart and lookahead.
337
+ *
338
+ * IN assertion: lookahead < MIN_LOOKAHEAD
339
+ * OUT assertions: strstart <= window_size-MIN_LOOKAHEAD
340
+ * At least one byte has been read, or avail_in == 0; reads are
341
+ * performed for at least two bytes (required for the zip translate_eol
342
+ * option -- not supported here).
343
+ */
344
+ function fill_window(s) {
345
+ var _w_size = s.w_size;
346
+ var p, n, m, more, str;
347
+
348
+ //Assert(s->lookahead < MIN_LOOKAHEAD, "already enough lookahead");
349
+
350
+ do {
351
+ more = s.window_size - s.lookahead - s.strstart;
352
+
353
+ // JS ints have 32 bit, block below not needed
354
+ /* Deal with !@#$% 64K limit: */
355
+ //if (sizeof(int) <= 2) {
356
+ // if (more == 0 && s->strstart == 0 && s->lookahead == 0) {
357
+ // more = wsize;
358
+ //
359
+ // } else if (more == (unsigned)(-1)) {
360
+ // /* Very unlikely, but possible on 16 bit machine if
361
+ // * strstart == 0 && lookahead == 1 (input done a byte at time)
362
+ // */
363
+ // more--;
364
+ // }
365
+ //}
366
+
367
+
368
+ /* If the window is almost full and there is insufficient lookahead,
369
+ * move the upper half to the lower one to make room in the upper half.
370
+ */
371
+ if (s.strstart >= _w_size + (_w_size - MIN_LOOKAHEAD)) {
372
+
373
+ utils.arraySet(s.window, s.window, _w_size, _w_size, 0);
374
+ s.match_start -= _w_size;
375
+ s.strstart -= _w_size;
376
+ /* we now have strstart >= MAX_DIST */
377
+ s.block_start -= _w_size;
378
+
379
+ /* Slide the hash table (could be avoided with 32 bit values
380
+ at the expense of memory usage). We slide even when level == 0
381
+ to keep the hash table consistent if we switch back to level > 0
382
+ later. (Using level 0 permanently is not an optimal usage of
383
+ zlib, so we don't care about this pathological case.)
384
+ */
385
+
386
+ n = s.hash_size;
387
+ p = n;
388
+ do {
389
+ m = s.head[--p];
390
+ s.head[p] = (m >= _w_size ? m - _w_size : 0);
391
+ } while (--n);
392
+
393
+ n = _w_size;
394
+ p = n;
395
+ do {
396
+ m = s.prev[--p];
397
+ s.prev[p] = (m >= _w_size ? m - _w_size : 0);
398
+ /* If n is not on any hash chain, prev[n] is garbage but
399
+ * its value will never be used.
400
+ */
401
+ } while (--n);
402
+
403
+ more += _w_size;
404
+ }
405
+ if (s.strm.avail_in === 0) {
406
+ break;
407
+ }
408
+
409
+ /* If there was no sliding:
410
+ * strstart <= WSIZE+MAX_DIST-1 && lookahead <= MIN_LOOKAHEAD - 1 &&
411
+ * more == window_size - lookahead - strstart
412
+ * => more >= window_size - (MIN_LOOKAHEAD-1 + WSIZE + MAX_DIST-1)
413
+ * => more >= window_size - 2*WSIZE + 2
414
+ * In the BIG_MEM or MMAP case (not yet supported),
415
+ * window_size == input_size + MIN_LOOKAHEAD &&
416
+ * strstart + s->lookahead <= input_size => more >= MIN_LOOKAHEAD.
417
+ * Otherwise, window_size == 2*WSIZE so more >= 2.
418
+ * If there was sliding, more >= WSIZE. So in all cases, more >= 2.
419
+ */
420
+ //Assert(more >= 2, "more < 2");
421
+ n = read_buf(s.strm, s.window, s.strstart + s.lookahead, more);
422
+ s.lookahead += n;
423
+
424
+ /* Initialize the hash value now that we have some input: */
425
+ if (s.lookahead + s.insert >= MIN_MATCH) {
426
+ str = s.strstart - s.insert;
427
+ s.ins_h = s.window[str];
428
+
429
+ /* UPDATE_HASH(s, s->ins_h, s->window[str + 1]); */
430
+ s.ins_h = ((s.ins_h << s.hash_shift) ^ s.window[str + 1]) & s.hash_mask;
431
+ //#if MIN_MATCH != 3
432
+ // Call update_hash() MIN_MATCH-3 more times
433
+ //#endif
434
+ while (s.insert) {
435
+ /* UPDATE_HASH(s, s->ins_h, s->window[str + MIN_MATCH-1]); */
436
+ s.ins_h = ((s.ins_h << s.hash_shift) ^ s.window[str + MIN_MATCH - 1]) & s.hash_mask;
437
+
438
+ s.prev[str & s.w_mask] = s.head[s.ins_h];
439
+ s.head[s.ins_h] = str;
440
+ str++;
441
+ s.insert--;
442
+ if (s.lookahead + s.insert < MIN_MATCH) {
443
+ break;
444
+ }
445
+ }
446
+ }
447
+ /* If the whole input has less than MIN_MATCH bytes, ins_h is garbage,
448
+ * but this is not important since only literal bytes will be emitted.
449
+ */
450
+
451
+ } while (s.lookahead < MIN_LOOKAHEAD && s.strm.avail_in !== 0);
452
+
453
+ /* If the WIN_INIT bytes after the end of the current data have never been
454
+ * written, then zero those bytes in order to avoid memory check reports of
455
+ * the use of uninitialized (or uninitialised as Julian writes) bytes by
456
+ * the longest match routines. Update the high water mark for the next
457
+ * time through here. WIN_INIT is set to MAX_MATCH since the longest match
458
+ * routines allow scanning to strstart + MAX_MATCH, ignoring lookahead.
459
+ */
460
+ // if (s.high_water < s.window_size) {
461
+ // var curr = s.strstart + s.lookahead;
462
+ // var init = 0;
463
+ //
464
+ // if (s.high_water < curr) {
465
+ // /* Previous high water mark below current data -- zero WIN_INIT
466
+ // * bytes or up to end of window, whichever is less.
467
+ // */
468
+ // init = s.window_size - curr;
469
+ // if (init > WIN_INIT)
470
+ // init = WIN_INIT;
471
+ // zmemzero(s->window + curr, (unsigned)init);
472
+ // s->high_water = curr + init;
473
+ // }
474
+ // else if (s->high_water < (ulg)curr + WIN_INIT) {
475
+ // /* High water mark at or above current data, but below current data
476
+ // * plus WIN_INIT -- zero out to current data plus WIN_INIT, or up
477
+ // * to end of window, whichever is less.
478
+ // */
479
+ // init = (ulg)curr + WIN_INIT - s->high_water;
480
+ // if (init > s->window_size - s->high_water)
481
+ // init = s->window_size - s->high_water;
482
+ // zmemzero(s->window + s->high_water, (unsigned)init);
483
+ // s->high_water += init;
484
+ // }
485
+ // }
486
+ //
487
+ // Assert((ulg)s->strstart <= s->window_size - MIN_LOOKAHEAD,
488
+ // "not enough room for search");
489
+ }
490
+
491
+ /* ===========================================================================
492
+ * Copy without compression as much as possible from the input stream, return
493
+ * the current block state.
494
+ * This function does not insert new strings in the dictionary since
495
+ * uncompressible data is probably not useful. This function is used
496
+ * only for the level=0 compression option.
497
+ * NOTE: this function should be optimized to avoid extra copying from
498
+ * window to pending_buf.
499
+ */
500
+ function deflate_stored(s, flush) {
501
+ /* Stored blocks are limited to 0xffff bytes, pending_buf is limited
502
+ * to pending_buf_size, and each stored block has a 5 byte header:
503
+ */
504
+ var max_block_size = 0xffff;
505
+
506
+ if (max_block_size > s.pending_buf_size - 5) {
507
+ max_block_size = s.pending_buf_size - 5;
508
+ }
509
+
510
+ /* Copy as much as possible from input to output: */
511
+ for (;;) {
512
+ /* Fill the window as much as possible: */
513
+ if (s.lookahead <= 1) {
514
+
515
+ //Assert(s->strstart < s->w_size+MAX_DIST(s) ||
516
+ // s->block_start >= (long)s->w_size, "slide too late");
517
+ // if (!(s.strstart < s.w_size + (s.w_size - MIN_LOOKAHEAD) ||
518
+ // s.block_start >= s.w_size)) {
519
+ // throw new Error("slide too late");
520
+ // }
521
+
522
+ fill_window(s);
523
+ if (s.lookahead === 0 && flush === Z_NO_FLUSH) {
524
+ return BS_NEED_MORE;
525
+ }
526
+
527
+ if (s.lookahead === 0) {
528
+ break;
529
+ }
530
+ /* flush the current block */
531
+ }
532
+ //Assert(s->block_start >= 0L, "block gone");
533
+ // if (s.block_start < 0) throw new Error("block gone");
534
+
535
+ s.strstart += s.lookahead;
536
+ s.lookahead = 0;
537
+
538
+ /* Emit a stored block if pending_buf will be full: */
539
+ var max_start = s.block_start + max_block_size;
540
+
541
+ if (s.strstart === 0 || s.strstart >= max_start) {
542
+ /* strstart == 0 is possible when wraparound on 16-bit machine */
543
+ s.lookahead = s.strstart - max_start;
544
+ s.strstart = max_start;
545
+ /*** FLUSH_BLOCK(s, 0); ***/
546
+ flush_block_only(s, false);
547
+ if (s.strm.avail_out === 0) {
548
+ return BS_NEED_MORE;
549
+ }
550
+ /***/
551
+
552
+
553
+ }
554
+ /* Flush if we may have to slide, otherwise block_start may become
555
+ * negative and the data will be gone:
556
+ */
557
+ if (s.strstart - s.block_start >= (s.w_size - MIN_LOOKAHEAD)) {
558
+ /*** FLUSH_BLOCK(s, 0); ***/
559
+ flush_block_only(s, false);
560
+ if (s.strm.avail_out === 0) {
561
+ return BS_NEED_MORE;
562
+ }
563
+ /***/
564
+ }
565
+ }
566
+
567
+ s.insert = 0;
568
+
569
+ if (flush === Z_FINISH) {
570
+ /*** FLUSH_BLOCK(s, 1); ***/
571
+ flush_block_only(s, true);
572
+ if (s.strm.avail_out === 0) {
573
+ return BS_FINISH_STARTED;
574
+ }
575
+ /***/
576
+ return BS_FINISH_DONE;
577
+ }
578
+
579
+ if (s.strstart > s.block_start) {
580
+ /*** FLUSH_BLOCK(s, 0); ***/
581
+ flush_block_only(s, false);
582
+ if (s.strm.avail_out === 0) {
583
+ return BS_NEED_MORE;
584
+ }
585
+ /***/
586
+ }
587
+
588
+ return BS_NEED_MORE;
589
+ }
590
+
591
+ /* ===========================================================================
592
+ * Compress as much as possible from the input stream, return the current
593
+ * block state.
594
+ * This function does not perform lazy evaluation of matches and inserts
595
+ * new strings in the dictionary only for unmatched strings or for short
596
+ * matches. It is used only for the fast compression options.
597
+ */
598
+ function deflate_fast(s, flush) {
599
+ var hash_head; /* head of the hash chain */
600
+ var bflush; /* set if current block must be flushed */
601
+
602
+ for (;;) {
603
+ /* Make sure that we always have enough lookahead, except
604
+ * at the end of the input file. We need MAX_MATCH bytes
605
+ * for the next match, plus MIN_MATCH bytes to insert the
606
+ * string following the next match.
607
+ */
608
+ if (s.lookahead < MIN_LOOKAHEAD) {
609
+ fill_window(s);
610
+ if (s.lookahead < MIN_LOOKAHEAD && flush === Z_NO_FLUSH) {
611
+ return BS_NEED_MORE;
612
+ }
613
+ if (s.lookahead === 0) {
614
+ break; /* flush the current block */
615
+ }
616
+ }
617
+
618
+ /* Insert the string window[strstart .. strstart+2] in the
619
+ * dictionary, and set hash_head to the head of the hash chain:
620
+ */
621
+ hash_head = 0/*NIL*/;
622
+ if (s.lookahead >= MIN_MATCH) {
623
+ /*** INSERT_STRING(s, s.strstart, hash_head); ***/
624
+ s.ins_h = ((s.ins_h << s.hash_shift) ^ s.window[s.strstart + MIN_MATCH - 1]) & s.hash_mask;
625
+ hash_head = s.prev[s.strstart & s.w_mask] = s.head[s.ins_h];
626
+ s.head[s.ins_h] = s.strstart;
627
+ /***/
628
+ }
629
+
630
+ /* Find the longest match, discarding those <= prev_length.
631
+ * At this point we have always match_length < MIN_MATCH
632
+ */
633
+ if (hash_head !== 0/*NIL*/ && ((s.strstart - hash_head) <= (s.w_size - MIN_LOOKAHEAD))) {
634
+ /* To simplify the code, we prevent matches with the string
635
+ * of window index 0 (in particular we have to avoid a match
636
+ * of the string with itself at the start of the input file).
637
+ */
638
+ s.match_length = longest_match(s, hash_head);
639
+ /* longest_match() sets match_start */
640
+ }
641
+ if (s.match_length >= MIN_MATCH) {
642
+ // check_match(s, s.strstart, s.match_start, s.match_length); // for debug only
643
+
644
+ /*** _tr_tally_dist(s, s.strstart - s.match_start,
645
+ s.match_length - MIN_MATCH, bflush); ***/
646
+ bflush = trees._tr_tally(s, s.strstart - s.match_start, s.match_length - MIN_MATCH);
647
+
648
+ s.lookahead -= s.match_length;
649
+
650
+ /* Insert new strings in the hash table only if the match length
651
+ * is not too large. This saves time but degrades compression.
652
+ */
653
+ if (s.match_length <= s.max_lazy_match/*max_insert_length*/ && s.lookahead >= MIN_MATCH) {
654
+ s.match_length--; /* string at strstart already in table */
655
+ do {
656
+ s.strstart++;
657
+ /*** INSERT_STRING(s, s.strstart, hash_head); ***/
658
+ s.ins_h = ((s.ins_h << s.hash_shift) ^ s.window[s.strstart + MIN_MATCH - 1]) & s.hash_mask;
659
+ hash_head = s.prev[s.strstart & s.w_mask] = s.head[s.ins_h];
660
+ s.head[s.ins_h] = s.strstart;
661
+ /***/
662
+ /* strstart never exceeds WSIZE-MAX_MATCH, so there are
663
+ * always MIN_MATCH bytes ahead.
664
+ */
665
+ } while (--s.match_length !== 0);
666
+ s.strstart++;
667
+ } else
668
+ {
669
+ s.strstart += s.match_length;
670
+ s.match_length = 0;
671
+ s.ins_h = s.window[s.strstart];
672
+ /* UPDATE_HASH(s, s.ins_h, s.window[s.strstart+1]); */
673
+ s.ins_h = ((s.ins_h << s.hash_shift) ^ s.window[s.strstart + 1]) & s.hash_mask;
674
+
675
+ //#if MIN_MATCH != 3
676
+ // Call UPDATE_HASH() MIN_MATCH-3 more times
677
+ //#endif
678
+ /* If lookahead < MIN_MATCH, ins_h is garbage, but it does not
679
+ * matter since it will be recomputed at next deflate call.
680
+ */
681
+ }
682
+ } else {
683
+ /* No match, output a literal byte */
684
+ //Tracevv((stderr,"%c", s.window[s.strstart]));
685
+ /*** _tr_tally_lit(s, s.window[s.strstart], bflush); ***/
686
+ bflush = trees._tr_tally(s, 0, s.window[s.strstart]);
687
+
688
+ s.lookahead--;
689
+ s.strstart++;
690
+ }
691
+ if (bflush) {
692
+ /*** FLUSH_BLOCK(s, 0); ***/
693
+ flush_block_only(s, false);
694
+ if (s.strm.avail_out === 0) {
695
+ return BS_NEED_MORE;
696
+ }
697
+ /***/
698
+ }
699
+ }
700
+ s.insert = ((s.strstart < (MIN_MATCH - 1)) ? s.strstart : MIN_MATCH - 1);
701
+ if (flush === Z_FINISH) {
702
+ /*** FLUSH_BLOCK(s, 1); ***/
703
+ flush_block_only(s, true);
704
+ if (s.strm.avail_out === 0) {
705
+ return BS_FINISH_STARTED;
706
+ }
707
+ /***/
708
+ return BS_FINISH_DONE;
709
+ }
710
+ if (s.last_lit) {
711
+ /*** FLUSH_BLOCK(s, 0); ***/
712
+ flush_block_only(s, false);
713
+ if (s.strm.avail_out === 0) {
714
+ return BS_NEED_MORE;
715
+ }
716
+ /***/
717
+ }
718
+ return BS_BLOCK_DONE;
719
+ }
720
+
721
+ /* ===========================================================================
722
+ * Same as above, but achieves better compression. We use a lazy
723
+ * evaluation for matches: a match is finally adopted only if there is
724
+ * no better match at the next window position.
725
+ */
726
+ function deflate_slow(s, flush) {
727
+ var hash_head; /* head of hash chain */
728
+ var bflush; /* set if current block must be flushed */
729
+
730
+ var max_insert;
731
+
732
+ /* Process the input block. */
733
+ for (;;) {
734
+ /* Make sure that we always have enough lookahead, except
735
+ * at the end of the input file. We need MAX_MATCH bytes
736
+ * for the next match, plus MIN_MATCH bytes to insert the
737
+ * string following the next match.
738
+ */
739
+ if (s.lookahead < MIN_LOOKAHEAD) {
740
+ fill_window(s);
741
+ if (s.lookahead < MIN_LOOKAHEAD && flush === Z_NO_FLUSH) {
742
+ return BS_NEED_MORE;
743
+ }
744
+ if (s.lookahead === 0) { break; } /* flush the current block */
745
+ }
746
+
747
+ /* Insert the string window[strstart .. strstart+2] in the
748
+ * dictionary, and set hash_head to the head of the hash chain:
749
+ */
750
+ hash_head = 0/*NIL*/;
751
+ if (s.lookahead >= MIN_MATCH) {
752
+ /*** INSERT_STRING(s, s.strstart, hash_head); ***/
753
+ s.ins_h = ((s.ins_h << s.hash_shift) ^ s.window[s.strstart + MIN_MATCH - 1]) & s.hash_mask;
754
+ hash_head = s.prev[s.strstart & s.w_mask] = s.head[s.ins_h];
755
+ s.head[s.ins_h] = s.strstart;
756
+ /***/
757
+ }
758
+
759
+ /* Find the longest match, discarding those <= prev_length.
760
+ */
761
+ s.prev_length = s.match_length;
762
+ s.prev_match = s.match_start;
763
+ s.match_length = MIN_MATCH - 1;
764
+
765
+ if (hash_head !== 0/*NIL*/ && s.prev_length < s.max_lazy_match &&
766
+ s.strstart - hash_head <= (s.w_size - MIN_LOOKAHEAD)/*MAX_DIST(s)*/) {
767
+ /* To simplify the code, we prevent matches with the string
768
+ * of window index 0 (in particular we have to avoid a match
769
+ * of the string with itself at the start of the input file).
770
+ */
771
+ s.match_length = longest_match(s, hash_head);
772
+ /* longest_match() sets match_start */
773
+
774
+ if (s.match_length <= 5 &&
775
+ (s.strategy === Z_FILTERED || (s.match_length === MIN_MATCH && s.strstart - s.match_start > 4096/*TOO_FAR*/))) {
776
+
777
+ /* If prev_match is also MIN_MATCH, match_start is garbage
778
+ * but we will ignore the current match anyway.
779
+ */
780
+ s.match_length = MIN_MATCH - 1;
781
+ }
782
+ }
783
+ /* If there was a match at the previous step and the current
784
+ * match is not better, output the previous match:
785
+ */
786
+ if (s.prev_length >= MIN_MATCH && s.match_length <= s.prev_length) {
787
+ max_insert = s.strstart + s.lookahead - MIN_MATCH;
788
+ /* Do not insert strings in hash table beyond this. */
789
+
790
+ //check_match(s, s.strstart-1, s.prev_match, s.prev_length);
791
+
792
+ /***_tr_tally_dist(s, s.strstart - 1 - s.prev_match,
793
+ s.prev_length - MIN_MATCH, bflush);***/
794
+ bflush = trees._tr_tally(s, s.strstart - 1 - s.prev_match, s.prev_length - MIN_MATCH);
795
+ /* Insert in hash table all strings up to the end of the match.
796
+ * strstart-1 and strstart are already inserted. If there is not
797
+ * enough lookahead, the last two strings are not inserted in
798
+ * the hash table.
799
+ */
800
+ s.lookahead -= s.prev_length - 1;
801
+ s.prev_length -= 2;
802
+ do {
803
+ if (++s.strstart <= max_insert) {
804
+ /*** INSERT_STRING(s, s.strstart, hash_head); ***/
805
+ s.ins_h = ((s.ins_h << s.hash_shift) ^ s.window[s.strstart + MIN_MATCH - 1]) & s.hash_mask;
806
+ hash_head = s.prev[s.strstart & s.w_mask] = s.head[s.ins_h];
807
+ s.head[s.ins_h] = s.strstart;
808
+ /***/
809
+ }
810
+ } while (--s.prev_length !== 0);
811
+ s.match_available = 0;
812
+ s.match_length = MIN_MATCH - 1;
813
+ s.strstart++;
814
+
815
+ if (bflush) {
816
+ /*** FLUSH_BLOCK(s, 0); ***/
817
+ flush_block_only(s, false);
818
+ if (s.strm.avail_out === 0) {
819
+ return BS_NEED_MORE;
820
+ }
821
+ /***/
822
+ }
823
+
824
+ } else if (s.match_available) {
825
+ /* If there was no match at the previous position, output a
826
+ * single literal. If there was a match but the current match
827
+ * is longer, truncate the previous match to a single literal.
828
+ */
829
+ //Tracevv((stderr,"%c", s->window[s->strstart-1]));
830
+ /*** _tr_tally_lit(s, s.window[s.strstart-1], bflush); ***/
831
+ bflush = trees._tr_tally(s, 0, s.window[s.strstart - 1]);
832
+
833
+ if (bflush) {
834
+ /*** FLUSH_BLOCK_ONLY(s, 0) ***/
835
+ flush_block_only(s, false);
836
+ /***/
837
+ }
838
+ s.strstart++;
839
+ s.lookahead--;
840
+ if (s.strm.avail_out === 0) {
841
+ return BS_NEED_MORE;
842
+ }
843
+ } else {
844
+ /* There is no previous match to compare with, wait for
845
+ * the next step to decide.
846
+ */
847
+ s.match_available = 1;
848
+ s.strstart++;
849
+ s.lookahead--;
850
+ }
851
+ }
852
+ //Assert (flush != Z_NO_FLUSH, "no flush?");
853
+ if (s.match_available) {
854
+ //Tracevv((stderr,"%c", s->window[s->strstart-1]));
855
+ /*** _tr_tally_lit(s, s.window[s.strstart-1], bflush); ***/
856
+ bflush = trees._tr_tally(s, 0, s.window[s.strstart - 1]);
857
+
858
+ s.match_available = 0;
859
+ }
860
+ s.insert = s.strstart < MIN_MATCH - 1 ? s.strstart : MIN_MATCH - 1;
861
+ if (flush === Z_FINISH) {
862
+ /*** FLUSH_BLOCK(s, 1); ***/
863
+ flush_block_only(s, true);
864
+ if (s.strm.avail_out === 0) {
865
+ return BS_FINISH_STARTED;
866
+ }
867
+ /***/
868
+ return BS_FINISH_DONE;
869
+ }
870
+ if (s.last_lit) {
871
+ /*** FLUSH_BLOCK(s, 0); ***/
872
+ flush_block_only(s, false);
873
+ if (s.strm.avail_out === 0) {
874
+ return BS_NEED_MORE;
875
+ }
876
+ /***/
877
+ }
878
+
879
+ return BS_BLOCK_DONE;
880
+ }
881
+
882
+
883
+ /* ===========================================================================
884
+ * For Z_RLE, simply look for runs of bytes, generate matches only of distance
885
+ * one. Do not maintain a hash table. (It will be regenerated if this run of
886
+ * deflate switches away from Z_RLE.)
887
+ */
888
+ function deflate_rle(s, flush) {
889
+ var bflush; /* set if current block must be flushed */
890
+ var prev; /* byte at distance one to match */
891
+ var scan, strend; /* scan goes up to strend for length of run */
892
+
893
+ var _win = s.window;
894
+
895
+ for (;;) {
896
+ /* Make sure that we always have enough lookahead, except
897
+ * at the end of the input file. We need MAX_MATCH bytes
898
+ * for the longest run, plus one for the unrolled loop.
899
+ */
900
+ if (s.lookahead <= MAX_MATCH) {
901
+ fill_window(s);
902
+ if (s.lookahead <= MAX_MATCH && flush === Z_NO_FLUSH) {
903
+ return BS_NEED_MORE;
904
+ }
905
+ if (s.lookahead === 0) { break; } /* flush the current block */
906
+ }
907
+
908
+ /* See how many times the previous byte repeats */
909
+ s.match_length = 0;
910
+ if (s.lookahead >= MIN_MATCH && s.strstart > 0) {
911
+ scan = s.strstart - 1;
912
+ prev = _win[scan];
913
+ if (prev === _win[++scan] && prev === _win[++scan] && prev === _win[++scan]) {
914
+ strend = s.strstart + MAX_MATCH;
915
+ do {
916
+ /*jshint noempty:false*/
917
+ } while (prev === _win[++scan] && prev === _win[++scan] &&
918
+ prev === _win[++scan] && prev === _win[++scan] &&
919
+ prev === _win[++scan] && prev === _win[++scan] &&
920
+ prev === _win[++scan] && prev === _win[++scan] &&
921
+ scan < strend);
922
+ s.match_length = MAX_MATCH - (strend - scan);
923
+ if (s.match_length > s.lookahead) {
924
+ s.match_length = s.lookahead;
925
+ }
926
+ }
927
+ //Assert(scan <= s->window+(uInt)(s->window_size-1), "wild scan");
928
+ }
929
+
930
+ /* Emit match if have run of MIN_MATCH or longer, else emit literal */
931
+ if (s.match_length >= MIN_MATCH) {
932
+ //check_match(s, s.strstart, s.strstart - 1, s.match_length);
933
+
934
+ /*** _tr_tally_dist(s, 1, s.match_length - MIN_MATCH, bflush); ***/
935
+ bflush = trees._tr_tally(s, 1, s.match_length - MIN_MATCH);
936
+
937
+ s.lookahead -= s.match_length;
938
+ s.strstart += s.match_length;
939
+ s.match_length = 0;
940
+ } else {
941
+ /* No match, output a literal byte */
942
+ //Tracevv((stderr,"%c", s->window[s->strstart]));
943
+ /*** _tr_tally_lit(s, s.window[s.strstart], bflush); ***/
944
+ bflush = trees._tr_tally(s, 0, s.window[s.strstart]);
945
+
946
+ s.lookahead--;
947
+ s.strstart++;
948
+ }
949
+ if (bflush) {
950
+ /*** FLUSH_BLOCK(s, 0); ***/
951
+ flush_block_only(s, false);
952
+ if (s.strm.avail_out === 0) {
953
+ return BS_NEED_MORE;
954
+ }
955
+ /***/
956
+ }
957
+ }
958
+ s.insert = 0;
959
+ if (flush === Z_FINISH) {
960
+ /*** FLUSH_BLOCK(s, 1); ***/
961
+ flush_block_only(s, true);
962
+ if (s.strm.avail_out === 0) {
963
+ return BS_FINISH_STARTED;
964
+ }
965
+ /***/
966
+ return BS_FINISH_DONE;
967
+ }
968
+ if (s.last_lit) {
969
+ /*** FLUSH_BLOCK(s, 0); ***/
970
+ flush_block_only(s, false);
971
+ if (s.strm.avail_out === 0) {
972
+ return BS_NEED_MORE;
973
+ }
974
+ /***/
975
+ }
976
+ return BS_BLOCK_DONE;
977
+ }
978
+
979
+ /* ===========================================================================
980
+ * For Z_HUFFMAN_ONLY, do not look for matches. Do not maintain a hash table.
981
+ * (It will be regenerated if this run of deflate switches away from Huffman.)
982
+ */
983
+ function deflate_huff(s, flush) {
984
+ var bflush; /* set if current block must be flushed */
985
+
986
+ for (;;) {
987
+ /* Make sure that we have a literal to write. */
988
+ if (s.lookahead === 0) {
989
+ fill_window(s);
990
+ if (s.lookahead === 0) {
991
+ if (flush === Z_NO_FLUSH) {
992
+ return BS_NEED_MORE;
993
+ }
994
+ break; /* flush the current block */
995
+ }
996
+ }
997
+
998
+ /* Output a literal byte */
999
+ s.match_length = 0;
1000
+ //Tracevv((stderr,"%c", s->window[s->strstart]));
1001
+ /*** _tr_tally_lit(s, s.window[s.strstart], bflush); ***/
1002
+ bflush = trees._tr_tally(s, 0, s.window[s.strstart]);
1003
+ s.lookahead--;
1004
+ s.strstart++;
1005
+ if (bflush) {
1006
+ /*** FLUSH_BLOCK(s, 0); ***/
1007
+ flush_block_only(s, false);
1008
+ if (s.strm.avail_out === 0) {
1009
+ return BS_NEED_MORE;
1010
+ }
1011
+ /***/
1012
+ }
1013
+ }
1014
+ s.insert = 0;
1015
+ if (flush === Z_FINISH) {
1016
+ /*** FLUSH_BLOCK(s, 1); ***/
1017
+ flush_block_only(s, true);
1018
+ if (s.strm.avail_out === 0) {
1019
+ return BS_FINISH_STARTED;
1020
+ }
1021
+ /***/
1022
+ return BS_FINISH_DONE;
1023
+ }
1024
+ if (s.last_lit) {
1025
+ /*** FLUSH_BLOCK(s, 0); ***/
1026
+ flush_block_only(s, false);
1027
+ if (s.strm.avail_out === 0) {
1028
+ return BS_NEED_MORE;
1029
+ }
1030
+ /***/
1031
+ }
1032
+ return BS_BLOCK_DONE;
1033
+ }
1034
+
1035
+ /* Values for max_lazy_match, good_match and max_chain_length, depending on
1036
+ * the desired pack level (0..9). The values given below have been tuned to
1037
+ * exclude worst case performance for pathological files. Better values may be
1038
+ * found for specific files.
1039
+ */
1040
+ function Config(good_length, max_lazy, nice_length, max_chain, func) {
1041
+ this.good_length = good_length;
1042
+ this.max_lazy = max_lazy;
1043
+ this.nice_length = nice_length;
1044
+ this.max_chain = max_chain;
1045
+ this.func = func;
1046
+ }
1047
+
1048
+ var configuration_table;
1049
+
1050
+ configuration_table = [
1051
+ /* good lazy nice chain */
1052
+ new Config(0, 0, 0, 0, deflate_stored), /* 0 store only */
1053
+ new Config(4, 4, 8, 4, deflate_fast), /* 1 max speed, no lazy matches */
1054
+ new Config(4, 5, 16, 8, deflate_fast), /* 2 */
1055
+ new Config(4, 6, 32, 32, deflate_fast), /* 3 */
1056
+
1057
+ new Config(4, 4, 16, 16, deflate_slow), /* 4 lazy matches */
1058
+ new Config(8, 16, 32, 32, deflate_slow), /* 5 */
1059
+ new Config(8, 16, 128, 128, deflate_slow), /* 6 */
1060
+ new Config(8, 32, 128, 256, deflate_slow), /* 7 */
1061
+ new Config(32, 128, 258, 1024, deflate_slow), /* 8 */
1062
+ new Config(32, 258, 258, 4096, deflate_slow) /* 9 max compression */
1063
+ ];
1064
+
1065
+
1066
+ /* ===========================================================================
1067
+ * Initialize the "longest match" routines for a new zlib stream
1068
+ */
1069
+ function lm_init(s) {
1070
+ s.window_size = 2 * s.w_size;
1071
+
1072
+ /*** CLEAR_HASH(s); ***/
1073
+ zero(s.head); // Fill with NIL (= 0);
1074
+
1075
+ /* Set the default configuration parameters:
1076
+ */
1077
+ s.max_lazy_match = configuration_table[s.level].max_lazy;
1078
+ s.good_match = configuration_table[s.level].good_length;
1079
+ s.nice_match = configuration_table[s.level].nice_length;
1080
+ s.max_chain_length = configuration_table[s.level].max_chain;
1081
+
1082
+ s.strstart = 0;
1083
+ s.block_start = 0;
1084
+ s.lookahead = 0;
1085
+ s.insert = 0;
1086
+ s.match_length = s.prev_length = MIN_MATCH - 1;
1087
+ s.match_available = 0;
1088
+ s.ins_h = 0;
1089
+ }
1090
+
1091
+
1092
+ function DeflateState() {
1093
+ this.strm = null; /* pointer back to this zlib stream */
1094
+ this.status = 0; /* as the name implies */
1095
+ this.pending_buf = null; /* output still pending */
1096
+ this.pending_buf_size = 0; /* size of pending_buf */
1097
+ this.pending_out = 0; /* next pending byte to output to the stream */
1098
+ this.pending = 0; /* nb of bytes in the pending buffer */
1099
+ this.wrap = 0; /* bit 0 true for zlib, bit 1 true for gzip */
1100
+ this.gzhead = null; /* gzip header information to write */
1101
+ this.gzindex = 0; /* where in extra, name, or comment */
1102
+ this.method = Z_DEFLATED; /* can only be DEFLATED */
1103
+ this.last_flush = -1; /* value of flush param for previous deflate call */
1104
+
1105
+ this.w_size = 0; /* LZ77 window size (32K by default) */
1106
+ this.w_bits = 0; /* log2(w_size) (8..16) */
1107
+ this.w_mask = 0; /* w_size - 1 */
1108
+
1109
+ this.window = null;
1110
+ /* Sliding window. Input bytes are read into the second half of the window,
1111
+ * and move to the first half later to keep a dictionary of at least wSize
1112
+ * bytes. With this organization, matches are limited to a distance of
1113
+ * wSize-MAX_MATCH bytes, but this ensures that IO is always
1114
+ * performed with a length multiple of the block size.
1115
+ */
1116
+
1117
+ this.window_size = 0;
1118
+ /* Actual size of window: 2*wSize, except when the user input buffer
1119
+ * is directly used as sliding window.
1120
+ */
1121
+
1122
+ this.prev = null;
1123
+ /* Link to older string with same hash index. To limit the size of this
1124
+ * array to 64K, this link is maintained only for the last 32K strings.
1125
+ * An index in this array is thus a window index modulo 32K.
1126
+ */
1127
+
1128
+ this.head = null; /* Heads of the hash chains or NIL. */
1129
+
1130
+ this.ins_h = 0; /* hash index of string to be inserted */
1131
+ this.hash_size = 0; /* number of elements in hash table */
1132
+ this.hash_bits = 0; /* log2(hash_size) */
1133
+ this.hash_mask = 0; /* hash_size-1 */
1134
+
1135
+ this.hash_shift = 0;
1136
+ /* Number of bits by which ins_h must be shifted at each input
1137
+ * step. It must be such that after MIN_MATCH steps, the oldest
1138
+ * byte no longer takes part in the hash key, that is:
1139
+ * hash_shift * MIN_MATCH >= hash_bits
1140
+ */
1141
+
1142
+ this.block_start = 0;
1143
+ /* Window position at the beginning of the current output block. Gets
1144
+ * negative when the window is moved backwards.
1145
+ */
1146
+
1147
+ this.match_length = 0; /* length of best match */
1148
+ this.prev_match = 0; /* previous match */
1149
+ this.match_available = 0; /* set if previous match exists */
1150
+ this.strstart = 0; /* start of string to insert */
1151
+ this.match_start = 0; /* start of matching string */
1152
+ this.lookahead = 0; /* number of valid bytes ahead in window */
1153
+
1154
+ this.prev_length = 0;
1155
+ /* Length of the best match at previous step. Matches not greater than this
1156
+ * are discarded. This is used in the lazy match evaluation.
1157
+ */
1158
+
1159
+ this.max_chain_length = 0;
1160
+ /* To speed up deflation, hash chains are never searched beyond this
1161
+ * length. A higher limit improves compression ratio but degrades the
1162
+ * speed.
1163
+ */
1164
+
1165
+ this.max_lazy_match = 0;
1166
+ /* Attempt to find a better match only when the current match is strictly
1167
+ * smaller than this value. This mechanism is used only for compression
1168
+ * levels >= 4.
1169
+ */
1170
+ // That's alias to max_lazy_match, don't use directly
1171
+ //this.max_insert_length = 0;
1172
+ /* Insert new strings in the hash table only if the match length is not
1173
+ * greater than this length. This saves time but degrades compression.
1174
+ * max_insert_length is used only for compression levels <= 3.
1175
+ */
1176
+
1177
+ this.level = 0; /* compression level (1..9) */
1178
+ this.strategy = 0; /* favor or force Huffman coding*/
1179
+
1180
+ this.good_match = 0;
1181
+ /* Use a faster search when the previous match is longer than this */
1182
+
1183
+ this.nice_match = 0; /* Stop searching when current match exceeds this */
1184
+
1185
+ /* used by trees.c: */
1186
+
1187
+ /* Didn't use ct_data typedef below to suppress compiler warning */
1188
+
1189
+ // struct ct_data_s dyn_ltree[HEAP_SIZE]; /* literal and length tree */
1190
+ // struct ct_data_s dyn_dtree[2*D_CODES+1]; /* distance tree */
1191
+ // struct ct_data_s bl_tree[2*BL_CODES+1]; /* Huffman tree for bit lengths */
1192
+
1193
+ // Use flat array of DOUBLE size, with interleaved fata,
1194
+ // because JS does not support effective
1195
+ this.dyn_ltree = new utils.Buf16(HEAP_SIZE * 2);
1196
+ this.dyn_dtree = new utils.Buf16((2 * D_CODES + 1) * 2);
1197
+ this.bl_tree = new utils.Buf16((2 * BL_CODES + 1) * 2);
1198
+ zero(this.dyn_ltree);
1199
+ zero(this.dyn_dtree);
1200
+ zero(this.bl_tree);
1201
+
1202
+ this.l_desc = null; /* desc. for literal tree */
1203
+ this.d_desc = null; /* desc. for distance tree */
1204
+ this.bl_desc = null; /* desc. for bit length tree */
1205
+
1206
+ //ush bl_count[MAX_BITS+1];
1207
+ this.bl_count = new utils.Buf16(MAX_BITS + 1);
1208
+ /* number of codes at each bit length for an optimal tree */
1209
+
1210
+ //int heap[2*L_CODES+1]; /* heap used to build the Huffman trees */
1211
+ this.heap = new utils.Buf16(2 * L_CODES + 1); /* heap used to build the Huffman trees */
1212
+ zero(this.heap);
1213
+
1214
+ this.heap_len = 0; /* number of elements in the heap */
1215
+ this.heap_max = 0; /* element of largest frequency */
1216
+ /* The sons of heap[n] are heap[2*n] and heap[2*n+1]. heap[0] is not used.
1217
+ * The same heap array is used to build all trees.
1218
+ */
1219
+
1220
+ this.depth = new utils.Buf16(2 * L_CODES + 1); //uch depth[2*L_CODES+1];
1221
+ zero(this.depth);
1222
+ /* Depth of each subtree used as tie breaker for trees of equal frequency
1223
+ */
1224
+
1225
+ this.l_buf = 0; /* buffer index for literals or lengths */
1226
+
1227
+ this.lit_bufsize = 0;
1228
+ /* Size of match buffer for literals/lengths. There are 4 reasons for
1229
+ * limiting lit_bufsize to 64K:
1230
+ * - frequencies can be kept in 16 bit counters
1231
+ * - if compression is not successful for the first block, all input
1232
+ * data is still in the window so we can still emit a stored block even
1233
+ * when input comes from standard input. (This can also be done for
1234
+ * all blocks if lit_bufsize is not greater than 32K.)
1235
+ * - if compression is not successful for a file smaller than 64K, we can
1236
+ * even emit a stored file instead of a stored block (saving 5 bytes).
1237
+ * This is applicable only for zip (not gzip or zlib).
1238
+ * - creating new Huffman trees less frequently may not provide fast
1239
+ * adaptation to changes in the input data statistics. (Take for
1240
+ * example a binary file with poorly compressible code followed by
1241
+ * a highly compressible string table.) Smaller buffer sizes give
1242
+ * fast adaptation but have of course the overhead of transmitting
1243
+ * trees more frequently.
1244
+ * - I can't count above 4
1245
+ */
1246
+
1247
+ this.last_lit = 0; /* running index in l_buf */
1248
+
1249
+ this.d_buf = 0;
1250
+ /* Buffer index for distances. To simplify the code, d_buf and l_buf have
1251
+ * the same number of elements. To use different lengths, an extra flag
1252
+ * array would be necessary.
1253
+ */
1254
+
1255
+ this.opt_len = 0; /* bit length of current block with optimal trees */
1256
+ this.static_len = 0; /* bit length of current block with static trees */
1257
+ this.matches = 0; /* number of string matches in current block */
1258
+ this.insert = 0; /* bytes at end of window left to insert */
1259
+
1260
+
1261
+ this.bi_buf = 0;
1262
+ /* Output buffer. bits are inserted starting at the bottom (least
1263
+ * significant bits).
1264
+ */
1265
+ this.bi_valid = 0;
1266
+ /* Number of valid bits in bi_buf. All bits above the last valid bit
1267
+ * are always zero.
1268
+ */
1269
+
1270
+ // Used for window memory init. We safely ignore it for JS. That makes
1271
+ // sense only for pointers and memory check tools.
1272
+ //this.high_water = 0;
1273
+ /* High water mark offset in window for initialized bytes -- bytes above
1274
+ * this are set to zero in order to avoid memory check warnings when
1275
+ * longest match routines access bytes past the input. This is then
1276
+ * updated to the new high water mark.
1277
+ */
1278
+ }
1279
+
1280
+
1281
+ function deflateResetKeep(strm) {
1282
+ var s;
1283
+
1284
+ if (!strm || !strm.state) {
1285
+ return err(strm, Z_STREAM_ERROR);
1286
+ }
1287
+
1288
+ strm.total_in = strm.total_out = 0;
1289
+ strm.data_type = Z_UNKNOWN;
1290
+
1291
+ s = strm.state;
1292
+ s.pending = 0;
1293
+ s.pending_out = 0;
1294
+
1295
+ if (s.wrap < 0) {
1296
+ s.wrap = -s.wrap;
1297
+ /* was made negative by deflate(..., Z_FINISH); */
1298
+ }
1299
+ s.status = (s.wrap ? INIT_STATE : BUSY_STATE);
1300
+ strm.adler = (s.wrap === 2) ?
1301
+ 0 // crc32(0, Z_NULL, 0)
1302
+ :
1303
+ 1; // adler32(0, Z_NULL, 0)
1304
+ s.last_flush = Z_NO_FLUSH;
1305
+ trees._tr_init(s);
1306
+ return Z_OK;
1307
+ }
1308
+
1309
+
1310
+ function deflateReset(strm) {
1311
+ var ret = deflateResetKeep(strm);
1312
+ if (ret === Z_OK) {
1313
+ lm_init(strm.state);
1314
+ }
1315
+ return ret;
1316
+ }
1317
+
1318
+
1319
+ function deflateSetHeader(strm, head) {
1320
+ if (!strm || !strm.state) { return Z_STREAM_ERROR; }
1321
+ if (strm.state.wrap !== 2) { return Z_STREAM_ERROR; }
1322
+ strm.state.gzhead = head;
1323
+ return Z_OK;
1324
+ }
1325
+
1326
+
1327
+ function deflateInit2(strm, level, method, windowBits, memLevel, strategy) {
1328
+ if (!strm) { // === Z_NULL
1329
+ return Z_STREAM_ERROR;
1330
+ }
1331
+ var wrap = 1;
1332
+
1333
+ if (level === Z_DEFAULT_COMPRESSION) {
1334
+ level = 6;
1335
+ }
1336
+
1337
+ if (windowBits < 0) { /* suppress zlib wrapper */
1338
+ wrap = 0;
1339
+ windowBits = -windowBits;
1340
+ }
1341
+
1342
+ else if (windowBits > 15) {
1343
+ wrap = 2; /* write gzip wrapper instead */
1344
+ windowBits -= 16;
1345
+ }
1346
+
1347
+
1348
+ if (memLevel < 1 || memLevel > MAX_MEM_LEVEL || method !== Z_DEFLATED ||
1349
+ windowBits < 8 || windowBits > 15 || level < 0 || level > 9 ||
1350
+ strategy < 0 || strategy > Z_FIXED) {
1351
+ return err(strm, Z_STREAM_ERROR);
1352
+ }
1353
+
1354
+
1355
+ if (windowBits === 8) {
1356
+ windowBits = 9;
1357
+ }
1358
+ /* until 256-byte window bug fixed */
1359
+
1360
+ var s = new DeflateState();
1361
+
1362
+ strm.state = s;
1363
+ s.strm = strm;
1364
+
1365
+ s.wrap = wrap;
1366
+ s.gzhead = null;
1367
+ s.w_bits = windowBits;
1368
+ s.w_size = 1 << s.w_bits;
1369
+ s.w_mask = s.w_size - 1;
1370
+
1371
+ s.hash_bits = memLevel + 7;
1372
+ s.hash_size = 1 << s.hash_bits;
1373
+ s.hash_mask = s.hash_size - 1;
1374
+ s.hash_shift = ~~((s.hash_bits + MIN_MATCH - 1) / MIN_MATCH);
1375
+
1376
+ s.window = new utils.Buf8(s.w_size * 2);
1377
+ s.head = new utils.Buf16(s.hash_size);
1378
+ s.prev = new utils.Buf16(s.w_size);
1379
+
1380
+ // Don't need mem init magic for JS.
1381
+ //s.high_water = 0; /* nothing written to s->window yet */
1382
+
1383
+ s.lit_bufsize = 1 << (memLevel + 6); /* 16K elements by default */
1384
+
1385
+ s.pending_buf_size = s.lit_bufsize * 4;
1386
+
1387
+ //overlay = (ushf *) ZALLOC(strm, s->lit_bufsize, sizeof(ush)+2);
1388
+ //s->pending_buf = (uchf *) overlay;
1389
+ s.pending_buf = new utils.Buf8(s.pending_buf_size);
1390
+
1391
+ // It is offset from `s.pending_buf` (size is `s.lit_bufsize * 2`)
1392
+ //s->d_buf = overlay + s->lit_bufsize/sizeof(ush);
1393
+ s.d_buf = 1 * s.lit_bufsize;
1394
+
1395
+ //s->l_buf = s->pending_buf + (1+sizeof(ush))*s->lit_bufsize;
1396
+ s.l_buf = (1 + 2) * s.lit_bufsize;
1397
+
1398
+ s.level = level;
1399
+ s.strategy = strategy;
1400
+ s.method = method;
1401
+
1402
+ return deflateReset(strm);
1403
+ }
1404
+
1405
+ function deflateInit(strm, level) {
1406
+ return deflateInit2(strm, level, Z_DEFLATED, MAX_WBITS, DEF_MEM_LEVEL, Z_DEFAULT_STRATEGY);
1407
+ }
1408
+
1409
+
1410
+ function deflate(strm, flush) {
1411
+ var old_flush, s;
1412
+ var beg, val; // for gzip header write only
1413
+
1414
+ if (!strm || !strm.state ||
1415
+ flush > Z_BLOCK || flush < 0) {
1416
+ return strm ? err(strm, Z_STREAM_ERROR) : Z_STREAM_ERROR;
1417
+ }
1418
+
1419
+ s = strm.state;
1420
+
1421
+ if (!strm.output ||
1422
+ (!strm.input && strm.avail_in !== 0) ||
1423
+ (s.status === FINISH_STATE && flush !== Z_FINISH)) {
1424
+ return err(strm, (strm.avail_out === 0) ? Z_BUF_ERROR : Z_STREAM_ERROR);
1425
+ }
1426
+
1427
+ s.strm = strm; /* just in case */
1428
+ old_flush = s.last_flush;
1429
+ s.last_flush = flush;
1430
+
1431
+ /* Write the header */
1432
+ if (s.status === INIT_STATE) {
1433
+
1434
+ if (s.wrap === 2) { // GZIP header
1435
+ strm.adler = 0; //crc32(0L, Z_NULL, 0);
1436
+ put_byte(s, 31);
1437
+ put_byte(s, 139);
1438
+ put_byte(s, 8);
1439
+ if (!s.gzhead) { // s->gzhead == Z_NULL
1440
+ put_byte(s, 0);
1441
+ put_byte(s, 0);
1442
+ put_byte(s, 0);
1443
+ put_byte(s, 0);
1444
+ put_byte(s, 0);
1445
+ put_byte(s, s.level === 9 ? 2 :
1446
+ (s.strategy >= Z_HUFFMAN_ONLY || s.level < 2 ?
1447
+ 4 : 0));
1448
+ put_byte(s, OS_CODE);
1449
+ s.status = BUSY_STATE;
1450
+ }
1451
+ else {
1452
+ put_byte(s, (s.gzhead.text ? 1 : 0) +
1453
+ (s.gzhead.hcrc ? 2 : 0) +
1454
+ (!s.gzhead.extra ? 0 : 4) +
1455
+ (!s.gzhead.name ? 0 : 8) +
1456
+ (!s.gzhead.comment ? 0 : 16)
1457
+ );
1458
+ put_byte(s, s.gzhead.time & 0xff);
1459
+ put_byte(s, (s.gzhead.time >> 8) & 0xff);
1460
+ put_byte(s, (s.gzhead.time >> 16) & 0xff);
1461
+ put_byte(s, (s.gzhead.time >> 24) & 0xff);
1462
+ put_byte(s, s.level === 9 ? 2 :
1463
+ (s.strategy >= Z_HUFFMAN_ONLY || s.level < 2 ?
1464
+ 4 : 0));
1465
+ put_byte(s, s.gzhead.os & 0xff);
1466
+ if (s.gzhead.extra && s.gzhead.extra.length) {
1467
+ put_byte(s, s.gzhead.extra.length & 0xff);
1468
+ put_byte(s, (s.gzhead.extra.length >> 8) & 0xff);
1469
+ }
1470
+ if (s.gzhead.hcrc) {
1471
+ strm.adler = crc32(strm.adler, s.pending_buf, s.pending, 0);
1472
+ }
1473
+ s.gzindex = 0;
1474
+ s.status = EXTRA_STATE;
1475
+ }
1476
+ }
1477
+ else // DEFLATE header
1478
+ {
1479
+ var header = (Z_DEFLATED + ((s.w_bits - 8) << 4)) << 8;
1480
+ var level_flags = -1;
1481
+
1482
+ if (s.strategy >= Z_HUFFMAN_ONLY || s.level < 2) {
1483
+ level_flags = 0;
1484
+ } else if (s.level < 6) {
1485
+ level_flags = 1;
1486
+ } else if (s.level === 6) {
1487
+ level_flags = 2;
1488
+ } else {
1489
+ level_flags = 3;
1490
+ }
1491
+ header |= (level_flags << 6);
1492
+ if (s.strstart !== 0) { header |= PRESET_DICT; }
1493
+ header += 31 - (header % 31);
1494
+
1495
+ s.status = BUSY_STATE;
1496
+ putShortMSB(s, header);
1497
+
1498
+ /* Save the adler32 of the preset dictionary: */
1499
+ if (s.strstart !== 0) {
1500
+ putShortMSB(s, strm.adler >>> 16);
1501
+ putShortMSB(s, strm.adler & 0xffff);
1502
+ }
1503
+ strm.adler = 1; // adler32(0L, Z_NULL, 0);
1504
+ }
1505
+ }
1506
+
1507
+ //#ifdef GZIP
1508
+ if (s.status === EXTRA_STATE) {
1509
+ if (s.gzhead.extra/* != Z_NULL*/) {
1510
+ beg = s.pending; /* start of bytes to update crc */
1511
+
1512
+ while (s.gzindex < (s.gzhead.extra.length & 0xffff)) {
1513
+ if (s.pending === s.pending_buf_size) {
1514
+ if (s.gzhead.hcrc && s.pending > beg) {
1515
+ strm.adler = crc32(strm.adler, s.pending_buf, s.pending - beg, beg);
1516
+ }
1517
+ flush_pending(strm);
1518
+ beg = s.pending;
1519
+ if (s.pending === s.pending_buf_size) {
1520
+ break;
1521
+ }
1522
+ }
1523
+ put_byte(s, s.gzhead.extra[s.gzindex] & 0xff);
1524
+ s.gzindex++;
1525
+ }
1526
+ if (s.gzhead.hcrc && s.pending > beg) {
1527
+ strm.adler = crc32(strm.adler, s.pending_buf, s.pending - beg, beg);
1528
+ }
1529
+ if (s.gzindex === s.gzhead.extra.length) {
1530
+ s.gzindex = 0;
1531
+ s.status = NAME_STATE;
1532
+ }
1533
+ }
1534
+ else {
1535
+ s.status = NAME_STATE;
1536
+ }
1537
+ }
1538
+ if (s.status === NAME_STATE) {
1539
+ if (s.gzhead.name/* != Z_NULL*/) {
1540
+ beg = s.pending; /* start of bytes to update crc */
1541
+ //int val;
1542
+
1543
+ do {
1544
+ if (s.pending === s.pending_buf_size) {
1545
+ if (s.gzhead.hcrc && s.pending > beg) {
1546
+ strm.adler = crc32(strm.adler, s.pending_buf, s.pending - beg, beg);
1547
+ }
1548
+ flush_pending(strm);
1549
+ beg = s.pending;
1550
+ if (s.pending === s.pending_buf_size) {
1551
+ val = 1;
1552
+ break;
1553
+ }
1554
+ }
1555
+ // JS specific: little magic to add zero terminator to end of string
1556
+ if (s.gzindex < s.gzhead.name.length) {
1557
+ val = s.gzhead.name.charCodeAt(s.gzindex++) & 0xff;
1558
+ } else {
1559
+ val = 0;
1560
+ }
1561
+ put_byte(s, val);
1562
+ } while (val !== 0);
1563
+
1564
+ if (s.gzhead.hcrc && s.pending > beg) {
1565
+ strm.adler = crc32(strm.adler, s.pending_buf, s.pending - beg, beg);
1566
+ }
1567
+ if (val === 0) {
1568
+ s.gzindex = 0;
1569
+ s.status = COMMENT_STATE;
1570
+ }
1571
+ }
1572
+ else {
1573
+ s.status = COMMENT_STATE;
1574
+ }
1575
+ }
1576
+ if (s.status === COMMENT_STATE) {
1577
+ if (s.gzhead.comment/* != Z_NULL*/) {
1578
+ beg = s.pending; /* start of bytes to update crc */
1579
+ //int val;
1580
+
1581
+ do {
1582
+ if (s.pending === s.pending_buf_size) {
1583
+ if (s.gzhead.hcrc && s.pending > beg) {
1584
+ strm.adler = crc32(strm.adler, s.pending_buf, s.pending - beg, beg);
1585
+ }
1586
+ flush_pending(strm);
1587
+ beg = s.pending;
1588
+ if (s.pending === s.pending_buf_size) {
1589
+ val = 1;
1590
+ break;
1591
+ }
1592
+ }
1593
+ // JS specific: little magic to add zero terminator to end of string
1594
+ if (s.gzindex < s.gzhead.comment.length) {
1595
+ val = s.gzhead.comment.charCodeAt(s.gzindex++) & 0xff;
1596
+ } else {
1597
+ val = 0;
1598
+ }
1599
+ put_byte(s, val);
1600
+ } while (val !== 0);
1601
+
1602
+ if (s.gzhead.hcrc && s.pending > beg) {
1603
+ strm.adler = crc32(strm.adler, s.pending_buf, s.pending - beg, beg);
1604
+ }
1605
+ if (val === 0) {
1606
+ s.status = HCRC_STATE;
1607
+ }
1608
+ }
1609
+ else {
1610
+ s.status = HCRC_STATE;
1611
+ }
1612
+ }
1613
+ if (s.status === HCRC_STATE) {
1614
+ if (s.gzhead.hcrc) {
1615
+ if (s.pending + 2 > s.pending_buf_size) {
1616
+ flush_pending(strm);
1617
+ }
1618
+ if (s.pending + 2 <= s.pending_buf_size) {
1619
+ put_byte(s, strm.adler & 0xff);
1620
+ put_byte(s, (strm.adler >> 8) & 0xff);
1621
+ strm.adler = 0; //crc32(0L, Z_NULL, 0);
1622
+ s.status = BUSY_STATE;
1623
+ }
1624
+ }
1625
+ else {
1626
+ s.status = BUSY_STATE;
1627
+ }
1628
+ }
1629
+ //#endif
1630
+
1631
+ /* Flush as much pending output as possible */
1632
+ if (s.pending !== 0) {
1633
+ flush_pending(strm);
1634
+ if (strm.avail_out === 0) {
1635
+ /* Since avail_out is 0, deflate will be called again with
1636
+ * more output space, but possibly with both pending and
1637
+ * avail_in equal to zero. There won't be anything to do,
1638
+ * but this is not an error situation so make sure we
1639
+ * return OK instead of BUF_ERROR at next call of deflate:
1640
+ */
1641
+ s.last_flush = -1;
1642
+ return Z_OK;
1643
+ }
1644
+
1645
+ /* Make sure there is something to do and avoid duplicate consecutive
1646
+ * flushes. For repeated and useless calls with Z_FINISH, we keep
1647
+ * returning Z_STREAM_END instead of Z_BUF_ERROR.
1648
+ */
1649
+ } else if (strm.avail_in === 0 && rank(flush) <= rank(old_flush) &&
1650
+ flush !== Z_FINISH) {
1651
+ return err(strm, Z_BUF_ERROR);
1652
+ }
1653
+
1654
+ /* User must not provide more input after the first FINISH: */
1655
+ if (s.status === FINISH_STATE && strm.avail_in !== 0) {
1656
+ return err(strm, Z_BUF_ERROR);
1657
+ }
1658
+
1659
+ /* Start a new block or continue the current one.
1660
+ */
1661
+ if (strm.avail_in !== 0 || s.lookahead !== 0 ||
1662
+ (flush !== Z_NO_FLUSH && s.status !== FINISH_STATE)) {
1663
+ var bstate = (s.strategy === Z_HUFFMAN_ONLY) ? deflate_huff(s, flush) :
1664
+ (s.strategy === Z_RLE ? deflate_rle(s, flush) :
1665
+ configuration_table[s.level].func(s, flush));
1666
+
1667
+ if (bstate === BS_FINISH_STARTED || bstate === BS_FINISH_DONE) {
1668
+ s.status = FINISH_STATE;
1669
+ }
1670
+ if (bstate === BS_NEED_MORE || bstate === BS_FINISH_STARTED) {
1671
+ if (strm.avail_out === 0) {
1672
+ s.last_flush = -1;
1673
+ /* avoid BUF_ERROR next call, see above */
1674
+ }
1675
+ return Z_OK;
1676
+ /* If flush != Z_NO_FLUSH && avail_out == 0, the next call
1677
+ * of deflate should use the same flush parameter to make sure
1678
+ * that the flush is complete. So we don't have to output an
1679
+ * empty block here, this will be done at next call. This also
1680
+ * ensures that for a very small output buffer, we emit at most
1681
+ * one empty block.
1682
+ */
1683
+ }
1684
+ if (bstate === BS_BLOCK_DONE) {
1685
+ if (flush === Z_PARTIAL_FLUSH) {
1686
+ trees._tr_align(s);
1687
+ }
1688
+ else if (flush !== Z_BLOCK) { /* FULL_FLUSH or SYNC_FLUSH */
1689
+
1690
+ trees._tr_stored_block(s, 0, 0, false);
1691
+ /* For a full flush, this empty block will be recognized
1692
+ * as a special marker by inflate_sync().
1693
+ */
1694
+ if (flush === Z_FULL_FLUSH) {
1695
+ /*** CLEAR_HASH(s); ***/ /* forget history */
1696
+ zero(s.head); // Fill with NIL (= 0);
1697
+
1698
+ if (s.lookahead === 0) {
1699
+ s.strstart = 0;
1700
+ s.block_start = 0;
1701
+ s.insert = 0;
1702
+ }
1703
+ }
1704
+ }
1705
+ flush_pending(strm);
1706
+ if (strm.avail_out === 0) {
1707
+ s.last_flush = -1; /* avoid BUF_ERROR at next call, see above */
1708
+ return Z_OK;
1709
+ }
1710
+ }
1711
+ }
1712
+ //Assert(strm->avail_out > 0, "bug2");
1713
+ //if (strm.avail_out <= 0) { throw new Error("bug2");}
1714
+
1715
+ if (flush !== Z_FINISH) { return Z_OK; }
1716
+ if (s.wrap <= 0) { return Z_STREAM_END; }
1717
+
1718
+ /* Write the trailer */
1719
+ if (s.wrap === 2) {
1720
+ put_byte(s, strm.adler & 0xff);
1721
+ put_byte(s, (strm.adler >> 8) & 0xff);
1722
+ put_byte(s, (strm.adler >> 16) & 0xff);
1723
+ put_byte(s, (strm.adler >> 24) & 0xff);
1724
+ put_byte(s, strm.total_in & 0xff);
1725
+ put_byte(s, (strm.total_in >> 8) & 0xff);
1726
+ put_byte(s, (strm.total_in >> 16) & 0xff);
1727
+ put_byte(s, (strm.total_in >> 24) & 0xff);
1728
+ }
1729
+ else
1730
+ {
1731
+ putShortMSB(s, strm.adler >>> 16);
1732
+ putShortMSB(s, strm.adler & 0xffff);
1733
+ }
1734
+
1735
+ flush_pending(strm);
1736
+ /* If avail_out is zero, the application will call deflate again
1737
+ * to flush the rest.
1738
+ */
1739
+ if (s.wrap > 0) { s.wrap = -s.wrap; }
1740
+ /* write the trailer only once! */
1741
+ return s.pending !== 0 ? Z_OK : Z_STREAM_END;
1742
+ }
1743
+
1744
+ function deflateEnd(strm) {
1745
+ var status;
1746
+
1747
+ if (!strm/*== Z_NULL*/ || !strm.state/*== Z_NULL*/) {
1748
+ return Z_STREAM_ERROR;
1749
+ }
1750
+
1751
+ status = strm.state.status;
1752
+ if (status !== INIT_STATE &&
1753
+ status !== EXTRA_STATE &&
1754
+ status !== NAME_STATE &&
1755
+ status !== COMMENT_STATE &&
1756
+ status !== HCRC_STATE &&
1757
+ status !== BUSY_STATE &&
1758
+ status !== FINISH_STATE
1759
+ ) {
1760
+ return err(strm, Z_STREAM_ERROR);
1761
+ }
1762
+
1763
+ strm.state = null;
1764
+
1765
+ return status === BUSY_STATE ? err(strm, Z_DATA_ERROR) : Z_OK;
1766
+ }
1767
+
1768
+
1769
+ /* =========================================================================
1770
+ * Initializes the compression dictionary from the given byte
1771
+ * sequence without producing any compressed output.
1772
+ */
1773
+ function deflateSetDictionary(strm, dictionary) {
1774
+ var dictLength = dictionary.length;
1775
+
1776
+ var s;
1777
+ var str, n;
1778
+ var wrap;
1779
+ var avail;
1780
+ var next;
1781
+ var input;
1782
+ var tmpDict;
1783
+
1784
+ if (!strm/*== Z_NULL*/ || !strm.state/*== Z_NULL*/) {
1785
+ return Z_STREAM_ERROR;
1786
+ }
1787
+
1788
+ s = strm.state;
1789
+ wrap = s.wrap;
1790
+
1791
+ if (wrap === 2 || (wrap === 1 && s.status !== INIT_STATE) || s.lookahead) {
1792
+ return Z_STREAM_ERROR;
1793
+ }
1794
+
1795
+ /* when using zlib wrappers, compute Adler-32 for provided dictionary */
1796
+ if (wrap === 1) {
1797
+ /* adler32(strm->adler, dictionary, dictLength); */
1798
+ strm.adler = adler32(strm.adler, dictionary, dictLength, 0);
1799
+ }
1800
+
1801
+ s.wrap = 0; /* avoid computing Adler-32 in read_buf */
1802
+
1803
+ /* if dictionary would fill window, just replace the history */
1804
+ if (dictLength >= s.w_size) {
1805
+ if (wrap === 0) { /* already empty otherwise */
1806
+ /*** CLEAR_HASH(s); ***/
1807
+ zero(s.head); // Fill with NIL (= 0);
1808
+ s.strstart = 0;
1809
+ s.block_start = 0;
1810
+ s.insert = 0;
1811
+ }
1812
+ /* use the tail */
1813
+ // dictionary = dictionary.slice(dictLength - s.w_size);
1814
+ tmpDict = new utils.Buf8(s.w_size);
1815
+ utils.arraySet(tmpDict, dictionary, dictLength - s.w_size, s.w_size, 0);
1816
+ dictionary = tmpDict;
1817
+ dictLength = s.w_size;
1818
+ }
1819
+ /* insert dictionary into window and hash */
1820
+ avail = strm.avail_in;
1821
+ next = strm.next_in;
1822
+ input = strm.input;
1823
+ strm.avail_in = dictLength;
1824
+ strm.next_in = 0;
1825
+ strm.input = dictionary;
1826
+ fill_window(s);
1827
+ while (s.lookahead >= MIN_MATCH) {
1828
+ str = s.strstart;
1829
+ n = s.lookahead - (MIN_MATCH - 1);
1830
+ do {
1831
+ /* UPDATE_HASH(s, s->ins_h, s->window[str + MIN_MATCH-1]); */
1832
+ s.ins_h = ((s.ins_h << s.hash_shift) ^ s.window[str + MIN_MATCH - 1]) & s.hash_mask;
1833
+
1834
+ s.prev[str & s.w_mask] = s.head[s.ins_h];
1835
+
1836
+ s.head[s.ins_h] = str;
1837
+ str++;
1838
+ } while (--n);
1839
+ s.strstart = str;
1840
+ s.lookahead = MIN_MATCH - 1;
1841
+ fill_window(s);
1842
+ }
1843
+ s.strstart += s.lookahead;
1844
+ s.block_start = s.strstart;
1845
+ s.insert = s.lookahead;
1846
+ s.lookahead = 0;
1847
+ s.match_length = s.prev_length = MIN_MATCH - 1;
1848
+ s.match_available = 0;
1849
+ strm.next_in = next;
1850
+ strm.input = input;
1851
+ strm.avail_in = avail;
1852
+ s.wrap = wrap;
1853
+ return Z_OK;
1854
+ }
1855
+
1856
+
1857
+ exports.deflateInit = deflateInit;
1858
+ exports.deflateInit2 = deflateInit2;
1859
+ exports.deflateReset = deflateReset;
1860
+ exports.deflateResetKeep = deflateResetKeep;
1861
+ exports.deflateSetHeader = deflateSetHeader;
1862
+ exports.deflate = deflate;
1863
+ exports.deflateEnd = deflateEnd;
1864
+ exports.deflateSetDictionary = deflateSetDictionary;
1865
+ exports.deflateInfo = 'pako deflate (from Nodeca project)';
1866
+
1867
+ /* Not implemented
1868
+ exports.deflateBound = deflateBound;
1869
+ exports.deflateCopy = deflateCopy;
1870
+ exports.deflateParams = deflateParams;
1871
+ exports.deflatePending = deflatePending;
1872
+ exports.deflatePrime = deflatePrime;
1873
+ exports.deflateTune = deflateTune;
1874
+ */