123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283 |
- /**
- * @licstart The following is the entire license notice for the
- * JavaScript code in this page
- *
- * Copyright 2022 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.
- *
- * @licend The above is the entire license notice for the
- * JavaScript code in this page
- */
- "use strict";
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports.PDFDataTransportStream = void 0;
- var _util = require("../shared/util.js");
- var _display_utils = require("./display_utils.js");
- class PDFDataTransportStream {
- constructor(params, pdfDataRangeTransport) {
- (0, _util.assert)(pdfDataRangeTransport, 'PDFDataTransportStream - missing required "pdfDataRangeTransport" argument.');
- this._queuedChunks = [];
- this._progressiveDone = params.progressiveDone || false;
- this._contentDispositionFilename = params.contentDispositionFilename || null;
- const initialData = params.initialData;
- if (initialData?.length > 0) {
- const buffer = new Uint8Array(initialData).buffer;
- this._queuedChunks.push(buffer);
- }
- this._pdfDataRangeTransport = pdfDataRangeTransport;
- this._isStreamingSupported = !params.disableStream;
- this._isRangeSupported = !params.disableRange;
- this._contentLength = params.length;
- this._fullRequestReader = null;
- this._rangeReaders = [];
- this._pdfDataRangeTransport.addRangeListener((begin, chunk) => {
- this._onReceiveData({
- begin,
- chunk
- });
- });
- this._pdfDataRangeTransport.addProgressListener((loaded, total) => {
- this._onProgress({
- loaded,
- total
- });
- });
- this._pdfDataRangeTransport.addProgressiveReadListener(chunk => {
- this._onReceiveData({
- chunk
- });
- });
- this._pdfDataRangeTransport.addProgressiveDoneListener(() => {
- this._onProgressiveDone();
- });
- this._pdfDataRangeTransport.transportReady();
- }
- _onReceiveData(args) {
- const buffer = new Uint8Array(args.chunk).buffer;
- if (args.begin === undefined) {
- if (this._fullRequestReader) {
- this._fullRequestReader._enqueue(buffer);
- } else {
- this._queuedChunks.push(buffer);
- }
- } else {
- const found = this._rangeReaders.some(function (rangeReader) {
- if (rangeReader._begin !== args.begin) {
- return false;
- }
- rangeReader._enqueue(buffer);
- return true;
- });
- (0, _util.assert)(found, "_onReceiveData - no `PDFDataTransportStreamRangeReader` instance found.");
- }
- }
- get _progressiveDataLength() {
- return this._fullRequestReader?._loaded ?? 0;
- }
- _onProgress(evt) {
- if (evt.total === undefined) {
- this._rangeReaders[0]?.onProgress?.({
- loaded: evt.loaded
- });
- } else {
- this._fullRequestReader?.onProgress?.({
- loaded: evt.loaded,
- total: evt.total
- });
- }
- }
- _onProgressiveDone() {
- this._fullRequestReader?.progressiveDone();
- this._progressiveDone = true;
- }
- _removeRangeReader(reader) {
- const i = this._rangeReaders.indexOf(reader);
- if (i >= 0) {
- this._rangeReaders.splice(i, 1);
- }
- }
- getFullReader() {
- (0, _util.assert)(!this._fullRequestReader, "PDFDataTransportStream.getFullReader can only be called once.");
- const queuedChunks = this._queuedChunks;
- this._queuedChunks = null;
- return new PDFDataTransportStreamReader(this, queuedChunks, this._progressiveDone, this._contentDispositionFilename);
- }
- getRangeReader(begin, end) {
- if (end <= this._progressiveDataLength) {
- return null;
- }
- const reader = new PDFDataTransportStreamRangeReader(this, begin, end);
- this._pdfDataRangeTransport.requestDataRange(begin, end);
- this._rangeReaders.push(reader);
- return reader;
- }
- cancelAllRequests(reason) {
- this._fullRequestReader?.cancel(reason);
- for (const reader of this._rangeReaders.slice(0)) {
- reader.cancel(reason);
- }
- this._pdfDataRangeTransport.abort();
- }
- }
- exports.PDFDataTransportStream = PDFDataTransportStream;
- class PDFDataTransportStreamReader {
- constructor(stream, queuedChunks, progressiveDone = false, contentDispositionFilename = null) {
- this._stream = stream;
- this._done = progressiveDone || false;
- this._filename = (0, _display_utils.isPdfFile)(contentDispositionFilename) ? contentDispositionFilename : null;
- this._queuedChunks = queuedChunks || [];
- this._loaded = 0;
- for (const chunk of this._queuedChunks) {
- this._loaded += chunk.byteLength;
- }
- this._requests = [];
- this._headersReady = Promise.resolve();
- stream._fullRequestReader = this;
- this.onProgress = null;
- }
- _enqueue(chunk) {
- if (this._done) {
- return;
- }
- if (this._requests.length > 0) {
- const requestCapability = this._requests.shift();
- requestCapability.resolve({
- value: chunk,
- done: false
- });
- } else {
- this._queuedChunks.push(chunk);
- }
- this._loaded += chunk.byteLength;
- }
- get headersReady() {
- return this._headersReady;
- }
- get filename() {
- return this._filename;
- }
- get isRangeSupported() {
- return this._stream._isRangeSupported;
- }
- get isStreamingSupported() {
- return this._stream._isStreamingSupported;
- }
- get contentLength() {
- return this._stream._contentLength;
- }
- async read() {
- if (this._queuedChunks.length > 0) {
- const chunk = this._queuedChunks.shift();
- return {
- value: chunk,
- done: false
- };
- }
- if (this._done) {
- return {
- value: undefined,
- done: true
- };
- }
- const requestCapability = (0, _util.createPromiseCapability)();
- this._requests.push(requestCapability);
- return requestCapability.promise;
- }
- cancel(reason) {
- this._done = true;
- for (const requestCapability of this._requests) {
- requestCapability.resolve({
- value: undefined,
- done: true
- });
- }
- this._requests.length = 0;
- }
- progressiveDone() {
- if (this._done) {
- return;
- }
- this._done = true;
- }
- }
- class PDFDataTransportStreamRangeReader {
- constructor(stream, begin, end) {
- this._stream = stream;
- this._begin = begin;
- this._end = end;
- this._queuedChunk = null;
- this._requests = [];
- this._done = false;
- this.onProgress = null;
- }
- _enqueue(chunk) {
- if (this._done) {
- return;
- }
- if (this._requests.length === 0) {
- this._queuedChunk = chunk;
- } else {
- const requestsCapability = this._requests.shift();
- requestsCapability.resolve({
- value: chunk,
- done: false
- });
- for (const requestCapability of this._requests) {
- requestCapability.resolve({
- value: undefined,
- done: true
- });
- }
- this._requests.length = 0;
- }
- this._done = true;
- this._stream._removeRangeReader(this);
- }
- get isStreamingSupported() {
- return false;
- }
- async read() {
- if (this._queuedChunk) {
- const chunk = this._queuedChunk;
- this._queuedChunk = null;
- return {
- value: chunk,
- done: false
- };
- }
- if (this._done) {
- return {
- value: undefined,
- done: true
- };
- }
- const requestCapability = (0, _util.createPromiseCapability)();
- this._requests.push(requestCapability);
- return requestCapability.promise;
- }
- cancel(reason) {
- this._done = true;
- for (const requestCapability of this._requests) {
- requestCapability.resolve({
- value: undefined,
- done: true
- });
- }
- this._requests.length = 0;
- this._stream._removeRangeReader(this);
- }
- }
|