forked from calculatortamer/pluotsorbet-updated
-
Notifications
You must be signed in to change notification settings - Fork 0
/
util.js
181 lines (156 loc) · 4.78 KB
/
util.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
/* -*- Mode: Java; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab: */
'use strict';
var util = (function () {
var Utf8TextDecoder = new TextDecoder("utf-8");
function decodeUtf8(array) {
return Utf8TextDecoder.decode(array);
}
/**
* Provides a UTF-8 decoder that will throw an exception on error rather
* than silently sanitizing the output.
*/
var fallibleUtf8Decoder = new TextDecoder("utf-8", { fatal: true });
/**
* Decodes a UTF-8 string stored in an ArrayBufferView.
*
* @param arr An ArrayBufferView to decode (such as a Uint8Array).
* @returns The decoded string.
* @throws An invalid enoding is encountered, see
* TextDecoder.prototype.decode().
*/
function decodeUtf8Array(arr) {
return fallibleUtf8Decoder.decode(arr);
}
var INT_MAX = Math.pow(2, 31) - 1;
var INT_MIN = -INT_MAX - 1;
function double2int(d) {
if (d > INT_MAX)
return INT_MAX;
if (d < INT_MIN)
return INT_MIN;
return d|0;
}
function double2long(d) {
if (d === Number.POSITIVE_INFINITY)
return Long.MAX_VALUE;
if (d === Number.NEGATIVE_INFINITY)
return Long.MIN_VALUE;
return Long.fromNumber(d);
}
var jStringEncoder = new TextEncoder('utf-16');
var jStringDecoder = new TextDecoder('utf-16');
function fromJavaChars(chars, offset, count) {
if (!chars) {
return null;
}
if (typeof count !== 'number')
count = chars.length;
if (typeof offset !== 'number')
offset = 0;
return jStringDecoder.decode(chars.subarray(offset, offset + count));
}
/**
* Returns an ArrayBufferView of the underlying code points
* represented by the given Java string.
*
* NOTE: Do not modify the ArrayBuffer; it may be shared between
* multiple string instances.
*/
function stringToCharArray(str) {
let length=str.length
let out=new Uint16Array(length);
for(let i=0; i<length; i++){
out[i]=str.codePointAt(i);
}
return out;
}
var id = (function() {
var gen = 0;
return function() {
return ++gen;
}
})();
/**
* Compare two typed arrays, returning *true* if they have the same length
* and values, *false* otherwise. Note that we compare by value, not by byte,
* so:
* compareTypedArrays(new Uint8Array([0x00, 0xFF]), new Uint8Array[0x00, 0xFF])
* returns *true*;
*
* and:
* compareTypedArrays(new Uint8Array([0x00, 0xFF]), new Uint32Array[0x00000000, 0x000000FF])
* also returns *true*;
*
* but:
* compareTypedArrays(new Uint8Array([0x00, 0xFF]), new Uint16Array([0x00FF]))
* returns *false*.
*/
function compareTypedArrays(ary1, ary2) {
if (ary1.length != ary2.length) {
return false;
}
for (var i = 0; i < ary1.length; i++) {
if (ary1[i] !== ary2[i]) {
return false;
}
}
return true;
}
function pad(num, len) {
return "0".repeat(len - num.toString().length) + num;
}
function toCodePointArray(str) {
var chars = [];
var str = str.slice();
while (str.length > 0) {
var ucsChars = String.fromCodePoint(str.codePointAt(0));
chars.push(ucsChars);
str = str.substr(ucsChars.length);
}
return chars;
}
// rgbaToCSS() can be called frequently. Using |rgbaBuf| avoids creating
// many intermediate strings.
var rgbaBuf = ["rgba(", 0, ",", 0, ",", 0, ",", 0, ")"];
function rgbaToCSS(r, g, b, a) {
rgbaBuf[1] = r;
rgbaBuf[3] = g;
rgbaBuf[5] = b;
rgbaBuf[7] = a;
return rgbaBuf.join('');
}
function abgrIntToCSS(pixel) {
var a = (pixel >> 24) & 0xff;
var b = (pixel >> 16) & 0xff;
var g = (pixel >> 8) & 0xff;
var r = pixel & 0xff;
return rgbaToCSS(r, g, b, a/255);
}
function isPrintable(val) {
// http://stackoverflow.com/questions/12467240/determine-if-javascript-e-keycode-is-a-printable-non-control-character
return ((val >= 48 && val <= 57) || // number keys
val === 32 || val === 13 || // spacebar & return key(s) (if you want to allow carriage returns)
(val >= 65 && val <= 90) || // letter keys
(val >= 96 && val <= 111) || // numpad keys
(val >= 186 && val <= 192) || // ;=,-./` (in order)
(val >= 219 && val <= 222)); // [\]' (in order)
}
return {
INT_MAX: INT_MAX,
INT_MIN: INT_MIN,
decodeUtf8: decodeUtf8,
decodeUtf8Array: decodeUtf8Array,
double2int: double2int,
double2long: double2long,
fromJavaChars: fromJavaChars,
stringToCharArray: stringToCharArray,
id: id,
compareTypedArrays: compareTypedArrays,
pad: pad,
toCodePointArray: toCodePointArray,
rgbaToCSS: rgbaToCSS,
abgrIntToCSS: abgrIntToCSS,
isPrintable: isPrintable,
};
})();