13490 lines
524 KiB
JavaScript
13490 lines
524 KiB
JavaScript
(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.LuckyExcel = f()}})(function(){var define,module,exports;return (function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()({1:[function(require,module,exports){
|
||
'use strict'
|
||
|
||
exports.byteLength = byteLength
|
||
exports.toByteArray = toByteArray
|
||
exports.fromByteArray = fromByteArray
|
||
|
||
var lookup = []
|
||
var revLookup = []
|
||
var Arr = typeof Uint8Array !== 'undefined' ? Uint8Array : Array
|
||
|
||
var code = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'
|
||
for (var i = 0, len = code.length; i < len; ++i) {
|
||
lookup[i] = code[i]
|
||
revLookup[code.charCodeAt(i)] = i
|
||
}
|
||
|
||
// Support decoding URL-safe base64 strings, as Node.js does.
|
||
// See: https://en.wikipedia.org/wiki/Base64#URL_applications
|
||
revLookup['-'.charCodeAt(0)] = 62
|
||
revLookup['_'.charCodeAt(0)] = 63
|
||
|
||
function getLens (b64) {
|
||
var len = b64.length
|
||
|
||
if (len % 4 > 0) {
|
||
throw new Error('Invalid string. Length must be a multiple of 4')
|
||
}
|
||
|
||
// Trim off extra bytes after placeholder bytes are found
|
||
// See: https://github.com/beatgammit/base64-js/issues/42
|
||
var validLen = b64.indexOf('=')
|
||
if (validLen === -1) validLen = len
|
||
|
||
var placeHoldersLen = validLen === len
|
||
? 0
|
||
: 4 - (validLen % 4)
|
||
|
||
return [validLen, placeHoldersLen]
|
||
}
|
||
|
||
// base64 is 4/3 + up to two characters of the original data
|
||
function byteLength (b64) {
|
||
var lens = getLens(b64)
|
||
var validLen = lens[0]
|
||
var placeHoldersLen = lens[1]
|
||
return ((validLen + placeHoldersLen) * 3 / 4) - placeHoldersLen
|
||
}
|
||
|
||
function _byteLength (b64, validLen, placeHoldersLen) {
|
||
return ((validLen + placeHoldersLen) * 3 / 4) - placeHoldersLen
|
||
}
|
||
|
||
function toByteArray (b64) {
|
||
var tmp
|
||
var lens = getLens(b64)
|
||
var validLen = lens[0]
|
||
var placeHoldersLen = lens[1]
|
||
|
||
var arr = new Arr(_byteLength(b64, validLen, placeHoldersLen))
|
||
|
||
var curByte = 0
|
||
|
||
// if there are placeholders, only get up to the last complete 4 chars
|
||
var len = placeHoldersLen > 0
|
||
? validLen - 4
|
||
: validLen
|
||
|
||
var i
|
||
for (i = 0; i < len; i += 4) {
|
||
tmp =
|
||
(revLookup[b64.charCodeAt(i)] << 18) |
|
||
(revLookup[b64.charCodeAt(i + 1)] << 12) |
|
||
(revLookup[b64.charCodeAt(i + 2)] << 6) |
|
||
revLookup[b64.charCodeAt(i + 3)]
|
||
arr[curByte++] = (tmp >> 16) & 0xFF
|
||
arr[curByte++] = (tmp >> 8) & 0xFF
|
||
arr[curByte++] = tmp & 0xFF
|
||
}
|
||
|
||
if (placeHoldersLen === 2) {
|
||
tmp =
|
||
(revLookup[b64.charCodeAt(i)] << 2) |
|
||
(revLookup[b64.charCodeAt(i + 1)] >> 4)
|
||
arr[curByte++] = tmp & 0xFF
|
||
}
|
||
|
||
if (placeHoldersLen === 1) {
|
||
tmp =
|
||
(revLookup[b64.charCodeAt(i)] << 10) |
|
||
(revLookup[b64.charCodeAt(i + 1)] << 4) |
|
||
(revLookup[b64.charCodeAt(i + 2)] >> 2)
|
||
arr[curByte++] = (tmp >> 8) & 0xFF
|
||
arr[curByte++] = tmp & 0xFF
|
||
}
|
||
|
||
return arr
|
||
}
|
||
|
||
function tripletToBase64 (num) {
|
||
return lookup[num >> 18 & 0x3F] +
|
||
lookup[num >> 12 & 0x3F] +
|
||
lookup[num >> 6 & 0x3F] +
|
||
lookup[num & 0x3F]
|
||
}
|
||
|
||
function encodeChunk (uint8, start, end) {
|
||
var tmp
|
||
var output = []
|
||
for (var i = start; i < end; i += 3) {
|
||
tmp =
|
||
((uint8[i] << 16) & 0xFF0000) +
|
||
((uint8[i + 1] << 8) & 0xFF00) +
|
||
(uint8[i + 2] & 0xFF)
|
||
output.push(tripletToBase64(tmp))
|
||
}
|
||
return output.join('')
|
||
}
|
||
|
||
function fromByteArray (uint8) {
|
||
var tmp
|
||
var len = uint8.length
|
||
var extraBytes = len % 3 // if we have 1 byte left, pad 2 bytes
|
||
var parts = []
|
||
var maxChunkLength = 16383 // must be multiple of 3
|
||
|
||
// go through the array every three bytes, we'll deal with trailing stuff later
|
||
for (var i = 0, len2 = len - extraBytes; i < len2; i += maxChunkLength) {
|
||
parts.push(encodeChunk(uint8, i, (i + maxChunkLength) > len2 ? len2 : (i + maxChunkLength)))
|
||
}
|
||
|
||
// pad the end with zeros, but make sure to not forget the extra bytes
|
||
if (extraBytes === 1) {
|
||
tmp = uint8[len - 1]
|
||
parts.push(
|
||
lookup[tmp >> 2] +
|
||
lookup[(tmp << 4) & 0x3F] +
|
||
'=='
|
||
)
|
||
} else if (extraBytes === 2) {
|
||
tmp = (uint8[len - 2] << 8) + uint8[len - 1]
|
||
parts.push(
|
||
lookup[tmp >> 10] +
|
||
lookup[(tmp >> 4) & 0x3F] +
|
||
lookup[(tmp << 2) & 0x3F] +
|
||
'='
|
||
)
|
||
}
|
||
|
||
return parts.join('')
|
||
}
|
||
|
||
},{}],2:[function(require,module,exports){
|
||
|
||
},{}],3:[function(require,module,exports){
|
||
(function (global,Buffer){(function (){
|
||
/*!
|
||
* The buffer module from node.js, for the browser.
|
||
*
|
||
* @author Feross Aboukhadijeh <http://feross.org>
|
||
* @license MIT
|
||
*/
|
||
|
||
|
||
'use strict'
|
||
|
||
var base64 = require('base64-js')
|
||
var ieee754 = require('ieee754')
|
||
var isArray = require('isarray')
|
||
|
||
exports.Buffer = Buffer
|
||
exports.SlowBuffer = SlowBuffer
|
||
exports.INSPECT_MAX_BYTES = 50
|
||
|
||
/**
|
||
* If `Buffer.TYPED_ARRAY_SUPPORT`:
|
||
* === true Use Uint8Array implementation (fastest)
|
||
* === false Use Object implementation (most compatible, even IE6)
|
||
*
|
||
* Browsers that support typed arrays are IE 10+, Firefox 4+, Chrome 7+, Safari 5.1+,
|
||
* Opera 11.6+, iOS 4.2+.
|
||
*
|
||
* Due to various browser bugs, sometimes the Object implementation will be used even
|
||
* when the browser supports typed arrays.
|
||
*
|
||
* Note:
|
||
*
|
||
* - Firefox 4-29 lacks support for adding new properties to `Uint8Array` instances,
|
||
* See: https://bugzilla.mozilla.org/show_bug.cgi?id=695438.
|
||
*
|
||
* - Chrome 9-10 is missing the `TypedArray.prototype.subarray` function.
|
||
*
|
||
* - IE10 has a broken `TypedArray.prototype.subarray` function which returns arrays of
|
||
* incorrect length in some situations.
|
||
|
||
* We detect these buggy browsers and set `Buffer.TYPED_ARRAY_SUPPORT` to `false` so they
|
||
* get the Object implementation, which is slower but behaves correctly.
|
||
*/
|
||
Buffer.TYPED_ARRAY_SUPPORT = global.TYPED_ARRAY_SUPPORT !== undefined
|
||
? global.TYPED_ARRAY_SUPPORT
|
||
: typedArraySupport()
|
||
|
||
/*
|
||
* Export kMaxLength after typed array support is determined.
|
||
*/
|
||
exports.kMaxLength = kMaxLength()
|
||
|
||
function typedArraySupport () {
|
||
try {
|
||
var arr = new Uint8Array(1)
|
||
arr.__proto__ = {__proto__: Uint8Array.prototype, foo: function () { return 42 }}
|
||
return arr.foo() === 42 && // typed array instances can be augmented
|
||
typeof arr.subarray === 'function' && // chrome 9-10 lack `subarray`
|
||
arr.subarray(1, 1).byteLength === 0 // ie10 has broken `subarray`
|
||
} catch (e) {
|
||
return false
|
||
}
|
||
}
|
||
|
||
function kMaxLength () {
|
||
return Buffer.TYPED_ARRAY_SUPPORT
|
||
? 0x7fffffff
|
||
: 0x3fffffff
|
||
}
|
||
|
||
function createBuffer (that, length) {
|
||
if (kMaxLength() < length) {
|
||
throw new RangeError('Invalid typed array length')
|
||
}
|
||
if (Buffer.TYPED_ARRAY_SUPPORT) {
|
||
// Return an augmented `Uint8Array` instance, for best performance
|
||
that = new Uint8Array(length)
|
||
that.__proto__ = Buffer.prototype
|
||
} else {
|
||
// Fallback: Return an object instance of the Buffer class
|
||
if (that === null) {
|
||
that = new Buffer(length)
|
||
}
|
||
that.length = length
|
||
}
|
||
|
||
return that
|
||
}
|
||
|
||
/**
|
||
* The Buffer constructor returns instances of `Uint8Array` that have their
|
||
* prototype changed to `Buffer.prototype`. Furthermore, `Buffer` is a subclass of
|
||
* `Uint8Array`, so the returned instances will have all the node `Buffer` methods
|
||
* and the `Uint8Array` methods. Square bracket notation works as expected -- it
|
||
* returns a single octet.
|
||
*
|
||
* The `Uint8Array` prototype remains unmodified.
|
||
*/
|
||
|
||
function Buffer (arg, encodingOrOffset, length) {
|
||
if (!Buffer.TYPED_ARRAY_SUPPORT && !(this instanceof Buffer)) {
|
||
return new Buffer(arg, encodingOrOffset, length)
|
||
}
|
||
|
||
// Common case.
|
||
if (typeof arg === 'number') {
|
||
if (typeof encodingOrOffset === 'string') {
|
||
throw new Error(
|
||
'If encoding is specified then the first argument must be a string'
|
||
)
|
||
}
|
||
return allocUnsafe(this, arg)
|
||
}
|
||
return from(this, arg, encodingOrOffset, length)
|
||
}
|
||
|
||
Buffer.poolSize = 8192 // not used by this implementation
|
||
|
||
// TODO: Legacy, not needed anymore. Remove in next major version.
|
||
Buffer._augment = function (arr) {
|
||
arr.__proto__ = Buffer.prototype
|
||
return arr
|
||
}
|
||
|
||
function from (that, value, encodingOrOffset, length) {
|
||
if (typeof value === 'number') {
|
||
throw new TypeError('"value" argument must not be a number')
|
||
}
|
||
|
||
if (typeof ArrayBuffer !== 'undefined' && value instanceof ArrayBuffer) {
|
||
return fromArrayBuffer(that, value, encodingOrOffset, length)
|
||
}
|
||
|
||
if (typeof value === 'string') {
|
||
return fromString(that, value, encodingOrOffset)
|
||
}
|
||
|
||
return fromObject(that, value)
|
||
}
|
||
|
||
/**
|
||
* Functionally equivalent to Buffer(arg, encoding) but throws a TypeError
|
||
* if value is a number.
|
||
* Buffer.from(str[, encoding])
|
||
* Buffer.from(array)
|
||
* Buffer.from(buffer)
|
||
* Buffer.from(arrayBuffer[, byteOffset[, length]])
|
||
**/
|
||
Buffer.from = function (value, encodingOrOffset, length) {
|
||
return from(null, value, encodingOrOffset, length)
|
||
}
|
||
|
||
if (Buffer.TYPED_ARRAY_SUPPORT) {
|
||
Buffer.prototype.__proto__ = Uint8Array.prototype
|
||
Buffer.__proto__ = Uint8Array
|
||
if (typeof Symbol !== 'undefined' && Symbol.species &&
|
||
Buffer[Symbol.species] === Buffer) {
|
||
// Fix subarray() in ES2016. See: https://github.com/feross/buffer/pull/97
|
||
Object.defineProperty(Buffer, Symbol.species, {
|
||
value: null,
|
||
configurable: true
|
||
})
|
||
}
|
||
}
|
||
|
||
function assertSize (size) {
|
||
if (typeof size !== 'number') {
|
||
throw new TypeError('"size" argument must be a number')
|
||
} else if (size < 0) {
|
||
throw new RangeError('"size" argument must not be negative')
|
||
}
|
||
}
|
||
|
||
function alloc (that, size, fill, encoding) {
|
||
assertSize(size)
|
||
if (size <= 0) {
|
||
return createBuffer(that, size)
|
||
}
|
||
if (fill !== undefined) {
|
||
// Only pay attention to encoding if it's a string. This
|
||
// prevents accidentally sending in a number that would
|
||
// be interpretted as a start offset.
|
||
return typeof encoding === 'string'
|
||
? createBuffer(that, size).fill(fill, encoding)
|
||
: createBuffer(that, size).fill(fill)
|
||
}
|
||
return createBuffer(that, size)
|
||
}
|
||
|
||
/**
|
||
* Creates a new filled Buffer instance.
|
||
* alloc(size[, fill[, encoding]])
|
||
**/
|
||
Buffer.alloc = function (size, fill, encoding) {
|
||
return alloc(null, size, fill, encoding)
|
||
}
|
||
|
||
function allocUnsafe (that, size) {
|
||
assertSize(size)
|
||
that = createBuffer(that, size < 0 ? 0 : checked(size) | 0)
|
||
if (!Buffer.TYPED_ARRAY_SUPPORT) {
|
||
for (var i = 0; i < size; ++i) {
|
||
that[i] = 0
|
||
}
|
||
}
|
||
return that
|
||
}
|
||
|
||
/**
|
||
* Equivalent to Buffer(num), by default creates a non-zero-filled Buffer instance.
|
||
* */
|
||
Buffer.allocUnsafe = function (size) {
|
||
return allocUnsafe(null, size)
|
||
}
|
||
/**
|
||
* Equivalent to SlowBuffer(num), by default creates a non-zero-filled Buffer instance.
|
||
*/
|
||
Buffer.allocUnsafeSlow = function (size) {
|
||
return allocUnsafe(null, size)
|
||
}
|
||
|
||
function fromString (that, string, encoding) {
|
||
if (typeof encoding !== 'string' || encoding === '') {
|
||
encoding = 'utf8'
|
||
}
|
||
|
||
if (!Buffer.isEncoding(encoding)) {
|
||
throw new TypeError('"encoding" must be a valid string encoding')
|
||
}
|
||
|
||
var length = byteLength(string, encoding) | 0
|
||
that = createBuffer(that, length)
|
||
|
||
var actual = that.write(string, encoding)
|
||
|
||
if (actual !== length) {
|
||
// Writing a hex string, for example, that contains invalid characters will
|
||
// cause everything after the first invalid character to be ignored. (e.g.
|
||
// 'abxxcd' will be treated as 'ab')
|
||
that = that.slice(0, actual)
|
||
}
|
||
|
||
return that
|
||
}
|
||
|
||
function fromArrayLike (that, array) {
|
||
var length = array.length < 0 ? 0 : checked(array.length) | 0
|
||
that = createBuffer(that, length)
|
||
for (var i = 0; i < length; i += 1) {
|
||
that[i] = array[i] & 255
|
||
}
|
||
return that
|
||
}
|
||
|
||
function fromArrayBuffer (that, array, byteOffset, length) {
|
||
array.byteLength // this throws if `array` is not a valid ArrayBuffer
|
||
|
||
if (byteOffset < 0 || array.byteLength < byteOffset) {
|
||
throw new RangeError('\'offset\' is out of bounds')
|
||
}
|
||
|
||
if (array.byteLength < byteOffset + (length || 0)) {
|
||
throw new RangeError('\'length\' is out of bounds')
|
||
}
|
||
|
||
if (byteOffset === undefined && length === undefined) {
|
||
array = new Uint8Array(array)
|
||
} else if (length === undefined) {
|
||
array = new Uint8Array(array, byteOffset)
|
||
} else {
|
||
array = new Uint8Array(array, byteOffset, length)
|
||
}
|
||
|
||
if (Buffer.TYPED_ARRAY_SUPPORT) {
|
||
// Return an augmented `Uint8Array` instance, for best performance
|
||
that = array
|
||
that.__proto__ = Buffer.prototype
|
||
} else {
|
||
// Fallback: Return an object instance of the Buffer class
|
||
that = fromArrayLike(that, array)
|
||
}
|
||
return that
|
||
}
|
||
|
||
function fromObject (that, obj) {
|
||
if (Buffer.isBuffer(obj)) {
|
||
var len = checked(obj.length) | 0
|
||
that = createBuffer(that, len)
|
||
|
||
if (that.length === 0) {
|
||
return that
|
||
}
|
||
|
||
obj.copy(that, 0, 0, len)
|
||
return that
|
||
}
|
||
|
||
if (obj) {
|
||
if ((typeof ArrayBuffer !== 'undefined' &&
|
||
obj.buffer instanceof ArrayBuffer) || 'length' in obj) {
|
||
if (typeof obj.length !== 'number' || isnan(obj.length)) {
|
||
return createBuffer(that, 0)
|
||
}
|
||
return fromArrayLike(that, obj)
|
||
}
|
||
|
||
if (obj.type === 'Buffer' && isArray(obj.data)) {
|
||
return fromArrayLike(that, obj.data)
|
||
}
|
||
}
|
||
|
||
throw new TypeError('First argument must be a string, Buffer, ArrayBuffer, Array, or array-like object.')
|
||
}
|
||
|
||
function checked (length) {
|
||
// Note: cannot use `length < kMaxLength()` here because that fails when
|
||
// length is NaN (which is otherwise coerced to zero.)
|
||
if (length >= kMaxLength()) {
|
||
throw new RangeError('Attempt to allocate Buffer larger than maximum ' +
|
||
'size: 0x' + kMaxLength().toString(16) + ' bytes')
|
||
}
|
||
return length | 0
|
||
}
|
||
|
||
function SlowBuffer (length) {
|
||
if (+length != length) {
|
||
length = 0
|
||
}
|
||
return Buffer.alloc(+length)
|
||
}
|
||
|
||
Buffer.isBuffer = function isBuffer (b) {
|
||
return !!(b != null && b._isBuffer)
|
||
}
|
||
|
||
Buffer.compare = function compare (a, b) {
|
||
if (!Buffer.isBuffer(a) || !Buffer.isBuffer(b)) {
|
||
throw new TypeError('Arguments must be Buffers')
|
||
}
|
||
|
||
if (a === b) return 0
|
||
|
||
var x = a.length
|
||
var y = b.length
|
||
|
||
for (var i = 0, len = Math.min(x, y); i < len; ++i) {
|
||
if (a[i] !== b[i]) {
|
||
x = a[i]
|
||
y = b[i]
|
||
break
|
||
}
|
||
}
|
||
|
||
if (x < y) return -1
|
||
if (y < x) return 1
|
||
return 0
|
||
}
|
||
|
||
Buffer.isEncoding = function isEncoding (encoding) {
|
||
switch (String(encoding).toLowerCase()) {
|
||
case 'hex':
|
||
case 'utf8':
|
||
case 'utf-8':
|
||
case 'ascii':
|
||
case 'latin1':
|
||
case 'binary':
|
||
case 'base64':
|
||
case 'ucs2':
|
||
case 'ucs-2':
|
||
case 'utf16le':
|
||
case 'utf-16le':
|
||
return true
|
||
default:
|
||
return false
|
||
}
|
||
}
|
||
|
||
Buffer.concat = function concat (list, length) {
|
||
if (!isArray(list)) {
|
||
throw new TypeError('"list" argument must be an Array of Buffers')
|
||
}
|
||
|
||
if (list.length === 0) {
|
||
return Buffer.alloc(0)
|
||
}
|
||
|
||
var i
|
||
if (length === undefined) {
|
||
length = 0
|
||
for (i = 0; i < list.length; ++i) {
|
||
length += list[i].length
|
||
}
|
||
}
|
||
|
||
var buffer = Buffer.allocUnsafe(length)
|
||
var pos = 0
|
||
for (i = 0; i < list.length; ++i) {
|
||
var buf = list[i]
|
||
if (!Buffer.isBuffer(buf)) {
|
||
throw new TypeError('"list" argument must be an Array of Buffers')
|
||
}
|
||
buf.copy(buffer, pos)
|
||
pos += buf.length
|
||
}
|
||
return buffer
|
||
}
|
||
|
||
function byteLength (string, encoding) {
|
||
if (Buffer.isBuffer(string)) {
|
||
return string.length
|
||
}
|
||
if (typeof ArrayBuffer !== 'undefined' && typeof ArrayBuffer.isView === 'function' &&
|
||
(ArrayBuffer.isView(string) || string instanceof ArrayBuffer)) {
|
||
return string.byteLength
|
||
}
|
||
if (typeof string !== 'string') {
|
||
string = '' + string
|
||
}
|
||
|
||
var len = string.length
|
||
if (len === 0) return 0
|
||
|
||
// Use a for loop to avoid recursion
|
||
var loweredCase = false
|
||
for (;;) {
|
||
switch (encoding) {
|
||
case 'ascii':
|
||
case 'latin1':
|
||
case 'binary':
|
||
return len
|
||
case 'utf8':
|
||
case 'utf-8':
|
||
case undefined:
|
||
return utf8ToBytes(string).length
|
||
case 'ucs2':
|
||
case 'ucs-2':
|
||
case 'utf16le':
|
||
case 'utf-16le':
|
||
return len * 2
|
||
case 'hex':
|
||
return len >>> 1
|
||
case 'base64':
|
||
return base64ToBytes(string).length
|
||
default:
|
||
if (loweredCase) return utf8ToBytes(string).length // assume utf8
|
||
encoding = ('' + encoding).toLowerCase()
|
||
loweredCase = true
|
||
}
|
||
}
|
||
}
|
||
Buffer.byteLength = byteLength
|
||
|
||
function slowToString (encoding, start, end) {
|
||
var loweredCase = false
|
||
|
||
// No need to verify that "this.length <= MAX_UINT32" since it's a read-only
|
||
// property of a typed array.
|
||
|
||
// This behaves neither like String nor Uint8Array in that we set start/end
|
||
// to their upper/lower bounds if the value passed is out of range.
|
||
// undefined is handled specially as per ECMA-262 6th Edition,
|
||
// Section 13.3.3.7 Runtime Semantics: KeyedBindingInitialization.
|
||
if (start === undefined || start < 0) {
|
||
start = 0
|
||
}
|
||
// Return early if start > this.length. Done here to prevent potential uint32
|
||
// coercion fail below.
|
||
if (start > this.length) {
|
||
return ''
|
||
}
|
||
|
||
if (end === undefined || end > this.length) {
|
||
end = this.length
|
||
}
|
||
|
||
if (end <= 0) {
|
||
return ''
|
||
}
|
||
|
||
// Force coersion to uint32. This will also coerce falsey/NaN values to 0.
|
||
end >>>= 0
|
||
start >>>= 0
|
||
|
||
if (end <= start) {
|
||
return ''
|
||
}
|
||
|
||
if (!encoding) encoding = 'utf8'
|
||
|
||
while (true) {
|
||
switch (encoding) {
|
||
case 'hex':
|
||
return hexSlice(this, start, end)
|
||
|
||
case 'utf8':
|
||
case 'utf-8':
|
||
return utf8Slice(this, start, end)
|
||
|
||
case 'ascii':
|
||
return asciiSlice(this, start, end)
|
||
|
||
case 'latin1':
|
||
case 'binary':
|
||
return latin1Slice(this, start, end)
|
||
|
||
case 'base64':
|
||
return base64Slice(this, start, end)
|
||
|
||
case 'ucs2':
|
||
case 'ucs-2':
|
||
case 'utf16le':
|
||
case 'utf-16le':
|
||
return utf16leSlice(this, start, end)
|
||
|
||
default:
|
||
if (loweredCase) throw new TypeError('Unknown encoding: ' + encoding)
|
||
encoding = (encoding + '').toLowerCase()
|
||
loweredCase = true
|
||
}
|
||
}
|
||
}
|
||
|
||
// The property is used by `Buffer.isBuffer` and `is-buffer` (in Safari 5-7) to detect
|
||
// Buffer instances.
|
||
Buffer.prototype._isBuffer = true
|
||
|
||
function swap (b, n, m) {
|
||
var i = b[n]
|
||
b[n] = b[m]
|
||
b[m] = i
|
||
}
|
||
|
||
Buffer.prototype.swap16 = function swap16 () {
|
||
var len = this.length
|
||
if (len % 2 !== 0) {
|
||
throw new RangeError('Buffer size must be a multiple of 16-bits')
|
||
}
|
||
for (var i = 0; i < len; i += 2) {
|
||
swap(this, i, i + 1)
|
||
}
|
||
return this
|
||
}
|
||
|
||
Buffer.prototype.swap32 = function swap32 () {
|
||
var len = this.length
|
||
if (len % 4 !== 0) {
|
||
throw new RangeError('Buffer size must be a multiple of 32-bits')
|
||
}
|
||
for (var i = 0; i < len; i += 4) {
|
||
swap(this, i, i + 3)
|
||
swap(this, i + 1, i + 2)
|
||
}
|
||
return this
|
||
}
|
||
|
||
Buffer.prototype.swap64 = function swap64 () {
|
||
var len = this.length
|
||
if (len % 8 !== 0) {
|
||
throw new RangeError('Buffer size must be a multiple of 64-bits')
|
||
}
|
||
for (var i = 0; i < len; i += 8) {
|
||
swap(this, i, i + 7)
|
||
swap(this, i + 1, i + 6)
|
||
swap(this, i + 2, i + 5)
|
||
swap(this, i + 3, i + 4)
|
||
}
|
||
return this
|
||
}
|
||
|
||
Buffer.prototype.toString = function toString () {
|
||
var length = this.length | 0
|
||
if (length === 0) return ''
|
||
if (arguments.length === 0) return utf8Slice(this, 0, length)
|
||
return slowToString.apply(this, arguments)
|
||
}
|
||
|
||
Buffer.prototype.equals = function equals (b) {
|
||
if (!Buffer.isBuffer(b)) throw new TypeError('Argument must be a Buffer')
|
||
if (this === b) return true
|
||
return Buffer.compare(this, b) === 0
|
||
}
|
||
|
||
Buffer.prototype.inspect = function inspect () {
|
||
var str = ''
|
||
var max = exports.INSPECT_MAX_BYTES
|
||
if (this.length > 0) {
|
||
str = this.toString('hex', 0, max).match(/.{2}/g).join(' ')
|
||
if (this.length > max) str += ' ... '
|
||
}
|
||
return '<Buffer ' + str + '>'
|
||
}
|
||
|
||
Buffer.prototype.compare = function compare (target, start, end, thisStart, thisEnd) {
|
||
if (!Buffer.isBuffer(target)) {
|
||
throw new TypeError('Argument must be a Buffer')
|
||
}
|
||
|
||
if (start === undefined) {
|
||
start = 0
|
||
}
|
||
if (end === undefined) {
|
||
end = target ? target.length : 0
|
||
}
|
||
if (thisStart === undefined) {
|
||
thisStart = 0
|
||
}
|
||
if (thisEnd === undefined) {
|
||
thisEnd = this.length
|
||
}
|
||
|
||
if (start < 0 || end > target.length || thisStart < 0 || thisEnd > this.length) {
|
||
throw new RangeError('out of range index')
|
||
}
|
||
|
||
if (thisStart >= thisEnd && start >= end) {
|
||
return 0
|
||
}
|
||
if (thisStart >= thisEnd) {
|
||
return -1
|
||
}
|
||
if (start >= end) {
|
||
return 1
|
||
}
|
||
|
||
start >>>= 0
|
||
end >>>= 0
|
||
thisStart >>>= 0
|
||
thisEnd >>>= 0
|
||
|
||
if (this === target) return 0
|
||
|
||
var x = thisEnd - thisStart
|
||
var y = end - start
|
||
var len = Math.min(x, y)
|
||
|
||
var thisCopy = this.slice(thisStart, thisEnd)
|
||
var targetCopy = target.slice(start, end)
|
||
|
||
for (var i = 0; i < len; ++i) {
|
||
if (thisCopy[i] !== targetCopy[i]) {
|
||
x = thisCopy[i]
|
||
y = targetCopy[i]
|
||
break
|
||
}
|
||
}
|
||
|
||
if (x < y) return -1
|
||
if (y < x) return 1
|
||
return 0
|
||
}
|
||
|
||
// Finds either the first index of `val` in `buffer` at offset >= `byteOffset`,
|
||
// OR the last index of `val` in `buffer` at offset <= `byteOffset`.
|
||
//
|
||
// Arguments:
|
||
// - buffer - a Buffer to search
|
||
// - val - a string, Buffer, or number
|
||
// - byteOffset - an index into `buffer`; will be clamped to an int32
|
||
// - encoding - an optional encoding, relevant is val is a string
|
||
// - dir - true for indexOf, false for lastIndexOf
|
||
function bidirectionalIndexOf (buffer, val, byteOffset, encoding, dir) {
|
||
// Empty buffer means no match
|
||
if (buffer.length === 0) return -1
|
||
|
||
// Normalize byteOffset
|
||
if (typeof byteOffset === 'string') {
|
||
encoding = byteOffset
|
||
byteOffset = 0
|
||
} else if (byteOffset > 0x7fffffff) {
|
||
byteOffset = 0x7fffffff
|
||
} else if (byteOffset < -0x80000000) {
|
||
byteOffset = -0x80000000
|
||
}
|
||
byteOffset = +byteOffset // Coerce to Number.
|
||
if (isNaN(byteOffset)) {
|
||
// byteOffset: it it's undefined, null, NaN, "foo", etc, search whole buffer
|
||
byteOffset = dir ? 0 : (buffer.length - 1)
|
||
}
|
||
|
||
// Normalize byteOffset: negative offsets start from the end of the buffer
|
||
if (byteOffset < 0) byteOffset = buffer.length + byteOffset
|
||
if (byteOffset >= buffer.length) {
|
||
if (dir) return -1
|
||
else byteOffset = buffer.length - 1
|
||
} else if (byteOffset < 0) {
|
||
if (dir) byteOffset = 0
|
||
else return -1
|
||
}
|
||
|
||
// Normalize val
|
||
if (typeof val === 'string') {
|
||
val = Buffer.from(val, encoding)
|
||
}
|
||
|
||
// Finally, search either indexOf (if dir is true) or lastIndexOf
|
||
if (Buffer.isBuffer(val)) {
|
||
// Special case: looking for empty string/buffer always fails
|
||
if (val.length === 0) {
|
||
return -1
|
||
}
|
||
return arrayIndexOf(buffer, val, byteOffset, encoding, dir)
|
||
} else if (typeof val === 'number') {
|
||
val = val & 0xFF // Search for a byte value [0-255]
|
||
if (Buffer.TYPED_ARRAY_SUPPORT &&
|
||
typeof Uint8Array.prototype.indexOf === 'function') {
|
||
if (dir) {
|
||
return Uint8Array.prototype.indexOf.call(buffer, val, byteOffset)
|
||
} else {
|
||
return Uint8Array.prototype.lastIndexOf.call(buffer, val, byteOffset)
|
||
}
|
||
}
|
||
return arrayIndexOf(buffer, [ val ], byteOffset, encoding, dir)
|
||
}
|
||
|
||
throw new TypeError('val must be string, number or Buffer')
|
||
}
|
||
|
||
function arrayIndexOf (arr, val, byteOffset, encoding, dir) {
|
||
var indexSize = 1
|
||
var arrLength = arr.length
|
||
var valLength = val.length
|
||
|
||
if (encoding !== undefined) {
|
||
encoding = String(encoding).toLowerCase()
|
||
if (encoding === 'ucs2' || encoding === 'ucs-2' ||
|
||
encoding === 'utf16le' || encoding === 'utf-16le') {
|
||
if (arr.length < 2 || val.length < 2) {
|
||
return -1
|
||
}
|
||
indexSize = 2
|
||
arrLength /= 2
|
||
valLength /= 2
|
||
byteOffset /= 2
|
||
}
|
||
}
|
||
|
||
function read (buf, i) {
|
||
if (indexSize === 1) {
|
||
return buf[i]
|
||
} else {
|
||
return buf.readUInt16BE(i * indexSize)
|
||
}
|
||
}
|
||
|
||
var i
|
||
if (dir) {
|
||
var foundIndex = -1
|
||
for (i = byteOffset; i < arrLength; i++) {
|
||
if (read(arr, i) === read(val, foundIndex === -1 ? 0 : i - foundIndex)) {
|
||
if (foundIndex === -1) foundIndex = i
|
||
if (i - foundIndex + 1 === valLength) return foundIndex * indexSize
|
||
} else {
|
||
if (foundIndex !== -1) i -= i - foundIndex
|
||
foundIndex = -1
|
||
}
|
||
}
|
||
} else {
|
||
if (byteOffset + valLength > arrLength) byteOffset = arrLength - valLength
|
||
for (i = byteOffset; i >= 0; i--) {
|
||
var found = true
|
||
for (var j = 0; j < valLength; j++) {
|
||
if (read(arr, i + j) !== read(val, j)) {
|
||
found = false
|
||
break
|
||
}
|
||
}
|
||
if (found) return i
|
||
}
|
||
}
|
||
|
||
return -1
|
||
}
|
||
|
||
Buffer.prototype.includes = function includes (val, byteOffset, encoding) {
|
||
return this.indexOf(val, byteOffset, encoding) !== -1
|
||
}
|
||
|
||
Buffer.prototype.indexOf = function indexOf (val, byteOffset, encoding) {
|
||
return bidirectionalIndexOf(this, val, byteOffset, encoding, true)
|
||
}
|
||
|
||
Buffer.prototype.lastIndexOf = function lastIndexOf (val, byteOffset, encoding) {
|
||
return bidirectionalIndexOf(this, val, byteOffset, encoding, false)
|
||
}
|
||
|
||
function hexWrite (buf, string, offset, length) {
|
||
offset = Number(offset) || 0
|
||
var remaining = buf.length - offset
|
||
if (!length) {
|
||
length = remaining
|
||
} else {
|
||
length = Number(length)
|
||
if (length > remaining) {
|
||
length = remaining
|
||
}
|
||
}
|
||
|
||
// must be an even number of digits
|
||
var strLen = string.length
|
||
if (strLen % 2 !== 0) throw new TypeError('Invalid hex string')
|
||
|
||
if (length > strLen / 2) {
|
||
length = strLen / 2
|
||
}
|
||
for (var i = 0; i < length; ++i) {
|
||
var parsed = parseInt(string.substr(i * 2, 2), 16)
|
||
if (isNaN(parsed)) return i
|
||
buf[offset + i] = parsed
|
||
}
|
||
return i
|
||
}
|
||
|
||
function utf8Write (buf, string, offset, length) {
|
||
return blitBuffer(utf8ToBytes(string, buf.length - offset), buf, offset, length)
|
||
}
|
||
|
||
function asciiWrite (buf, string, offset, length) {
|
||
return blitBuffer(asciiToBytes(string), buf, offset, length)
|
||
}
|
||
|
||
function latin1Write (buf, string, offset, length) {
|
||
return asciiWrite(buf, string, offset, length)
|
||
}
|
||
|
||
function base64Write (buf, string, offset, length) {
|
||
return blitBuffer(base64ToBytes(string), buf, offset, length)
|
||
}
|
||
|
||
function ucs2Write (buf, string, offset, length) {
|
||
return blitBuffer(utf16leToBytes(string, buf.length - offset), buf, offset, length)
|
||
}
|
||
|
||
Buffer.prototype.write = function write (string, offset, length, encoding) {
|
||
// Buffer#write(string)
|
||
if (offset === undefined) {
|
||
encoding = 'utf8'
|
||
length = this.length
|
||
offset = 0
|
||
// Buffer#write(string, encoding)
|
||
} else if (length === undefined && typeof offset === 'string') {
|
||
encoding = offset
|
||
length = this.length
|
||
offset = 0
|
||
// Buffer#write(string, offset[, length][, encoding])
|
||
} else if (isFinite(offset)) {
|
||
offset = offset | 0
|
||
if (isFinite(length)) {
|
||
length = length | 0
|
||
if (encoding === undefined) encoding = 'utf8'
|
||
} else {
|
||
encoding = length
|
||
length = undefined
|
||
}
|
||
// legacy write(string, encoding, offset, length) - remove in v0.13
|
||
} else {
|
||
throw new Error(
|
||
'Buffer.write(string, encoding, offset[, length]) is no longer supported'
|
||
)
|
||
}
|
||
|
||
var remaining = this.length - offset
|
||
if (length === undefined || length > remaining) length = remaining
|
||
|
||
if ((string.length > 0 && (length < 0 || offset < 0)) || offset > this.length) {
|
||
throw new RangeError('Attempt to write outside buffer bounds')
|
||
}
|
||
|
||
if (!encoding) encoding = 'utf8'
|
||
|
||
var loweredCase = false
|
||
for (;;) {
|
||
switch (encoding) {
|
||
case 'hex':
|
||
return hexWrite(this, string, offset, length)
|
||
|
||
case 'utf8':
|
||
case 'utf-8':
|
||
return utf8Write(this, string, offset, length)
|
||
|
||
case 'ascii':
|
||
return asciiWrite(this, string, offset, length)
|
||
|
||
case 'latin1':
|
||
case 'binary':
|
||
return latin1Write(this, string, offset, length)
|
||
|
||
case 'base64':
|
||
// Warning: maxLength not taken into account in base64Write
|
||
return base64Write(this, string, offset, length)
|
||
|
||
case 'ucs2':
|
||
case 'ucs-2':
|
||
case 'utf16le':
|
||
case 'utf-16le':
|
||
return ucs2Write(this, string, offset, length)
|
||
|
||
default:
|
||
if (loweredCase) throw new TypeError('Unknown encoding: ' + encoding)
|
||
encoding = ('' + encoding).toLowerCase()
|
||
loweredCase = true
|
||
}
|
||
}
|
||
}
|
||
|
||
Buffer.prototype.toJSON = function toJSON () {
|
||
return {
|
||
type: 'Buffer',
|
||
data: Array.prototype.slice.call(this._arr || this, 0)
|
||
}
|
||
}
|
||
|
||
function base64Slice (buf, start, end) {
|
||
if (start === 0 && end === buf.length) {
|
||
return base64.fromByteArray(buf)
|
||
} else {
|
||
return base64.fromByteArray(buf.slice(start, end))
|
||
}
|
||
}
|
||
|
||
function utf8Slice (buf, start, end) {
|
||
end = Math.min(buf.length, end)
|
||
var res = []
|
||
|
||
var i = start
|
||
while (i < end) {
|
||
var firstByte = buf[i]
|
||
var codePoint = null
|
||
var bytesPerSequence = (firstByte > 0xEF) ? 4
|
||
: (firstByte > 0xDF) ? 3
|
||
: (firstByte > 0xBF) ? 2
|
||
: 1
|
||
|
||
if (i + bytesPerSequence <= end) {
|
||
var secondByte, thirdByte, fourthByte, tempCodePoint
|
||
|
||
switch (bytesPerSequence) {
|
||
case 1:
|
||
if (firstByte < 0x80) {
|
||
codePoint = firstByte
|
||
}
|
||
break
|
||
case 2:
|
||
secondByte = buf[i + 1]
|
||
if ((secondByte & 0xC0) === 0x80) {
|
||
tempCodePoint = (firstByte & 0x1F) << 0x6 | (secondByte & 0x3F)
|
||
if (tempCodePoint > 0x7F) {
|
||
codePoint = tempCodePoint
|
||
}
|
||
}
|
||
break
|
||
case 3:
|
||
secondByte = buf[i + 1]
|
||
thirdByte = buf[i + 2]
|
||
if ((secondByte & 0xC0) === 0x80 && (thirdByte & 0xC0) === 0x80) {
|
||
tempCodePoint = (firstByte & 0xF) << 0xC | (secondByte & 0x3F) << 0x6 | (thirdByte & 0x3F)
|
||
if (tempCodePoint > 0x7FF && (tempCodePoint < 0xD800 || tempCodePoint > 0xDFFF)) {
|
||
codePoint = tempCodePoint
|
||
}
|
||
}
|
||
break
|
||
case 4:
|
||
secondByte = buf[i + 1]
|
||
thirdByte = buf[i + 2]
|
||
fourthByte = buf[i + 3]
|
||
if ((secondByte & 0xC0) === 0x80 && (thirdByte & 0xC0) === 0x80 && (fourthByte & 0xC0) === 0x80) {
|
||
tempCodePoint = (firstByte & 0xF) << 0x12 | (secondByte & 0x3F) << 0xC | (thirdByte & 0x3F) << 0x6 | (fourthByte & 0x3F)
|
||
if (tempCodePoint > 0xFFFF && tempCodePoint < 0x110000) {
|
||
codePoint = tempCodePoint
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
if (codePoint === null) {
|
||
// we did not generate a valid codePoint so insert a
|
||
// replacement char (U+FFFD) and advance only 1 byte
|
||
codePoint = 0xFFFD
|
||
bytesPerSequence = 1
|
||
} else if (codePoint > 0xFFFF) {
|
||
// encode to utf16 (surrogate pair dance)
|
||
codePoint -= 0x10000
|
||
res.push(codePoint >>> 10 & 0x3FF | 0xD800)
|
||
codePoint = 0xDC00 | codePoint & 0x3FF
|
||
}
|
||
|
||
res.push(codePoint)
|
||
i += bytesPerSequence
|
||
}
|
||
|
||
return decodeCodePointsArray(res)
|
||
}
|
||
|
||
// Based on http://stackoverflow.com/a/22747272/680742, the browser with
|
||
// the lowest limit is Chrome, with 0x10000 args.
|
||
// We go 1 magnitude less, for safety
|
||
var MAX_ARGUMENTS_LENGTH = 0x1000
|
||
|
||
function decodeCodePointsArray (codePoints) {
|
||
var len = codePoints.length
|
||
if (len <= MAX_ARGUMENTS_LENGTH) {
|
||
return String.fromCharCode.apply(String, codePoints) // avoid extra slice()
|
||
}
|
||
|
||
// Decode in chunks to avoid "call stack size exceeded".
|
||
var res = ''
|
||
var i = 0
|
||
while (i < len) {
|
||
res += String.fromCharCode.apply(
|
||
String,
|
||
codePoints.slice(i, i += MAX_ARGUMENTS_LENGTH)
|
||
)
|
||
}
|
||
return res
|
||
}
|
||
|
||
function asciiSlice (buf, start, end) {
|
||
var ret = ''
|
||
end = Math.min(buf.length, end)
|
||
|
||
for (var i = start; i < end; ++i) {
|
||
ret += String.fromCharCode(buf[i] & 0x7F)
|
||
}
|
||
return ret
|
||
}
|
||
|
||
function latin1Slice (buf, start, end) {
|
||
var ret = ''
|
||
end = Math.min(buf.length, end)
|
||
|
||
for (var i = start; i < end; ++i) {
|
||
ret += String.fromCharCode(buf[i])
|
||
}
|
||
return ret
|
||
}
|
||
|
||
function hexSlice (buf, start, end) {
|
||
var len = buf.length
|
||
|
||
if (!start || start < 0) start = 0
|
||
if (!end || end < 0 || end > len) end = len
|
||
|
||
var out = ''
|
||
for (var i = start; i < end; ++i) {
|
||
out += toHex(buf[i])
|
||
}
|
||
return out
|
||
}
|
||
|
||
function utf16leSlice (buf, start, end) {
|
||
var bytes = buf.slice(start, end)
|
||
var res = ''
|
||
for (var i = 0; i < bytes.length; i += 2) {
|
||
res += String.fromCharCode(bytes[i] + bytes[i + 1] * 256)
|
||
}
|
||
return res
|
||
}
|
||
|
||
Buffer.prototype.slice = function slice (start, end) {
|
||
var len = this.length
|
||
start = ~~start
|
||
end = end === undefined ? len : ~~end
|
||
|
||
if (start < 0) {
|
||
start += len
|
||
if (start < 0) start = 0
|
||
} else if (start > len) {
|
||
start = len
|
||
}
|
||
|
||
if (end < 0) {
|
||
end += len
|
||
if (end < 0) end = 0
|
||
} else if (end > len) {
|
||
end = len
|
||
}
|
||
|
||
if (end < start) end = start
|
||
|
||
var newBuf
|
||
if (Buffer.TYPED_ARRAY_SUPPORT) {
|
||
newBuf = this.subarray(start, end)
|
||
newBuf.__proto__ = Buffer.prototype
|
||
} else {
|
||
var sliceLen = end - start
|
||
newBuf = new Buffer(sliceLen, undefined)
|
||
for (var i = 0; i < sliceLen; ++i) {
|
||
newBuf[i] = this[i + start]
|
||
}
|
||
}
|
||
|
||
return newBuf
|
||
}
|
||
|
||
/*
|
||
* Need to make sure that buffer isn't trying to write out of bounds.
|
||
*/
|
||
function checkOffset (offset, ext, length) {
|
||
if ((offset % 1) !== 0 || offset < 0) throw new RangeError('offset is not uint')
|
||
if (offset + ext > length) throw new RangeError('Trying to access beyond buffer length')
|
||
}
|
||
|
||
Buffer.prototype.readUIntLE = function readUIntLE (offset, byteLength, noAssert) {
|
||
offset = offset | 0
|
||
byteLength = byteLength | 0
|
||
if (!noAssert) checkOffset(offset, byteLength, this.length)
|
||
|
||
var val = this[offset]
|
||
var mul = 1
|
||
var i = 0
|
||
while (++i < byteLength && (mul *= 0x100)) {
|
||
val += this[offset + i] * mul
|
||
}
|
||
|
||
return val
|
||
}
|
||
|
||
Buffer.prototype.readUIntBE = function readUIntBE (offset, byteLength, noAssert) {
|
||
offset = offset | 0
|
||
byteLength = byteLength | 0
|
||
if (!noAssert) {
|
||
checkOffset(offset, byteLength, this.length)
|
||
}
|
||
|
||
var val = this[offset + --byteLength]
|
||
var mul = 1
|
||
while (byteLength > 0 && (mul *= 0x100)) {
|
||
val += this[offset + --byteLength] * mul
|
||
}
|
||
|
||
return val
|
||
}
|
||
|
||
Buffer.prototype.readUInt8 = function readUInt8 (offset, noAssert) {
|
||
if (!noAssert) checkOffset(offset, 1, this.length)
|
||
return this[offset]
|
||
}
|
||
|
||
Buffer.prototype.readUInt16LE = function readUInt16LE (offset, noAssert) {
|
||
if (!noAssert) checkOffset(offset, 2, this.length)
|
||
return this[offset] | (this[offset + 1] << 8)
|
||
}
|
||
|
||
Buffer.prototype.readUInt16BE = function readUInt16BE (offset, noAssert) {
|
||
if (!noAssert) checkOffset(offset, 2, this.length)
|
||
return (this[offset] << 8) | this[offset + 1]
|
||
}
|
||
|
||
Buffer.prototype.readUInt32LE = function readUInt32LE (offset, noAssert) {
|
||
if (!noAssert) checkOffset(offset, 4, this.length)
|
||
|
||
return ((this[offset]) |
|
||
(this[offset + 1] << 8) |
|
||
(this[offset + 2] << 16)) +
|
||
(this[offset + 3] * 0x1000000)
|
||
}
|
||
|
||
Buffer.prototype.readUInt32BE = function readUInt32BE (offset, noAssert) {
|
||
if (!noAssert) checkOffset(offset, 4, this.length)
|
||
|
||
return (this[offset] * 0x1000000) +
|
||
((this[offset + 1] << 16) |
|
||
(this[offset + 2] << 8) |
|
||
this[offset + 3])
|
||
}
|
||
|
||
Buffer.prototype.readIntLE = function readIntLE (offset, byteLength, noAssert) {
|
||
offset = offset | 0
|
||
byteLength = byteLength | 0
|
||
if (!noAssert) checkOffset(offset, byteLength, this.length)
|
||
|
||
var val = this[offset]
|
||
var mul = 1
|
||
var i = 0
|
||
while (++i < byteLength && (mul *= 0x100)) {
|
||
val += this[offset + i] * mul
|
||
}
|
||
mul *= 0x80
|
||
|
||
if (val >= mul) val -= Math.pow(2, 8 * byteLength)
|
||
|
||
return val
|
||
}
|
||
|
||
Buffer.prototype.readIntBE = function readIntBE (offset, byteLength, noAssert) {
|
||
offset = offset | 0
|
||
byteLength = byteLength | 0
|
||
if (!noAssert) checkOffset(offset, byteLength, this.length)
|
||
|
||
var i = byteLength
|
||
var mul = 1
|
||
var val = this[offset + --i]
|
||
while (i > 0 && (mul *= 0x100)) {
|
||
val += this[offset + --i] * mul
|
||
}
|
||
mul *= 0x80
|
||
|
||
if (val >= mul) val -= Math.pow(2, 8 * byteLength)
|
||
|
||
return val
|
||
}
|
||
|
||
Buffer.prototype.readInt8 = function readInt8 (offset, noAssert) {
|
||
if (!noAssert) checkOffset(offset, 1, this.length)
|
||
if (!(this[offset] & 0x80)) return (this[offset])
|
||
return ((0xff - this[offset] + 1) * -1)
|
||
}
|
||
|
||
Buffer.prototype.readInt16LE = function readInt16LE (offset, noAssert) {
|
||
if (!noAssert) checkOffset(offset, 2, this.length)
|
||
var val = this[offset] | (this[offset + 1] << 8)
|
||
return (val & 0x8000) ? val | 0xFFFF0000 : val
|
||
}
|
||
|
||
Buffer.prototype.readInt16BE = function readInt16BE (offset, noAssert) {
|
||
if (!noAssert) checkOffset(offset, 2, this.length)
|
||
var val = this[offset + 1] | (this[offset] << 8)
|
||
return (val & 0x8000) ? val | 0xFFFF0000 : val
|
||
}
|
||
|
||
Buffer.prototype.readInt32LE = function readInt32LE (offset, noAssert) {
|
||
if (!noAssert) checkOffset(offset, 4, this.length)
|
||
|
||
return (this[offset]) |
|
||
(this[offset + 1] << 8) |
|
||
(this[offset + 2] << 16) |
|
||
(this[offset + 3] << 24)
|
||
}
|
||
|
||
Buffer.prototype.readInt32BE = function readInt32BE (offset, noAssert) {
|
||
if (!noAssert) checkOffset(offset, 4, this.length)
|
||
|
||
return (this[offset] << 24) |
|
||
(this[offset + 1] << 16) |
|
||
(this[offset + 2] << 8) |
|
||
(this[offset + 3])
|
||
}
|
||
|
||
Buffer.prototype.readFloatLE = function readFloatLE (offset, noAssert) {
|
||
if (!noAssert) checkOffset(offset, 4, this.length)
|
||
return ieee754.read(this, offset, true, 23, 4)
|
||
}
|
||
|
||
Buffer.prototype.readFloatBE = function readFloatBE (offset, noAssert) {
|
||
if (!noAssert) checkOffset(offset, 4, this.length)
|
||
return ieee754.read(this, offset, false, 23, 4)
|
||
}
|
||
|
||
Buffer.prototype.readDoubleLE = function readDoubleLE (offset, noAssert) {
|
||
if (!noAssert) checkOffset(offset, 8, this.length)
|
||
return ieee754.read(this, offset, true, 52, 8)
|
||
}
|
||
|
||
Buffer.prototype.readDoubleBE = function readDoubleBE (offset, noAssert) {
|
||
if (!noAssert) checkOffset(offset, 8, this.length)
|
||
return ieee754.read(this, offset, false, 52, 8)
|
||
}
|
||
|
||
function checkInt (buf, value, offset, ext, max, min) {
|
||
if (!Buffer.isBuffer(buf)) throw new TypeError('"buffer" argument must be a Buffer instance')
|
||
if (value > max || value < min) throw new RangeError('"value" argument is out of bounds')
|
||
if (offset + ext > buf.length) throw new RangeError('Index out of range')
|
||
}
|
||
|
||
Buffer.prototype.writeUIntLE = function writeUIntLE (value, offset, byteLength, noAssert) {
|
||
value = +value
|
||
offset = offset | 0
|
||
byteLength = byteLength | 0
|
||
if (!noAssert) {
|
||
var maxBytes = Math.pow(2, 8 * byteLength) - 1
|
||
checkInt(this, value, offset, byteLength, maxBytes, 0)
|
||
}
|
||
|
||
var mul = 1
|
||
var i = 0
|
||
this[offset] = value & 0xFF
|
||
while (++i < byteLength && (mul *= 0x100)) {
|
||
this[offset + i] = (value / mul) & 0xFF
|
||
}
|
||
|
||
return offset + byteLength
|
||
}
|
||
|
||
Buffer.prototype.writeUIntBE = function writeUIntBE (value, offset, byteLength, noAssert) {
|
||
value = +value
|
||
offset = offset | 0
|
||
byteLength = byteLength | 0
|
||
if (!noAssert) {
|
||
var maxBytes = Math.pow(2, 8 * byteLength) - 1
|
||
checkInt(this, value, offset, byteLength, maxBytes, 0)
|
||
}
|
||
|
||
var i = byteLength - 1
|
||
var mul = 1
|
||
this[offset + i] = value & 0xFF
|
||
while (--i >= 0 && (mul *= 0x100)) {
|
||
this[offset + i] = (value / mul) & 0xFF
|
||
}
|
||
|
||
return offset + byteLength
|
||
}
|
||
|
||
Buffer.prototype.writeUInt8 = function writeUInt8 (value, offset, noAssert) {
|
||
value = +value
|
||
offset = offset | 0
|
||
if (!noAssert) checkInt(this, value, offset, 1, 0xff, 0)
|
||
if (!Buffer.TYPED_ARRAY_SUPPORT) value = Math.floor(value)
|
||
this[offset] = (value & 0xff)
|
||
return offset + 1
|
||
}
|
||
|
||
function objectWriteUInt16 (buf, value, offset, littleEndian) {
|
||
if (value < 0) value = 0xffff + value + 1
|
||
for (var i = 0, j = Math.min(buf.length - offset, 2); i < j; ++i) {
|
||
buf[offset + i] = (value & (0xff << (8 * (littleEndian ? i : 1 - i)))) >>>
|
||
(littleEndian ? i : 1 - i) * 8
|
||
}
|
||
}
|
||
|
||
Buffer.prototype.writeUInt16LE = function writeUInt16LE (value, offset, noAssert) {
|
||
value = +value
|
||
offset = offset | 0
|
||
if (!noAssert) checkInt(this, value, offset, 2, 0xffff, 0)
|
||
if (Buffer.TYPED_ARRAY_SUPPORT) {
|
||
this[offset] = (value & 0xff)
|
||
this[offset + 1] = (value >>> 8)
|
||
} else {
|
||
objectWriteUInt16(this, value, offset, true)
|
||
}
|
||
return offset + 2
|
||
}
|
||
|
||
Buffer.prototype.writeUInt16BE = function writeUInt16BE (value, offset, noAssert) {
|
||
value = +value
|
||
offset = offset | 0
|
||
if (!noAssert) checkInt(this, value, offset, 2, 0xffff, 0)
|
||
if (Buffer.TYPED_ARRAY_SUPPORT) {
|
||
this[offset] = (value >>> 8)
|
||
this[offset + 1] = (value & 0xff)
|
||
} else {
|
||
objectWriteUInt16(this, value, offset, false)
|
||
}
|
||
return offset + 2
|
||
}
|
||
|
||
function objectWriteUInt32 (buf, value, offset, littleEndian) {
|
||
if (value < 0) value = 0xffffffff + value + 1
|
||
for (var i = 0, j = Math.min(buf.length - offset, 4); i < j; ++i) {
|
||
buf[offset + i] = (value >>> (littleEndian ? i : 3 - i) * 8) & 0xff
|
||
}
|
||
}
|
||
|
||
Buffer.prototype.writeUInt32LE = function writeUInt32LE (value, offset, noAssert) {
|
||
value = +value
|
||
offset = offset | 0
|
||
if (!noAssert) checkInt(this, value, offset, 4, 0xffffffff, 0)
|
||
if (Buffer.TYPED_ARRAY_SUPPORT) {
|
||
this[offset + 3] = (value >>> 24)
|
||
this[offset + 2] = (value >>> 16)
|
||
this[offset + 1] = (value >>> 8)
|
||
this[offset] = (value & 0xff)
|
||
} else {
|
||
objectWriteUInt32(this, value, offset, true)
|
||
}
|
||
return offset + 4
|
||
}
|
||
|
||
Buffer.prototype.writeUInt32BE = function writeUInt32BE (value, offset, noAssert) {
|
||
value = +value
|
||
offset = offset | 0
|
||
if (!noAssert) checkInt(this, value, offset, 4, 0xffffffff, 0)
|
||
if (Buffer.TYPED_ARRAY_SUPPORT) {
|
||
this[offset] = (value >>> 24)
|
||
this[offset + 1] = (value >>> 16)
|
||
this[offset + 2] = (value >>> 8)
|
||
this[offset + 3] = (value & 0xff)
|
||
} else {
|
||
objectWriteUInt32(this, value, offset, false)
|
||
}
|
||
return offset + 4
|
||
}
|
||
|
||
Buffer.prototype.writeIntLE = function writeIntLE (value, offset, byteLength, noAssert) {
|
||
value = +value
|
||
offset = offset | 0
|
||
if (!noAssert) {
|
||
var limit = Math.pow(2, 8 * byteLength - 1)
|
||
|
||
checkInt(this, value, offset, byteLength, limit - 1, -limit)
|
||
}
|
||
|
||
var i = 0
|
||
var mul = 1
|
||
var sub = 0
|
||
this[offset] = value & 0xFF
|
||
while (++i < byteLength && (mul *= 0x100)) {
|
||
if (value < 0 && sub === 0 && this[offset + i - 1] !== 0) {
|
||
sub = 1
|
||
}
|
||
this[offset + i] = ((value / mul) >> 0) - sub & 0xFF
|
||
}
|
||
|
||
return offset + byteLength
|
||
}
|
||
|
||
Buffer.prototype.writeIntBE = function writeIntBE (value, offset, byteLength, noAssert) {
|
||
value = +value
|
||
offset = offset | 0
|
||
if (!noAssert) {
|
||
var limit = Math.pow(2, 8 * byteLength - 1)
|
||
|
||
checkInt(this, value, offset, byteLength, limit - 1, -limit)
|
||
}
|
||
|
||
var i = byteLength - 1
|
||
var mul = 1
|
||
var sub = 0
|
||
this[offset + i] = value & 0xFF
|
||
while (--i >= 0 && (mul *= 0x100)) {
|
||
if (value < 0 && sub === 0 && this[offset + i + 1] !== 0) {
|
||
sub = 1
|
||
}
|
||
this[offset + i] = ((value / mul) >> 0) - sub & 0xFF
|
||
}
|
||
|
||
return offset + byteLength
|
||
}
|
||
|
||
Buffer.prototype.writeInt8 = function writeInt8 (value, offset, noAssert) {
|
||
value = +value
|
||
offset = offset | 0
|
||
if (!noAssert) checkInt(this, value, offset, 1, 0x7f, -0x80)
|
||
if (!Buffer.TYPED_ARRAY_SUPPORT) value = Math.floor(value)
|
||
if (value < 0) value = 0xff + value + 1
|
||
this[offset] = (value & 0xff)
|
||
return offset + 1
|
||
}
|
||
|
||
Buffer.prototype.writeInt16LE = function writeInt16LE (value, offset, noAssert) {
|
||
value = +value
|
||
offset = offset | 0
|
||
if (!noAssert) checkInt(this, value, offset, 2, 0x7fff, -0x8000)
|
||
if (Buffer.TYPED_ARRAY_SUPPORT) {
|
||
this[offset] = (value & 0xff)
|
||
this[offset + 1] = (value >>> 8)
|
||
} else {
|
||
objectWriteUInt16(this, value, offset, true)
|
||
}
|
||
return offset + 2
|
||
}
|
||
|
||
Buffer.prototype.writeInt16BE = function writeInt16BE (value, offset, noAssert) {
|
||
value = +value
|
||
offset = offset | 0
|
||
if (!noAssert) checkInt(this, value, offset, 2, 0x7fff, -0x8000)
|
||
if (Buffer.TYPED_ARRAY_SUPPORT) {
|
||
this[offset] = (value >>> 8)
|
||
this[offset + 1] = (value & 0xff)
|
||
} else {
|
||
objectWriteUInt16(this, value, offset, false)
|
||
}
|
||
return offset + 2
|
||
}
|
||
|
||
Buffer.prototype.writeInt32LE = function writeInt32LE (value, offset, noAssert) {
|
||
value = +value
|
||
offset = offset | 0
|
||
if (!noAssert) checkInt(this, value, offset, 4, 0x7fffffff, -0x80000000)
|
||
if (Buffer.TYPED_ARRAY_SUPPORT) {
|
||
this[offset] = (value & 0xff)
|
||
this[offset + 1] = (value >>> 8)
|
||
this[offset + 2] = (value >>> 16)
|
||
this[offset + 3] = (value >>> 24)
|
||
} else {
|
||
objectWriteUInt32(this, value, offset, true)
|
||
}
|
||
return offset + 4
|
||
}
|
||
|
||
Buffer.prototype.writeInt32BE = function writeInt32BE (value, offset, noAssert) {
|
||
value = +value
|
||
offset = offset | 0
|
||
if (!noAssert) checkInt(this, value, offset, 4, 0x7fffffff, -0x80000000)
|
||
if (value < 0) value = 0xffffffff + value + 1
|
||
if (Buffer.TYPED_ARRAY_SUPPORT) {
|
||
this[offset] = (value >>> 24)
|
||
this[offset + 1] = (value >>> 16)
|
||
this[offset + 2] = (value >>> 8)
|
||
this[offset + 3] = (value & 0xff)
|
||
} else {
|
||
objectWriteUInt32(this, value, offset, false)
|
||
}
|
||
return offset + 4
|
||
}
|
||
|
||
function checkIEEE754 (buf, value, offset, ext, max, min) {
|
||
if (offset + ext > buf.length) throw new RangeError('Index out of range')
|
||
if (offset < 0) throw new RangeError('Index out of range')
|
||
}
|
||
|
||
function writeFloat (buf, value, offset, littleEndian, noAssert) {
|
||
if (!noAssert) {
|
||
checkIEEE754(buf, value, offset, 4, 3.4028234663852886e+38, -3.4028234663852886e+38)
|
||
}
|
||
ieee754.write(buf, value, offset, littleEndian, 23, 4)
|
||
return offset + 4
|
||
}
|
||
|
||
Buffer.prototype.writeFloatLE = function writeFloatLE (value, offset, noAssert) {
|
||
return writeFloat(this, value, offset, true, noAssert)
|
||
}
|
||
|
||
Buffer.prototype.writeFloatBE = function writeFloatBE (value, offset, noAssert) {
|
||
return writeFloat(this, value, offset, false, noAssert)
|
||
}
|
||
|
||
function writeDouble (buf, value, offset, littleEndian, noAssert) {
|
||
if (!noAssert) {
|
||
checkIEEE754(buf, value, offset, 8, 1.7976931348623157E+308, -1.7976931348623157E+308)
|
||
}
|
||
ieee754.write(buf, value, offset, littleEndian, 52, 8)
|
||
return offset + 8
|
||
}
|
||
|
||
Buffer.prototype.writeDoubleLE = function writeDoubleLE (value, offset, noAssert) {
|
||
return writeDouble(this, value, offset, true, noAssert)
|
||
}
|
||
|
||
Buffer.prototype.writeDoubleBE = function writeDoubleBE (value, offset, noAssert) {
|
||
return writeDouble(this, value, offset, false, noAssert)
|
||
}
|
||
|
||
// copy(targetBuffer, targetStart=0, sourceStart=0, sourceEnd=buffer.length)
|
||
Buffer.prototype.copy = function copy (target, targetStart, start, end) {
|
||
if (!start) start = 0
|
||
if (!end && end !== 0) end = this.length
|
||
if (targetStart >= target.length) targetStart = target.length
|
||
if (!targetStart) targetStart = 0
|
||
if (end > 0 && end < start) end = start
|
||
|
||
// Copy 0 bytes; we're done
|
||
if (end === start) return 0
|
||
if (target.length === 0 || this.length === 0) return 0
|
||
|
||
// Fatal error conditions
|
||
if (targetStart < 0) {
|
||
throw new RangeError('targetStart out of bounds')
|
||
}
|
||
if (start < 0 || start >= this.length) throw new RangeError('sourceStart out of bounds')
|
||
if (end < 0) throw new RangeError('sourceEnd out of bounds')
|
||
|
||
// Are we oob?
|
||
if (end > this.length) end = this.length
|
||
if (target.length - targetStart < end - start) {
|
||
end = target.length - targetStart + start
|
||
}
|
||
|
||
var len = end - start
|
||
var i
|
||
|
||
if (this === target && start < targetStart && targetStart < end) {
|
||
// descending copy from end
|
||
for (i = len - 1; i >= 0; --i) {
|
||
target[i + targetStart] = this[i + start]
|
||
}
|
||
} else if (len < 1000 || !Buffer.TYPED_ARRAY_SUPPORT) {
|
||
// ascending copy from start
|
||
for (i = 0; i < len; ++i) {
|
||
target[i + targetStart] = this[i + start]
|
||
}
|
||
} else {
|
||
Uint8Array.prototype.set.call(
|
||
target,
|
||
this.subarray(start, start + len),
|
||
targetStart
|
||
)
|
||
}
|
||
|
||
return len
|
||
}
|
||
|
||
// Usage:
|
||
// buffer.fill(number[, offset[, end]])
|
||
// buffer.fill(buffer[, offset[, end]])
|
||
// buffer.fill(string[, offset[, end]][, encoding])
|
||
Buffer.prototype.fill = function fill (val, start, end, encoding) {
|
||
// Handle string cases:
|
||
if (typeof val === 'string') {
|
||
if (typeof start === 'string') {
|
||
encoding = start
|
||
start = 0
|
||
end = this.length
|
||
} else if (typeof end === 'string') {
|
||
encoding = end
|
||
end = this.length
|
||
}
|
||
if (val.length === 1) {
|
||
var code = val.charCodeAt(0)
|
||
if (code < 256) {
|
||
val = code
|
||
}
|
||
}
|
||
if (encoding !== undefined && typeof encoding !== 'string') {
|
||
throw new TypeError('encoding must be a string')
|
||
}
|
||
if (typeof encoding === 'string' && !Buffer.isEncoding(encoding)) {
|
||
throw new TypeError('Unknown encoding: ' + encoding)
|
||
}
|
||
} else if (typeof val === 'number') {
|
||
val = val & 255
|
||
}
|
||
|
||
// Invalid ranges are not set to a default, so can range check early.
|
||
if (start < 0 || this.length < start || this.length < end) {
|
||
throw new RangeError('Out of range index')
|
||
}
|
||
|
||
if (end <= start) {
|
||
return this
|
||
}
|
||
|
||
start = start >>> 0
|
||
end = end === undefined ? this.length : end >>> 0
|
||
|
||
if (!val) val = 0
|
||
|
||
var i
|
||
if (typeof val === 'number') {
|
||
for (i = start; i < end; ++i) {
|
||
this[i] = val
|
||
}
|
||
} else {
|
||
var bytes = Buffer.isBuffer(val)
|
||
? val
|
||
: utf8ToBytes(new Buffer(val, encoding).toString())
|
||
var len = bytes.length
|
||
for (i = 0; i < end - start; ++i) {
|
||
this[i + start] = bytes[i % len]
|
||
}
|
||
}
|
||
|
||
return this
|
||
}
|
||
|
||
// HELPER FUNCTIONS
|
||
// ================
|
||
|
||
var INVALID_BASE64_RE = /[^+\/0-9A-Za-z-_]/g
|
||
|
||
function base64clean (str) {
|
||
// Node strips out invalid characters like \n and \t from the string, base64-js does not
|
||
str = stringtrim(str).replace(INVALID_BASE64_RE, '')
|
||
// Node converts strings with length < 2 to ''
|
||
if (str.length < 2) return ''
|
||
// Node allows for non-padded base64 strings (missing trailing ===), base64-js does not
|
||
while (str.length % 4 !== 0) {
|
||
str = str + '='
|
||
}
|
||
return str
|
||
}
|
||
|
||
function stringtrim (str) {
|
||
if (str.trim) return str.trim()
|
||
return str.replace(/^\s+|\s+$/g, '')
|
||
}
|
||
|
||
function toHex (n) {
|
||
if (n < 16) return '0' + n.toString(16)
|
||
return n.toString(16)
|
||
}
|
||
|
||
function utf8ToBytes (string, units) {
|
||
units = units || Infinity
|
||
var codePoint
|
||
var length = string.length
|
||
var leadSurrogate = null
|
||
var bytes = []
|
||
|
||
for (var i = 0; i < length; ++i) {
|
||
codePoint = string.charCodeAt(i)
|
||
|
||
// is surrogate component
|
||
if (codePoint > 0xD7FF && codePoint < 0xE000) {
|
||
// last char was a lead
|
||
if (!leadSurrogate) {
|
||
// no lead yet
|
||
if (codePoint > 0xDBFF) {
|
||
// unexpected trail
|
||
if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD)
|
||
continue
|
||
} else if (i + 1 === length) {
|
||
// unpaired lead
|
||
if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD)
|
||
continue
|
||
}
|
||
|
||
// valid lead
|
||
leadSurrogate = codePoint
|
||
|
||
continue
|
||
}
|
||
|
||
// 2 leads in a row
|
||
if (codePoint < 0xDC00) {
|
||
if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD)
|
||
leadSurrogate = codePoint
|
||
continue
|
||
}
|
||
|
||
// valid surrogate pair
|
||
codePoint = (leadSurrogate - 0xD800 << 10 | codePoint - 0xDC00) + 0x10000
|
||
} else if (leadSurrogate) {
|
||
// valid bmp char, but last char was a lead
|
||
if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD)
|
||
}
|
||
|
||
leadSurrogate = null
|
||
|
||
// encode utf8
|
||
if (codePoint < 0x80) {
|
||
if ((units -= 1) < 0) break
|
||
bytes.push(codePoint)
|
||
} else if (codePoint < 0x800) {
|
||
if ((units -= 2) < 0) break
|
||
bytes.push(
|
||
codePoint >> 0x6 | 0xC0,
|
||
codePoint & 0x3F | 0x80
|
||
)
|
||
} else if (codePoint < 0x10000) {
|
||
if ((units -= 3) < 0) break
|
||
bytes.push(
|
||
codePoint >> 0xC | 0xE0,
|
||
codePoint >> 0x6 & 0x3F | 0x80,
|
||
codePoint & 0x3F | 0x80
|
||
)
|
||
} else if (codePoint < 0x110000) {
|
||
if ((units -= 4) < 0) break
|
||
bytes.push(
|
||
codePoint >> 0x12 | 0xF0,
|
||
codePoint >> 0xC & 0x3F | 0x80,
|
||
codePoint >> 0x6 & 0x3F | 0x80,
|
||
codePoint & 0x3F | 0x80
|
||
)
|
||
} else {
|
||
throw new Error('Invalid code point')
|
||
}
|
||
}
|
||
|
||
return bytes
|
||
}
|
||
|
||
function asciiToBytes (str) {
|
||
var byteArray = []
|
||
for (var i = 0; i < str.length; ++i) {
|
||
// Node's code seems to be doing this and not & 0x7F..
|
||
byteArray.push(str.charCodeAt(i) & 0xFF)
|
||
}
|
||
return byteArray
|
||
}
|
||
|
||
function utf16leToBytes (str, units) {
|
||
var c, hi, lo
|
||
var byteArray = []
|
||
for (var i = 0; i < str.length; ++i) {
|
||
if ((units -= 2) < 0) break
|
||
|
||
c = str.charCodeAt(i)
|
||
hi = c >> 8
|
||
lo = c % 256
|
||
byteArray.push(lo)
|
||
byteArray.push(hi)
|
||
}
|
||
|
||
return byteArray
|
||
}
|
||
|
||
function base64ToBytes (str) {
|
||
return base64.toByteArray(base64clean(str))
|
||
}
|
||
|
||
function blitBuffer (src, dst, offset, length) {
|
||
for (var i = 0; i < length; ++i) {
|
||
if ((i + offset >= dst.length) || (i >= src.length)) break
|
||
dst[i + offset] = src[i]
|
||
}
|
||
return i
|
||
}
|
||
|
||
function isnan (val) {
|
||
return val !== val
|
||
}
|
||
|
||
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer)
|
||
},{"base64-js":1,"buffer":3,"ieee754":7,"isarray":9}],4:[function(require,module,exports){
|
||
// Copyright Joyent, Inc. and other Node contributors.
|
||
//
|
||
// Permission is hereby granted, free of charge, to any person obtaining a
|
||
// copy of this software and associated documentation files (the
|
||
// "Software"), to deal in the Software without restriction, including
|
||
// without limitation the rights to use, copy, modify, merge, publish,
|
||
// distribute, sublicense, and/or sell copies of the Software, and to permit
|
||
// persons to whom the Software is furnished to do so, subject to the
|
||
// following conditions:
|
||
//
|
||
// The above copyright notice and this permission notice shall be included
|
||
// in all copies or substantial portions of the Software.
|
||
//
|
||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
||
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
||
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
||
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
||
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
||
// USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||
|
||
// NOTE: These type checking functions intentionally don't use `instanceof`
|
||
// because it is fragile and can be easily faked with `Object.create()`.
|
||
|
||
function isArray(arg) {
|
||
if (Array.isArray) {
|
||
return Array.isArray(arg);
|
||
}
|
||
return objectToString(arg) === '[object Array]';
|
||
}
|
||
exports.isArray = isArray;
|
||
|
||
function isBoolean(arg) {
|
||
return typeof arg === 'boolean';
|
||
}
|
||
exports.isBoolean = isBoolean;
|
||
|
||
function isNull(arg) {
|
||
return arg === null;
|
||
}
|
||
exports.isNull = isNull;
|
||
|
||
function isNullOrUndefined(arg) {
|
||
return arg == null;
|
||
}
|
||
exports.isNullOrUndefined = isNullOrUndefined;
|
||
|
||
function isNumber(arg) {
|
||
return typeof arg === 'number';
|
||
}
|
||
exports.isNumber = isNumber;
|
||
|
||
function isString(arg) {
|
||
return typeof arg === 'string';
|
||
}
|
||
exports.isString = isString;
|
||
|
||
function isSymbol(arg) {
|
||
return typeof arg === 'symbol';
|
||
}
|
||
exports.isSymbol = isSymbol;
|
||
|
||
function isUndefined(arg) {
|
||
return arg === void 0;
|
||
}
|
||
exports.isUndefined = isUndefined;
|
||
|
||
function isRegExp(re) {
|
||
return objectToString(re) === '[object RegExp]';
|
||
}
|
||
exports.isRegExp = isRegExp;
|
||
|
||
function isObject(arg) {
|
||
return typeof arg === 'object' && arg !== null;
|
||
}
|
||
exports.isObject = isObject;
|
||
|
||
function isDate(d) {
|
||
return objectToString(d) === '[object Date]';
|
||
}
|
||
exports.isDate = isDate;
|
||
|
||
function isError(e) {
|
||
return (objectToString(e) === '[object Error]' || e instanceof Error);
|
||
}
|
||
exports.isError = isError;
|
||
|
||
function isFunction(arg) {
|
||
return typeof arg === 'function';
|
||
}
|
||
exports.isFunction = isFunction;
|
||
|
||
function isPrimitive(arg) {
|
||
return arg === null ||
|
||
typeof arg === 'boolean' ||
|
||
typeof arg === 'number' ||
|
||
typeof arg === 'string' ||
|
||
typeof arg === 'symbol' || // ES6 symbol
|
||
typeof arg === 'undefined';
|
||
}
|
||
exports.isPrimitive = isPrimitive;
|
||
|
||
exports.isBuffer = require('buffer').Buffer.isBuffer;
|
||
|
||
function objectToString(o) {
|
||
return Object.prototype.toString.call(o);
|
||
}
|
||
|
||
},{"buffer":3}],5:[function(require,module,exports){
|
||
!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(t="undefined"!=typeof globalThis?globalThis:t||self).dayjs=e()}(this,(function(){"use strict";var t=1e3,e=6e4,n=36e5,r="millisecond",i="second",s="minute",u="hour",a="day",o="week",c="month",f="quarter",h="year",d="date",l="Invalid Date",$=/^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/,y=/\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g,M={name:"en",weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),ordinal:function(t){var e=["th","st","nd","rd"],n=t%100;return"["+t+(e[(n-20)%10]||e[n]||e[0])+"]"}},m=function(t,e,n){var r=String(t);return!r||r.length>=e?t:""+Array(e+1-r.length).join(n)+t},v={s:m,z:function(t){var e=-t.utcOffset(),n=Math.abs(e),r=Math.floor(n/60),i=n%60;return(e<=0?"+":"-")+m(r,2,"0")+":"+m(i,2,"0")},m:function t(e,n){if(e.date()<n.date())return-t(n,e);var r=12*(n.year()-e.year())+(n.month()-e.month()),i=e.clone().add(r,c),s=n-i<0,u=e.clone().add(r+(s?-1:1),c);return+(-(r+(n-i)/(s?i-u:u-i))||0)},a:function(t){return t<0?Math.ceil(t)||0:Math.floor(t)},p:function(t){return{M:c,y:h,w:o,d:a,D:d,h:u,m:s,s:i,ms:r,Q:f}[t]||String(t||"").toLowerCase().replace(/s$/,"")},u:function(t){return void 0===t}},g="en",D={};D[g]=M;var p="$isDayjsObject",S=function(t){return t instanceof _||!(!t||!t[p])},w=function t(e,n,r){var i;if(!e)return g;if("string"==typeof e){var s=e.toLowerCase();D[s]&&(i=s),n&&(D[s]=n,i=s);var u=e.split("-");if(!i&&u.length>1)return t(u[0])}else{var a=e.name;D[a]=e,i=a}return!r&&i&&(g=i),i||!r&&g},O=function(t,e){if(S(t))return t.clone();var n="object"==typeof e?e:{};return n.date=t,n.args=arguments,new _(n)},b=v;b.l=w,b.i=S,b.w=function(t,e){return O(t,{locale:e.$L,utc:e.$u,x:e.$x,$offset:e.$offset})};var _=function(){function M(t){this.$L=w(t.locale,null,!0),this.parse(t),this.$x=this.$x||t.x||{},this[p]=!0}var m=M.prototype;return m.parse=function(t){this.$d=function(t){var e=t.date,n=t.utc;if(null===e)return new Date(NaN);if(b.u(e))return new Date;if(e instanceof Date)return new Date(e);if("string"==typeof e&&!/Z$/i.test(e)){var r=e.match($);if(r){var i=r[2]-1||0,s=(r[7]||"0").substring(0,3);return n?new Date(Date.UTC(r[1],i,r[3]||1,r[4]||0,r[5]||0,r[6]||0,s)):new Date(r[1],i,r[3]||1,r[4]||0,r[5]||0,r[6]||0,s)}}return new Date(e)}(t),this.init()},m.init=function(){var t=this.$d;this.$y=t.getFullYear(),this.$M=t.getMonth(),this.$D=t.getDate(),this.$W=t.getDay(),this.$H=t.getHours(),this.$m=t.getMinutes(),this.$s=t.getSeconds(),this.$ms=t.getMilliseconds()},m.$utils=function(){return b},m.isValid=function(){return!(this.$d.toString()===l)},m.isSame=function(t,e){var n=O(t);return this.startOf(e)<=n&&n<=this.endOf(e)},m.isAfter=function(t,e){return O(t)<this.startOf(e)},m.isBefore=function(t,e){return this.endOf(e)<O(t)},m.$g=function(t,e,n){return b.u(t)?this[e]:this.set(n,t)},m.unix=function(){return Math.floor(this.valueOf()/1e3)},m.valueOf=function(){return this.$d.getTime()},m.startOf=function(t,e){var n=this,r=!!b.u(e)||e,f=b.p(t),l=function(t,e){var i=b.w(n.$u?Date.UTC(n.$y,e,t):new Date(n.$y,e,t),n);return r?i:i.endOf(a)},$=function(t,e){return b.w(n.toDate()[t].apply(n.toDate("s"),(r?[0,0,0,0]:[23,59,59,999]).slice(e)),n)},y=this.$W,M=this.$M,m=this.$D,v="set"+(this.$u?"UTC":"");switch(f){case h:return r?l(1,0):l(31,11);case c:return r?l(1,M):l(0,M+1);case o:var g=this.$locale().weekStart||0,D=(y<g?y+7:y)-g;return l(r?m-D:m+(6-D),M);case a:case d:return $(v+"Hours",0);case u:return $(v+"Minutes",1);case s:return $(v+"Seconds",2);case i:return $(v+"Milliseconds",3);default:return this.clone()}},m.endOf=function(t){return this.startOf(t,!1)},m.$set=function(t,e){var n,o=b.p(t),f="set"+(this.$u?"UTC":""),l=(n={},n[a]=f+"Date",n[d]=f+"Date",n[c]=f+"Month",n[h]=f+"FullYear",n[u]=f+"Hours",n[s]=f+"Minutes",n[i]=f+"Seconds",n[r]=f+"Milliseconds",n)[o],$=o===a?this.$D+(e-this.$W):e;if(o===c||o===h){var y=this.clone().set(d,1);y.$d[l]($),y.init(),this.$d=y.set(d,Math.min(this.$D,y.daysInMonth())).$d}else l&&this.$d[l]($);return this.init(),this},m.set=function(t,e){return this.clone().$set(t,e)},m.get=function(t){return this[b.p(t)]()},m.add=function(r,f){var d,l=this;r=Number(r);var $=b.p(f),y=function(t){var e=O(l);return b.w(e.date(e.date()+Math.round(t*r)),l)};if($===c)return this.set(c,this.$M+r);if($===h)return this.set(h,this.$y+r);if($===a)return y(1);if($===o)return y(7);var M=(d={},d[s]=e,d[u]=n,d[i]=t,d)[$]||1,m=this.$d.getTime()+r*M;return b.w(m,this)},m.subtract=function(t,e){return this.add(-1*t,e)},m.format=function(t){var e=this,n=this.$locale();if(!this.isValid())return n.invalidDate||l;var r=t||"YYYY-MM-DDTHH:mm:ssZ",i=b.z(this),s=this.$H,u=this.$m,a=this.$M,o=n.weekdays,c=n.months,f=n.meridiem,h=function(t,n,i,s){return t&&(t[n]||t(e,r))||i[n].slice(0,s)},d=function(t){return b.s(s%12||12,t,"0")},$=f||function(t,e,n){var r=t<12?"AM":"PM";return n?r.toLowerCase():r};return r.replace(y,(function(t,r){return r||function(t){switch(t){case"YY":return String(e.$y).slice(-2);case"YYYY":return b.s(e.$y,4,"0");case"M":return a+1;case"MM":return b.s(a+1,2,"0");case"MMM":return h(n.monthsShort,a,c,3);case"MMMM":return h(c,a);case"D":return e.$D;case"DD":return b.s(e.$D,2,"0");case"d":return String(e.$W);case"dd":return h(n.weekdaysMin,e.$W,o,2);case"ddd":return h(n.weekdaysShort,e.$W,o,3);case"dddd":return o[e.$W];case"H":return String(s);case"HH":return b.s(s,2,"0");case"h":return d(1);case"hh":return d(2);case"a":return $(s,u,!0);case"A":return $(s,u,!1);case"m":return String(u);case"mm":return b.s(u,2,"0");case"s":return String(e.$s);case"ss":return b.s(e.$s,2,"0");case"SSS":return b.s(e.$ms,3,"0");case"Z":return i}return null}(t)||i.replace(":","")}))},m.utcOffset=function(){return 15*-Math.round(this.$d.getTimezoneOffset()/15)},m.diff=function(r,d,l){var $,y=this,M=b.p(d),m=O(r),v=(m.utcOffset()-this.utcOffset())*e,g=this-m,D=function(){return b.m(y,m)};switch(M){case h:$=D()/12;break;case c:$=D();break;case f:$=D()/3;break;case o:$=(g-v)/6048e5;break;case a:$=(g-v)/864e5;break;case u:$=g/n;break;case s:$=g/e;break;case i:$=g/t;break;default:$=g}return l?$:b.a($)},m.daysInMonth=function(){return this.endOf(c).$D},m.$locale=function(){return D[this.$L]},m.locale=function(t,e){if(!t)return this.$L;var n=this.clone(),r=w(t,e,!0);return r&&(n.$L=r),n},m.clone=function(){return b.w(this.$d,this)},m.toDate=function(){return new Date(this.valueOf())},m.toJSON=function(){return this.isValid()?this.toISOString():null},m.toISOString=function(){return this.$d.toISOString()},m.toString=function(){return this.$d.toUTCString()},M}(),k=_.prototype;return O.prototype=k,[["$ms",r],["$s",i],["$m",s],["$H",u],["$W",a],["$M",c],["$y",h],["$D",d]].forEach((function(t){k[t[1]]=function(e){return this.$g(e,t[0],t[1])}})),O.extend=function(t,e){return t.$i||(t(e,_,O),t.$i=!0),O},O.locale=w,O.isDayjs=S,O.unix=function(t){return O(1e3*t)},O.en=D[g],O.Ls=D,O.p={},O}));
|
||
},{}],6:[function(require,module,exports){
|
||
// Copyright Joyent, Inc. and other Node contributors.
|
||
//
|
||
// Permission is hereby granted, free of charge, to any person obtaining a
|
||
// copy of this software and associated documentation files (the
|
||
// "Software"), to deal in the Software without restriction, including
|
||
// without limitation the rights to use, copy, modify, merge, publish,
|
||
// distribute, sublicense, and/or sell copies of the Software, and to permit
|
||
// persons to whom the Software is furnished to do so, subject to the
|
||
// following conditions:
|
||
//
|
||
// The above copyright notice and this permission notice shall be included
|
||
// in all copies or substantial portions of the Software.
|
||
//
|
||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
||
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
||
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
||
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
||
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
||
// USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||
|
||
function EventEmitter() {
|
||
this._events = this._events || {};
|
||
this._maxListeners = this._maxListeners || undefined;
|
||
}
|
||
module.exports = EventEmitter;
|
||
|
||
// Backwards-compat with node 0.10.x
|
||
EventEmitter.EventEmitter = EventEmitter;
|
||
|
||
EventEmitter.prototype._events = undefined;
|
||
EventEmitter.prototype._maxListeners = undefined;
|
||
|
||
// By default EventEmitters will print a warning if more than 10 listeners are
|
||
// added to it. This is a useful default which helps finding memory leaks.
|
||
EventEmitter.defaultMaxListeners = 10;
|
||
|
||
// Obviously not all Emitters should be limited to 10. This function allows
|
||
// that to be increased. Set to zero for unlimited.
|
||
EventEmitter.prototype.setMaxListeners = function(n) {
|
||
if (!isNumber(n) || n < 0 || isNaN(n))
|
||
throw TypeError('n must be a positive number');
|
||
this._maxListeners = n;
|
||
return this;
|
||
};
|
||
|
||
EventEmitter.prototype.emit = function(type) {
|
||
var er, handler, len, args, i, listeners;
|
||
|
||
if (!this._events)
|
||
this._events = {};
|
||
|
||
// If there is no 'error' event listener then throw.
|
||
if (type === 'error') {
|
||
if (!this._events.error ||
|
||
(isObject(this._events.error) && !this._events.error.length)) {
|
||
er = arguments[1];
|
||
if (er instanceof Error) {
|
||
throw er; // Unhandled 'error' event
|
||
} else {
|
||
// At least give some kind of context to the user
|
||
var err = new Error('Uncaught, unspecified "error" event. (' + er + ')');
|
||
err.context = er;
|
||
throw err;
|
||
}
|
||
}
|
||
}
|
||
|
||
handler = this._events[type];
|
||
|
||
if (isUndefined(handler))
|
||
return false;
|
||
|
||
if (isFunction(handler)) {
|
||
switch (arguments.length) {
|
||
// fast cases
|
||
case 1:
|
||
handler.call(this);
|
||
break;
|
||
case 2:
|
||
handler.call(this, arguments[1]);
|
||
break;
|
||
case 3:
|
||
handler.call(this, arguments[1], arguments[2]);
|
||
break;
|
||
// slower
|
||
default:
|
||
args = Array.prototype.slice.call(arguments, 1);
|
||
handler.apply(this, args);
|
||
}
|
||
} else if (isObject(handler)) {
|
||
args = Array.prototype.slice.call(arguments, 1);
|
||
listeners = handler.slice();
|
||
len = listeners.length;
|
||
for (i = 0; i < len; i++)
|
||
listeners[i].apply(this, args);
|
||
}
|
||
|
||
return true;
|
||
};
|
||
|
||
EventEmitter.prototype.addListener = function(type, listener) {
|
||
var m;
|
||
|
||
if (!isFunction(listener))
|
||
throw TypeError('listener must be a function');
|
||
|
||
if (!this._events)
|
||
this._events = {};
|
||
|
||
// To avoid recursion in the case that type === "newListener"! Before
|
||
// adding it to the listeners, first emit "newListener".
|
||
if (this._events.newListener)
|
||
this.emit('newListener', type,
|
||
isFunction(listener.listener) ?
|
||
listener.listener : listener);
|
||
|
||
if (!this._events[type])
|
||
// Optimize the case of one listener. Don't need the extra array object.
|
||
this._events[type] = listener;
|
||
else if (isObject(this._events[type]))
|
||
// If we've already got an array, just append.
|
||
this._events[type].push(listener);
|
||
else
|
||
// Adding the second element, need to change to array.
|
||
this._events[type] = [this._events[type], listener];
|
||
|
||
// Check for listener leak
|
||
if (isObject(this._events[type]) && !this._events[type].warned) {
|
||
if (!isUndefined(this._maxListeners)) {
|
||
m = this._maxListeners;
|
||
} else {
|
||
m = EventEmitter.defaultMaxListeners;
|
||
}
|
||
|
||
if (m && m > 0 && this._events[type].length > m) {
|
||
this._events[type].warned = true;
|
||
console.error('(node) warning: possible EventEmitter memory ' +
|
||
'leak detected. %d listeners added. ' +
|
||
'Use emitter.setMaxListeners() to increase limit.',
|
||
this._events[type].length);
|
||
if (typeof console.trace === 'function') {
|
||
// not supported in IE 10
|
||
console.trace();
|
||
}
|
||
}
|
||
}
|
||
|
||
return this;
|
||
};
|
||
|
||
EventEmitter.prototype.on = EventEmitter.prototype.addListener;
|
||
|
||
EventEmitter.prototype.once = function(type, listener) {
|
||
if (!isFunction(listener))
|
||
throw TypeError('listener must be a function');
|
||
|
||
var fired = false;
|
||
|
||
function g() {
|
||
this.removeListener(type, g);
|
||
|
||
if (!fired) {
|
||
fired = true;
|
||
listener.apply(this, arguments);
|
||
}
|
||
}
|
||
|
||
g.listener = listener;
|
||
this.on(type, g);
|
||
|
||
return this;
|
||
};
|
||
|
||
// emits a 'removeListener' event iff the listener was removed
|
||
EventEmitter.prototype.removeListener = function(type, listener) {
|
||
var list, position, length, i;
|
||
|
||
if (!isFunction(listener))
|
||
throw TypeError('listener must be a function');
|
||
|
||
if (!this._events || !this._events[type])
|
||
return this;
|
||
|
||
list = this._events[type];
|
||
length = list.length;
|
||
position = -1;
|
||
|
||
if (list === listener ||
|
||
(isFunction(list.listener) && list.listener === listener)) {
|
||
delete this._events[type];
|
||
if (this._events.removeListener)
|
||
this.emit('removeListener', type, listener);
|
||
|
||
} else if (isObject(list)) {
|
||
for (i = length; i-- > 0;) {
|
||
if (list[i] === listener ||
|
||
(list[i].listener && list[i].listener === listener)) {
|
||
position = i;
|
||
break;
|
||
}
|
||
}
|
||
|
||
if (position < 0)
|
||
return this;
|
||
|
||
if (list.length === 1) {
|
||
list.length = 0;
|
||
delete this._events[type];
|
||
} else {
|
||
list.splice(position, 1);
|
||
}
|
||
|
||
if (this._events.removeListener)
|
||
this.emit('removeListener', type, listener);
|
||
}
|
||
|
||
return this;
|
||
};
|
||
|
||
EventEmitter.prototype.removeAllListeners = function(type) {
|
||
var key, listeners;
|
||
|
||
if (!this._events)
|
||
return this;
|
||
|
||
// not listening for removeListener, no need to emit
|
||
if (!this._events.removeListener) {
|
||
if (arguments.length === 0)
|
||
this._events = {};
|
||
else if (this._events[type])
|
||
delete this._events[type];
|
||
return this;
|
||
}
|
||
|
||
// emit removeListener for all listeners on all events
|
||
if (arguments.length === 0) {
|
||
for (key in this._events) {
|
||
if (key === 'removeListener') continue;
|
||
this.removeAllListeners(key);
|
||
}
|
||
this.removeAllListeners('removeListener');
|
||
this._events = {};
|
||
return this;
|
||
}
|
||
|
||
listeners = this._events[type];
|
||
|
||
if (isFunction(listeners)) {
|
||
this.removeListener(type, listeners);
|
||
} else if (listeners) {
|
||
// LIFO order
|
||
while (listeners.length)
|
||
this.removeListener(type, listeners[listeners.length - 1]);
|
||
}
|
||
delete this._events[type];
|
||
|
||
return this;
|
||
};
|
||
|
||
EventEmitter.prototype.listeners = function(type) {
|
||
var ret;
|
||
if (!this._events || !this._events[type])
|
||
ret = [];
|
||
else if (isFunction(this._events[type]))
|
||
ret = [this._events[type]];
|
||
else
|
||
ret = this._events[type].slice();
|
||
return ret;
|
||
};
|
||
|
||
EventEmitter.prototype.listenerCount = function(type) {
|
||
if (this._events) {
|
||
var evlistener = this._events[type];
|
||
|
||
if (isFunction(evlistener))
|
||
return 1;
|
||
else if (evlistener)
|
||
return evlistener.length;
|
||
}
|
||
return 0;
|
||
};
|
||
|
||
EventEmitter.listenerCount = function(emitter, type) {
|
||
return emitter.listenerCount(type);
|
||
};
|
||
|
||
function isFunction(arg) {
|
||
return typeof arg === 'function';
|
||
}
|
||
|
||
function isNumber(arg) {
|
||
return typeof arg === 'number';
|
||
}
|
||
|
||
function isObject(arg) {
|
||
return typeof arg === 'object' && arg !== null;
|
||
}
|
||
|
||
function isUndefined(arg) {
|
||
return arg === void 0;
|
||
}
|
||
|
||
},{}],7:[function(require,module,exports){
|
||
/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
||
exports.read = function (buffer, offset, isLE, mLen, nBytes) {
|
||
var e, m
|
||
var eLen = (nBytes * 8) - mLen - 1
|
||
var eMax = (1 << eLen) - 1
|
||
var eBias = eMax >> 1
|
||
var nBits = -7
|
||
var i = isLE ? (nBytes - 1) : 0
|
||
var d = isLE ? -1 : 1
|
||
var s = buffer[offset + i]
|
||
|
||
i += d
|
||
|
||
e = s & ((1 << (-nBits)) - 1)
|
||
s >>= (-nBits)
|
||
nBits += eLen
|
||
for (; nBits > 0; e = (e * 256) + buffer[offset + i], i += d, nBits -= 8) {}
|
||
|
||
m = e & ((1 << (-nBits)) - 1)
|
||
e >>= (-nBits)
|
||
nBits += mLen
|
||
for (; nBits > 0; m = (m * 256) + buffer[offset + i], i += d, nBits -= 8) {}
|
||
|
||
if (e === 0) {
|
||
e = 1 - eBias
|
||
} else if (e === eMax) {
|
||
return m ? NaN : ((s ? -1 : 1) * Infinity)
|
||
} else {
|
||
m = m + Math.pow(2, mLen)
|
||
e = e - eBias
|
||
}
|
||
return (s ? -1 : 1) * m * Math.pow(2, e - mLen)
|
||
}
|
||
|
||
exports.write = function (buffer, value, offset, isLE, mLen, nBytes) {
|
||
var e, m, c
|
||
var eLen = (nBytes * 8) - mLen - 1
|
||
var eMax = (1 << eLen) - 1
|
||
var eBias = eMax >> 1
|
||
var rt = (mLen === 23 ? Math.pow(2, -24) - Math.pow(2, -77) : 0)
|
||
var i = isLE ? 0 : (nBytes - 1)
|
||
var d = isLE ? 1 : -1
|
||
var s = value < 0 || (value === 0 && 1 / value < 0) ? 1 : 0
|
||
|
||
value = Math.abs(value)
|
||
|
||
if (isNaN(value) || value === Infinity) {
|
||
m = isNaN(value) ? 1 : 0
|
||
e = eMax
|
||
} else {
|
||
e = Math.floor(Math.log(value) / Math.LN2)
|
||
if (value * (c = Math.pow(2, -e)) < 1) {
|
||
e--
|
||
c *= 2
|
||
}
|
||
if (e + eBias >= 1) {
|
||
value += rt / c
|
||
} else {
|
||
value += rt * Math.pow(2, 1 - eBias)
|
||
}
|
||
if (value * c >= 2) {
|
||
e++
|
||
c /= 2
|
||
}
|
||
|
||
if (e + eBias >= eMax) {
|
||
m = 0
|
||
e = eMax
|
||
} else if (e + eBias >= 1) {
|
||
m = ((value * c) - 1) * Math.pow(2, mLen)
|
||
e = e + eBias
|
||
} else {
|
||
m = value * Math.pow(2, eBias - 1) * Math.pow(2, mLen)
|
||
e = 0
|
||
}
|
||
}
|
||
|
||
for (; mLen >= 8; buffer[offset + i] = m & 0xff, i += d, m /= 256, mLen -= 8) {}
|
||
|
||
e = (e << mLen) | m
|
||
eLen += mLen
|
||
for (; eLen > 0; buffer[offset + i] = e & 0xff, i += d, e /= 256, eLen -= 8) {}
|
||
|
||
buffer[offset + i - d] |= s * 128
|
||
}
|
||
|
||
},{}],8:[function(require,module,exports){
|
||
if (typeof Object.create === 'function') {
|
||
// implementation from standard node.js 'util' module
|
||
module.exports = function inherits(ctor, superCtor) {
|
||
if (superCtor) {
|
||
ctor.super_ = superCtor
|
||
ctor.prototype = Object.create(superCtor.prototype, {
|
||
constructor: {
|
||
value: ctor,
|
||
enumerable: false,
|
||
writable: true,
|
||
configurable: true
|
||
}
|
||
})
|
||
}
|
||
};
|
||
} else {
|
||
// old school shim for old browsers
|
||
module.exports = function inherits(ctor, superCtor) {
|
||
if (superCtor) {
|
||
ctor.super_ = superCtor
|
||
var TempCtor = function () {}
|
||
TempCtor.prototype = superCtor.prototype
|
||
ctor.prototype = new TempCtor()
|
||
ctor.prototype.constructor = ctor
|
||
}
|
||
}
|
||
}
|
||
|
||
},{}],9:[function(require,module,exports){
|
||
var toString = {}.toString;
|
||
|
||
module.exports = Array.isArray || function (arr) {
|
||
return toString.call(arr) == '[object Array]';
|
||
};
|
||
|
||
},{}],10:[function(require,module,exports){
|
||
(function (process,global,Buffer,__argument0,__argument1,__argument2,__argument3,setImmediate){(function (){
|
||
/*!
|
||
|
||
JSZip v3.10.1 - A JavaScript class for generating and reading zip files
|
||
<http://stuartk.com/jszip>
|
||
|
||
(c) 2009-2016 Stuart Knightley <stuart [at] stuartk.com>
|
||
Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip/main/LICENSE.markdown.
|
||
|
||
JSZip uses the library pako released under the MIT license :
|
||
https://github.com/nodeca/pako/blob/main/LICENSE
|
||
*/
|
||
|
||
!function(e){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=e();else if("function"==typeof define&&define.amd)define([],e);else{("undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this).JSZip=e()}}(function(){return function s(a,o,h){function u(r,e){if(!o[r]){if(!a[r]){var t="function"==typeof require&&require;if(!e&&t)return t(r,!0);if(l)return l(r,!0);var n=new Error("Cannot find module '"+r+"'");throw n.code="MODULE_NOT_FOUND",n}var i=o[r]={exports:{}};a[r][0].call(i.exports,function(e){var t=a[r][1][e];return u(t||e)},i,i.exports,s,a,o,h)}return o[r].exports}for(var l="function"==typeof require&&require,e=0;e<h.length;e++)u(h[e]);return u}({1:[function(e,t,r){"use strict";var d=e("./utils"),c=e("./support"),p="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";r.encode=function(e){for(var t,r,n,i,s,a,o,h=[],u=0,l=e.length,f=l,c="string"!==d.getTypeOf(e);u<e.length;)f=l-u,n=c?(t=e[u++],r=u<l?e[u++]:0,u<l?e[u++]:0):(t=e.charCodeAt(u++),r=u<l?e.charCodeAt(u++):0,u<l?e.charCodeAt(u++):0),i=t>>2,s=(3&t)<<4|r>>4,a=1<f?(15&r)<<2|n>>6:64,o=2<f?63&n:64,h.push(p.charAt(i)+p.charAt(s)+p.charAt(a)+p.charAt(o));return h.join("")},r.decode=function(e){var t,r,n,i,s,a,o=0,h=0,u="data:";if(e.substr(0,u.length)===u)throw new Error("Invalid base64 input, it looks like a data url.");var l,f=3*(e=e.replace(/[^A-Za-z0-9+/=]/g,"")).length/4;if(e.charAt(e.length-1)===p.charAt(64)&&f--,e.charAt(e.length-2)===p.charAt(64)&&f--,f%1!=0)throw new Error("Invalid base64 input, bad content length.");for(l=c.uint8array?new Uint8Array(0|f):new Array(0|f);o<e.length;)t=p.indexOf(e.charAt(o++))<<2|(i=p.indexOf(e.charAt(o++)))>>4,r=(15&i)<<4|(s=p.indexOf(e.charAt(o++)))>>2,n=(3&s)<<6|(a=p.indexOf(e.charAt(o++))),l[h++]=t,64!==s&&(l[h++]=r),64!==a&&(l[h++]=n);return l}},{"./support":30,"./utils":32}],2:[function(e,t,r){"use strict";var n=e("./external"),i=e("./stream/DataWorker"),s=e("./stream/Crc32Probe"),a=e("./stream/DataLengthProbe");function o(e,t,r,n,i){this.compressedSize=e,this.uncompressedSize=t,this.crc32=r,this.compression=n,this.compressedContent=i}o.prototype={getContentWorker:function(){var e=new i(n.Promise.resolve(this.compressedContent)).pipe(this.compression.uncompressWorker()).pipe(new a("data_length")),t=this;return e.on("end",function(){if(this.streamInfo.data_length!==t.uncompressedSize)throw new Error("Bug : uncompressed data size mismatch")}),e},getCompressedWorker:function(){return new i(n.Promise.resolve(this.compressedContent)).withStreamInfo("compressedSize",this.compressedSize).withStreamInfo("uncompressedSize",this.uncompressedSize).withStreamInfo("crc32",this.crc32).withStreamInfo("compression",this.compression)}},o.createWorkerFrom=function(e,t,r){return e.pipe(new s).pipe(new a("uncompressedSize")).pipe(t.compressWorker(r)).pipe(new a("compressedSize")).withStreamInfo("compression",t)},t.exports=o},{"./external":6,"./stream/Crc32Probe":25,"./stream/DataLengthProbe":26,"./stream/DataWorker":27}],3:[function(e,t,r){"use strict";var n=e("./stream/GenericWorker");r.STORE={magic:"\0\0",compressWorker:function(){return new n("STORE compression")},uncompressWorker:function(){return new n("STORE decompression")}},r.DEFLATE=e("./flate")},{"./flate":7,"./stream/GenericWorker":28}],4:[function(e,t,r){"use strict";var n=e("./utils");var o=function(){for(var e,t=[],r=0;r<256;r++){e=r;for(var n=0;n<8;n++)e=1&e?3988292384^e>>>1:e>>>1;t[r]=e}return t}();t.exports=function(e,t){return void 0!==e&&e.length?"string"!==n.getTypeOf(e)?function(e,t,r,n){var i=o,s=n+r;e^=-1;for(var a=n;a<s;a++)e=e>>>8^i[255&(e^t[a])];return-1^e}(0|t,e,e.length,0):function(e,t,r,n){var i=o,s=n+r;e^=-1;for(var a=n;a<s;a++)e=e>>>8^i[255&(e^t.charCodeAt(a))];return-1^e}(0|t,e,e.length,0):0}},{"./utils":32}],5:[function(e,t,r){"use strict";r.base64=!1,r.binary=!1,r.dir=!1,r.createFolders=!0,r.date=null,r.compression=null,r.compressionOptions=null,r.comment=null,r.unixPermissions=null,r.dosPermissions=null},{}],6:[function(e,t,r){"use strict";var n=null;n="undefined"!=typeof Promise?Promise:e("lie"),t.exports={Promise:n}},{lie:37}],7:[function(e,t,r){"use strict";var n="undefined"!=typeof Uint8Array&&"undefined"!=typeof Uint16Array&&"undefined"!=typeof Uint32Array,i=e("pako"),s=e("./utils"),a=e("./stream/GenericWorker"),o=n?"uint8array":"array";function h(e,t){a.call(this,"FlateWorker/"+e),this._pako=null,this._pakoAction=e,this._pakoOptions=t,this.meta={}}r.magic="\b\0",s.inherits(h,a),h.prototype.processChunk=function(e){this.meta=e.meta,null===this._pako&&this._createPako(),this._pako.push(s.transformTo(o,e.data),!1)},h.prototype.flush=function(){a.prototype.flush.call(this),null===this._pako&&this._createPako(),this._pako.push([],!0)},h.prototype.cleanUp=function(){a.prototype.cleanUp.call(this),this._pako=null},h.prototype._createPako=function(){this._pako=new i[this._pakoAction]({raw:!0,level:this._pakoOptions.level||-1});var t=this;this._pako.onData=function(e){t.push({data:e,meta:t.meta})}},r.compressWorker=function(e){return new h("Deflate",e)},r.uncompressWorker=function(){return new h("Inflate",{})}},{"./stream/GenericWorker":28,"./utils":32,pako:38}],8:[function(e,t,r){"use strict";function A(e,t){var r,n="";for(r=0;r<t;r++)n+=String.fromCharCode(255&e),e>>>=8;return n}function n(e,t,r,n,i,s){var a,o,h=e.file,u=e.compression,l=s!==O.utf8encode,f=I.transformTo("string",s(h.name)),c=I.transformTo("string",O.utf8encode(h.name)),d=h.comment,p=I.transformTo("string",s(d)),m=I.transformTo("string",O.utf8encode(d)),_=c.length!==h.name.length,g=m.length!==d.length,b="",v="",y="",w=h.dir,k=h.date,x={crc32:0,compressedSize:0,uncompressedSize:0};t&&!r||(x.crc32=e.crc32,x.compressedSize=e.compressedSize,x.uncompressedSize=e.uncompressedSize);var S=0;t&&(S|=8),l||!_&&!g||(S|=2048);var z=0,C=0;w&&(z|=16),"UNIX"===i?(C=798,z|=function(e,t){var r=e;return e||(r=t?16893:33204),(65535&r)<<16}(h.unixPermissions,w)):(C=20,z|=function(e){return 63&(e||0)}(h.dosPermissions)),a=k.getUTCHours(),a<<=6,a|=k.getUTCMinutes(),a<<=5,a|=k.getUTCSeconds()/2,o=k.getUTCFullYear()-1980,o<<=4,o|=k.getUTCMonth()+1,o<<=5,o|=k.getUTCDate(),_&&(v=A(1,1)+A(B(f),4)+c,b+="up"+A(v.length,2)+v),g&&(y=A(1,1)+A(B(p),4)+m,b+="uc"+A(y.length,2)+y);var E="";return E+="\n\0",E+=A(S,2),E+=u.magic,E+=A(a,2),E+=A(o,2),E+=A(x.crc32,4),E+=A(x.compressedSize,4),E+=A(x.uncompressedSize,4),E+=A(f.length,2),E+=A(b.length,2),{fileRecord:R.LOCAL_FILE_HEADER+E+f+b,dirRecord:R.CENTRAL_FILE_HEADER+A(C,2)+E+A(p.length,2)+"\0\0\0\0"+A(z,4)+A(n,4)+f+b+p}}var I=e("../utils"),i=e("../stream/GenericWorker"),O=e("../utf8"),B=e("../crc32"),R=e("../signature");function s(e,t,r,n){i.call(this,"ZipFileWorker"),this.bytesWritten=0,this.zipComment=t,this.zipPlatform=r,this.encodeFileName=n,this.streamFiles=e,this.accumulate=!1,this.contentBuffer=[],this.dirRecords=[],this.currentSourceOffset=0,this.entriesCount=0,this.currentFile=null,this._sources=[]}I.inherits(s,i),s.prototype.push=function(e){var t=e.meta.percent||0,r=this.entriesCount,n=this._sources.length;this.accumulate?this.contentBuffer.push(e):(this.bytesWritten+=e.data.length,i.prototype.push.call(this,{data:e.data,meta:{currentFile:this.currentFile,percent:r?(t+100*(r-n-1))/r:100}}))},s.prototype.openedSource=function(e){this.currentSourceOffset=this.bytesWritten,this.currentFile=e.file.name;var t=this.streamFiles&&!e.file.dir;if(t){var r=n(e,t,!1,this.currentSourceOffset,this.zipPlatform,this.encodeFileName);this.push({data:r.fileRecord,meta:{percent:0}})}else this.accumulate=!0},s.prototype.closedSource=function(e){this.accumulate=!1;var t=this.streamFiles&&!e.file.dir,r=n(e,t,!0,this.currentSourceOffset,this.zipPlatform,this.encodeFileName);if(this.dirRecords.push(r.dirRecord),t)this.push({data:function(e){return R.DATA_DESCRIPTOR+A(e.crc32,4)+A(e.compressedSize,4)+A(e.uncompressedSize,4)}(e),meta:{percent:100}});else for(this.push({data:r.fileRecord,meta:{percent:0}});this.contentBuffer.length;)this.push(this.contentBuffer.shift());this.currentFile=null},s.prototype.flush=function(){for(var e=this.bytesWritten,t=0;t<this.dirRecords.length;t++)this.push({data:this.dirRecords[t],meta:{percent:100}});var r=this.bytesWritten-e,n=function(e,t,r,n,i){var s=I.transformTo("string",i(n));return R.CENTRAL_DIRECTORY_END+"\0\0\0\0"+A(e,2)+A(e,2)+A(t,4)+A(r,4)+A(s.length,2)+s}(this.dirRecords.length,r,e,this.zipComment,this.encodeFileName);this.push({data:n,meta:{percent:100}})},s.prototype.prepareNextSource=function(){this.previous=this._sources.shift(),this.openedSource(this.previous.streamInfo),this.isPaused?this.previous.pause():this.previous.resume()},s.prototype.registerPrevious=function(e){this._sources.push(e);var t=this;return e.on("data",function(e){t.processChunk(e)}),e.on("end",function(){t.closedSource(t.previous.streamInfo),t._sources.length?t.prepareNextSource():t.end()}),e.on("error",function(e){t.error(e)}),this},s.prototype.resume=function(){return!!i.prototype.resume.call(this)&&(!this.previous&&this._sources.length?(this.prepareNextSource(),!0):this.previous||this._sources.length||this.generatedError?void 0:(this.end(),!0))},s.prototype.error=function(e){var t=this._sources;if(!i.prototype.error.call(this,e))return!1;for(var r=0;r<t.length;r++)try{t[r].error(e)}catch(e){}return!0},s.prototype.lock=function(){i.prototype.lock.call(this);for(var e=this._sources,t=0;t<e.length;t++)e[t].lock()},t.exports=s},{"../crc32":4,"../signature":23,"../stream/GenericWorker":28,"../utf8":31,"../utils":32}],9:[function(e,t,r){"use strict";var u=e("../compressions"),n=e("./ZipFileWorker");r.generateWorker=function(e,a,t){var o=new n(a.streamFiles,t,a.platform,a.encodeFileName),h=0;try{e.forEach(function(e,t){h++;var r=function(e,t){var r=e||t,n=u[r];if(!n)throw new Error(r+" is not a valid compression method !");return n}(t.options.compression,a.compression),n=t.options.compressionOptions||a.compressionOptions||{},i=t.dir,s=t.date;t._compressWorker(r,n).withStreamInfo("file",{name:e,dir:i,date:s,comment:t.comment||"",unixPermissions:t.unixPermissions,dosPermissions:t.dosPermissions}).pipe(o)}),o.entriesCount=h}catch(e){o.error(e)}return o}},{"../compressions":3,"./ZipFileWorker":8}],10:[function(e,t,r){"use strict";function n(){if(!(this instanceof n))return new n;if(arguments.length)throw new Error("The constructor with parameters has been removed in JSZip 3.0, please check the upgrade guide.");this.files=Object.create(null),this.comment=null,this.root="",this.clone=function(){var e=new n;for(var t in this)"function"!=typeof this[t]&&(e[t]=this[t]);return e}}(n.prototype=e("./object")).loadAsync=e("./load"),n.support=e("./support"),n.defaults=e("./defaults"),n.version="3.10.1",n.loadAsync=function(e,t){return(new n).loadAsync(e,t)},n.external=e("./external"),t.exports=n},{"./defaults":5,"./external":6,"./load":11,"./object":15,"./support":30}],11:[function(e,t,r){"use strict";var u=e("./utils"),i=e("./external"),n=e("./utf8"),s=e("./zipEntries"),a=e("./stream/Crc32Probe"),l=e("./nodejsUtils");function f(n){return new i.Promise(function(e,t){var r=n.decompressed.getContentWorker().pipe(new a);r.on("error",function(e){t(e)}).on("end",function(){r.streamInfo.crc32!==n.decompressed.crc32?t(new Error("Corrupted zip : CRC32 mismatch")):e()}).resume()})}t.exports=function(e,o){var h=this;return o=u.extend(o||{},{base64:!1,checkCRC32:!1,optimizedBinaryString:!1,createFolders:!1,decodeFileName:n.utf8decode}),l.isNode&&l.isStream(e)?i.Promise.reject(new Error("JSZip can't accept a stream when loading a zip file.")):u.prepareContent("the loaded zip file",e,!0,o.optimizedBinaryString,o.base64).then(function(e){var t=new s(o);return t.load(e),t}).then(function(e){var t=[i.Promise.resolve(e)],r=e.files;if(o.checkCRC32)for(var n=0;n<r.length;n++)t.push(f(r[n]));return i.Promise.all(t)}).then(function(e){for(var t=e.shift(),r=t.files,n=0;n<r.length;n++){var i=r[n],s=i.fileNameStr,a=u.resolve(i.fileNameStr);h.file(a,i.decompressed,{binary:!0,optimizedBinaryString:!0,date:i.date,dir:i.dir,comment:i.fileCommentStr.length?i.fileCommentStr:null,unixPermissions:i.unixPermissions,dosPermissions:i.dosPermissions,createFolders:o.createFolders}),i.dir||(h.file(a).unsafeOriginalName=s)}return t.zipComment.length&&(h.comment=t.zipComment),h})}},{"./external":6,"./nodejsUtils":14,"./stream/Crc32Probe":25,"./utf8":31,"./utils":32,"./zipEntries":33}],12:[function(e,t,r){"use strict";var n=e("../utils"),i=e("../stream/GenericWorker");function s(e,t){i.call(this,"Nodejs stream input adapter for "+e),this._upstreamEnded=!1,this._bindStream(t)}n.inherits(s,i),s.prototype._bindStream=function(e){var t=this;(this._stream=e).pause(),e.on("data",function(e){t.push({data:e,meta:{percent:0}})}).on("error",function(e){t.isPaused?this.generatedError=e:t.error(e)}).on("end",function(){t.isPaused?t._upstreamEnded=!0:t.end()})},s.prototype.pause=function(){return!!i.prototype.pause.call(this)&&(this._stream.pause(),!0)},s.prototype.resume=function(){return!!i.prototype.resume.call(this)&&(this._upstreamEnded?this.end():this._stream.resume(),!0)},t.exports=s},{"../stream/GenericWorker":28,"../utils":32}],13:[function(e,t,r){"use strict";var i=e("readable-stream").Readable;function n(e,t,r){i.call(this,t),this._helper=e;var n=this;e.on("data",function(e,t){n.push(e)||n._helper.pause(),r&&r(t)}).on("error",function(e){n.emit("error",e)}).on("end",function(){n.push(null)})}e("../utils").inherits(n,i),n.prototype._read=function(){this._helper.resume()},t.exports=n},{"../utils":32,"readable-stream":16}],14:[function(e,t,r){"use strict";t.exports={isNode:"undefined"!=typeof Buffer,newBufferFrom:function(e,t){if(Buffer.from&&Buffer.from!==Uint8Array.from)return Buffer.from(e,t);if("number"==typeof e)throw new Error('The "data" argument must not be a number');return new Buffer(e,t)},allocBuffer:function(e){if(Buffer.alloc)return Buffer.alloc(e);var t=new Buffer(e);return t.fill(0),t},isBuffer:function(e){return Buffer.isBuffer(e)},isStream:function(e){return e&&"function"==typeof e.on&&"function"==typeof e.pause&&"function"==typeof e.resume}}},{}],15:[function(e,t,r){"use strict";function s(e,t,r){var n,i=u.getTypeOf(t),s=u.extend(r||{},f);s.date=s.date||new Date,null!==s.compression&&(s.compression=s.compression.toUpperCase()),"string"==typeof s.unixPermissions&&(s.unixPermissions=parseInt(s.unixPermissions,8)),s.unixPermissions&&16384&s.unixPermissions&&(s.dir=!0),s.dosPermissions&&16&s.dosPermissions&&(s.dir=!0),s.dir&&(e=g(e)),s.createFolders&&(n=_(e))&&b.call(this,n,!0);var a="string"===i&&!1===s.binary&&!1===s.base64;r&&void 0!==r.binary||(s.binary=!a),(t instanceof c&&0===t.uncompressedSize||s.dir||!t||0===t.length)&&(s.base64=!1,s.binary=!0,t="",s.compression="STORE",i="string");var o=null;o=t instanceof c||t instanceof l?t:p.isNode&&p.isStream(t)?new m(e,t):u.prepareContent(e,t,s.binary,s.optimizedBinaryString,s.base64);var h=new d(e,o,s);this.files[e]=h}var i=e("./utf8"),u=e("./utils"),l=e("./stream/GenericWorker"),a=e("./stream/StreamHelper"),f=e("./defaults"),c=e("./compressedObject"),d=e("./zipObject"),o=e("./generate"),p=e("./nodejsUtils"),m=e("./nodejs/NodejsStreamInputAdapter"),_=function(e){"/"===e.slice(-1)&&(e=e.substring(0,e.length-1));var t=e.lastIndexOf("/");return 0<t?e.substring(0,t):""},g=function(e){return"/"!==e.slice(-1)&&(e+="/"),e},b=function(e,t){return t=void 0!==t?t:f.createFolders,e=g(e),this.files[e]||s.call(this,e,null,{dir:!0,createFolders:t}),this.files[e]};function h(e){return"[object RegExp]"===Object.prototype.toString.call(e)}var n={load:function(){throw new Error("This method has been removed in JSZip 3.0, please check the upgrade guide.")},forEach:function(e){var t,r,n;for(t in this.files)n=this.files[t],(r=t.slice(this.root.length,t.length))&&t.slice(0,this.root.length)===this.root&&e(r,n)},filter:function(r){var n=[];return this.forEach(function(e,t){r(e,t)&&n.push(t)}),n},file:function(e,t,r){if(1!==arguments.length)return e=this.root+e,s.call(this,e,t,r),this;if(h(e)){var n=e;return this.filter(function(e,t){return!t.dir&&n.test(e)})}var i=this.files[this.root+e];return i&&!i.dir?i:null},folder:function(r){if(!r)return this;if(h(r))return this.filter(function(e,t){return t.dir&&r.test(e)});var e=this.root+r,t=b.call(this,e),n=this.clone();return n.root=t.name,n},remove:function(r){r=this.root+r;var e=this.files[r];if(e||("/"!==r.slice(-1)&&(r+="/"),e=this.files[r]),e&&!e.dir)delete this.files[r];else for(var t=this.filter(function(e,t){return t.name.slice(0,r.length)===r}),n=0;n<t.length;n++)delete this.files[t[n].name];return this},generate:function(){throw new Error("This method has been removed in JSZip 3.0, please check the upgrade guide.")},generateInternalStream:function(e){var t,r={};try{if((r=u.extend(e||{},{streamFiles:!1,compression:"STORE",compressionOptions:null,type:"",platform:"DOS",comment:null,mimeType:"application/zip",encodeFileName:i.utf8encode})).type=r.type.toLowerCase(),r.compression=r.compression.toUpperCase(),"binarystring"===r.type&&(r.type="string"),!r.type)throw new Error("No output type specified.");u.checkSupport(r.type),"darwin"!==r.platform&&"freebsd"!==r.platform&&"linux"!==r.platform&&"sunos"!==r.platform||(r.platform="UNIX"),"win32"===r.platform&&(r.platform="DOS");var n=r.comment||this.comment||"";t=o.generateWorker(this,r,n)}catch(e){(t=new l("error")).error(e)}return new a(t,r.type||"string",r.mimeType)},generateAsync:function(e,t){return this.generateInternalStream(e).accumulate(t)},generateNodeStream:function(e,t){return(e=e||{}).type||(e.type="nodebuffer"),this.generateInternalStream(e).toNodejsStream(t)}};t.exports=n},{"./compressedObject":2,"./defaults":5,"./generate":9,"./nodejs/NodejsStreamInputAdapter":12,"./nodejsUtils":14,"./stream/GenericWorker":28,"./stream/StreamHelper":29,"./utf8":31,"./utils":32,"./zipObject":35}],16:[function(e,t,r){"use strict";t.exports=e("stream")},{stream:void 0}],17:[function(e,t,r){"use strict";var n=e("./DataReader");function i(e){n.call(this,e);for(var t=0;t<this.data.length;t++)e[t]=255&e[t]}e("../utils").inherits(i,n),i.prototype.byteAt=function(e){return this.data[this.zero+e]},i.prototype.lastIndexOfSignature=function(e){for(var t=e.charCodeAt(0),r=e.charCodeAt(1),n=e.charCodeAt(2),i=e.charCodeAt(3),s=this.length-4;0<=s;--s)if(this.data[s]===t&&this.data[s+1]===r&&this.data[s+2]===n&&this.data[s+3]===i)return s-this.zero;return-1},i.prototype.readAndCheckSignature=function(e){var t=e.charCodeAt(0),r=e.charCodeAt(1),n=e.charCodeAt(2),i=e.charCodeAt(3),s=this.readData(4);return t===s[0]&&r===s[1]&&n===s[2]&&i===s[3]},i.prototype.readData=function(e){if(this.checkOffset(e),0===e)return[];var t=this.data.slice(this.zero+this.index,this.zero+this.index+e);return this.index+=e,t},t.exports=i},{"../utils":32,"./DataReader":18}],18:[function(e,t,r){"use strict";var n=e("../utils");function i(e){this.data=e,this.length=e.length,this.index=0,this.zero=0}i.prototype={checkOffset:function(e){this.checkIndex(this.index+e)},checkIndex:function(e){if(this.length<this.zero+e||e<0)throw new Error("End of data reached (data length = "+this.length+", asked index = "+e+"). Corrupted zip ?")},setIndex:function(e){this.checkIndex(e),this.index=e},skip:function(e){this.setIndex(this.index+e)},byteAt:function(){},readInt:function(e){var t,r=0;for(this.checkOffset(e),t=this.index+e-1;t>=this.index;t--)r=(r<<8)+this.byteAt(t);return this.index+=e,r},readString:function(e){return n.transformTo("string",this.readData(e))},readData:function(){},lastIndexOfSignature:function(){},readAndCheckSignature:function(){},readDate:function(){var e=this.readInt(4);return new Date(Date.UTC(1980+(e>>25&127),(e>>21&15)-1,e>>16&31,e>>11&31,e>>5&63,(31&e)<<1))}},t.exports=i},{"../utils":32}],19:[function(e,t,r){"use strict";var n=e("./Uint8ArrayReader");function i(e){n.call(this,e)}e("../utils").inherits(i,n),i.prototype.readData=function(e){this.checkOffset(e);var t=this.data.slice(this.zero+this.index,this.zero+this.index+e);return this.index+=e,t},t.exports=i},{"../utils":32,"./Uint8ArrayReader":21}],20:[function(e,t,r){"use strict";var n=e("./DataReader");function i(e){n.call(this,e)}e("../utils").inherits(i,n),i.prototype.byteAt=function(e){return this.data.charCodeAt(this.zero+e)},i.prototype.lastIndexOfSignature=function(e){return this.data.lastIndexOf(e)-this.zero},i.prototype.readAndCheckSignature=function(e){return e===this.readData(4)},i.prototype.readData=function(e){this.checkOffset(e);var t=this.data.slice(this.zero+this.index,this.zero+this.index+e);return this.index+=e,t},t.exports=i},{"../utils":32,"./DataReader":18}],21:[function(e,t,r){"use strict";var n=e("./ArrayReader");function i(e){n.call(this,e)}e("../utils").inherits(i,n),i.prototype.readData=function(e){if(this.checkOffset(e),0===e)return new Uint8Array(0);var t=this.data.subarray(this.zero+this.index,this.zero+this.index+e);return this.index+=e,t},t.exports=i},{"../utils":32,"./ArrayReader":17}],22:[function(e,t,r){"use strict";var n=e("../utils"),i=e("../support"),s=e("./ArrayReader"),a=e("./StringReader"),o=e("./NodeBufferReader"),h=e("./Uint8ArrayReader");t.exports=function(e){var t=n.getTypeOf(e);return n.checkSupport(t),"string"!==t||i.uint8array?"nodebuffer"===t?new o(e):i.uint8array?new h(n.transformTo("uint8array",e)):new s(n.transformTo("array",e)):new a(e)}},{"../support":30,"../utils":32,"./ArrayReader":17,"./NodeBufferReader":19,"./StringReader":20,"./Uint8ArrayReader":21}],23:[function(e,t,r){"use strict";r.LOCAL_FILE_HEADER="PK",r.CENTRAL_FILE_HEADER="PK",r.CENTRAL_DIRECTORY_END="PK",r.ZIP64_CENTRAL_DIRECTORY_LOCATOR="PK",r.ZIP64_CENTRAL_DIRECTORY_END="PK",r.DATA_DESCRIPTOR="PK\b"},{}],24:[function(e,t,r){"use strict";var n=e("./GenericWorker"),i=e("../utils");function s(e){n.call(this,"ConvertWorker to "+e),this.destType=e}i.inherits(s,n),s.prototype.processChunk=function(e){this.push({data:i.transformTo(this.destType,e.data),meta:e.meta})},t.exports=s},{"../utils":32,"./GenericWorker":28}],25:[function(e,t,r){"use strict";var n=e("./GenericWorker"),i=e("../crc32");function s(){n.call(this,"Crc32Probe"),this.withStreamInfo("crc32",0)}e("../utils").inherits(s,n),s.prototype.processChunk=function(e){this.streamInfo.crc32=i(e.data,this.streamInfo.crc32||0),this.push(e)},t.exports=s},{"../crc32":4,"../utils":32,"./GenericWorker":28}],26:[function(e,t,r){"use strict";var n=e("../utils"),i=e("./GenericWorker");function s(e){i.call(this,"DataLengthProbe for "+e),this.propName=e,this.withStreamInfo(e,0)}n.inherits(s,i),s.prototype.processChunk=function(e){if(e){var t=this.streamInfo[this.propName]||0;this.streamInfo[this.propName]=t+e.data.length}i.prototype.processChunk.call(this,e)},t.exports=s},{"../utils":32,"./GenericWorker":28}],27:[function(e,t,r){"use strict";var n=e("../utils"),i=e("./GenericWorker");function s(e){i.call(this,"DataWorker");var t=this;this.dataIsReady=!1,this.index=0,this.max=0,this.data=null,this.type="",this._tickScheduled=!1,e.then(function(e){t.dataIsReady=!0,t.data=e,t.max=e&&e.length||0,t.type=n.getTypeOf(e),t.isPaused||t._tickAndRepeat()},function(e){t.error(e)})}n.inherits(s,i),s.prototype.cleanUp=function(){i.prototype.cleanUp.call(this),this.data=null},s.prototype.resume=function(){return!!i.prototype.resume.call(this)&&(!this._tickScheduled&&this.dataIsReady&&(this._tickScheduled=!0,n.delay(this._tickAndRepeat,[],this)),!0)},s.prototype._tickAndRepeat=function(){this._tickScheduled=!1,this.isPaused||this.isFinished||(this._tick(),this.isFinished||(n.delay(this._tickAndRepeat,[],this),this._tickScheduled=!0))},s.prototype._tick=function(){if(this.isPaused||this.isFinished)return!1;var e=null,t=Math.min(this.max,this.index+16384);if(this.index>=this.max)return this.end();switch(this.type){case"string":e=this.data.substring(this.index,t);break;case"uint8array":e=this.data.subarray(this.index,t);break;case"array":case"nodebuffer":e=this.data.slice(this.index,t)}return this.index=t,this.push({data:e,meta:{percent:this.max?this.index/this.max*100:0}})},t.exports=s},{"../utils":32,"./GenericWorker":28}],28:[function(e,t,r){"use strict";function n(e){this.name=e||"default",this.streamInfo={},this.generatedError=null,this.extraStreamInfo={},this.isPaused=!0,this.isFinished=!1,this.isLocked=!1,this._listeners={data:[],end:[],error:[]},this.previous=null}n.prototype={push:function(e){this.emit("data",e)},end:function(){if(this.isFinished)return!1;this.flush();try{this.emit("end"),this.cleanUp(),this.isFinished=!0}catch(e){this.emit("error",e)}return!0},error:function(e){return!this.isFinished&&(this.isPaused?this.generatedError=e:(this.isFinished=!0,this.emit("error",e),this.previous&&this.previous.error(e),this.cleanUp()),!0)},on:function(e,t){return this._listeners[e].push(t),this},cleanUp:function(){this.streamInfo=this.generatedError=this.extraStreamInfo=null,this._listeners=[]},emit:function(e,t){if(this._listeners[e])for(var r=0;r<this._listeners[e].length;r++)this._listeners[e][r].call(this,t)},pipe:function(e){return e.registerPrevious(this)},registerPrevious:function(e){if(this.isLocked)throw new Error("The stream '"+this+"' has already been used.");this.streamInfo=e.streamInfo,this.mergeStreamInfo(),this.previous=e;var t=this;return e.on("data",function(e){t.processChunk(e)}),e.on("end",function(){t.end()}),e.on("error",function(e){t.error(e)}),this},pause:function(){return!this.isPaused&&!this.isFinished&&(this.isPaused=!0,this.previous&&this.previous.pause(),!0)},resume:function(){if(!this.isPaused||this.isFinished)return!1;var e=this.isPaused=!1;return this.generatedError&&(this.error(this.generatedError),e=!0),this.previous&&this.previous.resume(),!e},flush:function(){},processChunk:function(e){this.push(e)},withStreamInfo:function(e,t){return this.extraStreamInfo[e]=t,this.mergeStreamInfo(),this},mergeStreamInfo:function(){for(var e in this.extraStreamInfo)Object.prototype.hasOwnProperty.call(this.extraStreamInfo,e)&&(this.streamInfo[e]=this.extraStreamInfo[e])},lock:function(){if(this.isLocked)throw new Error("The stream '"+this+"' has already been used.");this.isLocked=!0,this.previous&&this.previous.lock()},toString:function(){var e="Worker "+this.name;return this.previous?this.previous+" -> "+e:e}},t.exports=n},{}],29:[function(e,t,r){"use strict";var h=e("../utils"),i=e("./ConvertWorker"),s=e("./GenericWorker"),u=e("../base64"),n=e("../support"),a=e("../external"),o=null;if(n.nodestream)try{o=e("../nodejs/NodejsStreamOutputAdapter")}catch(e){}function l(e,o){return new a.Promise(function(t,r){var n=[],i=e._internalType,s=e._outputType,a=e._mimeType;e.on("data",function(e,t){n.push(e),o&&o(t)}).on("error",function(e){n=[],r(e)}).on("end",function(){try{var e=function(e,t,r){switch(e){case"blob":return h.newBlob(h.transformTo("arraybuffer",t),r);case"base64":return u.encode(t);default:return h.transformTo(e,t)}}(s,function(e,t){var r,n=0,i=null,s=0;for(r=0;r<t.length;r++)s+=t[r].length;switch(e){case"string":return t.join("");case"array":return Array.prototype.concat.apply([],t);case"uint8array":for(i=new Uint8Array(s),r=0;r<t.length;r++)i.set(t[r],n),n+=t[r].length;return i;case"nodebuffer":return Buffer.concat(t);default:throw new Error("concat : unsupported type '"+e+"'")}}(i,n),a);t(e)}catch(e){r(e)}n=[]}).resume()})}function f(e,t,r){var n=t;switch(t){case"blob":case"arraybuffer":n="uint8array";break;case"base64":n="string"}try{this._internalType=n,this._outputType=t,this._mimeType=r,h.checkSupport(n),this._worker=e.pipe(new i(n)),e.lock()}catch(e){this._worker=new s("error"),this._worker.error(e)}}f.prototype={accumulate:function(e){return l(this,e)},on:function(e,t){var r=this;return"data"===e?this._worker.on(e,function(e){t.call(r,e.data,e.meta)}):this._worker.on(e,function(){h.delay(t,arguments,r)}),this},resume:function(){return h.delay(this._worker.resume,[],this._worker),this},pause:function(){return this._worker.pause(),this},toNodejsStream:function(e){if(h.checkSupport("nodestream"),"nodebuffer"!==this._outputType)throw new Error(this._outputType+" is not supported by this method");return new o(this,{objectMode:"nodebuffer"!==this._outputType},e)}},t.exports=f},{"../base64":1,"../external":6,"../nodejs/NodejsStreamOutputAdapter":13,"../support":30,"../utils":32,"./ConvertWorker":24,"./GenericWorker":28}],30:[function(e,t,r){"use strict";if(r.base64=!0,r.array=!0,r.string=!0,r.arraybuffer="undefined"!=typeof ArrayBuffer&&"undefined"!=typeof Uint8Array,r.nodebuffer="undefined"!=typeof Buffer,r.uint8array="undefined"!=typeof Uint8Array,"undefined"==typeof ArrayBuffer)r.blob=!1;else{var n=new ArrayBuffer(0);try{r.blob=0===new Blob([n],{type:"application/zip"}).size}catch(e){try{var i=new(self.BlobBuilder||self.WebKitBlobBuilder||self.MozBlobBuilder||self.MSBlobBuilder);i.append(n),r.blob=0===i.getBlob("application/zip").size}catch(e){r.blob=!1}}}try{r.nodestream=!!e("readable-stream").Readable}catch(e){r.nodestream=!1}},{"readable-stream":16}],31:[function(e,t,s){"use strict";for(var o=e("./utils"),h=e("./support"),r=e("./nodejsUtils"),n=e("./stream/GenericWorker"),u=new Array(256),i=0;i<256;i++)u[i]=252<=i?6:248<=i?5:240<=i?4:224<=i?3:192<=i?2:1;u[254]=u[254]=1;function a(){n.call(this,"utf-8 decode"),this.leftOver=null}function l(){n.call(this,"utf-8 encode")}s.utf8encode=function(e){return h.nodebuffer?r.newBufferFrom(e,"utf-8"):function(e){var t,r,n,i,s,a=e.length,o=0;for(i=0;i<a;i++)55296==(64512&(r=e.charCodeAt(i)))&&i+1<a&&56320==(64512&(n=e.charCodeAt(i+1)))&&(r=65536+(r-55296<<10)+(n-56320),i++),o+=r<128?1:r<2048?2:r<65536?3:4;for(t=h.uint8array?new Uint8Array(o):new Array(o),i=s=0;s<o;i++)55296==(64512&(r=e.charCodeAt(i)))&&i+1<a&&56320==(64512&(n=e.charCodeAt(i+1)))&&(r=65536+(r-55296<<10)+(n-56320),i++),r<128?t[s++]=r:(r<2048?t[s++]=192|r>>>6:(r<65536?t[s++]=224|r>>>12:(t[s++]=240|r>>>18,t[s++]=128|r>>>12&63),t[s++]=128|r>>>6&63),t[s++]=128|63&r);return t}(e)},s.utf8decode=function(e){return h.nodebuffer?o.transformTo("nodebuffer",e).toString("utf-8"):function(e){var t,r,n,i,s=e.length,a=new Array(2*s);for(t=r=0;t<s;)if((n=e[t++])<128)a[r++]=n;else if(4<(i=u[n]))a[r++]=65533,t+=i-1;else{for(n&=2===i?31:3===i?15:7;1<i&&t<s;)n=n<<6|63&e[t++],i--;1<i?a[r++]=65533:n<65536?a[r++]=n:(n-=65536,a[r++]=55296|n>>10&1023,a[r++]=56320|1023&n)}return a.length!==r&&(a.subarray?a=a.subarray(0,r):a.length=r),o.applyFromCharCode(a)}(e=o.transformTo(h.uint8array?"uint8array":"array",e))},o.inherits(a,n),a.prototype.processChunk=function(e){var t=o.transformTo(h.uint8array?"uint8array":"array",e.data);if(this.leftOver&&this.leftOver.length){if(h.uint8array){var r=t;(t=new Uint8Array(r.length+this.leftOver.length)).set(this.leftOver,0),t.set(r,this.leftOver.length)}else t=this.leftOver.concat(t);this.leftOver=null}var n=function(e,t){var r;for((t=t||e.length)>e.length&&(t=e.length),r=t-1;0<=r&&128==(192&e[r]);)r--;return r<0?t:0===r?t:r+u[e[r]]>t?r:t}(t),i=t;n!==t.length&&(h.uint8array?(i=t.subarray(0,n),this.leftOver=t.subarray(n,t.length)):(i=t.slice(0,n),this.leftOver=t.slice(n,t.length))),this.push({data:s.utf8decode(i),meta:e.meta})},a.prototype.flush=function(){this.leftOver&&this.leftOver.length&&(this.push({data:s.utf8decode(this.leftOver),meta:{}}),this.leftOver=null)},s.Utf8DecodeWorker=a,o.inherits(l,n),l.prototype.processChunk=function(e){this.push({data:s.utf8encode(e.data),meta:e.meta})},s.Utf8EncodeWorker=l},{"./nodejsUtils":14,"./stream/GenericWorker":28,"./support":30,"./utils":32}],32:[function(e,t,a){"use strict";var o=e("./support"),h=e("./base64"),r=e("./nodejsUtils"),u=e("./external");function n(e){return e}function l(e,t){for(var r=0;r<e.length;++r)t[r]=255&e.charCodeAt(r);return t}e("setimmediate"),a.newBlob=function(t,r){a.checkSupport("blob");try{return new Blob([t],{type:r})}catch(e){try{var n=new(self.BlobBuilder||self.WebKitBlobBuilder||self.MozBlobBuilder||self.MSBlobBuilder);return n.append(t),n.getBlob(r)}catch(e){throw new Error("Bug : can't construct the Blob.")}}};var i={stringifyByChunk:function(e,t,r){var n=[],i=0,s=e.length;if(s<=r)return String.fromCharCode.apply(null,e);for(;i<s;)"array"===t||"nodebuffer"===t?n.push(String.fromCharCode.apply(null,e.slice(i,Math.min(i+r,s)))):n.push(String.fromCharCode.apply(null,e.subarray(i,Math.min(i+r,s)))),i+=r;return n.join("")},stringifyByChar:function(e){for(var t="",r=0;r<e.length;r++)t+=String.fromCharCode(e[r]);return t},applyCanBeUsed:{uint8array:function(){try{return o.uint8array&&1===String.fromCharCode.apply(null,new Uint8Array(1)).length}catch(e){return!1}}(),nodebuffer:function(){try{return o.nodebuffer&&1===String.fromCharCode.apply(null,r.allocBuffer(1)).length}catch(e){return!1}}()}};function s(e){var t=65536,r=a.getTypeOf(e),n=!0;if("uint8array"===r?n=i.applyCanBeUsed.uint8array:"nodebuffer"===r&&(n=i.applyCanBeUsed.nodebuffer),n)for(;1<t;)try{return i.stringifyByChunk(e,r,t)}catch(e){t=Math.floor(t/2)}return i.stringifyByChar(e)}function f(e,t){for(var r=0;r<e.length;r++)t[r]=e[r];return t}a.applyFromCharCode=s;var c={};c.string={string:n,array:function(e){return l(e,new Array(e.length))},arraybuffer:function(e){return c.string.uint8array(e).buffer},uint8array:function(e){return l(e,new Uint8Array(e.length))},nodebuffer:function(e){return l(e,r.allocBuffer(e.length))}},c.array={string:s,array:n,arraybuffer:function(e){return new Uint8Array(e).buffer},uint8array:function(e){return new Uint8Array(e)},nodebuffer:function(e){return r.newBufferFrom(e)}},c.arraybuffer={string:function(e){return s(new Uint8Array(e))},array:function(e){return f(new Uint8Array(e),new Array(e.byteLength))},arraybuffer:n,uint8array:function(e){return new Uint8Array(e)},nodebuffer:function(e){return r.newBufferFrom(new Uint8Array(e))}},c.uint8array={string:s,array:function(e){return f(e,new Array(e.length))},arraybuffer:function(e){return e.buffer},uint8array:n,nodebuffer:function(e){return r.newBufferFrom(e)}},c.nodebuffer={string:s,array:function(e){return f(e,new Array(e.length))},arraybuffer:function(e){return c.nodebuffer.uint8array(e).buffer},uint8array:function(e){return f(e,new Uint8Array(e.length))},nodebuffer:n},a.transformTo=function(e,t){if(t=t||"",!e)return t;a.checkSupport(e);var r=a.getTypeOf(t);return c[r][e](t)},a.resolve=function(e){for(var t=e.split("/"),r=[],n=0;n<t.length;n++){var i=t[n];"."===i||""===i&&0!==n&&n!==t.length-1||(".."===i?r.pop():r.push(i))}return r.join("/")},a.getTypeOf=function(e){return"string"==typeof e?"string":"[object Array]"===Object.prototype.toString.call(e)?"array":o.nodebuffer&&r.isBuffer(e)?"nodebuffer":o.uint8array&&e instanceof Uint8Array?"uint8array":o.arraybuffer&&e instanceof ArrayBuffer?"arraybuffer":void 0},a.checkSupport=function(e){if(!o[e.toLowerCase()])throw new Error(e+" is not supported by this platform")},a.MAX_VALUE_16BITS=65535,a.MAX_VALUE_32BITS=-1,a.pretty=function(e){var t,r,n="";for(r=0;r<(e||"").length;r++)n+="\\x"+((t=e.charCodeAt(r))<16?"0":"")+t.toString(16).toUpperCase();return n},a.delay=function(e,t,r){setImmediate(function(){e.apply(r||null,t||[])})},a.inherits=function(e,t){function r(){}r.prototype=t.prototype,e.prototype=new r},a.extend=function(){var e,t,r={};for(e=0;e<arguments.length;e++)for(t in arguments[e])Object.prototype.hasOwnProperty.call(arguments[e],t)&&void 0===r[t]&&(r[t]=arguments[e][t]);return r},a.prepareContent=function(r,e,n,i,s){return u.Promise.resolve(e).then(function(n){return o.blob&&(n instanceof Blob||-1!==["[object File]","[object Blob]"].indexOf(Object.prototype.toString.call(n)))&&"undefined"!=typeof FileReader?new u.Promise(function(t,r){var e=new FileReader;e.onload=function(e){t(e.target.result)},e.onerror=function(e){r(e.target.error)},e.readAsArrayBuffer(n)}):n}).then(function(e){var t=a.getTypeOf(e);return t?("arraybuffer"===t?e=a.transformTo("uint8array",e):"string"===t&&(s?e=h.decode(e):n&&!0!==i&&(e=function(e){return l(e,o.uint8array?new Uint8Array(e.length):new Array(e.length))}(e))),e):u.Promise.reject(new Error("Can't read the data of '"+r+"'. Is it in a supported JavaScript type (String, Blob, ArrayBuffer, etc) ?"))})}},{"./base64":1,"./external":6,"./nodejsUtils":14,"./support":30,setimmediate:54}],33:[function(e,t,r){"use strict";var n=e("./reader/readerFor"),i=e("./utils"),s=e("./signature"),a=e("./zipEntry"),o=e("./support");function h(e){this.files=[],this.loadOptions=e}h.prototype={checkSignature:function(e){if(!this.reader.readAndCheckSignature(e)){this.reader.index-=4;var t=this.reader.readString(4);throw new Error("Corrupted zip or bug: unexpected signature ("+i.pretty(t)+", expected "+i.pretty(e)+")")}},isSignature:function(e,t){var r=this.reader.index;this.reader.setIndex(e);var n=this.reader.readString(4)===t;return this.reader.setIndex(r),n},readBlockEndOfCentral:function(){this.diskNumber=this.reader.readInt(2),this.diskWithCentralDirStart=this.reader.readInt(2),this.centralDirRecordsOnThisDisk=this.reader.readInt(2),this.centralDirRecords=this.reader.readInt(2),this.centralDirSize=this.reader.readInt(4),this.centralDirOffset=this.reader.readInt(4),this.zipCommentLength=this.reader.readInt(2);var e=this.reader.readData(this.zipCommentLength),t=o.uint8array?"uint8array":"array",r=i.transformTo(t,e);this.zipComment=this.loadOptions.decodeFileName(r)},readBlockZip64EndOfCentral:function(){this.zip64EndOfCentralSize=this.reader.readInt(8),this.reader.skip(4),this.diskNumber=this.reader.readInt(4),this.diskWithCentralDirStart=this.reader.readInt(4),this.centralDirRecordsOnThisDisk=this.reader.readInt(8),this.centralDirRecords=this.reader.readInt(8),this.centralDirSize=this.reader.readInt(8),this.centralDirOffset=this.reader.readInt(8),this.zip64ExtensibleData={};for(var e,t,r,n=this.zip64EndOfCentralSize-44;0<n;)e=this.reader.readInt(2),t=this.reader.readInt(4),r=this.reader.readData(t),this.zip64ExtensibleData[e]={id:e,length:t,value:r}},readBlockZip64EndOfCentralLocator:function(){if(this.diskWithZip64CentralDirStart=this.reader.readInt(4),this.relativeOffsetEndOfZip64CentralDir=this.reader.readInt(8),this.disksCount=this.reader.readInt(4),1<this.disksCount)throw new Error("Multi-volumes zip are not supported")},readLocalFiles:function(){var e,t;for(e=0;e<this.files.length;e++)t=this.files[e],this.reader.setIndex(t.localHeaderOffset),this.checkSignature(s.LOCAL_FILE_HEADER),t.readLocalPart(this.reader),t.handleUTF8(),t.processAttributes()},readCentralDir:function(){var e;for(this.reader.setIndex(this.centralDirOffset);this.reader.readAndCheckSignature(s.CENTRAL_FILE_HEADER);)(e=new a({zip64:this.zip64},this.loadOptions)).readCentralPart(this.reader),this.files.push(e);if(this.centralDirRecords!==this.files.length&&0!==this.centralDirRecords&&0===this.files.length)throw new Error("Corrupted zip or bug: expected "+this.centralDirRecords+" records in central dir, got "+this.files.length)},readEndOfCentral:function(){var e=this.reader.lastIndexOfSignature(s.CENTRAL_DIRECTORY_END);if(e<0)throw!this.isSignature(0,s.LOCAL_FILE_HEADER)?new Error("Can't find end of central directory : is this a zip file ? If it is, see https://stuk.github.io/jszip/documentation/howto/read_zip.html"):new Error("Corrupted zip: can't find end of central directory");this.reader.setIndex(e);var t=e;if(this.checkSignature(s.CENTRAL_DIRECTORY_END),this.readBlockEndOfCentral(),this.diskNumber===i.MAX_VALUE_16BITS||this.diskWithCentralDirStart===i.MAX_VALUE_16BITS||this.centralDirRecordsOnThisDisk===i.MAX_VALUE_16BITS||this.centralDirRecords===i.MAX_VALUE_16BITS||this.centralDirSize===i.MAX_VALUE_32BITS||this.centralDirOffset===i.MAX_VALUE_32BITS){if(this.zip64=!0,(e=this.reader.lastIndexOfSignature(s.ZIP64_CENTRAL_DIRECTORY_LOCATOR))<0)throw new Error("Corrupted zip: can't find the ZIP64 end of central directory locator");if(this.reader.setIndex(e),this.checkSignature(s.ZIP64_CENTRAL_DIRECTORY_LOCATOR),this.readBlockZip64EndOfCentralLocator(),!this.isSignature(this.relativeOffsetEndOfZip64CentralDir,s.ZIP64_CENTRAL_DIRECTORY_END)&&(this.relativeOffsetEndOfZip64CentralDir=this.reader.lastIndexOfSignature(s.ZIP64_CENTRAL_DIRECTORY_END),this.relativeOffsetEndOfZip64CentralDir<0))throw new Error("Corrupted zip: can't find the ZIP64 end of central directory");this.reader.setIndex(this.relativeOffsetEndOfZip64CentralDir),this.checkSignature(s.ZIP64_CENTRAL_DIRECTORY_END),this.readBlockZip64EndOfCentral()}var r=this.centralDirOffset+this.centralDirSize;this.zip64&&(r+=20,r+=12+this.zip64EndOfCentralSize);var n=t-r;if(0<n)this.isSignature(t,s.CENTRAL_FILE_HEADER)||(this.reader.zero=n);else if(n<0)throw new Error("Corrupted zip: missing "+Math.abs(n)+" bytes.")},prepareReader:function(e){this.reader=n(e)},load:function(e){this.prepareReader(e),this.readEndOfCentral(),this.readCentralDir(),this.readLocalFiles()}},t.exports=h},{"./reader/readerFor":22,"./signature":23,"./support":30,"./utils":32,"./zipEntry":34}],34:[function(e,t,r){"use strict";var n=e("./reader/readerFor"),s=e("./utils"),i=e("./compressedObject"),a=e("./crc32"),o=e("./utf8"),h=e("./compressions"),u=e("./support");function l(e,t){this.options=e,this.loadOptions=t}l.prototype={isEncrypted:function(){return 1==(1&this.bitFlag)},useUTF8:function(){return 2048==(2048&this.bitFlag)},readLocalPart:function(e){var t,r;if(e.skip(22),this.fileNameLength=e.readInt(2),r=e.readInt(2),this.fileName=e.readData(this.fileNameLength),e.skip(r),-1===this.compressedSize||-1===this.uncompressedSize)throw new Error("Bug or corrupted zip : didn't get enough information from the central directory (compressedSize === -1 || uncompressedSize === -1)");if(null===(t=function(e){for(var t in h)if(Object.prototype.hasOwnProperty.call(h,t)&&h[t].magic===e)return h[t];return null}(this.compressionMethod)))throw new Error("Corrupted zip : compression "+s.pretty(this.compressionMethod)+" unknown (inner file : "+s.transformTo("string",this.fileName)+")");this.decompressed=new i(this.compressedSize,this.uncompressedSize,this.crc32,t,e.readData(this.compressedSize))},readCentralPart:function(e){this.versionMadeBy=e.readInt(2),e.skip(2),this.bitFlag=e.readInt(2),this.compressionMethod=e.readString(2),this.date=e.readDate(),this.crc32=e.readInt(4),this.compressedSize=e.readInt(4),this.uncompressedSize=e.readInt(4);var t=e.readInt(2);if(this.extraFieldsLength=e.readInt(2),this.fileCommentLength=e.readInt(2),this.diskNumberStart=e.readInt(2),this.internalFileAttributes=e.readInt(2),this.externalFileAttributes=e.readInt(4),this.localHeaderOffset=e.readInt(4),this.isEncrypted())throw new Error("Encrypted zip are not supported");e.skip(t),this.readExtraFields(e),this.parseZIP64ExtraField(e),this.fileComment=e.readData(this.fileCommentLength)},processAttributes:function(){this.unixPermissions=null,this.dosPermissions=null;var e=this.versionMadeBy>>8;this.dir=!!(16&this.externalFileAttributes),0==e&&(this.dosPermissions=63&this.externalFileAttributes),3==e&&(this.unixPermissions=this.externalFileAttributes>>16&65535),this.dir||"/"!==this.fileNameStr.slice(-1)||(this.dir=!0)},parseZIP64ExtraField:function(){if(this.extraFields[1]){var e=n(this.extraFields[1].value);this.uncompressedSize===s.MAX_VALUE_32BITS&&(this.uncompressedSize=e.readInt(8)),this.compressedSize===s.MAX_VALUE_32BITS&&(this.compressedSize=e.readInt(8)),this.localHeaderOffset===s.MAX_VALUE_32BITS&&(this.localHeaderOffset=e.readInt(8)),this.diskNumberStart===s.MAX_VALUE_32BITS&&(this.diskNumberStart=e.readInt(4))}},readExtraFields:function(e){var t,r,n,i=e.index+this.extraFieldsLength;for(this.extraFields||(this.extraFields={});e.index+4<i;)t=e.readInt(2),r=e.readInt(2),n=e.readData(r),this.extraFields[t]={id:t,length:r,value:n};e.setIndex(i)},handleUTF8:function(){var e=u.uint8array?"uint8array":"array";if(this.useUTF8())this.fileNameStr=o.utf8decode(this.fileName),this.fileCommentStr=o.utf8decode(this.fileComment);else{var t=this.findExtraFieldUnicodePath();if(null!==t)this.fileNameStr=t;else{var r=s.transformTo(e,this.fileName);this.fileNameStr=this.loadOptions.decodeFileName(r)}var n=this.findExtraFieldUnicodeComment();if(null!==n)this.fileCommentStr=n;else{var i=s.transformTo(e,this.fileComment);this.fileCommentStr=this.loadOptions.decodeFileName(i)}}},findExtraFieldUnicodePath:function(){var e=this.extraFields[28789];if(e){var t=n(e.value);return 1!==t.readInt(1)?null:a(this.fileName)!==t.readInt(4)?null:o.utf8decode(t.readData(e.length-5))}return null},findExtraFieldUnicodeComment:function(){var e=this.extraFields[25461];if(e){var t=n(e.value);return 1!==t.readInt(1)?null:a(this.fileComment)!==t.readInt(4)?null:o.utf8decode(t.readData(e.length-5))}return null}},t.exports=l},{"./compressedObject":2,"./compressions":3,"./crc32":4,"./reader/readerFor":22,"./support":30,"./utf8":31,"./utils":32}],35:[function(e,t,r){"use strict";function n(e,t,r){this.name=e,this.dir=r.dir,this.date=r.date,this.comment=r.comment,this.unixPermissions=r.unixPermissions,this.dosPermissions=r.dosPermissions,this._data=t,this._dataBinary=r.binary,this.options={compression:r.compression,compressionOptions:r.compressionOptions}}var s=e("./stream/StreamHelper"),i=e("./stream/DataWorker"),a=e("./utf8"),o=e("./compressedObject"),h=e("./stream/GenericWorker");n.prototype={internalStream:function(e){var t=null,r="string";try{if(!e)throw new Error("No output type specified.");var n="string"===(r=e.toLowerCase())||"text"===r;"binarystring"!==r&&"text"!==r||(r="string"),t=this._decompressWorker();var i=!this._dataBinary;i&&!n&&(t=t.pipe(new a.Utf8EncodeWorker)),!i&&n&&(t=t.pipe(new a.Utf8DecodeWorker))}catch(e){(t=new h("error")).error(e)}return new s(t,r,"")},async:function(e,t){return this.internalStream(e).accumulate(t)},nodeStream:function(e,t){return this.internalStream(e||"nodebuffer").toNodejsStream(t)},_compressWorker:function(e,t){if(this._data instanceof o&&this._data.compression.magic===e.magic)return this._data.getCompressedWorker();var r=this._decompressWorker();return this._dataBinary||(r=r.pipe(new a.Utf8EncodeWorker)),o.createWorkerFrom(r,e,t)},_decompressWorker:function(){return this._data instanceof o?this._data.getContentWorker():this._data instanceof h?this._data:new i(this._data)}};for(var u=["asText","asBinary","asNodeBuffer","asUint8Array","asArrayBuffer"],l=function(){throw new Error("This method has been removed in JSZip 3.0, please check the upgrade guide.")},f=0;f<u.length;f++)n.prototype[u[f]]=l;t.exports=n},{"./compressedObject":2,"./stream/DataWorker":27,"./stream/GenericWorker":28,"./stream/StreamHelper":29,"./utf8":31}],36:[function(e,l,t){(function(t){"use strict";var r,n,e=t.MutationObserver||t.WebKitMutationObserver;if(e){var i=0,s=new e(u),a=t.document.createTextNode("");s.observe(a,{characterData:!0}),r=function(){a.data=i=++i%2}}else if(t.setImmediate||void 0===t.MessageChannel)r="document"in t&&"onreadystatechange"in t.document.createElement("script")?function(){var e=t.document.createElement("script");e.onreadystatechange=function(){u(),e.onreadystatechange=null,e.parentNode.removeChild(e),e=null},t.document.documentElement.appendChild(e)}:function(){setTimeout(u,0)};else{var o=new t.MessageChannel;o.port1.onmessage=u,r=function(){o.port2.postMessage(0)}}var h=[];function u(){var e,t;n=!0;for(var r=h.length;r;){for(t=h,h=[],e=-1;++e<r;)t[e]();r=h.length}n=!1}l.exports=function(e){1!==h.push(e)||n||r()}}).call(this,"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{}],37:[function(e,t,r){"use strict";var i=e("immediate");function u(){}var l={},s=["REJECTED"],a=["FULFILLED"],n=["PENDING"];function o(e){if("function"!=typeof e)throw new TypeError("resolver must be a function");this.state=n,this.queue=[],this.outcome=void 0,e!==u&&d(this,e)}function h(e,t,r){this.promise=e,"function"==typeof t&&(this.onFulfilled=t,this.callFulfilled=this.otherCallFulfilled),"function"==typeof r&&(this.onRejected=r,this.callRejected=this.otherCallRejected)}function f(t,r,n){i(function(){var e;try{e=r(n)}catch(e){return l.reject(t,e)}e===t?l.reject(t,new TypeError("Cannot resolve promise with itself")):l.resolve(t,e)})}function c(e){var t=e&&e.then;if(e&&("object"==typeof e||"function"==typeof e)&&"function"==typeof t)return function(){t.apply(e,arguments)}}function d(t,e){var r=!1;function n(e){r||(r=!0,l.reject(t,e))}function i(e){r||(r=!0,l.resolve(t,e))}var s=p(function(){e(i,n)});"error"===s.status&&n(s.value)}function p(e,t){var r={};try{r.value=e(t),r.status="success"}catch(e){r.status="error",r.value=e}return r}(t.exports=o).prototype.finally=function(t){if("function"!=typeof t)return this;var r=this.constructor;return this.then(function(e){return r.resolve(t()).then(function(){return e})},function(e){return r.resolve(t()).then(function(){throw e})})},o.prototype.catch=function(e){return this.then(null,e)},o.prototype.then=function(e,t){if("function"!=typeof e&&this.state===a||"function"!=typeof t&&this.state===s)return this;var r=new this.constructor(u);this.state!==n?f(r,this.state===a?e:t,this.outcome):this.queue.push(new h(r,e,t));return r},h.prototype.callFulfilled=function(e){l.resolve(this.promise,e)},h.prototype.otherCallFulfilled=function(e){f(this.promise,this.onFulfilled,e)},h.prototype.callRejected=function(e){l.reject(this.promise,e)},h.prototype.otherCallRejected=function(e){f(this.promise,this.onRejected,e)},l.resolve=function(e,t){var r=p(c,t);if("error"===r.status)return l.reject(e,r.value);var n=r.value;if(n)d(e,n);else{e.state=a,e.outcome=t;for(var i=-1,s=e.queue.length;++i<s;)e.queue[i].callFulfilled(t)}return e},l.reject=function(e,t){e.state=s,e.outcome=t;for(var r=-1,n=e.queue.length;++r<n;)e.queue[r].callRejected(t);return e},o.resolve=function(e){if(e instanceof this)return e;return l.resolve(new this(u),e)},o.reject=function(e){var t=new this(u);return l.reject(t,e)},o.all=function(e){var r=this;if("[object Array]"!==Object.prototype.toString.call(e))return this.reject(new TypeError("must be an array"));var n=e.length,i=!1;if(!n)return this.resolve([]);var s=new Array(n),a=0,t=-1,o=new this(u);for(;++t<n;)h(e[t],t);return o;function h(e,t){r.resolve(e).then(function(e){s[t]=e,++a!==n||i||(i=!0,l.resolve(o,s))},function(e){i||(i=!0,l.reject(o,e))})}},o.race=function(e){var t=this;if("[object Array]"!==Object.prototype.toString.call(e))return this.reject(new TypeError("must be an array"));var r=e.length,n=!1;if(!r)return this.resolve([]);var i=-1,s=new this(u);for(;++i<r;)a=e[i],t.resolve(a).then(function(e){n||(n=!0,l.resolve(s,e))},function(e){n||(n=!0,l.reject(s,e))});var a;return s}},{immediate:36}],38:[function(e,t,r){"use strict";var n={};(0,e("./lib/utils/common").assign)(n,e("./lib/deflate"),e("./lib/inflate"),e("./lib/zlib/constants")),t.exports=n},{"./lib/deflate":39,"./lib/inflate":40,"./lib/utils/common":41,"./lib/zlib/constants":44}],39:[function(e,t,r){"use strict";var a=e("./zlib/deflate"),o=e("./utils/common"),h=e("./utils/strings"),i=e("./zlib/messages"),s=e("./zlib/zstream"),u=Object.prototype.toString,l=0,f=-1,c=0,d=8;function p(e){if(!(this instanceof p))return new p(e);this.options=o.assign({level:f,method:d,chunkSize:16384,windowBits:15,memLevel:8,strategy:c,to:""},e||{});var t=this.options;t.raw&&0<t.windowBits?t.windowBits=-t.windowBits:t.gzip&&0<t.windowBits&&t.windowBits<16&&(t.windowBits+=16),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new s,this.strm.avail_out=0;var r=a.deflateInit2(this.strm,t.level,t.method,t.windowBits,t.memLevel,t.strategy);if(r!==l)throw new Error(i[r]);if(t.header&&a.deflateSetHeader(this.strm,t.header),t.dictionary){var n;if(n="string"==typeof t.dictionary?h.string2buf(t.dictionary):"[object ArrayBuffer]"===u.call(t.dictionary)?new Uint8Array(t.dictionary):t.dictionary,(r=a.deflateSetDictionary(this.strm,n))!==l)throw new Error(i[r]);this._dict_set=!0}}function n(e,t){var r=new p(t);if(r.push(e,!0),r.err)throw r.msg||i[r.err];return r.result}p.prototype.push=function(e,t){var r,n,i=this.strm,s=this.options.chunkSize;if(this.ended)return!1;n=t===~~t?t:!0===t?4:0,"string"==typeof e?i.input=h.string2buf(e):"[object ArrayBuffer]"===u.call(e)?i.input=new Uint8Array(e):i.input=e,i.next_in=0,i.avail_in=i.input.length;do{if(0===i.avail_out&&(i.output=new o.Buf8(s),i.next_out=0,i.avail_out=s),1!==(r=a.deflate(i,n))&&r!==l)return this.onEnd(r),!(this.ended=!0);0!==i.avail_out&&(0!==i.avail_in||4!==n&&2!==n)||("string"===this.options.to?this.onData(h.buf2binstring(o.shrinkBuf(i.output,i.next_out))):this.onData(o.shrinkBuf(i.output,i.next_out)))}while((0<i.avail_in||0===i.avail_out)&&1!==r);return 4===n?(r=a.deflateEnd(this.strm),this.onEnd(r),this.ended=!0,r===l):2!==n||(this.onEnd(l),!(i.avail_out=0))},p.prototype.onData=function(e){this.chunks.push(e)},p.prototype.onEnd=function(e){e===l&&("string"===this.options.to?this.result=this.chunks.join(""):this.result=o.flattenChunks(this.chunks)),this.chunks=[],this.err=e,this.msg=this.strm.msg},r.Deflate=p,r.deflate=n,r.deflateRaw=function(e,t){return(t=t||{}).raw=!0,n(e,t)},r.gzip=function(e,t){return(t=t||{}).gzip=!0,n(e,t)}},{"./utils/common":41,"./utils/strings":42,"./zlib/deflate":46,"./zlib/messages":51,"./zlib/zstream":53}],40:[function(e,t,r){"use strict";var c=e("./zlib/inflate"),d=e("./utils/common"),p=e("./utils/strings"),m=e("./zlib/constants"),n=e("./zlib/messages"),i=e("./zlib/zstream"),s=e("./zlib/gzheader"),_=Object.prototype.toString;function a(e){if(!(this instanceof a))return new a(e);this.options=d.assign({chunkSize:16384,windowBits:0,to:""},e||{});var t=this.options;t.raw&&0<=t.windowBits&&t.windowBits<16&&(t.windowBits=-t.windowBits,0===t.windowBits&&(t.windowBits=-15)),!(0<=t.windowBits&&t.windowBits<16)||e&&e.windowBits||(t.windowBits+=32),15<t.windowBits&&t.windowBits<48&&0==(15&t.windowBits)&&(t.windowBits|=15),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new i,this.strm.avail_out=0;var r=c.inflateInit2(this.strm,t.windowBits);if(r!==m.Z_OK)throw new Error(n[r]);this.header=new s,c.inflateGetHeader(this.strm,this.header)}function o(e,t){var r=new a(t);if(r.push(e,!0),r.err)throw r.msg||n[r.err];return r.result}a.prototype.push=function(e,t){var r,n,i,s,a,o,h=this.strm,u=this.options.chunkSize,l=this.options.dictionary,f=!1;if(this.ended)return!1;n=t===~~t?t:!0===t?m.Z_FINISH:m.Z_NO_FLUSH,"string"==typeof e?h.input=p.binstring2buf(e):"[object ArrayBuffer]"===_.call(e)?h.input=new Uint8Array(e):h.input=e,h.next_in=0,h.avail_in=h.input.length;do{if(0===h.avail_out&&(h.output=new d.Buf8(u),h.next_out=0,h.avail_out=u),(r=c.inflate(h,m.Z_NO_FLUSH))===m.Z_NEED_DICT&&l&&(o="string"==typeof l?p.string2buf(l):"[object ArrayBuffer]"===_.call(l)?new Uint8Array(l):l,r=c.inflateSetDictionary(this.strm,o)),r===m.Z_BUF_ERROR&&!0===f&&(r=m.Z_OK,f=!1),r!==m.Z_STREAM_END&&r!==m.Z_OK)return this.onEnd(r),!(this.ended=!0);h.next_out&&(0!==h.avail_out&&r!==m.Z_STREAM_END&&(0!==h.avail_in||n!==m.Z_FINISH&&n!==m.Z_SYNC_FLUSH)||("string"===this.options.to?(i=p.utf8border(h.output,h.next_out),s=h.next_out-i,a=p.buf2string(h.output,i),h.next_out=s,h.avail_out=u-s,s&&d.arraySet(h.output,h.output,i,s,0),this.onData(a)):this.onData(d.shrinkBuf(h.output,h.next_out)))),0===h.avail_in&&0===h.avail_out&&(f=!0)}while((0<h.avail_in||0===h.avail_out)&&r!==m.Z_STREAM_END);return r===m.Z_STREAM_END&&(n=m.Z_FINISH),n===m.Z_FINISH?(r=c.inflateEnd(this.strm),this.onEnd(r),this.ended=!0,r===m.Z_OK):n!==m.Z_SYNC_FLUSH||(this.onEnd(m.Z_OK),!(h.avail_out=0))},a.prototype.onData=function(e){this.chunks.push(e)},a.prototype.onEnd=function(e){e===m.Z_OK&&("string"===this.options.to?this.result=this.chunks.join(""):this.result=d.flattenChunks(this.chunks)),this.chunks=[],this.err=e,this.msg=this.strm.msg},r.Inflate=a,r.inflate=o,r.inflateRaw=function(e,t){return(t=t||{}).raw=!0,o(e,t)},r.ungzip=o},{"./utils/common":41,"./utils/strings":42,"./zlib/constants":44,"./zlib/gzheader":47,"./zlib/inflate":49,"./zlib/messages":51,"./zlib/zstream":53}],41:[function(e,t,r){"use strict";var n="undefined"!=typeof Uint8Array&&"undefined"!=typeof Uint16Array&&"undefined"!=typeof Int32Array;r.assign=function(e){for(var t=Array.prototype.slice.call(arguments,1);t.length;){var r=t.shift();if(r){if("object"!=typeof r)throw new TypeError(r+"must be non-object");for(var n in r)r.hasOwnProperty(n)&&(e[n]=r[n])}}return e},r.shrinkBuf=function(e,t){return e.length===t?e:e.subarray?e.subarray(0,t):(e.length=t,e)};var i={arraySet:function(e,t,r,n,i){if(t.subarray&&e.subarray)e.set(t.subarray(r,r+n),i);else for(var s=0;s<n;s++)e[i+s]=t[r+s]},flattenChunks:function(e){var t,r,n,i,s,a;for(t=n=0,r=e.length;t<r;t++)n+=e[t].length;for(a=new Uint8Array(n),t=i=0,r=e.length;t<r;t++)s=e[t],a.set(s,i),i+=s.length;return a}},s={arraySet:function(e,t,r,n,i){for(var s=0;s<n;s++)e[i+s]=t[r+s]},flattenChunks:function(e){return[].concat.apply([],e)}};r.setTyped=function(e){e?(r.Buf8=Uint8Array,r.Buf16=Uint16Array,r.Buf32=Int32Array,r.assign(r,i)):(r.Buf8=Array,r.Buf16=Array,r.Buf32=Array,r.assign(r,s))},r.setTyped(n)},{}],42:[function(e,t,r){"use strict";var h=e("./common"),i=!0,s=!0;try{String.fromCharCode.apply(null,[0])}catch(e){i=!1}try{String.fromCharCode.apply(null,new Uint8Array(1))}catch(e){s=!1}for(var u=new h.Buf8(256),n=0;n<256;n++)u[n]=252<=n?6:248<=n?5:240<=n?4:224<=n?3:192<=n?2:1;function l(e,t){if(t<65537&&(e.subarray&&s||!e.subarray&&i))return String.fromCharCode.apply(null,h.shrinkBuf(e,t));for(var r="",n=0;n<t;n++)r+=String.fromCharCode(e[n]);return r}u[254]=u[254]=1,r.string2buf=function(e){var t,r,n,i,s,a=e.length,o=0;for(i=0;i<a;i++)55296==(64512&(r=e.charCodeAt(i)))&&i+1<a&&56320==(64512&(n=e.charCodeAt(i+1)))&&(r=65536+(r-55296<<10)+(n-56320),i++),o+=r<128?1:r<2048?2:r<65536?3:4;for(t=new h.Buf8(o),i=s=0;s<o;i++)55296==(64512&(r=e.charCodeAt(i)))&&i+1<a&&56320==(64512&(n=e.charCodeAt(i+1)))&&(r=65536+(r-55296<<10)+(n-56320),i++),r<128?t[s++]=r:(r<2048?t[s++]=192|r>>>6:(r<65536?t[s++]=224|r>>>12:(t[s++]=240|r>>>18,t[s++]=128|r>>>12&63),t[s++]=128|r>>>6&63),t[s++]=128|63&r);return t},r.buf2binstring=function(e){return l(e,e.length)},r.binstring2buf=function(e){for(var t=new h.Buf8(e.length),r=0,n=t.length;r<n;r++)t[r]=e.charCodeAt(r);return t},r.buf2string=function(e,t){var r,n,i,s,a=t||e.length,o=new Array(2*a);for(r=n=0;r<a;)if((i=e[r++])<128)o[n++]=i;else if(4<(s=u[i]))o[n++]=65533,r+=s-1;else{for(i&=2===s?31:3===s?15:7;1<s&&r<a;)i=i<<6|63&e[r++],s--;1<s?o[n++]=65533:i<65536?o[n++]=i:(i-=65536,o[n++]=55296|i>>10&1023,o[n++]=56320|1023&i)}return l(o,n)},r.utf8border=function(e,t){var r;for((t=t||e.length)>e.length&&(t=e.length),r=t-1;0<=r&&128==(192&e[r]);)r--;return r<0?t:0===r?t:r+u[e[r]]>t?r:t}},{"./common":41}],43:[function(e,t,r){"use strict";t.exports=function(e,t,r,n){for(var i=65535&e|0,s=e>>>16&65535|0,a=0;0!==r;){for(r-=a=2e3<r?2e3:r;s=s+(i=i+t[n++]|0)|0,--a;);i%=65521,s%=65521}return i|s<<16|0}},{}],44:[function(e,t,r){"use strict";t.exports={Z_NO_FLUSH:0,Z_PARTIAL_FLUSH:1,Z_SYNC_FLUSH:2,Z_FULL_FLUSH:3,Z_FINISH:4,Z_BLOCK:5,Z_TREES:6,Z_OK:0,Z_STREAM_END:1,Z_NEED_DICT:2,Z_ERRNO:-1,Z_STREAM_ERROR:-2,Z_DATA_ERROR:-3,Z_BUF_ERROR:-5,Z_NO_COMPRESSION:0,Z_BEST_SPEED:1,Z_BEST_COMPRESSION:9,Z_DEFAULT_COMPRESSION:-1,Z_FILTERED:1,Z_HUFFMAN_ONLY:2,Z_RLE:3,Z_FIXED:4,Z_DEFAULT_STRATEGY:0,Z_BINARY:0,Z_TEXT:1,Z_UNKNOWN:2,Z_DEFLATED:8}},{}],45:[function(e,t,r){"use strict";var o=function(){for(var e,t=[],r=0;r<256;r++){e=r;for(var n=0;n<8;n++)e=1&e?3988292384^e>>>1:e>>>1;t[r]=e}return t}();t.exports=function(e,t,r,n){var i=o,s=n+r;e^=-1;for(var a=n;a<s;a++)e=e>>>8^i[255&(e^t[a])];return-1^e}},{}],46:[function(e,t,r){"use strict";var h,c=e("../utils/common"),u=e("./trees"),d=e("./adler32"),p=e("./crc32"),n=e("./messages"),l=0,f=4,m=0,_=-2,g=-1,b=4,i=2,v=8,y=9,s=286,a=30,o=19,w=2*s+1,k=15,x=3,S=258,z=S+x+1,C=42,E=113,A=1,I=2,O=3,B=4;function R(e,t){return e.msg=n[t],t}function T(e){return(e<<1)-(4<e?9:0)}function D(e){for(var t=e.length;0<=--t;)e[t]=0}function F(e){var t=e.state,r=t.pending;r>e.avail_out&&(r=e.avail_out),0!==r&&(c.arraySet(e.output,t.pending_buf,t.pending_out,r,e.next_out),e.next_out+=r,t.pending_out+=r,e.total_out+=r,e.avail_out-=r,t.pending-=r,0===t.pending&&(t.pending_out=0))}function N(e,t){u._tr_flush_block(e,0<=e.block_start?e.block_start:-1,e.strstart-e.block_start,t),e.block_start=e.strstart,F(e.strm)}function U(e,t){e.pending_buf[e.pending++]=t}function P(e,t){e.pending_buf[e.pending++]=t>>>8&255,e.pending_buf[e.pending++]=255&t}function L(e,t){var r,n,i=e.max_chain_length,s=e.strstart,a=e.prev_length,o=e.nice_match,h=e.strstart>e.w_size-z?e.strstart-(e.w_size-z):0,u=e.window,l=e.w_mask,f=e.prev,c=e.strstart+S,d=u[s+a-1],p=u[s+a];e.prev_length>=e.good_match&&(i>>=2),o>e.lookahead&&(o=e.lookahead);do{if(u[(r=t)+a]===p&&u[r+a-1]===d&&u[r]===u[s]&&u[++r]===u[s+1]){s+=2,r++;do{}while(u[++s]===u[++r]&&u[++s]===u[++r]&&u[++s]===u[++r]&&u[++s]===u[++r]&&u[++s]===u[++r]&&u[++s]===u[++r]&&u[++s]===u[++r]&&u[++s]===u[++r]&&s<c);if(n=S-(c-s),s=c-S,a<n){if(e.match_start=t,o<=(a=n))break;d=u[s+a-1],p=u[s+a]}}}while((t=f[t&l])>h&&0!=--i);return a<=e.lookahead?a:e.lookahead}function j(e){var t,r,n,i,s,a,o,h,u,l,f=e.w_size;do{if(i=e.window_size-e.lookahead-e.strstart,e.strstart>=f+(f-z)){for(c.arraySet(e.window,e.window,f,f,0),e.match_start-=f,e.strstart-=f,e.block_start-=f,t=r=e.hash_size;n=e.head[--t],e.head[t]=f<=n?n-f:0,--r;);for(t=r=f;n=e.prev[--t],e.prev[t]=f<=n?n-f:0,--r;);i+=f}if(0===e.strm.avail_in)break;if(a=e.strm,o=e.window,h=e.strstart+e.lookahead,u=i,l=void 0,l=a.avail_in,u<l&&(l=u),r=0===l?0:(a.avail_in-=l,c.arraySet(o,a.input,a.next_in,l,h),1===a.state.wrap?a.adler=d(a.adler,o,l,h):2===a.state.wrap&&(a.adler=p(a.adler,o,l,h)),a.next_in+=l,a.total_in+=l,l),e.lookahead+=r,e.lookahead+e.insert>=x)for(s=e.strstart-e.insert,e.ins_h=e.window[s],e.ins_h=(e.ins_h<<e.hash_shift^e.window[s+1])&e.hash_mask;e.insert&&(e.ins_h=(e.ins_h<<e.hash_shift^e.window[s+x-1])&e.hash_mask,e.prev[s&e.w_mask]=e.head[e.ins_h],e.head[e.ins_h]=s,s++,e.insert--,!(e.lookahead+e.insert<x)););}while(e.lookahead<z&&0!==e.strm.avail_in)}function Z(e,t){for(var r,n;;){if(e.lookahead<z){if(j(e),e.lookahead<z&&t===l)return A;if(0===e.lookahead)break}if(r=0,e.lookahead>=x&&(e.ins_h=(e.ins_h<<e.hash_shift^e.window[e.strstart+x-1])&e.hash_mask,r=e.prev[e.strstart&e.w_mask]=e.head[e.ins_h],e.head[e.ins_h]=e.strstart),0!==r&&e.strstart-r<=e.w_size-z&&(e.match_length=L(e,r)),e.match_length>=x)if(n=u._tr_tally(e,e.strstart-e.match_start,e.match_length-x),e.lookahead-=e.match_length,e.match_length<=e.max_lazy_match&&e.lookahead>=x){for(e.match_length--;e.strstart++,e.ins_h=(e.ins_h<<e.hash_shift^e.window[e.strstart+x-1])&e.hash_mask,r=e.prev[e.strstart&e.w_mask]=e.head[e.ins_h],e.head[e.ins_h]=e.strstart,0!=--e.match_length;);e.strstart++}else e.strstart+=e.match_length,e.match_length=0,e.ins_h=e.window[e.strstart],e.ins_h=(e.ins_h<<e.hash_shift^e.window[e.strstart+1])&e.hash_mask;else n=u._tr_tally(e,0,e.window[e.strstart]),e.lookahead--,e.strstart++;if(n&&(N(e,!1),0===e.strm.avail_out))return A}return e.insert=e.strstart<x-1?e.strstart:x-1,t===f?(N(e,!0),0===e.strm.avail_out?O:B):e.last_lit&&(N(e,!1),0===e.strm.avail_out)?A:I}function W(e,t){for(var r,n,i;;){if(e.lookahead<z){if(j(e),e.lookahead<z&&t===l)return A;if(0===e.lookahead)break}if(r=0,e.lookahead>=x&&(e.ins_h=(e.ins_h<<e.hash_shift^e.window[e.strstart+x-1])&e.hash_mask,r=e.prev[e.strstart&e.w_mask]=e.head[e.ins_h],e.head[e.ins_h]=e.strstart),e.prev_length=e.match_length,e.prev_match=e.match_start,e.match_length=x-1,0!==r&&e.prev_length<e.max_lazy_match&&e.strstart-r<=e.w_size-z&&(e.match_length=L(e,r),e.match_length<=5&&(1===e.strategy||e.match_length===x&&4096<e.strstart-e.match_start)&&(e.match_length=x-1)),e.prev_length>=x&&e.match_length<=e.prev_length){for(i=e.strstart+e.lookahead-x,n=u._tr_tally(e,e.strstart-1-e.prev_match,e.prev_length-x),e.lookahead-=e.prev_length-1,e.prev_length-=2;++e.strstart<=i&&(e.ins_h=(e.ins_h<<e.hash_shift^e.window[e.strstart+x-1])&e.hash_mask,r=e.prev[e.strstart&e.w_mask]=e.head[e.ins_h],e.head[e.ins_h]=e.strstart),0!=--e.prev_length;);if(e.match_available=0,e.match_length=x-1,e.strstart++,n&&(N(e,!1),0===e.strm.avail_out))return A}else if(e.match_available){if((n=u._tr_tally(e,0,e.window[e.strstart-1]))&&N(e,!1),e.strstart++,e.lookahead--,0===e.strm.avail_out)return A}else e.match_available=1,e.strstart++,e.lookahead--}return e.match_available&&(n=u._tr_tally(e,0,e.window[e.strstart-1]),e.match_available=0),e.insert=e.strstart<x-1?e.strstart:x-1,t===f?(N(e,!0),0===e.strm.avail_out?O:B):e.last_lit&&(N(e,!1),0===e.strm.avail_out)?A:I}function M(e,t,r,n,i){this.good_length=e,this.max_lazy=t,this.nice_length=r,this.max_chain=n,this.func=i}function H(){this.strm=null,this.status=0,this.pending_buf=null,this.pending_buf_size=0,this.pending_out=0,this.pending=0,this.wrap=0,this.gzhead=null,this.gzindex=0,this.method=v,this.last_flush=-1,this.w_size=0,this.w_bits=0,this.w_mask=0,this.window=null,this.window_size=0,this.prev=null,this.head=null,this.ins_h=0,this.hash_size=0,this.hash_bits=0,this.hash_mask=0,this.hash_shift=0,this.block_start=0,this.match_length=0,this.prev_match=0,this.match_available=0,this.strstart=0,this.match_start=0,this.lookahead=0,this.prev_length=0,this.max_chain_length=0,this.max_lazy_match=0,this.level=0,this.strategy=0,this.good_match=0,this.nice_match=0,this.dyn_ltree=new c.Buf16(2*w),this.dyn_dtree=new c.Buf16(2*(2*a+1)),this.bl_tree=new c.Buf16(2*(2*o+1)),D(this.dyn_ltree),D(this.dyn_dtree),D(this.bl_tree),this.l_desc=null,this.d_desc=null,this.bl_desc=null,this.bl_count=new c.Buf16(k+1),this.heap=new c.Buf16(2*s+1),D(this.heap),this.heap_len=0,this.heap_max=0,this.depth=new c.Buf16(2*s+1),D(this.depth),this.l_buf=0,this.lit_bufsize=0,this.last_lit=0,this.d_buf=0,this.opt_len=0,this.static_len=0,this.matches=0,this.insert=0,this.bi_buf=0,this.bi_valid=0}function G(e){var t;return e&&e.state?(e.total_in=e.total_out=0,e.data_type=i,(t=e.state).pending=0,t.pending_out=0,t.wrap<0&&(t.wrap=-t.wrap),t.status=t.wrap?C:E,e.adler=2===t.wrap?0:1,t.last_flush=l,u._tr_init(t),m):R(e,_)}function K(e){var t=G(e);return t===m&&function(e){e.window_size=2*e.w_size,D(e.head),e.max_lazy_match=h[e.level].max_lazy,e.good_match=h[e.level].good_length,e.nice_match=h[e.level].nice_length,e.max_chain_length=h[e.level].max_chain,e.strstart=0,e.block_start=0,e.lookahead=0,e.insert=0,e.match_length=e.prev_length=x-1,e.match_available=0,e.ins_h=0}(e.state),t}function Y(e,t,r,n,i,s){if(!e)return _;var a=1;if(t===g&&(t=6),n<0?(a=0,n=-n):15<n&&(a=2,n-=16),i<1||y<i||r!==v||n<8||15<n||t<0||9<t||s<0||b<s)return R(e,_);8===n&&(n=9);var o=new H;return(e.state=o).strm=e,o.wrap=a,o.gzhead=null,o.w_bits=n,o.w_size=1<<o.w_bits,o.w_mask=o.w_size-1,o.hash_bits=i+7,o.hash_size=1<<o.hash_bits,o.hash_mask=o.hash_size-1,o.hash_shift=~~((o.hash_bits+x-1)/x),o.window=new c.Buf8(2*o.w_size),o.head=new c.Buf16(o.hash_size),o.prev=new c.Buf16(o.w_size),o.lit_bufsize=1<<i+6,o.pending_buf_size=4*o.lit_bufsize,o.pending_buf=new c.Buf8(o.pending_buf_size),o.d_buf=1*o.lit_bufsize,o.l_buf=3*o.lit_bufsize,o.level=t,o.strategy=s,o.method=r,K(e)}h=[new M(0,0,0,0,function(e,t){var r=65535;for(r>e.pending_buf_size-5&&(r=e.pending_buf_size-5);;){if(e.lookahead<=1){if(j(e),0===e.lookahead&&t===l)return A;if(0===e.lookahead)break}e.strstart+=e.lookahead,e.lookahead=0;var n=e.block_start+r;if((0===e.strstart||e.strstart>=n)&&(e.lookahead=e.strstart-n,e.strstart=n,N(e,!1),0===e.strm.avail_out))return A;if(e.strstart-e.block_start>=e.w_size-z&&(N(e,!1),0===e.strm.avail_out))return A}return e.insert=0,t===f?(N(e,!0),0===e.strm.avail_out?O:B):(e.strstart>e.block_start&&(N(e,!1),e.strm.avail_out),A)}),new M(4,4,8,4,Z),new M(4,5,16,8,Z),new M(4,6,32,32,Z),new M(4,4,16,16,W),new M(8,16,32,32,W),new M(8,16,128,128,W),new M(8,32,128,256,W),new M(32,128,258,1024,W),new M(32,258,258,4096,W)],r.deflateInit=function(e,t){return Y(e,t,v,15,8,0)},r.deflateInit2=Y,r.deflateReset=K,r.deflateResetKeep=G,r.deflateSetHeader=function(e,t){return e&&e.state?2!==e.state.wrap?_:(e.state.gzhead=t,m):_},r.deflate=function(e,t){var r,n,i,s;if(!e||!e.state||5<t||t<0)return e?R(e,_):_;if(n=e.state,!e.output||!e.input&&0!==e.avail_in||666===n.status&&t!==f)return R(e,0===e.avail_out?-5:_);if(n.strm=e,r=n.last_flush,n.last_flush=t,n.status===C)if(2===n.wrap)e.adler=0,U(n,31),U(n,139),U(n,8),n.gzhead?(U(n,(n.gzhead.text?1:0)+(n.gzhead.hcrc?2:0)+(n.gzhead.extra?4:0)+(n.gzhead.name?8:0)+(n.gzhead.comment?16:0)),U(n,255&n.gzhead.time),U(n,n.gzhead.time>>8&255),U(n,n.gzhead.time>>16&255),U(n,n.gzhead.time>>24&255),U(n,9===n.level?2:2<=n.strategy||n.level<2?4:0),U(n,255&n.gzhead.os),n.gzhead.extra&&n.gzhead.extra.length&&(U(n,255&n.gzhead.extra.length),U(n,n.gzhead.extra.length>>8&255)),n.gzhead.hcrc&&(e.adler=p(e.adler,n.pending_buf,n.pending,0)),n.gzindex=0,n.status=69):(U(n,0),U(n,0),U(n,0),U(n,0),U(n,0),U(n,9===n.level?2:2<=n.strategy||n.level<2?4:0),U(n,3),n.status=E);else{var a=v+(n.w_bits-8<<4)<<8;a|=(2<=n.strategy||n.level<2?0:n.level<6?1:6===n.level?2:3)<<6,0!==n.strstart&&(a|=32),a+=31-a%31,n.status=E,P(n,a),0!==n.strstart&&(P(n,e.adler>>>16),P(n,65535&e.adler)),e.adler=1}if(69===n.status)if(n.gzhead.extra){for(i=n.pending;n.gzindex<(65535&n.gzhead.extra.length)&&(n.pending!==n.pending_buf_size||(n.gzhead.hcrc&&n.pending>i&&(e.adler=p(e.adler,n.pending_buf,n.pending-i,i)),F(e),i=n.pending,n.pending!==n.pending_buf_size));)U(n,255&n.gzhead.extra[n.gzindex]),n.gzindex++;n.gzhead.hcrc&&n.pending>i&&(e.adler=p(e.adler,n.pending_buf,n.pending-i,i)),n.gzindex===n.gzhead.extra.length&&(n.gzindex=0,n.status=73)}else n.status=73;if(73===n.status)if(n.gzhead.name){i=n.pending;do{if(n.pending===n.pending_buf_size&&(n.gzhead.hcrc&&n.pending>i&&(e.adler=p(e.adler,n.pending_buf,n.pending-i,i)),F(e),i=n.pending,n.pending===n.pending_buf_size)){s=1;break}s=n.gzindex<n.gzhead.name.length?255&n.gzhead.name.charCodeAt(n.gzindex++):0,U(n,s)}while(0!==s);n.gzhead.hcrc&&n.pending>i&&(e.adler=p(e.adler,n.pending_buf,n.pending-i,i)),0===s&&(n.gzindex=0,n.status=91)}else n.status=91;if(91===n.status)if(n.gzhead.comment){i=n.pending;do{if(n.pending===n.pending_buf_size&&(n.gzhead.hcrc&&n.pending>i&&(e.adler=p(e.adler,n.pending_buf,n.pending-i,i)),F(e),i=n.pending,n.pending===n.pending_buf_size)){s=1;break}s=n.gzindex<n.gzhead.comment.length?255&n.gzhead.comment.charCodeAt(n.gzindex++):0,U(n,s)}while(0!==s);n.gzhead.hcrc&&n.pending>i&&(e.adler=p(e.adler,n.pending_buf,n.pending-i,i)),0===s&&(n.status=103)}else n.status=103;if(103===n.status&&(n.gzhead.hcrc?(n.pending+2>n.pending_buf_size&&F(e),n.pending+2<=n.pending_buf_size&&(U(n,255&e.adler),U(n,e.adler>>8&255),e.adler=0,n.status=E)):n.status=E),0!==n.pending){if(F(e),0===e.avail_out)return n.last_flush=-1,m}else if(0===e.avail_in&&T(t)<=T(r)&&t!==f)return R(e,-5);if(666===n.status&&0!==e.avail_in)return R(e,-5);if(0!==e.avail_in||0!==n.lookahead||t!==l&&666!==n.status){var o=2===n.strategy?function(e,t){for(var r;;){if(0===e.lookahead&&(j(e),0===e.lookahead)){if(t===l)return A;break}if(e.match_length=0,r=u._tr_tally(e,0,e.window[e.strstart]),e.lookahead--,e.strstart++,r&&(N(e,!1),0===e.strm.avail_out))return A}return e.insert=0,t===f?(N(e,!0),0===e.strm.avail_out?O:B):e.last_lit&&(N(e,!1),0===e.strm.avail_out)?A:I}(n,t):3===n.strategy?function(e,t){for(var r,n,i,s,a=e.window;;){if(e.lookahead<=S){if(j(e),e.lookahead<=S&&t===l)return A;if(0===e.lookahead)break}if(e.match_length=0,e.lookahead>=x&&0<e.strstart&&(n=a[i=e.strstart-1])===a[++i]&&n===a[++i]&&n===a[++i]){s=e.strstart+S;do{}while(n===a[++i]&&n===a[++i]&&n===a[++i]&&n===a[++i]&&n===a[++i]&&n===a[++i]&&n===a[++i]&&n===a[++i]&&i<s);e.match_length=S-(s-i),e.match_length>e.lookahead&&(e.match_length=e.lookahead)}if(e.match_length>=x?(r=u._tr_tally(e,1,e.match_length-x),e.lookahead-=e.match_length,e.strstart+=e.match_length,e.match_length=0):(r=u._tr_tally(e,0,e.window[e.strstart]),e.lookahead--,e.strstart++),r&&(N(e,!1),0===e.strm.avail_out))return A}return e.insert=0,t===f?(N(e,!0),0===e.strm.avail_out?O:B):e.last_lit&&(N(e,!1),0===e.strm.avail_out)?A:I}(n,t):h[n.level].func(n,t);if(o!==O&&o!==B||(n.status=666),o===A||o===O)return 0===e.avail_out&&(n.last_flush=-1),m;if(o===I&&(1===t?u._tr_align(n):5!==t&&(u._tr_stored_block(n,0,0,!1),3===t&&(D(n.head),0===n.lookahead&&(n.strstart=0,n.block_start=0,n.insert=0))),F(e),0===e.avail_out))return n.last_flush=-1,m}return t!==f?m:n.wrap<=0?1:(2===n.wrap?(U(n,255&e.adler),U(n,e.adler>>8&255),U(n,e.adler>>16&255),U(n,e.adler>>24&255),U(n,255&e.total_in),U(n,e.total_in>>8&255),U(n,e.total_in>>16&255),U(n,e.total_in>>24&255)):(P(n,e.adler>>>16),P(n,65535&e.adler)),F(e),0<n.wrap&&(n.wrap=-n.wrap),0!==n.pending?m:1)},r.deflateEnd=function(e){var t;return e&&e.state?(t=e.state.status)!==C&&69!==t&&73!==t&&91!==t&&103!==t&&t!==E&&666!==t?R(e,_):(e.state=null,t===E?R(e,-3):m):_},r.deflateSetDictionary=function(e,t){var r,n,i,s,a,o,h,u,l=t.length;if(!e||!e.state)return _;if(2===(s=(r=e.state).wrap)||1===s&&r.status!==C||r.lookahead)return _;for(1===s&&(e.adler=d(e.adler,t,l,0)),r.wrap=0,l>=r.w_size&&(0===s&&(D(r.head),r.strstart=0,r.block_start=0,r.insert=0),u=new c.Buf8(r.w_size),c.arraySet(u,t,l-r.w_size,r.w_size,0),t=u,l=r.w_size),a=e.avail_in,o=e.next_in,h=e.input,e.avail_in=l,e.next_in=0,e.input=t,j(r);r.lookahead>=x;){for(n=r.strstart,i=r.lookahead-(x-1);r.ins_h=(r.ins_h<<r.hash_shift^r.window[n+x-1])&r.hash_mask,r.prev[n&r.w_mask]=r.head[r.ins_h],r.head[r.ins_h]=n,n++,--i;);r.strstart=n,r.lookahead=x-1,j(r)}return r.strstart+=r.lookahead,r.block_start=r.strstart,r.insert=r.lookahead,r.lookahead=0,r.match_length=r.prev_length=x-1,r.match_available=0,e.next_in=o,e.input=h,e.avail_in=a,r.wrap=s,m},r.deflateInfo="pako deflate (from Nodeca project)"},{"../utils/common":41,"./adler32":43,"./crc32":45,"./messages":51,"./trees":52}],47:[function(e,t,r){"use strict";t.exports=function(){this.text=0,this.time=0,this.xflags=0,this.os=0,this.extra=null,this.extra_len=0,this.name="",this.comment="",this.hcrc=0,this.done=!1}},{}],48:[function(e,t,r){"use strict";t.exports=function(e,t){var r,n,i,s,a,o,h,u,l,f,c,d,p,m,_,g,b,v,y,w,k,x,S,z,C;r=e.state,n=e.next_in,z=e.input,i=n+(e.avail_in-5),s=e.next_out,C=e.output,a=s-(t-e.avail_out),o=s+(e.avail_out-257),h=r.dmax,u=r.wsize,l=r.whave,f=r.wnext,c=r.window,d=r.hold,p=r.bits,m=r.lencode,_=r.distcode,g=(1<<r.lenbits)-1,b=(1<<r.distbits)-1;e:do{p<15&&(d+=z[n++]<<p,p+=8,d+=z[n++]<<p,p+=8),v=m[d&g];t:for(;;){if(d>>>=y=v>>>24,p-=y,0===(y=v>>>16&255))C[s++]=65535&v;else{if(!(16&y)){if(0==(64&y)){v=m[(65535&v)+(d&(1<<y)-1)];continue t}if(32&y){r.mode=12;break e}e.msg="invalid literal/length code",r.mode=30;break e}w=65535&v,(y&=15)&&(p<y&&(d+=z[n++]<<p,p+=8),w+=d&(1<<y)-1,d>>>=y,p-=y),p<15&&(d+=z[n++]<<p,p+=8,d+=z[n++]<<p,p+=8),v=_[d&b];r:for(;;){if(d>>>=y=v>>>24,p-=y,!(16&(y=v>>>16&255))){if(0==(64&y)){v=_[(65535&v)+(d&(1<<y)-1)];continue r}e.msg="invalid distance code",r.mode=30;break e}if(k=65535&v,p<(y&=15)&&(d+=z[n++]<<p,(p+=8)<y&&(d+=z[n++]<<p,p+=8)),h<(k+=d&(1<<y)-1)){e.msg="invalid distance too far back",r.mode=30;break e}if(d>>>=y,p-=y,(y=s-a)<k){if(l<(y=k-y)&&r.sane){e.msg="invalid distance too far back",r.mode=30;break e}if(S=c,(x=0)===f){if(x+=u-y,y<w){for(w-=y;C[s++]=c[x++],--y;);x=s-k,S=C}}else if(f<y){if(x+=u+f-y,(y-=f)<w){for(w-=y;C[s++]=c[x++],--y;);if(x=0,f<w){for(w-=y=f;C[s++]=c[x++],--y;);x=s-k,S=C}}}else if(x+=f-y,y<w){for(w-=y;C[s++]=c[x++],--y;);x=s-k,S=C}for(;2<w;)C[s++]=S[x++],C[s++]=S[x++],C[s++]=S[x++],w-=3;w&&(C[s++]=S[x++],1<w&&(C[s++]=S[x++]))}else{for(x=s-k;C[s++]=C[x++],C[s++]=C[x++],C[s++]=C[x++],2<(w-=3););w&&(C[s++]=C[x++],1<w&&(C[s++]=C[x++]))}break}}break}}while(n<i&&s<o);n-=w=p>>3,d&=(1<<(p-=w<<3))-1,e.next_in=n,e.next_out=s,e.avail_in=n<i?i-n+5:5-(n-i),e.avail_out=s<o?o-s+257:257-(s-o),r.hold=d,r.bits=p}},{}],49:[function(e,t,r){"use strict";var I=e("../utils/common"),O=e("./adler32"),B=e("./crc32"),R=e("./inffast"),T=e("./inftrees"),D=1,F=2,N=0,U=-2,P=1,n=852,i=592;function L(e){return(e>>>24&255)+(e>>>8&65280)+((65280&e)<<8)+((255&e)<<24)}function s(){this.mode=0,this.last=!1,this.wrap=0,this.havedict=!1,this.flags=0,this.dmax=0,this.check=0,this.total=0,this.head=null,this.wbits=0,this.wsize=0,this.whave=0,this.wnext=0,this.window=null,this.hold=0,this.bits=0,this.length=0,this.offset=0,this.extra=0,this.lencode=null,this.distcode=null,this.lenbits=0,this.distbits=0,this.ncode=0,this.nlen=0,this.ndist=0,this.have=0,this.next=null,this.lens=new I.Buf16(320),this.work=new I.Buf16(288),this.lendyn=null,this.distdyn=null,this.sane=0,this.back=0,this.was=0}function a(e){var t;return e&&e.state?(t=e.state,e.total_in=e.total_out=t.total=0,e.msg="",t.wrap&&(e.adler=1&t.wrap),t.mode=P,t.last=0,t.havedict=0,t.dmax=32768,t.head=null,t.hold=0,t.bits=0,t.lencode=t.lendyn=new I.Buf32(n),t.distcode=t.distdyn=new I.Buf32(i),t.sane=1,t.back=-1,N):U}function o(e){var t;return e&&e.state?((t=e.state).wsize=0,t.whave=0,t.wnext=0,a(e)):U}function h(e,t){var r,n;return e&&e.state?(n=e.state,t<0?(r=0,t=-t):(r=1+(t>>4),t<48&&(t&=15)),t&&(t<8||15<t)?U:(null!==n.window&&n.wbits!==t&&(n.window=null),n.wrap=r,n.wbits=t,o(e))):U}function u(e,t){var r,n;return e?(n=new s,(e.state=n).window=null,(r=h(e,t))!==N&&(e.state=null),r):U}var l,f,c=!0;function j(e){if(c){var t;for(l=new I.Buf32(512),f=new I.Buf32(32),t=0;t<144;)e.lens[t++]=8;for(;t<256;)e.lens[t++]=9;for(;t<280;)e.lens[t++]=7;for(;t<288;)e.lens[t++]=8;for(T(D,e.lens,0,288,l,0,e.work,{bits:9}),t=0;t<32;)e.lens[t++]=5;T(F,e.lens,0,32,f,0,e.work,{bits:5}),c=!1}e.lencode=l,e.lenbits=9,e.distcode=f,e.distbits=5}function Z(e,t,r,n){var i,s=e.state;return null===s.window&&(s.wsize=1<<s.wbits,s.wnext=0,s.whave=0,s.window=new I.Buf8(s.wsize)),n>=s.wsize?(I.arraySet(s.window,t,r-s.wsize,s.wsize,0),s.wnext=0,s.whave=s.wsize):(n<(i=s.wsize-s.wnext)&&(i=n),I.arraySet(s.window,t,r-n,i,s.wnext),(n-=i)?(I.arraySet(s.window,t,r-n,n,0),s.wnext=n,s.whave=s.wsize):(s.wnext+=i,s.wnext===s.wsize&&(s.wnext=0),s.whave<s.wsize&&(s.whave+=i))),0}r.inflateReset=o,r.inflateReset2=h,r.inflateResetKeep=a,r.inflateInit=function(e){return u(e,15)},r.inflateInit2=u,r.inflate=function(e,t){var r,n,i,s,a,o,h,u,l,f,c,d,p,m,_,g,b,v,y,w,k,x,S,z,C=0,E=new I.Buf8(4),A=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15];if(!e||!e.state||!e.output||!e.input&&0!==e.avail_in)return U;12===(r=e.state).mode&&(r.mode=13),a=e.next_out,i=e.output,h=e.avail_out,s=e.next_in,n=e.input,o=e.avail_in,u=r.hold,l=r.bits,f=o,c=h,x=N;e:for(;;)switch(r.mode){case P:if(0===r.wrap){r.mode=13;break}for(;l<16;){if(0===o)break e;o--,u+=n[s++]<<l,l+=8}if(2&r.wrap&&35615===u){E[r.check=0]=255&u,E[1]=u>>>8&255,r.check=B(r.check,E,2,0),l=u=0,r.mode=2;break}if(r.flags=0,r.head&&(r.head.done=!1),!(1&r.wrap)||(((255&u)<<8)+(u>>8))%31){e.msg="incorrect header check",r.mode=30;break}if(8!=(15&u)){e.msg="unknown compression method",r.mode=30;break}if(l-=4,k=8+(15&(u>>>=4)),0===r.wbits)r.wbits=k;else if(k>r.wbits){e.msg="invalid window size",r.mode=30;break}r.dmax=1<<k,e.adler=r.check=1,r.mode=512&u?10:12,l=u=0;break;case 2:for(;l<16;){if(0===o)break e;o--,u+=n[s++]<<l,l+=8}if(r.flags=u,8!=(255&r.flags)){e.msg="unknown compression method",r.mode=30;break}if(57344&r.flags){e.msg="unknown header flags set",r.mode=30;break}r.head&&(r.head.text=u>>8&1),512&r.flags&&(E[0]=255&u,E[1]=u>>>8&255,r.check=B(r.check,E,2,0)),l=u=0,r.mode=3;case 3:for(;l<32;){if(0===o)break e;o--,u+=n[s++]<<l,l+=8}r.head&&(r.head.time=u),512&r.flags&&(E[0]=255&u,E[1]=u>>>8&255,E[2]=u>>>16&255,E[3]=u>>>24&255,r.check=B(r.check,E,4,0)),l=u=0,r.mode=4;case 4:for(;l<16;){if(0===o)break e;o--,u+=n[s++]<<l,l+=8}r.head&&(r.head.xflags=255&u,r.head.os=u>>8),512&r.flags&&(E[0]=255&u,E[1]=u>>>8&255,r.check=B(r.check,E,2,0)),l=u=0,r.mode=5;case 5:if(1024&r.flags){for(;l<16;){if(0===o)break e;o--,u+=n[s++]<<l,l+=8}r.length=u,r.head&&(r.head.extra_len=u),512&r.flags&&(E[0]=255&u,E[1]=u>>>8&255,r.check=B(r.check,E,2,0)),l=u=0}else r.head&&(r.head.extra=null);r.mode=6;case 6:if(1024&r.flags&&(o<(d=r.length)&&(d=o),d&&(r.head&&(k=r.head.extra_len-r.length,r.head.extra||(r.head.extra=new Array(r.head.extra_len)),I.arraySet(r.head.extra,n,s,d,k)),512&r.flags&&(r.check=B(r.check,n,d,s)),o-=d,s+=d,r.length-=d),r.length))break e;r.length=0,r.mode=7;case 7:if(2048&r.flags){if(0===o)break e;for(d=0;k=n[s+d++],r.head&&k&&r.length<65536&&(r.head.name+=String.fromCharCode(k)),k&&d<o;);if(512&r.flags&&(r.check=B(r.check,n,d,s)),o-=d,s+=d,k)break e}else r.head&&(r.head.name=null);r.length=0,r.mode=8;case 8:if(4096&r.flags){if(0===o)break e;for(d=0;k=n[s+d++],r.head&&k&&r.length<65536&&(r.head.comment+=String.fromCharCode(k)),k&&d<o;);if(512&r.flags&&(r.check=B(r.check,n,d,s)),o-=d,s+=d,k)break e}else r.head&&(r.head.comment=null);r.mode=9;case 9:if(512&r.flags){for(;l<16;){if(0===o)break e;o--,u+=n[s++]<<l,l+=8}if(u!==(65535&r.check)){e.msg="header crc mismatch",r.mode=30;break}l=u=0}r.head&&(r.head.hcrc=r.flags>>9&1,r.head.done=!0),e.adler=r.check=0,r.mode=12;break;case 10:for(;l<32;){if(0===o)break e;o--,u+=n[s++]<<l,l+=8}e.adler=r.check=L(u),l=u=0,r.mode=11;case 11:if(0===r.havedict)return e.next_out=a,e.avail_out=h,e.next_in=s,e.avail_in=o,r.hold=u,r.bits=l,2;e.adler=r.check=1,r.mode=12;case 12:if(5===t||6===t)break e;case 13:if(r.last){u>>>=7&l,l-=7&l,r.mode=27;break}for(;l<3;){if(0===o)break e;o--,u+=n[s++]<<l,l+=8}switch(r.last=1&u,l-=1,3&(u>>>=1)){case 0:r.mode=14;break;case 1:if(j(r),r.mode=20,6!==t)break;u>>>=2,l-=2;break e;case 2:r.mode=17;break;case 3:e.msg="invalid block type",r.mode=30}u>>>=2,l-=2;break;case 14:for(u>>>=7&l,l-=7&l;l<32;){if(0===o)break e;o--,u+=n[s++]<<l,l+=8}if((65535&u)!=(u>>>16^65535)){e.msg="invalid stored block lengths",r.mode=30;break}if(r.length=65535&u,l=u=0,r.mode=15,6===t)break e;case 15:r.mode=16;case 16:if(d=r.length){if(o<d&&(d=o),h<d&&(d=h),0===d)break e;I.arraySet(i,n,s,d,a),o-=d,s+=d,h-=d,a+=d,r.length-=d;break}r.mode=12;break;case 17:for(;l<14;){if(0===o)break e;o--,u+=n[s++]<<l,l+=8}if(r.nlen=257+(31&u),u>>>=5,l-=5,r.ndist=1+(31&u),u>>>=5,l-=5,r.ncode=4+(15&u),u>>>=4,l-=4,286<r.nlen||30<r.ndist){e.msg="too many length or distance symbols",r.mode=30;break}r.have=0,r.mode=18;case 18:for(;r.have<r.ncode;){for(;l<3;){if(0===o)break e;o--,u+=n[s++]<<l,l+=8}r.lens[A[r.have++]]=7&u,u>>>=3,l-=3}for(;r.have<19;)r.lens[A[r.have++]]=0;if(r.lencode=r.lendyn,r.lenbits=7,S={bits:r.lenbits},x=T(0,r.lens,0,19,r.lencode,0,r.work,S),r.lenbits=S.bits,x){e.msg="invalid code lengths set",r.mode=30;break}r.have=0,r.mode=19;case 19:for(;r.have<r.nlen+r.ndist;){for(;g=(C=r.lencode[u&(1<<r.lenbits)-1])>>>16&255,b=65535&C,!((_=C>>>24)<=l);){if(0===o)break e;o--,u+=n[s++]<<l,l+=8}if(b<16)u>>>=_,l-=_,r.lens[r.have++]=b;else{if(16===b){for(z=_+2;l<z;){if(0===o)break e;o--,u+=n[s++]<<l,l+=8}if(u>>>=_,l-=_,0===r.have){e.msg="invalid bit length repeat",r.mode=30;break}k=r.lens[r.have-1],d=3+(3&u),u>>>=2,l-=2}else if(17===b){for(z=_+3;l<z;){if(0===o)break e;o--,u+=n[s++]<<l,l+=8}l-=_,k=0,d=3+(7&(u>>>=_)),u>>>=3,l-=3}else{for(z=_+7;l<z;){if(0===o)break e;o--,u+=n[s++]<<l,l+=8}l-=_,k=0,d=11+(127&(u>>>=_)),u>>>=7,l-=7}if(r.have+d>r.nlen+r.ndist){e.msg="invalid bit length repeat",r.mode=30;break}for(;d--;)r.lens[r.have++]=k}}if(30===r.mode)break;if(0===r.lens[256]){e.msg="invalid code -- missing end-of-block",r.mode=30;break}if(r.lenbits=9,S={bits:r.lenbits},x=T(D,r.lens,0,r.nlen,r.lencode,0,r.work,S),r.lenbits=S.bits,x){e.msg="invalid literal/lengths set",r.mode=30;break}if(r.distbits=6,r.distcode=r.distdyn,S={bits:r.distbits},x=T(F,r.lens,r.nlen,r.ndist,r.distcode,0,r.work,S),r.distbits=S.bits,x){e.msg="invalid distances set",r.mode=30;break}if(r.mode=20,6===t)break e;case 20:r.mode=21;case 21:if(6<=o&&258<=h){e.next_out=a,e.avail_out=h,e.next_in=s,e.avail_in=o,r.hold=u,r.bits=l,R(e,c),a=e.next_out,i=e.output,h=e.avail_out,s=e.next_in,n=e.input,o=e.avail_in,u=r.hold,l=r.bits,12===r.mode&&(r.back=-1);break}for(r.back=0;g=(C=r.lencode[u&(1<<r.lenbits)-1])>>>16&255,b=65535&C,!((_=C>>>24)<=l);){if(0===o)break e;o--,u+=n[s++]<<l,l+=8}if(g&&0==(240&g)){for(v=_,y=g,w=b;g=(C=r.lencode[w+((u&(1<<v+y)-1)>>v)])>>>16&255,b=65535&C,!(v+(_=C>>>24)<=l);){if(0===o)break e;o--,u+=n[s++]<<l,l+=8}u>>>=v,l-=v,r.back+=v}if(u>>>=_,l-=_,r.back+=_,r.length=b,0===g){r.mode=26;break}if(32&g){r.back=-1,r.mode=12;break}if(64&g){e.msg="invalid literal/length code",r.mode=30;break}r.extra=15&g,r.mode=22;case 22:if(r.extra){for(z=r.extra;l<z;){if(0===o)break e;o--,u+=n[s++]<<l,l+=8}r.length+=u&(1<<r.extra)-1,u>>>=r.extra,l-=r.extra,r.back+=r.extra}r.was=r.length,r.mode=23;case 23:for(;g=(C=r.distcode[u&(1<<r.distbits)-1])>>>16&255,b=65535&C,!((_=C>>>24)<=l);){if(0===o)break e;o--,u+=n[s++]<<l,l+=8}if(0==(240&g)){for(v=_,y=g,w=b;g=(C=r.distcode[w+((u&(1<<v+y)-1)>>v)])>>>16&255,b=65535&C,!(v+(_=C>>>24)<=l);){if(0===o)break e;o--,u+=n[s++]<<l,l+=8}u>>>=v,l-=v,r.back+=v}if(u>>>=_,l-=_,r.back+=_,64&g){e.msg="invalid distance code",r.mode=30;break}r.offset=b,r.extra=15&g,r.mode=24;case 24:if(r.extra){for(z=r.extra;l<z;){if(0===o)break e;o--,u+=n[s++]<<l,l+=8}r.offset+=u&(1<<r.extra)-1,u>>>=r.extra,l-=r.extra,r.back+=r.extra}if(r.offset>r.dmax){e.msg="invalid distance too far back",r.mode=30;break}r.mode=25;case 25:if(0===h)break e;if(d=c-h,r.offset>d){if((d=r.offset-d)>r.whave&&r.sane){e.msg="invalid distance too far back",r.mode=30;break}p=d>r.wnext?(d-=r.wnext,r.wsize-d):r.wnext-d,d>r.length&&(d=r.length),m=r.window}else m=i,p=a-r.offset,d=r.length;for(h<d&&(d=h),h-=d,r.length-=d;i[a++]=m[p++],--d;);0===r.length&&(r.mode=21);break;case 26:if(0===h)break e;i[a++]=r.length,h--,r.mode=21;break;case 27:if(r.wrap){for(;l<32;){if(0===o)break e;o--,u|=n[s++]<<l,l+=8}if(c-=h,e.total_out+=c,r.total+=c,c&&(e.adler=r.check=r.flags?B(r.check,i,c,a-c):O(r.check,i,c,a-c)),c=h,(r.flags?u:L(u))!==r.check){e.msg="incorrect data check",r.mode=30;break}l=u=0}r.mode=28;case 28:if(r.wrap&&r.flags){for(;l<32;){if(0===o)break e;o--,u+=n[s++]<<l,l+=8}if(u!==(4294967295&r.total)){e.msg="incorrect length check",r.mode=30;break}l=u=0}r.mode=29;case 29:x=1;break e;case 30:x=-3;break e;case 31:return-4;case 32:default:return U}return e.next_out=a,e.avail_out=h,e.next_in=s,e.avail_in=o,r.hold=u,r.bits=l,(r.wsize||c!==e.avail_out&&r.mode<30&&(r.mode<27||4!==t))&&Z(e,e.output,e.next_out,c-e.avail_out)?(r.mode=31,-4):(f-=e.avail_in,c-=e.avail_out,e.total_in+=f,e.total_out+=c,r.total+=c,r.wrap&&c&&(e.adler=r.check=r.flags?B(r.check,i,c,e.next_out-c):O(r.check,i,c,e.next_out-c)),e.data_type=r.bits+(r.last?64:0)+(12===r.mode?128:0)+(20===r.mode||15===r.mode?256:0),(0==f&&0===c||4===t)&&x===N&&(x=-5),x)},r.inflateEnd=function(e){if(!e||!e.state)return U;var t=e.state;return t.window&&(t.window=null),e.state=null,N},r.inflateGetHeader=function(e,t){var r;return e&&e.state?0==(2&(r=e.state).wrap)?U:((r.head=t).done=!1,N):U},r.inflateSetDictionary=function(e,t){var r,n=t.length;return e&&e.state?0!==(r=e.state).wrap&&11!==r.mode?U:11===r.mode&&O(1,t,n,0)!==r.check?-3:Z(e,t,n,n)?(r.mode=31,-4):(r.havedict=1,N):U},r.inflateInfo="pako inflate (from Nodeca project)"},{"../utils/common":41,"./adler32":43,"./crc32":45,"./inffast":48,"./inftrees":50}],50:[function(e,t,r){"use strict";var D=e("../utils/common"),F=[3,4,5,6,7,8,9,10,11,13,15,17,19,23,27,31,35,43,51,59,67,83,99,115,131,163,195,227,258,0,0],N=[16,16,16,16,16,16,16,16,17,17,17,17,18,18,18,18,19,19,19,19,20,20,20,20,21,21,21,21,16,72,78],U=[1,2,3,4,5,7,9,13,17,25,33,49,65,97,129,193,257,385,513,769,1025,1537,2049,3073,4097,6145,8193,12289,16385,24577,0,0],P=[16,16,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,64,64];t.exports=function(e,t,r,n,i,s,a,o){var h,u,l,f,c,d,p,m,_,g=o.bits,b=0,v=0,y=0,w=0,k=0,x=0,S=0,z=0,C=0,E=0,A=null,I=0,O=new D.Buf16(16),B=new D.Buf16(16),R=null,T=0;for(b=0;b<=15;b++)O[b]=0;for(v=0;v<n;v++)O[t[r+v]]++;for(k=g,w=15;1<=w&&0===O[w];w--);if(w<k&&(k=w),0===w)return i[s++]=20971520,i[s++]=20971520,o.bits=1,0;for(y=1;y<w&&0===O[y];y++);for(k<y&&(k=y),b=z=1;b<=15;b++)if(z<<=1,(z-=O[b])<0)return-1;if(0<z&&(0===e||1!==w))return-1;for(B[1]=0,b=1;b<15;b++)B[b+1]=B[b]+O[b];for(v=0;v<n;v++)0!==t[r+v]&&(a[B[t[r+v]]++]=v);if(d=0===e?(A=R=a,19):1===e?(A=F,I-=257,R=N,T-=257,256):(A=U,R=P,-1),b=y,c=s,S=v=E=0,l=-1,f=(C=1<<(x=k))-1,1===e&&852<C||2===e&&592<C)return 1;for(;;){for(p=b-S,_=a[v]<d?(m=0,a[v]):a[v]>d?(m=R[T+a[v]],A[I+a[v]]):(m=96,0),h=1<<b-S,y=u=1<<x;i[c+(E>>S)+(u-=h)]=p<<24|m<<16|_|0,0!==u;);for(h=1<<b-1;E&h;)h>>=1;if(0!==h?(E&=h-1,E+=h):E=0,v++,0==--O[b]){if(b===w)break;b=t[r+a[v]]}if(k<b&&(E&f)!==l){for(0===S&&(S=k),c+=y,z=1<<(x=b-S);x+S<w&&!((z-=O[x+S])<=0);)x++,z<<=1;if(C+=1<<x,1===e&&852<C||2===e&&592<C)return 1;i[l=E&f]=k<<24|x<<16|c-s|0}}return 0!==E&&(i[c+E]=b-S<<24|64<<16|0),o.bits=k,0}},{"../utils/common":41}],51:[function(e,t,r){"use strict";t.exports={2:"need dictionary",1:"stream end",0:"","-1":"file error","-2":"stream error","-3":"data error","-4":"insufficient memory","-5":"buffer error","-6":"incompatible version"}},{}],52:[function(e,t,r){"use strict";var i=e("../utils/common"),o=0,h=1;function n(e){for(var t=e.length;0<=--t;)e[t]=0}var s=0,a=29,u=256,l=u+1+a,f=30,c=19,_=2*l+1,g=15,d=16,p=7,m=256,b=16,v=17,y=18,w=[0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0],k=[0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13],x=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7],S=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15],z=new Array(2*(l+2));n(z);var C=new Array(2*f);n(C);var E=new Array(512);n(E);var A=new Array(256);n(A);var I=new Array(a);n(I);var O,B,R,T=new Array(f);function D(e,t,r,n,i){this.static_tree=e,this.extra_bits=t,this.extra_base=r,this.elems=n,this.max_length=i,this.has_stree=e&&e.length}function F(e,t){this.dyn_tree=e,this.max_code=0,this.stat_desc=t}function N(e){return e<256?E[e]:E[256+(e>>>7)]}function U(e,t){e.pending_buf[e.pending++]=255&t,e.pending_buf[e.pending++]=t>>>8&255}function P(e,t,r){e.bi_valid>d-r?(e.bi_buf|=t<<e.bi_valid&65535,U(e,e.bi_buf),e.bi_buf=t>>d-e.bi_valid,e.bi_valid+=r-d):(e.bi_buf|=t<<e.bi_valid&65535,e.bi_valid+=r)}function L(e,t,r){P(e,r[2*t],r[2*t+1])}function j(e,t){for(var r=0;r|=1&e,e>>>=1,r<<=1,0<--t;);return r>>>1}function Z(e,t,r){var n,i,s=new Array(g+1),a=0;for(n=1;n<=g;n++)s[n]=a=a+r[n-1]<<1;for(i=0;i<=t;i++){var o=e[2*i+1];0!==o&&(e[2*i]=j(s[o]++,o))}}function W(e){var t;for(t=0;t<l;t++)e.dyn_ltree[2*t]=0;for(t=0;t<f;t++)e.dyn_dtree[2*t]=0;for(t=0;t<c;t++)e.bl_tree[2*t]=0;e.dyn_ltree[2*m]=1,e.opt_len=e.static_len=0,e.last_lit=e.matches=0}function M(e){8<e.bi_valid?U(e,e.bi_buf):0<e.bi_valid&&(e.pending_buf[e.pending++]=e.bi_buf),e.bi_buf=0,e.bi_valid=0}function H(e,t,r,n){var i=2*t,s=2*r;return e[i]<e[s]||e[i]===e[s]&&n[t]<=n[r]}function G(e,t,r){for(var n=e.heap[r],i=r<<1;i<=e.heap_len&&(i<e.heap_len&&H(t,e.heap[i+1],e.heap[i],e.depth)&&i++,!H(t,n,e.heap[i],e.depth));)e.heap[r]=e.heap[i],r=i,i<<=1;e.heap[r]=n}function K(e,t,r){var n,i,s,a,o=0;if(0!==e.last_lit)for(;n=e.pending_buf[e.d_buf+2*o]<<8|e.pending_buf[e.d_buf+2*o+1],i=e.pending_buf[e.l_buf+o],o++,0===n?L(e,i,t):(L(e,(s=A[i])+u+1,t),0!==(a=w[s])&&P(e,i-=I[s],a),L(e,s=N(--n),r),0!==(a=k[s])&&P(e,n-=T[s],a)),o<e.last_lit;);L(e,m,t)}function Y(e,t){var r,n,i,s=t.dyn_tree,a=t.stat_desc.static_tree,o=t.stat_desc.has_stree,h=t.stat_desc.elems,u=-1;for(e.heap_len=0,e.heap_max=_,r=0;r<h;r++)0!==s[2*r]?(e.heap[++e.heap_len]=u=r,e.depth[r]=0):s[2*r+1]=0;for(;e.heap_len<2;)s[2*(i=e.heap[++e.heap_len]=u<2?++u:0)]=1,e.depth[i]=0,e.opt_len--,o&&(e.static_len-=a[2*i+1]);for(t.max_code=u,r=e.heap_len>>1;1<=r;r--)G(e,s,r);for(i=h;r=e.heap[1],e.heap[1]=e.heap[e.heap_len--],G(e,s,1),n=e.heap[1],e.heap[--e.heap_max]=r,e.heap[--e.heap_max]=n,s[2*i]=s[2*r]+s[2*n],e.depth[i]=(e.depth[r]>=e.depth[n]?e.depth[r]:e.depth[n])+1,s[2*r+1]=s[2*n+1]=i,e.heap[1]=i++,G(e,s,1),2<=e.heap_len;);e.heap[--e.heap_max]=e.heap[1],function(e,t){var r,n,i,s,a,o,h=t.dyn_tree,u=t.max_code,l=t.stat_desc.static_tree,f=t.stat_desc.has_stree,c=t.stat_desc.extra_bits,d=t.stat_desc.extra_base,p=t.stat_desc.max_length,m=0;for(s=0;s<=g;s++)e.bl_count[s]=0;for(h[2*e.heap[e.heap_max]+1]=0,r=e.heap_max+1;r<_;r++)p<(s=h[2*h[2*(n=e.heap[r])+1]+1]+1)&&(s=p,m++),h[2*n+1]=s,u<n||(e.bl_count[s]++,a=0,d<=n&&(a=c[n-d]),o=h[2*n],e.opt_len+=o*(s+a),f&&(e.static_len+=o*(l[2*n+1]+a)));if(0!==m){do{for(s=p-1;0===e.bl_count[s];)s--;e.bl_count[s]--,e.bl_count[s+1]+=2,e.bl_count[p]--,m-=2}while(0<m);for(s=p;0!==s;s--)for(n=e.bl_count[s];0!==n;)u<(i=e.heap[--r])||(h[2*i+1]!==s&&(e.opt_len+=(s-h[2*i+1])*h[2*i],h[2*i+1]=s),n--)}}(e,t),Z(s,u,e.bl_count)}function X(e,t,r){var n,i,s=-1,a=t[1],o=0,h=7,u=4;for(0===a&&(h=138,u=3),t[2*(r+1)+1]=65535,n=0;n<=r;n++)i=a,a=t[2*(n+1)+1],++o<h&&i===a||(o<u?e.bl_tree[2*i]+=o:0!==i?(i!==s&&e.bl_tree[2*i]++,e.bl_tree[2*b]++):o<=10?e.bl_tree[2*v]++:e.bl_tree[2*y]++,s=i,u=(o=0)===a?(h=138,3):i===a?(h=6,3):(h=7,4))}function V(e,t,r){var n,i,s=-1,a=t[1],o=0,h=7,u=4;for(0===a&&(h=138,u=3),n=0;n<=r;n++)if(i=a,a=t[2*(n+1)+1],!(++o<h&&i===a)){if(o<u)for(;L(e,i,e.bl_tree),0!=--o;);else 0!==i?(i!==s&&(L(e,i,e.bl_tree),o--),L(e,b,e.bl_tree),P(e,o-3,2)):o<=10?(L(e,v,e.bl_tree),P(e,o-3,3)):(L(e,y,e.bl_tree),P(e,o-11,7));s=i,u=(o=0)===a?(h=138,3):i===a?(h=6,3):(h=7,4)}}n(T);var q=!1;function J(e,t,r,n){P(e,(s<<1)+(n?1:0),3),function(e,t,r,n){M(e),n&&(U(e,r),U(e,~r)),i.arraySet(e.pending_buf,e.window,t,r,e.pending),e.pending+=r}(e,t,r,!0)}r._tr_init=function(e){q||(function(){var e,t,r,n,i,s=new Array(g+1);for(n=r=0;n<a-1;n++)for(I[n]=r,e=0;e<1<<w[n];e++)A[r++]=n;for(A[r-1]=n,n=i=0;n<16;n++)for(T[n]=i,e=0;e<1<<k[n];e++)E[i++]=n;for(i>>=7;n<f;n++)for(T[n]=i<<7,e=0;e<1<<k[n]-7;e++)E[256+i++]=n;for(t=0;t<=g;t++)s[t]=0;for(e=0;e<=143;)z[2*e+1]=8,e++,s[8]++;for(;e<=255;)z[2*e+1]=9,e++,s[9]++;for(;e<=279;)z[2*e+1]=7,e++,s[7]++;for(;e<=287;)z[2*e+1]=8,e++,s[8]++;for(Z(z,l+1,s),e=0;e<f;e++)C[2*e+1]=5,C[2*e]=j(e,5);O=new D(z,w,u+1,l,g),B=new D(C,k,0,f,g),R=new D(new Array(0),x,0,c,p)}(),q=!0),e.l_desc=new F(e.dyn_ltree,O),e.d_desc=new F(e.dyn_dtree,B),e.bl_desc=new F(e.bl_tree,R),e.bi_buf=0,e.bi_valid=0,W(e)},r._tr_stored_block=J,r._tr_flush_block=function(e,t,r,n){var i,s,a=0;0<e.level?(2===e.strm.data_type&&(e.strm.data_type=function(e){var t,r=4093624447;for(t=0;t<=31;t++,r>>>=1)if(1&r&&0!==e.dyn_ltree[2*t])return o;if(0!==e.dyn_ltree[18]||0!==e.dyn_ltree[20]||0!==e.dyn_ltree[26])return h;for(t=32;t<u;t++)if(0!==e.dyn_ltree[2*t])return h;return o}(e)),Y(e,e.l_desc),Y(e,e.d_desc),a=function(e){var t;for(X(e,e.dyn_ltree,e.l_desc.max_code),X(e,e.dyn_dtree,e.d_desc.max_code),Y(e,e.bl_desc),t=c-1;3<=t&&0===e.bl_tree[2*S[t]+1];t--);return e.opt_len+=3*(t+1)+5+5+4,t}(e),i=e.opt_len+3+7>>>3,(s=e.static_len+3+7>>>3)<=i&&(i=s)):i=s=r+5,r+4<=i&&-1!==t?J(e,t,r,n):4===e.strategy||s===i?(P(e,2+(n?1:0),3),K(e,z,C)):(P(e,4+(n?1:0),3),function(e,t,r,n){var i;for(P(e,t-257,5),P(e,r-1,5),P(e,n-4,4),i=0;i<n;i++)P(e,e.bl_tree[2*S[i]+1],3);V(e,e.dyn_ltree,t-1),V(e,e.dyn_dtree,r-1)}(e,e.l_desc.max_code+1,e.d_desc.max_code+1,a+1),K(e,e.dyn_ltree,e.dyn_dtree)),W(e),n&&M(e)},r._tr_tally=function(e,t,r){return e.pending_buf[e.d_buf+2*e.last_lit]=t>>>8&255,e.pending_buf[e.d_buf+2*e.last_lit+1]=255&t,e.pending_buf[e.l_buf+e.last_lit]=255&r,e.last_lit++,0===t?e.dyn_ltree[2*r]++:(e.matches++,t--,e.dyn_ltree[2*(A[r]+u+1)]++,e.dyn_dtree[2*N(t)]++),e.last_lit===e.lit_bufsize-1},r._tr_align=function(e){P(e,2,3),L(e,m,z),function(e){16===e.bi_valid?(U(e,e.bi_buf),e.bi_buf=0,e.bi_valid=0):8<=e.bi_valid&&(e.pending_buf[e.pending++]=255&e.bi_buf,e.bi_buf>>=8,e.bi_valid-=8)}(e)}},{"../utils/common":41}],53:[function(e,t,r){"use strict";t.exports=function(){this.input=null,this.next_in=0,this.avail_in=0,this.total_in=0,this.output=null,this.next_out=0,this.avail_out=0,this.total_out=0,this.msg="",this.state=null,this.data_type=2,this.adler=0}},{}],54:[function(e,t,r){(function(e){!function(r,n){"use strict";if(!r.setImmediate){var i,s,t,a,o=1,h={},u=!1,l=r.document,e=Object.getPrototypeOf&&Object.getPrototypeOf(r);e=e&&e.setTimeout?e:r,i="[object process]"==={}.toString.call(r.process)?function(e){process.nextTick(function(){c(e)})}:function(){if(r.postMessage&&!r.importScripts){var e=!0,t=r.onmessage;return r.onmessage=function(){e=!1},r.postMessage("","*"),r.onmessage=t,e}}()?(a="setImmediate$"+Math.random()+"$",r.addEventListener?r.addEventListener("message",d,!1):r.attachEvent("onmessage",d),function(e){r.postMessage(a+e,"*")}):r.MessageChannel?((t=new MessageChannel).port1.onmessage=function(e){c(e.data)},function(e){t.port2.postMessage(e)}):l&&"onreadystatechange"in l.createElement("script")?(s=l.documentElement,function(e){var t=l.createElement("script");t.onreadystatechange=function(){c(e),t.onreadystatechange=null,s.removeChild(t),t=null},s.appendChild(t)}):function(e){setTimeout(c,0,e)},e.setImmediate=function(e){"function"!=typeof e&&(e=new Function(""+e));for(var t=new Array(arguments.length-1),r=0;r<t.length;r++)t[r]=arguments[r+1];var n={callback:e,args:t};return h[o]=n,i(o),o++},e.clearImmediate=f}function f(e){delete h[e]}function c(e){if(u)setTimeout(c,0,e);else{var t=h[e];if(t){u=!0;try{!function(e){var t=e.callback,r=e.args;switch(r.length){case 0:t();break;case 1:t(r[0]);break;case 2:t(r[0],r[1]);break;case 3:t(r[0],r[1],r[2]);break;default:t.apply(n,r)}}(t)}finally{f(e),u=!1}}}}function d(e){e.source===r&&"string"==typeof e.data&&0===e.data.indexOf(a)&&c(+e.data.slice(a.length))}}("undefined"==typeof self?void 0===e?this:e:self)}).call(this,"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{}]},{},[10])(10)});
|
||
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],require("timers").setImmediate)
|
||
},{"_process":12,"buffer":3,"timers":31}],11:[function(require,module,exports){
|
||
(function (process){(function (){
|
||
'use strict';
|
||
|
||
if (typeof process === 'undefined' ||
|
||
!process.version ||
|
||
process.version.indexOf('v0.') === 0 ||
|
||
process.version.indexOf('v1.') === 0 && process.version.indexOf('v1.8.') !== 0) {
|
||
module.exports = { nextTick: nextTick };
|
||
} else {
|
||
module.exports = process
|
||
}
|
||
|
||
function nextTick(fn, arg1, arg2, arg3) {
|
||
if (typeof fn !== 'function') {
|
||
throw new TypeError('"callback" argument must be a function');
|
||
}
|
||
var len = arguments.length;
|
||
var args, i;
|
||
switch (len) {
|
||
case 0:
|
||
case 1:
|
||
return process.nextTick(fn);
|
||
case 2:
|
||
return process.nextTick(function afterTickOne() {
|
||
fn.call(null, arg1);
|
||
});
|
||
case 3:
|
||
return process.nextTick(function afterTickTwo() {
|
||
fn.call(null, arg1, arg2);
|
||
});
|
||
case 4:
|
||
return process.nextTick(function afterTickThree() {
|
||
fn.call(null, arg1, arg2, arg3);
|
||
});
|
||
default:
|
||
args = new Array(len - 1);
|
||
i = 0;
|
||
while (i < args.length) {
|
||
args[i++] = arguments[i];
|
||
}
|
||
return process.nextTick(function afterTick() {
|
||
fn.apply(null, args);
|
||
});
|
||
}
|
||
}
|
||
|
||
|
||
}).call(this)}).call(this,require('_process'))
|
||
},{"_process":12}],12:[function(require,module,exports){
|
||
// shim for using process in browser
|
||
var process = module.exports = {};
|
||
|
||
// cached from whatever global is present so that test runners that stub it
|
||
// don't break things. But we need to wrap it in a try catch in case it is
|
||
// wrapped in strict mode code which doesn't define any globals. It's inside a
|
||
// function because try/catches deoptimize in certain engines.
|
||
|
||
var cachedSetTimeout;
|
||
var cachedClearTimeout;
|
||
|
||
function defaultSetTimout() {
|
||
throw new Error('setTimeout has not been defined');
|
||
}
|
||
function defaultClearTimeout () {
|
||
throw new Error('clearTimeout has not been defined');
|
||
}
|
||
(function () {
|
||
try {
|
||
if (typeof setTimeout === 'function') {
|
||
cachedSetTimeout = setTimeout;
|
||
} else {
|
||
cachedSetTimeout = defaultSetTimout;
|
||
}
|
||
} catch (e) {
|
||
cachedSetTimeout = defaultSetTimout;
|
||
}
|
||
try {
|
||
if (typeof clearTimeout === 'function') {
|
||
cachedClearTimeout = clearTimeout;
|
||
} else {
|
||
cachedClearTimeout = defaultClearTimeout;
|
||
}
|
||
} catch (e) {
|
||
cachedClearTimeout = defaultClearTimeout;
|
||
}
|
||
} ())
|
||
function runTimeout(fun) {
|
||
if (cachedSetTimeout === setTimeout) {
|
||
//normal enviroments in sane situations
|
||
return setTimeout(fun, 0);
|
||
}
|
||
// if setTimeout wasn't available but was latter defined
|
||
if ((cachedSetTimeout === defaultSetTimout || !cachedSetTimeout) && setTimeout) {
|
||
cachedSetTimeout = setTimeout;
|
||
return setTimeout(fun, 0);
|
||
}
|
||
try {
|
||
// when when somebody has screwed with setTimeout but no I.E. maddness
|
||
return cachedSetTimeout(fun, 0);
|
||
} catch(e){
|
||
try {
|
||
// When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally
|
||
return cachedSetTimeout.call(null, fun, 0);
|
||
} catch(e){
|
||
// same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error
|
||
return cachedSetTimeout.call(this, fun, 0);
|
||
}
|
||
}
|
||
|
||
|
||
}
|
||
function runClearTimeout(marker) {
|
||
if (cachedClearTimeout === clearTimeout) {
|
||
//normal enviroments in sane situations
|
||
return clearTimeout(marker);
|
||
}
|
||
// if clearTimeout wasn't available but was latter defined
|
||
if ((cachedClearTimeout === defaultClearTimeout || !cachedClearTimeout) && clearTimeout) {
|
||
cachedClearTimeout = clearTimeout;
|
||
return clearTimeout(marker);
|
||
}
|
||
try {
|
||
// when when somebody has screwed with setTimeout but no I.E. maddness
|
||
return cachedClearTimeout(marker);
|
||
} catch (e){
|
||
try {
|
||
// When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally
|
||
return cachedClearTimeout.call(null, marker);
|
||
} catch (e){
|
||
// same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error.
|
||
// Some versions of I.E. have different rules for clearTimeout vs setTimeout
|
||
return cachedClearTimeout.call(this, marker);
|
||
}
|
||
}
|
||
|
||
|
||
|
||
}
|
||
var queue = [];
|
||
var draining = false;
|
||
var currentQueue;
|
||
var queueIndex = -1;
|
||
|
||
function cleanUpNextTick() {
|
||
if (!draining || !currentQueue) {
|
||
return;
|
||
}
|
||
draining = false;
|
||
if (currentQueue.length) {
|
||
queue = currentQueue.concat(queue);
|
||
} else {
|
||
queueIndex = -1;
|
||
}
|
||
if (queue.length) {
|
||
drainQueue();
|
||
}
|
||
}
|
||
|
||
function drainQueue() {
|
||
if (draining) {
|
||
return;
|
||
}
|
||
var timeout = runTimeout(cleanUpNextTick);
|
||
draining = true;
|
||
|
||
var len = queue.length;
|
||
while(len) {
|
||
currentQueue = queue;
|
||
queue = [];
|
||
while (++queueIndex < len) {
|
||
if (currentQueue) {
|
||
currentQueue[queueIndex].run();
|
||
}
|
||
}
|
||
queueIndex = -1;
|
||
len = queue.length;
|
||
}
|
||
currentQueue = null;
|
||
draining = false;
|
||
runClearTimeout(timeout);
|
||
}
|
||
|
||
process.nextTick = function (fun) {
|
||
var args = new Array(arguments.length - 1);
|
||
if (arguments.length > 1) {
|
||
for (var i = 1; i < arguments.length; i++) {
|
||
args[i - 1] = arguments[i];
|
||
}
|
||
}
|
||
queue.push(new Item(fun, args));
|
||
if (queue.length === 1 && !draining) {
|
||
runTimeout(drainQueue);
|
||
}
|
||
};
|
||
|
||
// v8 likes predictible objects
|
||
function Item(fun, array) {
|
||
this.fun = fun;
|
||
this.array = array;
|
||
}
|
||
Item.prototype.run = function () {
|
||
this.fun.apply(null, this.array);
|
||
};
|
||
process.title = 'browser';
|
||
process.browser = true;
|
||
process.env = {};
|
||
process.argv = [];
|
||
process.version = ''; // empty string to avoid regexp issues
|
||
process.versions = {};
|
||
|
||
function noop() {}
|
||
|
||
process.on = noop;
|
||
process.addListener = noop;
|
||
process.once = noop;
|
||
process.off = noop;
|
||
process.removeListener = noop;
|
||
process.removeAllListeners = noop;
|
||
process.emit = noop;
|
||
process.prependListener = noop;
|
||
process.prependOnceListener = noop;
|
||
|
||
process.listeners = function (name) { return [] }
|
||
|
||
process.binding = function (name) {
|
||
throw new Error('process.binding is not supported');
|
||
};
|
||
|
||
process.cwd = function () { return '/' };
|
||
process.chdir = function (dir) {
|
||
throw new Error('process.chdir is not supported');
|
||
};
|
||
process.umask = function() { return 0; };
|
||
|
||
},{}],13:[function(require,module,exports){
|
||
module.exports = require('./lib/_stream_duplex.js');
|
||
|
||
},{"./lib/_stream_duplex.js":14}],14:[function(require,module,exports){
|
||
// Copyright Joyent, Inc. and other Node contributors.
|
||
//
|
||
// Permission is hereby granted, free of charge, to any person obtaining a
|
||
// copy of this software and associated documentation files (the
|
||
// "Software"), to deal in the Software without restriction, including
|
||
// without limitation the rights to use, copy, modify, merge, publish,
|
||
// distribute, sublicense, and/or sell copies of the Software, and to permit
|
||
// persons to whom the Software is furnished to do so, subject to the
|
||
// following conditions:
|
||
//
|
||
// The above copyright notice and this permission notice shall be included
|
||
// in all copies or substantial portions of the Software.
|
||
//
|
||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
||
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
||
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
||
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
||
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
||
// USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||
|
||
// a duplex stream is just a stream that is both readable and writable.
|
||
// Since JS doesn't have multiple prototypal inheritance, this class
|
||
// prototypally inherits from Readable, and then parasitically from
|
||
// Writable.
|
||
|
||
'use strict';
|
||
|
||
/*<replacement>*/
|
||
|
||
var pna = require('process-nextick-args');
|
||
/*</replacement>*/
|
||
|
||
/*<replacement>*/
|
||
var objectKeys = Object.keys || function (obj) {
|
||
var keys = [];
|
||
for (var key in obj) {
|
||
keys.push(key);
|
||
}return keys;
|
||
};
|
||
/*</replacement>*/
|
||
|
||
module.exports = Duplex;
|
||
|
||
/*<replacement>*/
|
||
var util = Object.create(require('core-util-is'));
|
||
util.inherits = require('inherits');
|
||
/*</replacement>*/
|
||
|
||
var Readable = require('./_stream_readable');
|
||
var Writable = require('./_stream_writable');
|
||
|
||
util.inherits(Duplex, Readable);
|
||
|
||
{
|
||
// avoid scope creep, the keys array can then be collected
|
||
var keys = objectKeys(Writable.prototype);
|
||
for (var v = 0; v < keys.length; v++) {
|
||
var method = keys[v];
|
||
if (!Duplex.prototype[method]) Duplex.prototype[method] = Writable.prototype[method];
|
||
}
|
||
}
|
||
|
||
function Duplex(options) {
|
||
if (!(this instanceof Duplex)) return new Duplex(options);
|
||
|
||
Readable.call(this, options);
|
||
Writable.call(this, options);
|
||
|
||
if (options && options.readable === false) this.readable = false;
|
||
|
||
if (options && options.writable === false) this.writable = false;
|
||
|
||
this.allowHalfOpen = true;
|
||
if (options && options.allowHalfOpen === false) this.allowHalfOpen = false;
|
||
|
||
this.once('end', onend);
|
||
}
|
||
|
||
Object.defineProperty(Duplex.prototype, 'writableHighWaterMark', {
|
||
// making it explicit this property is not enumerable
|
||
// because otherwise some prototype manipulation in
|
||
// userland will fail
|
||
enumerable: false,
|
||
get: function () {
|
||
return this._writableState.highWaterMark;
|
||
}
|
||
});
|
||
|
||
// the no-half-open enforcer
|
||
function onend() {
|
||
// if we allow half-open state, or if the writable side ended,
|
||
// then we're ok.
|
||
if (this.allowHalfOpen || this._writableState.ended) return;
|
||
|
||
// no more data can be written.
|
||
// But allow more writes to happen in this tick.
|
||
pna.nextTick(onEndNT, this);
|
||
}
|
||
|
||
function onEndNT(self) {
|
||
self.end();
|
||
}
|
||
|
||
Object.defineProperty(Duplex.prototype, 'destroyed', {
|
||
get: function () {
|
||
if (this._readableState === undefined || this._writableState === undefined) {
|
||
return false;
|
||
}
|
||
return this._readableState.destroyed && this._writableState.destroyed;
|
||
},
|
||
set: function (value) {
|
||
// we ignore the value if the stream
|
||
// has not been initialized yet
|
||
if (this._readableState === undefined || this._writableState === undefined) {
|
||
return;
|
||
}
|
||
|
||
// backward compatibility, the user is explicitly
|
||
// managing destroyed
|
||
this._readableState.destroyed = value;
|
||
this._writableState.destroyed = value;
|
||
}
|
||
});
|
||
|
||
Duplex.prototype._destroy = function (err, cb) {
|
||
this.push(null);
|
||
this.end();
|
||
|
||
pna.nextTick(cb, err);
|
||
};
|
||
},{"./_stream_readable":16,"./_stream_writable":18,"core-util-is":4,"inherits":8,"process-nextick-args":11}],15:[function(require,module,exports){
|
||
// Copyright Joyent, Inc. and other Node contributors.
|
||
//
|
||
// Permission is hereby granted, free of charge, to any person obtaining a
|
||
// copy of this software and associated documentation files (the
|
||
// "Software"), to deal in the Software without restriction, including
|
||
// without limitation the rights to use, copy, modify, merge, publish,
|
||
// distribute, sublicense, and/or sell copies of the Software, and to permit
|
||
// persons to whom the Software is furnished to do so, subject to the
|
||
// following conditions:
|
||
//
|
||
// The above copyright notice and this permission notice shall be included
|
||
// in all copies or substantial portions of the Software.
|
||
//
|
||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
||
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
||
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
||
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
||
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
||
// USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||
|
||
// a passthrough stream.
|
||
// basically just the most minimal sort of Transform stream.
|
||
// Every written chunk gets output as-is.
|
||
|
||
'use strict';
|
||
|
||
module.exports = PassThrough;
|
||
|
||
var Transform = require('./_stream_transform');
|
||
|
||
/*<replacement>*/
|
||
var util = Object.create(require('core-util-is'));
|
||
util.inherits = require('inherits');
|
||
/*</replacement>*/
|
||
|
||
util.inherits(PassThrough, Transform);
|
||
|
||
function PassThrough(options) {
|
||
if (!(this instanceof PassThrough)) return new PassThrough(options);
|
||
|
||
Transform.call(this, options);
|
||
}
|
||
|
||
PassThrough.prototype._transform = function (chunk, encoding, cb) {
|
||
cb(null, chunk);
|
||
};
|
||
},{"./_stream_transform":17,"core-util-is":4,"inherits":8}],16:[function(require,module,exports){
|
||
(function (process,global){(function (){
|
||
// Copyright Joyent, Inc. and other Node contributors.
|
||
//
|
||
// Permission is hereby granted, free of charge, to any person obtaining a
|
||
// copy of this software and associated documentation files (the
|
||
// "Software"), to deal in the Software without restriction, including
|
||
// without limitation the rights to use, copy, modify, merge, publish,
|
||
// distribute, sublicense, and/or sell copies of the Software, and to permit
|
||
// persons to whom the Software is furnished to do so, subject to the
|
||
// following conditions:
|
||
//
|
||
// The above copyright notice and this permission notice shall be included
|
||
// in all copies or substantial portions of the Software.
|
||
//
|
||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
||
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
||
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
||
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
||
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
||
// USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||
|
||
'use strict';
|
||
|
||
/*<replacement>*/
|
||
|
||
var pna = require('process-nextick-args');
|
||
/*</replacement>*/
|
||
|
||
module.exports = Readable;
|
||
|
||
/*<replacement>*/
|
||
var isArray = require('isarray');
|
||
/*</replacement>*/
|
||
|
||
/*<replacement>*/
|
||
var Duplex;
|
||
/*</replacement>*/
|
||
|
||
Readable.ReadableState = ReadableState;
|
||
|
||
/*<replacement>*/
|
||
var EE = require('events').EventEmitter;
|
||
|
||
var EElistenerCount = function (emitter, type) {
|
||
return emitter.listeners(type).length;
|
||
};
|
||
/*</replacement>*/
|
||
|
||
/*<replacement>*/
|
||
var Stream = require('./internal/streams/stream');
|
||
/*</replacement>*/
|
||
|
||
/*<replacement>*/
|
||
|
||
var Buffer = require('safe-buffer').Buffer;
|
||
var OurUint8Array = (typeof global !== 'undefined' ? global : typeof window !== 'undefined' ? window : typeof self !== 'undefined' ? self : {}).Uint8Array || function () {};
|
||
function _uint8ArrayToBuffer(chunk) {
|
||
return Buffer.from(chunk);
|
||
}
|
||
function _isUint8Array(obj) {
|
||
return Buffer.isBuffer(obj) || obj instanceof OurUint8Array;
|
||
}
|
||
|
||
/*</replacement>*/
|
||
|
||
/*<replacement>*/
|
||
var util = Object.create(require('core-util-is'));
|
||
util.inherits = require('inherits');
|
||
/*</replacement>*/
|
||
|
||
/*<replacement>*/
|
||
var debugUtil = require('util');
|
||
var debug = void 0;
|
||
if (debugUtil && debugUtil.debuglog) {
|
||
debug = debugUtil.debuglog('stream');
|
||
} else {
|
||
debug = function () {};
|
||
}
|
||
/*</replacement>*/
|
||
|
||
var BufferList = require('./internal/streams/BufferList');
|
||
var destroyImpl = require('./internal/streams/destroy');
|
||
var StringDecoder;
|
||
|
||
util.inherits(Readable, Stream);
|
||
|
||
var kProxyEvents = ['error', 'close', 'destroy', 'pause', 'resume'];
|
||
|
||
function prependListener(emitter, event, fn) {
|
||
// Sadly this is not cacheable as some libraries bundle their own
|
||
// event emitter implementation with them.
|
||
if (typeof emitter.prependListener === 'function') return emitter.prependListener(event, fn);
|
||
|
||
// This is a hack to make sure that our error handler is attached before any
|
||
// userland ones. NEVER DO THIS. This is here only because this code needs
|
||
// to continue to work with older versions of Node.js that do not include
|
||
// the prependListener() method. The goal is to eventually remove this hack.
|
||
if (!emitter._events || !emitter._events[event]) emitter.on(event, fn);else if (isArray(emitter._events[event])) emitter._events[event].unshift(fn);else emitter._events[event] = [fn, emitter._events[event]];
|
||
}
|
||
|
||
function ReadableState(options, stream) {
|
||
Duplex = Duplex || require('./_stream_duplex');
|
||
|
||
options = options || {};
|
||
|
||
// Duplex streams are both readable and writable, but share
|
||
// the same options object.
|
||
// However, some cases require setting options to different
|
||
// values for the readable and the writable sides of the duplex stream.
|
||
// These options can be provided separately as readableXXX and writableXXX.
|
||
var isDuplex = stream instanceof Duplex;
|
||
|
||
// object stream flag. Used to make read(n) ignore n and to
|
||
// make all the buffer merging and length checks go away
|
||
this.objectMode = !!options.objectMode;
|
||
|
||
if (isDuplex) this.objectMode = this.objectMode || !!options.readableObjectMode;
|
||
|
||
// the point at which it stops calling _read() to fill the buffer
|
||
// Note: 0 is a valid value, means "don't call _read preemptively ever"
|
||
var hwm = options.highWaterMark;
|
||
var readableHwm = options.readableHighWaterMark;
|
||
var defaultHwm = this.objectMode ? 16 : 16 * 1024;
|
||
|
||
if (hwm || hwm === 0) this.highWaterMark = hwm;else if (isDuplex && (readableHwm || readableHwm === 0)) this.highWaterMark = readableHwm;else this.highWaterMark = defaultHwm;
|
||
|
||
// cast to ints.
|
||
this.highWaterMark = Math.floor(this.highWaterMark);
|
||
|
||
// A linked list is used to store data chunks instead of an array because the
|
||
// linked list can remove elements from the beginning faster than
|
||
// array.shift()
|
||
this.buffer = new BufferList();
|
||
this.length = 0;
|
||
this.pipes = null;
|
||
this.pipesCount = 0;
|
||
this.flowing = null;
|
||
this.ended = false;
|
||
this.endEmitted = false;
|
||
this.reading = false;
|
||
|
||
// a flag to be able to tell if the event 'readable'/'data' is emitted
|
||
// immediately, or on a later tick. We set this to true at first, because
|
||
// any actions that shouldn't happen until "later" should generally also
|
||
// not happen before the first read call.
|
||
this.sync = true;
|
||
|
||
// whenever we return null, then we set a flag to say
|
||
// that we're awaiting a 'readable' event emission.
|
||
this.needReadable = false;
|
||
this.emittedReadable = false;
|
||
this.readableListening = false;
|
||
this.resumeScheduled = false;
|
||
|
||
// has it been destroyed
|
||
this.destroyed = false;
|
||
|
||
// Crypto is kind of old and crusty. Historically, its default string
|
||
// encoding is 'binary' so we have to make this configurable.
|
||
// Everything else in the universe uses 'utf8', though.
|
||
this.defaultEncoding = options.defaultEncoding || 'utf8';
|
||
|
||
// the number of writers that are awaiting a drain event in .pipe()s
|
||
this.awaitDrain = 0;
|
||
|
||
// if true, a maybeReadMore has been scheduled
|
||
this.readingMore = false;
|
||
|
||
this.decoder = null;
|
||
this.encoding = null;
|
||
if (options.encoding) {
|
||
if (!StringDecoder) StringDecoder = require('string_decoder/').StringDecoder;
|
||
this.decoder = new StringDecoder(options.encoding);
|
||
this.encoding = options.encoding;
|
||
}
|
||
}
|
||
|
||
function Readable(options) {
|
||
Duplex = Duplex || require('./_stream_duplex');
|
||
|
||
if (!(this instanceof Readable)) return new Readable(options);
|
||
|
||
this._readableState = new ReadableState(options, this);
|
||
|
||
// legacy
|
||
this.readable = true;
|
||
|
||
if (options) {
|
||
if (typeof options.read === 'function') this._read = options.read;
|
||
|
||
if (typeof options.destroy === 'function') this._destroy = options.destroy;
|
||
}
|
||
|
||
Stream.call(this);
|
||
}
|
||
|
||
Object.defineProperty(Readable.prototype, 'destroyed', {
|
||
get: function () {
|
||
if (this._readableState === undefined) {
|
||
return false;
|
||
}
|
||
return this._readableState.destroyed;
|
||
},
|
||
set: function (value) {
|
||
// we ignore the value if the stream
|
||
// has not been initialized yet
|
||
if (!this._readableState) {
|
||
return;
|
||
}
|
||
|
||
// backward compatibility, the user is explicitly
|
||
// managing destroyed
|
||
this._readableState.destroyed = value;
|
||
}
|
||
});
|
||
|
||
Readable.prototype.destroy = destroyImpl.destroy;
|
||
Readable.prototype._undestroy = destroyImpl.undestroy;
|
||
Readable.prototype._destroy = function (err, cb) {
|
||
this.push(null);
|
||
cb(err);
|
||
};
|
||
|
||
// Manually shove something into the read() buffer.
|
||
// This returns true if the highWaterMark has not been hit yet,
|
||
// similar to how Writable.write() returns true if you should
|
||
// write() some more.
|
||
Readable.prototype.push = function (chunk, encoding) {
|
||
var state = this._readableState;
|
||
var skipChunkCheck;
|
||
|
||
if (!state.objectMode) {
|
||
if (typeof chunk === 'string') {
|
||
encoding = encoding || state.defaultEncoding;
|
||
if (encoding !== state.encoding) {
|
||
chunk = Buffer.from(chunk, encoding);
|
||
encoding = '';
|
||
}
|
||
skipChunkCheck = true;
|
||
}
|
||
} else {
|
||
skipChunkCheck = true;
|
||
}
|
||
|
||
return readableAddChunk(this, chunk, encoding, false, skipChunkCheck);
|
||
};
|
||
|
||
// Unshift should *always* be something directly out of read()
|
||
Readable.prototype.unshift = function (chunk) {
|
||
return readableAddChunk(this, chunk, null, true, false);
|
||
};
|
||
|
||
function readableAddChunk(stream, chunk, encoding, addToFront, skipChunkCheck) {
|
||
var state = stream._readableState;
|
||
if (chunk === null) {
|
||
state.reading = false;
|
||
onEofChunk(stream, state);
|
||
} else {
|
||
var er;
|
||
if (!skipChunkCheck) er = chunkInvalid(state, chunk);
|
||
if (er) {
|
||
stream.emit('error', er);
|
||
} else if (state.objectMode || chunk && chunk.length > 0) {
|
||
if (typeof chunk !== 'string' && !state.objectMode && Object.getPrototypeOf(chunk) !== Buffer.prototype) {
|
||
chunk = _uint8ArrayToBuffer(chunk);
|
||
}
|
||
|
||
if (addToFront) {
|
||
if (state.endEmitted) stream.emit('error', new Error('stream.unshift() after end event'));else addChunk(stream, state, chunk, true);
|
||
} else if (state.ended) {
|
||
stream.emit('error', new Error('stream.push() after EOF'));
|
||
} else {
|
||
state.reading = false;
|
||
if (state.decoder && !encoding) {
|
||
chunk = state.decoder.write(chunk);
|
||
if (state.objectMode || chunk.length !== 0) addChunk(stream, state, chunk, false);else maybeReadMore(stream, state);
|
||
} else {
|
||
addChunk(stream, state, chunk, false);
|
||
}
|
||
}
|
||
} else if (!addToFront) {
|
||
state.reading = false;
|
||
}
|
||
}
|
||
|
||
return needMoreData(state);
|
||
}
|
||
|
||
function addChunk(stream, state, chunk, addToFront) {
|
||
if (state.flowing && state.length === 0 && !state.sync) {
|
||
stream.emit('data', chunk);
|
||
stream.read(0);
|
||
} else {
|
||
// update the buffer info.
|
||
state.length += state.objectMode ? 1 : chunk.length;
|
||
if (addToFront) state.buffer.unshift(chunk);else state.buffer.push(chunk);
|
||
|
||
if (state.needReadable) emitReadable(stream);
|
||
}
|
||
maybeReadMore(stream, state);
|
||
}
|
||
|
||
function chunkInvalid(state, chunk) {
|
||
var er;
|
||
if (!_isUint8Array(chunk) && typeof chunk !== 'string' && chunk !== undefined && !state.objectMode) {
|
||
er = new TypeError('Invalid non-string/buffer chunk');
|
||
}
|
||
return er;
|
||
}
|
||
|
||
// if it's past the high water mark, we can push in some more.
|
||
// Also, if we have no data yet, we can stand some
|
||
// more bytes. This is to work around cases where hwm=0,
|
||
// such as the repl. Also, if the push() triggered a
|
||
// readable event, and the user called read(largeNumber) such that
|
||
// needReadable was set, then we ought to push more, so that another
|
||
// 'readable' event will be triggered.
|
||
function needMoreData(state) {
|
||
return !state.ended && (state.needReadable || state.length < state.highWaterMark || state.length === 0);
|
||
}
|
||
|
||
Readable.prototype.isPaused = function () {
|
||
return this._readableState.flowing === false;
|
||
};
|
||
|
||
// backwards compatibility.
|
||
Readable.prototype.setEncoding = function (enc) {
|
||
if (!StringDecoder) StringDecoder = require('string_decoder/').StringDecoder;
|
||
this._readableState.decoder = new StringDecoder(enc);
|
||
this._readableState.encoding = enc;
|
||
return this;
|
||
};
|
||
|
||
// Don't raise the hwm > 8MB
|
||
var MAX_HWM = 0x800000;
|
||
function computeNewHighWaterMark(n) {
|
||
if (n >= MAX_HWM) {
|
||
n = MAX_HWM;
|
||
} else {
|
||
// Get the next highest power of 2 to prevent increasing hwm excessively in
|
||
// tiny amounts
|
||
n--;
|
||
n |= n >>> 1;
|
||
n |= n >>> 2;
|
||
n |= n >>> 4;
|
||
n |= n >>> 8;
|
||
n |= n >>> 16;
|
||
n++;
|
||
}
|
||
return n;
|
||
}
|
||
|
||
// This function is designed to be inlinable, so please take care when making
|
||
// changes to the function body.
|
||
function howMuchToRead(n, state) {
|
||
if (n <= 0 || state.length === 0 && state.ended) return 0;
|
||
if (state.objectMode) return 1;
|
||
if (n !== n) {
|
||
// Only flow one buffer at a time
|
||
if (state.flowing && state.length) return state.buffer.head.data.length;else return state.length;
|
||
}
|
||
// If we're asking for more than the current hwm, then raise the hwm.
|
||
if (n > state.highWaterMark) state.highWaterMark = computeNewHighWaterMark(n);
|
||
if (n <= state.length) return n;
|
||
// Don't have enough
|
||
if (!state.ended) {
|
||
state.needReadable = true;
|
||
return 0;
|
||
}
|
||
return state.length;
|
||
}
|
||
|
||
// you can override either this method, or the async _read(n) below.
|
||
Readable.prototype.read = function (n) {
|
||
debug('read', n);
|
||
n = parseInt(n, 10);
|
||
var state = this._readableState;
|
||
var nOrig = n;
|
||
|
||
if (n !== 0) state.emittedReadable = false;
|
||
|
||
// if we're doing read(0) to trigger a readable event, but we
|
||
// already have a bunch of data in the buffer, then just trigger
|
||
// the 'readable' event and move on.
|
||
if (n === 0 && state.needReadable && (state.length >= state.highWaterMark || state.ended)) {
|
||
debug('read: emitReadable', state.length, state.ended);
|
||
if (state.length === 0 && state.ended) endReadable(this);else emitReadable(this);
|
||
return null;
|
||
}
|
||
|
||
n = howMuchToRead(n, state);
|
||
|
||
// if we've ended, and we're now clear, then finish it up.
|
||
if (n === 0 && state.ended) {
|
||
if (state.length === 0) endReadable(this);
|
||
return null;
|
||
}
|
||
|
||
// All the actual chunk generation logic needs to be
|
||
// *below* the call to _read. The reason is that in certain
|
||
// synthetic stream cases, such as passthrough streams, _read
|
||
// may be a completely synchronous operation which may change
|
||
// the state of the read buffer, providing enough data when
|
||
// before there was *not* enough.
|
||
//
|
||
// So, the steps are:
|
||
// 1. Figure out what the state of things will be after we do
|
||
// a read from the buffer.
|
||
//
|
||
// 2. If that resulting state will trigger a _read, then call _read.
|
||
// Note that this may be asynchronous, or synchronous. Yes, it is
|
||
// deeply ugly to write APIs this way, but that still doesn't mean
|
||
// that the Readable class should behave improperly, as streams are
|
||
// designed to be sync/async agnostic.
|
||
// Take note if the _read call is sync or async (ie, if the read call
|
||
// has returned yet), so that we know whether or not it's safe to emit
|
||
// 'readable' etc.
|
||
//
|
||
// 3. Actually pull the requested chunks out of the buffer and return.
|
||
|
||
// if we need a readable event, then we need to do some reading.
|
||
var doRead = state.needReadable;
|
||
debug('need readable', doRead);
|
||
|
||
// if we currently have less than the highWaterMark, then also read some
|
||
if (state.length === 0 || state.length - n < state.highWaterMark) {
|
||
doRead = true;
|
||
debug('length less than watermark', doRead);
|
||
}
|
||
|
||
// however, if we've ended, then there's no point, and if we're already
|
||
// reading, then it's unnecessary.
|
||
if (state.ended || state.reading) {
|
||
doRead = false;
|
||
debug('reading or ended', doRead);
|
||
} else if (doRead) {
|
||
debug('do read');
|
||
state.reading = true;
|
||
state.sync = true;
|
||
// if the length is currently zero, then we *need* a readable event.
|
||
if (state.length === 0) state.needReadable = true;
|
||
// call internal read method
|
||
this._read(state.highWaterMark);
|
||
state.sync = false;
|
||
// If _read pushed data synchronously, then `reading` will be false,
|
||
// and we need to re-evaluate how much data we can return to the user.
|
||
if (!state.reading) n = howMuchToRead(nOrig, state);
|
||
}
|
||
|
||
var ret;
|
||
if (n > 0) ret = fromList(n, state);else ret = null;
|
||
|
||
if (ret === null) {
|
||
state.needReadable = true;
|
||
n = 0;
|
||
} else {
|
||
state.length -= n;
|
||
}
|
||
|
||
if (state.length === 0) {
|
||
// If we have nothing in the buffer, then we want to know
|
||
// as soon as we *do* get something into the buffer.
|
||
if (!state.ended) state.needReadable = true;
|
||
|
||
// If we tried to read() past the EOF, then emit end on the next tick.
|
||
if (nOrig !== n && state.ended) endReadable(this);
|
||
}
|
||
|
||
if (ret !== null) this.emit('data', ret);
|
||
|
||
return ret;
|
||
};
|
||
|
||
function onEofChunk(stream, state) {
|
||
if (state.ended) return;
|
||
if (state.decoder) {
|
||
var chunk = state.decoder.end();
|
||
if (chunk && chunk.length) {
|
||
state.buffer.push(chunk);
|
||
state.length += state.objectMode ? 1 : chunk.length;
|
||
}
|
||
}
|
||
state.ended = true;
|
||
|
||
// emit 'readable' now to make sure it gets picked up.
|
||
emitReadable(stream);
|
||
}
|
||
|
||
// Don't emit readable right away in sync mode, because this can trigger
|
||
// another read() call => stack overflow. This way, it might trigger
|
||
// a nextTick recursion warning, but that's not so bad.
|
||
function emitReadable(stream) {
|
||
var state = stream._readableState;
|
||
state.needReadable = false;
|
||
if (!state.emittedReadable) {
|
||
debug('emitReadable', state.flowing);
|
||
state.emittedReadable = true;
|
||
if (state.sync) pna.nextTick(emitReadable_, stream);else emitReadable_(stream);
|
||
}
|
||
}
|
||
|
||
function emitReadable_(stream) {
|
||
debug('emit readable');
|
||
stream.emit('readable');
|
||
flow(stream);
|
||
}
|
||
|
||
// at this point, the user has presumably seen the 'readable' event,
|
||
// and called read() to consume some data. that may have triggered
|
||
// in turn another _read(n) call, in which case reading = true if
|
||
// it's in progress.
|
||
// However, if we're not ended, or reading, and the length < hwm,
|
||
// then go ahead and try to read some more preemptively.
|
||
function maybeReadMore(stream, state) {
|
||
if (!state.readingMore) {
|
||
state.readingMore = true;
|
||
pna.nextTick(maybeReadMore_, stream, state);
|
||
}
|
||
}
|
||
|
||
function maybeReadMore_(stream, state) {
|
||
var len = state.length;
|
||
while (!state.reading && !state.flowing && !state.ended && state.length < state.highWaterMark) {
|
||
debug('maybeReadMore read 0');
|
||
stream.read(0);
|
||
if (len === state.length)
|
||
// didn't get any data, stop spinning.
|
||
break;else len = state.length;
|
||
}
|
||
state.readingMore = false;
|
||
}
|
||
|
||
// abstract method. to be overridden in specific implementation classes.
|
||
// call cb(er, data) where data is <= n in length.
|
||
// for virtual (non-string, non-buffer) streams, "length" is somewhat
|
||
// arbitrary, and perhaps not very meaningful.
|
||
Readable.prototype._read = function (n) {
|
||
this.emit('error', new Error('_read() is not implemented'));
|
||
};
|
||
|
||
Readable.prototype.pipe = function (dest, pipeOpts) {
|
||
var src = this;
|
||
var state = this._readableState;
|
||
|
||
switch (state.pipesCount) {
|
||
case 0:
|
||
state.pipes = dest;
|
||
break;
|
||
case 1:
|
||
state.pipes = [state.pipes, dest];
|
||
break;
|
||
default:
|
||
state.pipes.push(dest);
|
||
break;
|
||
}
|
||
state.pipesCount += 1;
|
||
debug('pipe count=%d opts=%j', state.pipesCount, pipeOpts);
|
||
|
||
var doEnd = (!pipeOpts || pipeOpts.end !== false) && dest !== process.stdout && dest !== process.stderr;
|
||
|
||
var endFn = doEnd ? onend : unpipe;
|
||
if (state.endEmitted) pna.nextTick(endFn);else src.once('end', endFn);
|
||
|
||
dest.on('unpipe', onunpipe);
|
||
function onunpipe(readable, unpipeInfo) {
|
||
debug('onunpipe');
|
||
if (readable === src) {
|
||
if (unpipeInfo && unpipeInfo.hasUnpiped === false) {
|
||
unpipeInfo.hasUnpiped = true;
|
||
cleanup();
|
||
}
|
||
}
|
||
}
|
||
|
||
function onend() {
|
||
debug('onend');
|
||
dest.end();
|
||
}
|
||
|
||
// when the dest drains, it reduces the awaitDrain counter
|
||
// on the source. This would be more elegant with a .once()
|
||
// handler in flow(), but adding and removing repeatedly is
|
||
// too slow.
|
||
var ondrain = pipeOnDrain(src);
|
||
dest.on('drain', ondrain);
|
||
|
||
var cleanedUp = false;
|
||
function cleanup() {
|
||
debug('cleanup');
|
||
// cleanup event handlers once the pipe is broken
|
||
dest.removeListener('close', onclose);
|
||
dest.removeListener('finish', onfinish);
|
||
dest.removeListener('drain', ondrain);
|
||
dest.removeListener('error', onerror);
|
||
dest.removeListener('unpipe', onunpipe);
|
||
src.removeListener('end', onend);
|
||
src.removeListener('end', unpipe);
|
||
src.removeListener('data', ondata);
|
||
|
||
cleanedUp = true;
|
||
|
||
// if the reader is waiting for a drain event from this
|
||
// specific writer, then it would cause it to never start
|
||
// flowing again.
|
||
// So, if this is awaiting a drain, then we just call it now.
|
||
// If we don't know, then assume that we are waiting for one.
|
||
if (state.awaitDrain && (!dest._writableState || dest._writableState.needDrain)) ondrain();
|
||
}
|
||
|
||
// If the user pushes more data while we're writing to dest then we'll end up
|
||
// in ondata again. However, we only want to increase awaitDrain once because
|
||
// dest will only emit one 'drain' event for the multiple writes.
|
||
// => Introduce a guard on increasing awaitDrain.
|
||
var increasedAwaitDrain = false;
|
||
src.on('data', ondata);
|
||
function ondata(chunk) {
|
||
debug('ondata');
|
||
increasedAwaitDrain = false;
|
||
var ret = dest.write(chunk);
|
||
if (false === ret && !increasedAwaitDrain) {
|
||
// If the user unpiped during `dest.write()`, it is possible
|
||
// to get stuck in a permanently paused state if that write
|
||
// also returned false.
|
||
// => Check whether `dest` is still a piping destination.
|
||
if ((state.pipesCount === 1 && state.pipes === dest || state.pipesCount > 1 && indexOf(state.pipes, dest) !== -1) && !cleanedUp) {
|
||
debug('false write response, pause', state.awaitDrain);
|
||
state.awaitDrain++;
|
||
increasedAwaitDrain = true;
|
||
}
|
||
src.pause();
|
||
}
|
||
}
|
||
|
||
// if the dest has an error, then stop piping into it.
|
||
// however, don't suppress the throwing behavior for this.
|
||
function onerror(er) {
|
||
debug('onerror', er);
|
||
unpipe();
|
||
dest.removeListener('error', onerror);
|
||
if (EElistenerCount(dest, 'error') === 0) dest.emit('error', er);
|
||
}
|
||
|
||
// Make sure our error handler is attached before userland ones.
|
||
prependListener(dest, 'error', onerror);
|
||
|
||
// Both close and finish should trigger unpipe, but only once.
|
||
function onclose() {
|
||
dest.removeListener('finish', onfinish);
|
||
unpipe();
|
||
}
|
||
dest.once('close', onclose);
|
||
function onfinish() {
|
||
debug('onfinish');
|
||
dest.removeListener('close', onclose);
|
||
unpipe();
|
||
}
|
||
dest.once('finish', onfinish);
|
||
|
||
function unpipe() {
|
||
debug('unpipe');
|
||
src.unpipe(dest);
|
||
}
|
||
|
||
// tell the dest that it's being piped to
|
||
dest.emit('pipe', src);
|
||
|
||
// start the flow if it hasn't been started already.
|
||
if (!state.flowing) {
|
||
debug('pipe resume');
|
||
src.resume();
|
||
}
|
||
|
||
return dest;
|
||
};
|
||
|
||
function pipeOnDrain(src) {
|
||
return function () {
|
||
var state = src._readableState;
|
||
debug('pipeOnDrain', state.awaitDrain);
|
||
if (state.awaitDrain) state.awaitDrain--;
|
||
if (state.awaitDrain === 0 && EElistenerCount(src, 'data')) {
|
||
state.flowing = true;
|
||
flow(src);
|
||
}
|
||
};
|
||
}
|
||
|
||
Readable.prototype.unpipe = function (dest) {
|
||
var state = this._readableState;
|
||
var unpipeInfo = { hasUnpiped: false };
|
||
|
||
// if we're not piping anywhere, then do nothing.
|
||
if (state.pipesCount === 0) return this;
|
||
|
||
// just one destination. most common case.
|
||
if (state.pipesCount === 1) {
|
||
// passed in one, but it's not the right one.
|
||
if (dest && dest !== state.pipes) return this;
|
||
|
||
if (!dest) dest = state.pipes;
|
||
|
||
// got a match.
|
||
state.pipes = null;
|
||
state.pipesCount = 0;
|
||
state.flowing = false;
|
||
if (dest) dest.emit('unpipe', this, unpipeInfo);
|
||
return this;
|
||
}
|
||
|
||
// slow case. multiple pipe destinations.
|
||
|
||
if (!dest) {
|
||
// remove all.
|
||
var dests = state.pipes;
|
||
var len = state.pipesCount;
|
||
state.pipes = null;
|
||
state.pipesCount = 0;
|
||
state.flowing = false;
|
||
|
||
for (var i = 0; i < len; i++) {
|
||
dests[i].emit('unpipe', this, { hasUnpiped: false });
|
||
}return this;
|
||
}
|
||
|
||
// try to find the right one.
|
||
var index = indexOf(state.pipes, dest);
|
||
if (index === -1) return this;
|
||
|
||
state.pipes.splice(index, 1);
|
||
state.pipesCount -= 1;
|
||
if (state.pipesCount === 1) state.pipes = state.pipes[0];
|
||
|
||
dest.emit('unpipe', this, unpipeInfo);
|
||
|
||
return this;
|
||
};
|
||
|
||
// set up data events if they are asked for
|
||
// Ensure readable listeners eventually get something
|
||
Readable.prototype.on = function (ev, fn) {
|
||
var res = Stream.prototype.on.call(this, ev, fn);
|
||
|
||
if (ev === 'data') {
|
||
// Start flowing on next tick if stream isn't explicitly paused
|
||
if (this._readableState.flowing !== false) this.resume();
|
||
} else if (ev === 'readable') {
|
||
var state = this._readableState;
|
||
if (!state.endEmitted && !state.readableListening) {
|
||
state.readableListening = state.needReadable = true;
|
||
state.emittedReadable = false;
|
||
if (!state.reading) {
|
||
pna.nextTick(nReadingNextTick, this);
|
||
} else if (state.length) {
|
||
emitReadable(this);
|
||
}
|
||
}
|
||
}
|
||
|
||
return res;
|
||
};
|
||
Readable.prototype.addListener = Readable.prototype.on;
|
||
|
||
function nReadingNextTick(self) {
|
||
debug('readable nexttick read 0');
|
||
self.read(0);
|
||
}
|
||
|
||
// pause() and resume() are remnants of the legacy readable stream API
|
||
// If the user uses them, then switch into old mode.
|
||
Readable.prototype.resume = function () {
|
||
var state = this._readableState;
|
||
if (!state.flowing) {
|
||
debug('resume');
|
||
state.flowing = true;
|
||
resume(this, state);
|
||
}
|
||
return this;
|
||
};
|
||
|
||
function resume(stream, state) {
|
||
if (!state.resumeScheduled) {
|
||
state.resumeScheduled = true;
|
||
pna.nextTick(resume_, stream, state);
|
||
}
|
||
}
|
||
|
||
function resume_(stream, state) {
|
||
if (!state.reading) {
|
||
debug('resume read 0');
|
||
stream.read(0);
|
||
}
|
||
|
||
state.resumeScheduled = false;
|
||
state.awaitDrain = 0;
|
||
stream.emit('resume');
|
||
flow(stream);
|
||
if (state.flowing && !state.reading) stream.read(0);
|
||
}
|
||
|
||
Readable.prototype.pause = function () {
|
||
debug('call pause flowing=%j', this._readableState.flowing);
|
||
if (false !== this._readableState.flowing) {
|
||
debug('pause');
|
||
this._readableState.flowing = false;
|
||
this.emit('pause');
|
||
}
|
||
return this;
|
||
};
|
||
|
||
function flow(stream) {
|
||
var state = stream._readableState;
|
||
debug('flow', state.flowing);
|
||
while (state.flowing && stream.read() !== null) {}
|
||
}
|
||
|
||
// wrap an old-style stream as the async data source.
|
||
// This is *not* part of the readable stream interface.
|
||
// It is an ugly unfortunate mess of history.
|
||
Readable.prototype.wrap = function (stream) {
|
||
var _this = this;
|
||
|
||
var state = this._readableState;
|
||
var paused = false;
|
||
|
||
stream.on('end', function () {
|
||
debug('wrapped end');
|
||
if (state.decoder && !state.ended) {
|
||
var chunk = state.decoder.end();
|
||
if (chunk && chunk.length) _this.push(chunk);
|
||
}
|
||
|
||
_this.push(null);
|
||
});
|
||
|
||
stream.on('data', function (chunk) {
|
||
debug('wrapped data');
|
||
if (state.decoder) chunk = state.decoder.write(chunk);
|
||
|
||
// don't skip over falsy values in objectMode
|
||
if (state.objectMode && (chunk === null || chunk === undefined)) return;else if (!state.objectMode && (!chunk || !chunk.length)) return;
|
||
|
||
var ret = _this.push(chunk);
|
||
if (!ret) {
|
||
paused = true;
|
||
stream.pause();
|
||
}
|
||
});
|
||
|
||
// proxy all the other methods.
|
||
// important when wrapping filters and duplexes.
|
||
for (var i in stream) {
|
||
if (this[i] === undefined && typeof stream[i] === 'function') {
|
||
this[i] = function (method) {
|
||
return function () {
|
||
return stream[method].apply(stream, arguments);
|
||
};
|
||
}(i);
|
||
}
|
||
}
|
||
|
||
// proxy certain important events.
|
||
for (var n = 0; n < kProxyEvents.length; n++) {
|
||
stream.on(kProxyEvents[n], this.emit.bind(this, kProxyEvents[n]));
|
||
}
|
||
|
||
// when we try to consume some more bytes, simply unpause the
|
||
// underlying stream.
|
||
this._read = function (n) {
|
||
debug('wrapped _read', n);
|
||
if (paused) {
|
||
paused = false;
|
||
stream.resume();
|
||
}
|
||
};
|
||
|
||
return this;
|
||
};
|
||
|
||
Object.defineProperty(Readable.prototype, 'readableHighWaterMark', {
|
||
// making it explicit this property is not enumerable
|
||
// because otherwise some prototype manipulation in
|
||
// userland will fail
|
||
enumerable: false,
|
||
get: function () {
|
||
return this._readableState.highWaterMark;
|
||
}
|
||
});
|
||
|
||
// exposed for testing purposes only.
|
||
Readable._fromList = fromList;
|
||
|
||
// Pluck off n bytes from an array of buffers.
|
||
// Length is the combined lengths of all the buffers in the list.
|
||
// This function is designed to be inlinable, so please take care when making
|
||
// changes to the function body.
|
||
function fromList(n, state) {
|
||
// nothing buffered
|
||
if (state.length === 0) return null;
|
||
|
||
var ret;
|
||
if (state.objectMode) ret = state.buffer.shift();else if (!n || n >= state.length) {
|
||
// read it all, truncate the list
|
||
if (state.decoder) ret = state.buffer.join('');else if (state.buffer.length === 1) ret = state.buffer.head.data;else ret = state.buffer.concat(state.length);
|
||
state.buffer.clear();
|
||
} else {
|
||
// read part of list
|
||
ret = fromListPartial(n, state.buffer, state.decoder);
|
||
}
|
||
|
||
return ret;
|
||
}
|
||
|
||
// Extracts only enough buffered data to satisfy the amount requested.
|
||
// This function is designed to be inlinable, so please take care when making
|
||
// changes to the function body.
|
||
function fromListPartial(n, list, hasStrings) {
|
||
var ret;
|
||
if (n < list.head.data.length) {
|
||
// slice is the same for buffers and strings
|
||
ret = list.head.data.slice(0, n);
|
||
list.head.data = list.head.data.slice(n);
|
||
} else if (n === list.head.data.length) {
|
||
// first chunk is a perfect match
|
||
ret = list.shift();
|
||
} else {
|
||
// result spans more than one buffer
|
||
ret = hasStrings ? copyFromBufferString(n, list) : copyFromBuffer(n, list);
|
||
}
|
||
return ret;
|
||
}
|
||
|
||
// Copies a specified amount of characters from the list of buffered data
|
||
// chunks.
|
||
// This function is designed to be inlinable, so please take care when making
|
||
// changes to the function body.
|
||
function copyFromBufferString(n, list) {
|
||
var p = list.head;
|
||
var c = 1;
|
||
var ret = p.data;
|
||
n -= ret.length;
|
||
while (p = p.next) {
|
||
var str = p.data;
|
||
var nb = n > str.length ? str.length : n;
|
||
if (nb === str.length) ret += str;else ret += str.slice(0, n);
|
||
n -= nb;
|
||
if (n === 0) {
|
||
if (nb === str.length) {
|
||
++c;
|
||
if (p.next) list.head = p.next;else list.head = list.tail = null;
|
||
} else {
|
||
list.head = p;
|
||
p.data = str.slice(nb);
|
||
}
|
||
break;
|
||
}
|
||
++c;
|
||
}
|
||
list.length -= c;
|
||
return ret;
|
||
}
|
||
|
||
// Copies a specified amount of bytes from the list of buffered data chunks.
|
||
// This function is designed to be inlinable, so please take care when making
|
||
// changes to the function body.
|
||
function copyFromBuffer(n, list) {
|
||
var ret = Buffer.allocUnsafe(n);
|
||
var p = list.head;
|
||
var c = 1;
|
||
p.data.copy(ret);
|
||
n -= p.data.length;
|
||
while (p = p.next) {
|
||
var buf = p.data;
|
||
var nb = n > buf.length ? buf.length : n;
|
||
buf.copy(ret, ret.length - n, 0, nb);
|
||
n -= nb;
|
||
if (n === 0) {
|
||
if (nb === buf.length) {
|
||
++c;
|
||
if (p.next) list.head = p.next;else list.head = list.tail = null;
|
||
} else {
|
||
list.head = p;
|
||
p.data = buf.slice(nb);
|
||
}
|
||
break;
|
||
}
|
||
++c;
|
||
}
|
||
list.length -= c;
|
||
return ret;
|
||
}
|
||
|
||
function endReadable(stream) {
|
||
var state = stream._readableState;
|
||
|
||
// If we get here before consuming all the bytes, then that is a
|
||
// bug in node. Should never happen.
|
||
if (state.length > 0) throw new Error('"endReadable()" called on non-empty stream');
|
||
|
||
if (!state.endEmitted) {
|
||
state.ended = true;
|
||
pna.nextTick(endReadableNT, state, stream);
|
||
}
|
||
}
|
||
|
||
function endReadableNT(state, stream) {
|
||
// Check that we didn't get one last unshift.
|
||
if (!state.endEmitted && state.length === 0) {
|
||
state.endEmitted = true;
|
||
stream.readable = false;
|
||
stream.emit('end');
|
||
}
|
||
}
|
||
|
||
function indexOf(xs, x) {
|
||
for (var i = 0, l = xs.length; i < l; i++) {
|
||
if (xs[i] === x) return i;
|
||
}
|
||
return -1;
|
||
}
|
||
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
||
},{"./_stream_duplex":14,"./internal/streams/BufferList":19,"./internal/streams/destroy":20,"./internal/streams/stream":21,"_process":12,"core-util-is":4,"events":6,"inherits":8,"isarray":9,"process-nextick-args":11,"safe-buffer":26,"string_decoder/":30,"util":2}],17:[function(require,module,exports){
|
||
// Copyright Joyent, Inc. and other Node contributors.
|
||
//
|
||
// Permission is hereby granted, free of charge, to any person obtaining a
|
||
// copy of this software and associated documentation files (the
|
||
// "Software"), to deal in the Software without restriction, including
|
||
// without limitation the rights to use, copy, modify, merge, publish,
|
||
// distribute, sublicense, and/or sell copies of the Software, and to permit
|
||
// persons to whom the Software is furnished to do so, subject to the
|
||
// following conditions:
|
||
//
|
||
// The above copyright notice and this permission notice shall be included
|
||
// in all copies or substantial portions of the Software.
|
||
//
|
||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
||
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
||
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
||
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
||
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
||
// USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||
|
||
// a transform stream is a readable/writable stream where you do
|
||
// something with the data. Sometimes it's called a "filter",
|
||
// but that's not a great name for it, since that implies a thing where
|
||
// some bits pass through, and others are simply ignored. (That would
|
||
// be a valid example of a transform, of course.)
|
||
//
|
||
// While the output is causally related to the input, it's not a
|
||
// necessarily symmetric or synchronous transformation. For example,
|
||
// a zlib stream might take multiple plain-text writes(), and then
|
||
// emit a single compressed chunk some time in the future.
|
||
//
|
||
// Here's how this works:
|
||
//
|
||
// The Transform stream has all the aspects of the readable and writable
|
||
// stream classes. When you write(chunk), that calls _write(chunk,cb)
|
||
// internally, and returns false if there's a lot of pending writes
|
||
// buffered up. When you call read(), that calls _read(n) until
|
||
// there's enough pending readable data buffered up.
|
||
//
|
||
// In a transform stream, the written data is placed in a buffer. When
|
||
// _read(n) is called, it transforms the queued up data, calling the
|
||
// buffered _write cb's as it consumes chunks. If consuming a single
|
||
// written chunk would result in multiple output chunks, then the first
|
||
// outputted bit calls the readcb, and subsequent chunks just go into
|
||
// the read buffer, and will cause it to emit 'readable' if necessary.
|
||
//
|
||
// This way, back-pressure is actually determined by the reading side,
|
||
// since _read has to be called to start processing a new chunk. However,
|
||
// a pathological inflate type of transform can cause excessive buffering
|
||
// here. For example, imagine a stream where every byte of input is
|
||
// interpreted as an integer from 0-255, and then results in that many
|
||
// bytes of output. Writing the 4 bytes {ff,ff,ff,ff} would result in
|
||
// 1kb of data being output. In this case, you could write a very small
|
||
// amount of input, and end up with a very large amount of output. In
|
||
// such a pathological inflating mechanism, there'd be no way to tell
|
||
// the system to stop doing the transform. A single 4MB write could
|
||
// cause the system to run out of memory.
|
||
//
|
||
// However, even in such a pathological case, only a single written chunk
|
||
// would be consumed, and then the rest would wait (un-transformed) until
|
||
// the results of the previous transformed chunk were consumed.
|
||
|
||
'use strict';
|
||
|
||
module.exports = Transform;
|
||
|
||
var Duplex = require('./_stream_duplex');
|
||
|
||
/*<replacement>*/
|
||
var util = Object.create(require('core-util-is'));
|
||
util.inherits = require('inherits');
|
||
/*</replacement>*/
|
||
|
||
util.inherits(Transform, Duplex);
|
||
|
||
function afterTransform(er, data) {
|
||
var ts = this._transformState;
|
||
ts.transforming = false;
|
||
|
||
var cb = ts.writecb;
|
||
|
||
if (!cb) {
|
||
return this.emit('error', new Error('write callback called multiple times'));
|
||
}
|
||
|
||
ts.writechunk = null;
|
||
ts.writecb = null;
|
||
|
||
if (data != null) // single equals check for both `null` and `undefined`
|
||
this.push(data);
|
||
|
||
cb(er);
|
||
|
||
var rs = this._readableState;
|
||
rs.reading = false;
|
||
if (rs.needReadable || rs.length < rs.highWaterMark) {
|
||
this._read(rs.highWaterMark);
|
||
}
|
||
}
|
||
|
||
function Transform(options) {
|
||
if (!(this instanceof Transform)) return new Transform(options);
|
||
|
||
Duplex.call(this, options);
|
||
|
||
this._transformState = {
|
||
afterTransform: afterTransform.bind(this),
|
||
needTransform: false,
|
||
transforming: false,
|
||
writecb: null,
|
||
writechunk: null,
|
||
writeencoding: null
|
||
};
|
||
|
||
// start out asking for a readable event once data is transformed.
|
||
this._readableState.needReadable = true;
|
||
|
||
// we have implemented the _read method, and done the other things
|
||
// that Readable wants before the first _read call, so unset the
|
||
// sync guard flag.
|
||
this._readableState.sync = false;
|
||
|
||
if (options) {
|
||
if (typeof options.transform === 'function') this._transform = options.transform;
|
||
|
||
if (typeof options.flush === 'function') this._flush = options.flush;
|
||
}
|
||
|
||
// When the writable side finishes, then flush out anything remaining.
|
||
this.on('prefinish', prefinish);
|
||
}
|
||
|
||
function prefinish() {
|
||
var _this = this;
|
||
|
||
if (typeof this._flush === 'function') {
|
||
this._flush(function (er, data) {
|
||
done(_this, er, data);
|
||
});
|
||
} else {
|
||
done(this, null, null);
|
||
}
|
||
}
|
||
|
||
Transform.prototype.push = function (chunk, encoding) {
|
||
this._transformState.needTransform = false;
|
||
return Duplex.prototype.push.call(this, chunk, encoding);
|
||
};
|
||
|
||
// This is the part where you do stuff!
|
||
// override this function in implementation classes.
|
||
// 'chunk' is an input chunk.
|
||
//
|
||
// Call `push(newChunk)` to pass along transformed output
|
||
// to the readable side. You may call 'push' zero or more times.
|
||
//
|
||
// Call `cb(err)` when you are done with this chunk. If you pass
|
||
// an error, then that'll put the hurt on the whole operation. If you
|
||
// never call cb(), then you'll never get another chunk.
|
||
Transform.prototype._transform = function (chunk, encoding, cb) {
|
||
throw new Error('_transform() is not implemented');
|
||
};
|
||
|
||
Transform.prototype._write = function (chunk, encoding, cb) {
|
||
var ts = this._transformState;
|
||
ts.writecb = cb;
|
||
ts.writechunk = chunk;
|
||
ts.writeencoding = encoding;
|
||
if (!ts.transforming) {
|
||
var rs = this._readableState;
|
||
if (ts.needTransform || rs.needReadable || rs.length < rs.highWaterMark) this._read(rs.highWaterMark);
|
||
}
|
||
};
|
||
|
||
// Doesn't matter what the args are here.
|
||
// _transform does all the work.
|
||
// That we got here means that the readable side wants more data.
|
||
Transform.prototype._read = function (n) {
|
||
var ts = this._transformState;
|
||
|
||
if (ts.writechunk !== null && ts.writecb && !ts.transforming) {
|
||
ts.transforming = true;
|
||
this._transform(ts.writechunk, ts.writeencoding, ts.afterTransform);
|
||
} else {
|
||
// mark that we need a transform, so that any data that comes in
|
||
// will get processed, now that we've asked for it.
|
||
ts.needTransform = true;
|
||
}
|
||
};
|
||
|
||
Transform.prototype._destroy = function (err, cb) {
|
||
var _this2 = this;
|
||
|
||
Duplex.prototype._destroy.call(this, err, function (err2) {
|
||
cb(err2);
|
||
_this2.emit('close');
|
||
});
|
||
};
|
||
|
||
function done(stream, er, data) {
|
||
if (er) return stream.emit('error', er);
|
||
|
||
if (data != null) // single equals check for both `null` and `undefined`
|
||
stream.push(data);
|
||
|
||
// if there's nothing in the write buffer, then that means
|
||
// that nothing more will ever be provided
|
||
if (stream._writableState.length) throw new Error('Calling transform done when ws.length != 0');
|
||
|
||
if (stream._transformState.transforming) throw new Error('Calling transform done when still transforming');
|
||
|
||
return stream.push(null);
|
||
}
|
||
},{"./_stream_duplex":14,"core-util-is":4,"inherits":8}],18:[function(require,module,exports){
|
||
(function (process,global,setImmediate){(function (){
|
||
// Copyright Joyent, Inc. and other Node contributors.
|
||
//
|
||
// Permission is hereby granted, free of charge, to any person obtaining a
|
||
// copy of this software and associated documentation files (the
|
||
// "Software"), to deal in the Software without restriction, including
|
||
// without limitation the rights to use, copy, modify, merge, publish,
|
||
// distribute, sublicense, and/or sell copies of the Software, and to permit
|
||
// persons to whom the Software is furnished to do so, subject to the
|
||
// following conditions:
|
||
//
|
||
// The above copyright notice and this permission notice shall be included
|
||
// in all copies or substantial portions of the Software.
|
||
//
|
||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
||
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
||
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
||
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
||
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
||
// USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||
|
||
// A bit simpler than readable streams.
|
||
// Implement an async ._write(chunk, encoding, cb), and it'll handle all
|
||
// the drain event emission and buffering.
|
||
|
||
'use strict';
|
||
|
||
/*<replacement>*/
|
||
|
||
var pna = require('process-nextick-args');
|
||
/*</replacement>*/
|
||
|
||
module.exports = Writable;
|
||
|
||
/* <replacement> */
|
||
function WriteReq(chunk, encoding, cb) {
|
||
this.chunk = chunk;
|
||
this.encoding = encoding;
|
||
this.callback = cb;
|
||
this.next = null;
|
||
}
|
||
|
||
// It seems a linked list but it is not
|
||
// there will be only 2 of these for each stream
|
||
function CorkedRequest(state) {
|
||
var _this = this;
|
||
|
||
this.next = null;
|
||
this.entry = null;
|
||
this.finish = function () {
|
||
onCorkedFinish(_this, state);
|
||
};
|
||
}
|
||
/* </replacement> */
|
||
|
||
/*<replacement>*/
|
||
var asyncWrite = !process.browser && ['v0.10', 'v0.9.'].indexOf(process.version.slice(0, 5)) > -1 ? setImmediate : pna.nextTick;
|
||
/*</replacement>*/
|
||
|
||
/*<replacement>*/
|
||
var Duplex;
|
||
/*</replacement>*/
|
||
|
||
Writable.WritableState = WritableState;
|
||
|
||
/*<replacement>*/
|
||
var util = Object.create(require('core-util-is'));
|
||
util.inherits = require('inherits');
|
||
/*</replacement>*/
|
||
|
||
/*<replacement>*/
|
||
var internalUtil = {
|
||
deprecate: require('util-deprecate')
|
||
};
|
||
/*</replacement>*/
|
||
|
||
/*<replacement>*/
|
||
var Stream = require('./internal/streams/stream');
|
||
/*</replacement>*/
|
||
|
||
/*<replacement>*/
|
||
|
||
var Buffer = require('safe-buffer').Buffer;
|
||
var OurUint8Array = (typeof global !== 'undefined' ? global : typeof window !== 'undefined' ? window : typeof self !== 'undefined' ? self : {}).Uint8Array || function () {};
|
||
function _uint8ArrayToBuffer(chunk) {
|
||
return Buffer.from(chunk);
|
||
}
|
||
function _isUint8Array(obj) {
|
||
return Buffer.isBuffer(obj) || obj instanceof OurUint8Array;
|
||
}
|
||
|
||
/*</replacement>*/
|
||
|
||
var destroyImpl = require('./internal/streams/destroy');
|
||
|
||
util.inherits(Writable, Stream);
|
||
|
||
function nop() {}
|
||
|
||
function WritableState(options, stream) {
|
||
Duplex = Duplex || require('./_stream_duplex');
|
||
|
||
options = options || {};
|
||
|
||
// Duplex streams are both readable and writable, but share
|
||
// the same options object.
|
||
// However, some cases require setting options to different
|
||
// values for the readable and the writable sides of the duplex stream.
|
||
// These options can be provided separately as readableXXX and writableXXX.
|
||
var isDuplex = stream instanceof Duplex;
|
||
|
||
// object stream flag to indicate whether or not this stream
|
||
// contains buffers or objects.
|
||
this.objectMode = !!options.objectMode;
|
||
|
||
if (isDuplex) this.objectMode = this.objectMode || !!options.writableObjectMode;
|
||
|
||
// the point at which write() starts returning false
|
||
// Note: 0 is a valid value, means that we always return false if
|
||
// the entire buffer is not flushed immediately on write()
|
||
var hwm = options.highWaterMark;
|
||
var writableHwm = options.writableHighWaterMark;
|
||
var defaultHwm = this.objectMode ? 16 : 16 * 1024;
|
||
|
||
if (hwm || hwm === 0) this.highWaterMark = hwm;else if (isDuplex && (writableHwm || writableHwm === 0)) this.highWaterMark = writableHwm;else this.highWaterMark = defaultHwm;
|
||
|
||
// cast to ints.
|
||
this.highWaterMark = Math.floor(this.highWaterMark);
|
||
|
||
// if _final has been called
|
||
this.finalCalled = false;
|
||
|
||
// drain event flag.
|
||
this.needDrain = false;
|
||
// at the start of calling end()
|
||
this.ending = false;
|
||
// when end() has been called, and returned
|
||
this.ended = false;
|
||
// when 'finish' is emitted
|
||
this.finished = false;
|
||
|
||
// has it been destroyed
|
||
this.destroyed = false;
|
||
|
||
// should we decode strings into buffers before passing to _write?
|
||
// this is here so that some node-core streams can optimize string
|
||
// handling at a lower level.
|
||
var noDecode = options.decodeStrings === false;
|
||
this.decodeStrings = !noDecode;
|
||
|
||
// Crypto is kind of old and crusty. Historically, its default string
|
||
// encoding is 'binary' so we have to make this configurable.
|
||
// Everything else in the universe uses 'utf8', though.
|
||
this.defaultEncoding = options.defaultEncoding || 'utf8';
|
||
|
||
// not an actual buffer we keep track of, but a measurement
|
||
// of how much we're waiting to get pushed to some underlying
|
||
// socket or file.
|
||
this.length = 0;
|
||
|
||
// a flag to see when we're in the middle of a write.
|
||
this.writing = false;
|
||
|
||
// when true all writes will be buffered until .uncork() call
|
||
this.corked = 0;
|
||
|
||
// a flag to be able to tell if the onwrite cb is called immediately,
|
||
// or on a later tick. We set this to true at first, because any
|
||
// actions that shouldn't happen until "later" should generally also
|
||
// not happen before the first write call.
|
||
this.sync = true;
|
||
|
||
// a flag to know if we're processing previously buffered items, which
|
||
// may call the _write() callback in the same tick, so that we don't
|
||
// end up in an overlapped onwrite situation.
|
||
this.bufferProcessing = false;
|
||
|
||
// the callback that's passed to _write(chunk,cb)
|
||
this.onwrite = function (er) {
|
||
onwrite(stream, er);
|
||
};
|
||
|
||
// the callback that the user supplies to write(chunk,encoding,cb)
|
||
this.writecb = null;
|
||
|
||
// the amount that is being written when _write is called.
|
||
this.writelen = 0;
|
||
|
||
this.bufferedRequest = null;
|
||
this.lastBufferedRequest = null;
|
||
|
||
// number of pending user-supplied write callbacks
|
||
// this must be 0 before 'finish' can be emitted
|
||
this.pendingcb = 0;
|
||
|
||
// emit prefinish if the only thing we're waiting for is _write cbs
|
||
// This is relevant for synchronous Transform streams
|
||
this.prefinished = false;
|
||
|
||
// True if the error was already emitted and should not be thrown again
|
||
this.errorEmitted = false;
|
||
|
||
// count buffered requests
|
||
this.bufferedRequestCount = 0;
|
||
|
||
// allocate the first CorkedRequest, there is always
|
||
// one allocated and free to use, and we maintain at most two
|
||
this.corkedRequestsFree = new CorkedRequest(this);
|
||
}
|
||
|
||
WritableState.prototype.getBuffer = function getBuffer() {
|
||
var current = this.bufferedRequest;
|
||
var out = [];
|
||
while (current) {
|
||
out.push(current);
|
||
current = current.next;
|
||
}
|
||
return out;
|
||
};
|
||
|
||
(function () {
|
||
try {
|
||
Object.defineProperty(WritableState.prototype, 'buffer', {
|
||
get: internalUtil.deprecate(function () {
|
||
return this.getBuffer();
|
||
}, '_writableState.buffer is deprecated. Use _writableState.getBuffer ' + 'instead.', 'DEP0003')
|
||
});
|
||
} catch (_) {}
|
||
})();
|
||
|
||
// Test _writableState for inheritance to account for Duplex streams,
|
||
// whose prototype chain only points to Readable.
|
||
var realHasInstance;
|
||
if (typeof Symbol === 'function' && Symbol.hasInstance && typeof Function.prototype[Symbol.hasInstance] === 'function') {
|
||
realHasInstance = Function.prototype[Symbol.hasInstance];
|
||
Object.defineProperty(Writable, Symbol.hasInstance, {
|
||
value: function (object) {
|
||
if (realHasInstance.call(this, object)) return true;
|
||
if (this !== Writable) return false;
|
||
|
||
return object && object._writableState instanceof WritableState;
|
||
}
|
||
});
|
||
} else {
|
||
realHasInstance = function (object) {
|
||
return object instanceof this;
|
||
};
|
||
}
|
||
|
||
function Writable(options) {
|
||
Duplex = Duplex || require('./_stream_duplex');
|
||
|
||
// Writable ctor is applied to Duplexes, too.
|
||
// `realHasInstance` is necessary because using plain `instanceof`
|
||
// would return false, as no `_writableState` property is attached.
|
||
|
||
// Trying to use the custom `instanceof` for Writable here will also break the
|
||
// Node.js LazyTransform implementation, which has a non-trivial getter for
|
||
// `_writableState` that would lead to infinite recursion.
|
||
if (!realHasInstance.call(Writable, this) && !(this instanceof Duplex)) {
|
||
return new Writable(options);
|
||
}
|
||
|
||
this._writableState = new WritableState(options, this);
|
||
|
||
// legacy.
|
||
this.writable = true;
|
||
|
||
if (options) {
|
||
if (typeof options.write === 'function') this._write = options.write;
|
||
|
||
if (typeof options.writev === 'function') this._writev = options.writev;
|
||
|
||
if (typeof options.destroy === 'function') this._destroy = options.destroy;
|
||
|
||
if (typeof options.final === 'function') this._final = options.final;
|
||
}
|
||
|
||
Stream.call(this);
|
||
}
|
||
|
||
// Otherwise people can pipe Writable streams, which is just wrong.
|
||
Writable.prototype.pipe = function () {
|
||
this.emit('error', new Error('Cannot pipe, not readable'));
|
||
};
|
||
|
||
function writeAfterEnd(stream, cb) {
|
||
var er = new Error('write after end');
|
||
// TODO: defer error events consistently everywhere, not just the cb
|
||
stream.emit('error', er);
|
||
pna.nextTick(cb, er);
|
||
}
|
||
|
||
// Checks that a user-supplied chunk is valid, especially for the particular
|
||
// mode the stream is in. Currently this means that `null` is never accepted
|
||
// and undefined/non-string values are only allowed in object mode.
|
||
function validChunk(stream, state, chunk, cb) {
|
||
var valid = true;
|
||
var er = false;
|
||
|
||
if (chunk === null) {
|
||
er = new TypeError('May not write null values to stream');
|
||
} else if (typeof chunk !== 'string' && chunk !== undefined && !state.objectMode) {
|
||
er = new TypeError('Invalid non-string/buffer chunk');
|
||
}
|
||
if (er) {
|
||
stream.emit('error', er);
|
||
pna.nextTick(cb, er);
|
||
valid = false;
|
||
}
|
||
return valid;
|
||
}
|
||
|
||
Writable.prototype.write = function (chunk, encoding, cb) {
|
||
var state = this._writableState;
|
||
var ret = false;
|
||
var isBuf = !state.objectMode && _isUint8Array(chunk);
|
||
|
||
if (isBuf && !Buffer.isBuffer(chunk)) {
|
||
chunk = _uint8ArrayToBuffer(chunk);
|
||
}
|
||
|
||
if (typeof encoding === 'function') {
|
||
cb = encoding;
|
||
encoding = null;
|
||
}
|
||
|
||
if (isBuf) encoding = 'buffer';else if (!encoding) encoding = state.defaultEncoding;
|
||
|
||
if (typeof cb !== 'function') cb = nop;
|
||
|
||
if (state.ended) writeAfterEnd(this, cb);else if (isBuf || validChunk(this, state, chunk, cb)) {
|
||
state.pendingcb++;
|
||
ret = writeOrBuffer(this, state, isBuf, chunk, encoding, cb);
|
||
}
|
||
|
||
return ret;
|
||
};
|
||
|
||
Writable.prototype.cork = function () {
|
||
var state = this._writableState;
|
||
|
||
state.corked++;
|
||
};
|
||
|
||
Writable.prototype.uncork = function () {
|
||
var state = this._writableState;
|
||
|
||
if (state.corked) {
|
||
state.corked--;
|
||
|
||
if (!state.writing && !state.corked && !state.bufferProcessing && state.bufferedRequest) clearBuffer(this, state);
|
||
}
|
||
};
|
||
|
||
Writable.prototype.setDefaultEncoding = function setDefaultEncoding(encoding) {
|
||
// node::ParseEncoding() requires lower case.
|
||
if (typeof encoding === 'string') encoding = encoding.toLowerCase();
|
||
if (!(['hex', 'utf8', 'utf-8', 'ascii', 'binary', 'base64', 'ucs2', 'ucs-2', 'utf16le', 'utf-16le', 'raw'].indexOf((encoding + '').toLowerCase()) > -1)) throw new TypeError('Unknown encoding: ' + encoding);
|
||
this._writableState.defaultEncoding = encoding;
|
||
return this;
|
||
};
|
||
|
||
function decodeChunk(state, chunk, encoding) {
|
||
if (!state.objectMode && state.decodeStrings !== false && typeof chunk === 'string') {
|
||
chunk = Buffer.from(chunk, encoding);
|
||
}
|
||
return chunk;
|
||
}
|
||
|
||
Object.defineProperty(Writable.prototype, 'writableHighWaterMark', {
|
||
// making it explicit this property is not enumerable
|
||
// because otherwise some prototype manipulation in
|
||
// userland will fail
|
||
enumerable: false,
|
||
get: function () {
|
||
return this._writableState.highWaterMark;
|
||
}
|
||
});
|
||
|
||
// if we're already writing something, then just put this
|
||
// in the queue, and wait our turn. Otherwise, call _write
|
||
// If we return false, then we need a drain event, so set that flag.
|
||
function writeOrBuffer(stream, state, isBuf, chunk, encoding, cb) {
|
||
if (!isBuf) {
|
||
var newChunk = decodeChunk(state, chunk, encoding);
|
||
if (chunk !== newChunk) {
|
||
isBuf = true;
|
||
encoding = 'buffer';
|
||
chunk = newChunk;
|
||
}
|
||
}
|
||
var len = state.objectMode ? 1 : chunk.length;
|
||
|
||
state.length += len;
|
||
|
||
var ret = state.length < state.highWaterMark;
|
||
// we must ensure that previous needDrain will not be reset to false.
|
||
if (!ret) state.needDrain = true;
|
||
|
||
if (state.writing || state.corked) {
|
||
var last = state.lastBufferedRequest;
|
||
state.lastBufferedRequest = {
|
||
chunk: chunk,
|
||
encoding: encoding,
|
||
isBuf: isBuf,
|
||
callback: cb,
|
||
next: null
|
||
};
|
||
if (last) {
|
||
last.next = state.lastBufferedRequest;
|
||
} else {
|
||
state.bufferedRequest = state.lastBufferedRequest;
|
||
}
|
||
state.bufferedRequestCount += 1;
|
||
} else {
|
||
doWrite(stream, state, false, len, chunk, encoding, cb);
|
||
}
|
||
|
||
return ret;
|
||
}
|
||
|
||
function doWrite(stream, state, writev, len, chunk, encoding, cb) {
|
||
state.writelen = len;
|
||
state.writecb = cb;
|
||
state.writing = true;
|
||
state.sync = true;
|
||
if (writev) stream._writev(chunk, state.onwrite);else stream._write(chunk, encoding, state.onwrite);
|
||
state.sync = false;
|
||
}
|
||
|
||
function onwriteError(stream, state, sync, er, cb) {
|
||
--state.pendingcb;
|
||
|
||
if (sync) {
|
||
// defer the callback if we are being called synchronously
|
||
// to avoid piling up things on the stack
|
||
pna.nextTick(cb, er);
|
||
// this can emit finish, and it will always happen
|
||
// after error
|
||
pna.nextTick(finishMaybe, stream, state);
|
||
stream._writableState.errorEmitted = true;
|
||
stream.emit('error', er);
|
||
} else {
|
||
// the caller expect this to happen before if
|
||
// it is async
|
||
cb(er);
|
||
stream._writableState.errorEmitted = true;
|
||
stream.emit('error', er);
|
||
// this can emit finish, but finish must
|
||
// always follow error
|
||
finishMaybe(stream, state);
|
||
}
|
||
}
|
||
|
||
function onwriteStateUpdate(state) {
|
||
state.writing = false;
|
||
state.writecb = null;
|
||
state.length -= state.writelen;
|
||
state.writelen = 0;
|
||
}
|
||
|
||
function onwrite(stream, er) {
|
||
var state = stream._writableState;
|
||
var sync = state.sync;
|
||
var cb = state.writecb;
|
||
|
||
onwriteStateUpdate(state);
|
||
|
||
if (er) onwriteError(stream, state, sync, er, cb);else {
|
||
// Check if we're actually ready to finish, but don't emit yet
|
||
var finished = needFinish(state);
|
||
|
||
if (!finished && !state.corked && !state.bufferProcessing && state.bufferedRequest) {
|
||
clearBuffer(stream, state);
|
||
}
|
||
|
||
if (sync) {
|
||
/*<replacement>*/
|
||
asyncWrite(afterWrite, stream, state, finished, cb);
|
||
/*</replacement>*/
|
||
} else {
|
||
afterWrite(stream, state, finished, cb);
|
||
}
|
||
}
|
||
}
|
||
|
||
function afterWrite(stream, state, finished, cb) {
|
||
if (!finished) onwriteDrain(stream, state);
|
||
state.pendingcb--;
|
||
cb();
|
||
finishMaybe(stream, state);
|
||
}
|
||
|
||
// Must force callback to be called on nextTick, so that we don't
|
||
// emit 'drain' before the write() consumer gets the 'false' return
|
||
// value, and has a chance to attach a 'drain' listener.
|
||
function onwriteDrain(stream, state) {
|
||
if (state.length === 0 && state.needDrain) {
|
||
state.needDrain = false;
|
||
stream.emit('drain');
|
||
}
|
||
}
|
||
|
||
// if there's something in the buffer waiting, then process it
|
||
function clearBuffer(stream, state) {
|
||
state.bufferProcessing = true;
|
||
var entry = state.bufferedRequest;
|
||
|
||
if (stream._writev && entry && entry.next) {
|
||
// Fast case, write everything using _writev()
|
||
var l = state.bufferedRequestCount;
|
||
var buffer = new Array(l);
|
||
var holder = state.corkedRequestsFree;
|
||
holder.entry = entry;
|
||
|
||
var count = 0;
|
||
var allBuffers = true;
|
||
while (entry) {
|
||
buffer[count] = entry;
|
||
if (!entry.isBuf) allBuffers = false;
|
||
entry = entry.next;
|
||
count += 1;
|
||
}
|
||
buffer.allBuffers = allBuffers;
|
||
|
||
doWrite(stream, state, true, state.length, buffer, '', holder.finish);
|
||
|
||
// doWrite is almost always async, defer these to save a bit of time
|
||
// as the hot path ends with doWrite
|
||
state.pendingcb++;
|
||
state.lastBufferedRequest = null;
|
||
if (holder.next) {
|
||
state.corkedRequestsFree = holder.next;
|
||
holder.next = null;
|
||
} else {
|
||
state.corkedRequestsFree = new CorkedRequest(state);
|
||
}
|
||
state.bufferedRequestCount = 0;
|
||
} else {
|
||
// Slow case, write chunks one-by-one
|
||
while (entry) {
|
||
var chunk = entry.chunk;
|
||
var encoding = entry.encoding;
|
||
var cb = entry.callback;
|
||
var len = state.objectMode ? 1 : chunk.length;
|
||
|
||
doWrite(stream, state, false, len, chunk, encoding, cb);
|
||
entry = entry.next;
|
||
state.bufferedRequestCount--;
|
||
// if we didn't call the onwrite immediately, then
|
||
// it means that we need to wait until it does.
|
||
// also, that means that the chunk and cb are currently
|
||
// being processed, so move the buffer counter past them.
|
||
if (state.writing) {
|
||
break;
|
||
}
|
||
}
|
||
|
||
if (entry === null) state.lastBufferedRequest = null;
|
||
}
|
||
|
||
state.bufferedRequest = entry;
|
||
state.bufferProcessing = false;
|
||
}
|
||
|
||
Writable.prototype._write = function (chunk, encoding, cb) {
|
||
cb(new Error('_write() is not implemented'));
|
||
};
|
||
|
||
Writable.prototype._writev = null;
|
||
|
||
Writable.prototype.end = function (chunk, encoding, cb) {
|
||
var state = this._writableState;
|
||
|
||
if (typeof chunk === 'function') {
|
||
cb = chunk;
|
||
chunk = null;
|
||
encoding = null;
|
||
} else if (typeof encoding === 'function') {
|
||
cb = encoding;
|
||
encoding = null;
|
||
}
|
||
|
||
if (chunk !== null && chunk !== undefined) this.write(chunk, encoding);
|
||
|
||
// .end() fully uncorks
|
||
if (state.corked) {
|
||
state.corked = 1;
|
||
this.uncork();
|
||
}
|
||
|
||
// ignore unnecessary end() calls.
|
||
if (!state.ending) endWritable(this, state, cb);
|
||
};
|
||
|
||
function needFinish(state) {
|
||
return state.ending && state.length === 0 && state.bufferedRequest === null && !state.finished && !state.writing;
|
||
}
|
||
function callFinal(stream, state) {
|
||
stream._final(function (err) {
|
||
state.pendingcb--;
|
||
if (err) {
|
||
stream.emit('error', err);
|
||
}
|
||
state.prefinished = true;
|
||
stream.emit('prefinish');
|
||
finishMaybe(stream, state);
|
||
});
|
||
}
|
||
function prefinish(stream, state) {
|
||
if (!state.prefinished && !state.finalCalled) {
|
||
if (typeof stream._final === 'function') {
|
||
state.pendingcb++;
|
||
state.finalCalled = true;
|
||
pna.nextTick(callFinal, stream, state);
|
||
} else {
|
||
state.prefinished = true;
|
||
stream.emit('prefinish');
|
||
}
|
||
}
|
||
}
|
||
|
||
function finishMaybe(stream, state) {
|
||
var need = needFinish(state);
|
||
if (need) {
|
||
prefinish(stream, state);
|
||
if (state.pendingcb === 0) {
|
||
state.finished = true;
|
||
stream.emit('finish');
|
||
}
|
||
}
|
||
return need;
|
||
}
|
||
|
||
function endWritable(stream, state, cb) {
|
||
state.ending = true;
|
||
finishMaybe(stream, state);
|
||
if (cb) {
|
||
if (state.finished) pna.nextTick(cb);else stream.once('finish', cb);
|
||
}
|
||
state.ended = true;
|
||
stream.writable = false;
|
||
}
|
||
|
||
function onCorkedFinish(corkReq, state, err) {
|
||
var entry = corkReq.entry;
|
||
corkReq.entry = null;
|
||
while (entry) {
|
||
var cb = entry.callback;
|
||
state.pendingcb--;
|
||
cb(err);
|
||
entry = entry.next;
|
||
}
|
||
|
||
// reuse the free corkReq.
|
||
state.corkedRequestsFree.next = corkReq;
|
||
}
|
||
|
||
Object.defineProperty(Writable.prototype, 'destroyed', {
|
||
get: function () {
|
||
if (this._writableState === undefined) {
|
||
return false;
|
||
}
|
||
return this._writableState.destroyed;
|
||
},
|
||
set: function (value) {
|
||
// we ignore the value if the stream
|
||
// has not been initialized yet
|
||
if (!this._writableState) {
|
||
return;
|
||
}
|
||
|
||
// backward compatibility, the user is explicitly
|
||
// managing destroyed
|
||
this._writableState.destroyed = value;
|
||
}
|
||
});
|
||
|
||
Writable.prototype.destroy = destroyImpl.destroy;
|
||
Writable.prototype._undestroy = destroyImpl.undestroy;
|
||
Writable.prototype._destroy = function (err, cb) {
|
||
this.end();
|
||
cb(err);
|
||
};
|
||
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("timers").setImmediate)
|
||
},{"./_stream_duplex":14,"./internal/streams/destroy":20,"./internal/streams/stream":21,"_process":12,"core-util-is":4,"inherits":8,"process-nextick-args":11,"safe-buffer":26,"timers":31,"util-deprecate":32}],19:[function(require,module,exports){
|
||
'use strict';
|
||
|
||
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
||
|
||
var Buffer = require('safe-buffer').Buffer;
|
||
var util = require('util');
|
||
|
||
function copyBuffer(src, target, offset) {
|
||
src.copy(target, offset);
|
||
}
|
||
|
||
module.exports = function () {
|
||
function BufferList() {
|
||
_classCallCheck(this, BufferList);
|
||
|
||
this.head = null;
|
||
this.tail = null;
|
||
this.length = 0;
|
||
}
|
||
|
||
BufferList.prototype.push = function push(v) {
|
||
var entry = { data: v, next: null };
|
||
if (this.length > 0) this.tail.next = entry;else this.head = entry;
|
||
this.tail = entry;
|
||
++this.length;
|
||
};
|
||
|
||
BufferList.prototype.unshift = function unshift(v) {
|
||
var entry = { data: v, next: this.head };
|
||
if (this.length === 0) this.tail = entry;
|
||
this.head = entry;
|
||
++this.length;
|
||
};
|
||
|
||
BufferList.prototype.shift = function shift() {
|
||
if (this.length === 0) return;
|
||
var ret = this.head.data;
|
||
if (this.length === 1) this.head = this.tail = null;else this.head = this.head.next;
|
||
--this.length;
|
||
return ret;
|
||
};
|
||
|
||
BufferList.prototype.clear = function clear() {
|
||
this.head = this.tail = null;
|
||
this.length = 0;
|
||
};
|
||
|
||
BufferList.prototype.join = function join(s) {
|
||
if (this.length === 0) return '';
|
||
var p = this.head;
|
||
var ret = '' + p.data;
|
||
while (p = p.next) {
|
||
ret += s + p.data;
|
||
}return ret;
|
||
};
|
||
|
||
BufferList.prototype.concat = function concat(n) {
|
||
if (this.length === 0) return Buffer.alloc(0);
|
||
var ret = Buffer.allocUnsafe(n >>> 0);
|
||
var p = this.head;
|
||
var i = 0;
|
||
while (p) {
|
||
copyBuffer(p.data, ret, i);
|
||
i += p.data.length;
|
||
p = p.next;
|
||
}
|
||
return ret;
|
||
};
|
||
|
||
return BufferList;
|
||
}();
|
||
|
||
if (util && util.inspect && util.inspect.custom) {
|
||
module.exports.prototype[util.inspect.custom] = function () {
|
||
var obj = util.inspect({ length: this.length });
|
||
return this.constructor.name + ' ' + obj;
|
||
};
|
||
}
|
||
},{"safe-buffer":26,"util":2}],20:[function(require,module,exports){
|
||
'use strict';
|
||
|
||
/*<replacement>*/
|
||
|
||
var pna = require('process-nextick-args');
|
||
/*</replacement>*/
|
||
|
||
// undocumented cb() API, needed for core, not for public API
|
||
function destroy(err, cb) {
|
||
var _this = this;
|
||
|
||
var readableDestroyed = this._readableState && this._readableState.destroyed;
|
||
var writableDestroyed = this._writableState && this._writableState.destroyed;
|
||
|
||
if (readableDestroyed || writableDestroyed) {
|
||
if (cb) {
|
||
cb(err);
|
||
} else if (err) {
|
||
if (!this._writableState) {
|
||
pna.nextTick(emitErrorNT, this, err);
|
||
} else if (!this._writableState.errorEmitted) {
|
||
this._writableState.errorEmitted = true;
|
||
pna.nextTick(emitErrorNT, this, err);
|
||
}
|
||
}
|
||
|
||
return this;
|
||
}
|
||
|
||
// we set destroyed to true before firing error callbacks in order
|
||
// to make it re-entrance safe in case destroy() is called within callbacks
|
||
|
||
if (this._readableState) {
|
||
this._readableState.destroyed = true;
|
||
}
|
||
|
||
// if this is a duplex stream mark the writable part as destroyed as well
|
||
if (this._writableState) {
|
||
this._writableState.destroyed = true;
|
||
}
|
||
|
||
this._destroy(err || null, function (err) {
|
||
if (!cb && err) {
|
||
if (!_this._writableState) {
|
||
pna.nextTick(emitErrorNT, _this, err);
|
||
} else if (!_this._writableState.errorEmitted) {
|
||
_this._writableState.errorEmitted = true;
|
||
pna.nextTick(emitErrorNT, _this, err);
|
||
}
|
||
} else if (cb) {
|
||
cb(err);
|
||
}
|
||
});
|
||
|
||
return this;
|
||
}
|
||
|
||
function undestroy() {
|
||
if (this._readableState) {
|
||
this._readableState.destroyed = false;
|
||
this._readableState.reading = false;
|
||
this._readableState.ended = false;
|
||
this._readableState.endEmitted = false;
|
||
}
|
||
|
||
if (this._writableState) {
|
||
this._writableState.destroyed = false;
|
||
this._writableState.ended = false;
|
||
this._writableState.ending = false;
|
||
this._writableState.finalCalled = false;
|
||
this._writableState.prefinished = false;
|
||
this._writableState.finished = false;
|
||
this._writableState.errorEmitted = false;
|
||
}
|
||
}
|
||
|
||
function emitErrorNT(self, err) {
|
||
self.emit('error', err);
|
||
}
|
||
|
||
module.exports = {
|
||
destroy: destroy,
|
||
undestroy: undestroy
|
||
};
|
||
},{"process-nextick-args":11}],21:[function(require,module,exports){
|
||
module.exports = require('events').EventEmitter;
|
||
|
||
},{"events":6}],22:[function(require,module,exports){
|
||
module.exports = require('./readable').PassThrough
|
||
|
||
},{"./readable":23}],23:[function(require,module,exports){
|
||
exports = module.exports = require('./lib/_stream_readable.js');
|
||
exports.Stream = exports;
|
||
exports.Readable = exports;
|
||
exports.Writable = require('./lib/_stream_writable.js');
|
||
exports.Duplex = require('./lib/_stream_duplex.js');
|
||
exports.Transform = require('./lib/_stream_transform.js');
|
||
exports.PassThrough = require('./lib/_stream_passthrough.js');
|
||
|
||
},{"./lib/_stream_duplex.js":14,"./lib/_stream_passthrough.js":15,"./lib/_stream_readable.js":16,"./lib/_stream_transform.js":17,"./lib/_stream_writable.js":18}],24:[function(require,module,exports){
|
||
module.exports = require('./readable').Transform
|
||
|
||
},{"./readable":23}],25:[function(require,module,exports){
|
||
module.exports = require('./lib/_stream_writable.js');
|
||
|
||
},{"./lib/_stream_writable.js":18}],26:[function(require,module,exports){
|
||
/* eslint-disable node/no-deprecated-api */
|
||
var buffer = require('buffer')
|
||
var Buffer = buffer.Buffer
|
||
|
||
// alternative to using Object.keys for old browsers
|
||
function copyProps (src, dst) {
|
||
for (var key in src) {
|
||
dst[key] = src[key]
|
||
}
|
||
}
|
||
if (Buffer.from && Buffer.alloc && Buffer.allocUnsafe && Buffer.allocUnsafeSlow) {
|
||
module.exports = buffer
|
||
} else {
|
||
// Copy properties from require('buffer')
|
||
copyProps(buffer, exports)
|
||
exports.Buffer = SafeBuffer
|
||
}
|
||
|
||
function SafeBuffer (arg, encodingOrOffset, length) {
|
||
return Buffer(arg, encodingOrOffset, length)
|
||
}
|
||
|
||
// Copy static methods from Buffer
|
||
copyProps(Buffer, SafeBuffer)
|
||
|
||
SafeBuffer.from = function (arg, encodingOrOffset, length) {
|
||
if (typeof arg === 'number') {
|
||
throw new TypeError('Argument must not be a number')
|
||
}
|
||
return Buffer(arg, encodingOrOffset, length)
|
||
}
|
||
|
||
SafeBuffer.alloc = function (size, fill, encoding) {
|
||
if (typeof size !== 'number') {
|
||
throw new TypeError('Argument must be a number')
|
||
}
|
||
var buf = Buffer(size)
|
||
if (fill !== undefined) {
|
||
if (typeof encoding === 'string') {
|
||
buf.fill(fill, encoding)
|
||
} else {
|
||
buf.fill(fill)
|
||
}
|
||
} else {
|
||
buf.fill(0)
|
||
}
|
||
return buf
|
||
}
|
||
|
||
SafeBuffer.allocUnsafe = function (size) {
|
||
if (typeof size !== 'number') {
|
||
throw new TypeError('Argument must be a number')
|
||
}
|
||
return Buffer(size)
|
||
}
|
||
|
||
SafeBuffer.allocUnsafeSlow = function (size) {
|
||
if (typeof size !== 'number') {
|
||
throw new TypeError('Argument must be a number')
|
||
}
|
||
return buffer.SlowBuffer(size)
|
||
}
|
||
|
||
},{"buffer":3}],27:[function(require,module,exports){
|
||
(function (Buffer){(function (){
|
||
;(function (sax) { // wrapper for non-node envs
|
||
sax.parser = function (strict, opt) { return new SAXParser(strict, opt) }
|
||
sax.SAXParser = SAXParser
|
||
sax.SAXStream = SAXStream
|
||
sax.createStream = createStream
|
||
|
||
// When we pass the MAX_BUFFER_LENGTH position, start checking for buffer overruns.
|
||
// When we check, schedule the next check for MAX_BUFFER_LENGTH - (max(buffer lengths)),
|
||
// since that's the earliest that a buffer overrun could occur. This way, checks are
|
||
// as rare as required, but as often as necessary to ensure never crossing this bound.
|
||
// Furthermore, buffers are only tested at most once per write(), so passing a very
|
||
// large string into write() might have undesirable effects, but this is manageable by
|
||
// the caller, so it is assumed to be safe. Thus, a call to write() may, in the extreme
|
||
// edge case, result in creating at most one complete copy of the string passed in.
|
||
// Set to Infinity to have unlimited buffers.
|
||
sax.MAX_BUFFER_LENGTH = 64 * 1024
|
||
|
||
var buffers = [
|
||
'comment', 'sgmlDecl', 'textNode', 'tagName', 'doctype',
|
||
'procInstName', 'procInstBody', 'entity', 'attribName',
|
||
'attribValue', 'cdata', 'script'
|
||
]
|
||
|
||
sax.EVENTS = [
|
||
'text',
|
||
'processinginstruction',
|
||
'sgmldeclaration',
|
||
'doctype',
|
||
'comment',
|
||
'opentagstart',
|
||
'attribute',
|
||
'opentag',
|
||
'closetag',
|
||
'opencdata',
|
||
'cdata',
|
||
'closecdata',
|
||
'error',
|
||
'end',
|
||
'ready',
|
||
'script',
|
||
'opennamespace',
|
||
'closenamespace'
|
||
]
|
||
|
||
function SAXParser (strict, opt) {
|
||
if (!(this instanceof SAXParser)) {
|
||
return new SAXParser(strict, opt)
|
||
}
|
||
|
||
var parser = this
|
||
clearBuffers(parser)
|
||
parser.q = parser.c = ''
|
||
parser.bufferCheckPosition = sax.MAX_BUFFER_LENGTH
|
||
parser.opt = opt || {}
|
||
parser.opt.lowercase = parser.opt.lowercase || parser.opt.lowercasetags
|
||
parser.looseCase = parser.opt.lowercase ? 'toLowerCase' : 'toUpperCase'
|
||
parser.tags = []
|
||
parser.closed = parser.closedRoot = parser.sawRoot = false
|
||
parser.tag = parser.error = null
|
||
parser.strict = !!strict
|
||
parser.noscript = !!(strict || parser.opt.noscript)
|
||
parser.state = S.BEGIN
|
||
parser.strictEntities = parser.opt.strictEntities
|
||
parser.ENTITIES = parser.strictEntities ? Object.create(sax.XML_ENTITIES) : Object.create(sax.ENTITIES)
|
||
parser.attribList = []
|
||
|
||
// namespaces form a prototype chain.
|
||
// it always points at the current tag,
|
||
// which protos to its parent tag.
|
||
if (parser.opt.xmlns) {
|
||
parser.ns = Object.create(rootNS)
|
||
}
|
||
|
||
// disallow unquoted attribute values if not otherwise configured
|
||
// and strict mode is true
|
||
if (parser.opt.unquotedAttributeValues === undefined) {
|
||
parser.opt.unquotedAttributeValues = !strict;
|
||
}
|
||
|
||
// mostly just for error reporting
|
||
parser.trackPosition = parser.opt.position !== false
|
||
if (parser.trackPosition) {
|
||
parser.position = parser.line = parser.column = 0
|
||
}
|
||
emit(parser, 'onready')
|
||
}
|
||
|
||
if (!Object.create) {
|
||
Object.create = function (o) {
|
||
function F () {}
|
||
F.prototype = o
|
||
var newf = new F()
|
||
return newf
|
||
}
|
||
}
|
||
|
||
if (!Object.keys) {
|
||
Object.keys = function (o) {
|
||
var a = []
|
||
for (var i in o) if (o.hasOwnProperty(i)) a.push(i)
|
||
return a
|
||
}
|
||
}
|
||
|
||
function checkBufferLength (parser) {
|
||
var maxAllowed = Math.max(sax.MAX_BUFFER_LENGTH, 10)
|
||
var maxActual = 0
|
||
for (var i = 0, l = buffers.length; i < l; i++) {
|
||
var len = parser[buffers[i]].length
|
||
if (len > maxAllowed) {
|
||
// Text/cdata nodes can get big, and since they're buffered,
|
||
// we can get here under normal conditions.
|
||
// Avoid issues by emitting the text node now,
|
||
// so at least it won't get any bigger.
|
||
switch (buffers[i]) {
|
||
case 'textNode':
|
||
closeText(parser)
|
||
break
|
||
|
||
case 'cdata':
|
||
emitNode(parser, 'oncdata', parser.cdata)
|
||
parser.cdata = ''
|
||
break
|
||
|
||
case 'script':
|
||
emitNode(parser, 'onscript', parser.script)
|
||
parser.script = ''
|
||
break
|
||
|
||
default:
|
||
error(parser, 'Max buffer length exceeded: ' + buffers[i])
|
||
}
|
||
}
|
||
maxActual = Math.max(maxActual, len)
|
||
}
|
||
// schedule the next check for the earliest possible buffer overrun.
|
||
var m = sax.MAX_BUFFER_LENGTH - maxActual
|
||
parser.bufferCheckPosition = m + parser.position
|
||
}
|
||
|
||
function clearBuffers (parser) {
|
||
for (var i = 0, l = buffers.length; i < l; i++) {
|
||
parser[buffers[i]] = ''
|
||
}
|
||
}
|
||
|
||
function flushBuffers (parser) {
|
||
closeText(parser)
|
||
if (parser.cdata !== '') {
|
||
emitNode(parser, 'oncdata', parser.cdata)
|
||
parser.cdata = ''
|
||
}
|
||
if (parser.script !== '') {
|
||
emitNode(parser, 'onscript', parser.script)
|
||
parser.script = ''
|
||
}
|
||
}
|
||
|
||
SAXParser.prototype = {
|
||
end: function () { end(this) },
|
||
write: write,
|
||
resume: function () { this.error = null; return this },
|
||
close: function () { return this.write(null) },
|
||
flush: function () { flushBuffers(this) }
|
||
}
|
||
|
||
var Stream
|
||
try {
|
||
Stream = require('stream').Stream
|
||
} catch (ex) {
|
||
Stream = function () {}
|
||
}
|
||
if (!Stream) Stream = function () {}
|
||
|
||
var streamWraps = sax.EVENTS.filter(function (ev) {
|
||
return ev !== 'error' && ev !== 'end'
|
||
})
|
||
|
||
function createStream (strict, opt) {
|
||
return new SAXStream(strict, opt)
|
||
}
|
||
|
||
function SAXStream (strict, opt) {
|
||
if (!(this instanceof SAXStream)) {
|
||
return new SAXStream(strict, opt)
|
||
}
|
||
|
||
Stream.apply(this)
|
||
|
||
this._parser = new SAXParser(strict, opt)
|
||
this.writable = true
|
||
this.readable = true
|
||
|
||
var me = this
|
||
|
||
this._parser.onend = function () {
|
||
me.emit('end')
|
||
}
|
||
|
||
this._parser.onerror = function (er) {
|
||
me.emit('error', er)
|
||
|
||
// if didn't throw, then means error was handled.
|
||
// go ahead and clear error, so we can write again.
|
||
me._parser.error = null
|
||
}
|
||
|
||
this._decoder = null
|
||
|
||
streamWraps.forEach(function (ev) {
|
||
Object.defineProperty(me, 'on' + ev, {
|
||
get: function () {
|
||
return me._parser['on' + ev]
|
||
},
|
||
set: function (h) {
|
||
if (!h) {
|
||
me.removeAllListeners(ev)
|
||
me._parser['on' + ev] = h
|
||
return h
|
||
}
|
||
me.on(ev, h)
|
||
},
|
||
enumerable: true,
|
||
configurable: false
|
||
})
|
||
})
|
||
}
|
||
|
||
SAXStream.prototype = Object.create(Stream.prototype, {
|
||
constructor: {
|
||
value: SAXStream
|
||
}
|
||
})
|
||
|
||
SAXStream.prototype.write = function (data) {
|
||
if (typeof Buffer === 'function' &&
|
||
typeof Buffer.isBuffer === 'function' &&
|
||
Buffer.isBuffer(data)) {
|
||
if (!this._decoder) {
|
||
var SD = require('string_decoder').StringDecoder
|
||
this._decoder = new SD('utf8')
|
||
}
|
||
data = this._decoder.write(data)
|
||
}
|
||
|
||
this._parser.write(data.toString())
|
||
this.emit('data', data)
|
||
return true
|
||
}
|
||
|
||
SAXStream.prototype.end = function (chunk) {
|
||
if (chunk && chunk.length) {
|
||
this.write(chunk)
|
||
}
|
||
this._parser.end()
|
||
return true
|
||
}
|
||
|
||
SAXStream.prototype.on = function (ev, handler) {
|
||
var me = this
|
||
if (!me._parser['on' + ev] && streamWraps.indexOf(ev) !== -1) {
|
||
me._parser['on' + ev] = function () {
|
||
var args = arguments.length === 1 ? [arguments[0]] : Array.apply(null, arguments)
|
||
args.splice(0, 0, ev)
|
||
me.emit.apply(me, args)
|
||
}
|
||
}
|
||
|
||
return Stream.prototype.on.call(me, ev, handler)
|
||
}
|
||
|
||
// this really needs to be replaced with character classes.
|
||
// XML allows all manner of ridiculous numbers and digits.
|
||
var CDATA = '[CDATA['
|
||
var DOCTYPE = 'DOCTYPE'
|
||
var XML_NAMESPACE = 'http://www.w3.org/XML/1998/namespace'
|
||
var XMLNS_NAMESPACE = 'http://www.w3.org/2000/xmlns/'
|
||
var rootNS = { xml: XML_NAMESPACE, xmlns: XMLNS_NAMESPACE }
|
||
|
||
// http://www.w3.org/TR/REC-xml/#NT-NameStartChar
|
||
// This implementation works on strings, a single character at a time
|
||
// as such, it cannot ever support astral-plane characters (10000-EFFFF)
|
||
// without a significant breaking change to either this parser, or the
|
||
// JavaScript language. Implementation of an emoji-capable xml parser
|
||
// is left as an exercise for the reader.
|
||
var nameStart = /[:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]/
|
||
|
||
var nameBody = /[:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\u00B7\u0300-\u036F\u203F-\u2040.\d-]/
|
||
|
||
var entityStart = /[#:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]/
|
||
var entityBody = /[#:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\u00B7\u0300-\u036F\u203F-\u2040.\d-]/
|
||
|
||
function isWhitespace (c) {
|
||
return c === ' ' || c === '\n' || c === '\r' || c === '\t'
|
||
}
|
||
|
||
function isQuote (c) {
|
||
return c === '"' || c === '\''
|
||
}
|
||
|
||
function isAttribEnd (c) {
|
||
return c === '>' || isWhitespace(c)
|
||
}
|
||
|
||
function isMatch (regex, c) {
|
||
return regex.test(c)
|
||
}
|
||
|
||
function notMatch (regex, c) {
|
||
return !isMatch(regex, c)
|
||
}
|
||
|
||
var S = 0
|
||
sax.STATE = {
|
||
BEGIN: S++, // leading byte order mark or whitespace
|
||
BEGIN_WHITESPACE: S++, // leading whitespace
|
||
TEXT: S++, // general stuff
|
||
TEXT_ENTITY: S++, // & and such.
|
||
OPEN_WAKA: S++, // <
|
||
SGML_DECL: S++, // <!BLARG
|
||
SGML_DECL_QUOTED: S++, // <!BLARG foo "bar
|
||
DOCTYPE: S++, // <!DOCTYPE
|
||
DOCTYPE_QUOTED: S++, // <!DOCTYPE "//blah
|
||
DOCTYPE_DTD: S++, // <!DOCTYPE "//blah" [ ...
|
||
DOCTYPE_DTD_QUOTED: S++, // <!DOCTYPE "//blah" [ "foo
|
||
COMMENT_STARTING: S++, // <!-
|
||
COMMENT: S++, // <!--
|
||
COMMENT_ENDING: S++, // <!-- blah -
|
||
COMMENT_ENDED: S++, // <!-- blah --
|
||
CDATA: S++, // <![CDATA[ something
|
||
CDATA_ENDING: S++, // ]
|
||
CDATA_ENDING_2: S++, // ]]
|
||
PROC_INST: S++, // <?hi
|
||
PROC_INST_BODY: S++, // <?hi there
|
||
PROC_INST_ENDING: S++, // <?hi "there" ?
|
||
OPEN_TAG: S++, // <strong
|
||
OPEN_TAG_SLASH: S++, // <strong /
|
||
ATTRIB: S++, // <a
|
||
ATTRIB_NAME: S++, // <a foo
|
||
ATTRIB_NAME_SAW_WHITE: S++, // <a foo _
|
||
ATTRIB_VALUE: S++, // <a foo=
|
||
ATTRIB_VALUE_QUOTED: S++, // <a foo="bar
|
||
ATTRIB_VALUE_CLOSED: S++, // <a foo="bar"
|
||
ATTRIB_VALUE_UNQUOTED: S++, // <a foo=bar
|
||
ATTRIB_VALUE_ENTITY_Q: S++, // <foo bar="""
|
||
ATTRIB_VALUE_ENTITY_U: S++, // <foo bar="
|
||
CLOSE_TAG: S++, // </a
|
||
CLOSE_TAG_SAW_WHITE: S++, // </a >
|
||
SCRIPT: S++, // <script> ...
|
||
SCRIPT_ENDING: S++ // <script> ... <
|
||
}
|
||
|
||
sax.XML_ENTITIES = {
|
||
'amp': '&',
|
||
'gt': '>',
|
||
'lt': '<',
|
||
'quot': '"',
|
||
'apos': "'"
|
||
}
|
||
|
||
sax.ENTITIES = {
|
||
'amp': '&',
|
||
'gt': '>',
|
||
'lt': '<',
|
||
'quot': '"',
|
||
'apos': "'",
|
||
'AElig': 198,
|
||
'Aacute': 193,
|
||
'Acirc': 194,
|
||
'Agrave': 192,
|
||
'Aring': 197,
|
||
'Atilde': 195,
|
||
'Auml': 196,
|
||
'Ccedil': 199,
|
||
'ETH': 208,
|
||
'Eacute': 201,
|
||
'Ecirc': 202,
|
||
'Egrave': 200,
|
||
'Euml': 203,
|
||
'Iacute': 205,
|
||
'Icirc': 206,
|
||
'Igrave': 204,
|
||
'Iuml': 207,
|
||
'Ntilde': 209,
|
||
'Oacute': 211,
|
||
'Ocirc': 212,
|
||
'Ograve': 210,
|
||
'Oslash': 216,
|
||
'Otilde': 213,
|
||
'Ouml': 214,
|
||
'THORN': 222,
|
||
'Uacute': 218,
|
||
'Ucirc': 219,
|
||
'Ugrave': 217,
|
||
'Uuml': 220,
|
||
'Yacute': 221,
|
||
'aacute': 225,
|
||
'acirc': 226,
|
||
'aelig': 230,
|
||
'agrave': 224,
|
||
'aring': 229,
|
||
'atilde': 227,
|
||
'auml': 228,
|
||
'ccedil': 231,
|
||
'eacute': 233,
|
||
'ecirc': 234,
|
||
'egrave': 232,
|
||
'eth': 240,
|
||
'euml': 235,
|
||
'iacute': 237,
|
||
'icirc': 238,
|
||
'igrave': 236,
|
||
'iuml': 239,
|
||
'ntilde': 241,
|
||
'oacute': 243,
|
||
'ocirc': 244,
|
||
'ograve': 242,
|
||
'oslash': 248,
|
||
'otilde': 245,
|
||
'ouml': 246,
|
||
'szlig': 223,
|
||
'thorn': 254,
|
||
'uacute': 250,
|
||
'ucirc': 251,
|
||
'ugrave': 249,
|
||
'uuml': 252,
|
||
'yacute': 253,
|
||
'yuml': 255,
|
||
'copy': 169,
|
||
'reg': 174,
|
||
'nbsp': 160,
|
||
'iexcl': 161,
|
||
'cent': 162,
|
||
'pound': 163,
|
||
'curren': 164,
|
||
'yen': 165,
|
||
'brvbar': 166,
|
||
'sect': 167,
|
||
'uml': 168,
|
||
'ordf': 170,
|
||
'laquo': 171,
|
||
'not': 172,
|
||
'shy': 173,
|
||
'macr': 175,
|
||
'deg': 176,
|
||
'plusmn': 177,
|
||
'sup1': 185,
|
||
'sup2': 178,
|
||
'sup3': 179,
|
||
'acute': 180,
|
||
'micro': 181,
|
||
'para': 182,
|
||
'middot': 183,
|
||
'cedil': 184,
|
||
'ordm': 186,
|
||
'raquo': 187,
|
||
'frac14': 188,
|
||
'frac12': 189,
|
||
'frac34': 190,
|
||
'iquest': 191,
|
||
'times': 215,
|
||
'divide': 247,
|
||
'OElig': 338,
|
||
'oelig': 339,
|
||
'Scaron': 352,
|
||
'scaron': 353,
|
||
'Yuml': 376,
|
||
'fnof': 402,
|
||
'circ': 710,
|
||
'tilde': 732,
|
||
'Alpha': 913,
|
||
'Beta': 914,
|
||
'Gamma': 915,
|
||
'Delta': 916,
|
||
'Epsilon': 917,
|
||
'Zeta': 918,
|
||
'Eta': 919,
|
||
'Theta': 920,
|
||
'Iota': 921,
|
||
'Kappa': 922,
|
||
'Lambda': 923,
|
||
'Mu': 924,
|
||
'Nu': 925,
|
||
'Xi': 926,
|
||
'Omicron': 927,
|
||
'Pi': 928,
|
||
'Rho': 929,
|
||
'Sigma': 931,
|
||
'Tau': 932,
|
||
'Upsilon': 933,
|
||
'Phi': 934,
|
||
'Chi': 935,
|
||
'Psi': 936,
|
||
'Omega': 937,
|
||
'alpha': 945,
|
||
'beta': 946,
|
||
'gamma': 947,
|
||
'delta': 948,
|
||
'epsilon': 949,
|
||
'zeta': 950,
|
||
'eta': 951,
|
||
'theta': 952,
|
||
'iota': 953,
|
||
'kappa': 954,
|
||
'lambda': 955,
|
||
'mu': 956,
|
||
'nu': 957,
|
||
'xi': 958,
|
||
'omicron': 959,
|
||
'pi': 960,
|
||
'rho': 961,
|
||
'sigmaf': 962,
|
||
'sigma': 963,
|
||
'tau': 964,
|
||
'upsilon': 965,
|
||
'phi': 966,
|
||
'chi': 967,
|
||
'psi': 968,
|
||
'omega': 969,
|
||
'thetasym': 977,
|
||
'upsih': 978,
|
||
'piv': 982,
|
||
'ensp': 8194,
|
||
'emsp': 8195,
|
||
'thinsp': 8201,
|
||
'zwnj': 8204,
|
||
'zwj': 8205,
|
||
'lrm': 8206,
|
||
'rlm': 8207,
|
||
'ndash': 8211,
|
||
'mdash': 8212,
|
||
'lsquo': 8216,
|
||
'rsquo': 8217,
|
||
'sbquo': 8218,
|
||
'ldquo': 8220,
|
||
'rdquo': 8221,
|
||
'bdquo': 8222,
|
||
'dagger': 8224,
|
||
'Dagger': 8225,
|
||
'bull': 8226,
|
||
'hellip': 8230,
|
||
'permil': 8240,
|
||
'prime': 8242,
|
||
'Prime': 8243,
|
||
'lsaquo': 8249,
|
||
'rsaquo': 8250,
|
||
'oline': 8254,
|
||
'frasl': 8260,
|
||
'euro': 8364,
|
||
'image': 8465,
|
||
'weierp': 8472,
|
||
'real': 8476,
|
||
'trade': 8482,
|
||
'alefsym': 8501,
|
||
'larr': 8592,
|
||
'uarr': 8593,
|
||
'rarr': 8594,
|
||
'darr': 8595,
|
||
'harr': 8596,
|
||
'crarr': 8629,
|
||
'lArr': 8656,
|
||
'uArr': 8657,
|
||
'rArr': 8658,
|
||
'dArr': 8659,
|
||
'hArr': 8660,
|
||
'forall': 8704,
|
||
'part': 8706,
|
||
'exist': 8707,
|
||
'empty': 8709,
|
||
'nabla': 8711,
|
||
'isin': 8712,
|
||
'notin': 8713,
|
||
'ni': 8715,
|
||
'prod': 8719,
|
||
'sum': 8721,
|
||
'minus': 8722,
|
||
'lowast': 8727,
|
||
'radic': 8730,
|
||
'prop': 8733,
|
||
'infin': 8734,
|
||
'ang': 8736,
|
||
'and': 8743,
|
||
'or': 8744,
|
||
'cap': 8745,
|
||
'cup': 8746,
|
||
'int': 8747,
|
||
'there4': 8756,
|
||
'sim': 8764,
|
||
'cong': 8773,
|
||
'asymp': 8776,
|
||
'ne': 8800,
|
||
'equiv': 8801,
|
||
'le': 8804,
|
||
'ge': 8805,
|
||
'sub': 8834,
|
||
'sup': 8835,
|
||
'nsub': 8836,
|
||
'sube': 8838,
|
||
'supe': 8839,
|
||
'oplus': 8853,
|
||
'otimes': 8855,
|
||
'perp': 8869,
|
||
'sdot': 8901,
|
||
'lceil': 8968,
|
||
'rceil': 8969,
|
||
'lfloor': 8970,
|
||
'rfloor': 8971,
|
||
'lang': 9001,
|
||
'rang': 9002,
|
||
'loz': 9674,
|
||
'spades': 9824,
|
||
'clubs': 9827,
|
||
'hearts': 9829,
|
||
'diams': 9830
|
||
}
|
||
|
||
Object.keys(sax.ENTITIES).forEach(function (key) {
|
||
var e = sax.ENTITIES[key]
|
||
var s = typeof e === 'number' ? String.fromCharCode(e) : e
|
||
sax.ENTITIES[key] = s
|
||
})
|
||
|
||
for (var s in sax.STATE) {
|
||
sax.STATE[sax.STATE[s]] = s
|
||
}
|
||
|
||
// shorthand
|
||
S = sax.STATE
|
||
|
||
function emit (parser, event, data) {
|
||
parser[event] && parser[event](data)
|
||
}
|
||
|
||
function emitNode (parser, nodeType, data) {
|
||
if (parser.textNode) closeText(parser)
|
||
emit(parser, nodeType, data)
|
||
}
|
||
|
||
function closeText (parser) {
|
||
parser.textNode = textopts(parser.opt, parser.textNode)
|
||
if (parser.textNode) emit(parser, 'ontext', parser.textNode)
|
||
parser.textNode = ''
|
||
}
|
||
|
||
function textopts (opt, text) {
|
||
if (opt.trim) text = text.trim()
|
||
if (opt.normalize) text = text.replace(/\s+/g, ' ')
|
||
return text
|
||
}
|
||
|
||
function error (parser, er) {
|
||
closeText(parser)
|
||
if (parser.trackPosition) {
|
||
er += '\nLine: ' + parser.line +
|
||
'\nColumn: ' + parser.column +
|
||
'\nChar: ' + parser.c
|
||
}
|
||
er = new Error(er)
|
||
parser.error = er
|
||
emit(parser, 'onerror', er)
|
||
return parser
|
||
}
|
||
|
||
function end (parser) {
|
||
if (parser.sawRoot && !parser.closedRoot) strictFail(parser, 'Unclosed root tag')
|
||
if ((parser.state !== S.BEGIN) &&
|
||
(parser.state !== S.BEGIN_WHITESPACE) &&
|
||
(parser.state !== S.TEXT)) {
|
||
error(parser, 'Unexpected end')
|
||
}
|
||
closeText(parser)
|
||
parser.c = ''
|
||
parser.closed = true
|
||
emit(parser, 'onend')
|
||
SAXParser.call(parser, parser.strict, parser.opt)
|
||
return parser
|
||
}
|
||
|
||
function strictFail (parser, message) {
|
||
if (typeof parser !== 'object' || !(parser instanceof SAXParser)) {
|
||
throw new Error('bad call to strictFail')
|
||
}
|
||
if (parser.strict) {
|
||
error(parser, message)
|
||
}
|
||
}
|
||
|
||
function newTag (parser) {
|
||
if (!parser.strict) parser.tagName = parser.tagName[parser.looseCase]()
|
||
var parent = parser.tags[parser.tags.length - 1] || parser
|
||
var tag = parser.tag = { name: parser.tagName, attributes: {} }
|
||
|
||
// will be overridden if tag contails an xmlns="foo" or xmlns:foo="bar"
|
||
if (parser.opt.xmlns) {
|
||
tag.ns = parent.ns
|
||
}
|
||
parser.attribList.length = 0
|
||
emitNode(parser, 'onopentagstart', tag)
|
||
}
|
||
|
||
function qname (name, attribute) {
|
||
var i = name.indexOf(':')
|
||
var qualName = i < 0 ? [ '', name ] : name.split(':')
|
||
var prefix = qualName[0]
|
||
var local = qualName[1]
|
||
|
||
// <x "xmlns"="http://foo">
|
||
if (attribute && name === 'xmlns') {
|
||
prefix = 'xmlns'
|
||
local = ''
|
||
}
|
||
|
||
return { prefix: prefix, local: local }
|
||
}
|
||
|
||
function attrib (parser) {
|
||
if (!parser.strict) {
|
||
parser.attribName = parser.attribName[parser.looseCase]()
|
||
}
|
||
|
||
if (parser.attribList.indexOf(parser.attribName) !== -1 ||
|
||
parser.tag.attributes.hasOwnProperty(parser.attribName)) {
|
||
parser.attribName = parser.attribValue = ''
|
||
return
|
||
}
|
||
|
||
if (parser.opt.xmlns) {
|
||
var qn = qname(parser.attribName, true)
|
||
var prefix = qn.prefix
|
||
var local = qn.local
|
||
|
||
if (prefix === 'xmlns') {
|
||
// namespace binding attribute. push the binding into scope
|
||
if (local === 'xml' && parser.attribValue !== XML_NAMESPACE) {
|
||
strictFail(parser,
|
||
'xml: prefix must be bound to ' + XML_NAMESPACE + '\n' +
|
||
'Actual: ' + parser.attribValue)
|
||
} else if (local === 'xmlns' && parser.attribValue !== XMLNS_NAMESPACE) {
|
||
strictFail(parser,
|
||
'xmlns: prefix must be bound to ' + XMLNS_NAMESPACE + '\n' +
|
||
'Actual: ' + parser.attribValue)
|
||
} else {
|
||
var tag = parser.tag
|
||
var parent = parser.tags[parser.tags.length - 1] || parser
|
||
if (tag.ns === parent.ns) {
|
||
tag.ns = Object.create(parent.ns)
|
||
}
|
||
tag.ns[local] = parser.attribValue
|
||
}
|
||
}
|
||
|
||
// defer onattribute events until all attributes have been seen
|
||
// so any new bindings can take effect. preserve attribute order
|
||
// so deferred events can be emitted in document order
|
||
parser.attribList.push([parser.attribName, parser.attribValue])
|
||
} else {
|
||
// in non-xmlns mode, we can emit the event right away
|
||
parser.tag.attributes[parser.attribName] = parser.attribValue
|
||
emitNode(parser, 'onattribute', {
|
||
name: parser.attribName,
|
||
value: parser.attribValue
|
||
})
|
||
}
|
||
|
||
parser.attribName = parser.attribValue = ''
|
||
}
|
||
|
||
function openTag (parser, selfClosing) {
|
||
if (parser.opt.xmlns) {
|
||
// emit namespace binding events
|
||
var tag = parser.tag
|
||
|
||
// add namespace info to tag
|
||
var qn = qname(parser.tagName)
|
||
tag.prefix = qn.prefix
|
||
tag.local = qn.local
|
||
tag.uri = tag.ns[qn.prefix] || ''
|
||
|
||
if (tag.prefix && !tag.uri) {
|
||
strictFail(parser, 'Unbound namespace prefix: ' +
|
||
JSON.stringify(parser.tagName))
|
||
tag.uri = qn.prefix
|
||
}
|
||
|
||
var parent = parser.tags[parser.tags.length - 1] || parser
|
||
if (tag.ns && parent.ns !== tag.ns) {
|
||
Object.keys(tag.ns).forEach(function (p) {
|
||
emitNode(parser, 'onopennamespace', {
|
||
prefix: p,
|
||
uri: tag.ns[p]
|
||
})
|
||
})
|
||
}
|
||
|
||
// handle deferred onattribute events
|
||
// Note: do not apply default ns to attributes:
|
||
// http://www.w3.org/TR/REC-xml-names/#defaulting
|
||
for (var i = 0, l = parser.attribList.length; i < l; i++) {
|
||
var nv = parser.attribList[i]
|
||
var name = nv[0]
|
||
var value = nv[1]
|
||
var qualName = qname(name, true)
|
||
var prefix = qualName.prefix
|
||
var local = qualName.local
|
||
var uri = prefix === '' ? '' : (tag.ns[prefix] || '')
|
||
var a = {
|
||
name: name,
|
||
value: value,
|
||
prefix: prefix,
|
||
local: local,
|
||
uri: uri
|
||
}
|
||
|
||
// if there's any attributes with an undefined namespace,
|
||
// then fail on them now.
|
||
if (prefix && prefix !== 'xmlns' && !uri) {
|
||
strictFail(parser, 'Unbound namespace prefix: ' +
|
||
JSON.stringify(prefix))
|
||
a.uri = prefix
|
||
}
|
||
parser.tag.attributes[name] = a
|
||
emitNode(parser, 'onattribute', a)
|
||
}
|
||
parser.attribList.length = 0
|
||
}
|
||
|
||
parser.tag.isSelfClosing = !!selfClosing
|
||
|
||
// process the tag
|
||
parser.sawRoot = true
|
||
parser.tags.push(parser.tag)
|
||
emitNode(parser, 'onopentag', parser.tag)
|
||
if (!selfClosing) {
|
||
// special case for <script> in non-strict mode.
|
||
if (!parser.noscript && parser.tagName.toLowerCase() === 'script') {
|
||
parser.state = S.SCRIPT
|
||
} else {
|
||
parser.state = S.TEXT
|
||
}
|
||
parser.tag = null
|
||
parser.tagName = ''
|
||
}
|
||
parser.attribName = parser.attribValue = ''
|
||
parser.attribList.length = 0
|
||
}
|
||
|
||
function closeTag (parser) {
|
||
if (!parser.tagName) {
|
||
strictFail(parser, 'Weird empty close tag.')
|
||
parser.textNode += '</>'
|
||
parser.state = S.TEXT
|
||
return
|
||
}
|
||
|
||
if (parser.script) {
|
||
if (parser.tagName !== 'script') {
|
||
parser.script += '</' + parser.tagName + '>'
|
||
parser.tagName = ''
|
||
parser.state = S.SCRIPT
|
||
return
|
||
}
|
||
emitNode(parser, 'onscript', parser.script)
|
||
parser.script = ''
|
||
}
|
||
|
||
// first make sure that the closing tag actually exists.
|
||
// <a><b></c></b></a> will close everything, otherwise.
|
||
var t = parser.tags.length
|
||
var tagName = parser.tagName
|
||
if (!parser.strict) {
|
||
tagName = tagName[parser.looseCase]()
|
||
}
|
||
var closeTo = tagName
|
||
while (t--) {
|
||
var close = parser.tags[t]
|
||
if (close.name !== closeTo) {
|
||
// fail the first time in strict mode
|
||
strictFail(parser, 'Unexpected close tag')
|
||
} else {
|
||
break
|
||
}
|
||
}
|
||
|
||
// didn't find it. we already failed for strict, so just abort.
|
||
if (t < 0) {
|
||
strictFail(parser, 'Unmatched closing tag: ' + parser.tagName)
|
||
parser.textNode += '</' + parser.tagName + '>'
|
||
parser.state = S.TEXT
|
||
return
|
||
}
|
||
parser.tagName = tagName
|
||
var s = parser.tags.length
|
||
while (s-- > t) {
|
||
var tag = parser.tag = parser.tags.pop()
|
||
parser.tagName = parser.tag.name
|
||
emitNode(parser, 'onclosetag', parser.tagName)
|
||
|
||
var x = {}
|
||
for (var i in tag.ns) {
|
||
x[i] = tag.ns[i]
|
||
}
|
||
|
||
var parent = parser.tags[parser.tags.length - 1] || parser
|
||
if (parser.opt.xmlns && tag.ns !== parent.ns) {
|
||
// remove namespace bindings introduced by tag
|
||
Object.keys(tag.ns).forEach(function (p) {
|
||
var n = tag.ns[p]
|
||
emitNode(parser, 'onclosenamespace', { prefix: p, uri: n })
|
||
})
|
||
}
|
||
}
|
||
if (t === 0) parser.closedRoot = true
|
||
parser.tagName = parser.attribValue = parser.attribName = ''
|
||
parser.attribList.length = 0
|
||
parser.state = S.TEXT
|
||
}
|
||
|
||
function parseEntity (parser) {
|
||
var entity = parser.entity
|
||
var entityLC = entity.toLowerCase()
|
||
var num
|
||
var numStr = ''
|
||
|
||
if (parser.ENTITIES[entity]) {
|
||
return parser.ENTITIES[entity]
|
||
}
|
||
if (parser.ENTITIES[entityLC]) {
|
||
return parser.ENTITIES[entityLC]
|
||
}
|
||
entity = entityLC
|
||
if (entity.charAt(0) === '#') {
|
||
if (entity.charAt(1) === 'x') {
|
||
entity = entity.slice(2)
|
||
num = parseInt(entity, 16)
|
||
numStr = num.toString(16)
|
||
} else {
|
||
entity = entity.slice(1)
|
||
num = parseInt(entity, 10)
|
||
numStr = num.toString(10)
|
||
}
|
||
}
|
||
entity = entity.replace(/^0+/, '')
|
||
if (isNaN(num) || numStr.toLowerCase() !== entity) {
|
||
strictFail(parser, 'Invalid character entity')
|
||
return '&' + parser.entity + ';'
|
||
}
|
||
|
||
return String.fromCodePoint(num)
|
||
}
|
||
|
||
function beginWhiteSpace (parser, c) {
|
||
if (c === '<') {
|
||
parser.state = S.OPEN_WAKA
|
||
parser.startTagPosition = parser.position
|
||
} else if (!isWhitespace(c)) {
|
||
// have to process this as a text node.
|
||
// weird, but happens.
|
||
strictFail(parser, 'Non-whitespace before first tag.')
|
||
parser.textNode = c
|
||
parser.state = S.TEXT
|
||
}
|
||
}
|
||
|
||
function charAt (chunk, i) {
|
||
var result = ''
|
||
if (i < chunk.length) {
|
||
result = chunk.charAt(i)
|
||
}
|
||
return result
|
||
}
|
||
|
||
function write (chunk) {
|
||
var parser = this
|
||
if (this.error) {
|
||
throw this.error
|
||
}
|
||
if (parser.closed) {
|
||
return error(parser,
|
||
'Cannot write after close. Assign an onready handler.')
|
||
}
|
||
if (chunk === null) {
|
||
return end(parser)
|
||
}
|
||
if (typeof chunk === 'object') {
|
||
chunk = chunk.toString()
|
||
}
|
||
var i = 0
|
||
var c = ''
|
||
while (true) {
|
||
c = charAt(chunk, i++)
|
||
parser.c = c
|
||
|
||
if (!c) {
|
||
break
|
||
}
|
||
|
||
if (parser.trackPosition) {
|
||
parser.position++
|
||
if (c === '\n') {
|
||
parser.line++
|
||
parser.column = 0
|
||
} else {
|
||
parser.column++
|
||
}
|
||
}
|
||
|
||
switch (parser.state) {
|
||
case S.BEGIN:
|
||
parser.state = S.BEGIN_WHITESPACE
|
||
if (c === '\uFEFF') {
|
||
continue
|
||
}
|
||
beginWhiteSpace(parser, c)
|
||
continue
|
||
|
||
case S.BEGIN_WHITESPACE:
|
||
beginWhiteSpace(parser, c)
|
||
continue
|
||
|
||
case S.TEXT:
|
||
if (parser.sawRoot && !parser.closedRoot) {
|
||
var starti = i - 1
|
||
while (c && c !== '<' && c !== '&') {
|
||
c = charAt(chunk, i++)
|
||
if (c && parser.trackPosition) {
|
||
parser.position++
|
||
if (c === '\n') {
|
||
parser.line++
|
||
parser.column = 0
|
||
} else {
|
||
parser.column++
|
||
}
|
||
}
|
||
}
|
||
parser.textNode += chunk.substring(starti, i - 1)
|
||
}
|
||
if (c === '<' && !(parser.sawRoot && parser.closedRoot && !parser.strict)) {
|
||
parser.state = S.OPEN_WAKA
|
||
parser.startTagPosition = parser.position
|
||
} else {
|
||
if (!isWhitespace(c) && (!parser.sawRoot || parser.closedRoot)) {
|
||
strictFail(parser, 'Text data outside of root node.')
|
||
}
|
||
if (c === '&') {
|
||
parser.state = S.TEXT_ENTITY
|
||
} else {
|
||
parser.textNode += c
|
||
}
|
||
}
|
||
continue
|
||
|
||
case S.SCRIPT:
|
||
// only non-strict
|
||
if (c === '<') {
|
||
parser.state = S.SCRIPT_ENDING
|
||
} else {
|
||
parser.script += c
|
||
}
|
||
continue
|
||
|
||
case S.SCRIPT_ENDING:
|
||
if (c === '/') {
|
||
parser.state = S.CLOSE_TAG
|
||
} else {
|
||
parser.script += '<' + c
|
||
parser.state = S.SCRIPT
|
||
}
|
||
continue
|
||
|
||
case S.OPEN_WAKA:
|
||
// either a /, ?, !, or text is coming next.
|
||
if (c === '!') {
|
||
parser.state = S.SGML_DECL
|
||
parser.sgmlDecl = ''
|
||
} else if (isWhitespace(c)) {
|
||
// wait for it...
|
||
} else if (isMatch(nameStart, c)) {
|
||
parser.state = S.OPEN_TAG
|
||
parser.tagName = c
|
||
} else if (c === '/') {
|
||
parser.state = S.CLOSE_TAG
|
||
parser.tagName = ''
|
||
} else if (c === '?') {
|
||
parser.state = S.PROC_INST
|
||
parser.procInstName = parser.procInstBody = ''
|
||
} else {
|
||
strictFail(parser, 'Unencoded <')
|
||
// if there was some whitespace, then add that in.
|
||
if (parser.startTagPosition + 1 < parser.position) {
|
||
var pad = parser.position - parser.startTagPosition
|
||
c = new Array(pad).join(' ') + c
|
||
}
|
||
parser.textNode += '<' + c
|
||
parser.state = S.TEXT
|
||
}
|
||
continue
|
||
|
||
case S.SGML_DECL:
|
||
if (parser.sgmlDecl + c === '--') {
|
||
parser.state = S.COMMENT
|
||
parser.comment = ''
|
||
parser.sgmlDecl = ''
|
||
continue;
|
||
}
|
||
|
||
if (parser.doctype && parser.doctype !== true && parser.sgmlDecl) {
|
||
parser.state = S.DOCTYPE_DTD
|
||
parser.doctype += '<!' + parser.sgmlDecl + c
|
||
parser.sgmlDecl = ''
|
||
} else if ((parser.sgmlDecl + c).toUpperCase() === CDATA) {
|
||
emitNode(parser, 'onopencdata')
|
||
parser.state = S.CDATA
|
||
parser.sgmlDecl = ''
|
||
parser.cdata = ''
|
||
} else if ((parser.sgmlDecl + c).toUpperCase() === DOCTYPE) {
|
||
parser.state = S.DOCTYPE
|
||
if (parser.doctype || parser.sawRoot) {
|
||
strictFail(parser,
|
||
'Inappropriately located doctype declaration')
|
||
}
|
||
parser.doctype = ''
|
||
parser.sgmlDecl = ''
|
||
} else if (c === '>') {
|
||
emitNode(parser, 'onsgmldeclaration', parser.sgmlDecl)
|
||
parser.sgmlDecl = ''
|
||
parser.state = S.TEXT
|
||
} else if (isQuote(c)) {
|
||
parser.state = S.SGML_DECL_QUOTED
|
||
parser.sgmlDecl += c
|
||
} else {
|
||
parser.sgmlDecl += c
|
||
}
|
||
continue
|
||
|
||
case S.SGML_DECL_QUOTED:
|
||
if (c === parser.q) {
|
||
parser.state = S.SGML_DECL
|
||
parser.q = ''
|
||
}
|
||
parser.sgmlDecl += c
|
||
continue
|
||
|
||
case S.DOCTYPE:
|
||
if (c === '>') {
|
||
parser.state = S.TEXT
|
||
emitNode(parser, 'ondoctype', parser.doctype)
|
||
parser.doctype = true // just remember that we saw it.
|
||
} else {
|
||
parser.doctype += c
|
||
if (c === '[') {
|
||
parser.state = S.DOCTYPE_DTD
|
||
} else if (isQuote(c)) {
|
||
parser.state = S.DOCTYPE_QUOTED
|
||
parser.q = c
|
||
}
|
||
}
|
||
continue
|
||
|
||
case S.DOCTYPE_QUOTED:
|
||
parser.doctype += c
|
||
if (c === parser.q) {
|
||
parser.q = ''
|
||
parser.state = S.DOCTYPE
|
||
}
|
||
continue
|
||
|
||
case S.DOCTYPE_DTD:
|
||
if (c === ']') {
|
||
parser.doctype += c
|
||
parser.state = S.DOCTYPE
|
||
} else if (c === '<') {
|
||
parser.state = S.OPEN_WAKA
|
||
parser.startTagPosition = parser.position
|
||
} else if (isQuote(c)) {
|
||
parser.doctype += c
|
||
parser.state = S.DOCTYPE_DTD_QUOTED
|
||
parser.q = c
|
||
} else {
|
||
parser.doctype += c
|
||
}
|
||
continue
|
||
|
||
case S.DOCTYPE_DTD_QUOTED:
|
||
parser.doctype += c
|
||
if (c === parser.q) {
|
||
parser.state = S.DOCTYPE_DTD
|
||
parser.q = ''
|
||
}
|
||
continue
|
||
|
||
case S.COMMENT:
|
||
if (c === '-') {
|
||
parser.state = S.COMMENT_ENDING
|
||
} else {
|
||
parser.comment += c
|
||
}
|
||
continue
|
||
|
||
case S.COMMENT_ENDING:
|
||
if (c === '-') {
|
||
parser.state = S.COMMENT_ENDED
|
||
parser.comment = textopts(parser.opt, parser.comment)
|
||
if (parser.comment) {
|
||
emitNode(parser, 'oncomment', parser.comment)
|
||
}
|
||
parser.comment = ''
|
||
} else {
|
||
parser.comment += '-' + c
|
||
parser.state = S.COMMENT
|
||
}
|
||
continue
|
||
|
||
case S.COMMENT_ENDED:
|
||
if (c !== '>') {
|
||
strictFail(parser, 'Malformed comment')
|
||
// allow <!-- blah -- bloo --> in non-strict mode,
|
||
// which is a comment of " blah -- bloo "
|
||
parser.comment += '--' + c
|
||
parser.state = S.COMMENT
|
||
} else if (parser.doctype && parser.doctype !== true) {
|
||
parser.state = S.DOCTYPE_DTD
|
||
} else {
|
||
parser.state = S.TEXT
|
||
}
|
||
continue
|
||
|
||
case S.CDATA:
|
||
if (c === ']') {
|
||
parser.state = S.CDATA_ENDING
|
||
} else {
|
||
parser.cdata += c
|
||
}
|
||
continue
|
||
|
||
case S.CDATA_ENDING:
|
||
if (c === ']') {
|
||
parser.state = S.CDATA_ENDING_2
|
||
} else {
|
||
parser.cdata += ']' + c
|
||
parser.state = S.CDATA
|
||
}
|
||
continue
|
||
|
||
case S.CDATA_ENDING_2:
|
||
if (c === '>') {
|
||
if (parser.cdata) {
|
||
emitNode(parser, 'oncdata', parser.cdata)
|
||
}
|
||
emitNode(parser, 'onclosecdata')
|
||
parser.cdata = ''
|
||
parser.state = S.TEXT
|
||
} else if (c === ']') {
|
||
parser.cdata += ']'
|
||
} else {
|
||
parser.cdata += ']]' + c
|
||
parser.state = S.CDATA
|
||
}
|
||
continue
|
||
|
||
case S.PROC_INST:
|
||
if (c === '?') {
|
||
parser.state = S.PROC_INST_ENDING
|
||
} else if (isWhitespace(c)) {
|
||
parser.state = S.PROC_INST_BODY
|
||
} else {
|
||
parser.procInstName += c
|
||
}
|
||
continue
|
||
|
||
case S.PROC_INST_BODY:
|
||
if (!parser.procInstBody && isWhitespace(c)) {
|
||
continue
|
||
} else if (c === '?') {
|
||
parser.state = S.PROC_INST_ENDING
|
||
} else {
|
||
parser.procInstBody += c
|
||
}
|
||
continue
|
||
|
||
case S.PROC_INST_ENDING:
|
||
if (c === '>') {
|
||
emitNode(parser, 'onprocessinginstruction', {
|
||
name: parser.procInstName,
|
||
body: parser.procInstBody
|
||
})
|
||
parser.procInstName = parser.procInstBody = ''
|
||
parser.state = S.TEXT
|
||
} else {
|
||
parser.procInstBody += '?' + c
|
||
parser.state = S.PROC_INST_BODY
|
||
}
|
||
continue
|
||
|
||
case S.OPEN_TAG:
|
||
if (isMatch(nameBody, c)) {
|
||
parser.tagName += c
|
||
} else {
|
||
newTag(parser)
|
||
if (c === '>') {
|
||
openTag(parser)
|
||
} else if (c === '/') {
|
||
parser.state = S.OPEN_TAG_SLASH
|
||
} else {
|
||
if (!isWhitespace(c)) {
|
||
strictFail(parser, 'Invalid character in tag name')
|
||
}
|
||
parser.state = S.ATTRIB
|
||
}
|
||
}
|
||
continue
|
||
|
||
case S.OPEN_TAG_SLASH:
|
||
if (c === '>') {
|
||
openTag(parser, true)
|
||
closeTag(parser)
|
||
} else {
|
||
strictFail(parser, 'Forward-slash in opening tag not followed by >')
|
||
parser.state = S.ATTRIB
|
||
}
|
||
continue
|
||
|
||
case S.ATTRIB:
|
||
// haven't read the attribute name yet.
|
||
if (isWhitespace(c)) {
|
||
continue
|
||
} else if (c === '>') {
|
||
openTag(parser)
|
||
} else if (c === '/') {
|
||
parser.state = S.OPEN_TAG_SLASH
|
||
} else if (isMatch(nameStart, c)) {
|
||
parser.attribName = c
|
||
parser.attribValue = ''
|
||
parser.state = S.ATTRIB_NAME
|
||
} else {
|
||
strictFail(parser, 'Invalid attribute name')
|
||
}
|
||
continue
|
||
|
||
case S.ATTRIB_NAME:
|
||
if (c === '=') {
|
||
parser.state = S.ATTRIB_VALUE
|
||
} else if (c === '>') {
|
||
strictFail(parser, 'Attribute without value')
|
||
parser.attribValue = parser.attribName
|
||
attrib(parser)
|
||
openTag(parser)
|
||
} else if (isWhitespace(c)) {
|
||
parser.state = S.ATTRIB_NAME_SAW_WHITE
|
||
} else if (isMatch(nameBody, c)) {
|
||
parser.attribName += c
|
||
} else {
|
||
strictFail(parser, 'Invalid attribute name')
|
||
}
|
||
continue
|
||
|
||
case S.ATTRIB_NAME_SAW_WHITE:
|
||
if (c === '=') {
|
||
parser.state = S.ATTRIB_VALUE
|
||
} else if (isWhitespace(c)) {
|
||
continue
|
||
} else {
|
||
strictFail(parser, 'Attribute without value')
|
||
parser.tag.attributes[parser.attribName] = ''
|
||
parser.attribValue = ''
|
||
emitNode(parser, 'onattribute', {
|
||
name: parser.attribName,
|
||
value: ''
|
||
})
|
||
parser.attribName = ''
|
||
if (c === '>') {
|
||
openTag(parser)
|
||
} else if (isMatch(nameStart, c)) {
|
||
parser.attribName = c
|
||
parser.state = S.ATTRIB_NAME
|
||
} else {
|
||
strictFail(parser, 'Invalid attribute name')
|
||
parser.state = S.ATTRIB
|
||
}
|
||
}
|
||
continue
|
||
|
||
case S.ATTRIB_VALUE:
|
||
if (isWhitespace(c)) {
|
||
continue
|
||
} else if (isQuote(c)) {
|
||
parser.q = c
|
||
parser.state = S.ATTRIB_VALUE_QUOTED
|
||
} else {
|
||
if (!parser.opt.unquotedAttributeValues) {
|
||
error(parser, 'Unquoted attribute value')
|
||
}
|
||
parser.state = S.ATTRIB_VALUE_UNQUOTED
|
||
parser.attribValue = c
|
||
}
|
||
continue
|
||
|
||
case S.ATTRIB_VALUE_QUOTED:
|
||
if (c !== parser.q) {
|
||
if (c === '&') {
|
||
parser.state = S.ATTRIB_VALUE_ENTITY_Q
|
||
} else {
|
||
parser.attribValue += c
|
||
}
|
||
continue
|
||
}
|
||
attrib(parser)
|
||
parser.q = ''
|
||
parser.state = S.ATTRIB_VALUE_CLOSED
|
||
continue
|
||
|
||
case S.ATTRIB_VALUE_CLOSED:
|
||
if (isWhitespace(c)) {
|
||
parser.state = S.ATTRIB
|
||
} else if (c === '>') {
|
||
openTag(parser)
|
||
} else if (c === '/') {
|
||
parser.state = S.OPEN_TAG_SLASH
|
||
} else if (isMatch(nameStart, c)) {
|
||
strictFail(parser, 'No whitespace between attributes')
|
||
parser.attribName = c
|
||
parser.attribValue = ''
|
||
parser.state = S.ATTRIB_NAME
|
||
} else {
|
||
strictFail(parser, 'Invalid attribute name')
|
||
}
|
||
continue
|
||
|
||
case S.ATTRIB_VALUE_UNQUOTED:
|
||
if (!isAttribEnd(c)) {
|
||
if (c === '&') {
|
||
parser.state = S.ATTRIB_VALUE_ENTITY_U
|
||
} else {
|
||
parser.attribValue += c
|
||
}
|
||
continue
|
||
}
|
||
attrib(parser)
|
||
if (c === '>') {
|
||
openTag(parser)
|
||
} else {
|
||
parser.state = S.ATTRIB
|
||
}
|
||
continue
|
||
|
||
case S.CLOSE_TAG:
|
||
if (!parser.tagName) {
|
||
if (isWhitespace(c)) {
|
||
continue
|
||
} else if (notMatch(nameStart, c)) {
|
||
if (parser.script) {
|
||
parser.script += '</' + c
|
||
parser.state = S.SCRIPT
|
||
} else {
|
||
strictFail(parser, 'Invalid tagname in closing tag.')
|
||
}
|
||
} else {
|
||
parser.tagName = c
|
||
}
|
||
} else if (c === '>') {
|
||
closeTag(parser)
|
||
} else if (isMatch(nameBody, c)) {
|
||
parser.tagName += c
|
||
} else if (parser.script) {
|
||
parser.script += '</' + parser.tagName
|
||
parser.tagName = ''
|
||
parser.state = S.SCRIPT
|
||
} else {
|
||
if (!isWhitespace(c)) {
|
||
strictFail(parser, 'Invalid tagname in closing tag')
|
||
}
|
||
parser.state = S.CLOSE_TAG_SAW_WHITE
|
||
}
|
||
continue
|
||
|
||
case S.CLOSE_TAG_SAW_WHITE:
|
||
if (isWhitespace(c)) {
|
||
continue
|
||
}
|
||
if (c === '>') {
|
||
closeTag(parser)
|
||
} else {
|
||
strictFail(parser, 'Invalid characters in closing tag')
|
||
}
|
||
continue
|
||
|
||
case S.TEXT_ENTITY:
|
||
case S.ATTRIB_VALUE_ENTITY_Q:
|
||
case S.ATTRIB_VALUE_ENTITY_U:
|
||
var returnState
|
||
var buffer
|
||
switch (parser.state) {
|
||
case S.TEXT_ENTITY:
|
||
returnState = S.TEXT
|
||
buffer = 'textNode'
|
||
break
|
||
|
||
case S.ATTRIB_VALUE_ENTITY_Q:
|
||
returnState = S.ATTRIB_VALUE_QUOTED
|
||
buffer = 'attribValue'
|
||
break
|
||
|
||
case S.ATTRIB_VALUE_ENTITY_U:
|
||
returnState = S.ATTRIB_VALUE_UNQUOTED
|
||
buffer = 'attribValue'
|
||
break
|
||
}
|
||
|
||
if (c === ';') {
|
||
var parsedEntity = parseEntity(parser)
|
||
if (parser.opt.unparsedEntities && !Object.values(sax.XML_ENTITIES).includes(parsedEntity)) {
|
||
parser.entity = ''
|
||
parser.state = returnState
|
||
parser.write(parsedEntity)
|
||
} else {
|
||
parser[buffer] += parsedEntity
|
||
parser.entity = ''
|
||
parser.state = returnState
|
||
}
|
||
} else if (isMatch(parser.entity.length ? entityBody : entityStart, c)) {
|
||
parser.entity += c
|
||
} else {
|
||
strictFail(parser, 'Invalid character in entity name')
|
||
parser[buffer] += '&' + parser.entity + c
|
||
parser.entity = ''
|
||
parser.state = returnState
|
||
}
|
||
|
||
continue
|
||
|
||
default: /* istanbul ignore next */ {
|
||
throw new Error(parser, 'Unknown state: ' + parser.state)
|
||
}
|
||
}
|
||
} // while
|
||
|
||
if (parser.position >= parser.bufferCheckPosition) {
|
||
checkBufferLength(parser)
|
||
}
|
||
return parser
|
||
}
|
||
|
||
/*! http://mths.be/fromcodepoint v0.1.0 by @mathias */
|
||
/* istanbul ignore next */
|
||
if (!String.fromCodePoint) {
|
||
(function () {
|
||
var stringFromCharCode = String.fromCharCode
|
||
var floor = Math.floor
|
||
var fromCodePoint = function () {
|
||
var MAX_SIZE = 0x4000
|
||
var codeUnits = []
|
||
var highSurrogate
|
||
var lowSurrogate
|
||
var index = -1
|
||
var length = arguments.length
|
||
if (!length) {
|
||
return ''
|
||
}
|
||
var result = ''
|
||
while (++index < length) {
|
||
var codePoint = Number(arguments[index])
|
||
if (
|
||
!isFinite(codePoint) || // `NaN`, `+Infinity`, or `-Infinity`
|
||
codePoint < 0 || // not a valid Unicode code point
|
||
codePoint > 0x10FFFF || // not a valid Unicode code point
|
||
floor(codePoint) !== codePoint // not an integer
|
||
) {
|
||
throw RangeError('Invalid code point: ' + codePoint)
|
||
}
|
||
if (codePoint <= 0xFFFF) { // BMP code point
|
||
codeUnits.push(codePoint)
|
||
} else { // Astral code point; split in surrogate halves
|
||
// http://mathiasbynens.be/notes/javascript-encoding#surrogate-formulae
|
||
codePoint -= 0x10000
|
||
highSurrogate = (codePoint >> 10) + 0xD800
|
||
lowSurrogate = (codePoint % 0x400) + 0xDC00
|
||
codeUnits.push(highSurrogate, lowSurrogate)
|
||
}
|
||
if (index + 1 === length || codeUnits.length > MAX_SIZE) {
|
||
result += stringFromCharCode.apply(null, codeUnits)
|
||
codeUnits.length = 0
|
||
}
|
||
}
|
||
return result
|
||
}
|
||
/* istanbul ignore next */
|
||
if (Object.defineProperty) {
|
||
Object.defineProperty(String, 'fromCodePoint', {
|
||
value: fromCodePoint,
|
||
configurable: true,
|
||
writable: true
|
||
})
|
||
} else {
|
||
String.fromCodePoint = fromCodePoint
|
||
}
|
||
}())
|
||
}
|
||
})(typeof exports === 'undefined' ? this.sax = {} : exports)
|
||
|
||
}).call(this)}).call(this,require("buffer").Buffer)
|
||
},{"buffer":3,"stream":28,"string_decoder":29}],28:[function(require,module,exports){
|
||
// Copyright Joyent, Inc. and other Node contributors.
|
||
//
|
||
// Permission is hereby granted, free of charge, to any person obtaining a
|
||
// copy of this software and associated documentation files (the
|
||
// "Software"), to deal in the Software without restriction, including
|
||
// without limitation the rights to use, copy, modify, merge, publish,
|
||
// distribute, sublicense, and/or sell copies of the Software, and to permit
|
||
// persons to whom the Software is furnished to do so, subject to the
|
||
// following conditions:
|
||
//
|
||
// The above copyright notice and this permission notice shall be included
|
||
// in all copies or substantial portions of the Software.
|
||
//
|
||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
||
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
||
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
||
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
||
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
||
// USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||
|
||
module.exports = Stream;
|
||
|
||
var EE = require('events').EventEmitter;
|
||
var inherits = require('inherits');
|
||
|
||
inherits(Stream, EE);
|
||
Stream.Readable = require('readable-stream/readable.js');
|
||
Stream.Writable = require('readable-stream/writable.js');
|
||
Stream.Duplex = require('readable-stream/duplex.js');
|
||
Stream.Transform = require('readable-stream/transform.js');
|
||
Stream.PassThrough = require('readable-stream/passthrough.js');
|
||
|
||
// Backwards-compat with node 0.4.x
|
||
Stream.Stream = Stream;
|
||
|
||
|
||
|
||
// old-style streams. Note that the pipe method (the only relevant
|
||
// part of this class) is overridden in the Readable class.
|
||
|
||
function Stream() {
|
||
EE.call(this);
|
||
}
|
||
|
||
Stream.prototype.pipe = function(dest, options) {
|
||
var source = this;
|
||
|
||
function ondata(chunk) {
|
||
if (dest.writable) {
|
||
if (false === dest.write(chunk) && source.pause) {
|
||
source.pause();
|
||
}
|
||
}
|
||
}
|
||
|
||
source.on('data', ondata);
|
||
|
||
function ondrain() {
|
||
if (source.readable && source.resume) {
|
||
source.resume();
|
||
}
|
||
}
|
||
|
||
dest.on('drain', ondrain);
|
||
|
||
// If the 'end' option is not supplied, dest.end() will be called when
|
||
// source gets the 'end' or 'close' events. Only dest.end() once.
|
||
if (!dest._isStdio && (!options || options.end !== false)) {
|
||
source.on('end', onend);
|
||
source.on('close', onclose);
|
||
}
|
||
|
||
var didOnEnd = false;
|
||
function onend() {
|
||
if (didOnEnd) return;
|
||
didOnEnd = true;
|
||
|
||
dest.end();
|
||
}
|
||
|
||
|
||
function onclose() {
|
||
if (didOnEnd) return;
|
||
didOnEnd = true;
|
||
|
||
if (typeof dest.destroy === 'function') dest.destroy();
|
||
}
|
||
|
||
// don't leave dangling pipes when there are errors.
|
||
function onerror(er) {
|
||
cleanup();
|
||
if (EE.listenerCount(this, 'error') === 0) {
|
||
throw er; // Unhandled stream error in pipe.
|
||
}
|
||
}
|
||
|
||
source.on('error', onerror);
|
||
dest.on('error', onerror);
|
||
|
||
// remove all the event listeners that were added.
|
||
function cleanup() {
|
||
source.removeListener('data', ondata);
|
||
dest.removeListener('drain', ondrain);
|
||
|
||
source.removeListener('end', onend);
|
||
source.removeListener('close', onclose);
|
||
|
||
source.removeListener('error', onerror);
|
||
dest.removeListener('error', onerror);
|
||
|
||
source.removeListener('end', cleanup);
|
||
source.removeListener('close', cleanup);
|
||
|
||
dest.removeListener('close', cleanup);
|
||
}
|
||
|
||
source.on('end', cleanup);
|
||
source.on('close', cleanup);
|
||
|
||
dest.on('close', cleanup);
|
||
|
||
dest.emit('pipe', source);
|
||
|
||
// Allow for unix-like usage: A.pipe(B).pipe(C)
|
||
return dest;
|
||
};
|
||
|
||
},{"events":6,"inherits":8,"readable-stream/duplex.js":13,"readable-stream/passthrough.js":22,"readable-stream/readable.js":23,"readable-stream/transform.js":24,"readable-stream/writable.js":25}],29:[function(require,module,exports){
|
||
// Copyright Joyent, Inc. and other Node contributors.
|
||
//
|
||
// Permission is hereby granted, free of charge, to any person obtaining a
|
||
// copy of this software and associated documentation files (the
|
||
// "Software"), to deal in the Software without restriction, including
|
||
// without limitation the rights to use, copy, modify, merge, publish,
|
||
// distribute, sublicense, and/or sell copies of the Software, and to permit
|
||
// persons to whom the Software is furnished to do so, subject to the
|
||
// following conditions:
|
||
//
|
||
// The above copyright notice and this permission notice shall be included
|
||
// in all copies or substantial portions of the Software.
|
||
//
|
||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
||
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
||
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
||
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
||
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
||
// USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||
|
||
var Buffer = require('buffer').Buffer;
|
||
|
||
var isBufferEncoding = Buffer.isEncoding
|
||
|| function(encoding) {
|
||
switch (encoding && encoding.toLowerCase()) {
|
||
case 'hex': case 'utf8': case 'utf-8': case 'ascii': case 'binary': case 'base64': case 'ucs2': case 'ucs-2': case 'utf16le': case 'utf-16le': case 'raw': return true;
|
||
default: return false;
|
||
}
|
||
}
|
||
|
||
|
||
function assertEncoding(encoding) {
|
||
if (encoding && !isBufferEncoding(encoding)) {
|
||
throw new Error('Unknown encoding: ' + encoding);
|
||
}
|
||
}
|
||
|
||
// StringDecoder provides an interface for efficiently splitting a series of
|
||
// buffers into a series of JS strings without breaking apart multi-byte
|
||
// characters. CESU-8 is handled as part of the UTF-8 encoding.
|
||
//
|
||
// @TODO Handling all encodings inside a single object makes it very difficult
|
||
// to reason about this code, so it should be split up in the future.
|
||
// @TODO There should be a utf8-strict encoding that rejects invalid UTF-8 code
|
||
// points as used by CESU-8.
|
||
var StringDecoder = exports.StringDecoder = function(encoding) {
|
||
this.encoding = (encoding || 'utf8').toLowerCase().replace(/[-_]/, '');
|
||
assertEncoding(encoding);
|
||
switch (this.encoding) {
|
||
case 'utf8':
|
||
// CESU-8 represents each of Surrogate Pair by 3-bytes
|
||
this.surrogateSize = 3;
|
||
break;
|
||
case 'ucs2':
|
||
case 'utf16le':
|
||
// UTF-16 represents each of Surrogate Pair by 2-bytes
|
||
this.surrogateSize = 2;
|
||
this.detectIncompleteChar = utf16DetectIncompleteChar;
|
||
break;
|
||
case 'base64':
|
||
// Base-64 stores 3 bytes in 4 chars, and pads the remainder.
|
||
this.surrogateSize = 3;
|
||
this.detectIncompleteChar = base64DetectIncompleteChar;
|
||
break;
|
||
default:
|
||
this.write = passThroughWrite;
|
||
return;
|
||
}
|
||
|
||
// Enough space to store all bytes of a single character. UTF-8 needs 4
|
||
// bytes, but CESU-8 may require up to 6 (3 bytes per surrogate).
|
||
this.charBuffer = new Buffer(6);
|
||
// Number of bytes received for the current incomplete multi-byte character.
|
||
this.charReceived = 0;
|
||
// Number of bytes expected for the current incomplete multi-byte character.
|
||
this.charLength = 0;
|
||
};
|
||
|
||
|
||
// write decodes the given buffer and returns it as JS string that is
|
||
// guaranteed to not contain any partial multi-byte characters. Any partial
|
||
// character found at the end of the buffer is buffered up, and will be
|
||
// returned when calling write again with the remaining bytes.
|
||
//
|
||
// Note: Converting a Buffer containing an orphan surrogate to a String
|
||
// currently works, but converting a String to a Buffer (via `new Buffer`, or
|
||
// Buffer#write) will replace incomplete surrogates with the unicode
|
||
// replacement character. See https://codereview.chromium.org/121173009/ .
|
||
StringDecoder.prototype.write = function(buffer) {
|
||
var charStr = '';
|
||
// if our last write ended with an incomplete multibyte character
|
||
while (this.charLength) {
|
||
// determine how many remaining bytes this buffer has to offer for this char
|
||
var available = (buffer.length >= this.charLength - this.charReceived) ?
|
||
this.charLength - this.charReceived :
|
||
buffer.length;
|
||
|
||
// add the new bytes to the char buffer
|
||
buffer.copy(this.charBuffer, this.charReceived, 0, available);
|
||
this.charReceived += available;
|
||
|
||
if (this.charReceived < this.charLength) {
|
||
// still not enough chars in this buffer? wait for more ...
|
||
return '';
|
||
}
|
||
|
||
// remove bytes belonging to the current character from the buffer
|
||
buffer = buffer.slice(available, buffer.length);
|
||
|
||
// get the character that was split
|
||
charStr = this.charBuffer.slice(0, this.charLength).toString(this.encoding);
|
||
|
||
// CESU-8: lead surrogate (D800-DBFF) is also the incomplete character
|
||
var charCode = charStr.charCodeAt(charStr.length - 1);
|
||
if (charCode >= 0xD800 && charCode <= 0xDBFF) {
|
||
this.charLength += this.surrogateSize;
|
||
charStr = '';
|
||
continue;
|
||
}
|
||
this.charReceived = this.charLength = 0;
|
||
|
||
// if there are no more bytes in this buffer, just emit our char
|
||
if (buffer.length === 0) {
|
||
return charStr;
|
||
}
|
||
break;
|
||
}
|
||
|
||
// determine and set charLength / charReceived
|
||
this.detectIncompleteChar(buffer);
|
||
|
||
var end = buffer.length;
|
||
if (this.charLength) {
|
||
// buffer the incomplete character bytes we got
|
||
buffer.copy(this.charBuffer, 0, buffer.length - this.charReceived, end);
|
||
end -= this.charReceived;
|
||
}
|
||
|
||
charStr += buffer.toString(this.encoding, 0, end);
|
||
|
||
var end = charStr.length - 1;
|
||
var charCode = charStr.charCodeAt(end);
|
||
// CESU-8: lead surrogate (D800-DBFF) is also the incomplete character
|
||
if (charCode >= 0xD800 && charCode <= 0xDBFF) {
|
||
var size = this.surrogateSize;
|
||
this.charLength += size;
|
||
this.charReceived += size;
|
||
this.charBuffer.copy(this.charBuffer, size, 0, size);
|
||
buffer.copy(this.charBuffer, 0, 0, size);
|
||
return charStr.substring(0, end);
|
||
}
|
||
|
||
// or just emit the charStr
|
||
return charStr;
|
||
};
|
||
|
||
// detectIncompleteChar determines if there is an incomplete UTF-8 character at
|
||
// the end of the given buffer. If so, it sets this.charLength to the byte
|
||
// length that character, and sets this.charReceived to the number of bytes
|
||
// that are available for this character.
|
||
StringDecoder.prototype.detectIncompleteChar = function(buffer) {
|
||
// determine how many bytes we have to check at the end of this buffer
|
||
var i = (buffer.length >= 3) ? 3 : buffer.length;
|
||
|
||
// Figure out if one of the last i bytes of our buffer announces an
|
||
// incomplete char.
|
||
for (; i > 0; i--) {
|
||
var c = buffer[buffer.length - i];
|
||
|
||
// See http://en.wikipedia.org/wiki/UTF-8#Description
|
||
|
||
// 110XXXXX
|
||
if (i == 1 && c >> 5 == 0x06) {
|
||
this.charLength = 2;
|
||
break;
|
||
}
|
||
|
||
// 1110XXXX
|
||
if (i <= 2 && c >> 4 == 0x0E) {
|
||
this.charLength = 3;
|
||
break;
|
||
}
|
||
|
||
// 11110XXX
|
||
if (i <= 3 && c >> 3 == 0x1E) {
|
||
this.charLength = 4;
|
||
break;
|
||
}
|
||
}
|
||
this.charReceived = i;
|
||
};
|
||
|
||
StringDecoder.prototype.end = function(buffer) {
|
||
var res = '';
|
||
if (buffer && buffer.length)
|
||
res = this.write(buffer);
|
||
|
||
if (this.charReceived) {
|
||
var cr = this.charReceived;
|
||
var buf = this.charBuffer;
|
||
var enc = this.encoding;
|
||
res += buf.slice(0, cr).toString(enc);
|
||
}
|
||
|
||
return res;
|
||
};
|
||
|
||
function passThroughWrite(buffer) {
|
||
return buffer.toString(this.encoding);
|
||
}
|
||
|
||
function utf16DetectIncompleteChar(buffer) {
|
||
this.charReceived = buffer.length % 2;
|
||
this.charLength = this.charReceived ? 2 : 0;
|
||
}
|
||
|
||
function base64DetectIncompleteChar(buffer) {
|
||
this.charReceived = buffer.length % 3;
|
||
this.charLength = this.charReceived ? 3 : 0;
|
||
}
|
||
|
||
},{"buffer":3}],30:[function(require,module,exports){
|
||
// Copyright Joyent, Inc. and other Node contributors.
|
||
//
|
||
// Permission is hereby granted, free of charge, to any person obtaining a
|
||
// copy of this software and associated documentation files (the
|
||
// "Software"), to deal in the Software without restriction, including
|
||
// without limitation the rights to use, copy, modify, merge, publish,
|
||
// distribute, sublicense, and/or sell copies of the Software, and to permit
|
||
// persons to whom the Software is furnished to do so, subject to the
|
||
// following conditions:
|
||
//
|
||
// The above copyright notice and this permission notice shall be included
|
||
// in all copies or substantial portions of the Software.
|
||
//
|
||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
||
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
||
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
||
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
||
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
||
// USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||
|
||
'use strict';
|
||
|
||
/*<replacement>*/
|
||
|
||
var Buffer = require('safe-buffer').Buffer;
|
||
/*</replacement>*/
|
||
|
||
var isEncoding = Buffer.isEncoding || function (encoding) {
|
||
encoding = '' + encoding;
|
||
switch (encoding && encoding.toLowerCase()) {
|
||
case 'hex':case 'utf8':case 'utf-8':case 'ascii':case 'binary':case 'base64':case 'ucs2':case 'ucs-2':case 'utf16le':case 'utf-16le':case 'raw':
|
||
return true;
|
||
default:
|
||
return false;
|
||
}
|
||
};
|
||
|
||
function _normalizeEncoding(enc) {
|
||
if (!enc) return 'utf8';
|
||
var retried;
|
||
while (true) {
|
||
switch (enc) {
|
||
case 'utf8':
|
||
case 'utf-8':
|
||
return 'utf8';
|
||
case 'ucs2':
|
||
case 'ucs-2':
|
||
case 'utf16le':
|
||
case 'utf-16le':
|
||
return 'utf16le';
|
||
case 'latin1':
|
||
case 'binary':
|
||
return 'latin1';
|
||
case 'base64':
|
||
case 'ascii':
|
||
case 'hex':
|
||
return enc;
|
||
default:
|
||
if (retried) return; // undefined
|
||
enc = ('' + enc).toLowerCase();
|
||
retried = true;
|
||
}
|
||
}
|
||
};
|
||
|
||
// Do not cache `Buffer.isEncoding` when checking encoding names as some
|
||
// modules monkey-patch it to support additional encodings
|
||
function normalizeEncoding(enc) {
|
||
var nenc = _normalizeEncoding(enc);
|
||
if (typeof nenc !== 'string' && (Buffer.isEncoding === isEncoding || !isEncoding(enc))) throw new Error('Unknown encoding: ' + enc);
|
||
return nenc || enc;
|
||
}
|
||
|
||
// StringDecoder provides an interface for efficiently splitting a series of
|
||
// buffers into a series of JS strings without breaking apart multi-byte
|
||
// characters.
|
||
exports.StringDecoder = StringDecoder;
|
||
function StringDecoder(encoding) {
|
||
this.encoding = normalizeEncoding(encoding);
|
||
var nb;
|
||
switch (this.encoding) {
|
||
case 'utf16le':
|
||
this.text = utf16Text;
|
||
this.end = utf16End;
|
||
nb = 4;
|
||
break;
|
||
case 'utf8':
|
||
this.fillLast = utf8FillLast;
|
||
nb = 4;
|
||
break;
|
||
case 'base64':
|
||
this.text = base64Text;
|
||
this.end = base64End;
|
||
nb = 3;
|
||
break;
|
||
default:
|
||
this.write = simpleWrite;
|
||
this.end = simpleEnd;
|
||
return;
|
||
}
|
||
this.lastNeed = 0;
|
||
this.lastTotal = 0;
|
||
this.lastChar = Buffer.allocUnsafe(nb);
|
||
}
|
||
|
||
StringDecoder.prototype.write = function (buf) {
|
||
if (buf.length === 0) return '';
|
||
var r;
|
||
var i;
|
||
if (this.lastNeed) {
|
||
r = this.fillLast(buf);
|
||
if (r === undefined) return '';
|
||
i = this.lastNeed;
|
||
this.lastNeed = 0;
|
||
} else {
|
||
i = 0;
|
||
}
|
||
if (i < buf.length) return r ? r + this.text(buf, i) : this.text(buf, i);
|
||
return r || '';
|
||
};
|
||
|
||
StringDecoder.prototype.end = utf8End;
|
||
|
||
// Returns only complete characters in a Buffer
|
||
StringDecoder.prototype.text = utf8Text;
|
||
|
||
// Attempts to complete a partial non-UTF-8 character using bytes from a Buffer
|
||
StringDecoder.prototype.fillLast = function (buf) {
|
||
if (this.lastNeed <= buf.length) {
|
||
buf.copy(this.lastChar, this.lastTotal - this.lastNeed, 0, this.lastNeed);
|
||
return this.lastChar.toString(this.encoding, 0, this.lastTotal);
|
||
}
|
||
buf.copy(this.lastChar, this.lastTotal - this.lastNeed, 0, buf.length);
|
||
this.lastNeed -= buf.length;
|
||
};
|
||
|
||
// Checks the type of a UTF-8 byte, whether it's ASCII, a leading byte, or a
|
||
// continuation byte. If an invalid byte is detected, -2 is returned.
|
||
function utf8CheckByte(byte) {
|
||
if (byte <= 0x7F) return 0;else if (byte >> 5 === 0x06) return 2;else if (byte >> 4 === 0x0E) return 3;else if (byte >> 3 === 0x1E) return 4;
|
||
return byte >> 6 === 0x02 ? -1 : -2;
|
||
}
|
||
|
||
// Checks at most 3 bytes at the end of a Buffer in order to detect an
|
||
// incomplete multi-byte UTF-8 character. The total number of bytes (2, 3, or 4)
|
||
// needed to complete the UTF-8 character (if applicable) are returned.
|
||
function utf8CheckIncomplete(self, buf, i) {
|
||
var j = buf.length - 1;
|
||
if (j < i) return 0;
|
||
var nb = utf8CheckByte(buf[j]);
|
||
if (nb >= 0) {
|
||
if (nb > 0) self.lastNeed = nb - 1;
|
||
return nb;
|
||
}
|
||
if (--j < i || nb === -2) return 0;
|
||
nb = utf8CheckByte(buf[j]);
|
||
if (nb >= 0) {
|
||
if (nb > 0) self.lastNeed = nb - 2;
|
||
return nb;
|
||
}
|
||
if (--j < i || nb === -2) return 0;
|
||
nb = utf8CheckByte(buf[j]);
|
||
if (nb >= 0) {
|
||
if (nb > 0) {
|
||
if (nb === 2) nb = 0;else self.lastNeed = nb - 3;
|
||
}
|
||
return nb;
|
||
}
|
||
return 0;
|
||
}
|
||
|
||
// Validates as many continuation bytes for a multi-byte UTF-8 character as
|
||
// needed or are available. If we see a non-continuation byte where we expect
|
||
// one, we "replace" the validated continuation bytes we've seen so far with
|
||
// a single UTF-8 replacement character ('\ufffd'), to match v8's UTF-8 decoding
|
||
// behavior. The continuation byte check is included three times in the case
|
||
// where all of the continuation bytes for a character exist in the same buffer.
|
||
// It is also done this way as a slight performance increase instead of using a
|
||
// loop.
|
||
function utf8CheckExtraBytes(self, buf, p) {
|
||
if ((buf[0] & 0xC0) !== 0x80) {
|
||
self.lastNeed = 0;
|
||
return '\ufffd';
|
||
}
|
||
if (self.lastNeed > 1 && buf.length > 1) {
|
||
if ((buf[1] & 0xC0) !== 0x80) {
|
||
self.lastNeed = 1;
|
||
return '\ufffd';
|
||
}
|
||
if (self.lastNeed > 2 && buf.length > 2) {
|
||
if ((buf[2] & 0xC0) !== 0x80) {
|
||
self.lastNeed = 2;
|
||
return '\ufffd';
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
// Attempts to complete a multi-byte UTF-8 character using bytes from a Buffer.
|
||
function utf8FillLast(buf) {
|
||
var p = this.lastTotal - this.lastNeed;
|
||
var r = utf8CheckExtraBytes(this, buf, p);
|
||
if (r !== undefined) return r;
|
||
if (this.lastNeed <= buf.length) {
|
||
buf.copy(this.lastChar, p, 0, this.lastNeed);
|
||
return this.lastChar.toString(this.encoding, 0, this.lastTotal);
|
||
}
|
||
buf.copy(this.lastChar, p, 0, buf.length);
|
||
this.lastNeed -= buf.length;
|
||
}
|
||
|
||
// Returns all complete UTF-8 characters in a Buffer. If the Buffer ended on a
|
||
// partial character, the character's bytes are buffered until the required
|
||
// number of bytes are available.
|
||
function utf8Text(buf, i) {
|
||
var total = utf8CheckIncomplete(this, buf, i);
|
||
if (!this.lastNeed) return buf.toString('utf8', i);
|
||
this.lastTotal = total;
|
||
var end = buf.length - (total - this.lastNeed);
|
||
buf.copy(this.lastChar, 0, end);
|
||
return buf.toString('utf8', i, end);
|
||
}
|
||
|
||
// For UTF-8, a replacement character is added when ending on a partial
|
||
// character.
|
||
function utf8End(buf) {
|
||
var r = buf && buf.length ? this.write(buf) : '';
|
||
if (this.lastNeed) return r + '\ufffd';
|
||
return r;
|
||
}
|
||
|
||
// UTF-16LE typically needs two bytes per character, but even if we have an even
|
||
// number of bytes available, we need to check if we end on a leading/high
|
||
// surrogate. In that case, we need to wait for the next two bytes in order to
|
||
// decode the last character properly.
|
||
function utf16Text(buf, i) {
|
||
if ((buf.length - i) % 2 === 0) {
|
||
var r = buf.toString('utf16le', i);
|
||
if (r) {
|
||
var c = r.charCodeAt(r.length - 1);
|
||
if (c >= 0xD800 && c <= 0xDBFF) {
|
||
this.lastNeed = 2;
|
||
this.lastTotal = 4;
|
||
this.lastChar[0] = buf[buf.length - 2];
|
||
this.lastChar[1] = buf[buf.length - 1];
|
||
return r.slice(0, -1);
|
||
}
|
||
}
|
||
return r;
|
||
}
|
||
this.lastNeed = 1;
|
||
this.lastTotal = 2;
|
||
this.lastChar[0] = buf[buf.length - 1];
|
||
return buf.toString('utf16le', i, buf.length - 1);
|
||
}
|
||
|
||
// For UTF-16LE we do not explicitly append special replacement characters if we
|
||
// end on a partial character, we simply let v8 handle that.
|
||
function utf16End(buf) {
|
||
var r = buf && buf.length ? this.write(buf) : '';
|
||
if (this.lastNeed) {
|
||
var end = this.lastTotal - this.lastNeed;
|
||
return r + this.lastChar.toString('utf16le', 0, end);
|
||
}
|
||
return r;
|
||
}
|
||
|
||
function base64Text(buf, i) {
|
||
var n = (buf.length - i) % 3;
|
||
if (n === 0) return buf.toString('base64', i);
|
||
this.lastNeed = 3 - n;
|
||
this.lastTotal = 3;
|
||
if (n === 1) {
|
||
this.lastChar[0] = buf[buf.length - 1];
|
||
} else {
|
||
this.lastChar[0] = buf[buf.length - 2];
|
||
this.lastChar[1] = buf[buf.length - 1];
|
||
}
|
||
return buf.toString('base64', i, buf.length - n);
|
||
}
|
||
|
||
function base64End(buf) {
|
||
var r = buf && buf.length ? this.write(buf) : '';
|
||
if (this.lastNeed) return r + this.lastChar.toString('base64', 0, 3 - this.lastNeed);
|
||
return r;
|
||
}
|
||
|
||
// Pass bytes on through for single-byte encodings (e.g. ascii, latin1, hex)
|
||
function simpleWrite(buf) {
|
||
return buf.toString(this.encoding);
|
||
}
|
||
|
||
function simpleEnd(buf) {
|
||
return buf && buf.length ? this.write(buf) : '';
|
||
}
|
||
},{"safe-buffer":26}],31:[function(require,module,exports){
|
||
(function (setImmediate,clearImmediate){(function (){
|
||
var nextTick = require('process/browser.js').nextTick;
|
||
var apply = Function.prototype.apply;
|
||
var slice = Array.prototype.slice;
|
||
var immediateIds = {};
|
||
var nextImmediateId = 0;
|
||
|
||
// DOM APIs, for completeness
|
||
|
||
exports.setTimeout = function() {
|
||
return new Timeout(apply.call(setTimeout, window, arguments), clearTimeout);
|
||
};
|
||
exports.setInterval = function() {
|
||
return new Timeout(apply.call(setInterval, window, arguments), clearInterval);
|
||
};
|
||
exports.clearTimeout =
|
||
exports.clearInterval = function(timeout) { timeout.close(); };
|
||
|
||
function Timeout(id, clearFn) {
|
||
this._id = id;
|
||
this._clearFn = clearFn;
|
||
}
|
||
Timeout.prototype.unref = Timeout.prototype.ref = function() {};
|
||
Timeout.prototype.close = function() {
|
||
this._clearFn.call(window, this._id);
|
||
};
|
||
|
||
// Does not start the time, just sets up the members needed.
|
||
exports.enroll = function(item, msecs) {
|
||
clearTimeout(item._idleTimeoutId);
|
||
item._idleTimeout = msecs;
|
||
};
|
||
|
||
exports.unenroll = function(item) {
|
||
clearTimeout(item._idleTimeoutId);
|
||
item._idleTimeout = -1;
|
||
};
|
||
|
||
exports._unrefActive = exports.active = function(item) {
|
||
clearTimeout(item._idleTimeoutId);
|
||
|
||
var msecs = item._idleTimeout;
|
||
if (msecs >= 0) {
|
||
item._idleTimeoutId = setTimeout(function onTimeout() {
|
||
if (item._onTimeout)
|
||
item._onTimeout();
|
||
}, msecs);
|
||
}
|
||
};
|
||
|
||
// That's not how node.js implements it but the exposed api is the same.
|
||
exports.setImmediate = typeof setImmediate === "function" ? setImmediate : function(fn) {
|
||
var id = nextImmediateId++;
|
||
var args = arguments.length < 2 ? false : slice.call(arguments, 1);
|
||
|
||
immediateIds[id] = true;
|
||
|
||
nextTick(function onNextTick() {
|
||
if (immediateIds[id]) {
|
||
// fn.call() is faster so we optimize for the common use-case
|
||
// @see http://jsperf.com/call-apply-segu
|
||
if (args) {
|
||
fn.apply(null, args);
|
||
} else {
|
||
fn.call(null);
|
||
}
|
||
// Prevent ids from leaking
|
||
exports.clearImmediate(id);
|
||
}
|
||
});
|
||
|
||
return id;
|
||
};
|
||
|
||
exports.clearImmediate = typeof clearImmediate === "function" ? clearImmediate : function(id) {
|
||
delete immediateIds[id];
|
||
};
|
||
}).call(this)}).call(this,require("timers").setImmediate,require("timers").clearImmediate)
|
||
},{"process/browser.js":12,"timers":31}],32:[function(require,module,exports){
|
||
(function (global){(function (){
|
||
|
||
/**
|
||
* Module exports.
|
||
*/
|
||
|
||
module.exports = deprecate;
|
||
|
||
/**
|
||
* Mark that a method should not be used.
|
||
* Returns a modified function which warns once by default.
|
||
*
|
||
* If `localStorage.noDeprecation = true` is set, then it is a no-op.
|
||
*
|
||
* If `localStorage.throwDeprecation = true` is set, then deprecated functions
|
||
* will throw an Error when invoked.
|
||
*
|
||
* If `localStorage.traceDeprecation = true` is set, then deprecated functions
|
||
* will invoke `console.trace()` instead of `console.error()`.
|
||
*
|
||
* @param {Function} fn - the function to deprecate
|
||
* @param {String} msg - the string to print to the console when `fn` is invoked
|
||
* @returns {Function} a new "deprecated" version of `fn`
|
||
* @api public
|
||
*/
|
||
|
||
function deprecate (fn, msg) {
|
||
if (config('noDeprecation')) {
|
||
return fn;
|
||
}
|
||
|
||
var warned = false;
|
||
function deprecated() {
|
||
if (!warned) {
|
||
if (config('throwDeprecation')) {
|
||
throw new Error(msg);
|
||
} else if (config('traceDeprecation')) {
|
||
console.trace(msg);
|
||
} else {
|
||
console.warn(msg);
|
||
}
|
||
warned = true;
|
||
}
|
||
return fn.apply(this, arguments);
|
||
}
|
||
|
||
return deprecated;
|
||
}
|
||
|
||
/**
|
||
* Checks `localStorage` for boolean values for the given `name`.
|
||
*
|
||
* @param {String} name
|
||
* @returns {Boolean}
|
||
* @api private
|
||
*/
|
||
|
||
function config (name) {
|
||
// accessing global.localStorage can trigger a DOMException in sandboxed iframes
|
||
try {
|
||
if (!global.localStorage) return false;
|
||
} catch (_) {
|
||
return false;
|
||
}
|
||
var val = global.localStorage[name];
|
||
if (null == val) return false;
|
||
return String(val).toLowerCase() === 'true';
|
||
}
|
||
|
||
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
||
},{}],33:[function(require,module,exports){
|
||
module.exports = {
|
||
|
||
isArray: function(value) {
|
||
if (Array.isArray) {
|
||
return Array.isArray(value);
|
||
}
|
||
// fallback for older browsers like IE 8
|
||
return Object.prototype.toString.call( value ) === '[object Array]';
|
||
}
|
||
|
||
};
|
||
|
||
},{}],34:[function(require,module,exports){
|
||
/*jslint node:true */
|
||
|
||
var xml2js = require('./xml2js');
|
||
var xml2json = require('./xml2json');
|
||
var js2xml = require('./js2xml');
|
||
var json2xml = require('./json2xml');
|
||
|
||
module.exports = {
|
||
xml2js: xml2js,
|
||
xml2json: xml2json,
|
||
js2xml: js2xml,
|
||
json2xml: json2xml
|
||
};
|
||
|
||
},{"./js2xml":35,"./json2xml":36,"./xml2js":38,"./xml2json":39}],35:[function(require,module,exports){
|
||
var helper = require('./options-helper');
|
||
var isArray = require('./array-helper').isArray;
|
||
|
||
var currentElement, currentElementName;
|
||
|
||
function validateOptions(userOptions) {
|
||
var options = helper.copyOptions(userOptions);
|
||
helper.ensureFlagExists('ignoreDeclaration', options);
|
||
helper.ensureFlagExists('ignoreInstruction', options);
|
||
helper.ensureFlagExists('ignoreAttributes', options);
|
||
helper.ensureFlagExists('ignoreText', options);
|
||
helper.ensureFlagExists('ignoreComment', options);
|
||
helper.ensureFlagExists('ignoreCdata', options);
|
||
helper.ensureFlagExists('ignoreDoctype', options);
|
||
helper.ensureFlagExists('compact', options);
|
||
helper.ensureFlagExists('indentText', options);
|
||
helper.ensureFlagExists('indentCdata', options);
|
||
helper.ensureFlagExists('indentAttributes', options);
|
||
helper.ensureFlagExists('indentInstruction', options);
|
||
helper.ensureFlagExists('fullTagEmptyElement', options);
|
||
helper.ensureFlagExists('noQuotesForNativeAttributes', options);
|
||
helper.ensureSpacesExists(options);
|
||
if (typeof options.spaces === 'number') {
|
||
options.spaces = Array(options.spaces + 1).join(' ');
|
||
}
|
||
helper.ensureKeyExists('declaration', options);
|
||
helper.ensureKeyExists('instruction', options);
|
||
helper.ensureKeyExists('attributes', options);
|
||
helper.ensureKeyExists('text', options);
|
||
helper.ensureKeyExists('comment', options);
|
||
helper.ensureKeyExists('cdata', options);
|
||
helper.ensureKeyExists('doctype', options);
|
||
helper.ensureKeyExists('type', options);
|
||
helper.ensureKeyExists('name', options);
|
||
helper.ensureKeyExists('elements', options);
|
||
helper.checkFnExists('doctype', options);
|
||
helper.checkFnExists('instruction', options);
|
||
helper.checkFnExists('cdata', options);
|
||
helper.checkFnExists('comment', options);
|
||
helper.checkFnExists('text', options);
|
||
helper.checkFnExists('instructionName', options);
|
||
helper.checkFnExists('elementName', options);
|
||
helper.checkFnExists('attributeName', options);
|
||
helper.checkFnExists('attributeValue', options);
|
||
helper.checkFnExists('attributes', options);
|
||
helper.checkFnExists('fullTagEmptyElement', options);
|
||
return options;
|
||
}
|
||
|
||
function writeIndentation(options, depth, firstLine) {
|
||
return (!firstLine && options.spaces ? '\n' : '') + Array(depth + 1).join(options.spaces);
|
||
}
|
||
|
||
function writeAttributes(attributes, options, depth) {
|
||
if (options.ignoreAttributes) {
|
||
return '';
|
||
}
|
||
if ('attributesFn' in options) {
|
||
attributes = options.attributesFn(attributes, currentElementName, currentElement);
|
||
}
|
||
var key, attr, attrName, quote, result = [];
|
||
for (key in attributes) {
|
||
if (attributes.hasOwnProperty(key) && attributes[key] !== null && attributes[key] !== undefined) {
|
||
quote = options.noQuotesForNativeAttributes && typeof attributes[key] !== 'string' ? '' : '"';
|
||
attr = '' + attributes[key]; // ensure number and boolean are converted to String
|
||
attr = attr.replace(/"/g, '"');
|
||
attrName = 'attributeNameFn' in options ? options.attributeNameFn(key, attr, currentElementName, currentElement) : key;
|
||
result.push((options.spaces && options.indentAttributes? writeIndentation(options, depth+1, false) : ' '));
|
||
result.push(attrName + '=' + quote + ('attributeValueFn' in options ? options.attributeValueFn(attr, key, currentElementName, currentElement) : attr) + quote);
|
||
}
|
||
}
|
||
if (attributes && Object.keys(attributes).length && options.spaces && options.indentAttributes) {
|
||
result.push(writeIndentation(options, depth, false));
|
||
}
|
||
return result.join('');
|
||
}
|
||
|
||
function writeDeclaration(declaration, options, depth) {
|
||
currentElement = declaration;
|
||
currentElementName = 'xml';
|
||
return options.ignoreDeclaration ? '' : '<?' + 'xml' + writeAttributes(declaration[options.attributesKey], options, depth) + '?>';
|
||
}
|
||
|
||
function writeInstruction(instruction, options, depth) {
|
||
if (options.ignoreInstruction) {
|
||
return '';
|
||
}
|
||
var key;
|
||
for (key in instruction) {
|
||
if (instruction.hasOwnProperty(key)) {
|
||
break;
|
||
}
|
||
}
|
||
var instructionName = 'instructionNameFn' in options ? options.instructionNameFn(key, instruction[key], currentElementName, currentElement) : key;
|
||
if (typeof instruction[key] === 'object') {
|
||
currentElement = instruction;
|
||
currentElementName = instructionName;
|
||
return '<?' + instructionName + writeAttributes(instruction[key][options.attributesKey], options, depth) + '?>';
|
||
} else {
|
||
var instructionValue = instruction[key] ? instruction[key] : '';
|
||
if ('instructionFn' in options) instructionValue = options.instructionFn(instructionValue, key, currentElementName, currentElement);
|
||
return '<?' + instructionName + (instructionValue ? ' ' + instructionValue : '') + '?>';
|
||
}
|
||
}
|
||
|
||
function writeComment(comment, options) {
|
||
return options.ignoreComment ? '' : '<!--' + ('commentFn' in options ? options.commentFn(comment, currentElementName, currentElement) : comment) + '-->';
|
||
}
|
||
|
||
function writeCdata(cdata, options) {
|
||
return options.ignoreCdata ? '' : '<![CDATA[' + ('cdataFn' in options ? options.cdataFn(cdata, currentElementName, currentElement) : cdata.replace(']]>', ']]]]><![CDATA[>')) + ']]>';
|
||
}
|
||
|
||
function writeDoctype(doctype, options) {
|
||
return options.ignoreDoctype ? '' : '<!DOCTYPE ' + ('doctypeFn' in options ? options.doctypeFn(doctype, currentElementName, currentElement) : doctype) + '>';
|
||
}
|
||
|
||
function writeText(text, options) {
|
||
if (options.ignoreText) return '';
|
||
text = '' + text; // ensure Number and Boolean are converted to String
|
||
text = text.replace(/&/g, '&'); // desanitize to avoid double sanitization
|
||
text = text.replace(/&/g, '&').replace(/</g, '<').replace(/>/g, '>');
|
||
return 'textFn' in options ? options.textFn(text, currentElementName, currentElement) : text;
|
||
}
|
||
|
||
function hasContent(element, options) {
|
||
var i;
|
||
if (element.elements && element.elements.length) {
|
||
for (i = 0; i < element.elements.length; ++i) {
|
||
switch (element.elements[i][options.typeKey]) {
|
||
case 'text':
|
||
if (options.indentText) {
|
||
return true;
|
||
}
|
||
break; // skip to next key
|
||
case 'cdata':
|
||
if (options.indentCdata) {
|
||
return true;
|
||
}
|
||
break; // skip to next key
|
||
case 'instruction':
|
||
if (options.indentInstruction) {
|
||
return true;
|
||
}
|
||
break; // skip to next key
|
||
case 'doctype':
|
||
case 'comment':
|
||
case 'element':
|
||
return true;
|
||
default:
|
||
return true;
|
||
}
|
||
}
|
||
}
|
||
return false;
|
||
}
|
||
|
||
function writeElement(element, options, depth) {
|
||
currentElement = element;
|
||
currentElementName = element.name;
|
||
var xml = [], elementName = 'elementNameFn' in options ? options.elementNameFn(element.name, element) : element.name;
|
||
xml.push('<' + elementName);
|
||
if (element[options.attributesKey]) {
|
||
xml.push(writeAttributes(element[options.attributesKey], options, depth));
|
||
}
|
||
var withClosingTag = element[options.elementsKey] && element[options.elementsKey].length || element[options.attributesKey] && element[options.attributesKey]['xml:space'] === 'preserve';
|
||
if (!withClosingTag) {
|
||
if ('fullTagEmptyElementFn' in options) {
|
||
withClosingTag = options.fullTagEmptyElementFn(element.name, element);
|
||
} else {
|
||
withClosingTag = options.fullTagEmptyElement;
|
||
}
|
||
}
|
||
if (withClosingTag) {
|
||
xml.push('>');
|
||
if (element[options.elementsKey] && element[options.elementsKey].length) {
|
||
xml.push(writeElements(element[options.elementsKey], options, depth + 1));
|
||
currentElement = element;
|
||
currentElementName = element.name;
|
||
}
|
||
xml.push(options.spaces && hasContent(element, options) ? '\n' + Array(depth + 1).join(options.spaces) : '');
|
||
xml.push('</' + elementName + '>');
|
||
} else {
|
||
xml.push('/>');
|
||
}
|
||
return xml.join('');
|
||
}
|
||
|
||
function writeElements(elements, options, depth, firstLine) {
|
||
return elements.reduce(function (xml, element) {
|
||
var indent = writeIndentation(options, depth, firstLine && !xml);
|
||
switch (element.type) {
|
||
case 'element': return xml + indent + writeElement(element, options, depth);
|
||
case 'comment': return xml + indent + writeComment(element[options.commentKey], options);
|
||
case 'doctype': return xml + indent + writeDoctype(element[options.doctypeKey], options);
|
||
case 'cdata': return xml + (options.indentCdata ? indent : '') + writeCdata(element[options.cdataKey], options);
|
||
case 'text': return xml + (options.indentText ? indent : '') + writeText(element[options.textKey], options);
|
||
case 'instruction':
|
||
var instruction = {};
|
||
instruction[element[options.nameKey]] = element[options.attributesKey] ? element : element[options.instructionKey];
|
||
return xml + (options.indentInstruction ? indent : '') + writeInstruction(instruction, options, depth);
|
||
}
|
||
}, '');
|
||
}
|
||
|
||
function hasContentCompact(element, options, anyContent) {
|
||
var key;
|
||
for (key in element) {
|
||
if (element.hasOwnProperty(key)) {
|
||
switch (key) {
|
||
case options.parentKey:
|
||
case options.attributesKey:
|
||
break; // skip to next key
|
||
case options.textKey:
|
||
if (options.indentText || anyContent) {
|
||
return true;
|
||
}
|
||
break; // skip to next key
|
||
case options.cdataKey:
|
||
if (options.indentCdata || anyContent) {
|
||
return true;
|
||
}
|
||
break; // skip to next key
|
||
case options.instructionKey:
|
||
if (options.indentInstruction || anyContent) {
|
||
return true;
|
||
}
|
||
break; // skip to next key
|
||
case options.doctypeKey:
|
||
case options.commentKey:
|
||
return true;
|
||
default:
|
||
return true;
|
||
}
|
||
}
|
||
}
|
||
return false;
|
||
}
|
||
|
||
function writeElementCompact(element, name, options, depth, indent) {
|
||
currentElement = element;
|
||
currentElementName = name;
|
||
var elementName = 'elementNameFn' in options ? options.elementNameFn(name, element) : name;
|
||
if (typeof element === 'undefined' || element === null || element === '') {
|
||
return 'fullTagEmptyElementFn' in options && options.fullTagEmptyElementFn(name, element) || options.fullTagEmptyElement ? '<' + elementName + '></' + elementName + '>' : '<' + elementName + '/>';
|
||
}
|
||
var xml = [];
|
||
if (name) {
|
||
xml.push('<' + elementName);
|
||
if (typeof element !== 'object') {
|
||
xml.push('>' + writeText(element,options) + '</' + elementName + '>');
|
||
return xml.join('');
|
||
}
|
||
if (element[options.attributesKey]) {
|
||
xml.push(writeAttributes(element[options.attributesKey], options, depth));
|
||
}
|
||
var withClosingTag = hasContentCompact(element, options, true) || element[options.attributesKey] && element[options.attributesKey]['xml:space'] === 'preserve';
|
||
if (!withClosingTag) {
|
||
if ('fullTagEmptyElementFn' in options) {
|
||
withClosingTag = options.fullTagEmptyElementFn(name, element);
|
||
} else {
|
||
withClosingTag = options.fullTagEmptyElement;
|
||
}
|
||
}
|
||
if (withClosingTag) {
|
||
xml.push('>');
|
||
} else {
|
||
xml.push('/>');
|
||
return xml.join('');
|
||
}
|
||
}
|
||
xml.push(writeElementsCompact(element, options, depth + 1, false));
|
||
currentElement = element;
|
||
currentElementName = name;
|
||
if (name) {
|
||
xml.push((indent ? writeIndentation(options, depth, false) : '') + '</' + elementName + '>');
|
||
}
|
||
return xml.join('');
|
||
}
|
||
|
||
function writeElementsCompact(element, options, depth, firstLine) {
|
||
var i, key, nodes, xml = [];
|
||
for (key in element) {
|
||
if (element.hasOwnProperty(key)) {
|
||
nodes = isArray(element[key]) ? element[key] : [element[key]];
|
||
for (i = 0; i < nodes.length; ++i) {
|
||
switch (key) {
|
||
case options.declarationKey: xml.push(writeDeclaration(nodes[i], options, depth)); break;
|
||
case options.instructionKey: xml.push((options.indentInstruction ? writeIndentation(options, depth, firstLine) : '') + writeInstruction(nodes[i], options, depth)); break;
|
||
case options.attributesKey: case options.parentKey: break; // skip
|
||
case options.textKey: xml.push((options.indentText ? writeIndentation(options, depth, firstLine) : '') + writeText(nodes[i], options)); break;
|
||
case options.cdataKey: xml.push((options.indentCdata ? writeIndentation(options, depth, firstLine) : '') + writeCdata(nodes[i], options)); break;
|
||
case options.doctypeKey: xml.push(writeIndentation(options, depth, firstLine) + writeDoctype(nodes[i], options)); break;
|
||
case options.commentKey: xml.push(writeIndentation(options, depth, firstLine) + writeComment(nodes[i], options)); break;
|
||
default: xml.push(writeIndentation(options, depth, firstLine) + writeElementCompact(nodes[i], key, options, depth, hasContentCompact(nodes[i], options)));
|
||
}
|
||
firstLine = firstLine && !xml.length;
|
||
}
|
||
}
|
||
}
|
||
return xml.join('');
|
||
}
|
||
|
||
module.exports = function (js, options) {
|
||
options = validateOptions(options);
|
||
var xml = [];
|
||
currentElement = js;
|
||
currentElementName = '_root_';
|
||
if (options.compact) {
|
||
xml.push(writeElementsCompact(js, options, 0, true));
|
||
} else {
|
||
if (js[options.declarationKey]) {
|
||
xml.push(writeDeclaration(js[options.declarationKey], options, 0));
|
||
}
|
||
if (js[options.elementsKey] && js[options.elementsKey].length) {
|
||
xml.push(writeElements(js[options.elementsKey], options, 0, !xml.length));
|
||
}
|
||
}
|
||
return xml.join('');
|
||
};
|
||
|
||
},{"./array-helper":33,"./options-helper":37}],36:[function(require,module,exports){
|
||
(function (Buffer){(function (){
|
||
var js2xml = require('./js2xml.js');
|
||
|
||
module.exports = function (json, options) {
|
||
if (json instanceof Buffer) {
|
||
json = json.toString();
|
||
}
|
||
var js = null;
|
||
if (typeof (json) === 'string') {
|
||
try {
|
||
js = JSON.parse(json);
|
||
} catch (e) {
|
||
throw new Error('The JSON structure is invalid');
|
||
}
|
||
} else {
|
||
js = json;
|
||
}
|
||
return js2xml(js, options);
|
||
};
|
||
|
||
}).call(this)}).call(this,require("buffer").Buffer)
|
||
},{"./js2xml.js":35,"buffer":3}],37:[function(require,module,exports){
|
||
var isArray = require('./array-helper').isArray;
|
||
|
||
module.exports = {
|
||
|
||
copyOptions: function (options) {
|
||
var key, copy = {};
|
||
for (key in options) {
|
||
if (options.hasOwnProperty(key)) {
|
||
copy[key] = options[key];
|
||
}
|
||
}
|
||
return copy;
|
||
},
|
||
|
||
ensureFlagExists: function (item, options) {
|
||
if (!(item in options) || typeof options[item] !== 'boolean') {
|
||
options[item] = false;
|
||
}
|
||
},
|
||
|
||
ensureSpacesExists: function (options) {
|
||
if (!('spaces' in options) || (typeof options.spaces !== 'number' && typeof options.spaces !== 'string')) {
|
||
options.spaces = 0;
|
||
}
|
||
},
|
||
|
||
ensureAlwaysArrayExists: function (options) {
|
||
if (!('alwaysArray' in options) || (typeof options.alwaysArray !== 'boolean' && !isArray(options.alwaysArray))) {
|
||
options.alwaysArray = false;
|
||
}
|
||
},
|
||
|
||
ensureKeyExists: function (key, options) {
|
||
if (!(key + 'Key' in options) || typeof options[key + 'Key'] !== 'string') {
|
||
options[key + 'Key'] = options.compact ? '_' + key : key;
|
||
}
|
||
},
|
||
|
||
checkFnExists: function (key, options) {
|
||
return key + 'Fn' in options;
|
||
}
|
||
|
||
};
|
||
|
||
},{"./array-helper":33}],38:[function(require,module,exports){
|
||
var sax = require('sax');
|
||
var expat /*= require('node-expat');*/ = { on: function () { }, parse: function () { } };
|
||
var helper = require('./options-helper');
|
||
var isArray = require('./array-helper').isArray;
|
||
|
||
var options;
|
||
var pureJsParser = true;
|
||
var currentElement;
|
||
|
||
function validateOptions(userOptions) {
|
||
options = helper.copyOptions(userOptions);
|
||
helper.ensureFlagExists('ignoreDeclaration', options);
|
||
helper.ensureFlagExists('ignoreInstruction', options);
|
||
helper.ensureFlagExists('ignoreAttributes', options);
|
||
helper.ensureFlagExists('ignoreText', options);
|
||
helper.ensureFlagExists('ignoreComment', options);
|
||
helper.ensureFlagExists('ignoreCdata', options);
|
||
helper.ensureFlagExists('ignoreDoctype', options);
|
||
helper.ensureFlagExists('compact', options);
|
||
helper.ensureFlagExists('alwaysChildren', options);
|
||
helper.ensureFlagExists('addParent', options);
|
||
helper.ensureFlagExists('trim', options);
|
||
helper.ensureFlagExists('nativeType', options);
|
||
helper.ensureFlagExists('nativeTypeAttributes', options);
|
||
helper.ensureFlagExists('sanitize', options);
|
||
helper.ensureFlagExists('instructionHasAttributes', options);
|
||
helper.ensureFlagExists('captureSpacesBetweenElements', options);
|
||
helper.ensureAlwaysArrayExists(options);
|
||
helper.ensureKeyExists('declaration', options);
|
||
helper.ensureKeyExists('instruction', options);
|
||
helper.ensureKeyExists('attributes', options);
|
||
helper.ensureKeyExists('text', options);
|
||
helper.ensureKeyExists('comment', options);
|
||
helper.ensureKeyExists('cdata', options);
|
||
helper.ensureKeyExists('doctype', options);
|
||
helper.ensureKeyExists('type', options);
|
||
helper.ensureKeyExists('name', options);
|
||
helper.ensureKeyExists('elements', options);
|
||
helper.ensureKeyExists('parent', options);
|
||
helper.checkFnExists('doctype', options);
|
||
helper.checkFnExists('instruction', options);
|
||
helper.checkFnExists('cdata', options);
|
||
helper.checkFnExists('comment', options);
|
||
helper.checkFnExists('text', options);
|
||
helper.checkFnExists('instructionName', options);
|
||
helper.checkFnExists('elementName', options);
|
||
helper.checkFnExists('attributeName', options);
|
||
helper.checkFnExists('attributeValue', options);
|
||
helper.checkFnExists('attributes', options);
|
||
return options;
|
||
}
|
||
|
||
function nativeType(value) {
|
||
var nValue = Number(value);
|
||
if (!isNaN(nValue)) {
|
||
return nValue;
|
||
}
|
||
var bValue = value.toLowerCase();
|
||
if (bValue === 'true') {
|
||
return true;
|
||
} else if (bValue === 'false') {
|
||
return false;
|
||
}
|
||
return value;
|
||
}
|
||
|
||
function addField(type, value) {
|
||
var key;
|
||
if (options.compact) {
|
||
if (
|
||
!currentElement[options[type + 'Key']] &&
|
||
(isArray(options.alwaysArray) ? options.alwaysArray.indexOf(options[type + 'Key']) !== -1 : options.alwaysArray)
|
||
) {
|
||
currentElement[options[type + 'Key']] = [];
|
||
}
|
||
if (currentElement[options[type + 'Key']] && !isArray(currentElement[options[type + 'Key']])) {
|
||
currentElement[options[type + 'Key']] = [currentElement[options[type + 'Key']]];
|
||
}
|
||
if (type + 'Fn' in options && typeof value === 'string') {
|
||
value = options[type + 'Fn'](value, currentElement);
|
||
}
|
||
if (type === 'instruction' && ('instructionFn' in options || 'instructionNameFn' in options)) {
|
||
for (key in value) {
|
||
if (value.hasOwnProperty(key)) {
|
||
if ('instructionFn' in options) {
|
||
value[key] = options.instructionFn(value[key], key, currentElement);
|
||
} else {
|
||
var temp = value[key];
|
||
delete value[key];
|
||
value[options.instructionNameFn(key, temp, currentElement)] = temp;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
if (isArray(currentElement[options[type + 'Key']])) {
|
||
currentElement[options[type + 'Key']].push(value);
|
||
} else {
|
||
currentElement[options[type + 'Key']] = value;
|
||
}
|
||
} else {
|
||
if (!currentElement[options.elementsKey]) {
|
||
currentElement[options.elementsKey] = [];
|
||
}
|
||
var element = {};
|
||
element[options.typeKey] = type;
|
||
if (type === 'instruction') {
|
||
for (key in value) {
|
||
if (value.hasOwnProperty(key)) {
|
||
break;
|
||
}
|
||
}
|
||
element[options.nameKey] = 'instructionNameFn' in options ? options.instructionNameFn(key, value, currentElement) : key;
|
||
if (options.instructionHasAttributes) {
|
||
element[options.attributesKey] = value[key][options.attributesKey];
|
||
if ('instructionFn' in options) {
|
||
element[options.attributesKey] = options.instructionFn(element[options.attributesKey], key, currentElement);
|
||
}
|
||
} else {
|
||
if ('instructionFn' in options) {
|
||
value[key] = options.instructionFn(value[key], key, currentElement);
|
||
}
|
||
element[options.instructionKey] = value[key];
|
||
}
|
||
} else {
|
||
if (type + 'Fn' in options) {
|
||
value = options[type + 'Fn'](value, currentElement);
|
||
}
|
||
element[options[type + 'Key']] = value;
|
||
}
|
||
if (options.addParent) {
|
||
element[options.parentKey] = currentElement;
|
||
}
|
||
currentElement[options.elementsKey].push(element);
|
||
}
|
||
}
|
||
|
||
function manipulateAttributes(attributes) {
|
||
if ('attributesFn' in options && attributes) {
|
||
attributes = options.attributesFn(attributes, currentElement);
|
||
}
|
||
if ((options.trim || 'attributeValueFn' in options || 'attributeNameFn' in options || options.nativeTypeAttributes) && attributes) {
|
||
var key;
|
||
for (key in attributes) {
|
||
if (attributes.hasOwnProperty(key)) {
|
||
if (options.trim) attributes[key] = attributes[key].trim();
|
||
if (options.nativeTypeAttributes) {
|
||
attributes[key] = nativeType(attributes[key]);
|
||
}
|
||
if ('attributeValueFn' in options) attributes[key] = options.attributeValueFn(attributes[key], key, currentElement);
|
||
if ('attributeNameFn' in options) {
|
||
var temp = attributes[key];
|
||
delete attributes[key];
|
||
attributes[options.attributeNameFn(key, attributes[key], currentElement)] = temp;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
return attributes;
|
||
}
|
||
|
||
function onInstruction(instruction) {
|
||
var attributes = {};
|
||
if (instruction.body && (instruction.name.toLowerCase() === 'xml' || options.instructionHasAttributes)) {
|
||
var attrsRegExp = /([\w:-]+)\s*=\s*(?:"([^"]*)"|'([^']*)'|(\w+))\s*/g;
|
||
var match;
|
||
while ((match = attrsRegExp.exec(instruction.body)) !== null) {
|
||
attributes[match[1]] = match[2] || match[3] || match[4];
|
||
}
|
||
attributes = manipulateAttributes(attributes);
|
||
}
|
||
if (instruction.name.toLowerCase() === 'xml') {
|
||
if (options.ignoreDeclaration) {
|
||
return;
|
||
}
|
||
currentElement[options.declarationKey] = {};
|
||
if (Object.keys(attributes).length) {
|
||
currentElement[options.declarationKey][options.attributesKey] = attributes;
|
||
}
|
||
if (options.addParent) {
|
||
currentElement[options.declarationKey][options.parentKey] = currentElement;
|
||
}
|
||
} else {
|
||
if (options.ignoreInstruction) {
|
||
return;
|
||
}
|
||
if (options.trim) {
|
||
instruction.body = instruction.body.trim();
|
||
}
|
||
var value = {};
|
||
if (options.instructionHasAttributes && Object.keys(attributes).length) {
|
||
value[instruction.name] = {};
|
||
value[instruction.name][options.attributesKey] = attributes;
|
||
} else {
|
||
value[instruction.name] = instruction.body;
|
||
}
|
||
addField('instruction', value);
|
||
}
|
||
}
|
||
|
||
function onStartElement(name, attributes) {
|
||
var element;
|
||
if (typeof name === 'object') {
|
||
attributes = name.attributes;
|
||
name = name.name;
|
||
}
|
||
attributes = manipulateAttributes(attributes);
|
||
if ('elementNameFn' in options) {
|
||
name = options.elementNameFn(name, currentElement);
|
||
}
|
||
if (options.compact) {
|
||
element = {};
|
||
if (!options.ignoreAttributes && attributes && Object.keys(attributes).length) {
|
||
element[options.attributesKey] = {};
|
||
var key;
|
||
for (key in attributes) {
|
||
if (attributes.hasOwnProperty(key)) {
|
||
element[options.attributesKey][key] = attributes[key];
|
||
}
|
||
}
|
||
}
|
||
if (
|
||
!(name in currentElement) &&
|
||
(isArray(options.alwaysArray) ? options.alwaysArray.indexOf(name) !== -1 : options.alwaysArray)
|
||
) {
|
||
currentElement[name] = [];
|
||
}
|
||
if (currentElement[name] && !isArray(currentElement[name])) {
|
||
currentElement[name] = [currentElement[name]];
|
||
}
|
||
if (isArray(currentElement[name])) {
|
||
currentElement[name].push(element);
|
||
} else {
|
||
currentElement[name] = element;
|
||
}
|
||
} else {
|
||
if (!currentElement[options.elementsKey]) {
|
||
currentElement[options.elementsKey] = [];
|
||
}
|
||
element = {};
|
||
element[options.typeKey] = 'element';
|
||
element[options.nameKey] = name;
|
||
if (!options.ignoreAttributes && attributes && Object.keys(attributes).length) {
|
||
element[options.attributesKey] = attributes;
|
||
}
|
||
if (options.alwaysChildren) {
|
||
element[options.elementsKey] = [];
|
||
}
|
||
currentElement[options.elementsKey].push(element);
|
||
}
|
||
element[options.parentKey] = currentElement; // will be deleted in onEndElement() if !options.addParent
|
||
currentElement = element;
|
||
}
|
||
|
||
function onText(text) {
|
||
if (options.ignoreText) {
|
||
return;
|
||
}
|
||
if (!text.trim() && !options.captureSpacesBetweenElements) {
|
||
return;
|
||
}
|
||
if (options.trim) {
|
||
text = text.trim();
|
||
}
|
||
if (options.nativeType) {
|
||
text = nativeType(text);
|
||
}
|
||
if (options.sanitize) {
|
||
text = text.replace(/&/g, '&').replace(/</g, '<').replace(/>/g, '>');
|
||
}
|
||
addField('text', text);
|
||
}
|
||
|
||
function onComment(comment) {
|
||
if (options.ignoreComment) {
|
||
return;
|
||
}
|
||
if (options.trim) {
|
||
comment = comment.trim();
|
||
}
|
||
addField('comment', comment);
|
||
}
|
||
|
||
function onEndElement(name) {
|
||
var parentElement = currentElement[options.parentKey];
|
||
if (!options.addParent) {
|
||
delete currentElement[options.parentKey];
|
||
}
|
||
currentElement = parentElement;
|
||
}
|
||
|
||
function onCdata(cdata) {
|
||
if (options.ignoreCdata) {
|
||
return;
|
||
}
|
||
if (options.trim) {
|
||
cdata = cdata.trim();
|
||
}
|
||
addField('cdata', cdata);
|
||
}
|
||
|
||
function onDoctype(doctype) {
|
||
if (options.ignoreDoctype) {
|
||
return;
|
||
}
|
||
doctype = doctype.replace(/^ /, '');
|
||
if (options.trim) {
|
||
doctype = doctype.trim();
|
||
}
|
||
addField('doctype', doctype);
|
||
}
|
||
|
||
function onError(error) {
|
||
error.note = error; //console.error(error);
|
||
}
|
||
|
||
module.exports = function (xml, userOptions) {
|
||
|
||
var parser = pureJsParser ? sax.parser(true, {}) : parser = new expat.Parser('UTF-8');
|
||
var result = {};
|
||
currentElement = result;
|
||
|
||
options = validateOptions(userOptions);
|
||
|
||
if (pureJsParser) {
|
||
parser.opt = {strictEntities: true};
|
||
parser.onopentag = onStartElement;
|
||
parser.ontext = onText;
|
||
parser.oncomment = onComment;
|
||
parser.onclosetag = onEndElement;
|
||
parser.onerror = onError;
|
||
parser.oncdata = onCdata;
|
||
parser.ondoctype = onDoctype;
|
||
parser.onprocessinginstruction = onInstruction;
|
||
} else {
|
||
parser.on('startElement', onStartElement);
|
||
parser.on('text', onText);
|
||
parser.on('comment', onComment);
|
||
parser.on('endElement', onEndElement);
|
||
parser.on('error', onError);
|
||
//parser.on('startCdata', onStartCdata);
|
||
//parser.on('endCdata', onEndCdata);
|
||
//parser.on('entityDecl', onEntityDecl);
|
||
}
|
||
|
||
if (pureJsParser) {
|
||
parser.write(xml).close();
|
||
} else {
|
||
if (!parser.parse(xml)) {
|
||
throw new Error('XML parsing error: ' + parser.getError());
|
||
}
|
||
}
|
||
|
||
if (result[options.elementsKey]) {
|
||
var temp = result[options.elementsKey];
|
||
delete result[options.elementsKey];
|
||
result[options.elementsKey] = temp;
|
||
delete result.text;
|
||
}
|
||
|
||
return result;
|
||
|
||
};
|
||
|
||
},{"./array-helper":33,"./options-helper":37,"sax":27}],39:[function(require,module,exports){
|
||
var helper = require('./options-helper');
|
||
var xml2js = require('./xml2js');
|
||
|
||
function validateOptions (userOptions) {
|
||
var options = helper.copyOptions(userOptions);
|
||
helper.ensureSpacesExists(options);
|
||
return options;
|
||
}
|
||
|
||
module.exports = function(xml, userOptions) {
|
||
var options, js, json, parentKey;
|
||
options = validateOptions(userOptions);
|
||
js = xml2js(xml, options);
|
||
parentKey = 'compact' in options && options.compact ? '_parent' : 'parent';
|
||
// parentKey = ptions.compact ? '_parent' : 'parent'; // consider this
|
||
if ('addParent' in options && options.addParent) {
|
||
json = JSON.stringify(js, function (k, v) { return k === parentKey? '_' : v; }, options.spaces);
|
||
} else {
|
||
json = JSON.stringify(js, null, options.spaces);
|
||
}
|
||
return json.replace(/\u2028/g, '\\u2028').replace(/\u2029/g, '\\u2029');
|
||
};
|
||
|
||
},{"./options-helper":37,"./xml2js":38}],40:[function(require,module,exports){
|
||
"use strict";
|
||
|
||
var __importDefault = void 0 && (void 0).__importDefault || function (mod) {
|
||
return mod && mod.__esModule ? mod : {
|
||
"default": mod
|
||
};
|
||
};
|
||
Object.defineProperty(exports, "__esModule", {
|
||
value: true
|
||
});
|
||
exports.HandleZip = void 0;
|
||
var jszip_1 = __importDefault(require("jszip"));
|
||
var method_1 = require("./common/method");
|
||
var HandleZip = /** @class */function () {
|
||
function HandleZip(file) {
|
||
// Support nodejs fs to read files
|
||
// if(file instanceof File){
|
||
this.uploadFile = file;
|
||
// }
|
||
}
|
||
HandleZip.prototype.unzipFile = function (successFunc, errorFunc) {
|
||
// var new_zip:JSZip = new JSZip();
|
||
jszip_1["default"].loadAsync(this.uploadFile) // 1) read the Blob
|
||
.then(function (zip) {
|
||
var fileList = {},
|
||
lastIndex = Object.keys(zip.files).length,
|
||
index = 0;
|
||
zip.forEach(function (relativePath, zipEntry) {
|
||
var fileName = zipEntry.name;
|
||
var fileNameArr = fileName.split(".");
|
||
var suffix = fileNameArr[fileNameArr.length - 1].toLowerCase();
|
||
var fileType = "string";
|
||
if (suffix in {
|
||
"png": 1,
|
||
"jpeg": 1,
|
||
"jpg": 1,
|
||
"gif": 1,
|
||
"bmp": 1,
|
||
"tif": 1,
|
||
"webp": 1
|
||
}) {
|
||
fileType = "base64";
|
||
} else if (suffix == "emf") {
|
||
fileType = "arraybuffer";
|
||
}
|
||
zipEntry.async(fileType).then(function (data) {
|
||
if (fileType == "base64") {
|
||
data = "data:image/" + suffix + ";base64," + data;
|
||
}
|
||
fileList[zipEntry.name] = data;
|
||
// console.log(lastIndex, index);
|
||
if (lastIndex == index + 1) {
|
||
successFunc(fileList);
|
||
}
|
||
index++;
|
||
});
|
||
});
|
||
}, function (e) {
|
||
errorFunc(e);
|
||
});
|
||
};
|
||
HandleZip.prototype.unzipFileByUrl = function (url, successFunc, errorFunc) {
|
||
var new_zip = new jszip_1["default"]();
|
||
method_1.getBinaryContent(url, function (err, data) {
|
||
if (err) {
|
||
throw err; // or handle err
|
||
}
|
||
jszip_1["default"].loadAsync(data).then(function (zip) {
|
||
var fileList = {},
|
||
lastIndex = Object.keys(zip.files).length,
|
||
index = 0;
|
||
zip.forEach(function (relativePath, zipEntry) {
|
||
var fileName = zipEntry.name;
|
||
var fileNameArr = fileName.split(".");
|
||
var suffix = fileNameArr[fileNameArr.length - 1].toLowerCase();
|
||
var fileType = "string";
|
||
if (suffix in {
|
||
"png": 1,
|
||
"jpeg": 1,
|
||
"jpg": 1,
|
||
"gif": 1,
|
||
"bmp": 1,
|
||
"tif": 1,
|
||
"webp": 1
|
||
}) {
|
||
fileType = "base64";
|
||
} else if (suffix == "emf") {
|
||
fileType = "arraybuffer";
|
||
}
|
||
zipEntry.async(fileType).then(function (data) {
|
||
if (fileType == "base64") {
|
||
data = "data:image/" + suffix + ";base64," + data;
|
||
}
|
||
fileList[zipEntry.name] = data;
|
||
// console.log(lastIndex, index);
|
||
if (lastIndex == index + 1) {
|
||
successFunc(fileList);
|
||
}
|
||
index++;
|
||
});
|
||
});
|
||
}, function (e) {
|
||
errorFunc(e);
|
||
});
|
||
});
|
||
};
|
||
HandleZip.prototype.newZipFile = function () {
|
||
var zip = new jszip_1["default"]();
|
||
this.workBook = zip;
|
||
};
|
||
//title:"nested/hello.txt", content:"Hello Worldasdfasfasdfasfasfasfasfasdfas"
|
||
HandleZip.prototype.addToZipFile = function (title, content) {
|
||
if (this.workBook == null) {
|
||
var zip = new jszip_1["default"]();
|
||
this.workBook = zip;
|
||
}
|
||
this.workBook.file(title, content);
|
||
};
|
||
return HandleZip;
|
||
}();
|
||
exports.HandleZip = HandleZip;
|
||
|
||
},{"./common/method":49,"jszip":10}],41:[function(require,module,exports){
|
||
"use strict";
|
||
|
||
Object.defineProperty(exports, "__esModule", {
|
||
value: true
|
||
});
|
||
exports.LuckyImageBase = exports.LuckysheetCalcChain = exports.LuckySheetConfigMerge = exports.LuckySheetborderInfoCellValueStyle = exports.LuckySheetborderInfoCellValue = exports.LuckySheetborderInfoCellForImp = exports.LuckyConfig = exports.LuckyInlineString = exports.LuckySheetCellFormat = exports.LuckySheetCelldataValue = exports.LuckySheetCelldataBase = exports.LuckyFileInfo = exports.LuckySheetBase = exports.LuckyFileBase = void 0;
|
||
var LuckyFileBase = /** @class */function () {
|
||
function LuckyFileBase() {}
|
||
return LuckyFileBase;
|
||
}();
|
||
exports.LuckyFileBase = LuckyFileBase;
|
||
var LuckySheetBase = /** @class */function () {
|
||
function LuckySheetBase() {}
|
||
return LuckySheetBase;
|
||
}();
|
||
exports.LuckySheetBase = LuckySheetBase;
|
||
var LuckyFileInfo = /** @class */function () {
|
||
function LuckyFileInfo() {}
|
||
return LuckyFileInfo;
|
||
}();
|
||
exports.LuckyFileInfo = LuckyFileInfo;
|
||
var LuckySheetCelldataBase = /** @class */function () {
|
||
function LuckySheetCelldataBase() {}
|
||
return LuckySheetCelldataBase;
|
||
}();
|
||
exports.LuckySheetCelldataBase = LuckySheetCelldataBase;
|
||
var LuckySheetCelldataValue = /** @class */function () {
|
||
function LuckySheetCelldataValue() {}
|
||
return LuckySheetCelldataValue;
|
||
}();
|
||
exports.LuckySheetCelldataValue = LuckySheetCelldataValue;
|
||
var LuckySheetCellFormat = /** @class */function () {
|
||
function LuckySheetCellFormat() {}
|
||
return LuckySheetCellFormat;
|
||
}();
|
||
exports.LuckySheetCellFormat = LuckySheetCellFormat;
|
||
var LuckyInlineString = /** @class */function () {
|
||
function LuckyInlineString() {}
|
||
return LuckyInlineString;
|
||
}();
|
||
exports.LuckyInlineString = LuckyInlineString;
|
||
var LuckyConfig = /** @class */function () {
|
||
function LuckyConfig() {}
|
||
return LuckyConfig;
|
||
}();
|
||
exports.LuckyConfig = LuckyConfig;
|
||
var LuckySheetborderInfoCellForImp = /** @class */function () {
|
||
function LuckySheetborderInfoCellForImp() {}
|
||
return LuckySheetborderInfoCellForImp;
|
||
}();
|
||
exports.LuckySheetborderInfoCellForImp = LuckySheetborderInfoCellForImp;
|
||
var LuckySheetborderInfoCellValue = /** @class */function () {
|
||
function LuckySheetborderInfoCellValue() {}
|
||
return LuckySheetborderInfoCellValue;
|
||
}();
|
||
exports.LuckySheetborderInfoCellValue = LuckySheetborderInfoCellValue;
|
||
var LuckySheetborderInfoCellValueStyle = /** @class */function () {
|
||
function LuckySheetborderInfoCellValueStyle() {}
|
||
return LuckySheetborderInfoCellValueStyle;
|
||
}();
|
||
exports.LuckySheetborderInfoCellValueStyle = LuckySheetborderInfoCellValueStyle;
|
||
var LuckySheetConfigMerge = /** @class */function () {
|
||
function LuckySheetConfigMerge() {}
|
||
return LuckySheetConfigMerge;
|
||
}();
|
||
exports.LuckySheetConfigMerge = LuckySheetConfigMerge;
|
||
var LuckysheetCalcChain = /** @class */function () {
|
||
function LuckysheetCalcChain() {}
|
||
return LuckysheetCalcChain;
|
||
}();
|
||
exports.LuckysheetCalcChain = LuckysheetCalcChain;
|
||
var LuckyImageBase = /** @class */function () {
|
||
function LuckyImageBase() {}
|
||
return LuckyImageBase;
|
||
}();
|
||
exports.LuckyImageBase = LuckyImageBase;
|
||
|
||
},{}],42:[function(require,module,exports){
|
||
"use strict";
|
||
|
||
var __extends = void 0 && (void 0).__extends || function () {
|
||
var _extendStatics = function extendStatics(d, b) {
|
||
_extendStatics = Object.setPrototypeOf || {
|
||
__proto__: []
|
||
} instanceof Array && function (d, b) {
|
||
d.__proto__ = b;
|
||
} || function (d, b) {
|
||
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
|
||
};
|
||
return _extendStatics(d, b);
|
||
};
|
||
return function (d, b) {
|
||
_extendStatics(d, b);
|
||
function __() {
|
||
this.constructor = d;
|
||
}
|
||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
||
};
|
||
}();
|
||
Object.defineProperty(exports, "__esModule", {
|
||
value: true
|
||
});
|
||
exports.LuckySheetCelldata = void 0;
|
||
var ReadXml_1 = require("./ReadXml");
|
||
var method_1 = require("../common/method");
|
||
var constant_1 = require("../common/constant");
|
||
var LuckyBase_1 = require("./LuckyBase");
|
||
var LuckySheetCelldata = /** @class */function (_super) {
|
||
__extends(LuckySheetCelldata, _super);
|
||
function LuckySheetCelldata(cell, styles, sharedStrings, mergeCells, sheetFile, ReadXml) {
|
||
var _this =
|
||
//Private
|
||
_super.call(this) || this;
|
||
_this.cell = cell;
|
||
_this.sheetFile = sheetFile;
|
||
_this.styles = styles;
|
||
_this.sharedStrings = sharedStrings;
|
||
_this.readXml = ReadXml;
|
||
_this.mergeCells = mergeCells;
|
||
var attrList = cell.attributeList;
|
||
var r = attrList.r,
|
||
s = attrList.s,
|
||
t = attrList.t;
|
||
var range = method_1.getcellrange(r);
|
||
_this.r = range.row[0];
|
||
_this.c = range.column[0];
|
||
_this.v = _this.generateValue(s, t);
|
||
return _this;
|
||
}
|
||
/**
|
||
* @param s Style index ,start 1
|
||
* @param t Cell type, Optional value is ST_CellType, it's found at constat.ts
|
||
*/
|
||
LuckySheetCelldata.prototype.generateValue = function (s, t) {
|
||
var _this = this;
|
||
var v = this.cell.getInnerElements("v");
|
||
var f = this.cell.getInnerElements("f");
|
||
if (v == null) {
|
||
v = this.cell.getInnerElements("t");
|
||
}
|
||
var cellXfs = this.styles["cellXfs"];
|
||
var cellStyleXfs = this.styles["cellStyleXfs"];
|
||
var cellStyles = this.styles["cellStyles"];
|
||
var fonts = this.styles["fonts"];
|
||
var fills = this.styles["fills"];
|
||
var borders = this.styles["borders"];
|
||
var numfmts = this.styles["numfmts"];
|
||
var clrScheme = this.styles["clrScheme"];
|
||
var sharedStrings = this.sharedStrings;
|
||
var cellValue = new LuckyBase_1.LuckySheetCelldataValue();
|
||
if (f != null) {
|
||
var formula = f[0],
|
||
attrList = formula.attributeList;
|
||
var t_1 = attrList.t,
|
||
ref = attrList.ref,
|
||
si = attrList.si;
|
||
var formulaValue = f[0].value;
|
||
if (t_1 == "shared") {
|
||
this._fomulaRef = ref;
|
||
this._formulaType = t_1;
|
||
this._formulaSi = si;
|
||
}
|
||
// console.log(ref, t, si);
|
||
if (ref != null || formulaValue != null && formulaValue.length > 0) {
|
||
formulaValue = method_1.escapeCharacter(formulaValue);
|
||
cellValue.f = "=" + formulaValue;
|
||
}
|
||
}
|
||
var familyFont = null;
|
||
var quotePrefix;
|
||
if (s != null) {
|
||
var sNum = parseInt(s);
|
||
var cellXf = cellXfs[sNum];
|
||
var xfId = cellXf.attributeList.xfId;
|
||
var numFmtId = void 0,
|
||
fontId = void 0,
|
||
fillId = void 0,
|
||
borderId = void 0;
|
||
var horizontal = void 0,
|
||
vertical = void 0,
|
||
wrapText = void 0,
|
||
textRotation = void 0,
|
||
shrinkToFit = void 0,
|
||
indent = void 0,
|
||
applyProtection = void 0;
|
||
if (xfId != null) {
|
||
var cellStyleXf = cellStyleXfs[parseInt(xfId)];
|
||
var attrList = cellStyleXf.attributeList;
|
||
var applyNumberFormat_1 = attrList.applyNumberFormat;
|
||
var applyFont_1 = attrList.applyFont;
|
||
var applyFill_1 = attrList.applyFill;
|
||
var applyBorder_1 = attrList.applyBorder;
|
||
var applyAlignment_1 = attrList.applyAlignment;
|
||
// let applyProtection = attrList.applyProtection;
|
||
applyProtection = attrList.applyProtection;
|
||
quotePrefix = attrList.quotePrefix;
|
||
if (applyNumberFormat_1 != "0" && attrList.numFmtId != null) {
|
||
// if(attrList.numFmtId!="0"){
|
||
numFmtId = attrList.numFmtId;
|
||
// }
|
||
}
|
||
if (applyFont_1 != "0" && attrList.fontId != null) {
|
||
fontId = attrList.fontId;
|
||
}
|
||
if (applyFill_1 != "0" && attrList.fillId != null) {
|
||
fillId = attrList.fillId;
|
||
}
|
||
if (applyBorder_1 != "0" && attrList.borderId != null) {
|
||
borderId = attrList.borderId;
|
||
}
|
||
if (applyAlignment_1 != null && applyAlignment_1 != "0") {
|
||
var alignment = cellStyleXf.getInnerElements("alignment");
|
||
if (alignment != null) {
|
||
var attrList_1 = alignment[0].attributeList;
|
||
if (attrList_1.horizontal != null) {
|
||
horizontal = attrList_1.horizontal;
|
||
}
|
||
if (attrList_1.vertical != null) {
|
||
vertical = attrList_1.vertical;
|
||
}
|
||
if (attrList_1.wrapText != null) {
|
||
wrapText = attrList_1.wrapText;
|
||
}
|
||
if (attrList_1.textRotation != null) {
|
||
textRotation = attrList_1.textRotation;
|
||
}
|
||
if (attrList_1.shrinkToFit != null) {
|
||
shrinkToFit = attrList_1.shrinkToFit;
|
||
}
|
||
if (attrList_1.indent != null) {
|
||
indent = attrList_1.indent;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
var applyNumberFormat = cellXf.attributeList.applyNumberFormat;
|
||
var applyFont = cellXf.attributeList.applyFont;
|
||
var applyFill = cellXf.attributeList.applyFill;
|
||
var applyBorder = cellXf.attributeList.applyBorder;
|
||
var applyAlignment = cellXf.attributeList.applyAlignment;
|
||
if (cellXf.attributeList.applyProtection != null) {
|
||
applyProtection = cellXf.attributeList.applyProtection;
|
||
}
|
||
if (cellXf.attributeList.quotePrefix != null) {
|
||
quotePrefix = cellXf.attributeList.quotePrefix;
|
||
}
|
||
if (applyNumberFormat != "0" && cellXf.attributeList.numFmtId != null) {
|
||
numFmtId = cellXf.attributeList.numFmtId;
|
||
}
|
||
if (applyFont != "0") {
|
||
fontId = cellXf.attributeList.fontId;
|
||
}
|
||
if (applyFill != "0") {
|
||
fillId = cellXf.attributeList.fillId;
|
||
}
|
||
if (applyBorder != "0") {
|
||
borderId = cellXf.attributeList.borderId;
|
||
}
|
||
if (applyAlignment != "0") {
|
||
var alignment = cellXf.getInnerElements("alignment");
|
||
if (alignment != null && alignment.length > 0) {
|
||
var attrList = alignment[0].attributeList;
|
||
if (attrList.horizontal != null) {
|
||
horizontal = attrList.horizontal;
|
||
}
|
||
if (attrList.vertical != null) {
|
||
vertical = attrList.vertical;
|
||
}
|
||
if (attrList.wrapText != null) {
|
||
wrapText = attrList.wrapText;
|
||
}
|
||
if (attrList.textRotation != null) {
|
||
textRotation = attrList.textRotation;
|
||
}
|
||
if (attrList.shrinkToFit != null) {
|
||
shrinkToFit = attrList.shrinkToFit;
|
||
}
|
||
if (attrList.indent != null) {
|
||
indent = attrList.indent;
|
||
}
|
||
}
|
||
}
|
||
if (numFmtId != undefined) {
|
||
var numf = numfmts[parseInt(numFmtId)];
|
||
var cellFormat = new LuckyBase_1.LuckySheetCellFormat();
|
||
cellFormat.fa = method_1.escapeCharacter(numf);
|
||
// console.log(numf, numFmtId, this.v);
|
||
cellFormat.t = t || 'd';
|
||
cellValue.ct = cellFormat;
|
||
}
|
||
if (fillId != undefined) {
|
||
var fillIdNum = parseInt(fillId);
|
||
var fill = fills[fillIdNum];
|
||
// console.log(cellValue.v);
|
||
var bg = this.getBackgroundByFill(fill, clrScheme);
|
||
if (bg != null) {
|
||
cellValue.bg = bg;
|
||
}
|
||
}
|
||
if (fontId != undefined) {
|
||
var fontIdNum = parseInt(fontId);
|
||
var font = fonts[fontIdNum];
|
||
if (font != null) {
|
||
var sz = font.getInnerElements("sz"); //font size
|
||
var colors = font.getInnerElements("color"); //font color
|
||
var family = font.getInnerElements("name"); //font family
|
||
var familyOverrides = font.getInnerElements("family"); //font family will be overrided by name
|
||
var charset = font.getInnerElements("charset"); //font charset
|
||
var bolds = font.getInnerElements("b"); //font bold
|
||
var italics = font.getInnerElements("i"); //font italic
|
||
var strikes = font.getInnerElements("strike"); //font italic
|
||
var underlines = font.getInnerElements("u"); //font italic
|
||
if (sz != null && sz.length > 0) {
|
||
var fs = sz[0].attributeList.val;
|
||
if (fs != null) {
|
||
cellValue.fs = parseInt(fs);
|
||
}
|
||
}
|
||
if (colors != null && colors.length > 0) {
|
||
var color = colors[0];
|
||
var fc = ReadXml_1.getColor(color, this.styles, "t");
|
||
if (fc != null) {
|
||
cellValue.fc = fc;
|
||
}
|
||
}
|
||
if (familyOverrides != null && familyOverrides.length > 0) {
|
||
var val = familyOverrides[0].attributeList.val;
|
||
if (val != null) {
|
||
familyFont = constant_1.fontFamilys[val];
|
||
}
|
||
}
|
||
if (family != null && family.length > 0) {
|
||
var val = family[0].attributeList.val;
|
||
if (val != null) {
|
||
cellValue.ff = val;
|
||
}
|
||
}
|
||
if (bolds != null && bolds.length > 0) {
|
||
var bold = bolds[0].attributeList.val;
|
||
if (bold == "0") {
|
||
cellValue.bl = 0;
|
||
} else {
|
||
cellValue.bl = 1;
|
||
}
|
||
}
|
||
if (italics != null && italics.length > 0) {
|
||
var italic = italics[0].attributeList.val;
|
||
if (italic == "0") {
|
||
cellValue.it = 0;
|
||
} else {
|
||
cellValue.it = 1;
|
||
}
|
||
}
|
||
if (strikes != null && strikes.length > 0) {
|
||
var strike = strikes[0].attributeList.val;
|
||
if (strike == "0") {
|
||
cellValue.cl = 0;
|
||
} else {
|
||
cellValue.cl = 1;
|
||
}
|
||
}
|
||
if (underlines != null && underlines.length > 0) {
|
||
var underline = underlines[0].attributeList.val;
|
||
if (underline == "single") {
|
||
cellValue.un = 1;
|
||
} else if (underline == "double") {
|
||
cellValue.un = 2;
|
||
} else if (underline == "singleAccounting") {
|
||
cellValue.un = 3;
|
||
} else if (underline == "doubleAccounting") {
|
||
cellValue.un = 4;
|
||
} else {
|
||
cellValue.un = 0;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
// vt: number | undefined//Vertical alignment, 0 middle, 1 up, 2 down, alignment
|
||
// ht: number | undefined//Horizontal alignment,0 center, 1 left, 2 right, alignment
|
||
// tr: number | undefined //Text rotation,0: 0、1: 45 、2: -45、3 Vertical text、4: 90 、5: -90, alignment
|
||
// tb: number | undefined //Text wrap,0 truncation, 1 overflow, 2 word wrap, alignment
|
||
if (horizontal != undefined) {
|
||
//Horizontal alignment
|
||
if (horizontal == "center") {
|
||
cellValue.ht = 0;
|
||
} else if (horizontal == "centerContinuous") {
|
||
cellValue.ht = 0; //luckysheet unsupport
|
||
} else if (horizontal == "left") {
|
||
cellValue.ht = 1;
|
||
} else if (horizontal == "right") {
|
||
cellValue.ht = 2;
|
||
} else if (horizontal == "distributed") {
|
||
cellValue.ht = 0; //luckysheet unsupport
|
||
} else if (horizontal == "fill") {
|
||
cellValue.ht = 1; //luckysheet unsupport
|
||
} else if (horizontal == "general") {
|
||
cellValue.ht = 1; //luckysheet unsupport
|
||
} else if (horizontal == "justify") {
|
||
cellValue.ht = 0; //luckysheet unsupport
|
||
} else {
|
||
cellValue.ht = 1;
|
||
}
|
||
}
|
||
if (vertical != undefined) {
|
||
//Vertical alignment
|
||
if (vertical == "bottom") {
|
||
cellValue.vt = 2;
|
||
} else if (vertical == "center") {
|
||
cellValue.vt = 0;
|
||
} else if (vertical == "distributed") {
|
||
cellValue.vt = 0; //luckysheet unsupport
|
||
} else if (vertical == "justify") {
|
||
cellValue.vt = 0; //luckysheet unsupport
|
||
} else if (vertical == "top") {
|
||
cellValue.vt = 1;
|
||
} else {
|
||
cellValue.vt = 1;
|
||
}
|
||
} else {
|
||
//sometimes bottom style is lost after setting it in excel
|
||
//when vertical is undefined set it to 2.
|
||
cellValue.vt = 2;
|
||
}
|
||
if (wrapText != undefined) {
|
||
if (wrapText == "1") {
|
||
cellValue.tb = 2;
|
||
} else {
|
||
cellValue.tb = 1;
|
||
}
|
||
} else {
|
||
cellValue.tb = 1;
|
||
}
|
||
if (textRotation != undefined) {
|
||
// tr: number | undefined //Text rotation,0: 0、1: 45 、2: -45、3 Vertical text、4: 90 、5: -90, alignment
|
||
if (textRotation == "255") {
|
||
cellValue.tr = 3;
|
||
}
|
||
// else if(textRotation=="45"){
|
||
// cellValue.tr = 1;
|
||
// }
|
||
// else if(textRotation=="90"){
|
||
// cellValue.tr = 4;
|
||
// }
|
||
// else if(textRotation=="135"){
|
||
// cellValue.tr = 2;
|
||
// }
|
||
// else if(textRotation=="180"){
|
||
// cellValue.tr = 5;
|
||
// }
|
||
else {
|
||
cellValue.tr = 0;
|
||
cellValue.rt = parseInt(textRotation);
|
||
}
|
||
}
|
||
if (shrinkToFit != undefined) {//luckysheet unsupport
|
||
}
|
||
if (indent != undefined) {//luckysheet unsupport
|
||
}
|
||
if (borderId != undefined) {
|
||
var borderIdNum = parseInt(borderId);
|
||
var border = borders[borderIdNum];
|
||
// this._borderId = borderIdNum;
|
||
var borderObject = new LuckyBase_1.LuckySheetborderInfoCellForImp();
|
||
borderObject.rangeType = "cell";
|
||
// borderObject.cells = [];
|
||
var borderCellValue = new LuckyBase_1.LuckySheetborderInfoCellValue();
|
||
borderCellValue.row_index = this.r;
|
||
borderCellValue.col_index = this.c;
|
||
var lefts = border.getInnerElements("left");
|
||
var rights = border.getInnerElements("right");
|
||
var tops = border.getInnerElements("top");
|
||
var bottoms = border.getInnerElements("bottom");
|
||
var diagonals = border.getInnerElements("diagonal");
|
||
var starts = border.getInnerElements("start");
|
||
var ends = border.getInnerElements("end");
|
||
var left = this.getBorderInfo(lefts);
|
||
var right = this.getBorderInfo(rights);
|
||
var top_1 = this.getBorderInfo(tops);
|
||
var bottom = this.getBorderInfo(bottoms);
|
||
var diagonal = this.getBorderInfo(diagonals);
|
||
var start = this.getBorderInfo(starts);
|
||
var end = this.getBorderInfo(ends);
|
||
var isAdd = false;
|
||
if (start != null && start.color != null) {
|
||
borderCellValue.l = start;
|
||
isAdd = true;
|
||
}
|
||
if (end != null && end.color != null) {
|
||
borderCellValue.r = end;
|
||
isAdd = true;
|
||
}
|
||
if (left != null && left.color != null) {
|
||
borderCellValue.l = left;
|
||
isAdd = true;
|
||
}
|
||
if (right != null && right.color != null) {
|
||
borderCellValue.r = right;
|
||
isAdd = true;
|
||
}
|
||
if (top_1 != null && top_1.color != null) {
|
||
borderCellValue.t = top_1;
|
||
isAdd = true;
|
||
}
|
||
if (bottom != null && bottom.color != null) {
|
||
borderCellValue.b = bottom;
|
||
isAdd = true;
|
||
}
|
||
if (isAdd) {
|
||
borderObject.value = borderCellValue;
|
||
// this.config._borderInfo[borderId] = borderObject;
|
||
this._borderObject = borderObject;
|
||
}
|
||
}
|
||
} else {
|
||
cellValue.tb = 1;
|
||
}
|
||
if (v != null) {
|
||
var value = v[0].value;
|
||
if (/&#\d+;/.test(value)) {
|
||
value = this.htmlDecode(value);
|
||
}
|
||
if (t == constant_1.ST_CellType["SharedString"]) {
|
||
var siIndex = parseInt(v[0].value);
|
||
var sharedSI = sharedStrings[siIndex];
|
||
var rFlag = sharedSI.getInnerElements("r");
|
||
if (rFlag == null) {
|
||
var tFlag = sharedSI.getInnerElements("t");
|
||
if (tFlag != null) {
|
||
var text_1 = "";
|
||
tFlag.forEach(function (t) {
|
||
text_1 += t.value;
|
||
});
|
||
text_1 = method_1.escapeCharacter(text_1);
|
||
//isContainMultiType(text) &&
|
||
if (familyFont == "Roman" && text_1.length > 0) {
|
||
var textArray = text_1.split("");
|
||
var preWordType = null,
|
||
wordText = "",
|
||
preWholef = null;
|
||
var wholef = "Times New Roman";
|
||
if (cellValue.ff != null) {
|
||
wholef = cellValue.ff;
|
||
}
|
||
var cellFormat = cellValue.ct;
|
||
if (cellFormat == null) {
|
||
cellFormat = new LuckyBase_1.LuckySheetCellFormat();
|
||
}
|
||
if (cellFormat.s == null) {
|
||
cellFormat.s = [];
|
||
}
|
||
for (var i = 0; i < textArray.length; i++) {
|
||
var w = textArray[i];
|
||
var type = null,
|
||
ff = wholef;
|
||
if (method_1.isChinese(w)) {
|
||
type = "c";
|
||
ff = "宋体";
|
||
} else if (method_1.isJapanese(w)) {
|
||
type = "j";
|
||
ff = "Yu Gothic";
|
||
} else if (method_1.isKoera(w)) {
|
||
type = "k";
|
||
ff = "Malgun Gothic";
|
||
} else {
|
||
type = "e";
|
||
}
|
||
if (type != preWordType && preWordType != null || i == textArray.length - 1) {
|
||
var InlineString = new LuckyBase_1.LuckyInlineString();
|
||
InlineString.ff = preWholef;
|
||
if (cellValue.fc != null) {
|
||
InlineString.fc = cellValue.fc;
|
||
}
|
||
if (cellValue.fs != null) {
|
||
InlineString.fs = cellValue.fs;
|
||
}
|
||
if (cellValue.cl != null) {
|
||
InlineString.cl = cellValue.cl;
|
||
}
|
||
if (cellValue.un != null) {
|
||
InlineString.un = cellValue.un;
|
||
}
|
||
if (cellValue.bl != null) {
|
||
InlineString.bl = cellValue.bl;
|
||
}
|
||
if (cellValue.it != null) {
|
||
InlineString.it = cellValue.it;
|
||
}
|
||
if (i == textArray.length - 1) {
|
||
if (type == preWordType) {
|
||
InlineString.ff = ff;
|
||
InlineString.v = wordText + w;
|
||
} else {
|
||
InlineString.ff = preWholef;
|
||
InlineString.v = wordText;
|
||
cellFormat.s.push(InlineString);
|
||
var InlineStringLast = new LuckyBase_1.LuckyInlineString();
|
||
InlineStringLast.ff = ff;
|
||
InlineStringLast.v = w;
|
||
if (cellValue.fc != null) {
|
||
InlineStringLast.fc = cellValue.fc;
|
||
}
|
||
if (cellValue.fs != null) {
|
||
InlineStringLast.fs = cellValue.fs;
|
||
}
|
||
if (cellValue.cl != null) {
|
||
InlineStringLast.cl = cellValue.cl;
|
||
}
|
||
if (cellValue.un != null) {
|
||
InlineStringLast.un = cellValue.un;
|
||
}
|
||
if (cellValue.bl != null) {
|
||
InlineStringLast.bl = cellValue.bl;
|
||
}
|
||
if (cellValue.it != null) {
|
||
InlineStringLast.it = cellValue.it;
|
||
}
|
||
cellFormat.s.push(InlineStringLast);
|
||
break;
|
||
}
|
||
} else {
|
||
InlineString.v = wordText;
|
||
}
|
||
cellFormat.s.push(InlineString);
|
||
wordText = w;
|
||
} else {
|
||
wordText += w;
|
||
}
|
||
preWordType = type;
|
||
preWholef = ff;
|
||
}
|
||
cellFormat.t = "inlineStr";
|
||
// cellFormat.s = [InlineString];
|
||
cellValue.ct = cellFormat;
|
||
// console.log(cellValue);
|
||
} else {
|
||
text_1 = this.replaceSpecialWrap(text_1);
|
||
if (text_1.indexOf("\r\n") > -1 || text_1.indexOf("\n") > -1) {
|
||
var InlineString = new LuckyBase_1.LuckyInlineString();
|
||
InlineString.v = text_1;
|
||
var cellFormat = cellValue.ct;
|
||
if (cellFormat == null) {
|
||
cellFormat = new LuckyBase_1.LuckySheetCellFormat();
|
||
}
|
||
if (cellValue.ff != null) {
|
||
InlineString.ff = cellValue.ff;
|
||
}
|
||
if (cellValue.fc != null) {
|
||
InlineString.fc = cellValue.fc;
|
||
}
|
||
if (cellValue.fs != null) {
|
||
InlineString.fs = cellValue.fs;
|
||
}
|
||
if (cellValue.cl != null) {
|
||
InlineString.cl = cellValue.cl;
|
||
}
|
||
if (cellValue.un != null) {
|
||
InlineString.un = cellValue.un;
|
||
}
|
||
if (cellValue.bl != null) {
|
||
InlineString.bl = cellValue.bl;
|
||
}
|
||
if (cellValue.it != null) {
|
||
InlineString.it = cellValue.it;
|
||
}
|
||
cellFormat.t = "inlineStr";
|
||
cellFormat.s = [InlineString];
|
||
cellValue.ct = cellFormat;
|
||
} else {
|
||
cellValue.v = text_1;
|
||
quotePrefix = "1";
|
||
}
|
||
}
|
||
}
|
||
} else {
|
||
var styles_1 = [];
|
||
rFlag.forEach(function (r) {
|
||
var tFlag = r.getInnerElements("t");
|
||
var rPr = r.getInnerElements("rPr");
|
||
var InlineString = new LuckyBase_1.LuckyInlineString();
|
||
if (tFlag != null && tFlag.length > 0) {
|
||
var text = tFlag[0].value;
|
||
text = _this.replaceSpecialWrap(text);
|
||
text = method_1.escapeCharacter(text);
|
||
InlineString.v = text;
|
||
}
|
||
if (rPr != null && rPr.length > 0) {
|
||
var frpr = rPr[0];
|
||
var sz = ReadXml_1.getlineStringAttr(frpr, "sz"),
|
||
rFont = ReadXml_1.getlineStringAttr(frpr, "rFont"),
|
||
family = ReadXml_1.getlineStringAttr(frpr, "family"),
|
||
charset = ReadXml_1.getlineStringAttr(frpr, "charset"),
|
||
scheme = ReadXml_1.getlineStringAttr(frpr, "scheme"),
|
||
b = ReadXml_1.getlineStringAttr(frpr, "b"),
|
||
i = ReadXml_1.getlineStringAttr(frpr, "i"),
|
||
u = ReadXml_1.getlineStringAttr(frpr, "u"),
|
||
strike = ReadXml_1.getlineStringAttr(frpr, "strike"),
|
||
vertAlign = ReadXml_1.getlineStringAttr(frpr, "vertAlign"),
|
||
color = void 0;
|
||
var cEle = frpr.getInnerElements("color");
|
||
if (cEle != null && cEle.length > 0) {
|
||
color = ReadXml_1.getColor(cEle[0], _this.styles, "t");
|
||
}
|
||
var ff = void 0;
|
||
// if(family!=null){
|
||
// ff = fontFamilys[family];
|
||
// }
|
||
if (rFont != null) {
|
||
ff = rFont;
|
||
}
|
||
if (ff != null) {
|
||
InlineString.ff = ff;
|
||
} else if (cellValue.ff != null) {
|
||
InlineString.ff = cellValue.ff;
|
||
}
|
||
if (color != null) {
|
||
InlineString.fc = color;
|
||
} else if (cellValue.fc != null) {
|
||
InlineString.fc = cellValue.fc;
|
||
}
|
||
if (sz != null) {
|
||
InlineString.fs = parseInt(sz);
|
||
} else if (cellValue.fs != null) {
|
||
InlineString.fs = cellValue.fs;
|
||
}
|
||
if (strike != null) {
|
||
InlineString.cl = parseInt(strike);
|
||
} else if (cellValue.cl != null) {
|
||
InlineString.cl = cellValue.cl;
|
||
}
|
||
if (u != null) {
|
||
InlineString.un = parseInt(u);
|
||
} else if (cellValue.un != null) {
|
||
InlineString.un = cellValue.un;
|
||
}
|
||
if (b != null) {
|
||
InlineString.bl = parseInt(b);
|
||
} else if (cellValue.bl != null) {
|
||
InlineString.bl = cellValue.bl;
|
||
}
|
||
if (i != null) {
|
||
InlineString.it = parseInt(i);
|
||
} else if (cellValue.it != null) {
|
||
InlineString.it = cellValue.it;
|
||
}
|
||
if (vertAlign != null) {
|
||
InlineString.va = parseInt(vertAlign);
|
||
}
|
||
// ff:string | undefined //font family
|
||
// fc:string | undefined//font color
|
||
// fs:number | undefined//font size
|
||
// cl:number | undefined//strike
|
||
// un:number | undefined//underline
|
||
// bl:number | undefined//blod
|
||
// it:number | undefined//italic
|
||
// v:string | undefined
|
||
} else {
|
||
if (InlineString.ff == null && cellValue.ff != null) {
|
||
InlineString.ff = cellValue.ff;
|
||
}
|
||
if (InlineString.fc == null && cellValue.fc != null) {
|
||
InlineString.fc = cellValue.fc;
|
||
}
|
||
if (InlineString.fs == null && cellValue.fs != null) {
|
||
InlineString.fs = cellValue.fs;
|
||
}
|
||
if (InlineString.cl == null && cellValue.cl != null) {
|
||
InlineString.cl = cellValue.cl;
|
||
}
|
||
if (InlineString.un == null && cellValue.un != null) {
|
||
InlineString.un = cellValue.un;
|
||
}
|
||
if (InlineString.bl == null && cellValue.bl != null) {
|
||
InlineString.bl = cellValue.bl;
|
||
}
|
||
if (InlineString.it == null && cellValue.it != null) {
|
||
InlineString.it = cellValue.it;
|
||
}
|
||
}
|
||
styles_1.push(InlineString);
|
||
});
|
||
var cellFormat = cellValue.ct;
|
||
if (cellFormat == null) {
|
||
cellFormat = new LuckyBase_1.LuckySheetCellFormat();
|
||
}
|
||
cellFormat.t = "inlineStr";
|
||
cellFormat.s = styles_1;
|
||
cellValue.ct = cellFormat;
|
||
}
|
||
}
|
||
// to be confirmed
|
||
else if (t == constant_1.ST_CellType["InlineString"] && v != null) {
|
||
cellValue.v = "'" + value;
|
||
} else {
|
||
value = method_1.escapeCharacter(value);
|
||
cellValue.v = value;
|
||
}
|
||
}
|
||
if (quotePrefix != null) {
|
||
cellValue.qp = parseInt(quotePrefix);
|
||
}
|
||
return cellValue;
|
||
};
|
||
LuckySheetCelldata.prototype.replaceSpecialWrap = function (text) {
|
||
text = text.replace(/_x000D_/g, "").replace(/ /g, "\r\n").replace(/ /g, "\r").replace(/ /g, "\n");
|
||
return text;
|
||
};
|
||
LuckySheetCelldata.prototype.getBackgroundByFill = function (fill, clrScheme) {
|
||
var patternFills = fill.getInnerElements("patternFill");
|
||
if (patternFills != null) {
|
||
var patternFill = patternFills[0];
|
||
var fgColors = patternFill.getInnerElements("fgColor");
|
||
var bgColors = patternFill.getInnerElements("bgColor");
|
||
var fg = void 0,
|
||
bg = void 0;
|
||
if (fgColors != null) {
|
||
var fgColor = fgColors[0];
|
||
fg = ReadXml_1.getColor(fgColor, this.styles);
|
||
}
|
||
if (bgColors != null) {
|
||
var bgColor = bgColors[0];
|
||
bg = ReadXml_1.getColor(bgColor, this.styles);
|
||
}
|
||
// console.log(fgColors,bgColors,clrScheme);
|
||
if (fg != null) {
|
||
return fg;
|
||
} else if (bg != null) {
|
||
return bg;
|
||
}
|
||
} else {
|
||
var gradientfills = fill.getInnerElements("gradientFill");
|
||
if (gradientfills != null) {
|
||
//graient color fill handler
|
||
return null;
|
||
}
|
||
}
|
||
};
|
||
LuckySheetCelldata.prototype.getBorderInfo = function (borders) {
|
||
if (borders == null) {
|
||
return null;
|
||
}
|
||
var border = borders[0],
|
||
attrList = border.attributeList;
|
||
var clrScheme = this.styles["clrScheme"];
|
||
var style = attrList.style;
|
||
if (style == null || style == "none") {
|
||
return null;
|
||
}
|
||
var colors = border.getInnerElements("color");
|
||
var colorRet = "#000000";
|
||
if (colors != null) {
|
||
var color = colors[0];
|
||
colorRet = ReadXml_1.getColor(color, this.styles, "b");
|
||
if (colorRet == null) {
|
||
colorRet = "#000000";
|
||
}
|
||
}
|
||
var ret = new LuckyBase_1.LuckySheetborderInfoCellValueStyle();
|
||
ret.style = constant_1.borderTypes[style];
|
||
ret.color = colorRet;
|
||
return ret;
|
||
};
|
||
LuckySheetCelldata.prototype.htmlDecode = function (str) {
|
||
return str.replace(/&#(x)?([^&]{1,5});/g, function ($, $1, $2) {
|
||
return String.fromCharCode(parseInt($2, $1 ? 16 : 10));
|
||
});
|
||
};
|
||
;
|
||
return LuckySheetCelldata;
|
||
}(LuckyBase_1.LuckySheetCelldataBase);
|
||
exports.LuckySheetCelldata = LuckySheetCelldata;
|
||
|
||
},{"../common/constant":47,"../common/method":49,"./LuckyBase":41,"./ReadXml":46}],43:[function(require,module,exports){
|
||
"use strict";
|
||
|
||
var __extends = void 0 && (void 0).__extends || function () {
|
||
var _extendStatics = function extendStatics(d, b) {
|
||
_extendStatics = Object.setPrototypeOf || {
|
||
__proto__: []
|
||
} instanceof Array && function (d, b) {
|
||
d.__proto__ = b;
|
||
} || function (d, b) {
|
||
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
|
||
};
|
||
return _extendStatics(d, b);
|
||
};
|
||
return function (d, b) {
|
||
_extendStatics(d, b);
|
||
function __() {
|
||
this.constructor = d;
|
||
}
|
||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
||
};
|
||
}();
|
||
Object.defineProperty(exports, "__esModule", {
|
||
value: true
|
||
});
|
||
exports.LuckyFile = void 0;
|
||
var LuckySheet_1 = require("./LuckySheet");
|
||
var constant_1 = require("../common/constant");
|
||
var ReadXml_1 = require("./ReadXml");
|
||
var method_1 = require("../common/method");
|
||
var LuckyBase_1 = require("./LuckyBase");
|
||
var LuckyImage_1 = require("./LuckyImage");
|
||
var xml_js_1 = require("xml-js");
|
||
/** 定义 xml-js 解析出来的 xml-js 结果对象类型 */
|
||
var LuckyFile = /** @class */function (_super) {
|
||
__extends(LuckyFile, _super);
|
||
function LuckyFile(files, fileName) {
|
||
var _this = _super.call(this) || this;
|
||
_this.columnWidthSet = [];
|
||
_this.rowHeightSet = [];
|
||
_this.files = files;
|
||
_this.fileName = fileName;
|
||
_this.readXml = new ReadXml_1.ReadXml(files);
|
||
_this.getSheetNameList();
|
||
_this.sharedStrings = _this.readXml.getElementsByTagName("sst/si", constant_1.sharedStringsFile);
|
||
_this.calcChain = _this.readXml.getElementsByTagName("calcChain/c", constant_1.calcChainFile);
|
||
_this.styles = {};
|
||
_this.styles["cellXfs"] = _this.readXml.getElementsByTagName("cellXfs/xf", constant_1.stylesFile);
|
||
_this.styles["cellStyleXfs"] = _this.readXml.getElementsByTagName("cellStyleXfs/xf", constant_1.stylesFile);
|
||
_this.styles["cellStyles"] = _this.readXml.getElementsByTagName("cellStyles/cellStyle", constant_1.stylesFile);
|
||
_this.styles["fonts"] = _this.readXml.getElementsByTagName("fonts/font", constant_1.stylesFile);
|
||
_this.styles["fills"] = _this.readXml.getElementsByTagName("fills/fill", constant_1.stylesFile);
|
||
_this.styles["borders"] = _this.readXml.getElementsByTagName("borders/border", constant_1.stylesFile);
|
||
_this.styles["clrScheme"] = _this.readXml.getElementsByTagName("a:clrScheme/a:dk1|a:lt1|a:dk2|a:lt2|a:accent1|a:accent2|a:accent3|a:accent4|a:accent5|a:accent6|a:hlink|a:folHlink", constant_1.theme1File);
|
||
_this.styles["indexedColors"] = _this.readXml.getElementsByTagName("colors/indexedColors/rgbColor", constant_1.stylesFile);
|
||
_this.styles["mruColors"] = _this.readXml.getElementsByTagName("colors/mruColors/color", constant_1.stylesFile);
|
||
_this.imageList = new LuckyImage_1.ImageList(files);
|
||
var numfmts = _this.readXml.getElementsByTagName("numFmt/numFmt", constant_1.stylesFile);
|
||
var numFmtDefaultC = JSON.parse(JSON.stringify(constant_1.numFmtDefault));
|
||
for (var i = 0; i < numfmts.length; i++) {
|
||
var attrList = numfmts[i].attributeList;
|
||
var numfmtid = method_1.getXmlAttibute(attrList, "numFmtId", "49");
|
||
var formatcode = method_1.getXmlAttibute(attrList, "formatCode", "@");
|
||
// console.log(numfmtid, formatcode);
|
||
if (!(numfmtid in constant_1.numFmtDefault)) {
|
||
numFmtDefaultC[numfmtid] = constant_1.numFmtDefaultMap[formatcode] || formatcode;
|
||
}
|
||
}
|
||
// console.log(JSON.stringify(numFmtDefaultC), numfmts);
|
||
_this.styles["numfmts"] = numFmtDefaultC;
|
||
return _this;
|
||
}
|
||
/**
|
||
* @return All sheet name of workbook
|
||
*/
|
||
LuckyFile.prototype.getSheetNameList = function () {
|
||
var workbookRelList = this.readXml.getElementsByTagName("Relationships/Relationship", constant_1.workbookRels);
|
||
if (workbookRelList == null) {
|
||
return;
|
||
}
|
||
var regex = new RegExp("worksheets/[^/]*?.xml");
|
||
var sheetNames = {};
|
||
for (var i = 0; i < workbookRelList.length; i++) {
|
||
var rel = workbookRelList[i],
|
||
attrList = rel.attributeList;
|
||
var id = attrList["Id"],
|
||
target = attrList["Target"];
|
||
if (regex.test(target)) {
|
||
if (target.indexOf("/xl") === 0) {
|
||
sheetNames[id] = target.substr(1);
|
||
} else {
|
||
sheetNames[id] = "xl/" + target;
|
||
}
|
||
}
|
||
}
|
||
this.sheetNameList = sheetNames;
|
||
};
|
||
/**
|
||
* @param sheetName WorkSheet'name
|
||
* @return sheet file name and path in zip
|
||
*/
|
||
LuckyFile.prototype.getSheetFileBysheetId = function (sheetId) {
|
||
// for(let i=0;i<this.sheetNameList.length;i++){
|
||
// let sheetFileName = this.sheetNameList[i];
|
||
// if(sheetFileName.indexOf("sheet"+sheetId)>-1){
|
||
// return sheetFileName;
|
||
// }
|
||
// }
|
||
return this.sheetNameList[sheetId];
|
||
};
|
||
/**
|
||
* @return workBook information
|
||
*/
|
||
LuckyFile.prototype.getWorkBookInfo = function () {
|
||
var Company = this.readXml.getElementsByTagName("Company", constant_1.appFile);
|
||
var AppVersion = this.readXml.getElementsByTagName("AppVersion", constant_1.appFile);
|
||
var creator = this.readXml.getElementsByTagName("dc:creator", constant_1.coreFile);
|
||
var lastModifiedBy = this.readXml.getElementsByTagName("cp:lastModifiedBy", constant_1.coreFile);
|
||
var created = this.readXml.getElementsByTagName("dcterms:created", constant_1.coreFile);
|
||
var modified = this.readXml.getElementsByTagName("dcterms:modified", constant_1.coreFile);
|
||
this.info = new LuckyBase_1.LuckyFileInfo();
|
||
this.info.name = this.fileName;
|
||
this.info.creator = creator.length > 0 ? creator[0].value : "";
|
||
this.info.lastmodifiedby = lastModifiedBy.length > 0 ? lastModifiedBy[0].value : "";
|
||
this.info.createdTime = created.length > 0 ? created[0].value : "";
|
||
this.info.modifiedTime = modified.length > 0 ? modified[0].value : "";
|
||
this.info.company = Company.length > 0 ? Company[0].value : "";
|
||
this.info.appversion = AppVersion.length > 0 ? AppVersion[0].value : "";
|
||
};
|
||
/**
|
||
* @return All sheet , include whole information
|
||
*/
|
||
LuckyFile.prototype.getSheetsFull = function (isInitialCell) {
|
||
if (isInitialCell === void 0) {
|
||
isInitialCell = true;
|
||
}
|
||
var sheets = this.readXml.getElementsByTagName("sheets/sheet", constant_1.workBookFile);
|
||
var sheetList = {};
|
||
for (var key in sheets) {
|
||
var sheet = sheets[key];
|
||
sheetList[sheet.attributeList.name] = sheet.attributeList["sheetId"];
|
||
}
|
||
this.sheets = [];
|
||
var order = 0;
|
||
for (var key in sheets) {
|
||
var sheet = sheets[key];
|
||
var sheetName = sheet.attributeList.name;
|
||
var sheetId = sheet.attributeList["sheetId"];
|
||
var rid = sheet.attributeList["r:id"];
|
||
var sheetFile = this.getSheetFileBysheetId(rid);
|
||
var hide = sheet.attributeList.state === "hidden" ? 1 : 0;
|
||
var drawing = this.readXml.getElementsByTagName("worksheet/drawing", sheetFile),
|
||
drawingFile = void 0,
|
||
drawingRelsFile = void 0;
|
||
if (drawing != null && drawing.length > 0) {
|
||
var attrList = drawing[0].attributeList;
|
||
var rid_1 = method_1.getXmlAttibute(attrList, "r:id", null);
|
||
if (rid_1 != null) {
|
||
drawingFile = this.getDrawingFile(rid_1, sheetFile);
|
||
drawingRelsFile = this.getDrawingRelsFile(drawingFile);
|
||
}
|
||
}
|
||
if (sheetFile != null) {
|
||
var sheet_1 = new LuckySheet_1.LuckySheet(sheetName, sheetId, order, isInitialCell, {
|
||
sheetFile: sheetFile,
|
||
readXml: this.readXml,
|
||
sheetList: sheetList,
|
||
styles: this.styles,
|
||
sharedStrings: this.sharedStrings,
|
||
calcChain: this.calcChain,
|
||
imageList: this.imageList,
|
||
drawingFile: drawingFile,
|
||
drawingRelsFile: drawingRelsFile,
|
||
hide: hide
|
||
});
|
||
this.columnWidthSet = [];
|
||
this.rowHeightSet = [];
|
||
this.imagePositionCaculation(sheet_1);
|
||
this.sheets.push(sheet_1);
|
||
order++;
|
||
}
|
||
}
|
||
};
|
||
/**
|
||
* @return All Comment , include whole information
|
||
* 1. readXml.getFileByName 获取当前 sheetIndex 的批注 xml 字符串
|
||
* 2. 利用 xml-js 将 xml 文件转成 json 对象
|
||
* 3. 正确识别 r c ps 属性,并真实封装到 sheets 数据上
|
||
*/
|
||
// xl/comments1.xml
|
||
LuckyFile.prototype.getComment = function () {
|
||
var comments = [];
|
||
for (var i = 0; i < this.sheets.length; i++) {
|
||
// 返回值是一个字符串 - xml 字符串
|
||
var xml = this.readXml.getFileByName("xl/comments" + (i + 1) + ".xml");
|
||
if (!xml) continue;
|
||
comments.push({
|
||
sheetIndex: this.sheets[i].index,
|
||
xml: xml
|
||
});
|
||
}
|
||
this.xmlCommentToJson(comments);
|
||
// 应该提供原始数据供用户使用
|
||
this.comments = comments;
|
||
};
|
||
/**
|
||
* 将 xml 文件转成 JSON 对象
|
||
* @param comments
|
||
*/
|
||
LuckyFile.prototype.xmlCommentToJson = function (comments) {
|
||
/**
|
||
* 对 comments 进行处理
|
||
* 1. 转出来的对象 一个sheet页有几个批注,则 json.elements[0].elements 就有几项数据项,但是不建议直接写 0 还是应该循环实现数据获取
|
||
*/
|
||
var commentsList = [];
|
||
// 循环对象进行xml解析
|
||
comments.forEach(function (_a) {
|
||
var sheetIndex = _a.sheetIndex,
|
||
xml = _a.xml;
|
||
var jsonString = xml_js_1.xml2json(xml);
|
||
if (!jsonString) return;
|
||
var json = JSON.parse(jsonString);
|
||
for (var i = 0; i < json.elements.length; i++) {
|
||
// 这里的item 是每一个外层的xml信息集合
|
||
var item = json.elements[i];
|
||
if (!item.elements) continue;
|
||
// 只有name = ‘commentList’ 才是批注集合
|
||
item.elements.forEach(function (commentList) {
|
||
if (commentList.name !== "commentList") return;
|
||
// 注意!!! 这里的 commentList 仅是当前sheet 页的批注集合
|
||
commentList.elements.forEach(function (comment) {
|
||
// 注意!!! 这里的 comment 才是每一个具体的 批注
|
||
if (comment.name !== "comment") return;
|
||
// 批注可能是一个,因此不能直接取 1,还是应该 循环 实现数据获取
|
||
// 这里可以获取到 当前批注的 r c 位置信息
|
||
var rc = comment.attributes.ref;
|
||
var _a = method_1.parseCellReference(rc),
|
||
r = _a.r,
|
||
c = _a.c;
|
||
// 将 rc 转成 luckysheet r c
|
||
// 获取内容
|
||
// 1. 正常内容(没有颜色、样式等)
|
||
var content = "";
|
||
try {
|
||
var ps = comment.elements[0].elements[1].elements[1];
|
||
if (ps.attributes["xml:space"] === "preserve") {
|
||
content = ps.elements[0].text;
|
||
}
|
||
} catch (error) {
|
||
try {
|
||
// 尝试获取内容(有颜色、样式等)应该是存在于 preserve 下一个 item 才取到内容
|
||
var ps = comment.elements[0].elements[2].elements[1];
|
||
content = ps.elements[0].text;
|
||
} catch (error) {
|
||
console.error("\u5355\u5143\u683C" + rc + "\u6279\u6CE8\u5185\u5BB9\u89E3\u6790\u5931\u8D25\uFF01Luckysheet \u4E0D\u652F\u6301\u6279\u6CE8\u6837\u5F0F\uFF0C\u8BF7\u79FB\u9664\u6837\u5F0F\u540E\u91CD\u8BD5\uFF01");
|
||
}
|
||
}
|
||
if (!content) {
|
||
console.error("\u5355\u5143\u683C" + rc + "\u6279\u6CE8\u5185\u5BB9\u89E3\u6790\u5931\u8D25\uFF01Luckysheet \u4E0D\u652F\u6301\u6279\u6CE8\u6837\u5F0F\uFF0C\u8BF7\u79FB\u9664\u6837\u5F0F\u540E\u91CD\u8BD5\uFF01");
|
||
}
|
||
commentsList.push({
|
||
sheetIndex: sheetIndex,
|
||
r: r,
|
||
c: c,
|
||
content: content
|
||
});
|
||
});
|
||
});
|
||
}
|
||
});
|
||
return commentsList;
|
||
};
|
||
LuckyFile.prototype.extendArray = function (index, sets, def, hidden, lens) {
|
||
if (index < sets.length) {
|
||
return;
|
||
}
|
||
var startIndex = sets.length,
|
||
endIndex = index;
|
||
var allGap = 0;
|
||
if (startIndex > 0) {
|
||
allGap = sets[startIndex - 1];
|
||
}
|
||
// else{
|
||
// sets.push(0);
|
||
// }
|
||
for (var i = startIndex; i <= endIndex; i++) {
|
||
var gap = def,
|
||
istring = i.toString();
|
||
if (istring in hidden) {
|
||
gap = 0;
|
||
} else if (istring in lens) {
|
||
gap = lens[istring];
|
||
}
|
||
allGap += Math.round(gap + 1);
|
||
sets.push(allGap);
|
||
}
|
||
};
|
||
LuckyFile.prototype.imagePositionCaculation = function (sheet) {
|
||
var images = sheet.images,
|
||
defaultColWidth = sheet.defaultColWidth,
|
||
defaultRowHeight = sheet.defaultRowHeight;
|
||
var colhidden = {};
|
||
if (sheet.config.colhidden) {
|
||
colhidden = sheet.config.colhidden;
|
||
}
|
||
var columnlen = {};
|
||
if (sheet.config.columnlen) {
|
||
columnlen = sheet.config.columnlen;
|
||
}
|
||
var rowhidden = {};
|
||
if (sheet.config.rowhidden) {
|
||
rowhidden = sheet.config.rowhidden;
|
||
}
|
||
var rowlen = {};
|
||
if (sheet.config.rowlen) {
|
||
rowlen = sheet.config.rowlen;
|
||
}
|
||
for (var key in images) {
|
||
var imageObject = images[key]; //Image, luckyImage
|
||
var fromCol = imageObject.fromCol;
|
||
var fromColOff = imageObject.fromColOff;
|
||
var fromRow = imageObject.fromRow;
|
||
var fromRowOff = imageObject.fromRowOff;
|
||
var toCol = imageObject.toCol;
|
||
var toColOff = imageObject.toColOff;
|
||
var toRow = imageObject.toRow;
|
||
var toRowOff = imageObject.toRowOff;
|
||
var x_n = 0,
|
||
y_n = 0;
|
||
var cx_n = 0,
|
||
cy_n = 0;
|
||
if (fromCol >= this.columnWidthSet.length) {
|
||
this.extendArray(fromCol, this.columnWidthSet, defaultColWidth, colhidden, columnlen);
|
||
}
|
||
if (fromCol == 0) {
|
||
x_n = 0;
|
||
} else {
|
||
x_n = this.columnWidthSet[fromCol - 1];
|
||
}
|
||
x_n = x_n + fromColOff;
|
||
if (fromRow >= this.rowHeightSet.length) {
|
||
this.extendArray(fromRow, this.rowHeightSet, defaultRowHeight, rowhidden, rowlen);
|
||
}
|
||
if (fromRow == 0) {
|
||
y_n = 0;
|
||
} else {
|
||
y_n = this.rowHeightSet[fromRow - 1];
|
||
}
|
||
y_n = y_n + fromRowOff;
|
||
if (toCol >= this.columnWidthSet.length) {
|
||
this.extendArray(toCol, this.columnWidthSet, defaultColWidth, colhidden, columnlen);
|
||
}
|
||
if (toCol == 0) {
|
||
cx_n = 0;
|
||
} else {
|
||
cx_n = this.columnWidthSet[toCol - 1];
|
||
}
|
||
cx_n = cx_n + toColOff - x_n;
|
||
if (toRow >= this.rowHeightSet.length) {
|
||
this.extendArray(toRow, this.rowHeightSet, defaultRowHeight, rowhidden, rowlen);
|
||
}
|
||
if (toRow == 0) {
|
||
cy_n = 0;
|
||
} else {
|
||
cy_n = this.rowHeightSet[toRow - 1];
|
||
}
|
||
cy_n = cy_n + toRowOff - y_n;
|
||
console.log(defaultColWidth, colhidden, columnlen);
|
||
console.log(fromCol, this.columnWidthSet[fromCol], fromColOff);
|
||
console.log(toCol, this.columnWidthSet[toCol], toColOff, JSON.stringify(this.columnWidthSet));
|
||
imageObject.originWidth = cx_n;
|
||
imageObject.originHeight = cy_n;
|
||
imageObject.crop.height = cy_n;
|
||
imageObject.crop.width = cx_n;
|
||
imageObject["default"].height = cy_n;
|
||
imageObject["default"].left = x_n;
|
||
imageObject["default"].top = y_n;
|
||
imageObject["default"].width = cx_n;
|
||
}
|
||
//console.log(this.columnWidthSet, this.rowHeightSet);
|
||
};
|
||
/**
|
||
* @return drawing file string
|
||
*/
|
||
LuckyFile.prototype.getDrawingFile = function (rid, sheetFile) {
|
||
var sheetRelsPath = "xl/worksheets/_rels/";
|
||
var sheetFileArr = sheetFile.split("/");
|
||
var sheetRelsName = sheetFileArr[sheetFileArr.length - 1];
|
||
var sheetRelsFile = sheetRelsPath + sheetRelsName + ".rels";
|
||
var drawing = this.readXml.getElementsByTagName("Relationships/Relationship", sheetRelsFile);
|
||
if (drawing.length > 0) {
|
||
for (var i = 0; i < drawing.length; i++) {
|
||
var relationship = drawing[i];
|
||
var attrList = relationship.attributeList;
|
||
var relationshipId = method_1.getXmlAttibute(attrList, "Id", null);
|
||
if (relationshipId == rid) {
|
||
var target = method_1.getXmlAttibute(attrList, "Target", null);
|
||
if (target != null) {
|
||
return target.replace(/\.\.\//g, "");
|
||
}
|
||
}
|
||
}
|
||
}
|
||
return null;
|
||
};
|
||
LuckyFile.prototype.getDrawingRelsFile = function (drawingFile) {
|
||
var drawingRelsPath = "xl/drawings/_rels/";
|
||
var drawingFileArr = drawingFile.split("/");
|
||
var drawingRelsName = drawingFileArr[drawingFileArr.length - 1];
|
||
var drawingRelsFile = drawingRelsPath + drawingRelsName + ".rels";
|
||
return drawingRelsFile;
|
||
};
|
||
/**
|
||
* @return All sheet base information widthout cell and config
|
||
*/
|
||
LuckyFile.prototype.getSheetsWithoutCell = function () {
|
||
this.getSheetsFull(false);
|
||
};
|
||
/**
|
||
* @return LuckySheet file json
|
||
*/
|
||
LuckyFile.prototype.Parse = function () {
|
||
// let xml = this.readXml;
|
||
this.getWorkBookInfo();
|
||
this.getSheetsFull();
|
||
// 解析 批注
|
||
this.getComment();
|
||
return this.toJsonString(this);
|
||
};
|
||
LuckyFile.prototype.toJsonString = function (file) {
|
||
var LuckyOutPutFile = new LuckyBase_1.LuckyFileBase();
|
||
LuckyOutPutFile.info = file.info;
|
||
LuckyOutPutFile.sheets = [];
|
||
LuckyOutPutFile.comments = this.comments;
|
||
file.sheets.forEach(function (sheet) {
|
||
var sheetout = new LuckyBase_1.LuckySheetBase();
|
||
//let attrName = ["name","color","config","index","status","order","row","column","luckysheet_select_save","scrollLeft","scrollTop","zoomRatio","showGridLines","defaultColWidth","defaultRowHeight","celldata","chart","isPivotTable","pivotTable","luckysheet_conditionformat_save","freezen","calcChain"];
|
||
if (sheet.name != null) {
|
||
sheetout.name = sheet.name;
|
||
}
|
||
if (sheet.color != null) {
|
||
sheetout.color = sheet.color;
|
||
}
|
||
if (sheet.config != null) {
|
||
sheetout.config = sheet.config;
|
||
// if(sheetout.config._borderInfo!=null){
|
||
// delete sheetout.config._borderInfo;
|
||
// }
|
||
}
|
||
if (sheet.index != null) {
|
||
sheetout.index = sheet.index;
|
||
}
|
||
if (sheet.status != null) {
|
||
sheetout.status = sheet.status;
|
||
}
|
||
if (sheet.order != null) {
|
||
sheetout.order = sheet.order;
|
||
}
|
||
if (sheet.row != null) {
|
||
sheetout.row = sheet.row;
|
||
}
|
||
if (sheet.column != null) {
|
||
sheetout.column = sheet.column;
|
||
}
|
||
if (sheet.luckysheet_select_save != null) {
|
||
sheetout.luckysheet_select_save = sheet.luckysheet_select_save;
|
||
}
|
||
if (sheet.scrollLeft != null) {
|
||
sheetout.scrollLeft = sheet.scrollLeft;
|
||
}
|
||
if (sheet.scrollTop != null) {
|
||
sheetout.scrollTop = sheet.scrollTop;
|
||
}
|
||
if (sheet.zoomRatio != null) {
|
||
sheetout.zoomRatio = sheet.zoomRatio;
|
||
}
|
||
if (sheet.showGridLines != null) {
|
||
sheetout.showGridLines = sheet.showGridLines;
|
||
}
|
||
if (sheet.defaultColWidth != null) {
|
||
sheetout.defaultColWidth = sheet.defaultColWidth;
|
||
}
|
||
if (sheet.defaultRowHeight != null) {
|
||
sheetout.defaultRowHeight = sheet.defaultRowHeight;
|
||
}
|
||
if (sheet.celldata != null) {
|
||
// sheetout.celldata = sheet.celldata;
|
||
sheetout.celldata = [];
|
||
sheet.celldata.forEach(function (cell) {
|
||
var cellout = new LuckyBase_1.LuckySheetCelldataBase();
|
||
cellout.r = cell.r;
|
||
cellout.c = cell.c;
|
||
cellout.v = cell.v;
|
||
sheetout.celldata.push(cellout);
|
||
});
|
||
}
|
||
if (sheet.chart != null) {
|
||
sheetout.chart = sheet.chart;
|
||
}
|
||
if (sheet.isPivotTable != null) {
|
||
sheetout.isPivotTable = sheet.isPivotTable;
|
||
}
|
||
if (sheet.pivotTable != null) {
|
||
sheetout.pivotTable = sheet.pivotTable;
|
||
}
|
||
if (sheet.luckysheet_conditionformat_save != null) {
|
||
sheetout.luckysheet_conditionformat_save = sheet.luckysheet_conditionformat_save;
|
||
}
|
||
if (sheet.freezen != null) {
|
||
sheetout.freezen = sheet.freezen;
|
||
}
|
||
if (sheet.calcChain != null) {
|
||
sheetout.calcChain = sheet.calcChain;
|
||
}
|
||
if (sheet.images != null) {
|
||
sheetout.images = sheet.images;
|
||
}
|
||
if (sheet.dataVerification != null) {
|
||
sheetout.dataVerification = sheet.dataVerification;
|
||
}
|
||
if (sheet.hyperlink != null) {
|
||
sheetout.hyperlink = sheet.hyperlink;
|
||
}
|
||
if (sheet.hide != null) {
|
||
sheetout.hide = sheet.hide;
|
||
}
|
||
LuckyOutPutFile.sheets.push(sheetout);
|
||
});
|
||
var commentsList = this.xmlCommentToJson(this.comments);
|
||
// 结束后,将 commentsList 处理为this.sheets的 ps 字段
|
||
commentsList.forEach(function (_a) {
|
||
var sheetIndex = _a.sheetIndex,
|
||
r = _a.r,
|
||
c = _a.c,
|
||
content = _a.content;
|
||
// 获取到当前 sheetIndex 的 sheet
|
||
var sheet = LuckyOutPutFile.sheets.find(function (sheet) {
|
||
return sheet.index === sheetIndex;
|
||
});
|
||
if (!sheet) return;
|
||
// 对 celldata 进行处理
|
||
sheet.celldata.forEach(function (cell) {
|
||
if (cell.r === r && cell.c === c) {
|
||
// 找到对应的 cell,将 content 赋值给 ps 字段
|
||
cell.v.ps = {
|
||
value: content
|
||
};
|
||
}
|
||
});
|
||
});
|
||
// 要对插件输出的对象进行处理 this.sheets 是携带 xml 原始数据的结构,不能直接给用户使用
|
||
return JSON.stringify(LuckyOutPutFile);
|
||
};
|
||
return LuckyFile;
|
||
}(LuckyBase_1.LuckyFileBase);
|
||
exports.LuckyFile = LuckyFile;
|
||
|
||
},{"../common/constant":47,"../common/method":49,"./LuckyBase":41,"./LuckyImage":44,"./LuckySheet":45,"./ReadXml":46,"xml-js":34}],44:[function(require,module,exports){
|
||
"use strict";
|
||
|
||
var __extends = void 0 && (void 0).__extends || function () {
|
||
var _extendStatics = function extendStatics(d, b) {
|
||
_extendStatics = Object.setPrototypeOf || {
|
||
__proto__: []
|
||
} instanceof Array && function (d, b) {
|
||
d.__proto__ = b;
|
||
} || function (d, b) {
|
||
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
|
||
};
|
||
return _extendStatics(d, b);
|
||
};
|
||
return function (d, b) {
|
||
_extendStatics(d, b);
|
||
function __() {
|
||
this.constructor = d;
|
||
}
|
||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
||
};
|
||
}();
|
||
Object.defineProperty(exports, "__esModule", {
|
||
value: true
|
||
});
|
||
exports.ImageList = void 0;
|
||
var LuckyBase_1 = require("./LuckyBase");
|
||
var emf_1 = require("../common/emf");
|
||
var ImageList = /** @class */function () {
|
||
function ImageList(files) {
|
||
if (files == null) {
|
||
return;
|
||
}
|
||
this.images = {};
|
||
for (var fileKey in files) {
|
||
// let reg = new RegExp("xl/media/image1.png", "g");
|
||
if (fileKey.indexOf("xl/media/") > -1) {
|
||
var fileNameArr = fileKey.split(".");
|
||
var suffix = fileNameArr[fileNameArr.length - 1].toLowerCase();
|
||
if (suffix in {
|
||
"png": 1,
|
||
"jpeg": 1,
|
||
"jpg": 1,
|
||
"gif": 1,
|
||
"bmp": 1,
|
||
"tif": 1,
|
||
"webp": 1,
|
||
"emf": 1
|
||
}) {
|
||
if (suffix == "emf") {
|
||
var pNum = 0; // number of the page, that you want to render
|
||
var scale = 1; // the scale of the document
|
||
var wrt = new emf_1.ToContext2D(pNum, scale);
|
||
var inp, out, stt;
|
||
emf_1.FromEMF.K = [];
|
||
inp = emf_1.FromEMF.C;
|
||
out = emf_1.FromEMF.K;
|
||
stt = 4;
|
||
for (var p in inp) out[inp[p]] = p.slice(stt);
|
||
emf_1.FromEMF.Parse(files[fileKey], wrt);
|
||
this.images[fileKey] = wrt.canvas.toDataURL("image/png");
|
||
} else {
|
||
this.images[fileKey] = files[fileKey];
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
ImageList.prototype.getImageByName = function (pathName) {
|
||
if (pathName in this.images) {
|
||
var base64 = this.images[pathName];
|
||
return new Image(pathName, base64);
|
||
}
|
||
return null;
|
||
};
|
||
return ImageList;
|
||
}();
|
||
exports.ImageList = ImageList;
|
||
var Image = /** @class */function (_super) {
|
||
__extends(Image, _super);
|
||
function Image(pathName, base64) {
|
||
var _this = _super.call(this) || this;
|
||
_this.src = base64;
|
||
return _this;
|
||
}
|
||
Image.prototype.setDefault = function () {};
|
||
return Image;
|
||
}(LuckyBase_1.LuckyImageBase);
|
||
|
||
},{"../common/emf":48,"./LuckyBase":41}],45:[function(require,module,exports){
|
||
"use strict";
|
||
|
||
var __extends = void 0 && (void 0).__extends || function () {
|
||
var _extendStatics = function extendStatics(d, b) {
|
||
_extendStatics = Object.setPrototypeOf || {
|
||
__proto__: []
|
||
} instanceof Array && function (d, b) {
|
||
d.__proto__ = b;
|
||
} || function (d, b) {
|
||
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
|
||
};
|
||
return _extendStatics(d, b);
|
||
};
|
||
return function (d, b) {
|
||
_extendStatics(d, b);
|
||
function __() {
|
||
this.constructor = d;
|
||
}
|
||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
||
};
|
||
}();
|
||
var __importDefault = void 0 && (void 0).__importDefault || function (mod) {
|
||
return mod && mod.__esModule ? mod : {
|
||
"default": mod
|
||
};
|
||
};
|
||
Object.defineProperty(exports, "__esModule", {
|
||
value: true
|
||
});
|
||
exports.LuckySheet = void 0;
|
||
var LuckyCell_1 = require("./LuckyCell");
|
||
var method_1 = require("../common/method");
|
||
var constant_1 = require("../common/constant");
|
||
var ReadXml_1 = require("./ReadXml");
|
||
var LuckyBase_1 = require("./LuckyBase");
|
||
var dayjs_1 = __importDefault(require("dayjs"));
|
||
var LuckySheet = /** @class */function (_super) {
|
||
__extends(LuckySheet, _super);
|
||
function LuckySheet(sheetName, sheetId, sheetOrder, isInitialCell, allFileOption) {
|
||
if (isInitialCell === void 0) {
|
||
isInitialCell = false;
|
||
}
|
||
var _this =
|
||
//Private
|
||
_super.call(this) || this;
|
||
_this.isInitialCell = isInitialCell;
|
||
_this.readXml = allFileOption.readXml;
|
||
_this.sheetFile = allFileOption.sheetFile;
|
||
_this.styles = allFileOption.styles;
|
||
_this.sharedStrings = allFileOption.sharedStrings;
|
||
_this.calcChainEles = allFileOption.calcChain;
|
||
_this.sheetList = allFileOption.sheetList;
|
||
_this.imageList = allFileOption.imageList;
|
||
_this.hide = allFileOption.hide;
|
||
//Output
|
||
_this.name = sheetName;
|
||
_this.index = sheetId;
|
||
_this.order = sheetOrder.toString();
|
||
_this.config = new LuckyBase_1.LuckyConfig();
|
||
_this.celldata = [];
|
||
_this.mergeCells = _this.readXml.getElementsByTagName("mergeCells/mergeCell", _this.sheetFile);
|
||
var clrScheme = _this.styles["clrScheme"];
|
||
var sheetView = _this.readXml.getElementsByTagName("sheetViews/sheetView", _this.sheetFile);
|
||
var showGridLines = "1",
|
||
tabSelected = "0",
|
||
zoomScale = "100",
|
||
activeCell = "A1";
|
||
if (sheetView.length > 0) {
|
||
var attrList = sheetView[0].attributeList;
|
||
showGridLines = method_1.getXmlAttibute(attrList, "showGridLines", "1");
|
||
tabSelected = method_1.getXmlAttibute(attrList, "tabSelected", "0");
|
||
zoomScale = method_1.getXmlAttibute(attrList, "zoomScale", "100");
|
||
// let colorId = getXmlAttibute(attrList, "colorId", "0");
|
||
var selections = sheetView[0].getInnerElements("selection");
|
||
if (selections != null && selections.length > 0) {
|
||
activeCell = method_1.getXmlAttibute(selections[0].attributeList, "activeCell", "A1");
|
||
var range = method_1.getcellrange(activeCell, _this.sheetList, sheetId);
|
||
_this.luckysheet_select_save = [];
|
||
_this.luckysheet_select_save.push(range);
|
||
}
|
||
}
|
||
_this.showGridLines = showGridLines;
|
||
_this.status = tabSelected;
|
||
_this.zoomRatio = parseInt(zoomScale) / 100;
|
||
var tabColors = _this.readXml.getElementsByTagName("sheetPr/tabColor", _this.sheetFile);
|
||
if (tabColors != null && tabColors.length > 0) {
|
||
var tabColor = tabColors[0],
|
||
attrList = tabColor.attributeList;
|
||
// if(attrList.rgb!=null){
|
||
var tc = ReadXml_1.getColor(tabColor, _this.styles, "b");
|
||
_this.color = tc;
|
||
// }
|
||
}
|
||
var sheetFormatPr = _this.readXml.getElementsByTagName("sheetFormatPr", _this.sheetFile);
|
||
var defaultColWidth, defaultRowHeight;
|
||
if (sheetFormatPr.length > 0) {
|
||
var attrList = sheetFormatPr[0].attributeList;
|
||
defaultColWidth = method_1.getXmlAttibute(attrList, "defaultColWidth", "9.21");
|
||
defaultRowHeight = method_1.getXmlAttibute(attrList, "defaultRowHeight", "19");
|
||
}
|
||
_this.defaultColWidth = method_1.getColumnWidthPixel(parseFloat(defaultColWidth));
|
||
_this.defaultRowHeight = method_1.getRowHeightPixel(parseFloat(defaultRowHeight));
|
||
_this.generateConfigColumnLenAndHidden();
|
||
var cellOtherInfo = _this.generateConfigRowLenAndHiddenAddCell();
|
||
if (_this.calcChain == null) {
|
||
_this.calcChain = [];
|
||
}
|
||
var formulaListExist = {};
|
||
for (var c = 0; c < _this.calcChainEles.length; c++) {
|
||
var calcChainEle = _this.calcChainEles[c],
|
||
attrList = calcChainEle.attributeList;
|
||
if (attrList.i != sheetId) {
|
||
continue;
|
||
}
|
||
var r = attrList.r,
|
||
i = attrList.i,
|
||
l = attrList.l,
|
||
s = attrList.s,
|
||
a = attrList.a,
|
||
t = attrList.t;
|
||
var range = method_1.getcellrange(r);
|
||
var chain = new LuckyBase_1.LuckysheetCalcChain();
|
||
chain.r = range.row[0];
|
||
chain.c = range.column[0];
|
||
chain.index = _this.index;
|
||
_this.calcChain.push(chain);
|
||
formulaListExist["r" + r + "c" + c] = null;
|
||
}
|
||
if (_this.formulaRefList != null) {
|
||
for (var key in _this.formulaRefList) {
|
||
var funclist = _this.formulaRefList[key];
|
||
var mainFunc = funclist["mainRef"],
|
||
mainCellValue = mainFunc.cellValue;
|
||
var formulaTxt = mainFunc.fv;
|
||
var mainR = mainCellValue.r,
|
||
mainC = mainCellValue.c;
|
||
// let refRange = getcellrange(ref);
|
||
for (var name_1 in funclist) {
|
||
if (name_1 == "mainRef") {
|
||
continue;
|
||
}
|
||
var funcValue = funclist[name_1],
|
||
cellValue = funcValue.cellValue;
|
||
if (cellValue == null) {
|
||
continue;
|
||
}
|
||
var r = cellValue.r,
|
||
c = cellValue.c;
|
||
var func = formulaTxt;
|
||
var offsetRow = r - mainR,
|
||
offsetCol = c - mainC;
|
||
if (offsetRow > 0) {
|
||
func = "=" + method_1.fromulaRef.functionCopy(func, "down", offsetRow);
|
||
} else if (offsetRow < 0) {
|
||
func = "=" + method_1.fromulaRef.functionCopy(func, "up", Math.abs(offsetRow));
|
||
}
|
||
if (offsetCol > 0) {
|
||
func = "=" + method_1.fromulaRef.functionCopy(func, "right", offsetCol);
|
||
} else if (offsetCol < 0) {
|
||
func = "=" + method_1.fromulaRef.functionCopy(func, "left", Math.abs(offsetCol));
|
||
}
|
||
// console.log(offsetRow, offsetCol, func);
|
||
cellValue.v.f = func;
|
||
//添加共享公式链
|
||
var chain = new LuckyBase_1.LuckysheetCalcChain();
|
||
chain.r = cellValue.r;
|
||
chain.c = cellValue.c;
|
||
chain.index = _this.index;
|
||
_this.calcChain.push(chain);
|
||
}
|
||
}
|
||
}
|
||
//There may be formulas that do not appear in calcChain
|
||
for (var key in cellOtherInfo.formulaList) {
|
||
if (!(key in formulaListExist)) {
|
||
var formulaListItem = cellOtherInfo.formulaList[key];
|
||
var chain = new LuckyBase_1.LuckysheetCalcChain();
|
||
chain.r = formulaListItem.r;
|
||
chain.c = formulaListItem.c;
|
||
chain.index = _this.index;
|
||
_this.calcChain.push(chain);
|
||
}
|
||
}
|
||
// dataVerification config
|
||
_this.dataVerification = _this.generateConfigDataValidations();
|
||
// hyperlink config
|
||
_this.hyperlink = _this.generateConfigHyperlinks();
|
||
// sheet hide
|
||
_this.hide = _this.hide;
|
||
if (_this.mergeCells != null) {
|
||
for (var i = 0; i < _this.mergeCells.length; i++) {
|
||
var merge = _this.mergeCells[i],
|
||
attrList = merge.attributeList;
|
||
var ref = attrList.ref;
|
||
if (ref == null) {
|
||
continue;
|
||
}
|
||
var range = method_1.getcellrange(ref, _this.sheetList, sheetId);
|
||
var mergeValue = new LuckyBase_1.LuckySheetConfigMerge();
|
||
mergeValue.r = range.row[0];
|
||
mergeValue.c = range.column[0];
|
||
mergeValue.rs = range.row[1] - range.row[0] + 1;
|
||
mergeValue.cs = range.column[1] - range.column[0] + 1;
|
||
if (_this.config.merge == null) {
|
||
_this.config.merge = {};
|
||
}
|
||
_this.config.merge[range.row[0] + "_" + range.column[0]] = mergeValue;
|
||
}
|
||
}
|
||
var drawingFile = allFileOption.drawingFile,
|
||
drawingRelsFile = allFileOption.drawingRelsFile;
|
||
if (drawingFile != null && drawingRelsFile != null) {
|
||
var twoCellAnchors = _this.readXml.getElementsByTagName("xdr:twoCellAnchor", drawingFile);
|
||
if (twoCellAnchors != null && twoCellAnchors.length > 0) {
|
||
for (var i = 0; i < twoCellAnchors.length; i++) {
|
||
var twoCellAnchor = twoCellAnchors[i];
|
||
var editAs = method_1.getXmlAttibute(twoCellAnchor.attributeList, "editAs", "twoCell");
|
||
var xdrFroms = twoCellAnchor.getInnerElements("xdr:from"),
|
||
xdrTos = twoCellAnchor.getInnerElements("xdr:to");
|
||
var xdr_blipfills = twoCellAnchor.getInnerElements("a:blip");
|
||
if (xdrFroms != null && xdr_blipfills != null && xdrFroms.length > 0 && xdr_blipfills.length > 0) {
|
||
var xdrFrom = xdrFroms[0],
|
||
xdrTo = xdrTos[0],
|
||
xdr_blipfill = xdr_blipfills[0];
|
||
var rembed = method_1.getXmlAttibute(xdr_blipfill.attributeList, "r:embed", null);
|
||
var imageObject = _this.getBase64ByRid(rembed, drawingRelsFile);
|
||
// let aoff = xdr_xfrm.getInnerElements("a:off"), aext = xdr_xfrm.getInnerElements("a:ext");
|
||
// if(aoff!=null && aext!=null && aoff.length>0 && aext.length>0){
|
||
// let aoffAttribute = aoff[0].attributeList, aextAttribute = aext[0].attributeList;
|
||
// let x = getXmlAttibute(aoffAttribute, "x", null);
|
||
// let y = getXmlAttibute(aoffAttribute, "y", null);
|
||
// let cx = getXmlAttibute(aextAttribute, "cx", null);
|
||
// let cy = getXmlAttibute(aextAttribute, "cy", null);
|
||
// if(x!=null && y!=null && cx!=null && cy!=null && imageObject !=null){
|
||
// let x_n = getPxByEMUs(parseInt(x), "c"),y_n = getPxByEMUs(parseInt(y));
|
||
// let cx_n = getPxByEMUs(parseInt(cx), "c"),cy_n = getPxByEMUs(parseInt(cy));
|
||
var x_n = 0,
|
||
y_n = 0;
|
||
var cx_n = 0,
|
||
cy_n = 0;
|
||
imageObject.fromCol = _this.getXdrValue(xdrFrom.getInnerElements("xdr:col"));
|
||
imageObject.fromColOff = method_1.getPxByEMUs(_this.getXdrValue(xdrFrom.getInnerElements("xdr:colOff")));
|
||
imageObject.fromRow = _this.getXdrValue(xdrFrom.getInnerElements("xdr:row"));
|
||
imageObject.fromRowOff = method_1.getPxByEMUs(_this.getXdrValue(xdrFrom.getInnerElements("xdr:rowOff")));
|
||
imageObject.toCol = _this.getXdrValue(xdrTo.getInnerElements("xdr:col"));
|
||
imageObject.toColOff = method_1.getPxByEMUs(_this.getXdrValue(xdrTo.getInnerElements("xdr:colOff")));
|
||
imageObject.toRow = _this.getXdrValue(xdrTo.getInnerElements("xdr:row"));
|
||
imageObject.toRowOff = method_1.getPxByEMUs(_this.getXdrValue(xdrTo.getInnerElements("xdr:rowOff")));
|
||
imageObject.originWidth = cx_n;
|
||
imageObject.originHeight = cy_n;
|
||
if (editAs == "absolute") {
|
||
imageObject.type = "3";
|
||
} else if (editAs == "oneCell") {
|
||
imageObject.type = "2";
|
||
} else {
|
||
imageObject.type = "1";
|
||
}
|
||
imageObject.isFixedPos = false;
|
||
imageObject.fixedLeft = 0;
|
||
imageObject.fixedTop = 0;
|
||
var imageBorder = {
|
||
color: "#000",
|
||
radius: 0,
|
||
style: "solid",
|
||
width: 0
|
||
};
|
||
imageObject.border = imageBorder;
|
||
var imageCrop = {
|
||
height: cy_n,
|
||
offsetLeft: 0,
|
||
offsetTop: 0,
|
||
width: cx_n
|
||
};
|
||
imageObject.crop = imageCrop;
|
||
var imageDefault = {
|
||
height: cy_n,
|
||
left: x_n,
|
||
top: y_n,
|
||
width: cx_n
|
||
};
|
||
imageObject["default"] = imageDefault;
|
||
if (_this.images == null) {
|
||
_this.images = {};
|
||
}
|
||
_this.images[method_1.generateRandomIndex("image")] = imageObject;
|
||
// }
|
||
// }
|
||
}
|
||
}
|
||
}
|
||
}
|
||
return _this;
|
||
}
|
||
LuckySheet.prototype.getXdrValue = function (ele) {
|
||
if (ele == null || ele.length == 0) {
|
||
return null;
|
||
}
|
||
return parseInt(ele[0].value);
|
||
};
|
||
LuckySheet.prototype.getBase64ByRid = function (rid, drawingRelsFile) {
|
||
var Relationships = this.readXml.getElementsByTagName("Relationships/Relationship", drawingRelsFile);
|
||
if (Relationships != null && Relationships.length > 0) {
|
||
for (var i = 0; i < Relationships.length; i++) {
|
||
var Relationship = Relationships[i];
|
||
var attrList = Relationship.attributeList;
|
||
var Id = method_1.getXmlAttibute(attrList, "Id", null);
|
||
var src = method_1.getXmlAttibute(attrList, "Target", null);
|
||
if (Id == rid) {
|
||
src = src.replace(/\.\.\//g, "");
|
||
src = "xl/" + src;
|
||
var imgage = this.imageList.getImageByName(src);
|
||
return imgage;
|
||
}
|
||
}
|
||
}
|
||
return null;
|
||
};
|
||
/**
|
||
* @desc This will convert cols/col to luckysheet config of column'width
|
||
*/
|
||
LuckySheet.prototype.generateConfigColumnLenAndHidden = function () {
|
||
var cols = this.readXml.getElementsByTagName("cols/col", this.sheetFile);
|
||
for (var i = 0; i < cols.length; i++) {
|
||
var col = cols[i],
|
||
attrList = col.attributeList;
|
||
var min = method_1.getXmlAttibute(attrList, "min", null);
|
||
var max = method_1.getXmlAttibute(attrList, "max", null);
|
||
var width = method_1.getXmlAttibute(attrList, "width", null);
|
||
var hidden = method_1.getXmlAttibute(attrList, "hidden", null);
|
||
var customWidth = method_1.getXmlAttibute(attrList, "customWidth", null);
|
||
if (min == null || max == null) {
|
||
continue;
|
||
}
|
||
var minNum = parseInt(min) - 1,
|
||
maxNum = parseInt(max) - 1,
|
||
widthNum = parseFloat(width);
|
||
for (var m = minNum; m <= maxNum; m++) {
|
||
if (width != null) {
|
||
if (this.config.columnlen == null) {
|
||
this.config.columnlen = {};
|
||
}
|
||
this.config.columnlen[m] = method_1.getColumnWidthPixel(widthNum);
|
||
}
|
||
if (hidden == "1") {
|
||
if (this.config.colhidden == null) {
|
||
this.config.colhidden = {};
|
||
}
|
||
this.config.colhidden[m] = 0;
|
||
if (this.config.columnlen) {
|
||
delete this.config.columnlen[m];
|
||
}
|
||
}
|
||
if (customWidth != null) {
|
||
if (this.config.customWidth == null) {
|
||
this.config.customWidth = {};
|
||
}
|
||
this.config.customWidth[m] = 1;
|
||
}
|
||
}
|
||
}
|
||
};
|
||
/**
|
||
* @desc This will convert cols/col to luckysheet config of column'width
|
||
*/
|
||
LuckySheet.prototype.generateConfigRowLenAndHiddenAddCell = function () {
|
||
var rows = this.readXml.getElementsByTagName("sheetData/row", this.sheetFile);
|
||
var cellOtherInfo = {};
|
||
var formulaList = {};
|
||
cellOtherInfo.formulaList = formulaList;
|
||
for (var i = 0; i < rows.length; i++) {
|
||
var row = rows[i],
|
||
attrList = row.attributeList;
|
||
var rowNo = method_1.getXmlAttibute(attrList, "r", null);
|
||
var height = method_1.getXmlAttibute(attrList, "ht", null);
|
||
var hidden = method_1.getXmlAttibute(attrList, "hidden", null);
|
||
var customHeight = method_1.getXmlAttibute(attrList, "customHeight", null);
|
||
if (rowNo == null) {
|
||
continue;
|
||
}
|
||
var rowNoNum = parseInt(rowNo) - 1;
|
||
if (height != null) {
|
||
var heightNum = parseFloat(height);
|
||
if (this.config.rowlen == null) {
|
||
this.config.rowlen = {};
|
||
}
|
||
this.config.rowlen[rowNoNum] = method_1.getRowHeightPixel(heightNum);
|
||
}
|
||
if (hidden == "1") {
|
||
if (this.config.rowhidden == null) {
|
||
this.config.rowhidden = {};
|
||
}
|
||
this.config.rowhidden[rowNoNum] = 0;
|
||
if (this.config.rowlen) {
|
||
delete this.config.rowlen[rowNoNum];
|
||
}
|
||
}
|
||
if (customHeight != null) {
|
||
if (this.config.customHeight == null) {
|
||
this.config.customHeight = {};
|
||
}
|
||
this.config.customHeight[rowNoNum] = 1;
|
||
}
|
||
if (this.isInitialCell) {
|
||
var cells = row.getInnerElements("c");
|
||
for (var key in cells) {
|
||
var cell = cells[key];
|
||
var cellValue = new LuckyCell_1.LuckySheetCelldata(cell, this.styles, this.sharedStrings, this.mergeCells, this.sheetFile, this.readXml);
|
||
if (cellValue._borderObject != null) {
|
||
if (this.config.borderInfo == null) {
|
||
this.config.borderInfo = [];
|
||
}
|
||
this.config.borderInfo.push(cellValue._borderObject);
|
||
delete cellValue._borderObject;
|
||
}
|
||
// let borderId = cellValue._borderId;
|
||
// if(borderId!=null){
|
||
// let borders = this.styles["borders"] as Element[];
|
||
// if(this.config._borderInfo==null){
|
||
// this.config._borderInfo = {};
|
||
// }
|
||
// if( borderId in this.config._borderInfo){
|
||
// this.config._borderInfo[borderId].cells.push(cellValue.r + "_" + cellValue.c);
|
||
// }
|
||
// else{
|
||
// let border = borders[borderId];
|
||
// let borderObject = new LuckySheetborderInfoCellForImp();
|
||
// borderObject.rangeType = "cellGroup";
|
||
// borderObject.cells = [];
|
||
// let borderCellValue = new LuckySheetborderInfoCellValue();
|
||
// let lefts = border.getInnerElements("left");
|
||
// let rights = border.getInnerElements("right");
|
||
// let tops = border.getInnerElements("top");
|
||
// let bottoms = border.getInnerElements("bottom");
|
||
// let diagonals = border.getInnerElements("diagonal");
|
||
// let left = this.getBorderInfo(lefts);
|
||
// let right = this.getBorderInfo(rights);
|
||
// let top = this.getBorderInfo(tops);
|
||
// let bottom = this.getBorderInfo(bottoms);
|
||
// let diagonal = this.getBorderInfo(diagonals);
|
||
// let isAdd = false;
|
||
// if(left!=null && left.color!=null){
|
||
// borderCellValue.l = left;
|
||
// isAdd = true;
|
||
// }
|
||
// if(right!=null && right.color!=null){
|
||
// borderCellValue.r = right;
|
||
// isAdd = true;
|
||
// }
|
||
// if(top!=null && top.color!=null){
|
||
// borderCellValue.t = top;
|
||
// isAdd = true;
|
||
// }
|
||
// if(bottom!=null && bottom.color!=null){
|
||
// borderCellValue.b = bottom;
|
||
// isAdd = true;
|
||
// }
|
||
// if(isAdd){
|
||
// borderObject.value = borderCellValue;
|
||
// this.config._borderInfo[borderId] = borderObject;
|
||
// }
|
||
// }
|
||
// }
|
||
if (cellValue._formulaType == "shared") {
|
||
if (this.formulaRefList == null) {
|
||
this.formulaRefList = {};
|
||
}
|
||
if (this.formulaRefList[cellValue._formulaSi] == null) {
|
||
this.formulaRefList[cellValue._formulaSi] = {};
|
||
}
|
||
var fv = void 0;
|
||
if (cellValue.v != null) {
|
||
fv = cellValue.v.f;
|
||
}
|
||
var refValue = {
|
||
t: cellValue._formulaType,
|
||
ref: cellValue._fomulaRef,
|
||
si: cellValue._formulaSi,
|
||
fv: fv,
|
||
cellValue: cellValue
|
||
};
|
||
if (cellValue._fomulaRef != null) {
|
||
this.formulaRefList[cellValue._formulaSi]["mainRef"] = refValue;
|
||
} else {
|
||
this.formulaRefList[cellValue._formulaSi][cellValue.r + "_" + cellValue.c] = refValue;
|
||
}
|
||
// console.log(refValue, this.formulaRefList);
|
||
}
|
||
//There may be formulas that do not appear in calcChain
|
||
if (cellValue.v != null && cellValue.v.f != null) {
|
||
var formulaCell = {
|
||
r: cellValue.r,
|
||
c: cellValue.c
|
||
};
|
||
cellOtherInfo.formulaList["r" + cellValue.r + "c" + cellValue.c] = formulaCell;
|
||
}
|
||
this.celldata.push(cellValue);
|
||
}
|
||
}
|
||
}
|
||
return cellOtherInfo;
|
||
};
|
||
/**
|
||
* luckysheet config of dataValidations
|
||
*
|
||
* @returns {IluckysheetDataVerification} - dataValidations config
|
||
*/
|
||
LuckySheet.prototype.generateConfigDataValidations = function () {
|
||
var rows = this.readXml.getElementsByTagName("dataValidations/dataValidation", this.sheetFile);
|
||
var extLst = this.readXml.getElementsByTagName("extLst/ext/x14:dataValidations/x14:dataValidation", this.sheetFile) || [];
|
||
rows = rows.concat(extLst);
|
||
var dataVerification = {};
|
||
for (var i = 0; i < rows.length; i++) {
|
||
var row = rows[i];
|
||
var attrList = row.attributeList;
|
||
var formulaValue = row.value;
|
||
var type = method_1.getXmlAttibute(attrList, "type", null);
|
||
if (!type) {
|
||
continue;
|
||
}
|
||
var operator = "",
|
||
sqref = "",
|
||
sqrefIndexArr = [],
|
||
valueArr = [];
|
||
var _prohibitInput = method_1.getXmlAttibute(attrList, "allowBlank", null) !== "1" ? false : true;
|
||
// x14 processing
|
||
var formulaReg = new RegExp(/<x14:formula1>|<xm:sqref>/g);
|
||
if (formulaReg.test(formulaValue) && (extLst === null || extLst === void 0 ? void 0 : extLst.length) >= 0) {
|
||
operator = method_1.getXmlAttibute(attrList, "operator", null);
|
||
var peelOffData = method_1.getPeelOffX14(formulaValue);
|
||
sqref = peelOffData === null || peelOffData === void 0 ? void 0 : peelOffData.sqref;
|
||
sqrefIndexArr = method_1.getMultiSequenceToNum(sqref);
|
||
valueArr = method_1.getMultiFormulaValue(peelOffData === null || peelOffData === void 0 ? void 0 : peelOffData.formula);
|
||
} else {
|
||
operator = method_1.getXmlAttibute(attrList, "operator", null);
|
||
sqref = method_1.getXmlAttibute(attrList, "sqref", null);
|
||
sqrefIndexArr = method_1.getMultiSequenceToNum(sqref);
|
||
valueArr = method_1.getMultiFormulaValue(formulaValue);
|
||
}
|
||
var _type = constant_1.DATA_VERIFICATION_MAP[type];
|
||
var _type2 = null;
|
||
var _value1 = (valueArr === null || valueArr === void 0 ? void 0 : valueArr.length) >= 1 ? valueArr[0] : "";
|
||
var _value2 = (valueArr === null || valueArr === void 0 ? void 0 : valueArr.length) === 2 ? valueArr[1] : "";
|
||
var _hint = method_1.getXmlAttibute(attrList, "prompt", null);
|
||
var _hintShow = _hint ? true : false;
|
||
var matchType = constant_1.COMMON_TYPE2.includes(_type) ? "common" : _type;
|
||
_type2 = operator ? constant_1.DATA_VERIFICATION_TYPE2_MAP[matchType][operator] : "bw";
|
||
// mobile phone number processing
|
||
if (_type === "text_content" && ((_value1 === null || _value1 === void 0 ? void 0 : _value1.includes("LEN")) || (_value1 === null || _value1 === void 0 ? void 0 : _value1.includes("len"))) && (_value1 === null || _value1 === void 0 ? void 0 : _value1.includes("=11"))) {
|
||
_type = "validity";
|
||
_type2 = "phone";
|
||
}
|
||
// date processing
|
||
if (_type === "date") {
|
||
var D1900 = new Date(1899, 11, 30, 0, 0, 0);
|
||
_value1 = dayjs_1["default"](D1900).clone().add(Number(_value1), "day").format("YYYY-MM-DD");
|
||
_value2 = dayjs_1["default"](D1900).clone().add(Number(_value2), "day").format("YYYY-MM-DD");
|
||
}
|
||
// checkbox and dropdown processing
|
||
if (_type === "checkbox" || _type === "dropdown") {
|
||
_type2 = null;
|
||
}
|
||
// dynamically add dataVerifications
|
||
for (var _i = 0, sqrefIndexArr_1 = sqrefIndexArr; _i < sqrefIndexArr_1.length; _i++) {
|
||
var ref = sqrefIndexArr_1[_i];
|
||
dataVerification[ref] = {
|
||
type: _type,
|
||
type2: _type2,
|
||
value1: _value1,
|
||
value2: _value2,
|
||
checked: false,
|
||
remote: false,
|
||
prohibitInput: _prohibitInput,
|
||
hintShow: _hintShow,
|
||
hintText: _hint
|
||
};
|
||
}
|
||
}
|
||
return dataVerification;
|
||
};
|
||
/**
|
||
* luckysheet config of hyperlink
|
||
*
|
||
* @returns {IluckysheetHyperlink} - hyperlink config
|
||
*/
|
||
LuckySheet.prototype.generateConfigHyperlinks = function () {
|
||
var _a;
|
||
var rows = this.readXml.getElementsByTagName("hyperlinks/hyperlink", this.sheetFile);
|
||
var hyperlink = {};
|
||
var _loop_1 = function _loop_1(i) {
|
||
var row = rows[i];
|
||
var attrList = row.attributeList;
|
||
var ref = method_1.getXmlAttibute(attrList, "ref", null),
|
||
refArr = method_1.getMultiSequenceToNum(ref),
|
||
_display = method_1.getXmlAttibute(attrList, "display", null),
|
||
_address = method_1.getXmlAttibute(attrList, "location", null),
|
||
_tooltip = method_1.getXmlAttibute(attrList, "tooltip", null);
|
||
var _type = _address ? "internal" : "external";
|
||
// external hyperlink
|
||
if (!_address) {
|
||
var rid_1 = attrList["r:id"];
|
||
var sheetFile = this_1.sheetFile;
|
||
var relationshipList = this_1.readXml.getElementsByTagName("Relationships/Relationship", "xl/worksheets/_rels/" + sheetFile.replace(constant_1.worksheetFilePath, "") + ".rels");
|
||
var findRid = relationshipList === null || relationshipList === void 0 ? void 0 : relationshipList.find(function (e) {
|
||
return e.attributeList["Id"] === rid_1;
|
||
});
|
||
if (findRid) {
|
||
_address = findRid.attributeList["Target"];
|
||
_type = (_a = findRid.attributeList["TargetMode"]) === null || _a === void 0 ? void 0 : _a.toLocaleLowerCase();
|
||
}
|
||
}
|
||
// match R1C1
|
||
var addressReg = new RegExp(/^.*!R([\d$])+C([\d$])*$/g);
|
||
if (addressReg.test(_address)) {
|
||
_address = method_1.getTransR1C1ToSequence(_address);
|
||
}
|
||
// dynamically add hyperlinks
|
||
for (var _i = 0, refArr_1 = refArr; _i < refArr_1.length; _i++) {
|
||
var ref_1 = refArr_1[_i];
|
||
hyperlink[ref_1] = {
|
||
linkAddress: _address,
|
||
linkTooltip: _tooltip || "",
|
||
linkType: _type,
|
||
display: _display || ""
|
||
};
|
||
}
|
||
};
|
||
var this_1 = this;
|
||
for (var i = 0; i < rows.length; i++) {
|
||
_loop_1(i);
|
||
}
|
||
return hyperlink;
|
||
};
|
||
return LuckySheet;
|
||
}(LuckyBase_1.LuckySheetBase);
|
||
exports.LuckySheet = LuckySheet;
|
||
|
||
},{"../common/constant":47,"../common/method":49,"./LuckyBase":41,"./LuckyCell":42,"./ReadXml":46,"dayjs":5}],46:[function(require,module,exports){
|
||
"use strict";
|
||
|
||
var __extends = void 0 && (void 0).__extends || function () {
|
||
var _extendStatics = function extendStatics(d, b) {
|
||
_extendStatics = Object.setPrototypeOf || {
|
||
__proto__: []
|
||
} instanceof Array && function (d, b) {
|
||
d.__proto__ = b;
|
||
} || function (d, b) {
|
||
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
|
||
};
|
||
return _extendStatics(d, b);
|
||
};
|
||
return function (d, b) {
|
||
_extendStatics(d, b);
|
||
function __() {
|
||
this.constructor = d;
|
||
}
|
||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
||
};
|
||
}();
|
||
Object.defineProperty(exports, "__esModule", {
|
||
value: true
|
||
});
|
||
exports.getlineStringAttr = exports.getColor = exports.Element = exports.ReadXml = void 0;
|
||
var constant_1 = require("../common/constant");
|
||
var method_1 = require("../common/method");
|
||
var xmloperation = /** @class */function () {
|
||
function xmloperation() {}
|
||
/**
|
||
* @param tag Search xml tag name , div,title etc.
|
||
* @param file Xml string
|
||
* @return Xml element string
|
||
*/
|
||
xmloperation.prototype.getElementsByOneTag = function (tag, file) {
|
||
//<a:[^/>: ]+?>.*?</a:[^/>: ]+?>
|
||
var readTagReg;
|
||
if (tag.indexOf("|") > -1) {
|
||
var tags = tag.split("|"),
|
||
tagsRegTxt = "";
|
||
for (var i = 0; i < tags.length; i++) {
|
||
var t = tags[i];
|
||
tagsRegTxt += "|<" + t + " [^>]+?[^/]>[\\s\\S]*?</" + t + ">|<" + t + " [^>]+?/>|<" + t + ">[\\s\\S]*?</" + t + ">|<" + t + "/>";
|
||
}
|
||
tagsRegTxt = tagsRegTxt.substr(1, tagsRegTxt.length);
|
||
readTagReg = new RegExp(tagsRegTxt, "g");
|
||
} else {
|
||
readTagReg = new RegExp("<" + tag + " [^>]+?[^/]>[\\s\\S]*?</" + tag + ">|<" + tag + " [^>]+?/>|<" + tag + ">[\\s\\S]*?</" + tag + ">|<" + tag + "/>", "g");
|
||
}
|
||
var ret = file.match(readTagReg);
|
||
if (ret == null) {
|
||
return [];
|
||
} else {
|
||
return ret;
|
||
}
|
||
};
|
||
return xmloperation;
|
||
}();
|
||
var ReadXml = /** @class */function (_super) {
|
||
__extends(ReadXml, _super);
|
||
function ReadXml(files) {
|
||
var _this = _super.call(this) || this;
|
||
_this.originFile = files;
|
||
return _this;
|
||
}
|
||
/**
|
||
* @param path Search xml tag group , div,title etc.
|
||
* @param fileName One of uploadfileList, uploadfileList is file group, {key:value}
|
||
* @return Xml element calss
|
||
*/
|
||
ReadXml.prototype.getElementsByTagName = function (path, fileName) {
|
||
var file = this.getFileByName(fileName);
|
||
var pathArr = path.split("/"),
|
||
ret;
|
||
for (var key in pathArr) {
|
||
var path_1 = pathArr[key];
|
||
if (ret == undefined) {
|
||
ret = this.getElementsByOneTag(path_1, file);
|
||
} else {
|
||
if (ret instanceof Array) {
|
||
var items = [];
|
||
for (var key_1 in ret) {
|
||
var item = ret[key_1];
|
||
items = items.concat(this.getElementsByOneTag(path_1, item));
|
||
}
|
||
ret = items;
|
||
} else {
|
||
ret = this.getElementsByOneTag(path_1, ret);
|
||
}
|
||
}
|
||
}
|
||
var elements = [];
|
||
for (var i = 0; i < ret.length; i++) {
|
||
var ele = new Element(ret[i]);
|
||
elements.push(ele);
|
||
}
|
||
return elements;
|
||
};
|
||
/**
|
||
* @param name One of uploadfileList's name, search for file by this parameter
|
||
* @retrun Select a file from uploadfileList
|
||
*/
|
||
ReadXml.prototype.getFileByName = function (name) {
|
||
for (var fileKey in this.originFile) {
|
||
if (fileKey.indexOf(name) > -1) {
|
||
return this.originFile[fileKey];
|
||
}
|
||
}
|
||
return "";
|
||
};
|
||
return ReadXml;
|
||
}(xmloperation);
|
||
exports.ReadXml = ReadXml;
|
||
var Element = /** @class */function (_super) {
|
||
__extends(Element, _super);
|
||
function Element(str) {
|
||
var _this = _super.call(this) || this;
|
||
_this.elementString = str;
|
||
_this.setValue();
|
||
var readAttrReg = new RegExp('[a-zA-Z0-9_:]*?=".*?"', "g");
|
||
var attrList = _this.container.match(readAttrReg);
|
||
_this.attributeList = {};
|
||
if (attrList != null) {
|
||
for (var key in attrList) {
|
||
var attrFull = attrList[key];
|
||
// let al= attrFull.split("=");
|
||
if (attrFull.length == 0) {
|
||
continue;
|
||
}
|
||
var attrKey = attrFull.substr(0, attrFull.indexOf("="));
|
||
var attrValue = attrFull.substr(attrFull.indexOf("=") + 1);
|
||
if (attrKey == null || attrValue == null || attrKey.length == 0 || attrValue.length == 0) {
|
||
continue;
|
||
}
|
||
_this.attributeList[attrKey] = attrValue.substr(1, attrValue.length - 2);
|
||
}
|
||
}
|
||
return _this;
|
||
}
|
||
/**
|
||
* @param name Get attribute by key in element
|
||
* @return Single attribute
|
||
*/
|
||
Element.prototype.get = function (name) {
|
||
return this.attributeList[name];
|
||
};
|
||
/**
|
||
* @param tag Get elements by tag in elementString
|
||
* @return Element group
|
||
*/
|
||
Element.prototype.getInnerElements = function (tag) {
|
||
var ret = this.getElementsByOneTag(tag, this.elementString);
|
||
var elements = [];
|
||
for (var i = 0; i < ret.length; i++) {
|
||
var ele = new Element(ret[i]);
|
||
elements.push(ele);
|
||
}
|
||
if (elements.length == 0) {
|
||
return null;
|
||
}
|
||
return elements;
|
||
};
|
||
/**
|
||
* @desc get xml dom value and container, <container>value</container>
|
||
*/
|
||
Element.prototype.setValue = function () {
|
||
var str = this.elementString;
|
||
if (str.substr(str.length - 2, 2) == "/>") {
|
||
this.value = "";
|
||
this.container = str;
|
||
} else {
|
||
var firstTag = this.getFirstTag();
|
||
var firstTagReg = new RegExp("(<" + firstTag + " [^>]+?[^/]>)([\\s\\S]*?)</" + firstTag + ">|(<" + firstTag + ">)([\\s\\S]*?)</" + firstTag + ">", "g");
|
||
var result = firstTagReg.exec(str);
|
||
if (result != null) {
|
||
if (result[1] != null) {
|
||
this.container = result[1];
|
||
this.value = result[2];
|
||
} else {
|
||
this.container = result[3];
|
||
this.value = result[4];
|
||
}
|
||
}
|
||
}
|
||
};
|
||
/**
|
||
* @desc get xml dom first tag, <a><b></b></a>, get a
|
||
*/
|
||
Element.prototype.getFirstTag = function () {
|
||
var str = this.elementString;
|
||
var firstTag = str.substr(0, str.indexOf(" "));
|
||
if (firstTag == "" || firstTag.indexOf(">") > -1) {
|
||
firstTag = str.substr(0, str.indexOf(">"));
|
||
}
|
||
firstTag = firstTag.substr(1, firstTag.length);
|
||
return firstTag;
|
||
};
|
||
return Element;
|
||
}(xmloperation);
|
||
exports.Element = Element;
|
||
function combineIndexedColor(indexedColorsInner, indexedColors) {
|
||
var ret = {};
|
||
if (indexedColorsInner == null || indexedColorsInner.length == 0) {
|
||
return indexedColors;
|
||
}
|
||
for (var key in indexedColors) {
|
||
var value = indexedColors[key],
|
||
kn = parseInt(key);
|
||
var inner = indexedColorsInner[kn];
|
||
if (inner == null) {
|
||
ret[key] = value;
|
||
} else {
|
||
var rgb = inner.attributeList.rgb;
|
||
ret[key] = rgb;
|
||
}
|
||
}
|
||
return ret;
|
||
}
|
||
//clrScheme:Element[]
|
||
function getColor(color, styles, type) {
|
||
if (type === void 0) {
|
||
type = "g";
|
||
}
|
||
var attrList = color.attributeList;
|
||
var clrScheme = styles["clrScheme"];
|
||
var indexedColorsInner = styles["indexedColors"];
|
||
var mruColorsInner = styles["mruColors"];
|
||
var indexedColorsList = combineIndexedColor(indexedColorsInner, constant_1.indexedColors);
|
||
var indexed = attrList.indexed,
|
||
rgb = attrList.rgb,
|
||
theme = attrList.theme,
|
||
tint = attrList.tint;
|
||
var bg;
|
||
if (indexed != null) {
|
||
var indexedNum = parseInt(indexed);
|
||
bg = indexedColorsList[indexedNum];
|
||
if (bg != null) {
|
||
bg = bg.substring(bg.length - 6, bg.length);
|
||
bg = "#" + bg;
|
||
}
|
||
} else if (rgb != null) {
|
||
rgb = rgb.substring(rgb.length - 6, rgb.length);
|
||
bg = "#" + rgb;
|
||
} else if (theme != null) {
|
||
var themeNum = parseInt(theme);
|
||
if (themeNum == 0) {
|
||
themeNum = 1;
|
||
} else if (themeNum == 1) {
|
||
themeNum = 0;
|
||
} else if (themeNum == 2) {
|
||
themeNum = 3;
|
||
} else if (themeNum == 3) {
|
||
themeNum = 2;
|
||
}
|
||
var clrSchemeElement = clrScheme[themeNum];
|
||
if (clrSchemeElement != null) {
|
||
var clrs = clrSchemeElement.getInnerElements("a:sysClr|a:srgbClr");
|
||
if (clrs != null) {
|
||
var clr = clrs[0];
|
||
var clrAttrList = clr.attributeList;
|
||
// console.log(clr.container, );
|
||
if (clr.container.indexOf("sysClr") > -1) {
|
||
// if(type=="g" && clrAttrList.val=="windowText"){
|
||
// bg = null;
|
||
// }
|
||
// else if((type=="t" || type=="b") && clrAttrList.val=="window"){
|
||
// bg = null;
|
||
// }
|
||
// else
|
||
if (clrAttrList.lastClr != null) {
|
||
bg = "#" + clrAttrList.lastClr;
|
||
} else if (clrAttrList.val != null) {
|
||
bg = "#" + clrAttrList.val;
|
||
}
|
||
} else if (clr.container.indexOf("srgbClr") > -1) {
|
||
// console.log(clrAttrList.val);
|
||
bg = "#" + clrAttrList.val;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
if (tint != null) {
|
||
var tintNum = parseFloat(tint);
|
||
if (bg != null) {
|
||
bg = method_1.LightenDarkenColor(bg, tintNum);
|
||
}
|
||
}
|
||
return bg;
|
||
}
|
||
exports.getColor = getColor;
|
||
/**
|
||
* @dom xml attribute object
|
||
* @attr attribute name
|
||
* @d if attribute is null, return default value
|
||
* @return attribute value
|
||
*/
|
||
function getlineStringAttr(frpr, attr) {
|
||
var attrEle = frpr.getInnerElements(attr),
|
||
value;
|
||
if (attrEle != null && attrEle.length > 0) {
|
||
if (attr == "b" || attr == "i" || attr == "strike") {
|
||
value = "1";
|
||
} else if (attr == "u") {
|
||
var v = attrEle[0].attributeList.val;
|
||
if (v == "double") {
|
||
value = "2";
|
||
} else if (v == "singleAccounting") {
|
||
value = "3";
|
||
} else if (v == "doubleAccounting") {
|
||
value = "4";
|
||
} else {
|
||
value = "1";
|
||
}
|
||
} else if (attr == "vertAlign") {
|
||
var v = attrEle[0].attributeList.val;
|
||
if (v == "subscript") {
|
||
value = "1";
|
||
} else if (v == "superscript") {
|
||
value = "2";
|
||
}
|
||
} else {
|
||
value = attrEle[0].attributeList.val;
|
||
}
|
||
}
|
||
return value;
|
||
}
|
||
exports.getlineStringAttr = getlineStringAttr;
|
||
|
||
},{"../common/constant":47,"../common/method":49}],47:[function(require,module,exports){
|
||
"use strict";
|
||
|
||
Object.defineProperty(exports, "__esModule", {
|
||
value: true
|
||
});
|
||
exports.DATA_VERIFICATION_TYPE2_MAP = exports.COMMON_TYPE2 = exports.DATA_VERIFICATION_MAP = exports.fontFamilys = exports.numFmtDefaultMap = exports.borderTypes = exports.OEM_CHARSET = exports.indexedColors = exports.numFmtDefault = exports.BuiltInCellStyles = exports.ST_CellType = exports.workbookRels = exports.theme1File = exports.worksheetFilePath = exports.sharedStringsFile = exports.stylesFile = exports.calcChainFile = exports.workBookFile = exports.contentTypesFile = exports.appFile = exports.coreFile = exports.columeHeader_word_index = exports.columeHeader_word = void 0;
|
||
exports.columeHeader_word = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'];
|
||
exports.columeHeader_word_index = {
|
||
'A': 0,
|
||
'B': 1,
|
||
'C': 2,
|
||
'D': 3,
|
||
'E': 4,
|
||
'F': 5,
|
||
'G': 6,
|
||
'H': 7,
|
||
'I': 8,
|
||
'J': 9,
|
||
'K': 10,
|
||
'L': 11,
|
||
'M': 12,
|
||
'N': 13,
|
||
'O': 14,
|
||
'P': 15,
|
||
'Q': 16,
|
||
'R': 17,
|
||
'S': 18,
|
||
'T': 19,
|
||
'U': 20,
|
||
'V': 21,
|
||
'W': 22,
|
||
'X': 23,
|
||
'Y': 24,
|
||
'Z': 25
|
||
};
|
||
exports.coreFile = "docProps/core.xml";
|
||
exports.appFile = "docProps/app.xml";
|
||
exports.contentTypesFile = "[Content_Types].xml";
|
||
exports.workBookFile = "xl/workbook.xml";
|
||
exports.calcChainFile = "xl/calcChain.xml";
|
||
exports.stylesFile = "xl/styles.xml";
|
||
exports.sharedStringsFile = "xl/sharedStrings.xml";
|
||
exports.worksheetFilePath = "xl/worksheets/";
|
||
exports.theme1File = "xl/theme/theme1.xml";
|
||
exports.workbookRels = "xl/_rels/workbook.xml.rels";
|
||
//Excel Built-In cell type
|
||
exports.ST_CellType = {
|
||
"Boolean": "b",
|
||
"Date": "d",
|
||
"Error": "e",
|
||
"InlineString": "inlineStr",
|
||
"Number": "n",
|
||
"SharedString": "s",
|
||
"String": "str"
|
||
};
|
||
//Excel Built-In cell style
|
||
exports.BuiltInCellStyles = {
|
||
"0": "Normal"
|
||
};
|
||
exports.numFmtDefault = {
|
||
"0": 'General',
|
||
"1": '0',
|
||
"2": '0.00',
|
||
"3": '#,##0',
|
||
"4": '#,##0.00',
|
||
"9": '0%',
|
||
"10": '0.00%',
|
||
"11": '0.00E+00',
|
||
"12": '# ?/?',
|
||
"13": '# ??/??',
|
||
"14": 'm/d/yy',
|
||
"15": 'd-mmm-yy',
|
||
"16": 'd-mmm',
|
||
"17": 'mmm-yy',
|
||
"18": 'h:mm AM/PM',
|
||
"19": 'h:mm:ss AM/PM',
|
||
"20": 'h:mm',
|
||
"21": 'h:mm:ss',
|
||
"22": 'm/d/yy h:mm',
|
||
"37": '#,##0 ;(#,##0)',
|
||
"38": '#,##0 ;[Red](#,##0)',
|
||
"39": '#,##0.00;(#,##0.00)',
|
||
"40": '#,##0.00;[Red](#,##0.00)',
|
||
"45": 'mm:ss',
|
||
"46": '[h]:mm:ss',
|
||
"47": 'mmss.0',
|
||
"48": '##0.0E+0',
|
||
"49": '@'
|
||
};
|
||
exports.indexedColors = {
|
||
"0": '00000000',
|
||
"1": '00FFFFFF',
|
||
"2": '00FF0000',
|
||
"3": '0000FF00',
|
||
"4": '000000FF',
|
||
"5": '00FFFF00',
|
||
"6": '00FF00FF',
|
||
"7": '0000FFFF',
|
||
"8": '00000000',
|
||
"9": '00FFFFFF',
|
||
"10": '00FF0000',
|
||
"11": '0000FF00',
|
||
"12": '000000FF',
|
||
"13": '00FFFF00',
|
||
"14": '00FF00FF',
|
||
"15": '0000FFFF',
|
||
"16": '00800000',
|
||
"17": '00008000',
|
||
"18": '00000080',
|
||
"19": '00808000',
|
||
"20": '00800080',
|
||
"21": '00008080',
|
||
"22": '00C0C0C0',
|
||
"23": '00808080',
|
||
"24": '009999FF',
|
||
"25": '00993366',
|
||
"26": '00FFFFCC',
|
||
"27": '00CCFFFF',
|
||
"28": '00660066',
|
||
"29": '00FF8080',
|
||
"30": '000066CC',
|
||
"31": '00CCCCFF',
|
||
"32": '00000080',
|
||
"33": '00FF00FF',
|
||
"34": '00FFFF00',
|
||
"35": '0000FFFF',
|
||
"36": '00800080',
|
||
"37": '00800000',
|
||
"38": '00008080',
|
||
"39": '000000FF',
|
||
"40": '0000CCFF',
|
||
"41": '00CCFFFF',
|
||
"42": '00CCFFCC',
|
||
"43": '00FFFF99',
|
||
"44": '0099CCFF',
|
||
"45": '00FF99CC',
|
||
"46": '00CC99FF',
|
||
"47": '00FFCC99',
|
||
"48": '003366FF',
|
||
"49": '0033CCCC',
|
||
"50": '0099CC00',
|
||
"51": '00FFCC00',
|
||
"52": '00FF9900',
|
||
"53": '00FF6600',
|
||
"54": '00666699',
|
||
"55": '00969696',
|
||
"56": '00003366',
|
||
"57": '00339966',
|
||
"58": '00003300',
|
||
"59": '00333300',
|
||
"60": '00993300',
|
||
"61": '00993366',
|
||
"62": '00333399',
|
||
"63": '00333333',
|
||
"64": null,
|
||
"65": null
|
||
};
|
||
exports.OEM_CHARSET = {
|
||
"0": "ANSI_CHARSET",
|
||
"1": "DEFAULT_CHARSET",
|
||
"2": "SYMBOL_CHARSET",
|
||
"77": "MAC_CHARSET",
|
||
"128": "SHIFTJIS_CHARSET",
|
||
"129": "HANGUL_CHARSET",
|
||
"130": "JOHAB_CHARSET",
|
||
"134": "GB2312_CHARSET",
|
||
"136": "CHINESEBIG5_CHARSET",
|
||
"161": "GREEK_CHARSET",
|
||
"162": "TURKISH_CHARSET",
|
||
"163": "VIETNAMESE_CHARSET",
|
||
"177": "HEBREW_CHARSET",
|
||
"178": "ARABIC_CHARSET",
|
||
"186": "BALTIC_CHARSET",
|
||
"204": "RUSSIAN_CHARSET",
|
||
"222": "THAI_CHARSET",
|
||
"238": "EASTEUROPE_CHARSET",
|
||
"255": "OEM_CHARSET"
|
||
};
|
||
exports.borderTypes = {
|
||
"none": 0,
|
||
"thin": 1,
|
||
"hair": 2,
|
||
"dotted": 3,
|
||
"dashed": 4,
|
||
"dashDot": 5,
|
||
"dashDotDot": 6,
|
||
"double": 7,
|
||
"medium": 8,
|
||
"mediumDashed": 9,
|
||
"mediumDashDot": 10,
|
||
"mediumDashDotDot": 11,
|
||
"slantDashDot": 12,
|
||
"thick": 13
|
||
};
|
||
exports.numFmtDefaultMap = {
|
||
"yyyy/m/d;@": "yyyy/MM/dd",
|
||
"yyyy"年"m"月"d"日";@": "yyyy"年"MM"月"dd"日"",
|
||
"[$-409]yyyy/m/d\\ h:mm\\ AM/PM;@": "yyyy/MM/dd hh:mm AM/PM"
|
||
};
|
||
exports.fontFamilys = {
|
||
"0": "defualt",
|
||
"1": "Roman",
|
||
"2": "Swiss",
|
||
"3": "Modern",
|
||
"4": "Script",
|
||
"5": "Decorative"
|
||
};
|
||
exports.DATA_VERIFICATION_MAP = {
|
||
list: "dropdown",
|
||
whole: "number_integer",
|
||
decimal: "number_decimal",
|
||
custom: "text_content",
|
||
textLength: "text_length",
|
||
date: "date",
|
||
"unknown1": "number",
|
||
"unknown2": "checkbox",
|
||
"unknown3": "validity"
|
||
};
|
||
exports.COMMON_TYPE2 = ["number", "number_integer", "number_decimal", "text_length"];
|
||
exports.DATA_VERIFICATION_TYPE2_MAP = {
|
||
common: {
|
||
between: "bw",
|
||
notBetween: "nb",
|
||
equal: "eq",
|
||
notEqualTo: "ne",
|
||
moreThanThe: "gt",
|
||
lessThan: "lt",
|
||
greaterOrEqualTo: "gte",
|
||
lessThanOrEqualTo: "lte"
|
||
},
|
||
text_content: {
|
||
include: "include",
|
||
exclude: "exclude",
|
||
equal: "equal"
|
||
},
|
||
date: {
|
||
between: "bw",
|
||
notBetween: "nb",
|
||
equal: "eq",
|
||
notEqualTo: "ne",
|
||
earlierThan: "bf",
|
||
noEarlierThan: "nbf",
|
||
laterThan: "af",
|
||
noLaterThan: "naf"
|
||
},
|
||
validity: {
|
||
card: "card",
|
||
phone: "phone"
|
||
}
|
||
};
|
||
|
||
},{}],48:[function(require,module,exports){
|
||
"use strict";
|
||
|
||
Object.defineProperty(exports, "__esModule", {
|
||
value: true
|
||
});
|
||
exports.ToContext2D = exports.FromEMF = exports.UDOC = void 0;
|
||
exports.UDOC = {};
|
||
exports.UDOC.G = {
|
||
concat: function concat(p, r) {
|
||
for (var i = 0; i < r.cmds.length; i++) p.cmds.push(r.cmds[i]);
|
||
for (var i = 0; i < r.crds.length; i++) p.crds.push(r.crds[i]);
|
||
},
|
||
getBB: function getBB(ps) {
|
||
var x0 = 1e99,
|
||
y0 = 1e99,
|
||
x1 = -x0,
|
||
y1 = -y0;
|
||
for (var i = 0; i < ps.length; i += 2) {
|
||
var x = ps[i],
|
||
y = ps[i + 1];
|
||
if (x < x0) x0 = x;else if (x > x1) x1 = x;
|
||
if (y < y0) y0 = y;else if (y > y1) y1 = y;
|
||
}
|
||
return [x0, y0, x1, y1];
|
||
},
|
||
rectToPath: function rectToPath(r) {
|
||
return {
|
||
cmds: ["M", "L", "L", "L", "Z"],
|
||
crds: [r[0], r[1], r[2], r[1], r[2], r[3], r[0], r[3]]
|
||
};
|
||
},
|
||
// a inside b
|
||
insideBox: function insideBox(a, b) {
|
||
return b[0] <= a[0] && b[1] <= a[1] && a[2] <= b[2] && a[3] <= b[3];
|
||
},
|
||
isBox: function isBox(p, bb) {
|
||
var sameCrd8 = function sameCrd8(pcrd, crds) {
|
||
for (var o = 0; o < 8; o += 2) {
|
||
var eq = true;
|
||
for (var j = 0; j < 8; j++) if (Math.abs(crds[j] - pcrd[j + o & 7]) >= 2) {
|
||
eq = false;
|
||
break;
|
||
}
|
||
if (eq) return true;
|
||
}
|
||
return false;
|
||
};
|
||
if (p.cmds.length > 10) return false;
|
||
var cmds = p.cmds.join(""),
|
||
crds = p.crds;
|
||
var sameRect = false;
|
||
if (cmds == "MLLLZ" && crds.length == 8 || cmds == "MLLLLZ" && crds.length == 10) {
|
||
if (crds.length == 10) crds = crds.slice(0, 8);
|
||
var x0 = bb[0],
|
||
y0 = bb[1],
|
||
x1 = bb[2],
|
||
y1 = bb[3];
|
||
if (!sameRect) sameRect = sameCrd8(crds, [x0, y0, x1, y0, x1, y1, x0, y1]);
|
||
if (!sameRect) sameRect = sameCrd8(crds, [x0, y1, x1, y1, x1, y0, x0, y0]);
|
||
}
|
||
return sameRect;
|
||
},
|
||
boxArea: function boxArea(a) {
|
||
var w = a[2] - a[0],
|
||
h = a[3] - a[1];
|
||
return w * h;
|
||
},
|
||
newPath: function newPath(gst) {
|
||
gst.pth = {
|
||
cmds: [],
|
||
crds: []
|
||
};
|
||
},
|
||
moveTo: function moveTo(gst, x, y) {
|
||
var p = exports.UDOC.M.multPoint(gst.ctm, [x, y]); //if(gst.cpos[0]==p[0] && gst.cpos[1]==p[1]) return;
|
||
gst.pth.cmds.push("M");
|
||
gst.pth.crds.push(p[0], p[1]);
|
||
gst.cpos = p;
|
||
},
|
||
lineTo: function lineTo(gst, x, y) {
|
||
var p = exports.UDOC.M.multPoint(gst.ctm, [x, y]);
|
||
if (gst.cpos[0] == p[0] && gst.cpos[1] == p[1]) return;
|
||
gst.pth.cmds.push("L");
|
||
gst.pth.crds.push(p[0], p[1]);
|
||
gst.cpos = p;
|
||
},
|
||
curveTo: function curveTo(gst, x1, y1, x2, y2, x3, y3) {
|
||
var p;
|
||
p = exports.UDOC.M.multPoint(gst.ctm, [x1, y1]);
|
||
x1 = p[0];
|
||
y1 = p[1];
|
||
p = exports.UDOC.M.multPoint(gst.ctm, [x2, y2]);
|
||
x2 = p[0];
|
||
y2 = p[1];
|
||
p = exports.UDOC.M.multPoint(gst.ctm, [x3, y3]);
|
||
x3 = p[0];
|
||
y3 = p[1];
|
||
gst.cpos = p;
|
||
gst.pth.cmds.push("C");
|
||
gst.pth.crds.push(x1, y1, x2, y2, x3, y3);
|
||
},
|
||
closePath: function closePath(gst) {
|
||
gst.pth.cmds.push("Z");
|
||
},
|
||
arc: function arc(gst, x, y, r, a0, a1, neg) {
|
||
// circle from a0 counter-clock-wise to a1
|
||
if (neg) while (a1 > a0) a1 -= 2 * Math.PI;else while (a1 < a0) a1 += 2 * Math.PI;
|
||
var th = (a1 - a0) / 4;
|
||
var x0 = Math.cos(th / 2),
|
||
y0 = -Math.sin(th / 2);
|
||
var x1 = (4 - x0) / 3,
|
||
y1 = y0 == 0 ? y0 : (1 - x0) * (3 - x0) / (3 * y0);
|
||
var x2 = x1,
|
||
y2 = -y1;
|
||
var x3 = x0,
|
||
y3 = -y0;
|
||
var p0 = [x0, y0],
|
||
p1 = [x1, y1],
|
||
p2 = [x2, y2],
|
||
p3 = [x3, y3];
|
||
var pth = {
|
||
cmds: [gst.pth.cmds.length == 0 ? "M" : "L", "C", "C", "C", "C"],
|
||
crds: [x0, y0, x1, y1, x2, y2, x3, y3]
|
||
};
|
||
var rot = [1, 0, 0, 1, 0, 0];
|
||
exports.UDOC.M.rotate(rot, -th);
|
||
for (var i = 0; i < 3; i++) {
|
||
p1 = exports.UDOC.M.multPoint(rot, p1);
|
||
p2 = exports.UDOC.M.multPoint(rot, p2);
|
||
p3 = exports.UDOC.M.multPoint(rot, p3);
|
||
pth.crds.push(p1[0], p1[1], p2[0], p2[1], p3[0], p3[1]);
|
||
}
|
||
var sc = [r, 0, 0, r, x, y];
|
||
exports.UDOC.M.rotate(rot, -a0 + th / 2);
|
||
exports.UDOC.M.concat(rot, sc);
|
||
exports.UDOC.M.multArray(rot, pth.crds);
|
||
exports.UDOC.M.multArray(gst.ctm, pth.crds);
|
||
exports.UDOC.G.concat(gst.pth, pth);
|
||
var y = pth.crds.pop();
|
||
x = pth.crds.pop();
|
||
gst.cpos = [x, y];
|
||
},
|
||
toPoly: function toPoly(p) {
|
||
if (p.cmds[0] != "M" || p.cmds[p.cmds.length - 1] != "Z") return null;
|
||
for (var i = 1; i < p.cmds.length - 1; i++) if (p.cmds[i] != "L") return null;
|
||
var out = [],
|
||
cl = p.crds.length;
|
||
if (p.crds[0] == p.crds[cl - 2] && p.crds[1] == p.crds[cl - 1]) cl -= 2;
|
||
for (var i = 0; i < cl; i += 2) out.push([p.crds[i], p.crds[i + 1]]);
|
||
if (exports.UDOC.G.polyArea(p.crds) < 0) out.reverse();
|
||
return out;
|
||
},
|
||
fromPoly: function fromPoly(p) {
|
||
var o = {
|
||
cmds: [],
|
||
crds: []
|
||
};
|
||
for (var i = 0; i < p.length; i++) {
|
||
o.crds.push(p[i][0], p[i][1]);
|
||
o.cmds.push(i == 0 ? "M" : "L");
|
||
}
|
||
o.cmds.push("Z");
|
||
return o;
|
||
},
|
||
polyArea: function polyArea(p) {
|
||
if (p.length < 6) return 0;
|
||
var l = p.length - 2;
|
||
var sum = (p[0] - p[l]) * (p[l + 1] + p[1]);
|
||
for (var i = 0; i < l; i += 2) sum += (p[i + 2] - p[i]) * (p[i + 1] + p[i + 3]);
|
||
return -sum * 0.5;
|
||
},
|
||
polyClip: function polyClip(p0, p1) {
|
||
var cp1, cp2, s, e;
|
||
var inside = function inside(p) {
|
||
return (cp2[0] - cp1[0]) * (p[1] - cp1[1]) > (cp2[1] - cp1[1]) * (p[0] - cp1[0]);
|
||
};
|
||
var isc = function isc() {
|
||
var dc = [cp1[0] - cp2[0], cp1[1] - cp2[1]],
|
||
dp = [s[0] - e[0], s[1] - e[1]],
|
||
n1 = cp1[0] * cp2[1] - cp1[1] * cp2[0],
|
||
n2 = s[0] * e[1] - s[1] * e[0],
|
||
n3 = 1.0 / (dc[0] * dp[1] - dc[1] * dp[0]);
|
||
return [(n1 * dp[0] - n2 * dc[0]) * n3, (n1 * dp[1] - n2 * dc[1]) * n3];
|
||
};
|
||
var out = p0;
|
||
cp1 = p1[p1.length - 1];
|
||
for (var j in p1) {
|
||
var cp2 = p1[j];
|
||
var inp = out;
|
||
out = [];
|
||
s = inp[inp.length - 1]; //last on the input list
|
||
for (var i in inp) {
|
||
var e = inp[i];
|
||
if (inside(e)) {
|
||
if (!inside(s)) {
|
||
out.push(isc());
|
||
}
|
||
out.push(e);
|
||
} else if (inside(s)) {
|
||
out.push(isc());
|
||
}
|
||
s = e;
|
||
}
|
||
cp1 = cp2;
|
||
}
|
||
return out;
|
||
}
|
||
};
|
||
exports.UDOC.M = {
|
||
getScale: function getScale(m) {
|
||
return Math.sqrt(Math.abs(m[0] * m[3] - m[1] * m[2]));
|
||
},
|
||
translate: function translate(m, x, y) {
|
||
exports.UDOC.M.concat(m, [1, 0, 0, 1, x, y]);
|
||
},
|
||
rotate: function rotate(m, a) {
|
||
exports.UDOC.M.concat(m, [Math.cos(a), -Math.sin(a), Math.sin(a), Math.cos(a), 0, 0]);
|
||
},
|
||
scale: function scale(m, x, y) {
|
||
exports.UDOC.M.concat(m, [x, 0, 0, y, 0, 0]);
|
||
},
|
||
concat: function concat(m, w) {
|
||
var a = m[0],
|
||
b = m[1],
|
||
c = m[2],
|
||
d = m[3],
|
||
tx = m[4],
|
||
ty = m[5];
|
||
m[0] = a * w[0] + b * w[2];
|
||
m[1] = a * w[1] + b * w[3];
|
||
m[2] = c * w[0] + d * w[2];
|
||
m[3] = c * w[1] + d * w[3];
|
||
m[4] = tx * w[0] + ty * w[2] + w[4];
|
||
m[5] = tx * w[1] + ty * w[3] + w[5];
|
||
},
|
||
invert: function invert(m) {
|
||
var a = m[0],
|
||
b = m[1],
|
||
c = m[2],
|
||
d = m[3],
|
||
tx = m[4],
|
||
ty = m[5],
|
||
adbc = a * d - b * c;
|
||
m[0] = d / adbc;
|
||
m[1] = -b / adbc;
|
||
m[2] = -c / adbc;
|
||
m[3] = a / adbc;
|
||
m[4] = (c * ty - d * tx) / adbc;
|
||
m[5] = (b * tx - a * ty) / adbc;
|
||
},
|
||
multPoint: function multPoint(m, p) {
|
||
var x = p[0],
|
||
y = p[1];
|
||
return [x * m[0] + y * m[2] + m[4], x * m[1] + y * m[3] + m[5]];
|
||
},
|
||
multArray: function multArray(m, a) {
|
||
for (var i = 0; i < a.length; i += 2) {
|
||
var x = a[i],
|
||
y = a[i + 1];
|
||
a[i] = x * m[0] + y * m[2] + m[4];
|
||
a[i + 1] = x * m[1] + y * m[3] + m[5];
|
||
}
|
||
}
|
||
};
|
||
exports.UDOC.C = {
|
||
srgbGamma: function srgbGamma(x) {
|
||
return x < 0.0031308 ? 12.92 * x : 1.055 * Math.pow(x, 1.0 / 2.4) - 0.055;
|
||
},
|
||
cmykToRgb: function cmykToRgb(clr) {
|
||
var c = clr[0],
|
||
m = clr[1],
|
||
y = clr[2],
|
||
k = clr[3];
|
||
// return [1-Math.min(1,c+k), 1-Math.min(1, m+k), 1-Math.min(1,y+k)];
|
||
var r = 255 + c * (-4.387332384609988 * c + 54.48615194189176 * m + 18.82290502165302 * y + 212.25662451639585 * k + -285.2331026137004) + m * (1.7149763477362134 * m - 5.6096736904047315 * y + -17.873870861415444 * k - 5.497006427196366) + y * (-2.5217340131683033 * y - 21.248923337353073 * k + 17.5119270841813) + k * (-21.86122147463605 * k - 189.48180835922747);
|
||
var g = 255 + c * (8.841041422036149 * c + 60.118027045597366 * m + 6.871425592049007 * y + 31.159100130055922 * k + -79.2970844816548) + m * (-15.310361306967817 * m + 17.575251261109482 * y + 131.35250912493976 * k - 190.9453302588951) + y * (4.444339102852739 * y + 9.8632861493405 * k - 24.86741582555878) + k * (-20.737325471181034 * k - 187.80453709719578);
|
||
var b = 255 + c * (0.8842522430003296 * c + 8.078677503112928 * m + 30.89978309703729 * y - 0.23883238689178934 * k + -14.183576799673286) + m * (10.49593273432072 * m + 63.02378494754052 * y + 50.606957656360734 * k - 112.23884253719248) + y * (0.03296041114873217 * y + 115.60384449646641 * k + -193.58209356861505) + k * (-22.33816807309886 * k - 180.12613974708367);
|
||
return [Math.max(0, Math.min(1, r / 255)), Math.max(0, Math.min(1, g / 255)), Math.max(0, Math.min(1, b / 255))];
|
||
//var iK = 1-c[3];
|
||
//return [(1-c[0])*iK, (1-c[1])*iK, (1-c[2])*iK];
|
||
},
|
||
labToRgb: function labToRgb(lab) {
|
||
var k = 903.3,
|
||
e = 0.008856,
|
||
L = lab[0],
|
||
a = lab[1],
|
||
b = lab[2];
|
||
var fy = (L + 16) / 116,
|
||
fy3 = fy * fy * fy;
|
||
var fz = fy - b / 200,
|
||
fz3 = fz * fz * fz;
|
||
var fx = a / 500 + fy,
|
||
fx3 = fx * fx * fx;
|
||
var zr = fz3 > e ? fz3 : (116 * fz - 16) / k;
|
||
var yr = fy3 > e ? fy3 : (116 * fy - 16) / k;
|
||
var xr = fx3 > e ? fx3 : (116 * fx - 16) / k;
|
||
var X = xr * 96.72,
|
||
Y = yr * 100,
|
||
Z = zr * 81.427,
|
||
xyz = [X / 100, Y / 100, Z / 100];
|
||
var x2s = [3.1338561, -1.6168667, -0.4906146, -0.9787684, 1.9161415, 0.0334540, 0.0719453, -0.2289914, 1.4052427];
|
||
var rgb = [x2s[0] * xyz[0] + x2s[1] * xyz[1] + x2s[2] * xyz[2], x2s[3] * xyz[0] + x2s[4] * xyz[1] + x2s[5] * xyz[2], x2s[6] * xyz[0] + x2s[7] * xyz[1] + x2s[8] * xyz[2]];
|
||
for (var i = 0; i < 3; i++) rgb[i] = Math.max(0, Math.min(1, exports.UDOC.C.srgbGamma(rgb[i])));
|
||
return rgb;
|
||
}
|
||
};
|
||
exports.UDOC.getState = function (crds) {
|
||
return {
|
||
font: exports.UDOC.getFont(),
|
||
dd: {
|
||
flat: 1
|
||
},
|
||
space: "/DeviceGray",
|
||
// fill
|
||
ca: 1,
|
||
colr: [0, 0, 0],
|
||
sspace: "/DeviceGray",
|
||
// stroke
|
||
CA: 1,
|
||
COLR: [0, 0, 0],
|
||
bmode: "/Normal",
|
||
SA: false,
|
||
OPM: 0,
|
||
AIS: false,
|
||
OP: false,
|
||
op: false,
|
||
SMask: "/None",
|
||
lwidth: 1,
|
||
lcap: 0,
|
||
ljoin: 0,
|
||
mlimit: 10,
|
||
SM: 0.1,
|
||
doff: 0,
|
||
dash: [],
|
||
ctm: [1, 0, 0, 1, 0, 0],
|
||
cpos: [0, 0],
|
||
pth: {
|
||
cmds: [],
|
||
crds: []
|
||
},
|
||
cpth: crds ? exports.UDOC.G.rectToPath(crds) : null // clipping path
|
||
};
|
||
};
|
||
exports.UDOC.getFont = function () {
|
||
return {
|
||
Tc: 0,
|
||
Tw: 0,
|
||
Th: 100,
|
||
Tl: 0,
|
||
Tf: "Helvetica-Bold",
|
||
Tfs: 1,
|
||
Tmode: 0,
|
||
Trise: 0,
|
||
Tk: 0,
|
||
Tal: 0,
|
||
Tun: 0,
|
||
Tm: [1, 0, 0, 1, 0, 0],
|
||
Tlm: [1, 0, 0, 1, 0, 0],
|
||
Trm: [1, 0, 0, 1, 0, 0]
|
||
};
|
||
};
|
||
exports.FromEMF = function () {};
|
||
exports.FromEMF.Parse = function (buff, genv) {
|
||
buff = new Uint8Array(buff);
|
||
var off = 0;
|
||
//console.log(buff.slice(0,32));
|
||
var prms = {
|
||
fill: false,
|
||
strk: false,
|
||
bb: [0, 0, 1, 1],
|
||
wbb: [0, 0, 1, 1],
|
||
fnt: {
|
||
nam: "Arial",
|
||
hgh: 25,
|
||
und: false,
|
||
orn: 0
|
||
},
|
||
tclr: [0, 0, 0],
|
||
talg: 0
|
||
},
|
||
gst,
|
||
tab = [],
|
||
sts = [];
|
||
var rI = exports.FromEMF.B.readShort,
|
||
rU = exports.FromEMF.B.readUshort,
|
||
rI32 = exports.FromEMF.B.readInt,
|
||
rU32 = exports.FromEMF.B.readUint,
|
||
rF32 = exports.FromEMF.B.readFloat;
|
||
var opn = 0;
|
||
while (true) {
|
||
var fnc = rU32(buff, off);
|
||
off += 4;
|
||
var fnm = exports.FromEMF.K[fnc];
|
||
var siz = rU32(buff, off);
|
||
off += 4;
|
||
//if(gst && isNaN(gst.ctm[0])) throw "e";
|
||
//console.log(fnc,fnm,siz);
|
||
var loff = off;
|
||
//if(opn++==253) break;
|
||
var obj = null,
|
||
oid = 0;
|
||
//console.log(fnm, siz);
|
||
if (false) {} else if (fnm == "EOF") {
|
||
break;
|
||
} else if (fnm == "HEADER") {
|
||
prms.bb = exports.FromEMF._readBox(buff, loff);
|
||
loff += 16; //console.log(fnm, prms.bb);
|
||
genv.StartPage(prms.bb[0], prms.bb[1], prms.bb[2], prms.bb[3]);
|
||
gst = exports.UDOC.getState(prms.bb);
|
||
} else if (fnm == "SAVEDC") sts.push(JSON.stringify(gst), JSON.stringify(prms));else if (fnm == "RESTOREDC") {
|
||
var dif = rI32(buff, loff);
|
||
loff += 4;
|
||
while (dif < -1) {
|
||
sts.pop();
|
||
sts.pop();
|
||
}
|
||
prms = JSON.parse(sts.pop());
|
||
gst = JSON.parse(sts.pop());
|
||
} else if (fnm == "SELECTCLIPPATH") {
|
||
gst.cpth = JSON.parse(JSON.stringify(gst.pth));
|
||
} else if (["SETMAPMODE", "SETPOLYFILLMODE", "SETBKMODE" /*,"SETVIEWPORTEXTEX"*/, "SETICMMODE", "SETROP2", "EXTSELECTCLIPRGN"].indexOf(fnm) != -1) {}
|
||
//else if(fnm=="INTERSECTCLIPRECT") { var r=prms.crct=FromEMF._readBox(buff, loff); /*var y0=r[1],y1=r[3]; if(y0>y1){r[1]=y1; r[3]=y0;}*/ console.log(prms.crct); }
|
||
else if (fnm == "SETMITERLIMIT") gst.mlimit = rU32(buff, loff);else if (fnm == "SETTEXTCOLOR") prms.tclr = [buff[loff] / 255, buff[loff + 1] / 255, buff[loff + 2] / 255];else if (fnm == "SETTEXTALIGN") prms.talg = rU32(buff, loff);else if (fnm == "SETVIEWPORTEXTEX" || fnm == "SETVIEWPORTORGEX") {
|
||
if (prms.vbb == null) prms.vbb = [];
|
||
var coff = fnm == "SETVIEWPORTORGEX" ? 0 : 2;
|
||
prms.vbb[coff] = rI32(buff, loff);
|
||
loff += 4;
|
||
prms.vbb[coff + 1] = rI32(buff, loff);
|
||
loff += 4;
|
||
//console.log(prms.vbb);
|
||
if (fnm == "SETVIEWPORTEXTEX") exports.FromEMF._updateCtm(prms, gst);
|
||
} else if (fnm == "SETWINDOWEXTEX" || fnm == "SETWINDOWORGEX") {
|
||
var coff = fnm == "SETWINDOWORGEX" ? 0 : 2;
|
||
prms.wbb[coff] = rI32(buff, loff);
|
||
loff += 4;
|
||
prms.wbb[coff + 1] = rI32(buff, loff);
|
||
loff += 4;
|
||
if (fnm == "SETWINDOWEXTEX") exports.FromEMF._updateCtm(prms, gst);
|
||
}
|
||
//else if(fnm=="SETMETARGN") {}
|
||
else if (fnm == "COMMENT") {
|
||
var ds = rU32(buff, loff);
|
||
loff += 4;
|
||
} else if (fnm == "SELECTOBJECT") {
|
||
var ind = rU32(buff, loff);
|
||
loff += 4;
|
||
//console.log(ind.toString(16), tab, tab[ind]);
|
||
if (ind == 0x80000000) {
|
||
prms.fill = true;
|
||
gst.colr = [1, 1, 1];
|
||
} // white brush
|
||
else if (ind == 0x80000005) {
|
||
prms.fill = false;
|
||
} // null brush
|
||
else if (ind == 0x80000007) {
|
||
prms.strk = true;
|
||
prms.lwidth = 1;
|
||
gst.COLR = [0, 0, 0];
|
||
} // black pen
|
||
else if (ind == 0x80000008) {
|
||
prms.strk = false;
|
||
} // null pen
|
||
else if (ind == 0x8000000d) {} // system font
|
||
else if (ind == 0x8000000e) {} // device default font
|
||
else {
|
||
var co = tab[ind]; //console.log(ind, co);
|
||
if (co.t == "b") {
|
||
prms.fill = co.stl != 1;
|
||
if (co.stl == 0) {} else if (co.stl == 1) {} else throw co.stl + " e";
|
||
gst.colr = co.clr;
|
||
} else if (co.t == "p") {
|
||
prms.strk = co.stl != 5;
|
||
gst.lwidth = co.wid;
|
||
gst.COLR = co.clr;
|
||
} else if (co.t == "f") {
|
||
prms.fnt = co;
|
||
gst.font.Tf = co.nam;
|
||
gst.font.Tfs = Math.abs(co.hgh);
|
||
gst.font.Tun = co.und;
|
||
} else throw "e";
|
||
}
|
||
} else if (fnm == "DELETEOBJECT") {
|
||
var ind = rU32(buff, loff);
|
||
loff += 4;
|
||
if (tab[ind] != null) tab[ind] = null;else throw "e";
|
||
} else if (fnm == "CREATEBRUSHINDIRECT") {
|
||
oid = rU32(buff, loff);
|
||
loff += 4;
|
||
obj = {
|
||
t: "b"
|
||
};
|
||
obj.stl = rU32(buff, loff);
|
||
loff += 4;
|
||
obj.clr = [buff[loff] / 255, buff[loff + 1] / 255, buff[loff + 2] / 255];
|
||
loff += 4;
|
||
obj.htc = rU32(buff, loff);
|
||
loff += 4;
|
||
//console.log(oid, obj);
|
||
} else if (fnm == "CREATEPEN" || fnm == "EXTCREATEPEN") {
|
||
oid = rU32(buff, loff);
|
||
loff += 4;
|
||
obj = {
|
||
t: "p"
|
||
};
|
||
if (fnm == "EXTCREATEPEN") {
|
||
loff += 16;
|
||
obj.stl = rU32(buff, loff);
|
||
loff += 4;
|
||
obj.wid = rU32(buff, loff);
|
||
loff += 4;
|
||
//obj.stl = rU32(buff, loff);
|
||
loff += 4;
|
||
} else {
|
||
obj.stl = rU32(buff, loff);
|
||
loff += 4;
|
||
obj.wid = rU32(buff, loff);
|
||
loff += 4;
|
||
loff += 4;
|
||
}
|
||
obj.clr = [buff[loff] / 255, buff[loff + 1] / 255, buff[loff + 2] / 255];
|
||
loff += 4;
|
||
} else if (fnm == "EXTCREATEFONTINDIRECTW") {
|
||
oid = rU32(buff, loff);
|
||
loff += 4;
|
||
obj = {
|
||
t: "f",
|
||
nam: ""
|
||
};
|
||
obj.hgh = rI32(buff, loff);
|
||
loff += 4;
|
||
loff += 4 * 2;
|
||
obj.orn = rI32(buff, loff) / 10;
|
||
loff += 4;
|
||
var wgh = rU32(buff, loff);
|
||
loff += 4; //console.log(fnm, obj.orn, wgh);
|
||
//console.log(rU32(buff,loff), rU32(buff,loff+4), buff.slice(loff,loff+8));
|
||
obj.und = buff[loff + 1];
|
||
obj.stk = buff[loff + 2];
|
||
loff += 4 * 2;
|
||
while (rU(buff, loff) != 0) {
|
||
obj.nam += String.fromCharCode(rU(buff, loff));
|
||
loff += 2;
|
||
}
|
||
if (wgh > 500) obj.nam += "-Bold";
|
||
//console.log(wgh, obj.nam);
|
||
} else if (fnm == "EXTTEXTOUTW") {
|
||
//console.log(buff.slice(loff-8, loff-8+siz));
|
||
loff += 16;
|
||
var mod = rU32(buff, loff);
|
||
loff += 4; //console.log(mod);
|
||
var scx = rF32(buff, loff);
|
||
loff += 4;
|
||
var scy = rF32(buff, loff);
|
||
loff += 4;
|
||
var rfx = rI32(buff, loff);
|
||
loff += 4;
|
||
var rfy = rI32(buff, loff);
|
||
loff += 4;
|
||
//console.log(mod, scx, scy,rfx,rfy);
|
||
gst.font.Tm = [1, 0, 0, -1, 0, 0];
|
||
exports.UDOC.M.rotate(gst.font.Tm, prms.fnt.orn * Math.PI / 180);
|
||
exports.UDOC.M.translate(gst.font.Tm, rfx, rfy);
|
||
var alg = prms.talg; //console.log(alg.toString(2));
|
||
if ((alg & 6) == 6) gst.font.Tal = 2;else if ((alg & 7) == 0) gst.font.Tal = 0;else throw alg + " e";
|
||
if ((alg & 24) == 24) {} // baseline
|
||
else if ((alg & 24) == 0) exports.UDOC.M.translate(gst.font.Tm, 0, gst.font.Tfs);else throw "e";
|
||
var crs = rU32(buff, loff);
|
||
loff += 4;
|
||
var ofs = rU32(buff, loff);
|
||
loff += 4;
|
||
var ops = rU32(buff, loff);
|
||
loff += 4; //if(ops!=0) throw "e";
|
||
//console.log(ofs,ops,crs);
|
||
loff += 16;
|
||
var ofD = rU32(buff, loff);
|
||
loff += 4; //console.log(ops, ofD, loff, ofs+off-8);
|
||
ofs += off - 8; //console.log(crs, ops);
|
||
var str = "";
|
||
for (var i = 0; i < crs; i++) {
|
||
var cc = rU(buff, ofs + i * 2);
|
||
str += String.fromCharCode(cc);
|
||
}
|
||
;
|
||
var oclr = gst.colr;
|
||
gst.colr = prms.tclr;
|
||
//console.log(str, gst.colr, gst.font.Tm);
|
||
//var otfs = gst.font.Tfs; gst.font.Tfs *= 1/gst.ctm[0];
|
||
genv.PutText(gst, str, str.length * gst.font.Tfs * 0.5);
|
||
gst.colr = oclr;
|
||
//gst.font.Tfs = otfs;
|
||
//console.log(rfx, rfy, scx, ops, rcX, rcY, rcW, rcH, offDx, str);
|
||
} else if (fnm == "BEGINPATH") {
|
||
exports.UDOC.G.newPath(gst);
|
||
} else if (fnm == "ENDPATH") {} else if (fnm == "CLOSEFIGURE") exports.UDOC.G.closePath(gst);else if (fnm == "MOVETOEX") {
|
||
exports.UDOC.G.moveTo(gst, rI32(buff, loff), rI32(buff, loff + 4));
|
||
} else if (fnm == "LINETO") {
|
||
if (gst.pth.cmds.length == 0) {
|
||
var im = gst.ctm.slice(0);
|
||
exports.UDOC.M.invert(im);
|
||
var p = exports.UDOC.M.multPoint(im, gst.cpos);
|
||
exports.UDOC.G.moveTo(gst, p[0], p[1]);
|
||
}
|
||
exports.UDOC.G.lineTo(gst, rI32(buff, loff), rI32(buff, loff + 4));
|
||
} else if (fnm == "POLYGON" || fnm == "POLYGON16" || fnm == "POLYLINE" || fnm == "POLYLINE16" || fnm == "POLYLINETO" || fnm == "POLYLINETO16") {
|
||
loff += 16;
|
||
var ndf = fnm.startsWith("POLYGON"),
|
||
isTo = fnm.indexOf("TO") != -1;
|
||
var cnt = rU32(buff, loff);
|
||
loff += 4;
|
||
if (!isTo) exports.UDOC.G.newPath(gst);
|
||
loff = exports.FromEMF._drawPoly(buff, loff, cnt, gst, fnm.endsWith("16") ? 2 : 4, ndf, isTo);
|
||
if (!isTo) exports.FromEMF._draw(genv, gst, prms, ndf);
|
||
//console.log(prms, gst.lwidth);
|
||
//console.log(JSON.parse(JSON.stringify(gst.pth)));
|
||
} else if (fnm == "POLYPOLYGON16") {
|
||
loff += 16;
|
||
var ndf = fnm.startsWith("POLYPOLYGON"),
|
||
isTo = fnm.indexOf("TO") != -1;
|
||
var nop = rU32(buff, loff);
|
||
loff += 4;
|
||
loff += 4;
|
||
var pi = loff;
|
||
loff += nop * 4;
|
||
if (!isTo) exports.UDOC.G.newPath(gst);
|
||
for (var i = 0; i < nop; i++) {
|
||
var ppp = rU(buff, pi + i * 4);
|
||
loff = exports.FromEMF._drawPoly(buff, loff, ppp, gst, fnm.endsWith("16") ? 2 : 4, ndf, isTo);
|
||
}
|
||
if (!isTo) exports.FromEMF._draw(genv, gst, prms, ndf);
|
||
} else if (fnm == "POLYBEZIER" || fnm == "POLYBEZIER16" || fnm == "POLYBEZIERTO" || fnm == "POLYBEZIERTO16") {
|
||
loff += 16;
|
||
var is16 = fnm.endsWith("16"),
|
||
rC = is16 ? rI : rI32,
|
||
nl = is16 ? 2 : 4;
|
||
var cnt = rU32(buff, loff);
|
||
loff += 4;
|
||
if (fnm.indexOf("TO") == -1) {
|
||
exports.UDOC.G.moveTo(gst, rC(buff, loff), rC(buff, loff + nl));
|
||
loff += 2 * nl;
|
||
cnt--;
|
||
}
|
||
while (cnt > 0) {
|
||
exports.UDOC.G.curveTo(gst, rC(buff, loff), rC(buff, loff + nl), rC(buff, loff + 2 * nl), rC(buff, loff + 3 * nl), rC(buff, loff + 4 * nl), rC(buff, loff + 5 * nl));
|
||
loff += 6 * nl;
|
||
cnt -= 3;
|
||
}
|
||
//console.log(JSON.parse(JSON.stringify(gst.pth)));
|
||
} else if (fnm == "RECTANGLE" || fnm == "ELLIPSE") {
|
||
exports.UDOC.G.newPath(gst);
|
||
var bx = exports.FromEMF._readBox(buff, loff);
|
||
if (fnm == "RECTANGLE") {
|
||
exports.UDOC.G.moveTo(gst, bx[0], bx[1]);
|
||
exports.UDOC.G.lineTo(gst, bx[2], bx[1]);
|
||
exports.UDOC.G.lineTo(gst, bx[2], bx[3]);
|
||
exports.UDOC.G.lineTo(gst, bx[0], bx[3]);
|
||
} else {
|
||
var x = (bx[0] + bx[2]) / 2,
|
||
y = (bx[1] + bx[3]) / 2;
|
||
exports.UDOC.G.arc(gst, x, y, (bx[2] - bx[0]) / 2, 0, 2 * Math.PI, false);
|
||
}
|
||
exports.UDOC.G.closePath(gst);
|
||
exports.FromEMF._draw(genv, gst, prms, true);
|
||
//console.log(prms, gst.lwidth);
|
||
} else if (fnm == "FILLPATH") genv.Fill(gst, false);else if (fnm == "STROKEPATH") genv.Stroke(gst);else if (fnm == "STROKEANDFILLPATH") {
|
||
genv.Fill(gst, false);
|
||
genv.Stroke(gst);
|
||
} else if (fnm == "SETWORLDTRANSFORM" || fnm == "MODIFYWORLDTRANSFORM") {
|
||
var mat = [];
|
||
for (var i = 0; i < 6; i++) mat.push(rF32(buff, loff + i * 4));
|
||
loff += 24;
|
||
//console.log(fnm, gst.ctm.slice(0), mat);
|
||
if (fnm == "SETWORLDTRANSFORM") gst.ctm = mat;else {
|
||
var mod = rU32(buff, loff);
|
||
loff += 4;
|
||
if (mod == 2) {
|
||
var om = gst.ctm;
|
||
gst.ctm = mat;
|
||
exports.UDOC.M.concat(gst.ctm, om);
|
||
} else throw "e";
|
||
}
|
||
} else if (fnm == "SETSTRETCHBLTMODE") {
|
||
var sm = rU32(buff, loff);
|
||
loff += 4;
|
||
} else if (fnm == "STRETCHDIBITS") {
|
||
var bx = exports.FromEMF._readBox(buff, loff);
|
||
loff += 16;
|
||
var xD = rI32(buff, loff);
|
||
loff += 4;
|
||
var yD = rI32(buff, loff);
|
||
loff += 4;
|
||
var xS = rI32(buff, loff);
|
||
loff += 4;
|
||
var yS = rI32(buff, loff);
|
||
loff += 4;
|
||
var wS = rI32(buff, loff);
|
||
loff += 4;
|
||
var hS = rI32(buff, loff);
|
||
loff += 4;
|
||
var ofH = rU32(buff, loff) + off - 8;
|
||
loff += 4;
|
||
var szH = rU32(buff, loff);
|
||
loff += 4;
|
||
var ofB = rU32(buff, loff) + off - 8;
|
||
loff += 4;
|
||
var szB = rU32(buff, loff);
|
||
loff += 4;
|
||
var usg = rU32(buff, loff);
|
||
loff += 4;
|
||
if (usg != 0) throw "e";
|
||
var bop = rU32(buff, loff);
|
||
loff += 4;
|
||
var wD = rI32(buff, loff);
|
||
loff += 4;
|
||
var hD = rI32(buff, loff);
|
||
loff += 4; //console.log(bop, wD, hD);
|
||
//console.log(ofH, szH, ofB, szB, ofH+40);
|
||
//console.log(bx, xD,yD,wD,hD);
|
||
//console.log(xS,yS,wS,hS);
|
||
//console.log(ofH,szH,ofB,szB,usg,bop);
|
||
var hl = rU32(buff, ofH);
|
||
ofH += 4;
|
||
var w = rU32(buff, ofH);
|
||
ofH += 4;
|
||
var h = rU32(buff, ofH);
|
||
ofH += 4;
|
||
if (w != wS || h != hS) throw "e";
|
||
var ps = rU(buff, ofH);
|
||
ofH += 2;
|
||
var bc = rU(buff, ofH);
|
||
ofH += 2;
|
||
if (bc != 8 && bc != 24 && bc != 32) throw bc + " e";
|
||
var cpr = rU32(buff, ofH);
|
||
ofH += 4;
|
||
if (cpr != 0) throw cpr + " e";
|
||
var sz = rU32(buff, ofH);
|
||
ofH += 4;
|
||
var xpm = rU32(buff, ofH);
|
||
ofH += 4;
|
||
var ypm = rU32(buff, ofH);
|
||
ofH += 4;
|
||
var cu = rU32(buff, ofH);
|
||
ofH += 4;
|
||
var ci = rU32(buff, ofH);
|
||
ofH += 4; //console.log(hl, w, h, ps, bc, cpr, sz, xpm, ypm, cu, ci);
|
||
//console.log(hl,w,h,",",xS,yS,wS,hS,",",xD,yD,wD,hD,",",xpm,ypm);
|
||
var rl = Math.floor((w * ps * bc + 31 & ~31) / 8);
|
||
var img = new Uint8Array(w * h * 4);
|
||
if (bc == 8) {
|
||
for (var y = 0; y < h; y++) for (var x = 0; x < w; x++) {
|
||
var qi = y * w + x << 2,
|
||
ind = buff[ofB + (h - 1 - y) * rl + x] << 2;
|
||
img[qi] = buff[ofH + ind + 2];
|
||
img[qi + 1] = buff[ofH + ind + 1];
|
||
img[qi + 2] = buff[ofH + ind + 0];
|
||
img[qi + 3] = 255;
|
||
}
|
||
}
|
||
if (bc == 24) {
|
||
for (var y = 0; y < h; y++) for (var x = 0; x < w; x++) {
|
||
var qi = y * w + x << 2,
|
||
ti = ofB + (h - 1 - y) * rl + x * 3;
|
||
img[qi] = buff[ti + 2];
|
||
img[qi + 1] = buff[ti + 1];
|
||
img[qi + 2] = buff[ti + 0];
|
||
img[qi + 3] = 255;
|
||
}
|
||
}
|
||
if (bc == 32) {
|
||
for (var y = 0; y < h; y++) for (var x = 0; x < w; x++) {
|
||
var qi = y * w + x << 2,
|
||
ti = ofB + (h - 1 - y) * rl + x * 4;
|
||
img[qi] = buff[ti + 2];
|
||
img[qi + 1] = buff[ti + 1];
|
||
img[qi + 2] = buff[ti + 0];
|
||
img[qi + 3] = buff[ti + 3];
|
||
}
|
||
}
|
||
var ctm = gst.ctm.slice(0);
|
||
gst.ctm = [1, 0, 0, 1, 0, 0];
|
||
exports.UDOC.M.scale(gst.ctm, wD, -hD);
|
||
exports.UDOC.M.translate(gst.ctm, xD, yD + hD);
|
||
exports.UDOC.M.concat(gst.ctm, ctm);
|
||
genv.PutImage(gst, img, w, h);
|
||
gst.ctm = ctm;
|
||
} else {
|
||
console.log(fnm, siz);
|
||
}
|
||
if (obj != null) tab[oid] = obj;
|
||
off += siz - 8;
|
||
}
|
||
//genv.Stroke(gst);
|
||
genv.ShowPage();
|
||
genv.Done();
|
||
};
|
||
exports.FromEMF._readBox = function (buff, off) {
|
||
var b = [];
|
||
for (var i = 0; i < 4; i++) b[i] = exports.FromEMF.B.readInt(buff, off + i * 4);
|
||
return b;
|
||
};
|
||
exports.FromEMF._updateCtm = function (prms, gst) {
|
||
var mat = [1, 0, 0, 1, 0, 0];
|
||
var wbb = prms.wbb,
|
||
bb = prms.bb,
|
||
vbb = prms.vbb && prms.vbb.length == 4 ? prms.vbb : prms.bb;
|
||
//var y0 = bb[1], y1 = bb[3]; bb[1]=Math.min(y0,y1); bb[3]=Math.max(y0,y1);
|
||
exports.UDOC.M.translate(mat, -wbb[0], -wbb[1]);
|
||
exports.UDOC.M.scale(mat, 1 / wbb[2], 1 / wbb[3]);
|
||
exports.UDOC.M.scale(mat, vbb[2], vbb[3]);
|
||
//UDOC.M.scale(mat, vbb[2]/(bb[2]-bb[0]), vbb[3]/(bb[3]-bb[1]));
|
||
//UDOC.M.scale(mat, bb[2]-bb[0],bb[3]-bb[1]);
|
||
gst.ctm = mat;
|
||
};
|
||
exports.FromEMF._draw = function (genv, gst, prms, needFill) {
|
||
if (prms.fill && needFill) genv.Fill(gst, false);
|
||
if (prms.strk && gst.lwidth != 0) genv.Stroke(gst);
|
||
};
|
||
exports.FromEMF._drawPoly = function (buff, off, ppp, gst, nl, clos, justLine) {
|
||
var rS = nl == 2 ? exports.FromEMF.B.readShort : exports.FromEMF.B.readInt;
|
||
for (var j = 0; j < ppp; j++) {
|
||
var px = rS(buff, off);
|
||
off += nl;
|
||
var py = rS(buff, off);
|
||
off += nl;
|
||
if (j == 0 && !justLine) exports.UDOC.G.moveTo(gst, px, py);else exports.UDOC.G.lineTo(gst, px, py);
|
||
}
|
||
if (clos) exports.UDOC.G.closePath(gst);
|
||
return off;
|
||
};
|
||
exports.FromEMF.B = {
|
||
uint8: new Uint8Array(4),
|
||
readShort: function readShort(buff, p) {
|
||
var u8 = exports.FromEMF.B.uint8;
|
||
u8[0] = buff[p];
|
||
u8[1] = buff[p + 1];
|
||
return exports.FromEMF.B.int16[0];
|
||
},
|
||
readUshort: function readUshort(buff, p) {
|
||
var u8 = exports.FromEMF.B.uint8;
|
||
u8[0] = buff[p];
|
||
u8[1] = buff[p + 1];
|
||
return exports.FromEMF.B.uint16[0];
|
||
},
|
||
readInt: function readInt(buff, p) {
|
||
var u8 = exports.FromEMF.B.uint8;
|
||
u8[0] = buff[p];
|
||
u8[1] = buff[p + 1];
|
||
u8[2] = buff[p + 2];
|
||
u8[3] = buff[p + 3];
|
||
return exports.FromEMF.B.int32[0];
|
||
},
|
||
readUint: function readUint(buff, p) {
|
||
var u8 = exports.FromEMF.B.uint8;
|
||
u8[0] = buff[p];
|
||
u8[1] = buff[p + 1];
|
||
u8[2] = buff[p + 2];
|
||
u8[3] = buff[p + 3];
|
||
return exports.FromEMF.B.uint32[0];
|
||
},
|
||
readFloat: function readFloat(buff, p) {
|
||
var u8 = exports.FromEMF.B.uint8;
|
||
u8[0] = buff[p];
|
||
u8[1] = buff[p + 1];
|
||
u8[2] = buff[p + 2];
|
||
u8[3] = buff[p + 3];
|
||
return exports.FromEMF.B.flot32[0];
|
||
},
|
||
readASCII: function readASCII(buff, p, l) {
|
||
var s = "";
|
||
for (var i = 0; i < l; i++) s += String.fromCharCode(buff[p + i]);
|
||
return s;
|
||
}
|
||
};
|
||
exports.FromEMF.B.int16 = new Int16Array(exports.FromEMF.B.uint8.buffer);
|
||
exports.FromEMF.B.uint16 = new Uint16Array(exports.FromEMF.B.uint8.buffer);
|
||
exports.FromEMF.B.int32 = new Int32Array(exports.FromEMF.B.uint8.buffer);
|
||
exports.FromEMF.B.uint32 = new Uint32Array(exports.FromEMF.B.uint8.buffer);
|
||
exports.FromEMF.B.flot32 = new Float32Array(exports.FromEMF.B.uint8.buffer);
|
||
exports.FromEMF.C = {
|
||
EMR_HEADER: 0x00000001,
|
||
EMR_POLYBEZIER: 0x00000002,
|
||
EMR_POLYGON: 0x00000003,
|
||
EMR_POLYLINE: 0x00000004,
|
||
EMR_POLYBEZIERTO: 0x00000005,
|
||
EMR_POLYLINETO: 0x00000006,
|
||
EMR_POLYPOLYLINE: 0x00000007,
|
||
EMR_POLYPOLYGON: 0x00000008,
|
||
EMR_SETWINDOWEXTEX: 0x00000009,
|
||
EMR_SETWINDOWORGEX: 0x0000000A,
|
||
EMR_SETVIEWPORTEXTEX: 0x0000000B,
|
||
EMR_SETVIEWPORTORGEX: 0x0000000C,
|
||
EMR_SETBRUSHORGEX: 0x0000000D,
|
||
EMR_EOF: 0x0000000E,
|
||
EMR_SETPIXELV: 0x0000000F,
|
||
EMR_SETMAPPERFLAGS: 0x00000010,
|
||
EMR_SETMAPMODE: 0x00000011,
|
||
EMR_SETBKMODE: 0x00000012,
|
||
EMR_SETPOLYFILLMODE: 0x00000013,
|
||
EMR_SETROP2: 0x00000014,
|
||
EMR_SETSTRETCHBLTMODE: 0x00000015,
|
||
EMR_SETTEXTALIGN: 0x00000016,
|
||
EMR_SETCOLORADJUSTMENT: 0x00000017,
|
||
EMR_SETTEXTCOLOR: 0x00000018,
|
||
EMR_SETBKCOLOR: 0x00000019,
|
||
EMR_OFFSETCLIPRGN: 0x0000001A,
|
||
EMR_MOVETOEX: 0x0000001B,
|
||
EMR_SETMETARGN: 0x0000001C,
|
||
EMR_EXCLUDECLIPRECT: 0x0000001D,
|
||
EMR_INTERSECTCLIPRECT: 0x0000001E,
|
||
EMR_SCALEVIEWPORTEXTEX: 0x0000001F,
|
||
EMR_SCALEWINDOWEXTEX: 0x00000020,
|
||
EMR_SAVEDC: 0x00000021,
|
||
EMR_RESTOREDC: 0x00000022,
|
||
EMR_SETWORLDTRANSFORM: 0x00000023,
|
||
EMR_MODIFYWORLDTRANSFORM: 0x00000024,
|
||
EMR_SELECTOBJECT: 0x00000025,
|
||
EMR_CREATEPEN: 0x00000026,
|
||
EMR_CREATEBRUSHINDIRECT: 0x00000027,
|
||
EMR_DELETEOBJECT: 0x00000028,
|
||
EMR_ANGLEARC: 0x00000029,
|
||
EMR_ELLIPSE: 0x0000002A,
|
||
EMR_RECTANGLE: 0x0000002B,
|
||
EMR_ROUNDRECT: 0x0000002C,
|
||
EMR_ARC: 0x0000002D,
|
||
EMR_CHORD: 0x0000002E,
|
||
EMR_PIE: 0x0000002F,
|
||
EMR_SELECTPALETTE: 0x00000030,
|
||
EMR_CREATEPALETTE: 0x00000031,
|
||
EMR_SETPALETTEENTRIES: 0x00000032,
|
||
EMR_RESIZEPALETTE: 0x00000033,
|
||
EMR_REALIZEPALETTE: 0x00000034,
|
||
EMR_EXTFLOODFILL: 0x00000035,
|
||
EMR_LINETO: 0x00000036,
|
||
EMR_ARCTO: 0x00000037,
|
||
EMR_POLYDRAW: 0x00000038,
|
||
EMR_SETARCDIRECTION: 0x00000039,
|
||
EMR_SETMITERLIMIT: 0x0000003A,
|
||
EMR_BEGINPATH: 0x0000003B,
|
||
EMR_ENDPATH: 0x0000003C,
|
||
EMR_CLOSEFIGURE: 0x0000003D,
|
||
EMR_FILLPATH: 0x0000003E,
|
||
EMR_STROKEANDFILLPATH: 0x0000003F,
|
||
EMR_STROKEPATH: 0x00000040,
|
||
EMR_FLATTENPATH: 0x00000041,
|
||
EMR_WIDENPATH: 0x00000042,
|
||
EMR_SELECTCLIPPATH: 0x00000043,
|
||
EMR_ABORTPATH: 0x00000044,
|
||
EMR_COMMENT: 0x00000046,
|
||
EMR_FILLRGN: 0x00000047,
|
||
EMR_FRAMERGN: 0x00000048,
|
||
EMR_INVERTRGN: 0x00000049,
|
||
EMR_PAINTRGN: 0x0000004A,
|
||
EMR_EXTSELECTCLIPRGN: 0x0000004B,
|
||
EMR_BITBLT: 0x0000004C,
|
||
EMR_STRETCHBLT: 0x0000004D,
|
||
EMR_MASKBLT: 0x0000004E,
|
||
EMR_PLGBLT: 0x0000004F,
|
||
EMR_SETDIBITSTODEVICE: 0x00000050,
|
||
EMR_STRETCHDIBITS: 0x00000051,
|
||
EMR_EXTCREATEFONTINDIRECTW: 0x00000052,
|
||
EMR_EXTTEXTOUTA: 0x00000053,
|
||
EMR_EXTTEXTOUTW: 0x00000054,
|
||
EMR_POLYBEZIER16: 0x00000055,
|
||
EMR_POLYGON16: 0x00000056,
|
||
EMR_POLYLINE16: 0x00000057,
|
||
EMR_POLYBEZIERTO16: 0x00000058,
|
||
EMR_POLYLINETO16: 0x00000059,
|
||
EMR_POLYPOLYLINE16: 0x0000005A,
|
||
EMR_POLYPOLYGON16: 0x0000005B,
|
||
EMR_POLYDRAW16: 0x0000005C,
|
||
EMR_CREATEMONOBRUSH: 0x0000005D,
|
||
EMR_CREATEDIBPATTERNBRUSHPT: 0x0000005E,
|
||
EMR_EXTCREATEPEN: 0x0000005F,
|
||
EMR_POLYTEXTOUTA: 0x00000060,
|
||
EMR_POLYTEXTOUTW: 0x00000061,
|
||
EMR_SETICMMODE: 0x00000062,
|
||
EMR_CREATECOLORSPACE: 0x00000063,
|
||
EMR_SETCOLORSPACE: 0x00000064,
|
||
EMR_DELETECOLORSPACE: 0x00000065,
|
||
EMR_GLSRECORD: 0x00000066,
|
||
EMR_GLSBOUNDEDRECORD: 0x00000067,
|
||
EMR_PIXELFORMAT: 0x00000068,
|
||
EMR_DRAWESCAPE: 0x00000069,
|
||
EMR_EXTESCAPE: 0x0000006A,
|
||
EMR_SMALLTEXTOUT: 0x0000006C,
|
||
EMR_FORCEUFIMAPPING: 0x0000006D,
|
||
EMR_NAMEDESCAPE: 0x0000006E,
|
||
EMR_COLORCORRECTPALETTE: 0x0000006F,
|
||
EMR_SETICMPROFILEA: 0x00000070,
|
||
EMR_SETICMPROFILEW: 0x00000071,
|
||
EMR_ALPHABLEND: 0x00000072,
|
||
EMR_SETLAYOUT: 0x00000073,
|
||
EMR_TRANSPARENTBLT: 0x00000074,
|
||
EMR_GRADIENTFILL: 0x00000076,
|
||
EMR_SETLINKEDUFIS: 0x00000077,
|
||
EMR_SETTEXTJUSTIFICATION: 0x00000078,
|
||
EMR_COLORMATCHTOTARGETW: 0x00000079,
|
||
EMR_CREATECOLORSPACEW: 0x0000007A
|
||
};
|
||
exports.FromEMF.K = [];
|
||
// (function() {
|
||
// var inp, out, stt;
|
||
// inp = FromEMF.C; out = FromEMF.K; stt=4;
|
||
// for(var p in inp) out[inp[p]] = p.slice(stt);
|
||
// } )();
|
||
exports.ToContext2D = function (needPage, scale) {
|
||
this.canvas = document.createElement("canvas");
|
||
this.ctx = this.canvas.getContext("2d");
|
||
this.bb = null;
|
||
this.currPage = 0;
|
||
this.needPage = needPage;
|
||
this.scale = scale;
|
||
};
|
||
exports.ToContext2D.prototype.StartPage = function (x, y, w, h) {
|
||
if (this.currPage != this.needPage) return;
|
||
this.bb = [x, y, w, h];
|
||
var scl = this.scale,
|
||
dpr = window.devicePixelRatio;
|
||
var cnv = this.canvas,
|
||
ctx = this.ctx;
|
||
cnv.width = Math.round(w * scl);
|
||
cnv.height = Math.round(h * scl);
|
||
ctx.translate(0, h * scl);
|
||
ctx.scale(scl, -scl);
|
||
cnv.setAttribute("style", "border:1px solid; width:" + cnv.width / dpr + "px; height:" + cnv.height / dpr + "px");
|
||
};
|
||
exports.ToContext2D.prototype.Fill = function (gst, evenOdd) {
|
||
if (this.currPage != this.needPage) return;
|
||
var ctx = this.ctx;
|
||
ctx.beginPath();
|
||
this._setStyle(gst, ctx);
|
||
this._draw(gst.pth, ctx);
|
||
ctx.fill();
|
||
};
|
||
exports.ToContext2D.prototype.Stroke = function (gst) {
|
||
if (this.currPage != this.needPage) return;
|
||
var ctx = this.ctx;
|
||
ctx.beginPath();
|
||
this._setStyle(gst, ctx);
|
||
this._draw(gst.pth, ctx);
|
||
ctx.stroke();
|
||
};
|
||
exports.ToContext2D.prototype.PutText = function (gst, str, stw) {
|
||
if (this.currPage != this.needPage) return;
|
||
var scl = this._scale(gst.ctm);
|
||
var ctx = this.ctx;
|
||
this._setStyle(gst, ctx);
|
||
ctx.save();
|
||
var m = [1, 0, 0, -1, 0, 0];
|
||
this._concat(m, gst.font.Tm);
|
||
this._concat(m, gst.ctm);
|
||
//console.log(str, m, gst); throw "e";
|
||
ctx.transform(m[0], m[1], m[2], m[3], m[4], m[5]);
|
||
ctx.fillText(str, 0, 0);
|
||
ctx.restore();
|
||
};
|
||
exports.ToContext2D.prototype.PutImage = function (gst, buff, w, h, msk) {
|
||
if (this.currPage != this.needPage) return;
|
||
var ctx = this.ctx;
|
||
if (buff.length == w * h * 4) {
|
||
buff = buff.slice(0);
|
||
if (msk && msk.length == w * h * 4) for (var i = 0; i < buff.length; i += 4) buff[i + 3] = msk[i + 1];
|
||
var cnv = document.createElement("canvas"),
|
||
cctx = cnv.getContext("2d");
|
||
cnv.width = w;
|
||
cnv.height = h;
|
||
var imgd = cctx.createImageData(w, h);
|
||
for (var i = 0; i < buff.length; i++) imgd.data[i] = buff[i];
|
||
cctx.putImageData(imgd, 0, 0);
|
||
ctx.save();
|
||
var m = [1, 0, 0, 1, 0, 0];
|
||
this._concat(m, [1 / w, 0, 0, -1 / h, 0, 1]);
|
||
this._concat(m, gst.ctm);
|
||
ctx.transform(m[0], m[1], m[2], m[3], m[4], m[5]);
|
||
ctx.drawImage(cnv, 0, 0);
|
||
ctx.restore();
|
||
}
|
||
};
|
||
exports.ToContext2D.prototype.ShowPage = function () {
|
||
this.currPage++;
|
||
};
|
||
exports.ToContext2D.prototype.Done = function () {};
|
||
function _flt(n) {
|
||
return "" + parseFloat(n.toFixed(2));
|
||
}
|
||
exports.ToContext2D.prototype._setStyle = function (gst, ctx) {
|
||
var scl = this._scale(gst.ctm);
|
||
ctx.fillStyle = this._getFill(gst.colr, gst.ca, ctx);
|
||
ctx.strokeStyle = this._getFill(gst.COLR, gst.CA, ctx);
|
||
ctx.lineCap = ["butt", "round", "square"][gst.lcap];
|
||
ctx.lineJoin = ["miter", "round", "bevel"][gst.ljoin];
|
||
ctx.lineWidth = gst.lwidth * scl;
|
||
var dsh = gst.dash.slice(0);
|
||
for (var i = 0; i < dsh.length; i++) dsh[i] = _flt(dsh[i] * scl);
|
||
ctx.setLineDash(dsh);
|
||
ctx.miterLimit = gst.mlimit * scl;
|
||
var fn = gst.font.Tf,
|
||
ln = fn.toLowerCase();
|
||
var p0 = ln.indexOf("bold") != -1 ? "bold " : "";
|
||
var p1 = ln.indexOf("italic") != -1 || ln.indexOf("oblique") != -1 ? "italic " : "";
|
||
ctx.font = p0 + p1 + gst.font.Tfs + "px \"" + fn + "\"";
|
||
};
|
||
exports.ToContext2D.prototype._getFill = function (colr, ca, ctx) {
|
||
if (colr.typ == null) return this._colr(colr, ca);else {
|
||
var grd = colr,
|
||
crd = grd.crds,
|
||
mat = grd.mat,
|
||
scl = this._scale(mat),
|
||
gf;
|
||
if (grd.typ == "lin") {
|
||
var p0 = this._multPoint(mat, crd.slice(0, 2)),
|
||
p1 = this._multPoint(mat, crd.slice(2));
|
||
gf = ctx.createLinearGradient(p0[0], p0[1], p1[0], p1[1]);
|
||
} else if (grd.typ == "rad") {
|
||
var p0 = this._multPoint(mat, crd.slice(0, 2)),
|
||
p1 = this._multPoint(mat, crd.slice(3));
|
||
gf = ctx.createRadialGradient(p0[0], p0[1], crd[2] * scl, p1[0], p1[1], crd[5] * scl);
|
||
}
|
||
for (var i = 0; i < grd.grad.length; i++) gf.addColorStop(grd.grad[i][0], this._colr(grd.grad[i][1], ca));
|
||
return gf;
|
||
}
|
||
};
|
||
exports.ToContext2D.prototype._colr = function (c, a) {
|
||
return "rgba(" + Math.round(c[0] * 255) + "," + Math.round(c[1] * 255) + "," + Math.round(c[2] * 255) + "," + a + ")";
|
||
};
|
||
exports.ToContext2D.prototype._scale = function (m) {
|
||
return Math.sqrt(Math.abs(m[0] * m[3] - m[1] * m[2]));
|
||
};
|
||
exports.ToContext2D.prototype._concat = function (m, w) {
|
||
var a = m[0],
|
||
b = m[1],
|
||
c = m[2],
|
||
d = m[3],
|
||
tx = m[4],
|
||
ty = m[5];
|
||
m[0] = a * w[0] + b * w[2];
|
||
m[1] = a * w[1] + b * w[3];
|
||
m[2] = c * w[0] + d * w[2];
|
||
m[3] = c * w[1] + d * w[3];
|
||
m[4] = tx * w[0] + ty * w[2] + w[4];
|
||
m[5] = tx * w[1] + ty * w[3] + w[5];
|
||
};
|
||
exports.ToContext2D.prototype._multPoint = function (m, p) {
|
||
var x = p[0],
|
||
y = p[1];
|
||
return [x * m[0] + y * m[2] + m[4], x * m[1] + y * m[3] + m[5]];
|
||
}, exports.ToContext2D.prototype._draw = function (path, ctx) {
|
||
var c = 0,
|
||
crds = path.crds;
|
||
for (var j = 0; j < path.cmds.length; j++) {
|
||
var cmd = path.cmds[j];
|
||
if (cmd == "M") {
|
||
ctx.moveTo(crds[c], crds[c + 1]);
|
||
c += 2;
|
||
} else if (cmd == "L") {
|
||
ctx.lineTo(crds[c], crds[c + 1]);
|
||
c += 2;
|
||
} else if (cmd == "C") {
|
||
ctx.bezierCurveTo(crds[c], crds[c + 1], crds[c + 2], crds[c + 3], crds[c + 4], crds[c + 5]);
|
||
c += 6;
|
||
} else if (cmd == "Q") {
|
||
ctx.quadraticCurveTo(crds[c], crds[c + 1], crds[c + 2], crds[c + 3]);
|
||
c += 4;
|
||
} else if (cmd == "Z") {
|
||
ctx.closePath();
|
||
}
|
||
}
|
||
};
|
||
|
||
},{}],49:[function(require,module,exports){
|
||
"use strict";
|
||
|
||
Object.defineProperty(exports, "__esModule", {
|
||
value: true
|
||
});
|
||
exports.getMultiFormulaValue = exports.getPeelOffX14 = exports.getTransR1C1ToSequence = exports.getSingleSequenceToNum = exports.getSqrefRawArrFormat = exports.getRegionSequence = exports.getMultiSequenceToNum = exports.getBinaryContent = exports.isContainMultiType = exports.isKoera = exports.isJapanese = exports.isChinese = exports.fromulaRef = exports.escapeCharacter = exports.generateRandomIndex = exports.LightenDarkenColor = exports.getRowHeightPixel = exports.getColumnWidthPixel = exports.getXmlAttibute = exports.getPxByEMUs = exports.getptToPxRatioByDPI = exports.parseCellReference = exports.getcellrange = exports.getRangetxt = void 0;
|
||
var constant_1 = require("./constant");
|
||
function getRangetxt(range, sheettxt) {
|
||
var row0 = range["row"][0],
|
||
row1 = range["row"][1];
|
||
var column0 = range["column"][0],
|
||
column1 = range["column"][1];
|
||
if (row0 == null && row1 == null) {
|
||
return sheettxt + chatatABC(column0) + ":" + chatatABC(column1);
|
||
} else if (column0 == null && column1 == null) {
|
||
return sheettxt + (row0 + 1) + ":" + (row1 + 1);
|
||
} else {
|
||
if (column0 == column1 && row0 == row1) {
|
||
return sheettxt + chatatABC(column0) + (row0 + 1);
|
||
} else {
|
||
return sheettxt + chatatABC(column0) + (row0 + 1) + ":" + chatatABC(column1) + (row1 + 1);
|
||
}
|
||
}
|
||
}
|
||
exports.getRangetxt = getRangetxt;
|
||
function getcellrange(txt, sheets, sheetId) {
|
||
if (sheets === void 0) {
|
||
sheets = {};
|
||
}
|
||
if (sheetId === void 0) {
|
||
sheetId = "1";
|
||
}
|
||
var val = txt.split("!");
|
||
var sheettxt = "",
|
||
rangetxt = "",
|
||
sheetIndex = -1;
|
||
if (val.length > 1) {
|
||
sheettxt = val[0];
|
||
rangetxt = val[1];
|
||
var si = sheets[sheettxt];
|
||
if (si == null) {
|
||
sheetIndex = parseInt(sheetId);
|
||
} else {
|
||
sheetIndex = parseInt(si);
|
||
}
|
||
} else {
|
||
sheetIndex = parseInt(sheetId);
|
||
rangetxt = val[0];
|
||
}
|
||
if (rangetxt.indexOf(":") == -1) {
|
||
var row = parseInt(rangetxt.replace(/[^0-9]/g, "")) - 1;
|
||
var col = ABCatNum(rangetxt.replace(/[^A-Za-z]/g, ""));
|
||
if (!isNaN(row) && !isNaN(col)) {
|
||
return {
|
||
row: [row, row],
|
||
column: [col, col],
|
||
sheetIndex: sheetIndex
|
||
};
|
||
} else {
|
||
return null;
|
||
}
|
||
} else {
|
||
var rangetxtArray = rangetxt.split(":");
|
||
var row = [],
|
||
col = [];
|
||
row[0] = parseInt(rangetxtArray[0].replace(/[^0-9]/g, "")) - 1;
|
||
row[1] = parseInt(rangetxtArray[1].replace(/[^0-9]/g, "")) - 1;
|
||
// if (isNaN(row[0])) {
|
||
// row[0] = 0;
|
||
// }
|
||
// if (isNaN(row[1])) {
|
||
// row[1] = sheetdata.length - 1;
|
||
// }
|
||
if (row[0] > row[1]) {
|
||
return null;
|
||
}
|
||
col[0] = ABCatNum(rangetxtArray[0].replace(/[^A-Za-z]/g, ""));
|
||
col[1] = ABCatNum(rangetxtArray[1].replace(/[^A-Za-z]/g, ""));
|
||
// if (isNaN(col[0])) {
|
||
// col[0] = 0;
|
||
// }
|
||
// if (isNaN(col[1])) {
|
||
// col[1] = sheetdata[0].length - 1;
|
||
// }
|
||
if (col[0] > col[1]) {
|
||
return null;
|
||
}
|
||
return {
|
||
row: row,
|
||
column: col,
|
||
sheetIndex: sheetIndex
|
||
};
|
||
}
|
||
}
|
||
exports.getcellrange = getcellrange;
|
||
function parseCellReference(cellRef) {
|
||
var regex = /^([A-Z]+)(\d+)$/;
|
||
var match = cellRef.match(regex);
|
||
if (!match) {
|
||
throw new Error("Invalid cell reference: " + cellRef);
|
||
}
|
||
var columnRef = match[1];
|
||
var rowRef = parseInt(match[2], 10);
|
||
// Convert column reference to column number (0-based)
|
||
var columnNumber = 0;
|
||
for (var i = 0; i < columnRef.length; i++) {
|
||
columnNumber = columnNumber * 26 + (columnRef.charCodeAt(i) - "A".charCodeAt(0) + 1);
|
||
}
|
||
columnNumber -= 1; // Convert to 0-based index
|
||
// Row number is already 1-based, so subtract 1 to make it 0-based
|
||
var rowNumber = rowRef - 1;
|
||
return {
|
||
r: rowNumber,
|
||
c: columnNumber
|
||
};
|
||
}
|
||
exports.parseCellReference = parseCellReference;
|
||
//列下标 字母转数字
|
||
function ABCatNum(abc) {
|
||
abc = abc.toUpperCase();
|
||
var abc_len = abc.length;
|
||
if (abc_len == 0) {
|
||
return NaN;
|
||
}
|
||
var abc_array = abc.split("");
|
||
var wordlen = constant_1.columeHeader_word.length;
|
||
var ret = 0;
|
||
for (var i = abc_len - 1; i >= 0; i--) {
|
||
if (i == abc_len - 1) {
|
||
ret += constant_1.columeHeader_word_index[abc_array[i]];
|
||
} else {
|
||
ret += Math.pow(wordlen, abc_len - i - 1) * (constant_1.columeHeader_word_index[abc_array[i]] + 1);
|
||
}
|
||
}
|
||
return ret;
|
||
}
|
||
//列下标 数字转字母
|
||
function chatatABC(index) {
|
||
var wordlen = constant_1.columeHeader_word.length;
|
||
if (index < wordlen) {
|
||
return constant_1.columeHeader_word[index];
|
||
} else {
|
||
var last = 0,
|
||
pre = 0,
|
||
ret = "";
|
||
var i = 1,
|
||
n = 0;
|
||
while (index >= wordlen / (wordlen - 1) * (Math.pow(wordlen, i++) - 1)) {
|
||
n = i;
|
||
}
|
||
var index_ab = index - wordlen / (wordlen - 1) * (Math.pow(wordlen, n - 1) - 1); //970
|
||
last = index_ab + 1;
|
||
for (var x = n; x > 0; x--) {
|
||
var last1 = last,
|
||
x1 = x; //-702=268, 3
|
||
if (x == 1) {
|
||
last1 = last1 % wordlen;
|
||
if (last1 == 0) {
|
||
last1 = 26;
|
||
}
|
||
return ret + constant_1.columeHeader_word[last1 - 1];
|
||
}
|
||
last1 = Math.ceil(last1 / Math.pow(wordlen, x - 1));
|
||
//last1 = last1 % wordlen;
|
||
ret += constant_1.columeHeader_word[last1 - 1];
|
||
if (x > 1) {
|
||
last = last - (last1 - 1) * wordlen;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
/**
|
||
* @return ratio, default 0.75 1in = 2.54cm = 25.4mm = 72pt = 6pc, pt = 1/72 In, px = 1/dpi In
|
||
*/
|
||
function getptToPxRatioByDPI() {
|
||
return 72 / 96;
|
||
}
|
||
exports.getptToPxRatioByDPI = getptToPxRatioByDPI;
|
||
/**
|
||
* @emus EMUs, Excel drawing unit
|
||
* @return pixel
|
||
*/
|
||
function getPxByEMUs(emus) {
|
||
if (emus == null) {
|
||
return 0;
|
||
}
|
||
var inch = emus / 914400;
|
||
var pt = inch * 72;
|
||
var px = pt / getptToPxRatioByDPI();
|
||
return px;
|
||
}
|
||
exports.getPxByEMUs = getPxByEMUs;
|
||
/**
|
||
* @dom xml attribute object
|
||
* @attr attribute name
|
||
* @d if attribute is null, return default value
|
||
* @return attribute value
|
||
*/
|
||
function getXmlAttibute(dom, attr, d) {
|
||
var value = dom[attr];
|
||
value = value == null ? d : value;
|
||
return value;
|
||
}
|
||
exports.getXmlAttibute = getXmlAttibute;
|
||
/**
|
||
* @columnWidth Excel column width
|
||
* @return pixel column width
|
||
*/
|
||
function getColumnWidthPixel(columnWidth) {
|
||
var pix = Math.round((columnWidth - 0.83) * 8 + 5);
|
||
return pix;
|
||
}
|
||
exports.getColumnWidthPixel = getColumnWidthPixel;
|
||
/**
|
||
* @rowHeight Excel row height
|
||
* @return pixel row height
|
||
*/
|
||
function getRowHeightPixel(rowHeight) {
|
||
var pix = Math.round(rowHeight / getptToPxRatioByDPI());
|
||
return pix;
|
||
}
|
||
exports.getRowHeightPixel = getRowHeightPixel;
|
||
function LightenDarkenColor(sixColor, tint) {
|
||
var hex = sixColor.substring(sixColor.length - 6, sixColor.length);
|
||
var rgbArray = hexToRgbArray("#" + hex);
|
||
var hslArray = rgbToHsl(rgbArray[0], rgbArray[1], rgbArray[2]);
|
||
if (tint > 0) {
|
||
hslArray[2] = hslArray[2] * (1.0 - tint) + tint;
|
||
} else if (tint < 0) {
|
||
hslArray[2] = hslArray[2] * (1.0 + tint);
|
||
} else {
|
||
return "#" + hex;
|
||
}
|
||
var newRgbArray = hslToRgb(hslArray[0], hslArray[1], hslArray[2]);
|
||
return rgbToHex("RGB(" + newRgbArray.join(",") + ")");
|
||
}
|
||
exports.LightenDarkenColor = LightenDarkenColor;
|
||
function rgbToHex(rgb) {
|
||
//十六进制颜色值的正则表达式
|
||
var reg = /^#([0-9a-fA-f]{3}|[0-9a-fA-f]{6})$/;
|
||
// 如果是rgb颜色表示
|
||
if (/^(rgb|RGB)/.test(rgb)) {
|
||
var aColor = rgb.replace(/(?:\(|\)|rgb|RGB)*/g, "").split(",");
|
||
var strHex = "#";
|
||
for (var i = 0; i < aColor.length; i++) {
|
||
var hex = Number(aColor[i]).toString(16);
|
||
if (hex.length < 2) {
|
||
hex = "0" + hex;
|
||
}
|
||
strHex += hex;
|
||
}
|
||
if (strHex.length !== 7) {
|
||
strHex = rgb;
|
||
}
|
||
return strHex;
|
||
} else if (reg.test(rgb)) {
|
||
var aNum = rgb.replace(/#/, "").split("");
|
||
if (aNum.length === 6) {
|
||
return rgb;
|
||
} else if (aNum.length === 3) {
|
||
var numHex = "#";
|
||
for (var i = 0; i < aNum.length; i += 1) {
|
||
numHex += aNum[i] + aNum[i];
|
||
}
|
||
return numHex;
|
||
}
|
||
}
|
||
return rgb;
|
||
}
|
||
function hexToRgb(hex) {
|
||
var sColor = hex.toLowerCase();
|
||
//十六进制颜色值的正则表达式
|
||
var reg = /^#([0-9a-fA-f]{3}|[0-9a-fA-f]{6})$/;
|
||
// 如果是16进制颜色
|
||
if (sColor && reg.test(sColor)) {
|
||
if (sColor.length === 4) {
|
||
var sColorNew = "#";
|
||
for (var i = 1; i < 4; i += 1) {
|
||
sColorNew += sColor.slice(i, i + 1).concat(sColor.slice(i, i + 1));
|
||
}
|
||
sColor = sColorNew;
|
||
}
|
||
//处理六位的颜色值
|
||
var sColorChange = [];
|
||
for (var i = 1; i < 7; i += 2) {
|
||
sColorChange.push(parseInt("0x" + sColor.slice(i, i + 2)));
|
||
}
|
||
return "RGB(" + sColorChange.join(",") + ")";
|
||
}
|
||
return sColor;
|
||
}
|
||
function hexToRgbArray(hex) {
|
||
var sColor = hex.toLowerCase();
|
||
//十六进制颜色值的正则表达式
|
||
var reg = /^#([0-9a-fA-f]{3}|[0-9a-fA-f]{6})$/;
|
||
// 如果是16进制颜色
|
||
if (sColor && reg.test(sColor)) {
|
||
if (sColor.length === 4) {
|
||
var sColorNew = "#";
|
||
for (var i = 1; i < 4; i += 1) {
|
||
sColorNew += sColor.slice(i, i + 1).concat(sColor.slice(i, i + 1));
|
||
}
|
||
sColor = sColorNew;
|
||
}
|
||
//处理六位的颜色值
|
||
var sColorChange = [];
|
||
for (var i = 1; i < 7; i += 2) {
|
||
sColorChange.push(parseInt("0x" + sColor.slice(i, i + 2)));
|
||
}
|
||
return sColorChange;
|
||
}
|
||
return null;
|
||
}
|
||
/**
|
||
* HSL颜色值转换为RGB.
|
||
* 换算公式改编自 http://en.wikipedia.org/wiki/HSL_color_space.
|
||
* h, s, 和 l 设定在 [0, 1] 之间
|
||
* 返回的 r, g, 和 b 在 [0, 255]之间
|
||
*
|
||
* @param Number h 色相
|
||
* @param Number s 饱和度
|
||
* @param Number l 亮度
|
||
* @return Array RGB色值数值
|
||
*/
|
||
function hslToRgb(h, s, l) {
|
||
var r, g, b;
|
||
if (s == 0) {
|
||
r = g = b = l; // achromatic
|
||
} else {
|
||
var hue2rgb = function hue2rgb(p, q, t) {
|
||
if (t < 0) t += 1;
|
||
if (t > 1) t -= 1;
|
||
if (t < 1 / 6) return p + (q - p) * 6 * t;
|
||
if (t < 1 / 2) return q;
|
||
if (t < 2 / 3) return p + (q - p) * (2 / 3 - t) * 6;
|
||
return p;
|
||
};
|
||
var q = l < 0.5 ? l * (1 + s) : l + s - l * s;
|
||
var p = 2 * l - q;
|
||
r = hue2rgb(p, q, h + 1 / 3);
|
||
g = hue2rgb(p, q, h);
|
||
b = hue2rgb(p, q, h - 1 / 3);
|
||
}
|
||
return [Math.round(r * 255), Math.round(g * 255), Math.round(b * 255)];
|
||
}
|
||
/**
|
||
* RGB 颜色值转换为 HSL.
|
||
* 转换公式参考自 http://en.wikipedia.org/wiki/HSL_color_space.
|
||
* r, g, 和 b 需要在 [0, 255] 范围内
|
||
* 返回的 h, s, 和 l 在 [0, 1] 之间
|
||
*
|
||
* @param Number r 红色色值
|
||
* @param Number g 绿色色值
|
||
* @param Number b 蓝色色值
|
||
* @return Array HSL各值数组
|
||
*/
|
||
function rgbToHsl(r, g, b) {
|
||
r /= 255, g /= 255, b /= 255;
|
||
var max = Math.max(r, g, b),
|
||
min = Math.min(r, g, b);
|
||
var h,
|
||
s,
|
||
l = (max + min) / 2;
|
||
if (max == min) {
|
||
h = s = 0; // achromatic
|
||
} else {
|
||
var d = max - min;
|
||
s = l > 0.5 ? d / (2 - max - min) : d / (max + min);
|
||
switch (max) {
|
||
case r:
|
||
h = (g - b) / d + (g < b ? 6 : 0);
|
||
break;
|
||
case g:
|
||
h = (b - r) / d + 2;
|
||
break;
|
||
case b:
|
||
h = (r - g) / d + 4;
|
||
break;
|
||
}
|
||
h /= 6;
|
||
}
|
||
return [h, s, l];
|
||
}
|
||
function generateRandomIndex(prefix) {
|
||
if (prefix == null) {
|
||
prefix = "Sheet";
|
||
}
|
||
var userAgent = window.navigator.userAgent.replace(/[^a-zA-Z0-9]/g, "").split("");
|
||
var mid = "";
|
||
for (var i = 0; i < 5; i++) {
|
||
mid += userAgent[Math.round(Math.random() * (userAgent.length - 1))];
|
||
}
|
||
var time = new Date().getTime();
|
||
return prefix + "_" + mid + "_" + time;
|
||
}
|
||
exports.generateRandomIndex = generateRandomIndex;
|
||
function escapeCharacter(str) {
|
||
if (str == null || str.length == 0) {
|
||
return str;
|
||
}
|
||
return str.replace(/&/g, "&").replace(/"/g, '"').replace(/</g, "<").replace(/>/g, ">").replace(/ /g, " ").replace(/'/g, "'").replace(/¡/g, "¡").replace(/¢/g, "¢").replace(/£/g, "£").replace(/¤/g, "¤").replace(/¥/g, "¥").replace(/¦/g, "¦").replace(/§/g, "§").replace(/¨/g, "¨").replace(/©/g, "©").replace(/ª/g, "ª").replace(/«/g, "«").replace(/¬/g, "¬").replace(/­/g, "").replace(/®/g, "®").replace(/¯/g, "¯").replace(/°/g, "°").replace(/±/g, "±").replace(/²/g, "²").replace(/³/g, "³").replace(/´/g, "´").replace(/µ/g, "µ").replace(/¶/g, "¶").replace(/·/g, "·").replace(/¸/g, "¸").replace(/¹/g, "¹").replace(/º/g, "º").replace(/»/g, "»").replace(/¼/g, "¼").replace(/½/g, "½").replace(/¾/g, "¾").replace(/¿/g, "¿").replace(/×/g, "×").replace(/÷/g, "÷").replace(/À/g, "À").replace(/Á/g, "Á").replace(/Â/g, "Â").replace(/Ã/g, "Ã").replace(/Ä/g, "Ä").replace(/Å/g, "Å").replace(/Æ/g, "Æ").replace(/Ç/g, "Ç").replace(/È/g, "È").replace(/É/g, "É").replace(/Ê/g, "Ê").replace(/Ë/g, "Ë").replace(/Ì/g, "Ì").replace(/Í/g, "Í").replace(/Î/g, "Î").replace(/Ï/g, "Ï").replace(/Ð/g, "Ð").replace(/Ñ/g, "Ñ").replace(/Ò/g, "Ò").replace(/Ó/g, "Ó").replace(/Ô/g, "Ô").replace(/Õ/g, "Õ").replace(/Ö/g, "Ö").replace(/Ø/g, "Ø").replace(/Ù/g, "Ù").replace(/Ú/g, "Ú").replace(/Û/g, "Û").replace(/Ü/g, "Ü").replace(/Ý/g, "Ý").replace(/Þ/g, "Þ").replace(/ß/g, "ß").replace(/à/g, "à").replace(/á/g, "á").replace(/â/g, "â").replace(/ã/g, "ã").replace(/ä/g, "ä").replace(/å/g, "å").replace(/æ/g, "æ").replace(/ç/g, "ç").replace(/è/g, "è").replace(/é/g, "é").replace(/ê/g, "ê").replace(/ë/g, "ë").replace(/ì/g, "ì").replace(/í/g, "í").replace(/î/g, "î").replace(/ï/g, "ï").replace(/ð/g, "ð").replace(/ñ/g, "ñ").replace(/ò/g, "ò").replace(/ó/g, "ó").replace(/ô/g, "ô").replace(/õ/g, "õ").replace(/ö/g, "ö").replace(/ø/g, "ø").replace(/ù/g, "ù").replace(/ú/g, "ú").replace(/û/g, "û").replace(/ü/g, "ü").replace(/ý/g, "ý").replace(/þ/g, "þ").replace(/ÿ/g, "ÿ");
|
||
}
|
||
exports.escapeCharacter = escapeCharacter;
|
||
var fromulaRef = /** @class */function () {
|
||
function fromulaRef() {}
|
||
fromulaRef.trim = function (str) {
|
||
if (str == null) {
|
||
str = "";
|
||
}
|
||
return str.replace(/(^\s*)|(\s*$)/g, "");
|
||
};
|
||
fromulaRef.functionCopy = function (txt, mode, step) {
|
||
var _this = this;
|
||
if (_this.operatorjson == null) {
|
||
var arr = _this.operator.split("|"),
|
||
op = {};
|
||
for (var i_1 = 0; i_1 < arr.length; i_1++) {
|
||
op[arr[i_1].toString()] = 1;
|
||
}
|
||
_this.operatorjson = op;
|
||
}
|
||
if (mode == null) {
|
||
mode = "down";
|
||
}
|
||
if (step == null) {
|
||
step = 1;
|
||
}
|
||
if (txt.substr(0, 1) == "=") {
|
||
txt = txt.substr(1);
|
||
}
|
||
var funcstack = txt.split("");
|
||
var i = 0,
|
||
str = "",
|
||
function_str = "",
|
||
ispassby = true;
|
||
var matchConfig = {
|
||
bracket: 0,
|
||
comma: 0,
|
||
squote: 0,
|
||
dquote: 0
|
||
};
|
||
while (i < funcstack.length) {
|
||
var s = funcstack[i];
|
||
if (s == "(" && matchConfig.dquote == 0) {
|
||
matchConfig.bracket += 1;
|
||
if (str.length > 0) {
|
||
function_str += str + "(";
|
||
} else {
|
||
function_str += "(";
|
||
}
|
||
str = "";
|
||
} else if (s == ")" && matchConfig.dquote == 0) {
|
||
matchConfig.bracket -= 1;
|
||
function_str += _this.functionCopy(str, mode, step) + ")";
|
||
str = "";
|
||
} else if (s == '"' && matchConfig.squote == 0) {
|
||
if (matchConfig.dquote > 0) {
|
||
function_str += str + '"';
|
||
matchConfig.dquote -= 1;
|
||
str = "";
|
||
} else {
|
||
matchConfig.dquote += 1;
|
||
str += '"';
|
||
}
|
||
} else if (s == "," && matchConfig.dquote == 0) {
|
||
function_str += _this.functionCopy(str, mode, step) + ",";
|
||
str = "";
|
||
} else if (s == "&" && matchConfig.dquote == 0) {
|
||
if (str.length > 0) {
|
||
function_str += _this.functionCopy(str, mode, step) + "&";
|
||
str = "";
|
||
} else {
|
||
function_str += "&";
|
||
}
|
||
} else if (s in _this.operatorjson && matchConfig.dquote == 0) {
|
||
var s_next = "";
|
||
if (i + 1 < funcstack.length) {
|
||
s_next = funcstack[i + 1];
|
||
}
|
||
var p = i - 1,
|
||
s_pre = null;
|
||
if (p >= 0) {
|
||
do {
|
||
s_pre = funcstack[p--];
|
||
} while (p >= 0 && s_pre == " ");
|
||
}
|
||
if (s + s_next in _this.operatorjson) {
|
||
if (str.length > 0) {
|
||
function_str += _this.functionCopy(str, mode, step) + s + s_next;
|
||
str = "";
|
||
} else {
|
||
function_str += s + s_next;
|
||
}
|
||
i++;
|
||
} else if (!/[^0-9]/.test(s_next) && s == "-" && (s_pre == "(" || s_pre == null || s_pre == "," || s_pre == " " || s_pre in _this.operatorjson)) {
|
||
str += s;
|
||
} else {
|
||
if (str.length > 0) {
|
||
function_str += _this.functionCopy(str, mode, step) + s;
|
||
str = "";
|
||
} else {
|
||
function_str += s;
|
||
}
|
||
}
|
||
} else {
|
||
str += s;
|
||
}
|
||
if (i == funcstack.length - 1) {
|
||
if (_this.iscelldata(_this.trim(str))) {
|
||
if (mode == "down") {
|
||
function_str += _this.downparam(_this.trim(str), step);
|
||
} else if (mode == "up") {
|
||
function_str += _this.upparam(_this.trim(str), step);
|
||
} else if (mode == "left") {
|
||
function_str += _this.leftparam(_this.trim(str), step);
|
||
} else if (mode == "right") {
|
||
function_str += _this.rightparam(_this.trim(str), step);
|
||
}
|
||
} else {
|
||
function_str += _this.trim(str);
|
||
}
|
||
}
|
||
i++;
|
||
}
|
||
return function_str;
|
||
};
|
||
fromulaRef.downparam = function (txt, step) {
|
||
return this.updateparam("d", txt, step);
|
||
};
|
||
fromulaRef.upparam = function (txt, step) {
|
||
return this.updateparam("u", txt, step);
|
||
};
|
||
fromulaRef.leftparam = function (txt, step) {
|
||
return this.updateparam("l", txt, step);
|
||
};
|
||
fromulaRef.rightparam = function (txt, step) {
|
||
return this.updateparam("r", txt, step);
|
||
};
|
||
fromulaRef.updateparam = function (orient, txt, step) {
|
||
var _this = this;
|
||
var val = txt.split("!"),
|
||
rangetxt,
|
||
prefix = "";
|
||
if (val.length > 1) {
|
||
rangetxt = val[1];
|
||
prefix = val[0] + "!";
|
||
} else {
|
||
rangetxt = val[0];
|
||
}
|
||
if (rangetxt.indexOf(":") == -1) {
|
||
var row = parseInt(rangetxt.replace(/[^0-9]/g, ""));
|
||
var col = ABCatNum(rangetxt.replace(/[^A-Za-z]/g, ""));
|
||
var freezonFuc = _this.isfreezonFuc(rangetxt);
|
||
var $row = freezonFuc[0] ? "$" : "",
|
||
$col = freezonFuc[1] ? "$" : "";
|
||
if (orient == "u" && !freezonFuc[0]) {
|
||
row -= step;
|
||
} else if (orient == "r" && !freezonFuc[1]) {
|
||
col += step;
|
||
} else if (orient == "l" && !freezonFuc[1]) {
|
||
col -= step;
|
||
} else if (!freezonFuc[0]) {
|
||
row += step;
|
||
}
|
||
if (row < 0 || col < 0) {
|
||
return _this.error.r;
|
||
}
|
||
if (!isNaN(row) && !isNaN(col)) {
|
||
return prefix + $col + chatatABC(col) + $row + row;
|
||
} else if (!isNaN(row)) {
|
||
return prefix + $row + row;
|
||
} else if (!isNaN(col)) {
|
||
return prefix + $col + chatatABC(col);
|
||
} else {
|
||
return txt;
|
||
}
|
||
} else {
|
||
rangetxt = rangetxt.split(":");
|
||
var row = [],
|
||
col = [];
|
||
row[0] = parseInt(rangetxt[0].replace(/[^0-9]/g, ""));
|
||
row[1] = parseInt(rangetxt[1].replace(/[^0-9]/g, ""));
|
||
if (row[0] > row[1]) {
|
||
return txt;
|
||
}
|
||
col[0] = ABCatNum(rangetxt[0].replace(/[^A-Za-z]/g, ""));
|
||
col[1] = ABCatNum(rangetxt[1].replace(/[^A-Za-z]/g, ""));
|
||
if (col[0] > col[1]) {
|
||
return txt;
|
||
}
|
||
var freezonFuc0 = _this.isfreezonFuc(rangetxt[0]);
|
||
var freezonFuc1 = _this.isfreezonFuc(rangetxt[1]);
|
||
var $row0 = freezonFuc0[0] ? "$" : "",
|
||
$col0 = freezonFuc0[1] ? "$" : "";
|
||
var $row1 = freezonFuc1[0] ? "$" : "",
|
||
$col1 = freezonFuc1[1] ? "$" : "";
|
||
if (orient == "u") {
|
||
if (!freezonFuc0[0]) {
|
||
row[0] -= step;
|
||
}
|
||
if (!freezonFuc1[0]) {
|
||
row[1] -= step;
|
||
}
|
||
} else if (orient == "r") {
|
||
if (!freezonFuc0[1]) {
|
||
col[0] += step;
|
||
}
|
||
if (!freezonFuc1[1]) {
|
||
col[1] += step;
|
||
}
|
||
} else if (orient == "l") {
|
||
if (!freezonFuc0[1]) {
|
||
col[0] -= step;
|
||
}
|
||
if (!freezonFuc1[1]) {
|
||
col[1] -= step;
|
||
}
|
||
} else {
|
||
if (!freezonFuc0[0]) {
|
||
row[0] += step;
|
||
}
|
||
if (!freezonFuc1[0]) {
|
||
row[1] += step;
|
||
}
|
||
}
|
||
if (row[0] < 0 || col[0] < 0) {
|
||
return _this.error.r;
|
||
}
|
||
if (isNaN(col[0]) && isNaN(col[1])) {
|
||
return prefix + $row0 + row[0] + ":" + $row1 + row[1];
|
||
} else if (isNaN(row[0]) && isNaN(row[1])) {
|
||
return prefix + $col0 + chatatABC(col[0]) + ":" + $col1 + chatatABC(col[1]);
|
||
} else {
|
||
return prefix + $col0 + chatatABC(col[0]) + $row0 + row[0] + ":" + $col1 + chatatABC(col[1]) + $row1 + row[1];
|
||
}
|
||
}
|
||
};
|
||
fromulaRef.iscelldata = function (txt) {
|
||
//判断是否为单元格格式
|
||
var val = txt.split("!"),
|
||
rangetxt;
|
||
if (val.length > 1) {
|
||
rangetxt = val[1];
|
||
} else {
|
||
rangetxt = val[0];
|
||
}
|
||
var reg_cell = /^(([a-zA-Z]+)|([$][a-zA-Z]+))(([0-9]+)|([$][0-9]+))$/g; //增加正则判断单元格为字母+数字的格式:如 A1:B3
|
||
var reg_cellRange = /^(((([a-zA-Z]+)|([$][a-zA-Z]+))(([0-9]+)|([$][0-9]+)))|((([a-zA-Z]+)|([$][a-zA-Z]+))))$/g; //增加正则判断单元格为字母+数字或字母的格式:如 A1:B3,A:A
|
||
if (rangetxt.indexOf(":") == -1) {
|
||
var row = parseInt(rangetxt.replace(/[^0-9]/g, "")) - 1;
|
||
var col = ABCatNum(rangetxt.replace(/[^A-Za-z]/g, ""));
|
||
if (!isNaN(row) && !isNaN(col) && rangetxt.toString().match(reg_cell)) {
|
||
return true;
|
||
} else if (!isNaN(row)) {
|
||
return false;
|
||
} else if (!isNaN(col)) {
|
||
return false;
|
||
} else {
|
||
return false;
|
||
}
|
||
} else {
|
||
reg_cellRange = /^(((([a-zA-Z]+)|([$][a-zA-Z]+))(([0-9]+)|([$][0-9]+)))|((([a-zA-Z]+)|([$][a-zA-Z]+)))|((([0-9]+)|([$][0-9]+s))))$/g;
|
||
rangetxt = rangetxt.split(":");
|
||
var row = [],
|
||
col = [];
|
||
row[0] = parseInt(rangetxt[0].replace(/[^0-9]/g, "")) - 1;
|
||
row[1] = parseInt(rangetxt[1].replace(/[^0-9]/g, "")) - 1;
|
||
if (row[0] > row[1]) {
|
||
return false;
|
||
}
|
||
col[0] = ABCatNum(rangetxt[0].replace(/[^A-Za-z]/g, ""));
|
||
col[1] = ABCatNum(rangetxt[1].replace(/[^A-Za-z]/g, ""));
|
||
if (col[0] > col[1]) {
|
||
return false;
|
||
}
|
||
if (rangetxt[0].toString().match(reg_cellRange) && rangetxt[1].toString().match(reg_cellRange)) {
|
||
return true;
|
||
} else {
|
||
return false;
|
||
}
|
||
}
|
||
};
|
||
fromulaRef.isfreezonFuc = function (txt) {
|
||
var row = txt.replace(/[^0-9]/g, "");
|
||
var col = txt.replace(/[^A-Za-z]/g, "");
|
||
var row$ = txt.substr(txt.indexOf(row) - 1, 1);
|
||
var col$ = txt.substr(txt.indexOf(col) - 1, 1);
|
||
var ret = [false, false];
|
||
if (row$ == "$") {
|
||
ret[0] = true;
|
||
}
|
||
if (col$ == "$") {
|
||
ret[1] = true;
|
||
}
|
||
return ret;
|
||
};
|
||
fromulaRef.operator = "==|!=|<>|<=|>=|=|+|-|>|<|/|*|%|&|^";
|
||
fromulaRef.error = {
|
||
v: "#VALUE!",
|
||
n: "#NAME?",
|
||
na: "#N/A",
|
||
r: "#REF!",
|
||
d: "#DIV/0!",
|
||
nm: "#NUM!",
|
||
nl: "#NULL!",
|
||
sp: "#SPILL!"
|
||
};
|
||
fromulaRef.operatorjson = null;
|
||
return fromulaRef;
|
||
}();
|
||
exports.fromulaRef = fromulaRef;
|
||
function isChinese(temp) {
|
||
var re = /[^\u4e00-\u9fa5]/;
|
||
var reg = /[\u3002|\uff1f|\uff01|\uff0c|\u3001|\uff1b|\uff1a|\u201c|\u201d|\u2018|\u2019|\uff08|\uff09|\u300a|\u300b|\u3008|\u3009|\u3010|\u3011|\u300e|\u300f|\u300c|\u300d|\ufe43|\ufe44|\u3014|\u3015|\u2026|\u2014|\uff5e|\ufe4f|\uffe5]/;
|
||
if (reg.test(temp)) return true;
|
||
if (re.test(temp)) return false;
|
||
return true;
|
||
}
|
||
exports.isChinese = isChinese;
|
||
function isJapanese(temp) {
|
||
var re = /[^\u0800-\u4e00]/;
|
||
if (re.test(temp)) return false;
|
||
return true;
|
||
}
|
||
exports.isJapanese = isJapanese;
|
||
function isKoera(chr) {
|
||
if (chr > 0x3130 && chr < 0x318f || chr >= 0xac00 && chr <= 0xd7a3) {
|
||
return true;
|
||
}
|
||
return false;
|
||
}
|
||
exports.isKoera = isKoera;
|
||
function isContainMultiType(str) {
|
||
var isUnicode = false;
|
||
if (escape(str).indexOf("%u") > -1) {
|
||
isUnicode = true;
|
||
}
|
||
var isNot = false;
|
||
var reg = /[0-9a-z]/gi;
|
||
if (reg.test(str)) {
|
||
isNot = true;
|
||
}
|
||
var reEnSign = /[\x00-\xff]+/g;
|
||
if (reEnSign.test(str)) {
|
||
isNot = true;
|
||
}
|
||
if (isUnicode && isNot) {
|
||
return true;
|
||
}
|
||
return false;
|
||
}
|
||
exports.isContainMultiType = isContainMultiType;
|
||
function getBinaryContent(path, options) {
|
||
var promise, resolve, reject;
|
||
var callback;
|
||
if (!options) {
|
||
options = {};
|
||
}
|
||
// taken from jQuery
|
||
var createStandardXHR = function createStandardXHR() {
|
||
try {
|
||
return new window.XMLHttpRequest();
|
||
} catch (e) {}
|
||
};
|
||
var createActiveXHR = function createActiveXHR() {
|
||
try {
|
||
return new window.ActiveXObject("Microsoft.XMLHTTP");
|
||
} catch (e) {}
|
||
};
|
||
// Create the request object
|
||
var createXHR = typeof window !== "undefined" && window.ActiveXObject ?
|
||
/* Microsoft failed to properly
|
||
* implement the XMLHttpRequest in IE7 (can't request local files),
|
||
* so we use the ActiveXObject when it is available
|
||
* Additionally XMLHttpRequest can be disabled in IE7/IE8 so
|
||
* we need a fallback.
|
||
*/
|
||
function () {
|
||
return createStandardXHR() || createActiveXHR();
|
||
} :
|
||
// For all other browsers, use the standard XMLHttpRequest object
|
||
createStandardXHR;
|
||
// backward compatible callback
|
||
if (typeof options === "function") {
|
||
callback = options;
|
||
options = {};
|
||
} else if (typeof options.callback === "function") {
|
||
// callback inside options object
|
||
callback = options.callback;
|
||
}
|
||
resolve = function resolve(data) {
|
||
callback(null, data);
|
||
};
|
||
reject = function reject(err) {
|
||
callback(err, null);
|
||
};
|
||
try {
|
||
var xhr = createXHR();
|
||
xhr.open("GET", path, true);
|
||
// recent browsers
|
||
if ("responseType" in xhr) {
|
||
xhr.responseType = "arraybuffer";
|
||
}
|
||
// older browser
|
||
if (xhr.overrideMimeType) {
|
||
xhr.overrideMimeType("text/plain; charset=x-user-defined");
|
||
}
|
||
xhr.onreadystatechange = function (event) {
|
||
// use `xhr` and not `this`... thanks IE
|
||
if (xhr.readyState === 4) {
|
||
if (xhr.status === 200 || xhr.status === 0) {
|
||
try {
|
||
resolve(function (xhr) {
|
||
// for xhr.responseText, the 0xFF mask is applied by JSZip
|
||
return xhr.response || xhr.responseText;
|
||
}(xhr));
|
||
} catch (err) {
|
||
reject(new Error(err));
|
||
}
|
||
} else {
|
||
reject(new Error("Ajax error for " + path + " : " + this.status + " " + this.statusText));
|
||
}
|
||
}
|
||
};
|
||
if (options.progress) {
|
||
xhr.onprogress = function (e) {
|
||
options.progress({
|
||
path: path,
|
||
originalEvent: e,
|
||
percent: e.loaded / e.total * 100,
|
||
loaded: e.loaded,
|
||
total: e.total
|
||
});
|
||
};
|
||
}
|
||
xhr.send();
|
||
} catch (e) {
|
||
reject(new Error(e), null);
|
||
}
|
||
// returns a promise or undefined depending on whether a callback was
|
||
// provided
|
||
return promise;
|
||
}
|
||
exports.getBinaryContent = getBinaryContent;
|
||
/**
|
||
* multi sequence conversion
|
||
* example:
|
||
* 1、E14 -> 13_4
|
||
* 2、E14 J14 O14 T14 Y14 AD14 AI14 AN14 AS14 AX14 ->
|
||
* ['13_4', '13_9','13_14', '13_19', '13_24', '13_3', '13_8', '13_13', '13_18', '13_23']
|
||
* 3、E46:E47 -> ['45_4', '46_4']
|
||
*
|
||
* @param {string} sqref - before sequence
|
||
* @returns {string[]}
|
||
*/
|
||
function getMultiSequenceToNum(sqref) {
|
||
if (!sqref || (sqref === null || sqref === void 0 ? void 0 : sqref.length) <= 0) return [];
|
||
sqref = sqref.toUpperCase();
|
||
var sqrefRawArr = sqref.split(" ");
|
||
var sqrefArr = sqrefRawArr.filter(function (e) {
|
||
return e && e.trim();
|
||
});
|
||
var sqrefLastArr = getSqrefRawArrFormat(sqrefArr);
|
||
var resArr = [];
|
||
for (var i = 0; i < sqrefLastArr.length; i++) {
|
||
var _res = getSingleSequenceToNum(sqrefLastArr[i]);
|
||
if (_res) resArr.push(_res);
|
||
}
|
||
return resArr;
|
||
}
|
||
exports.getMultiSequenceToNum = getMultiSequenceToNum;
|
||
/**
|
||
* get region sequence
|
||
* example:
|
||
* 1、[A1:C2'] -> ['A1', 'A2', 'B1', 'B2', 'C1', 'C2']
|
||
*
|
||
* @param {string[]} arr - formats arr
|
||
* @returns {string[]} - after arr
|
||
*/
|
||
function getRegionSequence(arr) {
|
||
var _a, _b;
|
||
var formatArr = [];
|
||
var regEn = new RegExp(/[A-Z]+|[0-9]+/g);
|
||
var startArr = (_a = arr[0]) === null || _a === void 0 ? void 0 : _a.match(regEn);
|
||
var lastArr = (_b = arr[1]) === null || _b === void 0 ? void 0 : _b.match(regEn);
|
||
var columnMax = Math.max.apply(Math, [ABCatNum(startArr[0]), ABCatNum(lastArr[0])]);
|
||
var columnMin = Math.min.apply(Math, [ABCatNum(startArr[0]), ABCatNum(lastArr[0])]);
|
||
var rowMax = Math.max.apply(Math, [parseInt(startArr[1]), parseInt(lastArr[1])]);
|
||
var rowMin = Math.min.apply(Math, [parseInt(startArr[1]), parseInt(lastArr[1])]);
|
||
for (var i = columnMin; i <= columnMax; i++) {
|
||
for (var j = rowMin; j <= rowMax; j++) {
|
||
formatArr.push("" + chatatABC(i) + j);
|
||
}
|
||
}
|
||
return formatArr;
|
||
}
|
||
exports.getRegionSequence = getRegionSequence;
|
||
/**
|
||
* unified processing of conversion formats
|
||
* example:
|
||
* 1、['E38', 'A1:C2'] -> ['E38', 'A1', 'A2', 'B1', 'B2', 'C1', 'C2']
|
||
*
|
||
* @param {string[]} arr - formats arr
|
||
* @returns {string[]} - after arr
|
||
*/
|
||
function getSqrefRawArrFormat(arr) {
|
||
arr === null || arr === void 0 ? void 0 : arr.map(function (el) {
|
||
if (el.includes(":")) {
|
||
var tempArr = el.split(":");
|
||
if ((tempArr === null || tempArr === void 0 ? void 0 : tempArr.length) === 2) {
|
||
arr = arr.concat(getRegionSequence(tempArr));
|
||
arr.splice(arr.indexOf(el), 1);
|
||
}
|
||
}
|
||
});
|
||
var resultArr = arr.filter(function (value, index, array) {
|
||
return array.indexOf(value) === index;
|
||
});
|
||
return resultArr;
|
||
}
|
||
exports.getSqrefRawArrFormat = getSqrefRawArrFormat;
|
||
/**
|
||
* single sequence to number
|
||
* example:
|
||
* 1、A1 -> 0_0
|
||
* 2、ES14 -> 13_4
|
||
*
|
||
* @param {string} sqref - before sequence
|
||
* @returns {string} - after sequence
|
||
*/
|
||
function getSingleSequenceToNum(sqref) {
|
||
var sqrefArray = sqref.match(/[A-Z]+|[0-9]+/g);
|
||
var sqrefLen = sqrefArray.length;
|
||
var regEn = new RegExp("^[A-Z]+$");
|
||
var ret = "";
|
||
for (var i = sqrefLen - 1; i >= 0; i--) {
|
||
var cur = sqrefArray[i];
|
||
if (regEn.test(cur)) {
|
||
ret += ABCatNum(cur) + "_";
|
||
} else {
|
||
ret += parseInt(cur) - 1 + "_";
|
||
}
|
||
}
|
||
return ret.substring(0, ret.length - 1);
|
||
}
|
||
exports.getSingleSequenceToNum = getSingleSequenceToNum;
|
||
/**
|
||
* R1C1 to Sequence
|
||
* example: sheet2!R1C1 => sheet!A1
|
||
*
|
||
* @param {string} value - R1C1 value
|
||
* @returns
|
||
*/
|
||
function getTransR1C1ToSequence(value) {
|
||
if (!value && (value === null || value === void 0 ? void 0 : value.length) <= 0) return "";
|
||
var len = value.length;
|
||
var index = value.lastIndexOf("!");
|
||
var valueArr = [value.slice(0, index), value.slice(index + 1, len)];
|
||
var repStr = valueArr[1] || "";
|
||
var indexR = repStr.indexOf("R");
|
||
var indexC = repStr.indexOf("C");
|
||
var row = Number(repStr.slice(indexR + 1, indexC));
|
||
var column = chatatABC(Number(repStr.slice(indexC + 1, repStr === null || repStr === void 0 ? void 0 : repStr.length)) - 1);
|
||
return valueArr[0] + "!" + column + row;
|
||
}
|
||
exports.getTransR1C1ToSequence = getTransR1C1ToSequence;
|
||
/**
|
||
* strip x14 format data
|
||
*
|
||
* @param {string} value
|
||
* @returns {Object} - { formula, sqref }
|
||
*/
|
||
function getPeelOffX14(value) {
|
||
var _a;
|
||
if (!value || (value === null || value === void 0 ? void 0 : value.length) <= 0) return {};
|
||
// formula
|
||
var formulaReg = new RegExp("</x14:formula[^]>", "g");
|
||
var lastIndex = (_a = value.match(formulaReg)) === null || _a === void 0 ? void 0 : _a.length;
|
||
var lastValue = "</x14:formula" + lastIndex + ">";
|
||
var lastValueEnd = value.indexOf(lastValue);
|
||
var formulaValue = value.substring(0, lastValueEnd + lastValue.length);
|
||
formulaValue = formulaValue.replace(/<xm:f>/g, "").replace(/<\/xm:f>/g, "").replace(/x14:/g, "").replace(/\/x14:/g, "");
|
||
var formula = formulaValue;
|
||
// sqref
|
||
var xmSqrefLen = "<xm:sqref>".length;
|
||
var sqrefStart = value.indexOf("<xm:sqref>");
|
||
var sqrefEnd = value.indexOf("</xm:sqref>");
|
||
var sqref = value.substring(sqrefStart + xmSqrefLen, sqrefEnd);
|
||
return {
|
||
formula: formula,
|
||
sqref: sqref
|
||
};
|
||
}
|
||
exports.getPeelOffX14 = getPeelOffX14;
|
||
/**
|
||
* get the value in the formula
|
||
*
|
||
* @param {string} value - extracted value
|
||
* @returns {string[]}
|
||
*/
|
||
function getMultiFormulaValue(value) {
|
||
var _a, _b;
|
||
if (!value || (value === null || value === void 0 ? void 0 : value.length) <= 0) return [];
|
||
var lenReg = new RegExp("formula", "g");
|
||
var len = (((_a = value.match(lenReg)) === null || _a === void 0 ? void 0 : _a.length) || 0) / 2;
|
||
if (len === 0) return [];
|
||
var retArr = [];
|
||
for (var i = 1; i <= len; i++) {
|
||
var startLen = (_b = "<formula" + i + ">") === null || _b === void 0 ? void 0 : _b.length;
|
||
var start = value.indexOf("<formula" + i + ">");
|
||
var end = value.indexOf("</formula" + i + ">");
|
||
var _value = value.substring(start + startLen, end);
|
||
retArr.push(escapeCharacter(_value.replace(/"|^\"|\"$/g, "")));
|
||
}
|
||
return retArr;
|
||
}
|
||
exports.getMultiFormulaValue = getMultiFormulaValue;
|
||
|
||
},{"./constant":47}],50:[function(require,module,exports){
|
||
"use strict";
|
||
|
||
Object.defineProperty(exports, "__esModule", {
|
||
value: true
|
||
});
|
||
exports.LuckyExcel = void 0;
|
||
var LuckyFile_1 = require("./ToLuckySheet/LuckyFile");
|
||
// import {SecurityDoor,Car} from './content';
|
||
var HandleZip_1 = require("./HandleZip");
|
||
// //demo
|
||
// function demoHandler(){
|
||
// let upload = document.getElementById("Luckyexcel-demo-file");
|
||
// let selectADemo = document.getElementById("Luckyexcel-select-demo");
|
||
// let downlodDemo = document.getElementById("Luckyexcel-downlod-file");
|
||
// let mask = document.getElementById("lucky-mask-demo");
|
||
// if(upload){
|
||
// window.onload = () => {
|
||
// upload.addEventListener("change", function(evt){
|
||
// var files:FileList = (evt.target as any).files;
|
||
// if(files==null || files.length==0){
|
||
// alert("No files wait for import");
|
||
// return;
|
||
// }
|
||
// let name = files[0].name;
|
||
// let suffixArr = name.split("."), suffix = suffixArr[suffixArr.length-1];
|
||
// if(suffix!="xlsx"){
|
||
// alert("Currently only supports the import of xlsx files");
|
||
// return;
|
||
// }
|
||
// LuckyExcel.transformExcelToLucky(files[0], function(exportJson:any, luckysheetfile:string){
|
||
// if(exportJson.sheets==null || exportJson.sheets.length==0){
|
||
// alert("Failed to read the content of the excel file, currently does not support xls files!");
|
||
// return;
|
||
// }
|
||
// console.log(exportJson, luckysheetfile);
|
||
// window.luckysheet.destroy();
|
||
// window.luckysheet.create({
|
||
// container: 'luckysheet', //luckysheet is the container id
|
||
// showinfobar:false,
|
||
// data:exportJson.sheets,
|
||
// title:exportJson.info.name,
|
||
// userInfo:exportJson.info.name.creator
|
||
// });
|
||
// });
|
||
// });
|
||
// selectADemo.addEventListener("change", function(evt){
|
||
// var obj:any = selectADemo;
|
||
// var index = obj.selectedIndex;
|
||
// var value = obj.options[index].value;
|
||
// var name = obj.options[index].innerHTML;
|
||
// if(value==""){
|
||
// return;
|
||
// }
|
||
// mask.style.display = "flex";
|
||
// LuckyExcel.transformExcelToLuckyByUrl(value, name, function(exportJson:any, luckysheetfile:string){
|
||
// if(exportJson.sheets==null || exportJson.sheets.length==0){
|
||
// alert("Failed to read the content of the excel file, currently does not support xls files!");
|
||
// return;
|
||
// }
|
||
// console.log(exportJson, luckysheetfile);
|
||
// mask.style.display = "none";
|
||
// window.luckysheet.destroy();
|
||
// window.luckysheet.create({
|
||
// container: 'luckysheet', //luckysheet is the container id
|
||
// showinfobar:false,
|
||
// data:exportJson.sheets,
|
||
// title:exportJson.info.name,
|
||
// userInfo:exportJson.info.name.creator
|
||
// });
|
||
// });
|
||
// });
|
||
// downlodDemo.addEventListener("click", function(evt){
|
||
// var obj:any = selectADemo;
|
||
// var index = obj.selectedIndex;
|
||
// var value = obj.options[index].value;
|
||
// if(value.length==0){
|
||
// alert("Please select a demo file");
|
||
// return;
|
||
// }
|
||
// var elemIF:any = document.getElementById("Lucky-download-frame");
|
||
// if(elemIF==null){
|
||
// elemIF = document.createElement("iframe");
|
||
// elemIF.style.display = "none";
|
||
// elemIF.id = "Lucky-download-frame";
|
||
// document.body.appendChild(elemIF);
|
||
// }
|
||
// elemIF.src = value;
|
||
// // elemIF.parentNode.removeChild(elemIF);
|
||
// });
|
||
// }
|
||
// }
|
||
// }
|
||
// demoHandler();
|
||
// api
|
||
var LuckyExcel = /** @class */function () {
|
||
function LuckyExcel() {}
|
||
LuckyExcel.transformExcelToLucky = function (excelFile, callback, errorHandler) {
|
||
var handleZip = new HandleZip_1.HandleZip(excelFile);
|
||
handleZip.unzipFile(function (files) {
|
||
var luckyFile = new LuckyFile_1.LuckyFile(files, excelFile.name);
|
||
var luckysheetfile = luckyFile.Parse();
|
||
var exportJson = JSON.parse(luckysheetfile);
|
||
if (callback != undefined) {
|
||
callback(exportJson, luckysheetfile);
|
||
}
|
||
}, function (err) {
|
||
if (errorHandler) {
|
||
errorHandler(err);
|
||
} else {
|
||
console.error(err);
|
||
}
|
||
});
|
||
};
|
||
LuckyExcel.transformExcelToLuckyByUrl = function (url, name, callBack, errorHandler) {
|
||
var handleZip = new HandleZip_1.HandleZip();
|
||
handleZip.unzipFileByUrl(url, function (files) {
|
||
var luckyFile = new LuckyFile_1.LuckyFile(files, name);
|
||
var luckysheetfile = luckyFile.Parse();
|
||
var exportJson = JSON.parse(luckysheetfile);
|
||
if (callBack != undefined) {
|
||
callBack(exportJson, luckysheetfile);
|
||
}
|
||
}, function (err) {
|
||
if (errorHandler) {
|
||
errorHandler(err);
|
||
} else {
|
||
console.error(err);
|
||
}
|
||
});
|
||
};
|
||
LuckyExcel.transformLuckyToExcel = function (LuckyFile, callBack, errorHandler) {};
|
||
return LuckyExcel;
|
||
}();
|
||
exports.LuckyExcel = LuckyExcel;
|
||
|
||
},{"./HandleZip":40,"./ToLuckySheet/LuckyFile":43}],51:[function(require,module,exports){
|
||
"use strict";
|
||
|
||
var main_1 = require("./main");
|
||
module.exports = main_1.LuckyExcel;
|
||
|
||
},{"./main":50}]},{},[51])(51)
|
||
});
|