1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- /**
- * Web Worker to load large amounts of data without locking up the UI.
- *
- * @author n1474335 [n1474335@gmail.com]
- * @copyright Crown Copyright 2017
- * @license Apache-2.0
- */
- /**
- * Respond to message from parent thread.
- */
- self.addEventListener("message", function(e) {
- const r = e.data;
- if (r.hasOwnProperty("file")) {
- self.loadFile(r.file);
- }
- });
- /**
- * Loads a file object into an ArrayBuffer, then transfers it back to the parent thread.
- *
- * @param {File} file
- */
- self.loadFile = function(file) {
- const reader = new FileReader();
- let data = new Uint8Array(file.size);
- let offset = 0;
- const CHUNK_SIZE = 10485760; // 10MiB
- const seek = function() {
- if (offset >= file.size) {
- self.postMessage({"progress": 100});
- self.postMessage({"fileBuffer": data.buffer}, [data.buffer]);
- return;
- }
- self.postMessage({"progress": Math.round(offset / file.size * 100)});
- const slice = file.slice(offset, offset + CHUNK_SIZE);
- reader.readAsArrayBuffer(slice);
- };
- reader.onload = function(e) {
- data.set(new Uint8Array(reader.result), offset);
- offset += CHUNK_SIZE;
- seek();
- };
- seek();
- };
|