099ed08852
For proof-of-concept, this patch converts a couple of `Promise` returning methods to use `async` instead. Please note that the `generic` build, based on this patch, has been successfully testing in IE11 (i.e. the viewer loads and nothing is obviously broken). Being able to use modern JavaScript features like `async`/`await` is a huge plus, but there's one (obvious) side-effect: The size of the built files will increase slightly (unless `SKIP_BABEL == true`). That's unavoidable, but seems like a small price to pay in the grand scheme of things. Finally, note that the `chromium` build target was changed to no longer skip Babel translation, since the Chrome extension still supports version `49` of the browser (where native `async` support isn't available).
251 lines
6.9 KiB
JavaScript
251 lines
6.9 KiB
JavaScript
/* Copyright 2012 Mozilla Foundation
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
import {
|
|
AbortException, assert, createPromiseCapability
|
|
} from '../shared/util';
|
|
import {
|
|
createResponseStatusError, extractFilenameFromHeader,
|
|
validateRangeRequestCapabilities, validateResponseStatus
|
|
} from './network_utils';
|
|
|
|
function createFetchOptions(headers, withCredentials, abortController) {
|
|
return {
|
|
method: 'GET',
|
|
headers,
|
|
signal: abortController && abortController.signal,
|
|
mode: 'cors',
|
|
credentials: withCredentials ? 'include' : 'same-origin',
|
|
redirect: 'follow',
|
|
};
|
|
}
|
|
|
|
class PDFFetchStream {
|
|
constructor(source) {
|
|
this.source = source;
|
|
this.isHttp = /^https?:/i.test(source.url);
|
|
this.httpHeaders = (this.isHttp && source.httpHeaders) || {};
|
|
|
|
this._fullRequestReader = null;
|
|
this._rangeRequestReaders = [];
|
|
}
|
|
|
|
getFullReader() {
|
|
assert(!this._fullRequestReader);
|
|
this._fullRequestReader = new PDFFetchStreamReader(this);
|
|
return this._fullRequestReader;
|
|
}
|
|
|
|
getRangeReader(begin, end) {
|
|
let reader = new PDFFetchStreamRangeReader(this, begin, end);
|
|
this._rangeRequestReaders.push(reader);
|
|
return reader;
|
|
}
|
|
|
|
cancelAllRequests(reason) {
|
|
if (this._fullRequestReader) {
|
|
this._fullRequestReader.cancel(reason);
|
|
}
|
|
let readers = this._rangeRequestReaders.slice(0);
|
|
readers.forEach(function(reader) {
|
|
reader.cancel(reason);
|
|
});
|
|
}
|
|
}
|
|
|
|
class PDFFetchStreamReader {
|
|
constructor(stream) {
|
|
this._stream = stream;
|
|
this._reader = null;
|
|
this._loaded = 0;
|
|
this._filename = null;
|
|
let source = stream.source;
|
|
this._withCredentials = source.withCredentials;
|
|
this._contentLength = source.length;
|
|
this._headersCapability = createPromiseCapability();
|
|
this._disableRange = source.disableRange || false;
|
|
this._rangeChunkSize = source.rangeChunkSize;
|
|
if (!this._rangeChunkSize && !this._disableRange) {
|
|
this._disableRange = true;
|
|
}
|
|
|
|
if (typeof AbortController !== 'undefined') {
|
|
this._abortController = new AbortController();
|
|
}
|
|
this._isStreamingSupported = !source.disableStream;
|
|
this._isRangeSupported = !source.disableRange;
|
|
|
|
this._headers = new Headers();
|
|
for (let property in this._stream.httpHeaders) {
|
|
let value = this._stream.httpHeaders[property];
|
|
if (typeof value === 'undefined') {
|
|
continue;
|
|
}
|
|
this._headers.append(property, value);
|
|
}
|
|
|
|
let url = source.url;
|
|
fetch(url, createFetchOptions(this._headers, this._withCredentials,
|
|
this._abortController)).then((response) => {
|
|
if (!validateResponseStatus(response.status)) {
|
|
throw createResponseStatusError(response.status, url);
|
|
}
|
|
this._reader = response.body.getReader();
|
|
this._headersCapability.resolve();
|
|
|
|
const getResponseHeader = (name) => {
|
|
return response.headers.get(name);
|
|
};
|
|
let { allowRangeRequests, suggestedLength, } =
|
|
validateRangeRequestCapabilities({
|
|
getResponseHeader,
|
|
isHttp: this._stream.isHttp,
|
|
rangeChunkSize: this._rangeChunkSize,
|
|
disableRange: this._disableRange,
|
|
});
|
|
|
|
this._isRangeSupported = allowRangeRequests;
|
|
// Setting right content length.
|
|
this._contentLength = suggestedLength || this._contentLength;
|
|
|
|
this._filename = extractFilenameFromHeader(getResponseHeader);
|
|
|
|
// We need to stop reading when range is supported and streaming is
|
|
// disabled.
|
|
if (!this._isStreamingSupported && this._isRangeSupported) {
|
|
this.cancel(new AbortException('streaming is disabled'));
|
|
}
|
|
}).catch(this._headersCapability.reject);
|
|
|
|
this.onProgress = null;
|
|
}
|
|
|
|
get headersReady() {
|
|
return this._headersCapability.promise;
|
|
}
|
|
|
|
get filename() {
|
|
return this._filename;
|
|
}
|
|
|
|
get contentLength() {
|
|
return this._contentLength;
|
|
}
|
|
|
|
get isRangeSupported() {
|
|
return this._isRangeSupported;
|
|
}
|
|
|
|
get isStreamingSupported() {
|
|
return this._isStreamingSupported;
|
|
}
|
|
|
|
async read() {
|
|
await this._headersCapability.promise;
|
|
const { value, done, } = await this._reader.read();
|
|
if (done) {
|
|
return { value, done, };
|
|
}
|
|
this._loaded += value.byteLength;
|
|
if (this.onProgress) {
|
|
this.onProgress({
|
|
loaded: this._loaded,
|
|
total: this._contentLength,
|
|
});
|
|
}
|
|
let buffer = new Uint8Array(value).buffer;
|
|
return { value: buffer, done: false, };
|
|
}
|
|
|
|
cancel(reason) {
|
|
if (this._reader) {
|
|
this._reader.cancel(reason);
|
|
}
|
|
if (this._abortController) {
|
|
this._abortController.abort();
|
|
}
|
|
}
|
|
}
|
|
|
|
class PDFFetchStreamRangeReader {
|
|
constructor(stream, begin, end) {
|
|
this._stream = stream;
|
|
this._reader = null;
|
|
this._loaded = 0;
|
|
let source = stream.source;
|
|
this._withCredentials = source.withCredentials;
|
|
this._readCapability = createPromiseCapability();
|
|
this._isStreamingSupported = !source.disableStream;
|
|
|
|
if (typeof AbortController !== 'undefined') {
|
|
this._abortController = new AbortController();
|
|
}
|
|
|
|
this._headers = new Headers();
|
|
for (let property in this._stream.httpHeaders) {
|
|
let value = this._stream.httpHeaders[property];
|
|
if (typeof value === 'undefined') {
|
|
continue;
|
|
}
|
|
this._headers.append(property, value);
|
|
}
|
|
|
|
let rangeStr = begin + '-' + (end - 1);
|
|
this._headers.append('Range', 'bytes=' + rangeStr);
|
|
let url = source.url;
|
|
fetch(url, createFetchOptions(this._headers, this._withCredentials,
|
|
this._abortController)).then((response) => {
|
|
if (!validateResponseStatus(response.status)) {
|
|
throw createResponseStatusError(response.status, url);
|
|
}
|
|
this._readCapability.resolve();
|
|
this._reader = response.body.getReader();
|
|
});
|
|
|
|
this.onProgress = null;
|
|
}
|
|
|
|
get isStreamingSupported() {
|
|
return this._isStreamingSupported;
|
|
}
|
|
|
|
async read() {
|
|
await this._readCapability.promise;
|
|
const { value, done, } = await this._reader.read();
|
|
if (done) {
|
|
return { value, done, };
|
|
}
|
|
this._loaded += value.byteLength;
|
|
if (this.onProgress) {
|
|
this.onProgress({ loaded: this._loaded, });
|
|
}
|
|
let buffer = new Uint8Array(value).buffer;
|
|
return { value: buffer, done: false, };
|
|
}
|
|
|
|
cancel(reason) {
|
|
if (this._reader) {
|
|
this._reader.cancel(reason);
|
|
}
|
|
if (this._abortController) {
|
|
this._abortController.abort();
|
|
}
|
|
}
|
|
}
|
|
|
|
export {
|
|
PDFFetchStream,
|
|
};
|