Spaces:
Running
Running
File size: 8,451 Bytes
8086c81 |
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 |
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
/******/
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/
/******/ // Check if module is in cache
/******/ if(installedModules[moduleId]) {
/******/ return installedModules[moduleId].exports;
/******/ }
/******/ // Create a new module (and put it into the cache)
/******/ var module = installedModules[moduleId] = {
/******/ i: moduleId,
/******/ l: false,
/******/ exports: {}
/******/ };
/******/
/******/ // Execute the module function
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
/******/
/******/ // Flag the module as loaded
/******/ module.l = true;
/******/
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
/******/
/******/
/******/ // expose the modules object (__webpack_modules__)
/******/ __webpack_require__.m = modules;
/******/
/******/ // expose the module cache
/******/ __webpack_require__.c = installedModules;
/******/
/******/ // define getter function for harmony exports
/******/ __webpack_require__.d = function(exports, name, getter) {
/******/ if(!__webpack_require__.o(exports, name)) {
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
/******/ }
/******/ };
/******/
/******/ // define __esModule on exports
/******/ __webpack_require__.r = function(exports) {
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
/******/ }
/******/ Object.defineProperty(exports, '__esModule', { value: true });
/******/ };
/******/
/******/ // create a fake namespace object
/******/ // mode & 1: value is a module id, require it
/******/ // mode & 2: merge all properties of value into the ns
/******/ // mode & 4: return value when already ns object
/******/ // mode & 8|1: behave like require
/******/ __webpack_require__.t = function(value, mode) {
/******/ if(mode & 1) value = __webpack_require__(value);
/******/ if(mode & 8) return value;
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
/******/ var ns = Object.create(null);
/******/ __webpack_require__.r(ns);
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
/******/ return ns;
/******/ };
/******/
/******/ // getDefaultExport function for compatibility with non-harmony modules
/******/ __webpack_require__.n = function(module) {
/******/ var getter = module && module.__esModule ?
/******/ function getDefault() { return module['default']; } :
/******/ function getModuleExports() { return module; };
/******/ __webpack_require__.d(getter, 'a', getter);
/******/ return getter;
/******/ };
/******/
/******/ // Object.prototype.hasOwnProperty.call
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
/******/
/******/ // __webpack_public_path__
/******/ __webpack_require__.p = "";
/******/
/******/
/******/ // Load entry module and return exports
/******/ return __webpack_require__(__webpack_require__.s = "./node_modules/babel-loader/lib/index.js?!./node_modules/scratch-storage/src/FetchWorkerTool.worker.js");
/******/ })
/************************************************************************/
/******/ ({
/***/ "./node_modules/babel-loader/lib/index.js?!./node_modules/scratch-storage/src/FetchWorkerTool.worker.js":
/*!************************************************************************************************************!*\
!*** ./node_modules/babel-loader/lib??ref--4!./node_modules/scratch-storage/src/FetchWorkerTool.worker.js ***!
\************************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
/* eslint-env worker */
const saferFetchAsArrayBuffer = __webpack_require__(/*! ./safer-fetch */ "./node_modules/scratch-storage/src/safer-fetch.js");
const complete = [];
let timeoutId = null;
const checkCompleted = () => {
if (timeoutId) return;
timeoutId = setTimeout(() => {
timeoutId = null;
if (complete.length) {
// Send our chunk of completed requests and instruct postMessage to
// transfer the buffers instead of copying them.
postMessage(complete.slice(),
// Instruct postMessage that these buffers in the sent message
// should use their Transferable trait. After the postMessage
// call the "buffers" will still be in complete if you looked,
// but they will all be length 0 as the data they reference has
// been sent to the window. This lets us send a lot of data
// without the normal postMessage behaviour of making a copy of
// all of the data for the window.
complete.map(response => response.buffer).filter(Boolean));
complete.length = 0;
}
});
};
/**
* Receive a job from the parent and fetch the requested data.
* @param {object} options.job A job id, url, and options descriptor to perform.
*/
const onMessage = _ref => {
let {
data: job
} = _ref;
saferFetchAsArrayBuffer(job.url, job.options).then(buffer => complete.push({
id: job.id,
buffer
})).catch(error => complete.push({
id: job.id,
error: error && error.message || "Failed request: ".concat(job.url)
})).then(checkCompleted);
};
if (self.fetch) {
postMessage({
support: {
fetch: true
}
});
self.addEventListener('message', onMessage);
} else {
postMessage({
support: {
fetch: false
}
});
self.addEventListener('message', _ref2 => {
let {
data: job
} = _ref2;
postMessage([{
id: job.id,
error: 'fetch is unavailable'
}]);
});
}
/***/ }),
/***/ "./node_modules/scratch-storage/src/safer-fetch.js":
/*!*********************************************************!*\
!*** ./node_modules/scratch-storage/src/safer-fetch.js ***!
\*********************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
/* eslint-env browser */
/* eslint-disable no-use-before-define */
// This throttles and retries fetch() to mitigate the effect of random network errors and
// random browser errors (especially in Chrome)
let currentFetches = 0;
const queue = [];
const startNextFetch = _ref => {
let [resolve, url, options] = _ref;
let firstError;
let failedAttempts = 0;
const attemptToFetch = () => fetch(url, options).then(result => {
// In a macOS WKWebView, requests from file: URLs to other file: URLs always have status: 0 and ok: false
// even though the requests were successful. If the requested file doesn't exist, fetch() rejects instead.
// We aren't aware of any other cases where fetch() can resolve with status 0, so this should be safe.
if (result.ok || result.status === 0) return result.arrayBuffer();
if (result.status === 404) return null;
return Promise.reject(result.status);
}).then(buffer => {
currentFetches--;
checkStartNextFetch();
return buffer;
}).catch(error => {
if (error === 403) {
// Retrying this request will not help, so return an error now.
throw error;
}
console.warn("Attempt to fetch ".concat(url, " failed"), error);
if (!firstError) {
firstError = error;
}
if (failedAttempts < 2) {
failedAttempts++;
return new Promise(cb => setTimeout(cb, (failedAttempts + Math.random() - 1) * 5000)).then(attemptToFetch);
}
currentFetches--;
checkStartNextFetch();
throw firstError;
});
return resolve(attemptToFetch());
};
const checkStartNextFetch = () => {
if (currentFetches < 100 && queue.length > 0) {
currentFetches++;
startNextFetch(queue.shift());
}
};
const saferFetchAsArrayBuffer = (url, options) => new Promise(resolve => {
queue.push([resolve, url, options]);
checkStartNextFetch();
});
module.exports = saferFetchAsArrayBuffer;
/***/ })
/******/ });
//# sourceMappingURL=41f50eb9f984c12c2544.worker.js.map |