decodeGoogleEarthEnterprisePacket.js 147 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621
  1. /**
  2. * Cesium - https://github.com/CesiumGS/cesium
  3. *
  4. * Copyright 2011-2020 Cesium Contributors
  5. *
  6. * Licensed under the Apache License, Version 2.0 (the "License");
  7. * you may not use this file except in compliance with the License.
  8. * You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing, software
  13. * distributed under the License is distributed on an "AS IS" BASIS,
  14. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. * See the License for the specific language governing permissions and
  16. * limitations under the License.
  17. *
  18. * Columbus View (Pat. Pend.)
  19. *
  20. * Portions licensed separately.
  21. * See https://github.com/CesiumGS/cesium/blob/master/LICENSE.md for full licensing details.
  22. */
  23. define(['./when-54c2dc71', './Check-6c0211bc', './RuntimeError-2109023a', './createTaskProcessorWorker'], function (when, Check, RuntimeError, createTaskProcessorWorker) { 'use strict';
  24. var compressedMagic = 0x7468dead;
  25. var compressedMagicSwap = 0xadde6874;
  26. /**
  27. * Decodes data that is received from the Google Earth Enterprise server.
  28. *
  29. * @param {ArrayBuffer} key The key used during decoding.
  30. * @param {ArrayBuffer} data The data to be decoded.
  31. *
  32. * @private
  33. */
  34. function decodeGoogleEarthEnterpriseData(key, data) {
  35. if (decodeGoogleEarthEnterpriseData.passThroughDataForTesting) {
  36. return data;
  37. }
  38. //>>includeStart('debug', pragmas.debug);
  39. Check.Check.typeOf.object("key", key);
  40. Check.Check.typeOf.object("data", data);
  41. //>>includeEnd('debug');
  42. var keyLength = key.byteLength;
  43. if (keyLength === 0 || keyLength % 4 !== 0) {
  44. throw new RuntimeError.RuntimeError(
  45. "The length of key must be greater than 0 and a multiple of 4."
  46. );
  47. }
  48. var dataView = new DataView(data);
  49. var magic = dataView.getUint32(0, true);
  50. if (magic === compressedMagic || magic === compressedMagicSwap) {
  51. // Occasionally packets don't come back encoded, so just return
  52. return data;
  53. }
  54. var keyView = new DataView(key);
  55. var dp = 0;
  56. var dpend = data.byteLength;
  57. var dpend64 = dpend - (dpend % 8);
  58. var kpend = keyLength;
  59. var kp;
  60. var off = 8;
  61. // This algorithm is intentionally asymmetric to make it more difficult to
  62. // guess. Security through obscurity. :-(
  63. // while we have a full uint64 (8 bytes) left to do
  64. // assumes buffer is 64bit aligned (or processor doesn't care)
  65. while (dp < dpend64) {
  66. // rotate the key each time through by using the offets 16,0,8,16,0,8,...
  67. off = (off + 8) % 24;
  68. kp = off;
  69. // run through one key length xor'ing one uint64 at a time
  70. // then drop out to rotate the key for the next bit
  71. while (dp < dpend64 && kp < kpend) {
  72. dataView.setUint32(
  73. dp,
  74. dataView.getUint32(dp, true) ^ keyView.getUint32(kp, true),
  75. true
  76. );
  77. dataView.setUint32(
  78. dp + 4,
  79. dataView.getUint32(dp + 4, true) ^ keyView.getUint32(kp + 4, true),
  80. true
  81. );
  82. dp += 8;
  83. kp += 24;
  84. }
  85. }
  86. // now the remaining 1 to 7 bytes
  87. if (dp < dpend) {
  88. if (kp >= kpend) {
  89. // rotate the key one last time (if necessary)
  90. off = (off + 8) % 24;
  91. kp = off;
  92. }
  93. while (dp < dpend) {
  94. dataView.setUint8(dp, dataView.getUint8(dp) ^ keyView.getUint8(kp));
  95. dp++;
  96. kp++;
  97. }
  98. }
  99. }
  100. decodeGoogleEarthEnterpriseData.passThroughDataForTesting = false;
  101. /**
  102. * @private
  103. */
  104. function isBitSet(bits, mask) {
  105. return (bits & mask) !== 0;
  106. }
  107. // Bitmask for checking tile properties
  108. var childrenBitmasks = [0x01, 0x02, 0x04, 0x08];
  109. var anyChildBitmask = 0x0f;
  110. var cacheFlagBitmask = 0x10; // True if there is a child subtree
  111. var imageBitmask = 0x40;
  112. var terrainBitmask = 0x80;
  113. /**
  114. * Contains information about each tile from a Google Earth Enterprise server
  115. *
  116. * @param {Number} bits Bitmask that contains the type of data and available children for each tile.
  117. * @param {Number} cnodeVersion Version of the request for subtree metadata.
  118. * @param {Number} imageryVersion Version of the request for imagery tile.
  119. * @param {Number} terrainVersion Version of the request for terrain tile.
  120. * @param {Number} imageryProvider Id of imagery provider.
  121. * @param {Number} terrainProvider Id of terrain provider.
  122. *
  123. * @private
  124. */
  125. function GoogleEarthEnterpriseTileInformation(
  126. bits,
  127. cnodeVersion,
  128. imageryVersion,
  129. terrainVersion,
  130. imageryProvider,
  131. terrainProvider
  132. ) {
  133. this._bits = bits;
  134. this.cnodeVersion = cnodeVersion;
  135. this.imageryVersion = imageryVersion;
  136. this.terrainVersion = terrainVersion;
  137. this.imageryProvider = imageryProvider;
  138. this.terrainProvider = terrainProvider;
  139. this.ancestorHasTerrain = false; // Set it later once we find its parent
  140. this.terrainState = undefined;
  141. }
  142. /**
  143. * Creates GoogleEarthEnterpriseTileInformation from an object
  144. *
  145. * @param {Object} info Object to be cloned
  146. * @param {GoogleEarthEnterpriseTileInformation} [result] The object onto which to store the result.
  147. * @returns {GoogleEarthEnterpriseTileInformation} The modified result parameter or a new GoogleEarthEnterpriseTileInformation instance if none was provided.
  148. */
  149. GoogleEarthEnterpriseTileInformation.clone = function (info, result) {
  150. if (!when.defined(result)) {
  151. result = new GoogleEarthEnterpriseTileInformation(
  152. info._bits,
  153. info.cnodeVersion,
  154. info.imageryVersion,
  155. info.terrainVersion,
  156. info.imageryProvider,
  157. info.terrainProvider
  158. );
  159. } else {
  160. result._bits = info._bits;
  161. result.cnodeVersion = info.cnodeVersion;
  162. result.imageryVersion = info.imageryVersion;
  163. result.terrainVersion = info.terrainVersion;
  164. result.imageryProvider = info.imageryProvider;
  165. result.terrainProvider = info.terrainProvider;
  166. }
  167. result.ancestorHasTerrain = info.ancestorHasTerrain;
  168. result.terrainState = info.terrainState;
  169. return result;
  170. };
  171. /**
  172. * Sets the parent for the tile
  173. *
  174. * @param {GoogleEarthEnterpriseTileInformation} parent Parent tile
  175. */
  176. GoogleEarthEnterpriseTileInformation.prototype.setParent = function (parent) {
  177. this.ancestorHasTerrain = parent.ancestorHasTerrain || this.hasTerrain();
  178. };
  179. /**
  180. * Gets whether a subtree is available
  181. *
  182. * @returns {Boolean} true if subtree is available, false otherwise.
  183. */
  184. GoogleEarthEnterpriseTileInformation.prototype.hasSubtree = function () {
  185. return isBitSet(this._bits, cacheFlagBitmask);
  186. };
  187. /**
  188. * Gets whether imagery is available
  189. *
  190. * @returns {Boolean} true if imagery is available, false otherwise.
  191. */
  192. GoogleEarthEnterpriseTileInformation.prototype.hasImagery = function () {
  193. return isBitSet(this._bits, imageBitmask);
  194. };
  195. /**
  196. * Gets whether terrain is available
  197. *
  198. * @returns {Boolean} true if terrain is available, false otherwise.
  199. */
  200. GoogleEarthEnterpriseTileInformation.prototype.hasTerrain = function () {
  201. return isBitSet(this._bits, terrainBitmask);
  202. };
  203. /**
  204. * Gets whether any children are present
  205. *
  206. * @returns {Boolean} true if any children are available, false otherwise.
  207. */
  208. GoogleEarthEnterpriseTileInformation.prototype.hasChildren = function () {
  209. return isBitSet(this._bits, anyChildBitmask);
  210. };
  211. /**
  212. * Gets whether a specified child is available
  213. *
  214. * @param {Number} index Index of child tile
  215. *
  216. * @returns {Boolean} true if child is available, false otherwise
  217. */
  218. GoogleEarthEnterpriseTileInformation.prototype.hasChild = function (index) {
  219. return isBitSet(this._bits, childrenBitmasks[index]);
  220. };
  221. /**
  222. * Gets bitmask containing children
  223. *
  224. * @returns {Number} Children bitmask
  225. */
  226. GoogleEarthEnterpriseTileInformation.prototype.getChildBitmask = function () {
  227. return this._bits & anyChildBitmask;
  228. };
  229. var tmp = {};
  230. /* pako 1.0.4 nodeca/pako */(function(f){tmp = f();})(function(){return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r);}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
  231. var TYPED_OK = (typeof Uint8Array !== 'undefined') &&
  232. (typeof Uint16Array !== 'undefined') &&
  233. (typeof Int32Array !== 'undefined');
  234. exports.assign = function (obj /*from1, from2, from3, ...*/) {
  235. var sources = Array.prototype.slice.call(arguments, 1);
  236. while (sources.length) {
  237. var source = sources.shift();
  238. if (!source) { continue; }
  239. if (typeof source !== 'object') {
  240. throw new TypeError(source + 'must be non-object');
  241. }
  242. for (var p in source) {
  243. if (source.hasOwnProperty(p)) {
  244. obj[p] = source[p];
  245. }
  246. }
  247. }
  248. return obj;
  249. };
  250. // reduce buffer size, avoiding mem copy
  251. exports.shrinkBuf = function (buf, size) {
  252. if (buf.length === size) { return buf; }
  253. if (buf.subarray) { return buf.subarray(0, size); }
  254. buf.length = size;
  255. return buf;
  256. };
  257. var fnTyped = {
  258. arraySet: function (dest, src, src_offs, len, dest_offs) {
  259. if (src.subarray && dest.subarray) {
  260. dest.set(src.subarray(src_offs, src_offs + len), dest_offs);
  261. return;
  262. }
  263. // Fallback to ordinary array
  264. for (var i = 0; i < len; i++) {
  265. dest[dest_offs + i] = src[src_offs + i];
  266. }
  267. },
  268. // Join array of chunks to single array.
  269. flattenChunks: function (chunks) {
  270. var i, l, len, pos, chunk, result;
  271. // calculate data length
  272. len = 0;
  273. for (i = 0, l = chunks.length; i < l; i++) {
  274. len += chunks[i].length;
  275. }
  276. // join chunks
  277. result = new Uint8Array(len);
  278. pos = 0;
  279. for (i = 0, l = chunks.length; i < l; i++) {
  280. chunk = chunks[i];
  281. result.set(chunk, pos);
  282. pos += chunk.length;
  283. }
  284. return result;
  285. }
  286. };
  287. var fnUntyped = {
  288. arraySet: function (dest, src, src_offs, len, dest_offs) {
  289. for (var i = 0; i < len; i++) {
  290. dest[dest_offs + i] = src[src_offs + i];
  291. }
  292. },
  293. // Join array of chunks to single array.
  294. flattenChunks: function (chunks) {
  295. return [].concat.apply([], chunks);
  296. }
  297. };
  298. // Enable/Disable typed arrays use, for testing
  299. //
  300. exports.setTyped = function (on) {
  301. if (on) {
  302. exports.Buf8 = Uint8Array;
  303. exports.Buf16 = Uint16Array;
  304. exports.Buf32 = Int32Array;
  305. exports.assign(exports, fnTyped);
  306. } else {
  307. exports.Buf8 = Array;
  308. exports.Buf16 = Array;
  309. exports.Buf32 = Array;
  310. exports.assign(exports, fnUntyped);
  311. }
  312. };
  313. exports.setTyped(TYPED_OK);
  314. },{}],2:[function(require,module,exports){
  315. var utils = require('./common');
  316. // Quick check if we can use fast array to bin string conversion
  317. //
  318. // - apply(Array) can fail on Android 2.2
  319. // - apply(Uint8Array) can fail on iOS 5.1 Safary
  320. //
  321. var STR_APPLY_OK = true;
  322. var STR_APPLY_UIA_OK = true;
  323. try { String.fromCharCode.apply(null, [ 0 ]); } catch (__) { STR_APPLY_OK = false; }
  324. try { String.fromCharCode.apply(null, new Uint8Array(1)); } catch (__) { STR_APPLY_UIA_OK = false; }
  325. // Table with utf8 lengths (calculated by first byte of sequence)
  326. // Note, that 5 & 6-byte values and some 4-byte values can not be represented in JS,
  327. // because max possible codepoint is 0x10ffff
  328. var _utf8len = new utils.Buf8(256);
  329. for (var q = 0; q < 256; q++) {
  330. _utf8len[q] = (q >= 252 ? 6 : q >= 248 ? 5 : q >= 240 ? 4 : q >= 224 ? 3 : q >= 192 ? 2 : 1);
  331. }
  332. _utf8len[254] = _utf8len[254] = 1; // Invalid sequence start
  333. // convert string to array (typed, when possible)
  334. exports.string2buf = function (str) {
  335. var buf, c, c2, m_pos, i, str_len = str.length, buf_len = 0;
  336. // count binary size
  337. for (m_pos = 0; m_pos < str_len; m_pos++) {
  338. c = str.charCodeAt(m_pos);
  339. if ((c & 0xfc00) === 0xd800 && (m_pos + 1 < str_len)) {
  340. c2 = str.charCodeAt(m_pos + 1);
  341. if ((c2 & 0xfc00) === 0xdc00) {
  342. c = 0x10000 + ((c - 0xd800) << 10) + (c2 - 0xdc00);
  343. m_pos++;
  344. }
  345. }
  346. buf_len += c < 0x80 ? 1 : c < 0x800 ? 2 : c < 0x10000 ? 3 : 4;
  347. }
  348. // allocate buffer
  349. buf = new utils.Buf8(buf_len);
  350. // convert
  351. for (i = 0, m_pos = 0; i < buf_len; m_pos++) {
  352. c = str.charCodeAt(m_pos);
  353. if ((c & 0xfc00) === 0xd800 && (m_pos + 1 < str_len)) {
  354. c2 = str.charCodeAt(m_pos + 1);
  355. if ((c2 & 0xfc00) === 0xdc00) {
  356. c = 0x10000 + ((c - 0xd800) << 10) + (c2 - 0xdc00);
  357. m_pos++;
  358. }
  359. }
  360. if (c < 0x80) {
  361. /* one byte */
  362. buf[i++] = c;
  363. } else if (c < 0x800) {
  364. /* two bytes */
  365. buf[i++] = 0xC0 | (c >>> 6);
  366. buf[i++] = 0x80 | (c & 0x3f);
  367. } else if (c < 0x10000) {
  368. /* three bytes */
  369. buf[i++] = 0xE0 | (c >>> 12);
  370. buf[i++] = 0x80 | (c >>> 6 & 0x3f);
  371. buf[i++] = 0x80 | (c & 0x3f);
  372. } else {
  373. /* four bytes */
  374. buf[i++] = 0xf0 | (c >>> 18);
  375. buf[i++] = 0x80 | (c >>> 12 & 0x3f);
  376. buf[i++] = 0x80 | (c >>> 6 & 0x3f);
  377. buf[i++] = 0x80 | (c & 0x3f);
  378. }
  379. }
  380. return buf;
  381. };
  382. // Helper (used in 2 places)
  383. function buf2binstring(buf, len) {
  384. // use fallback for big arrays to avoid stack overflow
  385. if (len < 65537) {
  386. if ((buf.subarray && STR_APPLY_UIA_OK) || (!buf.subarray && STR_APPLY_OK)) {
  387. return String.fromCharCode.apply(null, utils.shrinkBuf(buf, len));
  388. }
  389. }
  390. var result = '';
  391. for (var i = 0; i < len; i++) {
  392. result += String.fromCharCode(buf[i]);
  393. }
  394. return result;
  395. }
  396. // Convert byte array to binary string
  397. exports.buf2binstring = function (buf) {
  398. return buf2binstring(buf, buf.length);
  399. };
  400. // Convert binary string (typed, when possible)
  401. exports.binstring2buf = function (str) {
  402. var buf = new utils.Buf8(str.length);
  403. for (var i = 0, len = buf.length; i < len; i++) {
  404. buf[i] = str.charCodeAt(i);
  405. }
  406. return buf;
  407. };
  408. // convert array to string
  409. exports.buf2string = function (buf, max) {
  410. var i, out, c, c_len;
  411. var len = max || buf.length;
  412. // Reserve max possible length (2 words per char)
  413. // NB: by unknown reasons, Array is significantly faster for
  414. // String.fromCharCode.apply than Uint16Array.
  415. var utf16buf = new Array(len * 2);
  416. for (out = 0, i = 0; i < len;) {
  417. c = buf[i++];
  418. // quick process ascii
  419. if (c < 0x80) { utf16buf[out++] = c; continue; }
  420. c_len = _utf8len[c];
  421. // skip 5 & 6 byte codes
  422. if (c_len > 4) { utf16buf[out++] = 0xfffd; i += c_len - 1; continue; }
  423. // apply mask on first byte
  424. c &= c_len === 2 ? 0x1f : c_len === 3 ? 0x0f : 0x07;
  425. // join the rest
  426. while (c_len > 1 && i < len) {
  427. c = (c << 6) | (buf[i++] & 0x3f);
  428. c_len--;
  429. }
  430. // terminated by end of string?
  431. if (c_len > 1) { utf16buf[out++] = 0xfffd; continue; }
  432. if (c < 0x10000) {
  433. utf16buf[out++] = c;
  434. } else {
  435. c -= 0x10000;
  436. utf16buf[out++] = 0xd800 | ((c >> 10) & 0x3ff);
  437. utf16buf[out++] = 0xdc00 | (c & 0x3ff);
  438. }
  439. }
  440. return buf2binstring(utf16buf, out);
  441. };
  442. // Calculate max possible position in utf8 buffer,
  443. // that will not break sequence. If that's not possible
  444. // - (very small limits) return max size as is.
  445. //
  446. // buf[] - utf8 bytes array
  447. // max - length limit (mandatory);
  448. exports.utf8border = function (buf, max) {
  449. var pos;
  450. max = max || buf.length;
  451. if (max > buf.length) { max = buf.length; }
  452. // go back from last position, until start of sequence found
  453. pos = max - 1;
  454. while (pos >= 0 && (buf[pos] & 0xC0) === 0x80) { pos--; }
  455. // Fuckup - very small and broken sequence,
  456. // return max, because we should return something anyway.
  457. if (pos < 0) { return max; }
  458. // If we came to start of buffer - that means vuffer is too small,
  459. // return max too.
  460. if (pos === 0) { return max; }
  461. return (pos + _utf8len[buf[pos]] > max) ? pos : max;
  462. };
  463. },{"./common":1}],3:[function(require,module,exports){
  464. // Note: adler32 takes 12% for level 0 and 2% for level 6.
  465. // It doesn't worth to make additional optimizationa as in original.
  466. // Small size is preferable.
  467. function adler32(adler, buf, len, pos) {
  468. var s1 = (adler & 0xffff) |0,
  469. s2 = ((adler >>> 16) & 0xffff) |0,
  470. n = 0;
  471. while (len !== 0) {
  472. // Set limit ~ twice less than 5552, to keep
  473. // s2 in 31-bits, because we force signed ints.
  474. // in other case %= will fail.
  475. n = len > 2000 ? 2000 : len;
  476. len -= n;
  477. do {
  478. s1 = (s1 + buf[pos++]) |0;
  479. s2 = (s2 + s1) |0;
  480. } while (--n);
  481. s1 %= 65521;
  482. s2 %= 65521;
  483. }
  484. return (s1 | (s2 << 16)) |0;
  485. }
  486. module.exports = adler32;
  487. },{}],4:[function(require,module,exports){
  488. module.exports = {
  489. /* Allowed flush values; see deflate() and inflate() below for details */
  490. Z_NO_FLUSH: 0,
  491. Z_PARTIAL_FLUSH: 1,
  492. Z_SYNC_FLUSH: 2,
  493. Z_FULL_FLUSH: 3,
  494. Z_FINISH: 4,
  495. Z_BLOCK: 5,
  496. Z_TREES: 6,
  497. /* Return codes for the compression/decompression functions. Negative values
  498. * are errors, positive values are used for special but normal events.
  499. */
  500. Z_OK: 0,
  501. Z_STREAM_END: 1,
  502. Z_NEED_DICT: 2,
  503. Z_ERRNO: -1,
  504. Z_STREAM_ERROR: -2,
  505. Z_DATA_ERROR: -3,
  506. //Z_MEM_ERROR: -4,
  507. Z_BUF_ERROR: -5,
  508. //Z_VERSION_ERROR: -6,
  509. /* compression levels */
  510. Z_NO_COMPRESSION: 0,
  511. Z_BEST_SPEED: 1,
  512. Z_BEST_COMPRESSION: 9,
  513. Z_DEFAULT_COMPRESSION: -1,
  514. Z_FILTERED: 1,
  515. Z_HUFFMAN_ONLY: 2,
  516. Z_RLE: 3,
  517. Z_FIXED: 4,
  518. Z_DEFAULT_STRATEGY: 0,
  519. /* Possible values of the data_type field (though see inflate()) */
  520. Z_BINARY: 0,
  521. Z_TEXT: 1,
  522. //Z_ASCII: 1, // = Z_TEXT (deprecated)
  523. Z_UNKNOWN: 2,
  524. /* The deflate compression method */
  525. Z_DEFLATED: 8
  526. //Z_NULL: null // Use -1 or null inline, depending on var type
  527. };
  528. },{}],5:[function(require,module,exports){
  529. // Note: we can't get significant speed boost here.
  530. // So write code to minimize size - no pregenerated tables
  531. // and array tools dependencies.
  532. // Use ordinary array, since untyped makes no boost here
  533. function makeTable() {
  534. var c, table = [];
  535. for (var n = 0; n < 256; n++) {
  536. c = n;
  537. for (var k = 0; k < 8; k++) {
  538. c = ((c & 1) ? (0xEDB88320 ^ (c >>> 1)) : (c >>> 1));
  539. }
  540. table[n] = c;
  541. }
  542. return table;
  543. }
  544. // Create table on load. Just 255 signed longs. Not a problem.
  545. var crcTable = makeTable();
  546. function crc32(crc, buf, len, pos) {
  547. var t = crcTable,
  548. end = pos + len;
  549. crc ^= -1;
  550. for (var i = pos; i < end; i++) {
  551. crc = (crc >>> 8) ^ t[(crc ^ buf[i]) & 0xFF];
  552. }
  553. return (crc ^ (-1)); // >>> 0;
  554. }
  555. module.exports = crc32;
  556. },{}],6:[function(require,module,exports){
  557. function GZheader() {
  558. /* true if compressed data believed to be text */
  559. this.text = 0;
  560. /* modification time */
  561. this.time = 0;
  562. /* extra flags (not used when writing a gzip file) */
  563. this.xflags = 0;
  564. /* operating system */
  565. this.os = 0;
  566. /* pointer to extra field or Z_NULL if none */
  567. this.extra = null;
  568. /* extra field length (valid if extra != Z_NULL) */
  569. this.extra_len = 0; // Actually, we don't need it in JS,
  570. // but leave for few code modifications
  571. //
  572. // Setup limits is not necessary because in js we should not preallocate memory
  573. // for inflate use constant limit in 65536 bytes
  574. //
  575. /* space at extra (only when reading header) */
  576. // this.extra_max = 0;
  577. /* pointer to zero-terminated file name or Z_NULL */
  578. this.name = '';
  579. /* space at name (only when reading header) */
  580. // this.name_max = 0;
  581. /* pointer to zero-terminated comment or Z_NULL */
  582. this.comment = '';
  583. /* space at comment (only when reading header) */
  584. // this.comm_max = 0;
  585. /* true if there was or will be a header crc */
  586. this.hcrc = 0;
  587. /* true when done reading gzip header (not used when writing a gzip file) */
  588. this.done = false;
  589. }
  590. module.exports = GZheader;
  591. },{}],7:[function(require,module,exports){
  592. // See state defs from inflate.js
  593. var BAD = 30; /* got a data error -- remain here until reset */
  594. var TYPE = 12; /* i: waiting for type bits, including last-flag bit */
  595. /*
  596. Decode literal, length, and distance codes and write out the resulting
  597. literal and match bytes until either not enough input or output is
  598. available, an end-of-block is encountered, or a data error is encountered.
  599. When large enough input and output buffers are supplied to inflate(), for
  600. example, a 16K input buffer and a 64K output buffer, more than 95% of the
  601. inflate execution time is spent in this routine.
  602. Entry assumptions:
  603. state.mode === LEN
  604. strm.avail_in >= 6
  605. strm.avail_out >= 258
  606. start >= strm.avail_out
  607. state.bits < 8
  608. On return, state.mode is one of:
  609. LEN -- ran out of enough output space or enough available input
  610. TYPE -- reached end of block code, inflate() to interpret next block
  611. BAD -- error in block data
  612. Notes:
  613. - The maximum input bits used by a length/distance pair is 15 bits for the
  614. length code, 5 bits for the length extra, 15 bits for the distance code,
  615. and 13 bits for the distance extra. This totals 48 bits, or six bytes.
  616. Therefore if strm.avail_in >= 6, then there is enough input to avoid
  617. checking for available input while decoding.
  618. - The maximum bytes that a single length/distance pair can output is 258
  619. bytes, which is the maximum length that can be coded. inflate_fast()
  620. requires strm.avail_out >= 258 for each loop to avoid checking for
  621. output space.
  622. */
  623. module.exports = function inflate_fast(strm, start) {
  624. var state;
  625. var _in; /* local strm.input */
  626. var last; /* have enough input while in < last */
  627. var _out; /* local strm.output */
  628. var beg; /* inflate()'s initial strm.output */
  629. var end; /* while out < end, enough space available */
  630. //#ifdef INFLATE_STRICT
  631. var dmax; /* maximum distance from zlib header */
  632. //#endif
  633. var wsize; /* window size or zero if not using window */
  634. var whave; /* valid bytes in the window */
  635. var wnext; /* window write index */
  636. // Use `s_window` instead `window`, avoid conflict with instrumentation tools
  637. var s_window; /* allocated sliding window, if wsize != 0 */
  638. var hold; /* local strm.hold */
  639. var bits; /* local strm.bits */
  640. var lcode; /* local strm.lencode */
  641. var dcode; /* local strm.distcode */
  642. var lmask; /* mask for first level of length codes */
  643. var dmask; /* mask for first level of distance codes */
  644. var here; /* retrieved table entry */
  645. var op; /* code bits, operation, extra bits, or */
  646. /* window position, window bytes to copy */
  647. var len; /* match length, unused bytes */
  648. var dist; /* match distance */
  649. var from; /* where to copy match from */
  650. var from_source;
  651. var input, output; // JS specific, because we have no pointers
  652. /* copy state to local variables */
  653. state = strm.state;
  654. //here = state.here;
  655. _in = strm.next_in;
  656. input = strm.input;
  657. last = _in + (strm.avail_in - 5);
  658. _out = strm.next_out;
  659. output = strm.output;
  660. beg = _out - (start - strm.avail_out);
  661. end = _out + (strm.avail_out - 257);
  662. //#ifdef INFLATE_STRICT
  663. dmax = state.dmax;
  664. //#endif
  665. wsize = state.wsize;
  666. whave = state.whave;
  667. wnext = state.wnext;
  668. s_window = state.window;
  669. hold = state.hold;
  670. bits = state.bits;
  671. lcode = state.lencode;
  672. dcode = state.distcode;
  673. lmask = (1 << state.lenbits) - 1;
  674. dmask = (1 << state.distbits) - 1;
  675. /* decode literals and length/distances until end-of-block or not enough
  676. input data or output space */
  677. top:
  678. do {
  679. if (bits < 15) {
  680. hold += input[_in++] << bits;
  681. bits += 8;
  682. hold += input[_in++] << bits;
  683. bits += 8;
  684. }
  685. here = lcode[hold & lmask];
  686. dolen:
  687. for (;;) { // Goto emulation
  688. op = here >>> 24/*here.bits*/;
  689. hold >>>= op;
  690. bits -= op;
  691. op = (here >>> 16) & 0xff/*here.op*/;
  692. if (op === 0) { /* literal */
  693. //Tracevv((stderr, here.val >= 0x20 && here.val < 0x7f ?
  694. // "inflate: literal '%c'\n" :
  695. // "inflate: literal 0x%02x\n", here.val));
  696. output[_out++] = here & 0xffff/*here.val*/;
  697. }
  698. else if (op & 16) { /* length base */
  699. len = here & 0xffff/*here.val*/;
  700. op &= 15; /* number of extra bits */
  701. if (op) {
  702. if (bits < op) {
  703. hold += input[_in++] << bits;
  704. bits += 8;
  705. }
  706. len += hold & ((1 << op) - 1);
  707. hold >>>= op;
  708. bits -= op;
  709. }
  710. //Tracevv((stderr, "inflate: length %u\n", len));
  711. if (bits < 15) {
  712. hold += input[_in++] << bits;
  713. bits += 8;
  714. hold += input[_in++] << bits;
  715. bits += 8;
  716. }
  717. here = dcode[hold & dmask];
  718. dodist:
  719. for (;;) { // goto emulation
  720. op = here >>> 24/*here.bits*/;
  721. hold >>>= op;
  722. bits -= op;
  723. op = (here >>> 16) & 0xff/*here.op*/;
  724. if (op & 16) { /* distance base */
  725. dist = here & 0xffff/*here.val*/;
  726. op &= 15; /* number of extra bits */
  727. if (bits < op) {
  728. hold += input[_in++] << bits;
  729. bits += 8;
  730. if (bits < op) {
  731. hold += input[_in++] << bits;
  732. bits += 8;
  733. }
  734. }
  735. dist += hold & ((1 << op) - 1);
  736. //#ifdef INFLATE_STRICT
  737. if (dist > dmax) {
  738. strm.msg = 'invalid distance too far back';
  739. state.mode = BAD;
  740. break top;
  741. }
  742. //#endif
  743. hold >>>= op;
  744. bits -= op;
  745. //Tracevv((stderr, "inflate: distance %u\n", dist));
  746. op = _out - beg; /* max distance in output */
  747. if (dist > op) { /* see if copy from window */
  748. op = dist - op; /* distance back in window */
  749. if (op > whave) {
  750. if (state.sane) {
  751. strm.msg = 'invalid distance too far back';
  752. state.mode = BAD;
  753. break top;
  754. }
  755. // (!) This block is disabled in zlib defailts,
  756. // don't enable it for binary compatibility
  757. //#ifdef INFLATE_ALLOW_INVALID_DISTANCE_TOOFAR_ARRR
  758. // if (len <= op - whave) {
  759. // do {
  760. // output[_out++] = 0;
  761. // } while (--len);
  762. // continue top;
  763. // }
  764. // len -= op - whave;
  765. // do {
  766. // output[_out++] = 0;
  767. // } while (--op > whave);
  768. // if (op === 0) {
  769. // from = _out - dist;
  770. // do {
  771. // output[_out++] = output[from++];
  772. // } while (--len);
  773. // continue top;
  774. // }
  775. //#endif
  776. }
  777. from = 0; // window index
  778. from_source = s_window;
  779. if (wnext === 0) { /* very common case */
  780. from += wsize - op;
  781. if (op < len) { /* some from window */
  782. len -= op;
  783. do {
  784. output[_out++] = s_window[from++];
  785. } while (--op);
  786. from = _out - dist; /* rest from output */
  787. from_source = output;
  788. }
  789. }
  790. else if (wnext < op) { /* wrap around window */
  791. from += wsize + wnext - op;
  792. op -= wnext;
  793. if (op < len) { /* some from end of window */
  794. len -= op;
  795. do {
  796. output[_out++] = s_window[from++];
  797. } while (--op);
  798. from = 0;
  799. if (wnext < len) { /* some from start of window */
  800. op = wnext;
  801. len -= op;
  802. do {
  803. output[_out++] = s_window[from++];
  804. } while (--op);
  805. from = _out - dist; /* rest from output */
  806. from_source = output;
  807. }
  808. }
  809. }
  810. else { /* contiguous in window */
  811. from += wnext - op;
  812. if (op < len) { /* some from window */
  813. len -= op;
  814. do {
  815. output[_out++] = s_window[from++];
  816. } while (--op);
  817. from = _out - dist; /* rest from output */
  818. from_source = output;
  819. }
  820. }
  821. while (len > 2) {
  822. output[_out++] = from_source[from++];
  823. output[_out++] = from_source[from++];
  824. output[_out++] = from_source[from++];
  825. len -= 3;
  826. }
  827. if (len) {
  828. output[_out++] = from_source[from++];
  829. if (len > 1) {
  830. output[_out++] = from_source[from++];
  831. }
  832. }
  833. }
  834. else {
  835. from = _out - dist; /* copy direct from output */
  836. do { /* minimum length is three */
  837. output[_out++] = output[from++];
  838. output[_out++] = output[from++];
  839. output[_out++] = output[from++];
  840. len -= 3;
  841. } while (len > 2);
  842. if (len) {
  843. output[_out++] = output[from++];
  844. if (len > 1) {
  845. output[_out++] = output[from++];
  846. }
  847. }
  848. }
  849. }
  850. else if ((op & 64) === 0) { /* 2nd level distance code */
  851. here = dcode[(here & 0xffff)/*here.val*/ + (hold & ((1 << op) - 1))];
  852. continue dodist;
  853. }
  854. else {
  855. strm.msg = 'invalid distance code';
  856. state.mode = BAD;
  857. break top;
  858. }
  859. break; // need to emulate goto via "continue"
  860. }
  861. }
  862. else if ((op & 64) === 0) { /* 2nd level length code */
  863. here = lcode[(here & 0xffff)/*here.val*/ + (hold & ((1 << op) - 1))];
  864. continue dolen;
  865. }
  866. else if (op & 32) { /* end-of-block */
  867. //Tracevv((stderr, "inflate: end of block\n"));
  868. state.mode = TYPE;
  869. break top;
  870. }
  871. else {
  872. strm.msg = 'invalid literal/length code';
  873. state.mode = BAD;
  874. break top;
  875. }
  876. break; // need to emulate goto via "continue"
  877. }
  878. } while (_in < last && _out < end);
  879. /* return unused bytes (on entry, bits < 8, so in won't go too far back) */
  880. len = bits >> 3;
  881. _in -= len;
  882. bits -= len << 3;
  883. hold &= (1 << bits) - 1;
  884. /* update state and return */
  885. strm.next_in = _in;
  886. strm.next_out = _out;
  887. strm.avail_in = (_in < last ? 5 + (last - _in) : 5 - (_in - last));
  888. strm.avail_out = (_out < end ? 257 + (end - _out) : 257 - (_out - end));
  889. state.hold = hold;
  890. state.bits = bits;
  891. return;
  892. };
  893. },{}],8:[function(require,module,exports){
  894. var utils = require('../utils/common');
  895. var adler32 = require('./adler32');
  896. var crc32 = require('./crc32');
  897. var inflate_fast = require('./inffast');
  898. var inflate_table = require('./inftrees');
  899. var CODES = 0;
  900. var LENS = 1;
  901. var DISTS = 2;
  902. /* Public constants ==========================================================*/
  903. /* ===========================================================================*/
  904. /* Allowed flush values; see deflate() and inflate() below for details */
  905. //var Z_NO_FLUSH = 0;
  906. //var Z_PARTIAL_FLUSH = 1;
  907. //var Z_SYNC_FLUSH = 2;
  908. //var Z_FULL_FLUSH = 3;
  909. var Z_FINISH = 4;
  910. var Z_BLOCK = 5;
  911. var Z_TREES = 6;
  912. /* Return codes for the compression/decompression functions. Negative values
  913. * are errors, positive values are used for special but normal events.
  914. */
  915. var Z_OK = 0;
  916. var Z_STREAM_END = 1;
  917. var Z_NEED_DICT = 2;
  918. //var Z_ERRNO = -1;
  919. var Z_STREAM_ERROR = -2;
  920. var Z_DATA_ERROR = -3;
  921. var Z_MEM_ERROR = -4;
  922. var Z_BUF_ERROR = -5;
  923. //var Z_VERSION_ERROR = -6;
  924. /* The deflate compression method */
  925. var Z_DEFLATED = 8;
  926. /* STATES ====================================================================*/
  927. /* ===========================================================================*/
  928. var HEAD = 1; /* i: waiting for magic header */
  929. var FLAGS = 2; /* i: waiting for method and flags (gzip) */
  930. var TIME = 3; /* i: waiting for modification time (gzip) */
  931. var OS = 4; /* i: waiting for extra flags and operating system (gzip) */
  932. var EXLEN = 5; /* i: waiting for extra length (gzip) */
  933. var EXTRA = 6; /* i: waiting for extra bytes (gzip) */
  934. var NAME = 7; /* i: waiting for end of file name (gzip) */
  935. var COMMENT = 8; /* i: waiting for end of comment (gzip) */
  936. var HCRC = 9; /* i: waiting for header crc (gzip) */
  937. var DICTID = 10; /* i: waiting for dictionary check value */
  938. var DICT = 11; /* waiting for inflateSetDictionary() call */
  939. var TYPE = 12; /* i: waiting for type bits, including last-flag bit */
  940. var TYPEDO = 13; /* i: same, but skip check to exit inflate on new block */
  941. var STORED = 14; /* i: waiting for stored size (length and complement) */
  942. var COPY_ = 15; /* i/o: same as COPY below, but only first time in */
  943. var COPY = 16; /* i/o: waiting for input or output to copy stored block */
  944. var TABLE = 17; /* i: waiting for dynamic block table lengths */
  945. var LENLENS = 18; /* i: waiting for code length code lengths */
  946. var CODELENS = 19; /* i: waiting for length/lit and distance code lengths */
  947. var LEN_ = 20; /* i: same as LEN below, but only first time in */
  948. var LEN = 21; /* i: waiting for length/lit/eob code */
  949. var LENEXT = 22; /* i: waiting for length extra bits */
  950. var DIST = 23; /* i: waiting for distance code */
  951. var DISTEXT = 24; /* i: waiting for distance extra bits */
  952. var MATCH = 25; /* o: waiting for output space to copy string */
  953. var LIT = 26; /* o: waiting for output space to write literal */
  954. var CHECK = 27; /* i: waiting for 32-bit check value */
  955. var LENGTH = 28; /* i: waiting for 32-bit length (gzip) */
  956. var DONE = 29; /* finished check, done -- remain here until reset */
  957. var BAD = 30; /* got a data error -- remain here until reset */
  958. var MEM = 31; /* got an inflate() memory error -- remain here until reset */
  959. var SYNC = 32; /* looking for synchronization bytes to restart inflate() */
  960. /* ===========================================================================*/
  961. var ENOUGH_LENS = 852;
  962. var ENOUGH_DISTS = 592;
  963. //var ENOUGH = (ENOUGH_LENS+ENOUGH_DISTS);
  964. var MAX_WBITS = 15;
  965. /* 32K LZ77 window */
  966. var DEF_WBITS = MAX_WBITS;
  967. function zswap32(q) {
  968. return (((q >>> 24) & 0xff) +
  969. ((q >>> 8) & 0xff00) +
  970. ((q & 0xff00) << 8) +
  971. ((q & 0xff) << 24));
  972. }
  973. function InflateState() {
  974. this.mode = 0; /* current inflate mode */
  975. this.last = false; /* true if processing last block */
  976. this.wrap = 0; /* bit 0 true for zlib, bit 1 true for gzip */
  977. this.havedict = false; /* true if dictionary provided */
  978. this.flags = 0; /* gzip header method and flags (0 if zlib) */
  979. this.dmax = 0; /* zlib header max distance (INFLATE_STRICT) */
  980. this.check = 0; /* protected copy of check value */
  981. this.total = 0; /* protected copy of output count */
  982. // TODO: may be {}
  983. this.head = null; /* where to save gzip header information */
  984. /* sliding window */
  985. this.wbits = 0; /* log base 2 of requested window size */
  986. this.wsize = 0; /* window size or zero if not using window */
  987. this.whave = 0; /* valid bytes in the window */
  988. this.wnext = 0; /* window write index */
  989. this.window = null; /* allocated sliding window, if needed */
  990. /* bit accumulator */
  991. this.hold = 0; /* input bit accumulator */
  992. this.bits = 0; /* number of bits in "in" */
  993. /* for string and stored block copying */
  994. this.length = 0; /* literal or length of data to copy */
  995. this.offset = 0; /* distance back to copy string from */
  996. /* for table and code decoding */
  997. this.extra = 0; /* extra bits needed */
  998. /* fixed and dynamic code tables */
  999. this.lencode = null; /* starting table for length/literal codes */
  1000. this.distcode = null; /* starting table for distance codes */
  1001. this.lenbits = 0; /* index bits for lencode */
  1002. this.distbits = 0; /* index bits for distcode */
  1003. /* dynamic table building */
  1004. this.ncode = 0; /* number of code length code lengths */
  1005. this.nlen = 0; /* number of length code lengths */
  1006. this.ndist = 0; /* number of distance code lengths */
  1007. this.have = 0; /* number of code lengths in lens[] */
  1008. this.next = null; /* next available space in codes[] */
  1009. this.lens = new utils.Buf16(320); /* temporary storage for code lengths */
  1010. this.work = new utils.Buf16(288); /* work area for code table building */
  1011. /*
  1012. because we don't have pointers in js, we use lencode and distcode directly
  1013. as buffers so we don't need codes
  1014. */
  1015. //this.codes = new utils.Buf32(ENOUGH); /* space for code tables */
  1016. this.lendyn = null; /* dynamic table for length/literal codes (JS specific) */
  1017. this.distdyn = null; /* dynamic table for distance codes (JS specific) */
  1018. this.sane = 0; /* if false, allow invalid distance too far */
  1019. this.back = 0; /* bits back of last unprocessed length/lit */
  1020. this.was = 0; /* initial length of match */
  1021. }
  1022. function inflateResetKeep(strm) {
  1023. var state;
  1024. if (!strm || !strm.state) { return Z_STREAM_ERROR; }
  1025. state = strm.state;
  1026. strm.total_in = strm.total_out = state.total = 0;
  1027. strm.msg = ''; /*Z_NULL*/
  1028. if (state.wrap) { /* to support ill-conceived Java test suite */
  1029. strm.adler = state.wrap & 1;
  1030. }
  1031. state.mode = HEAD;
  1032. state.last = 0;
  1033. state.havedict = 0;
  1034. state.dmax = 32768;
  1035. state.head = null/*Z_NULL*/;
  1036. state.hold = 0;
  1037. state.bits = 0;
  1038. //state.lencode = state.distcode = state.next = state.codes;
  1039. state.lencode = state.lendyn = new utils.Buf32(ENOUGH_LENS);
  1040. state.distcode = state.distdyn = new utils.Buf32(ENOUGH_DISTS);
  1041. state.sane = 1;
  1042. state.back = -1;
  1043. //Tracev((stderr, "inflate: reset\n"));
  1044. return Z_OK;
  1045. }
  1046. function inflateReset(strm) {
  1047. var state;
  1048. if (!strm || !strm.state) { return Z_STREAM_ERROR; }
  1049. state = strm.state;
  1050. state.wsize = 0;
  1051. state.whave = 0;
  1052. state.wnext = 0;
  1053. return inflateResetKeep(strm);
  1054. }
  1055. function inflateReset2(strm, windowBits) {
  1056. var wrap;
  1057. var state;
  1058. /* get the state */
  1059. if (!strm || !strm.state) { return Z_STREAM_ERROR; }
  1060. state = strm.state;
  1061. /* extract wrap request from windowBits parameter */
  1062. if (windowBits < 0) {
  1063. wrap = 0;
  1064. windowBits = -windowBits;
  1065. }
  1066. else {
  1067. wrap = (windowBits >> 4) + 1;
  1068. if (windowBits < 48) {
  1069. windowBits &= 15;
  1070. }
  1071. }
  1072. /* set number of window bits, free window if different */
  1073. if (windowBits && (windowBits < 8 || windowBits > 15)) {
  1074. return Z_STREAM_ERROR;
  1075. }
  1076. if (state.window !== null && state.wbits !== windowBits) {
  1077. state.window = null;
  1078. }
  1079. /* update state and reset the rest of it */
  1080. state.wrap = wrap;
  1081. state.wbits = windowBits;
  1082. return inflateReset(strm);
  1083. }
  1084. function inflateInit2(strm, windowBits) {
  1085. var ret;
  1086. var state;
  1087. if (!strm) { return Z_STREAM_ERROR; }
  1088. //strm.msg = Z_NULL; /* in case we return an error */
  1089. state = new InflateState();
  1090. //if (state === Z_NULL) return Z_MEM_ERROR;
  1091. //Tracev((stderr, "inflate: allocated\n"));
  1092. strm.state = state;
  1093. state.window = null/*Z_NULL*/;
  1094. ret = inflateReset2(strm, windowBits);
  1095. if (ret !== Z_OK) {
  1096. strm.state = null/*Z_NULL*/;
  1097. }
  1098. return ret;
  1099. }
  1100. function inflateInit(strm) {
  1101. return inflateInit2(strm, DEF_WBITS);
  1102. }
  1103. /*
  1104. Return state with length and distance decoding tables and index sizes set to
  1105. fixed code decoding. Normally this returns fixed tables from inffixed.h.
  1106. If BUILDFIXED is defined, then instead this routine builds the tables the
  1107. first time it's called, and returns those tables the first time and
  1108. thereafter. This reduces the size of the code by about 2K bytes, in
  1109. exchange for a little execution time. However, BUILDFIXED should not be
  1110. used for threaded applications, since the rewriting of the tables and virgin
  1111. may not be thread-safe.
  1112. */
  1113. var virgin = true;
  1114. var lenfix, distfix; // We have no pointers in JS, so keep tables separate
  1115. function fixedtables(state) {
  1116. /* build fixed huffman tables if first call (may not be thread safe) */
  1117. if (virgin) {
  1118. var sym;
  1119. lenfix = new utils.Buf32(512);
  1120. distfix = new utils.Buf32(32);
  1121. /* literal/length table */
  1122. sym = 0;
  1123. while (sym < 144) { state.lens[sym++] = 8; }
  1124. while (sym < 256) { state.lens[sym++] = 9; }
  1125. while (sym < 280) { state.lens[sym++] = 7; }
  1126. while (sym < 288) { state.lens[sym++] = 8; }
  1127. inflate_table(LENS, state.lens, 0, 288, lenfix, 0, state.work, { bits: 9 });
  1128. /* distance table */
  1129. sym = 0;
  1130. while (sym < 32) { state.lens[sym++] = 5; }
  1131. inflate_table(DISTS, state.lens, 0, 32, distfix, 0, state.work, { bits: 5 });
  1132. /* do this just once */
  1133. virgin = false;
  1134. }
  1135. state.lencode = lenfix;
  1136. state.lenbits = 9;
  1137. state.distcode = distfix;
  1138. state.distbits = 5;
  1139. }
  1140. /*
  1141. Update the window with the last wsize (normally 32K) bytes written before
  1142. returning. If window does not exist yet, create it. This is only called
  1143. when a window is already in use, or when output has been written during this
  1144. inflate call, but the end of the deflate stream has not been reached yet.
  1145. It is also called to create a window for dictionary data when a dictionary
  1146. is loaded.
  1147. Providing output buffers larger than 32K to inflate() should provide a speed
  1148. advantage, since only the last 32K of output is copied to the sliding window
  1149. upon return from inflate(), and since all distances after the first 32K of
  1150. output will fall in the output data, making match copies simpler and faster.
  1151. The advantage may be dependent on the size of the processor's data caches.
  1152. */
  1153. function updatewindow(strm, src, end, copy) {
  1154. var dist;
  1155. var state = strm.state;
  1156. /* if it hasn't been done already, allocate space for the window */
  1157. if (state.window === null) {
  1158. state.wsize = 1 << state.wbits;
  1159. state.wnext = 0;
  1160. state.whave = 0;
  1161. state.window = new utils.Buf8(state.wsize);
  1162. }
  1163. /* copy state->wsize or less output bytes into the circular window */
  1164. if (copy >= state.wsize) {
  1165. utils.arraySet(state.window, src, end - state.wsize, state.wsize, 0);
  1166. state.wnext = 0;
  1167. state.whave = state.wsize;
  1168. }
  1169. else {
  1170. dist = state.wsize - state.wnext;
  1171. if (dist > copy) {
  1172. dist = copy;
  1173. }
  1174. //zmemcpy(state->window + state->wnext, end - copy, dist);
  1175. utils.arraySet(state.window, src, end - copy, dist, state.wnext);
  1176. copy -= dist;
  1177. if (copy) {
  1178. //zmemcpy(state->window, end - copy, copy);
  1179. utils.arraySet(state.window, src, end - copy, copy, 0);
  1180. state.wnext = copy;
  1181. state.whave = state.wsize;
  1182. }
  1183. else {
  1184. state.wnext += dist;
  1185. if (state.wnext === state.wsize) { state.wnext = 0; }
  1186. if (state.whave < state.wsize) { state.whave += dist; }
  1187. }
  1188. }
  1189. return 0;
  1190. }
  1191. function inflate(strm, flush) {
  1192. var state;
  1193. var input, output; // input/output buffers
  1194. var next; /* next input INDEX */
  1195. var put; /* next output INDEX */
  1196. var have, left; /* available input and output */
  1197. var hold; /* bit buffer */
  1198. var bits; /* bits in bit buffer */
  1199. var _in, _out; /* save starting available input and output */
  1200. var copy; /* number of stored or match bytes to copy */
  1201. var from; /* where to copy match bytes from */
  1202. var from_source;
  1203. var here = 0; /* current decoding table entry */
  1204. var here_bits, here_op, here_val; // paked "here" denormalized (JS specific)
  1205. //var last; /* parent table entry */
  1206. var last_bits, last_op, last_val; // paked "last" denormalized (JS specific)
  1207. var len; /* length to copy for repeats, bits to drop */
  1208. var ret; /* return code */
  1209. var hbuf = new utils.Buf8(4); /* buffer for gzip header crc calculation */
  1210. var opts;
  1211. var n; // temporary var for NEED_BITS
  1212. var order = /* permutation of code lengths */
  1213. [ 16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15 ];
  1214. if (!strm || !strm.state || !strm.output ||
  1215. (!strm.input && strm.avail_in !== 0)) {
  1216. return Z_STREAM_ERROR;
  1217. }
  1218. state = strm.state;
  1219. if (state.mode === TYPE) { state.mode = TYPEDO; } /* skip check */
  1220. //--- LOAD() ---
  1221. put = strm.next_out;
  1222. output = strm.output;
  1223. left = strm.avail_out;
  1224. next = strm.next_in;
  1225. input = strm.input;
  1226. have = strm.avail_in;
  1227. hold = state.hold;
  1228. bits = state.bits;
  1229. //---
  1230. _in = have;
  1231. _out = left;
  1232. ret = Z_OK;
  1233. inf_leave: // goto emulation
  1234. for (;;) {
  1235. switch (state.mode) {
  1236. case HEAD:
  1237. if (state.wrap === 0) {
  1238. state.mode = TYPEDO;
  1239. break;
  1240. }
  1241. //=== NEEDBITS(16);
  1242. while (bits < 16) {
  1243. if (have === 0) { break inf_leave; }
  1244. have--;
  1245. hold += input[next++] << bits;
  1246. bits += 8;
  1247. }
  1248. //===//
  1249. if ((state.wrap & 2) && hold === 0x8b1f) { /* gzip header */
  1250. state.check = 0/*crc32(0L, Z_NULL, 0)*/;
  1251. //=== CRC2(state.check, hold);
  1252. hbuf[0] = hold & 0xff;
  1253. hbuf[1] = (hold >>> 8) & 0xff;
  1254. state.check = crc32(state.check, hbuf, 2, 0);
  1255. //===//
  1256. //=== INITBITS();
  1257. hold = 0;
  1258. bits = 0;
  1259. //===//
  1260. state.mode = FLAGS;
  1261. break;
  1262. }
  1263. state.flags = 0; /* expect zlib header */
  1264. if (state.head) {
  1265. state.head.done = false;
  1266. }
  1267. if (!(state.wrap & 1) || /* check if zlib header allowed */
  1268. (((hold & 0xff)/*BITS(8)*/ << 8) + (hold >> 8)) % 31) {
  1269. strm.msg = 'incorrect header check';
  1270. state.mode = BAD;
  1271. break;
  1272. }
  1273. if ((hold & 0x0f)/*BITS(4)*/ !== Z_DEFLATED) {
  1274. strm.msg = 'unknown compression method';
  1275. state.mode = BAD;
  1276. break;
  1277. }
  1278. //--- DROPBITS(4) ---//
  1279. hold >>>= 4;
  1280. bits -= 4;
  1281. //---//
  1282. len = (hold & 0x0f)/*BITS(4)*/ + 8;
  1283. if (state.wbits === 0) {
  1284. state.wbits = len;
  1285. }
  1286. else if (len > state.wbits) {
  1287. strm.msg = 'invalid window size';
  1288. state.mode = BAD;
  1289. break;
  1290. }
  1291. state.dmax = 1 << len;
  1292. //Tracev((stderr, "inflate: zlib header ok\n"));
  1293. strm.adler = state.check = 1/*adler32(0L, Z_NULL, 0)*/;
  1294. state.mode = hold & 0x200 ? DICTID : TYPE;
  1295. //=== INITBITS();
  1296. hold = 0;
  1297. bits = 0;
  1298. //===//
  1299. break;
  1300. case FLAGS:
  1301. //=== NEEDBITS(16); */
  1302. while (bits < 16) {
  1303. if (have === 0) { break inf_leave; }
  1304. have--;
  1305. hold += input[next++] << bits;
  1306. bits += 8;
  1307. }
  1308. //===//
  1309. state.flags = hold;
  1310. if ((state.flags & 0xff) !== Z_DEFLATED) {
  1311. strm.msg = 'unknown compression method';
  1312. state.mode = BAD;
  1313. break;
  1314. }
  1315. if (state.flags & 0xe000) {
  1316. strm.msg = 'unknown header flags set';
  1317. state.mode = BAD;
  1318. break;
  1319. }
  1320. if (state.head) {
  1321. state.head.text = ((hold >> 8) & 1);
  1322. }
  1323. if (state.flags & 0x0200) {
  1324. //=== CRC2(state.check, hold);
  1325. hbuf[0] = hold & 0xff;
  1326. hbuf[1] = (hold >>> 8) & 0xff;
  1327. state.check = crc32(state.check, hbuf, 2, 0);
  1328. //===//
  1329. }
  1330. //=== INITBITS();
  1331. hold = 0;
  1332. bits = 0;
  1333. //===//
  1334. state.mode = TIME;
  1335. /* falls through */
  1336. case TIME:
  1337. //=== NEEDBITS(32); */
  1338. while (bits < 32) {
  1339. if (have === 0) { break inf_leave; }
  1340. have--;
  1341. hold += input[next++] << bits;
  1342. bits += 8;
  1343. }
  1344. //===//
  1345. if (state.head) {
  1346. state.head.time = hold;
  1347. }
  1348. if (state.flags & 0x0200) {
  1349. //=== CRC4(state.check, hold)
  1350. hbuf[0] = hold & 0xff;
  1351. hbuf[1] = (hold >>> 8) & 0xff;
  1352. hbuf[2] = (hold >>> 16) & 0xff;
  1353. hbuf[3] = (hold >>> 24) & 0xff;
  1354. state.check = crc32(state.check, hbuf, 4, 0);
  1355. //===
  1356. }
  1357. //=== INITBITS();
  1358. hold = 0;
  1359. bits = 0;
  1360. //===//
  1361. state.mode = OS;
  1362. /* falls through */
  1363. case OS:
  1364. //=== NEEDBITS(16); */
  1365. while (bits < 16) {
  1366. if (have === 0) { break inf_leave; }
  1367. have--;
  1368. hold += input[next++] << bits;
  1369. bits += 8;
  1370. }
  1371. //===//
  1372. if (state.head) {
  1373. state.head.xflags = (hold & 0xff);
  1374. state.head.os = (hold >> 8);
  1375. }
  1376. if (state.flags & 0x0200) {
  1377. //=== CRC2(state.check, hold);
  1378. hbuf[0] = hold & 0xff;
  1379. hbuf[1] = (hold >>> 8) & 0xff;
  1380. state.check = crc32(state.check, hbuf, 2, 0);
  1381. //===//
  1382. }
  1383. //=== INITBITS();
  1384. hold = 0;
  1385. bits = 0;
  1386. //===//
  1387. state.mode = EXLEN;
  1388. /* falls through */
  1389. case EXLEN:
  1390. if (state.flags & 0x0400) {
  1391. //=== NEEDBITS(16); */
  1392. while (bits < 16) {
  1393. if (have === 0) { break inf_leave; }
  1394. have--;
  1395. hold += input[next++] << bits;
  1396. bits += 8;
  1397. }
  1398. //===//
  1399. state.length = hold;
  1400. if (state.head) {
  1401. state.head.extra_len = hold;
  1402. }
  1403. if (state.flags & 0x0200) {
  1404. //=== CRC2(state.check, hold);
  1405. hbuf[0] = hold & 0xff;
  1406. hbuf[1] = (hold >>> 8) & 0xff;
  1407. state.check = crc32(state.check, hbuf, 2, 0);
  1408. //===//
  1409. }
  1410. //=== INITBITS();
  1411. hold = 0;
  1412. bits = 0;
  1413. //===//
  1414. }
  1415. else if (state.head) {
  1416. state.head.extra = null/*Z_NULL*/;
  1417. }
  1418. state.mode = EXTRA;
  1419. /* falls through */
  1420. case EXTRA:
  1421. if (state.flags & 0x0400) {
  1422. copy = state.length;
  1423. if (copy > have) { copy = have; }
  1424. if (copy) {
  1425. if (state.head) {
  1426. len = state.head.extra_len - state.length;
  1427. if (!state.head.extra) {
  1428. // Use untyped array for more conveniend processing later
  1429. state.head.extra = new Array(state.head.extra_len);
  1430. }
  1431. utils.arraySet(
  1432. state.head.extra,
  1433. input,
  1434. next,
  1435. // extra field is limited to 65536 bytes
  1436. // - no need for additional size check
  1437. copy,
  1438. /*len + copy > state.head.extra_max - len ? state.head.extra_max : copy,*/
  1439. len
  1440. );
  1441. //zmemcpy(state.head.extra + len, next,
  1442. // len + copy > state.head.extra_max ?
  1443. // state.head.extra_max - len : copy);
  1444. }
  1445. if (state.flags & 0x0200) {
  1446. state.check = crc32(state.check, input, copy, next);
  1447. }
  1448. have -= copy;
  1449. next += copy;
  1450. state.length -= copy;
  1451. }
  1452. if (state.length) { break inf_leave; }
  1453. }
  1454. state.length = 0;
  1455. state.mode = NAME;
  1456. /* falls through */
  1457. case NAME:
  1458. if (state.flags & 0x0800) {
  1459. if (have === 0) { break inf_leave; }
  1460. copy = 0;
  1461. do {
  1462. // TODO: 2 or 1 bytes?
  1463. len = input[next + copy++];
  1464. /* use constant limit because in js we should not preallocate memory */
  1465. if (state.head && len &&
  1466. (state.length < 65536 /*state.head.name_max*/)) {
  1467. state.head.name += String.fromCharCode(len);
  1468. }
  1469. } while (len && copy < have);
  1470. if (state.flags & 0x0200) {
  1471. state.check = crc32(state.check, input, copy, next);
  1472. }
  1473. have -= copy;
  1474. next += copy;
  1475. if (len) { break inf_leave; }
  1476. }
  1477. else if (state.head) {
  1478. state.head.name = null;
  1479. }
  1480. state.length = 0;
  1481. state.mode = COMMENT;
  1482. /* falls through */
  1483. case COMMENT:
  1484. if (state.flags & 0x1000) {
  1485. if (have === 0) { break inf_leave; }
  1486. copy = 0;
  1487. do {
  1488. len = input[next + copy++];
  1489. /* use constant limit because in js we should not preallocate memory */
  1490. if (state.head && len &&
  1491. (state.length < 65536 /*state.head.comm_max*/)) {
  1492. state.head.comment += String.fromCharCode(len);
  1493. }
  1494. } while (len && copy < have);
  1495. if (state.flags & 0x0200) {
  1496. state.check = crc32(state.check, input, copy, next);
  1497. }
  1498. have -= copy;
  1499. next += copy;
  1500. if (len) { break inf_leave; }
  1501. }
  1502. else if (state.head) {
  1503. state.head.comment = null;
  1504. }
  1505. state.mode = HCRC;
  1506. /* falls through */
  1507. case HCRC:
  1508. if (state.flags & 0x0200) {
  1509. //=== NEEDBITS(16); */
  1510. while (bits < 16) {
  1511. if (have === 0) { break inf_leave; }
  1512. have--;
  1513. hold += input[next++] << bits;
  1514. bits += 8;
  1515. }
  1516. //===//
  1517. if (hold !== (state.check & 0xffff)) {
  1518. strm.msg = 'header crc mismatch';
  1519. state.mode = BAD;
  1520. break;
  1521. }
  1522. //=== INITBITS();
  1523. hold = 0;
  1524. bits = 0;
  1525. //===//
  1526. }
  1527. if (state.head) {
  1528. state.head.hcrc = ((state.flags >> 9) & 1);
  1529. state.head.done = true;
  1530. }
  1531. strm.adler = state.check = 0;
  1532. state.mode = TYPE;
  1533. break;
  1534. case DICTID:
  1535. //=== NEEDBITS(32); */
  1536. while (bits < 32) {
  1537. if (have === 0) { break inf_leave; }
  1538. have--;
  1539. hold += input[next++] << bits;
  1540. bits += 8;
  1541. }
  1542. //===//
  1543. strm.adler = state.check = zswap32(hold);
  1544. //=== INITBITS();
  1545. hold = 0;
  1546. bits = 0;
  1547. //===//
  1548. state.mode = DICT;
  1549. /* falls through */
  1550. case DICT:
  1551. if (state.havedict === 0) {
  1552. //--- RESTORE() ---
  1553. strm.next_out = put;
  1554. strm.avail_out = left;
  1555. strm.next_in = next;
  1556. strm.avail_in = have;
  1557. state.hold = hold;
  1558. state.bits = bits;
  1559. //---
  1560. return Z_NEED_DICT;
  1561. }
  1562. strm.adler = state.check = 1/*adler32(0L, Z_NULL, 0)*/;
  1563. state.mode = TYPE;
  1564. /* falls through */
  1565. case TYPE:
  1566. if (flush === Z_BLOCK || flush === Z_TREES) { break inf_leave; }
  1567. /* falls through */
  1568. case TYPEDO:
  1569. if (state.last) {
  1570. //--- BYTEBITS() ---//
  1571. hold >>>= bits & 7;
  1572. bits -= bits & 7;
  1573. //---//
  1574. state.mode = CHECK;
  1575. break;
  1576. }
  1577. //=== NEEDBITS(3); */
  1578. while (bits < 3) {
  1579. if (have === 0) { break inf_leave; }
  1580. have--;
  1581. hold += input[next++] << bits;
  1582. bits += 8;
  1583. }
  1584. //===//
  1585. state.last = (hold & 0x01)/*BITS(1)*/;
  1586. //--- DROPBITS(1) ---//
  1587. hold >>>= 1;
  1588. bits -= 1;
  1589. //---//
  1590. switch ((hold & 0x03)/*BITS(2)*/) {
  1591. case 0: /* stored block */
  1592. //Tracev((stderr, "inflate: stored block%s\n",
  1593. // state.last ? " (last)" : ""));
  1594. state.mode = STORED;
  1595. break;
  1596. case 1: /* fixed block */
  1597. fixedtables(state);
  1598. //Tracev((stderr, "inflate: fixed codes block%s\n",
  1599. // state.last ? " (last)" : ""));
  1600. state.mode = LEN_; /* decode codes */
  1601. if (flush === Z_TREES) {
  1602. //--- DROPBITS(2) ---//
  1603. hold >>>= 2;
  1604. bits -= 2;
  1605. //---//
  1606. break inf_leave;
  1607. }
  1608. break;
  1609. case 2: /* dynamic block */
  1610. //Tracev((stderr, "inflate: dynamic codes block%s\n",
  1611. // state.last ? " (last)" : ""));
  1612. state.mode = TABLE;
  1613. break;
  1614. case 3:
  1615. strm.msg = 'invalid block type';
  1616. state.mode = BAD;
  1617. }
  1618. //--- DROPBITS(2) ---//
  1619. hold >>>= 2;
  1620. bits -= 2;
  1621. //---//
  1622. break;
  1623. case STORED:
  1624. //--- BYTEBITS() ---// /* go to byte boundary */
  1625. hold >>>= bits & 7;
  1626. bits -= bits & 7;
  1627. //---//
  1628. //=== NEEDBITS(32); */
  1629. while (bits < 32) {
  1630. if (have === 0) { break inf_leave; }
  1631. have--;
  1632. hold += input[next++] << bits;
  1633. bits += 8;
  1634. }
  1635. //===//
  1636. if ((hold & 0xffff) !== ((hold >>> 16) ^ 0xffff)) {
  1637. strm.msg = 'invalid stored block lengths';
  1638. state.mode = BAD;
  1639. break;
  1640. }
  1641. state.length = hold & 0xffff;
  1642. //Tracev((stderr, "inflate: stored length %u\n",
  1643. // state.length));
  1644. //=== INITBITS();
  1645. hold = 0;
  1646. bits = 0;
  1647. //===//
  1648. state.mode = COPY_;
  1649. if (flush === Z_TREES) { break inf_leave; }
  1650. /* falls through */
  1651. case COPY_:
  1652. state.mode = COPY;
  1653. /* falls through */
  1654. case COPY:
  1655. copy = state.length;
  1656. if (copy) {
  1657. if (copy > have) { copy = have; }
  1658. if (copy > left) { copy = left; }
  1659. if (copy === 0) { break inf_leave; }
  1660. //--- zmemcpy(put, next, copy); ---
  1661. utils.arraySet(output, input, next, copy, put);
  1662. //---//
  1663. have -= copy;
  1664. next += copy;
  1665. left -= copy;
  1666. put += copy;
  1667. state.length -= copy;
  1668. break;
  1669. }
  1670. //Tracev((stderr, "inflate: stored end\n"));
  1671. state.mode = TYPE;
  1672. break;
  1673. case TABLE:
  1674. //=== NEEDBITS(14); */
  1675. while (bits < 14) {
  1676. if (have === 0) { break inf_leave; }
  1677. have--;
  1678. hold += input[next++] << bits;
  1679. bits += 8;
  1680. }
  1681. //===//
  1682. state.nlen = (hold & 0x1f)/*BITS(5)*/ + 257;
  1683. //--- DROPBITS(5) ---//
  1684. hold >>>= 5;
  1685. bits -= 5;
  1686. //---//
  1687. state.ndist = (hold & 0x1f)/*BITS(5)*/ + 1;
  1688. //--- DROPBITS(5) ---//
  1689. hold >>>= 5;
  1690. bits -= 5;
  1691. //---//
  1692. state.ncode = (hold & 0x0f)/*BITS(4)*/ + 4;
  1693. //--- DROPBITS(4) ---//
  1694. hold >>>= 4;
  1695. bits -= 4;
  1696. //---//
  1697. //#ifndef PKZIP_BUG_WORKAROUND
  1698. if (state.nlen > 286 || state.ndist > 30) {
  1699. strm.msg = 'too many length or distance symbols';
  1700. state.mode = BAD;
  1701. break;
  1702. }
  1703. //#endif
  1704. //Tracev((stderr, "inflate: table sizes ok\n"));
  1705. state.have = 0;
  1706. state.mode = LENLENS;
  1707. /* falls through */
  1708. case LENLENS:
  1709. while (state.have < state.ncode) {
  1710. //=== NEEDBITS(3);
  1711. while (bits < 3) {
  1712. if (have === 0) { break inf_leave; }
  1713. have--;
  1714. hold += input[next++] << bits;
  1715. bits += 8;
  1716. }
  1717. //===//
  1718. state.lens[order[state.have++]] = (hold & 0x07);//BITS(3);
  1719. //--- DROPBITS(3) ---//
  1720. hold >>>= 3;
  1721. bits -= 3;
  1722. //---//
  1723. }
  1724. while (state.have < 19) {
  1725. state.lens[order[state.have++]] = 0;
  1726. }
  1727. // We have separate tables & no pointers. 2 commented lines below not needed.
  1728. //state.next = state.codes;
  1729. //state.lencode = state.next;
  1730. // Switch to use dynamic table
  1731. state.lencode = state.lendyn;
  1732. state.lenbits = 7;
  1733. opts = { bits: state.lenbits };
  1734. ret = inflate_table(CODES, state.lens, 0, 19, state.lencode, 0, state.work, opts);
  1735. state.lenbits = opts.bits;
  1736. if (ret) {
  1737. strm.msg = 'invalid code lengths set';
  1738. state.mode = BAD;
  1739. break;
  1740. }
  1741. //Tracev((stderr, "inflate: code lengths ok\n"));
  1742. state.have = 0;
  1743. state.mode = CODELENS;
  1744. /* falls through */
  1745. case CODELENS:
  1746. while (state.have < state.nlen + state.ndist) {
  1747. for (;;) {
  1748. here = state.lencode[hold & ((1 << state.lenbits) - 1)];/*BITS(state.lenbits)*/
  1749. here_bits = here >>> 24;
  1750. here_op = (here >>> 16) & 0xff;
  1751. here_val = here & 0xffff;
  1752. if ((here_bits) <= bits) { break; }
  1753. //--- PULLBYTE() ---//
  1754. if (have === 0) { break inf_leave; }
  1755. have--;
  1756. hold += input[next++] << bits;
  1757. bits += 8;
  1758. //---//
  1759. }
  1760. if (here_val < 16) {
  1761. //--- DROPBITS(here.bits) ---//
  1762. hold >>>= here_bits;
  1763. bits -= here_bits;
  1764. //---//
  1765. state.lens[state.have++] = here_val;
  1766. }
  1767. else {
  1768. if (here_val === 16) {
  1769. //=== NEEDBITS(here.bits + 2);
  1770. n = here_bits + 2;
  1771. while (bits < n) {
  1772. if (have === 0) { break inf_leave; }
  1773. have--;
  1774. hold += input[next++] << bits;
  1775. bits += 8;
  1776. }
  1777. //===//
  1778. //--- DROPBITS(here.bits) ---//
  1779. hold >>>= here_bits;
  1780. bits -= here_bits;
  1781. //---//
  1782. if (state.have === 0) {
  1783. strm.msg = 'invalid bit length repeat';
  1784. state.mode = BAD;
  1785. break;
  1786. }
  1787. len = state.lens[state.have - 1];
  1788. copy = 3 + (hold & 0x03);//BITS(2);
  1789. //--- DROPBITS(2) ---//
  1790. hold >>>= 2;
  1791. bits -= 2;
  1792. //---//
  1793. }
  1794. else if (here_val === 17) {
  1795. //=== NEEDBITS(here.bits + 3);
  1796. n = here_bits + 3;
  1797. while (bits < n) {
  1798. if (have === 0) { break inf_leave; }
  1799. have--;
  1800. hold += input[next++] << bits;
  1801. bits += 8;
  1802. }
  1803. //===//
  1804. //--- DROPBITS(here.bits) ---//
  1805. hold >>>= here_bits;
  1806. bits -= here_bits;
  1807. //---//
  1808. len = 0;
  1809. copy = 3 + (hold & 0x07);//BITS(3);
  1810. //--- DROPBITS(3) ---//
  1811. hold >>>= 3;
  1812. bits -= 3;
  1813. //---//
  1814. }
  1815. else {
  1816. //=== NEEDBITS(here.bits + 7);
  1817. n = here_bits + 7;
  1818. while (bits < n) {
  1819. if (have === 0) { break inf_leave; }
  1820. have--;
  1821. hold += input[next++] << bits;
  1822. bits += 8;
  1823. }
  1824. //===//
  1825. //--- DROPBITS(here.bits) ---//
  1826. hold >>>= here_bits;
  1827. bits -= here_bits;
  1828. //---//
  1829. len = 0;
  1830. copy = 11 + (hold & 0x7f);//BITS(7);
  1831. //--- DROPBITS(7) ---//
  1832. hold >>>= 7;
  1833. bits -= 7;
  1834. //---//
  1835. }
  1836. if (state.have + copy > state.nlen + state.ndist) {
  1837. strm.msg = 'invalid bit length repeat';
  1838. state.mode = BAD;
  1839. break;
  1840. }
  1841. while (copy--) {
  1842. state.lens[state.have++] = len;
  1843. }
  1844. }
  1845. }
  1846. /* handle error breaks in while */
  1847. if (state.mode === BAD) { break; }
  1848. /* check for end-of-block code (better have one) */
  1849. if (state.lens[256] === 0) {
  1850. strm.msg = 'invalid code -- missing end-of-block';
  1851. state.mode = BAD;
  1852. break;
  1853. }
  1854. /* build code tables -- note: do not change the lenbits or distbits
  1855. values here (9 and 6) without reading the comments in inftrees.h
  1856. concerning the ENOUGH constants, which depend on those values */
  1857. state.lenbits = 9;
  1858. opts = { bits: state.lenbits };
  1859. ret = inflate_table(LENS, state.lens, 0, state.nlen, state.lencode, 0, state.work, opts);
  1860. // We have separate tables & no pointers. 2 commented lines below not needed.
  1861. // state.next_index = opts.table_index;
  1862. state.lenbits = opts.bits;
  1863. // state.lencode = state.next;
  1864. if (ret) {
  1865. strm.msg = 'invalid literal/lengths set';
  1866. state.mode = BAD;
  1867. break;
  1868. }
  1869. state.distbits = 6;
  1870. //state.distcode.copy(state.codes);
  1871. // Switch to use dynamic table
  1872. state.distcode = state.distdyn;
  1873. opts = { bits: state.distbits };
  1874. ret = inflate_table(DISTS, state.lens, state.nlen, state.ndist, state.distcode, 0, state.work, opts);
  1875. // We have separate tables & no pointers. 2 commented lines below not needed.
  1876. // state.next_index = opts.table_index;
  1877. state.distbits = opts.bits;
  1878. // state.distcode = state.next;
  1879. if (ret) {
  1880. strm.msg = 'invalid distances set';
  1881. state.mode = BAD;
  1882. break;
  1883. }
  1884. //Tracev((stderr, 'inflate: codes ok\n'));
  1885. state.mode = LEN_;
  1886. if (flush === Z_TREES) { break inf_leave; }
  1887. /* falls through */
  1888. case LEN_:
  1889. state.mode = LEN;
  1890. /* falls through */
  1891. case LEN:
  1892. if (have >= 6 && left >= 258) {
  1893. //--- RESTORE() ---
  1894. strm.next_out = put;
  1895. strm.avail_out = left;
  1896. strm.next_in = next;
  1897. strm.avail_in = have;
  1898. state.hold = hold;
  1899. state.bits = bits;
  1900. //---
  1901. inflate_fast(strm, _out);
  1902. //--- LOAD() ---
  1903. put = strm.next_out;
  1904. output = strm.output;
  1905. left = strm.avail_out;
  1906. next = strm.next_in;
  1907. input = strm.input;
  1908. have = strm.avail_in;
  1909. hold = state.hold;
  1910. bits = state.bits;
  1911. //---
  1912. if (state.mode === TYPE) {
  1913. state.back = -1;
  1914. }
  1915. break;
  1916. }
  1917. state.back = 0;
  1918. for (;;) {
  1919. here = state.lencode[hold & ((1 << state.lenbits) - 1)]; /*BITS(state.lenbits)*/
  1920. here_bits = here >>> 24;
  1921. here_op = (here >>> 16) & 0xff;
  1922. here_val = here & 0xffff;
  1923. if (here_bits <= bits) { break; }
  1924. //--- PULLBYTE() ---//
  1925. if (have === 0) { break inf_leave; }
  1926. have--;
  1927. hold += input[next++] << bits;
  1928. bits += 8;
  1929. //---//
  1930. }
  1931. if (here_op && (here_op & 0xf0) === 0) {
  1932. last_bits = here_bits;
  1933. last_op = here_op;
  1934. last_val = here_val;
  1935. for (;;) {
  1936. here = state.lencode[last_val +
  1937. ((hold & ((1 << (last_bits + last_op)) - 1))/*BITS(last.bits + last.op)*/ >> last_bits)];
  1938. here_bits = here >>> 24;
  1939. here_op = (here >>> 16) & 0xff;
  1940. here_val = here & 0xffff;
  1941. if ((last_bits + here_bits) <= bits) { break; }
  1942. //--- PULLBYTE() ---//
  1943. if (have === 0) { break inf_leave; }
  1944. have--;
  1945. hold += input[next++] << bits;
  1946. bits += 8;
  1947. //---//
  1948. }
  1949. //--- DROPBITS(last.bits) ---//
  1950. hold >>>= last_bits;
  1951. bits -= last_bits;
  1952. //---//
  1953. state.back += last_bits;
  1954. }
  1955. //--- DROPBITS(here.bits) ---//
  1956. hold >>>= here_bits;
  1957. bits -= here_bits;
  1958. //---//
  1959. state.back += here_bits;
  1960. state.length = here_val;
  1961. if (here_op === 0) {
  1962. //Tracevv((stderr, here.val >= 0x20 && here.val < 0x7f ?
  1963. // "inflate: literal '%c'\n" :
  1964. // "inflate: literal 0x%02x\n", here.val));
  1965. state.mode = LIT;
  1966. break;
  1967. }
  1968. if (here_op & 32) {
  1969. //Tracevv((stderr, "inflate: end of block\n"));
  1970. state.back = -1;
  1971. state.mode = TYPE;
  1972. break;
  1973. }
  1974. if (here_op & 64) {
  1975. strm.msg = 'invalid literal/length code';
  1976. state.mode = BAD;
  1977. break;
  1978. }
  1979. state.extra = here_op & 15;
  1980. state.mode = LENEXT;
  1981. /* falls through */
  1982. case LENEXT:
  1983. if (state.extra) {
  1984. //=== NEEDBITS(state.extra);
  1985. n = state.extra;
  1986. while (bits < n) {
  1987. if (have === 0) { break inf_leave; }
  1988. have--;
  1989. hold += input[next++] << bits;
  1990. bits += 8;
  1991. }
  1992. //===//
  1993. state.length += hold & ((1 << state.extra) - 1)/*BITS(state.extra)*/;
  1994. //--- DROPBITS(state.extra) ---//
  1995. hold >>>= state.extra;
  1996. bits -= state.extra;
  1997. //---//
  1998. state.back += state.extra;
  1999. }
  2000. //Tracevv((stderr, "inflate: length %u\n", state.length));
  2001. state.was = state.length;
  2002. state.mode = DIST;
  2003. /* falls through */
  2004. case DIST:
  2005. for (;;) {
  2006. here = state.distcode[hold & ((1 << state.distbits) - 1)];/*BITS(state.distbits)*/
  2007. here_bits = here >>> 24;
  2008. here_op = (here >>> 16) & 0xff;
  2009. here_val = here & 0xffff;
  2010. if ((here_bits) <= bits) { break; }
  2011. //--- PULLBYTE() ---//
  2012. if (have === 0) { break inf_leave; }
  2013. have--;
  2014. hold += input[next++] << bits;
  2015. bits += 8;
  2016. //---//
  2017. }
  2018. if ((here_op & 0xf0) === 0) {
  2019. last_bits = here_bits;
  2020. last_op = here_op;
  2021. last_val = here_val;
  2022. for (;;) {
  2023. here = state.distcode[last_val +
  2024. ((hold & ((1 << (last_bits + last_op)) - 1))/*BITS(last.bits + last.op)*/ >> last_bits)];
  2025. here_bits = here >>> 24;
  2026. here_op = (here >>> 16) & 0xff;
  2027. here_val = here & 0xffff;
  2028. if ((last_bits + here_bits) <= bits) { break; }
  2029. //--- PULLBYTE() ---//
  2030. if (have === 0) { break inf_leave; }
  2031. have--;
  2032. hold += input[next++] << bits;
  2033. bits += 8;
  2034. //---//
  2035. }
  2036. //--- DROPBITS(last.bits) ---//
  2037. hold >>>= last_bits;
  2038. bits -= last_bits;
  2039. //---//
  2040. state.back += last_bits;
  2041. }
  2042. //--- DROPBITS(here.bits) ---//
  2043. hold >>>= here_bits;
  2044. bits -= here_bits;
  2045. //---//
  2046. state.back += here_bits;
  2047. if (here_op & 64) {
  2048. strm.msg = 'invalid distance code';
  2049. state.mode = BAD;
  2050. break;
  2051. }
  2052. state.offset = here_val;
  2053. state.extra = (here_op) & 15;
  2054. state.mode = DISTEXT;
  2055. /* falls through */
  2056. case DISTEXT:
  2057. if (state.extra) {
  2058. //=== NEEDBITS(state.extra);
  2059. n = state.extra;
  2060. while (bits < n) {
  2061. if (have === 0) { break inf_leave; }
  2062. have--;
  2063. hold += input[next++] << bits;
  2064. bits += 8;
  2065. }
  2066. //===//
  2067. state.offset += hold & ((1 << state.extra) - 1)/*BITS(state.extra)*/;
  2068. //--- DROPBITS(state.extra) ---//
  2069. hold >>>= state.extra;
  2070. bits -= state.extra;
  2071. //---//
  2072. state.back += state.extra;
  2073. }
  2074. //#ifdef INFLATE_STRICT
  2075. if (state.offset > state.dmax) {
  2076. strm.msg = 'invalid distance too far back';
  2077. state.mode = BAD;
  2078. break;
  2079. }
  2080. //#endif
  2081. //Tracevv((stderr, "inflate: distance %u\n", state.offset));
  2082. state.mode = MATCH;
  2083. /* falls through */
  2084. case MATCH:
  2085. if (left === 0) { break inf_leave; }
  2086. copy = _out - left;
  2087. if (state.offset > copy) { /* copy from window */
  2088. copy = state.offset - copy;
  2089. if (copy > state.whave) {
  2090. if (state.sane) {
  2091. strm.msg = 'invalid distance too far back';
  2092. state.mode = BAD;
  2093. break;
  2094. }
  2095. // (!) This block is disabled in zlib defailts,
  2096. // don't enable it for binary compatibility
  2097. //#ifdef INFLATE_ALLOW_INVALID_DISTANCE_TOOFAR_ARRR
  2098. // Trace((stderr, "inflate.c too far\n"));
  2099. // copy -= state.whave;
  2100. // if (copy > state.length) { copy = state.length; }
  2101. // if (copy > left) { copy = left; }
  2102. // left -= copy;
  2103. // state.length -= copy;
  2104. // do {
  2105. // output[put++] = 0;
  2106. // } while (--copy);
  2107. // if (state.length === 0) { state.mode = LEN; }
  2108. // break;
  2109. //#endif
  2110. }
  2111. if (copy > state.wnext) {
  2112. copy -= state.wnext;
  2113. from = state.wsize - copy;
  2114. }
  2115. else {
  2116. from = state.wnext - copy;
  2117. }
  2118. if (copy > state.length) { copy = state.length; }
  2119. from_source = state.window;
  2120. }
  2121. else { /* copy from output */
  2122. from_source = output;
  2123. from = put - state.offset;
  2124. copy = state.length;
  2125. }
  2126. if (copy > left) { copy = left; }
  2127. left -= copy;
  2128. state.length -= copy;
  2129. do {
  2130. output[put++] = from_source[from++];
  2131. } while (--copy);
  2132. if (state.length === 0) { state.mode = LEN; }
  2133. break;
  2134. case LIT:
  2135. if (left === 0) { break inf_leave; }
  2136. output[put++] = state.length;
  2137. left--;
  2138. state.mode = LEN;
  2139. break;
  2140. case CHECK:
  2141. if (state.wrap) {
  2142. //=== NEEDBITS(32);
  2143. while (bits < 32) {
  2144. if (have === 0) { break inf_leave; }
  2145. have--;
  2146. // Use '|' insdead of '+' to make sure that result is signed
  2147. hold |= input[next++] << bits;
  2148. bits += 8;
  2149. }
  2150. //===//
  2151. _out -= left;
  2152. strm.total_out += _out;
  2153. state.total += _out;
  2154. if (_out) {
  2155. strm.adler = state.check =
  2156. /*UPDATE(state.check, put - _out, _out);*/
  2157. (state.flags ? crc32(state.check, output, _out, put - _out) : adler32(state.check, output, _out, put - _out));
  2158. }
  2159. _out = left;
  2160. // NB: crc32 stored as signed 32-bit int, zswap32 returns signed too
  2161. if ((state.flags ? hold : zswap32(hold)) !== state.check) {
  2162. strm.msg = 'incorrect data check';
  2163. state.mode = BAD;
  2164. break;
  2165. }
  2166. //=== INITBITS();
  2167. hold = 0;
  2168. bits = 0;
  2169. //===//
  2170. //Tracev((stderr, "inflate: check matches trailer\n"));
  2171. }
  2172. state.mode = LENGTH;
  2173. /* falls through */
  2174. case LENGTH:
  2175. if (state.wrap && state.flags) {
  2176. //=== NEEDBITS(32);
  2177. while (bits < 32) {
  2178. if (have === 0) { break inf_leave; }
  2179. have--;
  2180. hold += input[next++] << bits;
  2181. bits += 8;
  2182. }
  2183. //===//
  2184. if (hold !== (state.total & 0xffffffff)) {
  2185. strm.msg = 'incorrect length check';
  2186. state.mode = BAD;
  2187. break;
  2188. }
  2189. //=== INITBITS();
  2190. hold = 0;
  2191. bits = 0;
  2192. //===//
  2193. //Tracev((stderr, "inflate: length matches trailer\n"));
  2194. }
  2195. state.mode = DONE;
  2196. /* falls through */
  2197. case DONE:
  2198. ret = Z_STREAM_END;
  2199. break inf_leave;
  2200. case BAD:
  2201. ret = Z_DATA_ERROR;
  2202. break inf_leave;
  2203. case MEM:
  2204. return Z_MEM_ERROR;
  2205. case SYNC:
  2206. /* falls through */
  2207. default:
  2208. return Z_STREAM_ERROR;
  2209. }
  2210. }
  2211. // inf_leave <- here is real place for "goto inf_leave", emulated via "break inf_leave"
  2212. /*
  2213. Return from inflate(), updating the total counts and the check value.
  2214. If there was no progress during the inflate() call, return a buffer
  2215. error. Call updatewindow() to create and/or update the window state.
  2216. Note: a memory error from inflate() is non-recoverable.
  2217. */
  2218. //--- RESTORE() ---
  2219. strm.next_out = put;
  2220. strm.avail_out = left;
  2221. strm.next_in = next;
  2222. strm.avail_in = have;
  2223. state.hold = hold;
  2224. state.bits = bits;
  2225. //---
  2226. if (state.wsize || (_out !== strm.avail_out && state.mode < BAD &&
  2227. (state.mode < CHECK || flush !== Z_FINISH))) {
  2228. if (updatewindow(strm, strm.output, strm.next_out, _out - strm.avail_out)) ;
  2229. }
  2230. _in -= strm.avail_in;
  2231. _out -= strm.avail_out;
  2232. strm.total_in += _in;
  2233. strm.total_out += _out;
  2234. state.total += _out;
  2235. if (state.wrap && _out) {
  2236. strm.adler = state.check = /*UPDATE(state.check, strm.next_out - _out, _out);*/
  2237. (state.flags ? crc32(state.check, output, _out, strm.next_out - _out) : adler32(state.check, output, _out, strm.next_out - _out));
  2238. }
  2239. strm.data_type = state.bits + (state.last ? 64 : 0) +
  2240. (state.mode === TYPE ? 128 : 0) +
  2241. (state.mode === LEN_ || state.mode === COPY_ ? 256 : 0);
  2242. if (((_in === 0 && _out === 0) || flush === Z_FINISH) && ret === Z_OK) {
  2243. ret = Z_BUF_ERROR;
  2244. }
  2245. return ret;
  2246. }
  2247. function inflateEnd(strm) {
  2248. if (!strm || !strm.state /*|| strm->zfree == (free_func)0*/) {
  2249. return Z_STREAM_ERROR;
  2250. }
  2251. var state = strm.state;
  2252. if (state.window) {
  2253. state.window = null;
  2254. }
  2255. strm.state = null;
  2256. return Z_OK;
  2257. }
  2258. function inflateGetHeader(strm, head) {
  2259. var state;
  2260. /* check state */
  2261. if (!strm || !strm.state) { return Z_STREAM_ERROR; }
  2262. state = strm.state;
  2263. if ((state.wrap & 2) === 0) { return Z_STREAM_ERROR; }
  2264. /* save header structure */
  2265. state.head = head;
  2266. head.done = false;
  2267. return Z_OK;
  2268. }
  2269. function inflateSetDictionary(strm, dictionary) {
  2270. var dictLength = dictionary.length;
  2271. var state;
  2272. var dictid;
  2273. var ret;
  2274. /* check state */
  2275. if (!strm /* == Z_NULL */ || !strm.state /* == Z_NULL */) { return Z_STREAM_ERROR; }
  2276. state = strm.state;
  2277. if (state.wrap !== 0 && state.mode !== DICT) {
  2278. return Z_STREAM_ERROR;
  2279. }
  2280. /* check for correct dictionary identifier */
  2281. if (state.mode === DICT) {
  2282. dictid = 1; /* adler32(0, null, 0)*/
  2283. /* dictid = adler32(dictid, dictionary, dictLength); */
  2284. dictid = adler32(dictid, dictionary, dictLength, 0);
  2285. if (dictid !== state.check) {
  2286. return Z_DATA_ERROR;
  2287. }
  2288. }
  2289. /* copy dictionary to window using updatewindow(), which will amend the
  2290. existing dictionary if appropriate */
  2291. ret = updatewindow(strm, dictionary, dictLength, dictLength);
  2292. if (ret) {
  2293. state.mode = MEM;
  2294. return Z_MEM_ERROR;
  2295. }
  2296. state.havedict = 1;
  2297. // Tracev((stderr, "inflate: dictionary set\n"));
  2298. return Z_OK;
  2299. }
  2300. exports.inflateReset = inflateReset;
  2301. exports.inflateReset2 = inflateReset2;
  2302. exports.inflateResetKeep = inflateResetKeep;
  2303. exports.inflateInit = inflateInit;
  2304. exports.inflateInit2 = inflateInit2;
  2305. exports.inflate = inflate;
  2306. exports.inflateEnd = inflateEnd;
  2307. exports.inflateGetHeader = inflateGetHeader;
  2308. exports.inflateSetDictionary = inflateSetDictionary;
  2309. exports.inflateInfo = 'pako inflate (from Nodeca project)';
  2310. /* Not implemented
  2311. exports.inflateCopy = inflateCopy;
  2312. exports.inflateGetDictionary = inflateGetDictionary;
  2313. exports.inflateMark = inflateMark;
  2314. exports.inflatePrime = inflatePrime;
  2315. exports.inflateSync = inflateSync;
  2316. exports.inflateSyncPoint = inflateSyncPoint;
  2317. exports.inflateUndermine = inflateUndermine;
  2318. */
  2319. },{"../utils/common":1,"./adler32":3,"./crc32":5,"./inffast":7,"./inftrees":9}],9:[function(require,module,exports){
  2320. var utils = require('../utils/common');
  2321. var MAXBITS = 15;
  2322. var ENOUGH_LENS = 852;
  2323. var ENOUGH_DISTS = 592;
  2324. //var ENOUGH = (ENOUGH_LENS+ENOUGH_DISTS);
  2325. var CODES = 0;
  2326. var LENS = 1;
  2327. var DISTS = 2;
  2328. var lbase = [ /* Length codes 257..285 base */
  2329. 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31,
  2330. 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258, 0, 0
  2331. ];
  2332. var lext = [ /* Length codes 257..285 extra */
  2333. 16, 16, 16, 16, 16, 16, 16, 16, 17, 17, 17, 17, 18, 18, 18, 18,
  2334. 19, 19, 19, 19, 20, 20, 20, 20, 21, 21, 21, 21, 16, 72, 78
  2335. ];
  2336. var dbase = [ /* Distance codes 0..29 base */
  2337. 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193,
  2338. 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145,
  2339. 8193, 12289, 16385, 24577, 0, 0
  2340. ];
  2341. var dext = [ /* Distance codes 0..29 extra */
  2342. 16, 16, 16, 16, 17, 17, 18, 18, 19, 19, 20, 20, 21, 21, 22, 22,
  2343. 23, 23, 24, 24, 25, 25, 26, 26, 27, 27,
  2344. 28, 28, 29, 29, 64, 64
  2345. ];
  2346. module.exports = function inflate_table(type, lens, lens_index, codes, table, table_index, work, opts)
  2347. {
  2348. var bits = opts.bits;
  2349. //here = opts.here; /* table entry for duplication */
  2350. var len = 0; /* a code's length in bits */
  2351. var sym = 0; /* index of code symbols */
  2352. var min = 0, max = 0; /* minimum and maximum code lengths */
  2353. var root = 0; /* number of index bits for root table */
  2354. var curr = 0; /* number of index bits for current table */
  2355. var drop = 0; /* code bits to drop for sub-table */
  2356. var left = 0; /* number of prefix codes available */
  2357. var used = 0; /* code entries in table used */
  2358. var huff = 0; /* Huffman code */
  2359. var incr; /* for incrementing code, index */
  2360. var fill; /* index for replicating entries */
  2361. var low; /* low bits for current root entry */
  2362. var mask; /* mask for low root bits */
  2363. var next; /* next available space in table */
  2364. var base = null; /* base value table to use */
  2365. var base_index = 0;
  2366. // var shoextra; /* extra bits table to use */
  2367. var end; /* use base and extra for symbol > end */
  2368. var count = new utils.Buf16(MAXBITS + 1); //[MAXBITS+1]; /* number of codes of each length */
  2369. var offs = new utils.Buf16(MAXBITS + 1); //[MAXBITS+1]; /* offsets in table for each length */
  2370. var extra = null;
  2371. var extra_index = 0;
  2372. var here_bits, here_op, here_val;
  2373. /*
  2374. Process a set of code lengths to create a canonical Huffman code. The
  2375. code lengths are lens[0..codes-1]. Each length corresponds to the
  2376. symbols 0..codes-1. The Huffman code is generated by first sorting the
  2377. symbols by length from short to long, and retaining the symbol order
  2378. for codes with equal lengths. Then the code starts with all zero bits
  2379. for the first code of the shortest length, and the codes are integer
  2380. increments for the same length, and zeros are appended as the length
  2381. increases. For the deflate format, these bits are stored backwards
  2382. from their more natural integer increment ordering, and so when the
  2383. decoding tables are built in the large loop below, the integer codes
  2384. are incremented backwards.
  2385. This routine assumes, but does not check, that all of the entries in
  2386. lens[] are in the range 0..MAXBITS. The caller must assure this.
  2387. 1..MAXBITS is interpreted as that code length. zero means that that
  2388. symbol does not occur in this code.
  2389. The codes are sorted by computing a count of codes for each length,
  2390. creating from that a table of starting indices for each length in the
  2391. sorted table, and then entering the symbols in order in the sorted
  2392. table. The sorted table is work[], with that space being provided by
  2393. the caller.
  2394. The length counts are used for other purposes as well, i.e. finding
  2395. the minimum and maximum length codes, determining if there are any
  2396. codes at all, checking for a valid set of lengths, and looking ahead
  2397. at length counts to determine sub-table sizes when building the
  2398. decoding tables.
  2399. */
  2400. /* accumulate lengths for codes (assumes lens[] all in 0..MAXBITS) */
  2401. for (len = 0; len <= MAXBITS; len++) {
  2402. count[len] = 0;
  2403. }
  2404. for (sym = 0; sym < codes; sym++) {
  2405. count[lens[lens_index + sym]]++;
  2406. }
  2407. /* bound code lengths, force root to be within code lengths */
  2408. root = bits;
  2409. for (max = MAXBITS; max >= 1; max--) {
  2410. if (count[max] !== 0) { break; }
  2411. }
  2412. if (root > max) {
  2413. root = max;
  2414. }
  2415. if (max === 0) { /* no symbols to code at all */
  2416. //table.op[opts.table_index] = 64; //here.op = (var char)64; /* invalid code marker */
  2417. //table.bits[opts.table_index] = 1; //here.bits = (var char)1;
  2418. //table.val[opts.table_index++] = 0; //here.val = (var short)0;
  2419. table[table_index++] = (1 << 24) | (64 << 16) | 0;
  2420. //table.op[opts.table_index] = 64;
  2421. //table.bits[opts.table_index] = 1;
  2422. //table.val[opts.table_index++] = 0;
  2423. table[table_index++] = (1 << 24) | (64 << 16) | 0;
  2424. opts.bits = 1;
  2425. return 0; /* no symbols, but wait for decoding to report error */
  2426. }
  2427. for (min = 1; min < max; min++) {
  2428. if (count[min] !== 0) { break; }
  2429. }
  2430. if (root < min) {
  2431. root = min;
  2432. }
  2433. /* check for an over-subscribed or incomplete set of lengths */
  2434. left = 1;
  2435. for (len = 1; len <= MAXBITS; len++) {
  2436. left <<= 1;
  2437. left -= count[len];
  2438. if (left < 0) {
  2439. return -1;
  2440. } /* over-subscribed */
  2441. }
  2442. if (left > 0 && (type === CODES || max !== 1)) {
  2443. return -1; /* incomplete set */
  2444. }
  2445. /* generate offsets into symbol table for each length for sorting */
  2446. offs[1] = 0;
  2447. for (len = 1; len < MAXBITS; len++) {
  2448. offs[len + 1] = offs[len] + count[len];
  2449. }
  2450. /* sort symbols by length, by symbol order within each length */
  2451. for (sym = 0; sym < codes; sym++) {
  2452. if (lens[lens_index + sym] !== 0) {
  2453. work[offs[lens[lens_index + sym]]++] = sym;
  2454. }
  2455. }
  2456. /*
  2457. Create and fill in decoding tables. In this loop, the table being
  2458. filled is at next and has curr index bits. The code being used is huff
  2459. with length len. That code is converted to an index by dropping drop
  2460. bits off of the bottom. For codes where len is less than drop + curr,
  2461. those top drop + curr - len bits are incremented through all values to
  2462. fill the table with replicated entries.
  2463. root is the number of index bits for the root table. When len exceeds
  2464. root, sub-tables are created pointed to by the root entry with an index
  2465. of the low root bits of huff. This is saved in low to check for when a
  2466. new sub-table should be started. drop is zero when the root table is
  2467. being filled, and drop is root when sub-tables are being filled.
  2468. When a new sub-table is needed, it is necessary to look ahead in the
  2469. code lengths to determine what size sub-table is needed. The length
  2470. counts are used for this, and so count[] is decremented as codes are
  2471. entered in the tables.
  2472. used keeps track of how many table entries have been allocated from the
  2473. provided *table space. It is checked for LENS and DIST tables against
  2474. the constants ENOUGH_LENS and ENOUGH_DISTS to guard against changes in
  2475. the initial root table size constants. See the comments in inftrees.h
  2476. for more information.
  2477. sym increments through all symbols, and the loop terminates when
  2478. all codes of length max, i.e. all codes, have been processed. This
  2479. routine permits incomplete codes, so another loop after this one fills
  2480. in the rest of the decoding tables with invalid code markers.
  2481. */
  2482. /* set up for code type */
  2483. // poor man optimization - use if-else instead of switch,
  2484. // to avoid deopts in old v8
  2485. if (type === CODES) {
  2486. base = extra = work; /* dummy value--not used */
  2487. end = 19;
  2488. } else if (type === LENS) {
  2489. base = lbase;
  2490. base_index -= 257;
  2491. extra = lext;
  2492. extra_index -= 257;
  2493. end = 256;
  2494. } else { /* DISTS */
  2495. base = dbase;
  2496. extra = dext;
  2497. end = -1;
  2498. }
  2499. /* initialize opts for loop */
  2500. huff = 0; /* starting code */
  2501. sym = 0; /* starting code symbol */
  2502. len = min; /* starting code length */
  2503. next = table_index; /* current table to fill in */
  2504. curr = root; /* current table index bits */
  2505. drop = 0; /* current bits to drop from code for index */
  2506. low = -1; /* trigger new sub-table when len > root */
  2507. used = 1 << root; /* use root table entries */
  2508. mask = used - 1; /* mask for comparing low */
  2509. /* check available table space */
  2510. if ((type === LENS && used > ENOUGH_LENS) ||
  2511. (type === DISTS && used > ENOUGH_DISTS)) {
  2512. return 1;
  2513. }
  2514. /* process all codes and make table entries */
  2515. for (;;) {
  2516. /* create table entry */
  2517. here_bits = len - drop;
  2518. if (work[sym] < end) {
  2519. here_op = 0;
  2520. here_val = work[sym];
  2521. }
  2522. else if (work[sym] > end) {
  2523. here_op = extra[extra_index + work[sym]];
  2524. here_val = base[base_index + work[sym]];
  2525. }
  2526. else {
  2527. here_op = 32 + 64; /* end of block */
  2528. here_val = 0;
  2529. }
  2530. /* replicate for those indices with low len bits equal to huff */
  2531. incr = 1 << (len - drop);
  2532. fill = 1 << curr;
  2533. min = fill; /* save offset to next table */
  2534. do {
  2535. fill -= incr;
  2536. table[next + (huff >> drop) + fill] = (here_bits << 24) | (here_op << 16) | here_val |0;
  2537. } while (fill !== 0);
  2538. /* backwards increment the len-bit code huff */
  2539. incr = 1 << (len - 1);
  2540. while (huff & incr) {
  2541. incr >>= 1;
  2542. }
  2543. if (incr !== 0) {
  2544. huff &= incr - 1;
  2545. huff += incr;
  2546. } else {
  2547. huff = 0;
  2548. }
  2549. /* go to next symbol, update count, len */
  2550. sym++;
  2551. if (--count[len] === 0) {
  2552. if (len === max) { break; }
  2553. len = lens[lens_index + work[sym]];
  2554. }
  2555. /* create new sub-table if needed */
  2556. if (len > root && (huff & mask) !== low) {
  2557. /* if first time, transition to sub-tables */
  2558. if (drop === 0) {
  2559. drop = root;
  2560. }
  2561. /* increment past last table */
  2562. next += min; /* here min is 1 << curr */
  2563. /* determine length of next table */
  2564. curr = len - drop;
  2565. left = 1 << curr;
  2566. while (curr + drop < max) {
  2567. left -= count[curr + drop];
  2568. if (left <= 0) { break; }
  2569. curr++;
  2570. left <<= 1;
  2571. }
  2572. /* check for enough space */
  2573. used += 1 << curr;
  2574. if ((type === LENS && used > ENOUGH_LENS) ||
  2575. (type === DISTS && used > ENOUGH_DISTS)) {
  2576. return 1;
  2577. }
  2578. /* point entry in root table to sub-table */
  2579. low = huff & mask;
  2580. /*table.op[low] = curr;
  2581. table.bits[low] = root;
  2582. table.val[low] = next - opts.table_index;*/
  2583. table[low] = (root << 24) | (curr << 16) | (next - table_index) |0;
  2584. }
  2585. }
  2586. /* fill in remaining table entry if code is incomplete (guaranteed to have
  2587. at most one remaining entry, since if the code is incomplete, the
  2588. maximum code length that was allowed to get this far is one bit) */
  2589. if (huff !== 0) {
  2590. //table.op[next + huff] = 64; /* invalid code marker */
  2591. //table.bits[next + huff] = len - drop;
  2592. //table.val[next + huff] = 0;
  2593. table[next + huff] = ((len - drop) << 24) | (64 << 16) |0;
  2594. }
  2595. /* set return parameters */
  2596. //opts.table_index += used;
  2597. opts.bits = root;
  2598. return 0;
  2599. };
  2600. },{"../utils/common":1}],10:[function(require,module,exports){
  2601. module.exports = {
  2602. 2: 'need dictionary', /* Z_NEED_DICT 2 */
  2603. 1: 'stream end', /* Z_STREAM_END 1 */
  2604. 0: '', /* Z_OK 0 */
  2605. '-1': 'file error', /* Z_ERRNO (-1) */
  2606. '-2': 'stream error', /* Z_STREAM_ERROR (-2) */
  2607. '-3': 'data error', /* Z_DATA_ERROR (-3) */
  2608. '-4': 'insufficient memory', /* Z_MEM_ERROR (-4) */
  2609. '-5': 'buffer error', /* Z_BUF_ERROR (-5) */
  2610. '-6': 'incompatible version' /* Z_VERSION_ERROR (-6) */
  2611. };
  2612. },{}],11:[function(require,module,exports){
  2613. function ZStream() {
  2614. /* next input byte */
  2615. this.input = null; // JS specific, because we have no pointers
  2616. this.next_in = 0;
  2617. /* number of bytes available at input */
  2618. this.avail_in = 0;
  2619. /* total number of input bytes read so far */
  2620. this.total_in = 0;
  2621. /* next output byte should be put there */
  2622. this.output = null; // JS specific, because we have no pointers
  2623. this.next_out = 0;
  2624. /* remaining free space at output */
  2625. this.avail_out = 0;
  2626. /* total number of bytes output so far */
  2627. this.total_out = 0;
  2628. /* last error message, NULL if no error */
  2629. this.msg = ''/*Z_NULL*/;
  2630. /* not visible by applications */
  2631. this.state = null;
  2632. /* best guess about the data type: binary or text */
  2633. this.data_type = 2/*Z_UNKNOWN*/;
  2634. /* adler32 value of the uncompressed data */
  2635. this.adler = 0;
  2636. }
  2637. module.exports = ZStream;
  2638. },{}],"/lib/inflate.js":[function(require,module,exports){
  2639. var zlib_inflate = require('./zlib/inflate');
  2640. var utils = require('./utils/common');
  2641. var strings = require('./utils/strings');
  2642. var c = require('./zlib/constants');
  2643. var msg = require('./zlib/messages');
  2644. var ZStream = require('./zlib/zstream');
  2645. var GZheader = require('./zlib/gzheader');
  2646. var toString = Object.prototype.toString;
  2647. /**
  2648. * class Inflate
  2649. *
  2650. * Generic JS-style wrapper for zlib calls. If you don't need
  2651. * streaming behaviour - use more simple functions: [[inflate]]
  2652. * and [[inflateRaw]].
  2653. **/
  2654. /* internal
  2655. * inflate.chunks -> Array
  2656. *
  2657. * Chunks of output data, if [[Inflate#onData]] not overriden.
  2658. **/
  2659. /**
  2660. * Inflate.result -> Uint8Array|Array|String
  2661. *
  2662. * Uncompressed result, generated by default [[Inflate#onData]]
  2663. * and [[Inflate#onEnd]] handlers. Filled after you push last chunk
  2664. * (call [[Inflate#push]] with `Z_FINISH` / `true` param) or if you
  2665. * push a chunk with explicit flush (call [[Inflate#push]] with
  2666. * `Z_SYNC_FLUSH` param).
  2667. **/
  2668. /**
  2669. * Inflate.err -> Number
  2670. *
  2671. * Error code after inflate finished. 0 (Z_OK) on success.
  2672. * Should be checked if broken data possible.
  2673. **/
  2674. /**
  2675. * Inflate.msg -> String
  2676. *
  2677. * Error message, if [[Inflate.err]] != 0
  2678. **/
  2679. /**
  2680. * new Inflate(options)
  2681. * - options (Object): zlib inflate options.
  2682. *
  2683. * Creates new inflator instance with specified params. Throws exception
  2684. * on bad params. Supported options:
  2685. *
  2686. * - `windowBits`
  2687. * - `dictionary`
  2688. *
  2689. * [http://zlib.net/manual.html#Advanced](http://zlib.net/manual.html#Advanced)
  2690. * for more information on these.
  2691. *
  2692. * Additional options, for internal needs:
  2693. *
  2694. * - `chunkSize` - size of generated data chunks (16K by default)
  2695. * - `raw` (Boolean) - do raw inflate
  2696. * - `to` (String) - if equal to 'string', then result will be converted
  2697. * from utf8 to utf16 (javascript) string. When string output requested,
  2698. * chunk length can differ from `chunkSize`, depending on content.
  2699. *
  2700. * By default, when no options set, autodetect deflate/gzip data format via
  2701. * wrapper header.
  2702. *
  2703. * ##### Example:
  2704. *
  2705. * ```javascript
  2706. * var pako = require('pako')
  2707. * , chunk1 = Uint8Array([1,2,3,4,5,6,7,8,9])
  2708. * , chunk2 = Uint8Array([10,11,12,13,14,15,16,17,18,19]);
  2709. *
  2710. * var inflate = new pako.Inflate({ level: 3});
  2711. *
  2712. * inflate.push(chunk1, false);
  2713. * inflate.push(chunk2, true); // true -> last chunk
  2714. *
  2715. * if (inflate.err) { throw new Error(inflate.err); }
  2716. *
  2717. * console.log(inflate.result);
  2718. * ```
  2719. **/
  2720. function Inflate(options) {
  2721. if (!(this instanceof Inflate)) return new Inflate(options);
  2722. this.options = utils.assign({
  2723. chunkSize: 16384,
  2724. windowBits: 0,
  2725. to: ''
  2726. }, options || {});
  2727. var opt = this.options;
  2728. // Force window size for `raw` data, if not set directly,
  2729. // because we have no header for autodetect.
  2730. if (opt.raw && (opt.windowBits >= 0) && (opt.windowBits < 16)) {
  2731. opt.windowBits = -opt.windowBits;
  2732. if (opt.windowBits === 0) { opt.windowBits = -15; }
  2733. }
  2734. // If `windowBits` not defined (and mode not raw) - set autodetect flag for gzip/deflate
  2735. if ((opt.windowBits >= 0) && (opt.windowBits < 16) &&
  2736. !(options && options.windowBits)) {
  2737. opt.windowBits += 32;
  2738. }
  2739. // Gzip header has no info about windows size, we can do autodetect only
  2740. // for deflate. So, if window size not set, force it to max when gzip possible
  2741. if ((opt.windowBits > 15) && (opt.windowBits < 48)) {
  2742. // bit 3 (16) -> gzipped data
  2743. // bit 4 (32) -> autodetect gzip/deflate
  2744. if ((opt.windowBits & 15) === 0) {
  2745. opt.windowBits |= 15;
  2746. }
  2747. }
  2748. this.err = 0; // error code, if happens (0 = Z_OK)
  2749. this.msg = ''; // error message
  2750. this.ended = false; // used to avoid multiple onEnd() calls
  2751. this.chunks = []; // chunks of compressed data
  2752. this.strm = new ZStream();
  2753. this.strm.avail_out = 0;
  2754. var status = zlib_inflate.inflateInit2(
  2755. this.strm,
  2756. opt.windowBits
  2757. );
  2758. if (status !== c.Z_OK) {
  2759. throw new Error(msg[status]);
  2760. }
  2761. this.header = new GZheader();
  2762. zlib_inflate.inflateGetHeader(this.strm, this.header);
  2763. }
  2764. /**
  2765. * Inflate#push(data[, mode]) -> Boolean
  2766. * - data (Uint8Array|Array|ArrayBuffer|String): input data
  2767. * - mode (Number|Boolean): 0..6 for corresponding Z_NO_FLUSH..Z_TREE modes.
  2768. * See constants. Skipped or `false` means Z_NO_FLUSH, `true` meansh Z_FINISH.
  2769. *
  2770. * Sends input data to inflate pipe, generating [[Inflate#onData]] calls with
  2771. * new output chunks. Returns `true` on success. The last data block must have
  2772. * mode Z_FINISH (or `true`). That will flush internal pending buffers and call
  2773. * [[Inflate#onEnd]]. For interim explicit flushes (without ending the stream) you
  2774. * can use mode Z_SYNC_FLUSH, keeping the decompression context.
  2775. *
  2776. * On fail call [[Inflate#onEnd]] with error code and return false.
  2777. *
  2778. * We strongly recommend to use `Uint8Array` on input for best speed (output
  2779. * format is detected automatically). Also, don't skip last param and always
  2780. * use the same type in your code (boolean or number). That will improve JS speed.
  2781. *
  2782. * For regular `Array`-s make sure all elements are [0..255].
  2783. *
  2784. * ##### Example
  2785. *
  2786. * ```javascript
  2787. * push(chunk, false); // push one of data chunks
  2788. * ...
  2789. * push(chunk, true); // push last chunk
  2790. * ```
  2791. **/
  2792. Inflate.prototype.push = function (data, mode) {
  2793. var strm = this.strm;
  2794. var chunkSize = this.options.chunkSize;
  2795. var dictionary = this.options.dictionary;
  2796. var status, _mode;
  2797. var next_out_utf8, tail, utf8str;
  2798. var dict;
  2799. // Flag to properly process Z_BUF_ERROR on testing inflate call
  2800. // when we check that all output data was flushed.
  2801. var allowBufError = false;
  2802. if (this.ended) { return false; }
  2803. _mode = (mode === ~~mode) ? mode : ((mode === true) ? c.Z_FINISH : c.Z_NO_FLUSH);
  2804. // Convert data if needed
  2805. if (typeof data === 'string') {
  2806. // Only binary strings can be decompressed on practice
  2807. strm.input = strings.binstring2buf(data);
  2808. } else if (toString.call(data) === '[object ArrayBuffer]') {
  2809. strm.input = new Uint8Array(data);
  2810. } else {
  2811. strm.input = data;
  2812. }
  2813. strm.next_in = 0;
  2814. strm.avail_in = strm.input.length;
  2815. do {
  2816. if (strm.avail_out === 0) {
  2817. strm.output = new utils.Buf8(chunkSize);
  2818. strm.next_out = 0;
  2819. strm.avail_out = chunkSize;
  2820. }
  2821. status = zlib_inflate.inflate(strm, c.Z_NO_FLUSH); /* no bad return value */
  2822. if (status === c.Z_NEED_DICT && dictionary) {
  2823. // Convert data if needed
  2824. if (typeof dictionary === 'string') {
  2825. dict = strings.string2buf(dictionary);
  2826. } else if (toString.call(dictionary) === '[object ArrayBuffer]') {
  2827. dict = new Uint8Array(dictionary);
  2828. } else {
  2829. dict = dictionary;
  2830. }
  2831. status = zlib_inflate.inflateSetDictionary(this.strm, dict);
  2832. }
  2833. if (status === c.Z_BUF_ERROR && allowBufError === true) {
  2834. status = c.Z_OK;
  2835. allowBufError = false;
  2836. }
  2837. if (status !== c.Z_STREAM_END && status !== c.Z_OK) {
  2838. this.onEnd(status);
  2839. this.ended = true;
  2840. return false;
  2841. }
  2842. if (strm.next_out) {
  2843. if (strm.avail_out === 0 || status === c.Z_STREAM_END || (strm.avail_in === 0 && (_mode === c.Z_FINISH || _mode === c.Z_SYNC_FLUSH))) {
  2844. if (this.options.to === 'string') {
  2845. next_out_utf8 = strings.utf8border(strm.output, strm.next_out);
  2846. tail = strm.next_out - next_out_utf8;
  2847. utf8str = strings.buf2string(strm.output, next_out_utf8);
  2848. // move tail
  2849. strm.next_out = tail;
  2850. strm.avail_out = chunkSize - tail;
  2851. if (tail) { utils.arraySet(strm.output, strm.output, next_out_utf8, tail, 0); }
  2852. this.onData(utf8str);
  2853. } else {
  2854. this.onData(utils.shrinkBuf(strm.output, strm.next_out));
  2855. }
  2856. }
  2857. }
  2858. // When no more input data, we should check that internal inflate buffers
  2859. // are flushed. The only way to do it when avail_out = 0 - run one more
  2860. // inflate pass. But if output data not exists, inflate return Z_BUF_ERROR.
  2861. // Here we set flag to process this error properly.
  2862. //
  2863. // NOTE. Deflate does not return error in this case and does not needs such
  2864. // logic.
  2865. if (strm.avail_in === 0 && strm.avail_out === 0) {
  2866. allowBufError = true;
  2867. }
  2868. } while ((strm.avail_in > 0 || strm.avail_out === 0) && status !== c.Z_STREAM_END);
  2869. if (status === c.Z_STREAM_END) {
  2870. _mode = c.Z_FINISH;
  2871. }
  2872. // Finalize on the last chunk.
  2873. if (_mode === c.Z_FINISH) {
  2874. status = zlib_inflate.inflateEnd(this.strm);
  2875. this.onEnd(status);
  2876. this.ended = true;
  2877. return status === c.Z_OK;
  2878. }
  2879. // callback interim results if Z_SYNC_FLUSH.
  2880. if (_mode === c.Z_SYNC_FLUSH) {
  2881. this.onEnd(c.Z_OK);
  2882. strm.avail_out = 0;
  2883. return true;
  2884. }
  2885. return true;
  2886. };
  2887. /**
  2888. * Inflate#onData(chunk) -> Void
  2889. * - chunk (Uint8Array|Array|String): ouput data. Type of array depends
  2890. * on js engine support. When string output requested, each chunk
  2891. * will be string.
  2892. *
  2893. * By default, stores data blocks in `chunks[]` property and glue
  2894. * those in `onEnd`. Override this handler, if you need another behaviour.
  2895. **/
  2896. Inflate.prototype.onData = function (chunk) {
  2897. this.chunks.push(chunk);
  2898. };
  2899. /**
  2900. * Inflate#onEnd(status) -> Void
  2901. * - status (Number): inflate status. 0 (Z_OK) on success,
  2902. * other if not.
  2903. *
  2904. * Called either after you tell inflate that the input stream is
  2905. * complete (Z_FINISH) or should be flushed (Z_SYNC_FLUSH)
  2906. * or if an error happened. By default - join collected chunks,
  2907. * free memory and fill `results` / `err` properties.
  2908. **/
  2909. Inflate.prototype.onEnd = function (status) {
  2910. // On success - join
  2911. if (status === c.Z_OK) {
  2912. if (this.options.to === 'string') {
  2913. // Glue & convert here, until we teach pako to send
  2914. // utf8 alligned strings to onData
  2915. this.result = this.chunks.join('');
  2916. } else {
  2917. this.result = utils.flattenChunks(this.chunks);
  2918. }
  2919. }
  2920. this.chunks = [];
  2921. this.err = status;
  2922. this.msg = this.strm.msg;
  2923. };
  2924. /**
  2925. * inflate(data[, options]) -> Uint8Array|Array|String
  2926. * - data (Uint8Array|Array|String): input data to decompress.
  2927. * - options (Object): zlib inflate options.
  2928. *
  2929. * Decompress `data` with inflate/ungzip and `options`. Autodetect
  2930. * format via wrapper header by default. That's why we don't provide
  2931. * separate `ungzip` method.
  2932. *
  2933. * Supported options are:
  2934. *
  2935. * - windowBits
  2936. *
  2937. * [http://zlib.net/manual.html#Advanced](http://zlib.net/manual.html#Advanced)
  2938. * for more information.
  2939. *
  2940. * Sugar (options):
  2941. *
  2942. * - `raw` (Boolean) - say that we work with raw stream, if you don't wish to specify
  2943. * negative windowBits implicitly.
  2944. * - `to` (String) - if equal to 'string', then result will be converted
  2945. * from utf8 to utf16 (javascript) string. When string output requested,
  2946. * chunk length can differ from `chunkSize`, depending on content.
  2947. *
  2948. *
  2949. * ##### Example:
  2950. *
  2951. * ```javascript
  2952. * var pako = require('pako')
  2953. * , input = pako.deflate([1,2,3,4,5,6,7,8,9])
  2954. * , output;
  2955. *
  2956. * try {
  2957. * output = pako.inflate(input);
  2958. * } catch (err)
  2959. * console.log(err);
  2960. * }
  2961. * ```
  2962. **/
  2963. function inflate(input, options) {
  2964. var inflator = new Inflate(options);
  2965. inflator.push(input, true);
  2966. // That will never happens, if you don't cheat with options :)
  2967. if (inflator.err) { throw inflator.msg || msg[inflator.err]; }
  2968. return inflator.result;
  2969. }
  2970. /**
  2971. * inflateRaw(data[, options]) -> Uint8Array|Array|String
  2972. * - data (Uint8Array|Array|String): input data to decompress.
  2973. * - options (Object): zlib inflate options.
  2974. *
  2975. * The same as [[inflate]], but creates raw data, without wrapper
  2976. * (header and adler32 crc).
  2977. **/
  2978. function inflateRaw(input, options) {
  2979. options = options || {};
  2980. options.raw = true;
  2981. return inflate(input, options);
  2982. }
  2983. /**
  2984. * ungzip(data[, options]) -> Uint8Array|Array|String
  2985. * - data (Uint8Array|Array|String): input data to decompress.
  2986. * - options (Object): zlib inflate options.
  2987. *
  2988. * Just shortcut to [[inflate]], because it autodetects format
  2989. * by header.content. Done for convenience.
  2990. **/
  2991. exports.Inflate = Inflate;
  2992. exports.inflate = inflate;
  2993. exports.inflateRaw = inflateRaw;
  2994. exports.ungzip = inflate;
  2995. },{"./utils/common":1,"./utils/strings":2,"./zlib/constants":4,"./zlib/gzheader":6,"./zlib/inflate":8,"./zlib/messages":10,"./zlib/zstream":11}]},{},[])("/lib/inflate.js")
  2996. });
  2997. var pako = tmp;
  2998. // Datatype sizes
  2999. var sizeOfUint16 = Uint16Array.BYTES_PER_ELEMENT;
  3000. var sizeOfInt32 = Int32Array.BYTES_PER_ELEMENT;
  3001. var sizeOfUint32 = Uint32Array.BYTES_PER_ELEMENT;
  3002. var Types = {
  3003. METADATA: 0,
  3004. TERRAIN: 1,
  3005. DBROOT: 2,
  3006. };
  3007. Types.fromString = function (s) {
  3008. if (s === "Metadata") {
  3009. return Types.METADATA;
  3010. } else if (s === "Terrain") {
  3011. return Types.TERRAIN;
  3012. } else if (s === "DbRoot") {
  3013. return Types.DBROOT;
  3014. }
  3015. };
  3016. function decodeGoogleEarthEnterprisePacket(parameters, transferableObjects) {
  3017. var type = Types.fromString(parameters.type);
  3018. var buffer = parameters.buffer;
  3019. decodeGoogleEarthEnterpriseData(parameters.key, buffer);
  3020. var uncompressedTerrain = uncompressPacket(buffer);
  3021. buffer = uncompressedTerrain.buffer;
  3022. var length = uncompressedTerrain.length;
  3023. switch (type) {
  3024. case Types.METADATA:
  3025. return processMetadata(buffer, length, parameters.quadKey);
  3026. case Types.TERRAIN:
  3027. return processTerrain(buffer, length, transferableObjects);
  3028. case Types.DBROOT:
  3029. transferableObjects.push(buffer);
  3030. return {
  3031. buffer: buffer,
  3032. };
  3033. }
  3034. }
  3035. var qtMagic = 32301;
  3036. function processMetadata(buffer, totalSize, quadKey) {
  3037. var dv = new DataView(buffer);
  3038. var offset = 0;
  3039. var magic = dv.getUint32(offset, true);
  3040. offset += sizeOfUint32;
  3041. if (magic !== qtMagic) {
  3042. throw new RuntimeError.RuntimeError("Invalid magic");
  3043. }
  3044. var dataTypeId = dv.getUint32(offset, true);
  3045. offset += sizeOfUint32;
  3046. if (dataTypeId !== 1) {
  3047. throw new RuntimeError.RuntimeError("Invalid data type. Must be 1 for QuadTreePacket");
  3048. }
  3049. // Tile format version
  3050. var quadVersion = dv.getUint32(offset, true);
  3051. offset += sizeOfUint32;
  3052. if (quadVersion !== 2) {
  3053. throw new RuntimeError.RuntimeError(
  3054. "Invalid QuadTreePacket version. Only version 2 is supported."
  3055. );
  3056. }
  3057. var numInstances = dv.getInt32(offset, true);
  3058. offset += sizeOfInt32;
  3059. var dataInstanceSize = dv.getInt32(offset, true);
  3060. offset += sizeOfInt32;
  3061. if (dataInstanceSize !== 32) {
  3062. throw new RuntimeError.RuntimeError("Invalid instance size.");
  3063. }
  3064. var dataBufferOffset = dv.getInt32(offset, true);
  3065. offset += sizeOfInt32;
  3066. var dataBufferSize = dv.getInt32(offset, true);
  3067. offset += sizeOfInt32;
  3068. var metaBufferSize = dv.getInt32(offset, true);
  3069. offset += sizeOfInt32;
  3070. // Offset from beginning of packet (instances + current offset)
  3071. if (dataBufferOffset !== numInstances * dataInstanceSize + offset) {
  3072. throw new RuntimeError.RuntimeError("Invalid dataBufferOffset");
  3073. }
  3074. // Verify the packets is all there header + instances + dataBuffer + metaBuffer
  3075. if (dataBufferOffset + dataBufferSize + metaBufferSize !== totalSize) {
  3076. throw new RuntimeError.RuntimeError("Invalid packet offsets");
  3077. }
  3078. // Read all the instances
  3079. var instances = [];
  3080. for (var i = 0; i < numInstances; ++i) {
  3081. var bitfield = dv.getUint8(offset);
  3082. ++offset;
  3083. ++offset; // 2 byte align
  3084. var cnodeVersion = dv.getUint16(offset, true);
  3085. offset += sizeOfUint16;
  3086. var imageVersion = dv.getUint16(offset, true);
  3087. offset += sizeOfUint16;
  3088. var terrainVersion = dv.getUint16(offset, true);
  3089. offset += sizeOfUint16;
  3090. // Number of channels stored in the dataBuffer
  3091. offset += sizeOfUint16;
  3092. offset += sizeOfUint16; // 4 byte align
  3093. // Channel type offset into dataBuffer
  3094. offset += sizeOfInt32;
  3095. // Channel version offset into dataBuffer
  3096. offset += sizeOfInt32;
  3097. offset += 8; // Ignore image neighbors for now
  3098. // Data providers
  3099. var imageProvider = dv.getUint8(offset++);
  3100. var terrainProvider = dv.getUint8(offset++);
  3101. offset += sizeOfUint16; // 4 byte align
  3102. instances.push(
  3103. new GoogleEarthEnterpriseTileInformation(
  3104. bitfield,
  3105. cnodeVersion,
  3106. imageVersion,
  3107. terrainVersion,
  3108. imageProvider,
  3109. terrainProvider
  3110. )
  3111. );
  3112. }
  3113. var tileInfo = [];
  3114. var index = 0;
  3115. function populateTiles(parentKey, parent, level) {
  3116. var isLeaf = false;
  3117. if (level === 4) {
  3118. if (parent.hasSubtree()) {
  3119. return; // We have a subtree, so just return
  3120. }
  3121. isLeaf = true; // No subtree, so set all children to null
  3122. }
  3123. for (var i = 0; i < 4; ++i) {
  3124. var childKey = parentKey + i.toString();
  3125. if (isLeaf) {
  3126. // No subtree so set all children to null
  3127. tileInfo[childKey] = null;
  3128. } else if (level < 4) {
  3129. // We are still in the middle of the subtree, so add child
  3130. // only if their bits are set, otherwise set child to null.
  3131. if (!parent.hasChild(i)) {
  3132. tileInfo[childKey] = null;
  3133. } else {
  3134. if (index === numInstances) {
  3135. console.log("Incorrect number of instances");
  3136. return;
  3137. }
  3138. var instance = instances[index++];
  3139. tileInfo[childKey] = instance;
  3140. populateTiles(childKey, instance, level + 1);
  3141. }
  3142. }
  3143. }
  3144. }
  3145. var level = 0;
  3146. var root = instances[index++];
  3147. if (quadKey === "") {
  3148. // Root tile has data at its root and one less level
  3149. ++level;
  3150. } else {
  3151. tileInfo[quadKey] = root; // This will only contain the child bitmask
  3152. }
  3153. populateTiles(quadKey, root, level);
  3154. return tileInfo;
  3155. }
  3156. function processTerrain(buffer, totalSize, transferableObjects) {
  3157. var dv = new DataView(buffer);
  3158. var offset = 0;
  3159. var terrainTiles = [];
  3160. while (offset < totalSize) {
  3161. // Each tile is split into 4 parts
  3162. var tileStart = offset;
  3163. for (var quad = 0; quad < 4; ++quad) {
  3164. var size = dv.getUint32(offset, true);
  3165. offset += sizeOfUint32;
  3166. offset += size;
  3167. }
  3168. var tile = buffer.slice(tileStart, offset);
  3169. transferableObjects.push(tile);
  3170. terrainTiles.push(tile);
  3171. }
  3172. return terrainTiles;
  3173. }
  3174. var compressedMagic$1 = 0x7468dead;
  3175. var compressedMagicSwap$1 = 0xadde6874;
  3176. function uncompressPacket(data) {
  3177. // The layout of this decoded data is
  3178. // Magic Uint32
  3179. // Size Uint32
  3180. // [GZipped chunk of Size bytes]
  3181. // Pullout magic and verify we have the correct data
  3182. var dv = new DataView(data);
  3183. var offset = 0;
  3184. var magic = dv.getUint32(offset, true);
  3185. offset += sizeOfUint32;
  3186. if (magic !== compressedMagic$1 && magic !== compressedMagicSwap$1) {
  3187. throw new RuntimeError.RuntimeError("Invalid magic");
  3188. }
  3189. // Get the size of the compressed buffer - the endianness depends on which magic was used
  3190. var size = dv.getUint32(offset, magic === compressedMagic$1);
  3191. offset += sizeOfUint32;
  3192. var compressedPacket = new Uint8Array(data, offset);
  3193. var uncompressedPacket = pako.inflate(compressedPacket);
  3194. if (uncompressedPacket.length !== size) {
  3195. throw new RuntimeError.RuntimeError("Size of packet doesn't match header");
  3196. }
  3197. return uncompressedPacket;
  3198. }
  3199. var decodeGoogleEarthEnterprisePacket$1 = createTaskProcessorWorker(decodeGoogleEarthEnterprisePacket);
  3200. return decodeGoogleEarthEnterprisePacket$1;
  3201. });
  3202. //# sourceMappingURL=decodeGoogleEarthEnterprisePacket.js.map