Press n or j to go to the next uncovered block, b, p or k for the previous block.
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 | 1x 1x 43x 43x 43x 43x 43x 10x 10x 10x 10x 1x 9x 10x 10x 27x 27x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 10x 10x 28x 28x 28x 84x 84x 28x 28x 28x 28x 28x 28x 5x 5x 5x 5x 15x 15x 5x 5x 5x 5x 5x 5x 1x 49x | import { decompressSync, strFromU8 } from 'fflate'; import macro from 'vtk.js/Sources/macros'; import Endian from 'vtk.js/Sources/Common/Core/Endian'; import { DataTypeByteSize } from 'vtk.js/Sources/Common/Core/DataArray/Constants'; import { registerType } from 'vtk.js/Sources/IO/Core/DataAccessHelper'; const { vtkErrorMacro, vtkDebugMacro } = macro; /* eslint-disable prefer-promise-reject-errors */ let requestCount = 0; function openAsyncXHR(method, url, options = {}) { const xhr = new XMLHttpRequest(); xhr.open(method, url, true); Iif (options.headers) { Object.entries(options.headers).forEach(([key, value]) => xhr.setRequestHeader(key, value) ); } Iif (options.progressCallback) { xhr.addEventListener('progress', options.progressCallback); } return xhr; } function fetchBinary(url, options = {}) { if (options && options.compression && options.compression !== 'gz') { vtkErrorMacro('Supported algorithms are: [gz]'); vtkErrorMacro(`Unkown compression algorithm: ${options.compression}`); } return new Promise((resolve, reject) => { const xhr = openAsyncXHR('GET', url, options); xhr.onreadystatechange = (e) => { if (xhr.readyState === 4) { if (xhr.status === 200 || xhr.status === 0) { if (options.compression) { resolve(decompressSync(new Uint8Array(xhr.response)).buffer); } else { resolve(xhr.response); } } else { reject({ xhr, e }); } } }; // Make request xhr.responseType = 'arraybuffer'; xhr.send(); }); } function fetchArray(instance, baseURL, array, options = {}) { if (array.ref && !array.ref.pending) { return new Promise((resolve, reject) => { let url = null; if (array.ref.url) { url = array.ref.url; } else { url = [ baseURL, array.ref.basepath, options.compression ? `${array.ref.id}.gz` : array.ref.id, ].join('/'); } const xhr = openAsyncXHR('GET', url, options); xhr.onreadystatechange = (e) => { Iif (xhr.readyState === 1) { array.ref.pending = true; if (++requestCount === 1 && instance?.invokeBusy) { instance.invokeBusy(true); } } if (xhr.readyState === 4) { array.ref.pending = false; if (xhr.status === 200 || xhr.status === 0) { array.buffer = xhr.response; if (options.compression) { Iif (array.dataType === 'string' || array.dataType === 'JSON') { array.buffer = strFromU8( decompressSync(new Uint8Array(array.buffer)) ); } else { array.buffer = decompressSync( new Uint8Array(array.buffer) ).buffer; } } Iif (array.ref.encode === 'JSON') { array.values = JSON.parse(array.buffer); } else { Iif (Endian.ENDIANNESS !== array.ref.encode && Endian.ENDIANNESS) { // Need to swap bytes vtkDebugMacro(`Swap bytes of ${array.name}`); Endian.swapBytes( array.buffer, DataTypeByteSize[array.dataType] ); } array.values = macro.newTypedArray(array.dataType, array.buffer); } Iif (array.values.length !== array.size) { vtkErrorMacro( `Error in FetchArray: ${array.name}, does not have the proper array size. Got ${array.values.length}, instead of ${array.size}` ); } // Done with the ref and work delete array.ref; Iif (--requestCount === 0 && instance?.invokeBusy) { instance.invokeBusy(false); } if (instance?.modified) { instance.modified(); } resolve(array); } else E{ reject({ xhr, e }); } } }; // Make request xhr.responseType = options.compression || array.dataType !== 'string' ? 'arraybuffer' : 'text'; xhr.send(); }); } return Promise.resolve(array); } // ---------------------------------------------------------------------------- function fetchJSON(instance, url, options = {}) { return new Promise((resolve, reject) => { const xhr = openAsyncXHR('GET', url, options); xhr.onreadystatechange = (e) => { Iif (xhr.readyState === 1) { if (++requestCount === 1 && instance?.invokeBusy) { instance.invokeBusy(true); } } if (xhr.readyState === 4) { Iif (--requestCount === 0 && instance?.invokeBusy) { instance.invokeBusy(false); } if (xhr.status === 200 || xhr.status === 0) { Iif (options.compression) { resolve( JSON.parse( strFromU8(decompressSync(new Uint8Array(xhr.response))) ) ); } else { resolve(JSON.parse(xhr.responseText)); } } else E{ reject({ xhr, e }); } } }; // Make request xhr.responseType = options.compression ? 'arraybuffer' : 'text'; xhr.send(); }); } // ---------------------------------------------------------------------------- function fetchText(instance, url, options = {}) { Iif (options && options.compression && options.compression !== 'gz') { vtkErrorMacro('Supported algorithms are: [gz]'); vtkErrorMacro(`Unkown compression algorithm: ${options.compression}`); } return new Promise((resolve, reject) => { const xhr = openAsyncXHR('GET', url, options); xhr.onreadystatechange = (e) => { Iif (xhr.readyState === 1) { if (++requestCount === 1 && instance?.invokeBusy) { instance.invokeBusy(true); } } if (xhr.readyState === 4) { Iif (--requestCount === 0 && instance?.invokeBusy) { instance.invokeBusy(false); } if (xhr.status === 200 || xhr.status === 0) { Iif (options.compression) { resolve(strFromU8(decompressSync(new Uint8Array(xhr.response)))); } else { resolve(xhr.responseText); } } else E{ reject({ xhr, e }); } } }; // Make request xhr.responseType = options.compression ? 'arraybuffer' : 'text'; xhr.send(); }); } // ---------------------------------------------------------------------------- function fetchImage(instance, url, options = {}) { return new Promise((resolve, reject) => { const img = new Image(); if (options.crossOrigin) { img.crossOrigin = options.crossOrigin; } img.onload = () => resolve(img); img.onerror = reject; img.src = url; }); } /* eslint-enable prefer-promise-reject-errors */ // ---------------------------------------------------------------------------- const HttpDataAccessHelper = { fetchArray, fetchJSON, fetchText, fetchBinary, // Only for HTTP fetchImage, }; registerType('http', (options) => HttpDataAccessHelper); export default HttpDataAccessHelper; |