pluotsorbet/util.js

85 строки
1.9 KiB
JavaScript
Исходник Обычный вид История

2014-07-06 12:29:36 +04:00
/* -*- 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;
function decodeUtf8(arrayBuffer) {
if (!Utf8TextDecoder) {
Utf8TextDecoder = new TextDecoder("utf-8");
}
return Utf8TextDecoder.decode(Uint8Array(arrayBuffer));
}
2014-07-06 23:32:54 +04:00
var out = "";
function print(s) {
out += s;
var n;
while ((n = out.indexOf("\n")) != -1) {
console.log(out.substr(0, n));
out = out.substr(n+1);
}
}
function defaultValue(type) {
if (type === 'J')
2014-07-17 01:13:18 +04:00
return Long.ZERO;
if (type[0] === '[' || type[0] === 'L')
return null;
return 0;
}
2014-07-17 07:53:54 +04:00
var floatmem = Float32Array(1);
2014-07-12 07:20:41 +04:00
function double2float(d) {
2014-07-17 07:53:54 +04:00
floatmem[0] = d;
return floatmem[0];
2014-07-12 07:20:41 +04:00
}
var INT_MAX = Math.pow(2, 31) - 1;
var INT_MIN = -INT_MAX - 1;
function double2int(d) {
if (a > INT_MAX)
return INT_MAX;
if (a < INT_MIN)
return INT_MIN;
return a|0;
}
function double2long(d) {
if (d === Number.POSITIVE_INFINITY)
2014-07-17 01:13:18 +04:00
return Long.MAX_VALUE;
2014-07-12 07:20:41 +04:00
if (d === Number.NEGATIVE_INFINITY)
2014-07-17 01:13:18 +04:00
return Long.MIN_VALUE;
return Long.fromNumber(d);
2014-07-12 07:20:41 +04:00
}
2014-07-15 10:37:33 +04:00
function chars2string(chars, offset, count) {
2014-07-15 09:13:01 +04:00
var s = "";
2014-07-15 10:37:33 +04:00
if (!count)
count = chars.length;
for (var n = offset | 0; n < count; ++n)
2014-07-15 09:13:01 +04:00
s += String.fromCharCode(chars[n]);
return s;
}
2014-07-06 12:29:36 +04:00
return {
2014-07-14 04:02:57 +04:00
INT_MAX: INT_MAX,
INT_MIN: INT_MIN,
2014-07-06 23:32:54 +04:00
print: print,
2014-07-06 12:29:36 +04:00
debug: console.info.bind(console),
error: console.error.bind(console),
info: console.info.bind(console),
warn: console.warn.bind(console),
decodeUtf8: decodeUtf8,
2014-07-12 07:20:41 +04:00
defaultValue: defaultValue,
double2float: double2float,
double2int: double2int,
double2long: double2long,
2014-07-15 09:13:01 +04:00
chars2string: chars2string
2014-07-06 12:29:36 +04:00
};
})();