-
Notifications
You must be signed in to change notification settings - Fork 35
/
EncoderDecoderTogether.src.js
453 lines (431 loc) · 17.7 KB
/
EncoderDecoderTogether.src.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
/** @define {boolean} */
var ENCODEINTO_BUILD = false;
(function(window){
"use strict";
//var log = Math.log;
//var LN2 = Math.LN2;
//var clz32 = Math.clz32 || function(x) {return 31 - log(x >> 0) / LN2 | 0};
var fromCharCode = String.fromCharCode;
var Object_prototype_toString = ({}).toString;
var sharedArrayBufferString = Object_prototype_toString.call(window["SharedArrayBuffer"]);
var undefinedObjectString = Object_prototype_toString();
var NativeUint8Array = window.Uint8Array;
var patchedU8Array = NativeUint8Array || Array;
var nativeArrayBuffer = NativeUint8Array ? ArrayBuffer : patchedU8Array;
var arrayBuffer_isView = nativeArrayBuffer.isView || function(x) {return x && "length" in x};
var arrayBufferString = Object_prototype_toString.call(nativeArrayBuffer.prototype);
var window_encodeURIComponent = encodeURIComponent;
var window_parseInt = parseInt;
var TextEncoderPrototype = TextEncoder["prototype"];
var GlobalTextEncoder = window["TextEncoder"];
var decoderRegexp = /[\xc0-\xff][\x80-\xbf]+|[\x80-\xff]/g;
var encoderRegexp = /[\x80-\uD7ff\uDC00-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]?/g;
var tmpBufferU16 = new (NativeUint8Array ? Uint16Array : patchedU8Array)(32);
var globalTextEncoderPrototype;
var globalTextEncoderInstance;
/*function decoderReplacer(encoded) {
var cp0 = encoded.charCodeAt(0), codePoint=0x110000, i=0, stringLen=encoded.length|0, result="";
switch(cp0 >> 4) {
// no 1 byte sequences
case 12:
case 13:
codePoint = ((cp0 & 0x1F) << 6) | (encoded.charCodeAt(1) & 0x3F);
i = codePoint < 0x80 ? 0 : 2;
break;
case 14:
codePoint = ((cp0 & 0x0F) << 12) | ((encoded.charCodeAt(1) & 0x3F) << 6) | (encoded.charCodeAt(2) & 0x3F);
i = codePoint < 0x800 ? 0 : 3;
break;
case 15:
if ((cp0 >> 3) === 30) {
codePoint = ((cp0 & 0x07) << 18) | ((encoded.charCodeAt(1) & 0x3F) << 12) | ((encoded.charCodeAt(2) & 0x3F) << 6) | (encoded.charCodeAt(3) & 0x3F);
i = codePoint < 0x10000 ? 0 : 4;
}
}
if (i) {
if (stringLen < i) {
i = 0;
} else if (codePoint < 0x10000) { // BMP code point
result = fromCharCode(codePoint);
} else if (codePoint < 0x110000) {
codePoint = codePoint - 0x10080|0;//- 0x10000|0;
result = fromCharCode(
(codePoint >> 10) + 0xD800|0, // highSurrogate
(codePoint & 0x3ff) + 0xDC00|0 // lowSurrogate
);
} else i = 0; // to fill it in with INVALIDs
}
for (; i < stringLen; i=i+1|0) result += "\ufffd"; // fill rest with replacement character
return result;
}*/
function TextDecoder(){};
TextDecoder["prototype"]["decode"] = function(inputArrayOrBuffer){
var inputAs8 = inputArrayOrBuffer, asObjectString;
if (!arrayBuffer_isView(inputAs8)) {
asObjectString = Object_prototype_toString.call(inputAs8);
if (asObjectString !== arrayBufferString && asObjectString !== sharedArrayBufferString && asObjectString !== undefinedObjectString)
throw TypeError("Failed to execute 'decode' on 'TextDecoder': The provided value is not of type '(ArrayBuffer or ArrayBufferView)'");
inputAs8 = NativeUint8Array ? new patchedU8Array(inputAs8) : inputAs8 || [];
}
var resultingString="", tmpStr="", index=0, len=inputAs8.length|0, lenMinus32=len-32|0, nextEnd=0, nextStop=0, cp0=0, codePoint=0, minBits=0, cp1=0, pos=0, tmp=-1;
// Note that tmp represents the 2nd half of a surrogate pair incase a surrogate gets divided between blocks
for (; index < len; ) {
nextEnd = index <= lenMinus32 ? 32 : len - index|0;
for (; pos < nextEnd; index=index+1|0, pos=pos+1|0) {
cp0 = inputAs8[index] & 0xff;
switch(cp0 >> 4) {
case 15:
cp1 = inputAs8[index=index+1|0] & 0xff;
if ((cp1 >> 6) !== 0b10 || 0b11110111 < cp0) {
index = index - 1|0;
break;
}
codePoint = ((cp0 & 0b111) << 6) | (cp1 & 0b00111111);
minBits = 5; // 20 ensures it never passes -> all invalid replacements
cp0 = 0x100; // keep track of th bit size
case 14:
cp1 = inputAs8[index=index+1|0] & 0xff;
codePoint <<= 6;
codePoint |= ((cp0 & 0b1111) << 6) | (cp1 & 0b00111111);
minBits = (cp1 >> 6) === 0b10 ? minBits + 4|0 : 24; // 24 ensures it never passes -> all invalid replacements
cp0 = (cp0 + 0x100) & 0x300; // keep track of th bit size
case 13:
case 12:
cp1 = inputAs8[index=index+1|0] & 0xff;
codePoint <<= 6;
codePoint |= ((cp0 & 0b11111) << 6) | cp1 & 0b00111111;
minBits = minBits + 7|0;
// Now, process the code point
if (index < len && (cp1 >> 6) === 0b10 && (codePoint >> minBits) && codePoint < 0x110000) {
cp0 = codePoint;
codePoint = codePoint - 0x10000|0;
if (0 <= codePoint/*0xffff < codePoint*/) { // BMP code point
//nextEnd = nextEnd - 1|0;
tmp = (codePoint >> 10) + 0xD800|0; // highSurrogate
cp0 = (codePoint & 0x3ff) + 0xDC00|0; // lowSurrogate (will be inserted later in the switch-statement)
if (pos < 31) { // notice 31 instead of 32
tmpBufferU16[pos] = tmp;
pos = pos + 1|0;
tmp = -1;
} else {// else, we are at the end of the inputAs8 and let tmp0 be filled in later on
// NOTE that cp1 is being used as a temporary variable for the swapping of tmp with cp0
cp1 = tmp;
tmp = cp0;
cp0 = cp1;
}
} else nextEnd = nextEnd + 1|0; // because we are advancing i without advancing pos
} else {
// invalid code point means replacing the whole thing with null replacement characters
cp0 >>= 8;
index = index - cp0 - 1|0; // reset index back to what it was before
cp0 = 0xfffd;
}
// Finally, reset the variables for the next go-around
minBits = 0;
codePoint = 0;
nextEnd = index <= lenMinus32 ? 32 : len - index|0;
/*case 11:
case 10:
case 9:
case 8:
codePoint ? codePoint = 0 : cp0 = 0xfffd; // fill with invalid replacement character
case 7:
case 6:
case 5:
case 4:
case 3:
case 2:
case 1:
case 0:
tmpBufferU16[pos] = cp0;
continue;*/
default:
tmpBufferU16[pos] = cp0; // fill with invalid replacement character
continue;
case 11:
case 10:
case 9:
case 8:
}
tmpBufferU16[pos] = 0xfffd; // fill with invalid replacement character
}
tmpStr += fromCharCode(
tmpBufferU16[ 0], tmpBufferU16[ 1], tmpBufferU16[ 2], tmpBufferU16[ 3], tmpBufferU16[ 4], tmpBufferU16[ 5], tmpBufferU16[ 6], tmpBufferU16[ 7],
tmpBufferU16[ 8], tmpBufferU16[ 9], tmpBufferU16[10], tmpBufferU16[11], tmpBufferU16[12], tmpBufferU16[13], tmpBufferU16[14], tmpBufferU16[15],
tmpBufferU16[16], tmpBufferU16[17], tmpBufferU16[18], tmpBufferU16[19], tmpBufferU16[20], tmpBufferU16[21], tmpBufferU16[22], tmpBufferU16[23],
tmpBufferU16[24], tmpBufferU16[25], tmpBufferU16[26], tmpBufferU16[27], tmpBufferU16[28], tmpBufferU16[29], tmpBufferU16[30], tmpBufferU16[31]
);
if (pos < 32) tmpStr = tmpStr.slice(0, pos-32|0);//-(32-pos));
if (index < len) {
//fromCharCode.apply(0, tmpBufferU16 : NativeUint8Array ? tmpBufferU16.subarray(0,pos) : tmpBufferU16.slice(0,pos));
tmpBufferU16[0] = tmp;
pos = (~tmp) >>> 31;//tmp !== -1 ? 1 : 0;
tmp = -1;
if (tmpStr.length < resultingString.length) continue;
} else if (tmp !== -1) {
tmpStr += fromCharCode(tmp);
}
resultingString += tmpStr;
tmpStr = "";
}
return resultingString;
}
//////////////////////////////////////////////////////////////////////////////////////
function encoderReplacer(nonAsciiChars){
// make the UTF string into a binary UTF-8 encoded string
var point = nonAsciiChars.charCodeAt(0)|0;
if (0xD800 <= point) {
if (point <= 0xDBFF) {
var nextcode = nonAsciiChars.charCodeAt(1)|0; // defaults to 0 when NaN, causing null replacement character
if (0xDC00 <= nextcode && nextcode <= 0xDFFF) {
//point = ((point - 0xD800)<<10) + nextcode - 0xDC00 + 0x10000|0;
point = (point<<10) + nextcode - 0x35fdc00|0;
if (point > 0xffff)
return fromCharCode(
(0x1e/*0b11110*/<<3) | (point>>18),
(0x2/*0b10*/<<6) | ((point>>12)&0x3f/*0b00111111*/),
(0x2/*0b10*/<<6) | ((point>>6)&0x3f/*0b00111111*/),
(0x2/*0b10*/<<6) | (point&0x3f/*0b00111111*/)
);
} else point = 65533/*0b1111111111111101*/;//return '\xEF\xBF\xBD';//fromCharCode(0xef, 0xbf, 0xbd);
} else if (point <= 0xDFFF) {
point = 65533/*0b1111111111111101*/;//return '\xEF\xBF\xBD';//fromCharCode(0xef, 0xbf, 0xbd);
}
}
/*if (point <= 0x007f) return nonAsciiChars;
else */if (point <= 0x07ff) {
return fromCharCode((0x6<<5)|(point>>6), (0x2<<6)|(point&0x3f));
} else return fromCharCode(
(0xe/*0b1110*/<<4) | (point>>12),
(0x2/*0b10*/<<6) | ((point>>6)&0x3f/*0b00111111*/),
(0x2/*0b10*/<<6) | (point&0x3f/*0b00111111*/)
);
}
function TextEncoder(){};
TextEncoderPrototype["encode"] = function(inputString){
// 0xc0 => 0b11000000; 0xff => 0b11111111; 0xc0-0xff => 0b11xxxxxx
// 0x80 => 0b10000000; 0xbf => 0b10111111; 0x80-0xbf => 0b10xxxxxx
var encodedString = inputString === void 0 ? "" : ("" + inputString), len=encodedString.length|0;
var result=new patchedU8Array((len << 1) + 8|0), tmpResult;
var i=0, pos=0, point=0, nextcode=0;
var upgradededArraySize=!NativeUint8Array; // normal arrays are auto-expanding
for (i=0; i<len; i=i+1|0, pos=pos+1|0) {
point = encodedString.charCodeAt(i)|0;
if (point <= 0x007f) {
result[pos] = point;
} else if (point <= 0x07ff) {
result[pos] = (0x6<<5)|(point>>6);
result[pos=pos+1|0] = (0x2<<6)|(point&0x3f);
} else {
widenCheck: {
if (0xD800 <= point) {
if (point <= 0xDBFF) {
nextcode = encodedString.charCodeAt(i=i+1|0)|0; // defaults to 0 when NaN, causing null replacement character
if (0xDC00 <= nextcode && nextcode <= 0xDFFF) {
//point = ((point - 0xD800)<<10) + nextcode - 0xDC00 + 0x10000|0;
point = (point<<10) + nextcode - 0x35fdc00|0;
if (point > 0xffff) {
result[pos] = (0x1e/*0b11110*/<<3) | (point>>18);
result[pos=pos+1|0] = (0x2/*0b10*/<<6) | ((point>>12)&0x3f/*0b00111111*/);
result[pos=pos+1|0] = (0x2/*0b10*/<<6) | ((point>>6)&0x3f/*0b00111111*/);
result[pos=pos+1|0] = (0x2/*0b10*/<<6) | (point&0x3f/*0b00111111*/);
continue;
}
break widenCheck;
}
point = 65533/*0b1111111111111101*/;//return '\xEF\xBF\xBD';//fromCharCode(0xef, 0xbf, 0xbd);
} else if (point <= 0xDFFF) {
point = 65533/*0b1111111111111101*/;//return '\xEF\xBF\xBD';//fromCharCode(0xef, 0xbf, 0xbd);
}
}
if (!upgradededArraySize && (i << 1) < pos && (i << 1) < (pos - 7|0)) {
upgradededArraySize = true;
tmpResult = new patchedU8Array(len * 3);
tmpResult.set( result );
result = tmpResult;
}
}
result[pos] = (0xe/*0b1110*/<<4) | (point>>12);
result[pos=pos+1|0] =(0x2/*0b10*/<<6) | ((point>>6)&0x3f/*0b00111111*/);
result[pos=pos+1|0] =(0x2/*0b10*/<<6) | (point&0x3f/*0b00111111*/);
}
}
return NativeUint8Array ? result.subarray(0, pos) : result.slice(0, pos);
};
function polyfill_encodeInto(inputString, u8Arr) {
var encodedString = inputString === void 0 ? "" : ("" + inputString).replace(encoderRegexp, encoderReplacer);
var len=encodedString.length|0, i=0, char=0, read=0, u8ArrLen = u8Arr.length|0, inputLength=inputString.length|0;
if (u8ArrLen < len) len=u8ArrLen;
putChars: {
for (; i<len; i=i+1|0) {
char = encodedString.charCodeAt(i) |0;
switch(char >> 4) {
case 0:
case 1:
case 2:
case 3:
case 4:
case 5:
case 6:
case 7:
read = read + 1|0;
// extension points:
case 8:
case 9:
case 10:
case 11:
break;
case 12:
case 13:
if ((i+1|0) < u8ArrLen) {
read = read + 1|0;
break;
}
case 14:
if ((i+2|0) < u8ArrLen) {
//if (!(char === 0xEF && encodedString.substr(i+1|0,2) === "\xBF\xBD"))
read = read + 1|0;
break;
}
case 15:
if ((i+3|0) < u8ArrLen) {
read = read + 1|0;
break;
}
default:
break putChars;
}
//read = read + ((char >> 6) !== 2) |0;
u8Arr[i] = char;
}
}
return {"written": i, "read": inputLength < read ? inputLength : read};
// 0xc0 => 0b11000000; 0xff => 0b11111111; 0xc0-0xff => 0b11xxxxxx
// 0x80 => 0b10000000; 0xbf => 0b10111111; 0x80-0xbf => 0b10xxxxxx
/*var encodedString = typeof inputString == "string" ? inputString : inputString === void 0 ? "" : "" + inputString;
var encodedLen = encodedString.length|0, u8LenLeft=u8Arr.length|0;
var i=-1, read=-1, code=0, point=0, nextcode=0;
tryFast: if (2 < encodedLen && encodedLen < (u8LenLeft >> 1)) {
// Skip the normal checks because we can almost certainly fit the string inside the existing buffer
while (1) { // make the UTF string into a binary UTF-8 encoded string
point = encodedString.charCodeAt(read = read + 1|0)|0;
if (point <= 0x007f) {
if (point === 0 && encodedLen <= read) {
read = read - 1|0;
break; // we have reached the end of the string
}
u8Arr[i=i+1|0] = point;
} else if (point <= 0x07ff) {
u8Arr[i=i+1|0] = (0x6<<5)|(point>>6);
u8Arr[i=i+1|0] = (0x2<<6)|(point&0x3f);
} else {
if (0xD800 <= point && point <= 0xDBFF) {
nextcode = encodedString.charCodeAt(read)|0; // defaults to 0 when NaN, causing null replacement character
if (0xDC00 <= nextcode && nextcode <= 0xDFFF) {
read = read + 1|0;
//point = ((point - 0xD800)<<10) + nextcode - 0xDC00 + 0x10000|0;
point = (point<<10) + nextcode - 0x35fdc00|0;
if (point > 0xffff) {
u8Arr[i=i+1|0] = (0x1e<<3) | (point>>18);
u8Arr[i=i+1|0] = (0x2<<6) | ((point>>12)&0x3f);
u8Arr[i=i+1|0] = (0x2<<6) | ((point>>6)&0x3f);
u8Arr[i=i+1|0] = (0x2<<6) | (point&0x3f);
continue;
}
} else if (nextcode === 0 && encodedLen <= read) {
break; // we have reached the end of the string
} else {
point = 65533;//0b1111111111111101; // invalid replacement character
}
}
u8Arr[i=i+1|0] = (0xe<<4) | (point>>12);
u8Arr[i=i+1|0] = (0x2<<6) | ((point>>6)&0x3f);
u8Arr[i=i+1|0] = (0x2<<6) | (point&0x3f);
if (u8LenLeft < (i + ((encodedLen - read) << 1)|0)) {
// These 3x chars are the only way to inflate the size to 3x
u8LenLeft = u8LenLeft - i|0;
break tryFast;
}
}
}
u8LenLeft = 0; // skip the next for-loop
}
for (; 0 < u8LenLeft; ) { // make the UTF string into a binary UTF-8 encoded string
point = encodedString.charCodeAt(read = read + 1|0)|0;
if (point <= 0x007f) {
if (point === 0 && encodedLen <= read) {
read = read - 1|0;
break; // we have reached the end of the string
}
u8LenLeft = u8LenLeft - 1|0;
u8Arr[i=i+1|0] = point;
} else if (point <= 0x07ff) {
u8LenLeft = u8LenLeft - 2|0;
if (0 <= u8LenLeft) {
u8Arr[i=i+1|0] = (0x6<<5)|(point>>6);
u8Arr[i=i+1|0] = (0x2<<6)|(point&0x3f);
}
} else {
if (0xD800 <= point && point <= 0xDBFF) {
nextcode = encodedString.charCodeAt(read = read + 1|0)|0; // defaults to 0 when NaN, causing null replacement character
if (0xDC00 <= nextcode) {
if (nextcode <= 0xDFFF) {
read = read + 1|0;
//point = ((point - 0xD800)<<10) + nextcode - 0xDC00 + 0x10000|0;
point = (point<<10) + nextcode - 0x35fdc00|0;
if (point > 0xffff) {
u8LenLeft = u8LenLeft - 4|0;
if (0 <= u8LenLeft) {
u8Arr[i=i+1|0] = (0x1e<<3) | (point>>18);
u8Arr[i=i+1|0] = (0x2<<6) | ((point>>12)&0x3f);
u8Arr[i=i+1|0] = (0x2<<6) | ((point>>6)&0x3f);
u8Arr[i=i+1|0] = (0x2<<6) | (point&0x3f);
}
continue;
}
} else if (point <= 0xDFFF) {
point = 65533/*0b1111111111111101*\/;//return '\xEF\xBF\xBD';//fromCharCode(0xef, 0xbf, 0xbd);
}
} else if (nextcode === 0 && encodedLen <= read) {
break; // we have reached the end of the string
} else {
point = 65533;//0b1111111111111101; // invalid replacement character
}
}
u8LenLeft = u8LenLeft - 3|0;
if (0 <= u8LenLeft) {
u8Arr[i=i+1|0] = (0xe<<<4) | (point>>12);
u8Arr[i=i+1|0] = (0x2<<6) | ((point>>6)&0x3f);
u8Arr[i=i+1|0] = (0x2<<6) | (point&0x3f);
}
}
}
return {"read": read < 0 ? 0 : u8LenLeft < 0 ? read : read+1|0, "written": i < 0 ? 0 : i+1|0};*/
};
if (ENCODEINTO_BUILD) {
TextEncoderPrototype["encodeInto"] = polyfill_encodeInto;
}
if (!GlobalTextEncoder) {
window["TextDecoder"] = TextDecoder;
window["TextEncoder"] = TextEncoder;
} else if (ENCODEINTO_BUILD && !(globalTextEncoderPrototype = GlobalTextEncoder["prototype"])["encodeInto"]) {
globalTextEncoderInstance = new GlobalTextEncoder;
globalTextEncoderPrototype["encodeInto"] = function(string, u8arr) {
// Unfortunately, there's no way I can think of to quickly extract the number of bits written and the number of bytes read and such
var strLen = string.length|0, u8Len = u8arr.length|0;
if (strLen < (u8Len >> 1)) { // in most circumstances, this means its safe. there are still edge-cases which are possible
// in many circumstances, we can use the faster native TextEncoder
var res8 = globalTextEncoderInstance["encode"](string);
var res8Len = res8.length|0;
if (res8Len < u8Len) { // if we dont have to worry about read/written
u8arr.set( res8 ); // every browser that supports TextEncoder also supports typedarray.prototype.set
return {
"read": strLen,
"written": res8.length|0
};
}
}
return polyfill_encodeInto(string, u8arr);
};
}
})(typeof global == "" + void 0 ? typeof self == "" + void 0 ? this : self : global);