UNPKG

mp4box

Version:

JavaScript version of GPAC's MP4Box tool

587 lines (510 loc) 18 kB
/** DataStream reads scalars, arrays and structs of data from an ArrayBuffer. It's like a file-like DataView on steroids. @param {ArrayBuffer} arrayBuffer ArrayBuffer to read from. @param {?Number} byteOffset Offset from arrayBuffer beginning for the DataStream. @param {?Boolean} endianness DataStream.BIG_ENDIAN or DataStream.LITTLE_ENDIAN (the default). */ var DataStream = function(arrayBuffer, byteOffset, endianness) { this._byteOffset = byteOffset || 0; if (arrayBuffer instanceof ArrayBuffer) { this.buffer = arrayBuffer; } else if (typeof arrayBuffer == "object") { this.dataView = arrayBuffer; if (byteOffset) { this._byteOffset += byteOffset; } } else { this.buffer = new ArrayBuffer(arrayBuffer || 0); } this.position = 0; this.endianness = endianness == null ? DataStream.LITTLE_ENDIAN : endianness; }; DataStream.prototype = {}; DataStream.prototype.getPosition = function() { return this.position; } /** Internal function to resize the DataStream buffer when required. @param {number} extra Number of bytes to add to the buffer allocation. @return {null} */ DataStream.prototype._realloc = function(extra) { if (!this._dynamicSize) { return; } var req = this._byteOffset + this.position + extra; var blen = this._buffer.byteLength; if (req <= blen) { if (req > this._byteLength) { this._byteLength = req; } return; } if (blen < 1) { blen = 1; } while (req > blen) { blen *= 2; } var buf = new ArrayBuffer(blen); var src = new Uint8Array(this._buffer); var dst = new Uint8Array(buf, 0, src.length); dst.set(src); this.buffer = buf; this._byteLength = req; }; /** Internal function to trim the DataStream buffer when required. Used for stripping out the extra bytes from the backing buffer when the virtual byteLength is smaller than the buffer byteLength (happens after growing the buffer with writes and not filling the extra space completely). @return {null} */ DataStream.prototype._trimAlloc = function() { if (this._byteLength == this._buffer.byteLength) { return; } var buf = new ArrayBuffer(this._byteLength); var dst = new Uint8Array(buf); var src = new Uint8Array(this._buffer, 0, dst.length); dst.set(src); this.buffer = buf; }; /** Big-endian const to use as default endianness. @type {boolean} */ DataStream.BIG_ENDIAN = false; /** Little-endian const to use as default endianness. @type {boolean} */ DataStream.LITTLE_ENDIAN = true; /** Virtual byte length of the DataStream backing buffer. Updated to be max of original buffer size and last written size. If dynamicSize is false is set to buffer size. @type {number} */ DataStream.prototype._byteLength = 0; /** Returns the byte length of the DataStream object. @type {number} */ Object.defineProperty(DataStream.prototype, 'byteLength', { get: function() { return this._byteLength - this._byteOffset; }}); /** Set/get the backing ArrayBuffer of the DataStream object. The setter updates the DataView to point to the new buffer. @type {Object} */ Object.defineProperty(DataStream.prototype, 'buffer', { get: function() { this._trimAlloc(); return this._buffer; }, set: function(v) { this._buffer = v; this._dataView = new DataView(this._buffer, this._byteOffset); this._byteLength = this._buffer.byteLength; } }); /** Set/get the byteOffset of the DataStream object. The setter updates the DataView to point to the new byteOffset. @type {number} */ Object.defineProperty(DataStream.prototype, 'byteOffset', { get: function() { return this._byteOffset; }, set: function(v) { this._byteOffset = v; this._dataView = new DataView(this._buffer, this._byteOffset); this._byteLength = this._buffer.byteLength; } }); /** Set/get the backing DataView of the DataStream object. The setter updates the buffer and byteOffset to point to the DataView values. @type {Object} */ Object.defineProperty(DataStream.prototype, 'dataView', { get: function() { return this._dataView; }, set: function(v) { this._byteOffset = v.byteOffset; this._buffer = v.buffer; this._dataView = new DataView(this._buffer, this._byteOffset); this._byteLength = this._byteOffset + v.byteLength; } }); /** Sets the DataStream read/write position to given position. Clamps between 0 and DataStream length. @param {number} pos Position to seek to. @return {null} */ DataStream.prototype.seek = function(pos) { var npos = Math.max(0, Math.min(this.byteLength, pos)); this.position = (isNaN(npos) || !isFinite(npos)) ? 0 : npos; }; /** Returns true if the DataStream seek pointer is at the end of buffer and there's no more data to read. @return {boolean} True if the seek pointer is at the end of the buffer. */ DataStream.prototype.isEof = function() { return (this.position >= this._byteLength); }; /** Maps a Uint8Array into the DataStream buffer. Nice for quickly reading in data. @param {number} length Number of elements to map. @param {?boolean} e Endianness of the data to read. @return {Object} Uint8Array to the DataStream backing buffer. */ DataStream.prototype.mapUint8Array = function(length) { this._realloc(length * 1); var arr = new Uint8Array(this._buffer, this.byteOffset+this.position, length); this.position += length * 1; return arr; }; /** Reads an Int32Array of desired length and endianness from the DataStream. @param {number} length Number of elements to map. @param {?boolean} e Endianness of the data to read. @return {Object} The read Int32Array. */ DataStream.prototype.readInt32Array = function(length, e) { length = length == null ? (this.byteLength-this.position / 4) : length; var arr = new Int32Array(length); DataStream.memcpy(arr.buffer, 0, this.buffer, this.byteOffset+this.position, length*arr.BYTES_PER_ELEMENT); DataStream.arrayToNative(arr, e == null ? this.endianness : e); this.position += arr.byteLength; return arr; }; /** Reads an Int16Array of desired length and endianness from the DataStream. @param {number} length Number of elements to map. @param {?boolean} e Endianness of the data to read. @return {Object} The read Int16Array. */ DataStream.prototype.readInt16Array = function(length, e) { length = length == null ? (this.byteLength-this.position / 2) : length; var arr = new Int16Array(length); DataStream.memcpy(arr.buffer, 0, this.buffer, this.byteOffset+this.position, length*arr.BYTES_PER_ELEMENT); DataStream.arrayToNative(arr, e == null ? this.endianness : e); this.position += arr.byteLength; return arr; }; /** Reads an Int8Array of desired length from the DataStream. @param {number} length Number of elements to map. @param {?boolean} e Endianness of the data to read. @return {Object} The read Int8Array. */ DataStream.prototype.readInt8Array = function(length) { length = length == null ? (this.byteLength-this.position) : length; var arr = new Int8Array(length); DataStream.memcpy(arr.buffer, 0, this.buffer, this.byteOffset+this.position, length*arr.BYTES_PER_ELEMENT); this.position += arr.byteLength; return arr; }; /** Reads a Uint32Array of desired length and endianness from the DataStream. @param {number} length Number of elements to map. @param {?boolean} e Endianness of the data to read. @return {Object} The read Uint32Array. */ DataStream.prototype.readUint32Array = function(length, e) { length = length == null ? (this.byteLength-this.position / 4) : length; var arr = new Uint32Array(length); DataStream.memcpy(arr.buffer, 0, this.buffer, this.byteOffset+this.position, length*arr.BYTES_PER_ELEMENT); DataStream.arrayToNative(arr, e == null ? this.endianness : e); this.position += arr.byteLength; return arr; }; /** Reads a Uint16Array of desired length and endianness from the DataStream. @param {number} length Number of elements to map. @param {?boolean} e Endianness of the data to read. @return {Object} The read Uint16Array. */ DataStream.prototype.readUint16Array = function(length, e) { length = length == null ? (this.byteLength-this.position / 2) : length; var arr = new Uint16Array(length); DataStream.memcpy(arr.buffer, 0, this.buffer, this.byteOffset+this.position, length*arr.BYTES_PER_ELEMENT); DataStream.arrayToNative(arr, e == null ? this.endianness : e); this.position += arr.byteLength; return arr; }; /** Reads a Uint8Array of desired length from the DataStream. @param {number} length Number of elements to map. @param {?boolean} e Endianness of the data to read. @return {Object} The read Uint8Array. */ DataStream.prototype.readUint8Array = function(length) { length = length == null ? (this.byteLength-this.position) : length; var arr = new Uint8Array(length); DataStream.memcpy(arr.buffer, 0, this.buffer, this.byteOffset+this.position, length*arr.BYTES_PER_ELEMENT); this.position += arr.byteLength; return arr; }; /** Reads a Float64Array of desired length and endianness from the DataStream. @param {number} length Number of elements to map. @param {?boolean} e Endianness of the data to read. @return {Object} The read Float64Array. */ DataStream.prototype.readFloat64Array = function(length, e) { length = length == null ? (this.byteLength-this.position / 8) : length; var arr = new Float64Array(length); DataStream.memcpy(arr.buffer, 0, this.buffer, this.byteOffset+this.position, length*arr.BYTES_PER_ELEMENT); DataStream.arrayToNative(arr, e == null ? this.endianness : e); this.position += arr.byteLength; return arr; }; /** Reads a Float32Array of desired length and endianness from the DataStream. @param {number} length Number of elements to map. @param {?boolean} e Endianness of the data to read. @return {Object} The read Float32Array. */ DataStream.prototype.readFloat32Array = function(length, e) { length = length == null ? (this.byteLength-this.position / 4) : length; var arr = new Float32Array(length); DataStream.memcpy(arr.buffer, 0, this.buffer, this.byteOffset+this.position, length*arr.BYTES_PER_ELEMENT); DataStream.arrayToNative(arr, e == null ? this.endianness : e); this.position += arr.byteLength; return arr; }; /** Reads a 32-bit int from the DataStream with the desired endianness. @param {?boolean} e Endianness of the number. @return {number} The read number. */ DataStream.prototype.readInt32 = function(e) { var v = this._dataView.getInt32(this.position, e == null ? this.endianness : e); this.position += 4; return v; }; /** Reads a 16-bit int from the DataStream with the desired endianness. @param {?boolean} e Endianness of the number. @return {number} The read number. */ DataStream.prototype.readInt16 = function(e) { var v = this._dataView.getInt16(this.position, e == null ? this.endianness : e); this.position += 2; return v; }; /** Reads an 8-bit int from the DataStream. @return {number} The read number. */ DataStream.prototype.readInt8 = function() { var v = this._dataView.getInt8(this.position); this.position += 1; return v; }; /** Reads a 32-bit unsigned int from the DataStream with the desired endianness. @param {?boolean} e Endianness of the number. @return {number} The read number. */ DataStream.prototype.readUint32 = function(e) { var v = this._dataView.getUint32(this.position, e == null ? this.endianness : e); this.position += 4; return v; }; /** Reads a 16-bit unsigned int from the DataStream with the desired endianness. @param {?boolean} e Endianness of the number. @return {number} The read number. */ DataStream.prototype.readUint16 = function(e) { var v = this._dataView.getUint16(this.position, e == null ? this.endianness : e); this.position += 2; return v; }; /** Reads an 8-bit unsigned int from the DataStream. @return {number} The read number. */ DataStream.prototype.readUint8 = function() { var v = this._dataView.getUint8(this.position); this.position += 1; return v; }; /** Reads a 32-bit float from the DataStream with the desired endianness. @param {?boolean} e Endianness of the number. @return {number} The read number. */ DataStream.prototype.readFloat32 = function(e) { var v = this._dataView.getFloat32(this.position, e == null ? this.endianness : e); this.position += 4; return v; }; /** Reads a 64-bit float from the DataStream with the desired endianness. @param {?boolean} e Endianness of the number. @return {number} The read number. */ DataStream.prototype.readFloat64 = function(e) { var v = this._dataView.getFloat64(this.position, e == null ? this.endianness : e); this.position += 8; return v; }; /** Native endianness. Either DataStream.BIG_ENDIAN or DataStream.LITTLE_ENDIAN depending on the platform endianness. @type {boolean} */ DataStream.endianness = new Int8Array(new Int16Array([1]).buffer)[0] > 0; /** Copies byteLength bytes from the src buffer at srcOffset to the dst buffer at dstOffset. @param {Object} dst Destination ArrayBuffer to write to. @param {number} dstOffset Offset to the destination ArrayBuffer. @param {Object} src Source ArrayBuffer to read from. @param {number} srcOffset Offset to the source ArrayBuffer. @param {number} byteLength Number of bytes to copy. */ DataStream.memcpy = function(dst, dstOffset, src, srcOffset, byteLength) { var dstU8 = new Uint8Array(dst, dstOffset, byteLength); var srcU8 = new Uint8Array(src, srcOffset, byteLength); dstU8.set(srcU8); }; /** Converts array to native endianness in-place. @param {Object} array Typed array to convert. @param {boolean} arrayIsLittleEndian True if the data in the array is little-endian. Set false for big-endian. @return {Object} The converted typed array. */ DataStream.arrayToNative = function(array, arrayIsLittleEndian) { if (arrayIsLittleEndian == this.endianness) { return array; } else { return this.flipArrayEndianness(array); } }; /** Converts native endianness array to desired endianness in-place. @param {Object} array Typed array to convert. @param {boolean} littleEndian True if the converted array should be little-endian. Set false for big-endian. @return {Object} The converted typed array. */ DataStream.nativeToEndian = function(array, littleEndian) { if (this.endianness == littleEndian) { return array; } else { return this.flipArrayEndianness(array); } }; /** Flips typed array endianness in-place. @param {Object} array Typed array to flip. @return {Object} The converted typed array. */ DataStream.flipArrayEndianness = function(array) { var u8 = new Uint8Array(array.buffer, array.byteOffset, array.byteLength); for (var i=0; i<array.byteLength; i+=array.BYTES_PER_ELEMENT) { for (var j=i+array.BYTES_PER_ELEMENT-1, k=i; j>k; j--, k++) { var tmp = u8[k]; u8[k] = u8[j]; u8[j] = tmp; } } return array; }; /** Seek position where DataStream#readStruct ran into a problem. Useful for debugging struct parsing. @type {number} */ DataStream.prototype.failurePosition = 0; String.fromCharCodeUint8 = function(uint8arr) { var arr = []; for (var i = 0; i < uint8arr.length; i++) { arr[i] = uint8arr[i]; } return String.fromCharCode.apply(null, arr); } /** Read a string of desired length and encoding from the DataStream. @param {number} length The length of the string to read in bytes. @param {?string} encoding The encoding of the string data in the DataStream. Defaults to ASCII. @return {string} The read string. */ DataStream.prototype.readString = function(length, encoding) { if (encoding == null || encoding == "ASCII") { return String.fromCharCodeUint8.apply(null, [this.mapUint8Array(length == null ? this.byteLength-this.position : length)]); } else { return (new TextDecoder(encoding)).decode(this.mapUint8Array(length)); } }; /** Read null-terminated string of desired length from the DataStream. Truncates the returned string so that the null byte is not a part of it. @param {?number} length The length of the string to read. @return {string} The read string. */ DataStream.prototype.readCString = function(length) { var blen = this.byteLength-this.position; var u8 = new Uint8Array(this._buffer, this._byteOffset + this.position); var len = blen; if (length != null) { len = Math.min(length, blen); } for (var i = 0; i < len && u8[i] !== 0; i++); // find first zero byte var s = String.fromCharCodeUint8.apply(null, [this.mapUint8Array(i)]); if (length != null) { this.position += len-i; } else if (i != blen) { this.position += 1; // trailing zero if not at end of buffer } return s; }; /* TODO: fix endianness for 24/64-bit fields TODO: check range/support for 64-bits numbers in JavaScript */ var MAX_SIZE = Math.pow(2, 32); DataStream.prototype.readInt64 = function () { return (this.readInt32()*MAX_SIZE)+this.readUint32(); } DataStream.prototype.readUint64 = function () { return (this.readUint32()*MAX_SIZE)+this.readUint32(); } DataStream.prototype.readInt64 = function () { return (this.readUint32()*MAX_SIZE)+this.readUint32(); } DataStream.prototype.readUint24 = function () { return (this.readUint8()<<16)+(this.readUint8()<<8)+this.readUint8(); } if (typeof exports !== 'undefined') { exports.DataStream = DataStream; }