aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/js/binaryXHR.js
blob: 91915e68f9d16bbbdec620ea3f8f8f0f6711e265 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
// jshint browser:true
/*
 * BinaryFile over XMLHttpRequest
 * Part of the javascriptRRD package
 * Copyright (c) 2009 Frank Wuerthwein, fkw@ucsd.edu
 * MIT License [http://www.opensource.org/licenses/mit-license.php]
 *
 * Original repository: http://javascriptrrd.sourceforge.net/
 *
 * Based on:
 *   Binary Ajax 0.1.5
 *   Copyright (c) 2008 Jacob Seidelin, cupboy@gmail.com, http://blog.nihilogic.dk/
 *   MIT License [http://www.opensource.org/licenses/mit-license.php]
 */

// ============================================================
// Exception class
function InvalidBinaryFile(msg) {
	"use strict";
	this.message = msg;
	this.name = "Invalid BinaryFile";
}

// pretty print
InvalidBinaryFile.prototype.toString = function() {
	"use strict";
	return this.name + ': "' + this.message + '"';
};

// =====================================================================
// BinaryFile class
//   Allows access to element inside a binary stream
function BinaryFile(data) {
	"use strict";
	var dataLength;
	// whether the data is in little endian format
	var littleEndian = true;

	this.getRawData = function() {
		return data;
	};

	if (typeof data === "string") {
		dataLength = data.length;

		this.getByteAt = function(iOffset) {
			return data.charCodeAt(iOffset) & 0xFF;
		};
	} else if (typeof DataView != "undefined" && data instanceof ArrayBuffer) {
		dataLength = data.dataLength;
	/*@cc_on
	} else if (typeof data === "unknown") {
		// Correct. "unknown" as type. MS JScript 8 added this.
		dataLength = IEBinary_getLength(data);

		this.getByteAt = function(iOffset) {
			return IEBinary_getByteAt(data, iOffset);
		};
	@*/
	} else {
		throw new InvalidBinaryFile("Unsupported type " + (typeof data));
	}

	this.getLength = function() {
		return dataLength;
	};

	if (typeof DataView != "undefined" && data instanceof ArrayBuffer) {
		// not an antique browser, use faster TypedArrays
		this.extendWithDataView(data, littleEndian);
		// other functions here do not need these
		data = null;
	} else {
		// antique browser, use slower fallback implementation
		this.extendWithFallback(data, littleEndian);
	}
}

BinaryFile.prototype.extendWithFallback = function(data, littleEndian) {
	"use strict";
	var doubleMantExpHi = Math.pow(2,-28);
	var doubleMantExpLo = Math.pow(2,-52);
	var doubleMantExpFast = Math.pow(2,-20);

	// private function for getting bytes depending on endianess
	var that = this, getEndianByteAt;
	if (littleEndian) {
		getEndianByteAt = function(iOffset, width, delta) {
			return that.getByteAt(iOffset + delta);
		};
	} else {
		getEndianByteAt = function(iOffset, width, delta) {
			return that.getByteAt(iOffset + width - delta - 1);
		};
	}

	this.getSByteAt = function(iOffset) {
		var iByte = this.getByteAt(iOffset);
		if (iByte > 127)
			return iByte - 256;
		else
			return iByte;
	};
	this.getShortAt = function(iOffset) {
		var iShort = (getEndianByteAt(iOffset,2,1) << 8) + getEndianByteAt(iOffset,2,0);
		if (iShort < 0) iShort += 65536;
		return iShort;
	};
	this.getSShortAt = function(iOffset) {
		var iUShort = this.getShortAt(iOffset);
		if (iUShort > 32767)
			return iUShort - 65536;
		else
			return iUShort;
	};
	this.getLongAt = function(iOffset) {
		var iByte1 = getEndianByteAt(iOffset,4,0),
			iByte2 = getEndianByteAt(iOffset,4,1),
			iByte3 = getEndianByteAt(iOffset,4,2),
			iByte4 = getEndianByteAt(iOffset,4,3);

		var iLong = (((((iByte4 << 8) + iByte3) << 8) + iByte2) << 8) + iByte1;
		if (iLong < 0) iLong += 4294967296;
		return iLong;
	};
	this.getSLongAt = function(iOffset) {
		var iULong = this.getLongAt(iOffset);
		if (iULong > 2147483647)
			return iULong - 4294967296;
		else
			return iULong;
	};
	this.getCharAt = function(iOffset) {
		return String.fromCharCode(this.getByteAt(iOffset));
	};
	this.getCStringAt = function(iOffset, iMaxLength) {
		var aStr = [];
		for (var i=iOffset,j=0;(i<iOffset+iMaxLength) && (this.getByteAt(i)>0);i++,j++) {
			aStr[j] = String.fromCharCode(this.getByteAt(i));
		}
		return aStr.join("");
	};
	this.getDoubleAt = function(iOffset) {
		var iByte1 = getEndianByteAt(iOffset,8,0),
			iByte2 = getEndianByteAt(iOffset,8,1),
			iByte3 = getEndianByteAt(iOffset,8,2),
			iByte4 = getEndianByteAt(iOffset,8,3),
			iByte5 = getEndianByteAt(iOffset,8,4),
			iByte6 = getEndianByteAt(iOffset,8,5),
			iByte7 = getEndianByteAt(iOffset,8,6),
			iByte8 = getEndianByteAt(iOffset,8,7);
		var iSign=iByte8 >> 7;
		var iExpRaw=((iByte8 & 0x7F)<< 4) + (iByte7 >> 4);
		var iMantHi=((((((iByte7 & 0x0F) << 8) + iByte6) << 8) + iByte5) << 8) + iByte4;
		var iMantLo=((((iByte3) << 8) + iByte2) << 8) + iByte1;

		if (iExpRaw === 0) return 0.0;
		if (iExpRaw === 0x7ff) return undefined;

		var iExp=(iExpRaw & 0x7FF)-1023;

		var dDouble = ((iSign==1)?-1:1)*Math.pow(2,iExp)*(1.0 + iMantLo*doubleMantExpLo + iMantHi*doubleMantExpHi);
		return dDouble;
	};
	// Extracts only 4 bytes out of 8, loosing in precision (20 bit mantissa)
	this.getFastDoubleAt = function(iOffset) {
		var iByte5 = getEndianByteAt(iOffset,8,4),
			iByte6 = getEndianByteAt(iOffset,8,5),
			iByte7 = getEndianByteAt(iOffset,8,6),
			iByte8 = getEndianByteAt(iOffset,8,7);
		var iSign=iByte8 >> 7;
		var iExpRaw=((iByte8 & 0x7F)<< 4) + (iByte7 >> 4);
		var iMant=((((iByte7 & 0x0F) << 8) + iByte6) << 8) + iByte5;

		if (iExpRaw === 0) return 0.0;
		if (iExpRaw === 0x7ff) return undefined;

		var iExp=(iExpRaw & 0x7FF)-1023;

		var dDouble = ((iSign === 1) ? -1 : 1);
		dDouble *= Math.pow(2,iExp) * (1.0 + iMant*doubleMantExpFast);
		return dDouble;
	};
};

BinaryFile.prototype.extendWithDataView = function(data, littleEndian) {
	"use strict";
	var dv = new DataView(data);

	this.getByteAt = dv.getUint8.bind(dv);
	this.getSByteAt = dv.getInt8.bind(dv);
	this.getShortAt = function(iOffset) {
		return dv.getUint16(iOffset, littleEndian);
	};
	this.getSShortAt = function(iOffset) {
		return dv.getInt16(iOffset, littleEndian);
	};
	this.getLongAt = function(iOffset) {
		return dv.getUint32(iOffset, littleEndian);
	};
	this.getSLongAt = function(iOffset) {
		return dv.getInt32(iOffset, littleEndian);
	};
	this.getCharAt = function(iOffset) {
		return String.fromCharCode(this.getByteAt(iOffset));
	};
	this.getCStringAt = function(iOffset, iMaxLength) {
		var str = "";
		do {
			var b = this.getByteAt(iOffset++);
			if (b === 0)
				break;
			str += String.fromCharCode(b);
		} while (--iMaxLength > 0);
		return str;
	};
	this.getDoubleAt = function(iOffset) {
		return dv.getFloat64(iOffset, littleEndian);
	};
	this.getFastDoubleAt = this.getDoubleAt.bind(this);
};


// Use document.write only for stone-age browsers.
/*@cc on
document.write(
	"<script type='text/vbscript'>\r\n"
	+ "Function IEBinary_getByteAt(strBinary, iOffset)\r\n"
	+ "	IEBinary_getByteAt = AscB(MidB(strBinary,iOffset+1,1))\r\n"
	+ "End Function\r\n"
	+ "Function IEBinary_getLength(strBinary)\r\n"
	+ "	IEBinary_getLength = LenB(strBinary)\r\n"
	+ "End Function\r\n"
	+ "</script>\r\n"
);
@*/


// ===============================================================
// Load a binary file from the specified URL
// Will return an object of type BinaryFile
function FetchBinaryURL(url) {
	"use strict";
	var request =  new XMLHttpRequest();
	request.open("GET", url,false);
	try {
		request.overrideMimeType('text/plain; charset=x-user-defined');
	} catch (err) {
		// ignore any error, just to make both FF and IE work
	}
	request.send(null);

	var response = request.responseText;
	/*@cc_on
	try {
		// for older IE versions, the value in responseText is not usable
		if (IEBinary_getLength(this.responseBody)>0) {
			// will get here only for older verson of IE
			response=this.responseBody;
		}
	} catch (err) {
	}
	@*/

	// cannot use responseType == "arraybuffer" for synchronous requests, so
	// convert it afterwards
	if (typeof ArrayBuffer != "undefined") {
		var buffer = new ArrayBuffer(response.length);
		var bv = new Uint8Array(buffer);
		for (var i = 0; i < response.length; i++) {
			bv[i] = response.charCodeAt(i);
		}
		response = buffer;
	}

	var bf = new BinaryFile(response);
	return bf;
}


// ===============================================================
// Asyncronously load a binary file from the specified URL
//
// callback must be a function with one or two arguments:
//  - bf = an object of type BinaryFile
//  - optional argument object (used only if callback_arg not undefined)
function FetchBinaryURLAsync(url, callback, callback_arg) {
	"use strict";
	var callback_wrapper = function() {
		if(this.readyState === 4) {
			// ArrayBuffer response or just the response as string
			var response = this.response || this.responseText;
			/*@cc_on
			try {
				// for older IE versions, the value in responseText is not usable
				if (IEBinary_getLength(this.responseBody)>0) {
					// will get here only for older verson of IE
					response=this.responseBody;
				}
			} catch (err) {
			}
			@*/

			var bf = new BinaryFile(response);
			if (callback_arg) {
				callback(bf, callback_arg);
			} else {
				callback(bf);
			}
		}
	};

	var request =  new XMLHttpRequest();
	request.onreadystatechange = callback_wrapper;
	request.open("GET", url, true);
	// Supported since Chrome 10, FF 6, IE 10, Opera 11.60 (source: MDN)
	request.responseType = "arraybuffer";
	try {
		request.overrideMimeType('text/plain; charset=x-user-defined');
	} catch (err) {
		// ignore any error, just to make both FF and IE work
	}
	request.send(null);
	return request;
}