123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251 |
- /**
- * Copyright (c) 2018 mol* contributors, licensed under MIT, See LICENSE file for more info.
- *
- * @author David Sehnal <david.sehnal@gmail.com>
- *
- * Adapted from LiteMol
- */
- import { Task, RuntimeContext } from 'mol-task';
- import { utf8Read } from 'mol-io/common/utf8';
- // export enum DataCompressionMethod {
- // None,
- // Gzip
- // }
- export interface AjaxGetParams<T extends 'string' | 'binary' | 'json' = 'string'> {
- url: string,
- type?: T,
- title?: string,
- // compression?: DataCompressionMethod
- body?: string
- }
- export function readStringFromFile(file: File) {
- return <Task<string>>readFromFileInternal(file, false);
- }
- export function readUint8ArrayFromFile(file: File) {
- return <Task<Uint8Array>>readFromFileInternal(file, true);
- }
- export function readFromFile(file: File, type: 'string' | 'binary') {
- return <Task<Uint8Array | string>>readFromFileInternal(file, type === 'binary');
- }
- // TODO: support for no-referrer
- export function ajaxGet(url: string): Task<string>
- export function ajaxGet(params: AjaxGetParams<'string'>): Task<string>
- export function ajaxGet(params: AjaxGetParams<'binary'>): Task<Uint8Array>
- export function ajaxGet<T = any>(params: AjaxGetParams<'json'>): Task<T>
- export function ajaxGet(params: AjaxGetParams<'string' | 'binary' | 'json'>): Task<string | Uint8Array | object>
- export function ajaxGet(params: AjaxGetParams<'string' | 'binary' | 'json'> | string) {
- if (typeof params === 'string') return ajaxGetInternal(params, params, 'string', false);
- return ajaxGetInternal(params.title, params.url, params.type || 'string', false /* params.compression === DataCompressionMethod.Gzip */, params.body);
- }
- export type AjaxTask = typeof ajaxGet
- function decompress(buffer: Uint8Array): Uint8Array {
- // TODO
- throw 'nyi';
- // const gzip = new LiteMolZlib.Gunzip(new Uint8Array(buffer));
- // return gzip.decompress();
- }
- async function processFile(ctx: RuntimeContext, asUint8Array: boolean, compressed: boolean, e: any) {
- const data = (e.target as FileReader).result;
- if (compressed) {
- await ctx.update('Decompressing...');
- const decompressed = decompress(new Uint8Array(data as ArrayBuffer));
- if (asUint8Array) {
- return decompressed;
- } else {
- return utf8Read(decompressed, 0, decompressed.length);
- }
- } else {
- return asUint8Array ? new Uint8Array(data as ArrayBuffer) : data as string;
- }
- }
- function readData(ctx: RuntimeContext, action: string, data: XMLHttpRequest | FileReader, asUint8Array: boolean): Promise<any> {
- return new Promise<any>((resolve, reject) => {
- data.onerror = (e: any) => {
- const error = (<FileReader>e.target).error;
- reject(error ? error : 'Failed.');
- };
- data.onabort = () => reject(Task.Aborted(''));
- data.onprogress = (e: ProgressEvent) => {
- if (e.lengthComputable) {
- ctx.update({ message: action, isIndeterminate: false, current: e.loaded, max: e.total });
- } else {
- ctx.update({ message: `${action} ${(e.loaded / 1024 / 1024).toFixed(2)} MB`, isIndeterminate: true });
- }
- }
- data.onload = (e: any) => resolve(e);
- });
- }
- function readFromFileInternal(file: File, asUint8Array: boolean): Task<string | Uint8Array> {
- let reader: FileReader | undefined = void 0;
- return Task.create('Read File', async ctx => {
- try {
- reader = new FileReader();
- const isCompressed = /\.gz$/i.test(file.name);
- if (isCompressed || asUint8Array) reader.readAsArrayBuffer(file);
- else reader.readAsBinaryString(file);
- ctx.update({ message: 'Opening file...', canAbort: true });
- const e = await readData(ctx, 'Reading...', reader, asUint8Array);
- const result = processFile(ctx, asUint8Array, isCompressed, e);
- return result;
- } finally {
- reader = void 0;
- }
- }, () => {
- if (reader) reader.abort();
- });
- }
- class RequestPool {
- private static pool: XMLHttpRequest[] = [];
- private static poolSize = 15;
- static get() {
- if (this.pool.length) {
- return this.pool.pop()!;
- }
- return new XMLHttpRequest();
- }
- static emptyFunc() { }
- static deposit(req: XMLHttpRequest) {
- if (this.pool.length < this.poolSize) {
- req.onabort = RequestPool.emptyFunc;
- req.onerror = RequestPool.emptyFunc;
- req.onload = RequestPool.emptyFunc;
- req.onprogress = RequestPool.emptyFunc;
- this.pool.push(req);
- }
- }
- }
- async function processAjax(ctx: RuntimeContext, asUint8Array: boolean, decompressGzip: boolean, e: any) {
- const req = (e.target as XMLHttpRequest);
- if (req.status >= 200 && req.status < 400) {
- if (asUint8Array) {
- const buff = new Uint8Array(e.target.response);
- RequestPool.deposit(e.target);
- if (decompressGzip) {
- return decompress(buff);
- } else {
- return buff;
- }
- }
- else {
- const text = e.target.responseText;
- RequestPool.deposit(e.target);
- return text;
- }
- } else {
- const status = req.statusText;
- RequestPool.deposit(e.target);
- throw status;
- }
- }
- function ajaxGetInternal(title: string | undefined, url: string, type: 'json' | 'string' | 'binary', decompressGzip: boolean, body?: string): Task<string | Uint8Array> {
- let xhttp: XMLHttpRequest | undefined = void 0;
- return Task.create(title ? title : 'Download', async ctx => {
- try {
- const asUint8Array = type === 'binary';
- if (!asUint8Array && decompressGzip) {
- throw 'Decompress is only available when downloading binary data.';
- }
- xhttp = RequestPool.get();
- xhttp.open(body ? 'post' : 'get', url, true);
- xhttp.responseType = asUint8Array ? 'arraybuffer' : 'text';
- xhttp.send(body);
- ctx.update({ message: 'Waiting for server...', canAbort: true });
- const e = await readData(ctx, 'Downloading...', xhttp, asUint8Array);
- const result = await processAjax(ctx, asUint8Array, decompressGzip, e)
- if (type === 'json') {
- ctx.update({ message: 'Parsing JSON...', canAbort: false });
- const data = JSON.parse(result);
- return data;
- }
- return result;
- } finally {
- xhttp = void 0;
- }
- }, () => {
- if (xhttp) xhttp.abort();
- });
- }
- export type AjaxGetManyEntry<T> = { kind: 'ok', id: string, result: T } | { kind: 'error', id: string, error: any }
- export async function ajaxGetMany(ctx: RuntimeContext, sources: { id: string, url: string, isBinary?: boolean, canFail?: boolean }[], maxConcurrency: number) {
- const len = sources.length;
- const slots: AjaxGetManyEntry<string | Uint8Array>[] = new Array(sources.length);
- await ctx.update({ message: 'Downloading...', current: 0, max: len });
- let promises: Promise<AjaxGetManyEntry<any> & { index: number }>[] = [], promiseKeys: number[] = [];
- let currentSrc = 0;
- for (let _i = Math.min(len, maxConcurrency); currentSrc < _i; currentSrc++) {
- const current = sources[currentSrc];
- promises.push(wrapPromise(currentSrc, current.id, ajaxGet({ url: current.url, type: current.isBinary ? 'binary' : 'string' }).runAsChild(ctx)));
- promiseKeys.push(currentSrc);
- }
- let done = 0;
- while (promises.length > 0) {
- const r = await Promise.race(promises);
- const src = sources[r.index];
- const idx = promiseKeys.indexOf(r.index);
- done++;
- if (r.kind === 'error' && !src.canFail) {
- // TODO: cancel other downloads
- throw new Error(`${src.url}: ${r.error}`);
- }
- if (ctx.shouldUpdate) {
- await ctx.update({ message: 'Downloading...', current: done, max: len });
- }
- slots[r.index] = r;
- promises = promises.filter(_filterRemoveIndex, idx);
- promiseKeys = promiseKeys.filter(_filterRemoveIndex, idx);
- if (currentSrc < len) {
- const current = sources[currentSrc];
- promises.push(wrapPromise(currentSrc, current.id, ajaxGet({ url: current.url, type: current.isBinary ? 'binary' : 'string' }).runAsChild(ctx)));
- promiseKeys.push(currentSrc);
- currentSrc++;
- }
- }
- return slots;
- }
- function _filterRemoveIndex(this: number, _: any, i: number) {
- return this !== i;
- }
- async function wrapPromise<T>(index: number, id: string, p: Promise<T>): Promise<AjaxGetManyEntry<T> & { index: number }> {
- try {
- const result = await p;
- return { kind: 'ok', result, index, id };
- } catch (error) {
- return { kind: 'error', error, index, id }
- }
- }
|