You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
302 lines
8.8 KiB
302 lines
8.8 KiB
import LRUCache from 'lru-cache';
|
|
import { BaseSource } from './basesource.js';
|
|
import { AbortError, AggregateError, wait, zip } from '../utils.js';
|
|
|
|
class Block {
|
|
/**
|
|
*
|
|
* @param {number} offset
|
|
* @param {number} length
|
|
* @param {ArrayBuffer} [data]
|
|
*/
|
|
constructor(offset, length, data = null) {
|
|
this.offset = offset;
|
|
this.length = length;
|
|
this.data = data;
|
|
}
|
|
|
|
/**
|
|
* @returns {number} the top byte border
|
|
*/
|
|
get top() {
|
|
return this.offset + this.length;
|
|
}
|
|
}
|
|
|
|
class BlockGroup {
|
|
/**
|
|
*
|
|
* @param {number} offset
|
|
* @param {number} length
|
|
* @param {number[]} blockIds
|
|
*/
|
|
constructor(offset, length, blockIds) {
|
|
this.offset = offset;
|
|
this.length = length;
|
|
this.blockIds = blockIds;
|
|
}
|
|
}
|
|
|
|
export class BlockedSource extends BaseSource {
|
|
/**
|
|
*
|
|
* @param {Source} source The underlying source that shall be blocked and cached
|
|
* @param {object} options
|
|
*/
|
|
constructor(source, { blockSize = 65536, cacheSize = 100 } = {}) {
|
|
super();
|
|
this.source = source;
|
|
this.blockSize = blockSize;
|
|
|
|
this.blockCache = new LRUCache({ max: cacheSize });
|
|
|
|
// mapping blockId -> Block instance
|
|
this.blockRequests = new Map();
|
|
|
|
// set of blockIds missing for the current requests
|
|
this.blockIdsToFetch = new Set();
|
|
}
|
|
|
|
get fileSize() {
|
|
return this.source.fileSize;
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param {basesource/Slice[]} slices
|
|
*/
|
|
async fetch(slices, signal) {
|
|
const cachedBlocks = new Map();
|
|
const blockRequests = new Map();
|
|
const missingBlockIds = new Set();
|
|
|
|
for (const { offset, length } of slices) {
|
|
let top = offset + length;
|
|
|
|
const { fileSize } = this;
|
|
if (fileSize !== null) {
|
|
top = Math.min(top, fileSize);
|
|
}
|
|
|
|
const firstBlockOffset = Math.floor(offset / this.blockSize) * this.blockSize;
|
|
|
|
// chunk the current slice into blocks
|
|
for (let current = firstBlockOffset; current < top; current += this.blockSize) {
|
|
// check if the block is cached, being requested or still missing
|
|
const blockId = Math.floor(current / this.blockSize);
|
|
|
|
if (this.blockCache.has(blockId)) {
|
|
cachedBlocks.set(blockId, this.blockCache.get(blockId));
|
|
} else if (this.blockRequests.has(blockId)) {
|
|
blockRequests.set(blockId, this.blockRequests.get(blockId));
|
|
} else if (this.blockIdsToFetch.has(blockId)) {
|
|
missingBlockIds.add(blockId);
|
|
} else {
|
|
this.blockIdsToFetch.add(blockId);
|
|
missingBlockIds.add(blockId);
|
|
}
|
|
}
|
|
}
|
|
|
|
// allow additional block requests to accumulate
|
|
await wait();
|
|
this.fetchBlocks(signal);
|
|
|
|
for (const blockId of missingBlockIds) {
|
|
const block = this.blockRequests.get(blockId);
|
|
const cachedBlock = this.blockCache.get(blockId);
|
|
|
|
if (block) {
|
|
blockRequests.set(blockId, block);
|
|
} else if (cachedBlock) {
|
|
cachedBlocks.set(blockId, cachedBlock);
|
|
} else {
|
|
throw new Error(`Block ${blockId} is not in the block requests`);
|
|
}
|
|
}
|
|
|
|
// actually await all pending requests
|
|
let results = await Promise.allSettled(Array.from(blockRequests.values()));
|
|
|
|
// perform retries if a block was interrupted by a previous signal
|
|
if (results.some((result) => result.status === 'rejected')) {
|
|
const retriedBlockRequests = new Set();
|
|
for (const [blockId, result] of zip(blockRequests.keys(), results)) {
|
|
const { rejected, reason } = result;
|
|
if (rejected) {
|
|
// push some blocks back to the to-fetch list if they were
|
|
// aborted, but only when a different signal was used
|
|
if (reason.name === 'AbortError' && reason.signal !== signal) {
|
|
this.blockIdsToFetch.add(blockId);
|
|
retriedBlockRequests.add(blockId);
|
|
}
|
|
}
|
|
}
|
|
|
|
// start the retry of some blocks if required
|
|
if (this.blockIdsToFetch.length > 0) {
|
|
this.fetchBlocks(signal);
|
|
for (const blockId of retriedBlockRequests) {
|
|
const block = this.blockRequests.get(blockId);
|
|
if (!block) {
|
|
throw new Error(`Block ${blockId} is not in the block requests`);
|
|
}
|
|
blockRequests.set(blockId, block);
|
|
}
|
|
results = await Promise.allSettled(Array.from(blockRequests.values()));
|
|
}
|
|
}
|
|
|
|
// throw an error (either abort error or AggregateError if no abort was done)
|
|
if (results.some((result) => result.status === 'rejected')) {
|
|
if (signal && signal.aborted) {
|
|
throw new AbortError('Request was aborted');
|
|
}
|
|
throw new AggregateError(
|
|
results.filter((result) => result.status === 'rejected').map((result) => result.reason),
|
|
'Request failed',
|
|
);
|
|
}
|
|
|
|
// extract the actual block responses
|
|
const values = results.map((result) => result.value);
|
|
|
|
// create a final Map, with all required blocks for this request to satisfy
|
|
const requiredBlocks = new Map(zip(Array.from(blockRequests.keys()), values));
|
|
for (const [blockId, block] of cachedBlocks) {
|
|
requiredBlocks.set(blockId, block);
|
|
}
|
|
|
|
// TODO: satisfy each slice
|
|
return this.readSliceData(slices, requiredBlocks);
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param {AbortSignal} signal
|
|
*/
|
|
fetchBlocks(signal) {
|
|
// check if we still need to
|
|
if (this.blockIdsToFetch.size > 0) {
|
|
const groups = this.groupBlocks(this.blockIdsToFetch);
|
|
|
|
// start requesting slices of data
|
|
const groupRequests = this.source.fetch(groups, signal);
|
|
|
|
for (let groupIndex = 0; groupIndex < groups.length; ++groupIndex) {
|
|
const group = groups[groupIndex];
|
|
|
|
for (const blockId of group.blockIds) {
|
|
// make an async IIFE for each block
|
|
const blockRequest = (async () => {
|
|
try {
|
|
const response = (await groupRequests)[groupIndex];
|
|
const blockOffset = blockId * this.blockSize;
|
|
const o = blockOffset - response.offset;
|
|
const t = Math.min(o + this.blockSize, response.data.byteLength);
|
|
const data = response.data.slice(o, t);
|
|
const block = new Block(
|
|
blockOffset,
|
|
data.byteLength,
|
|
data,
|
|
);
|
|
this.blockCache.set(blockId, block);
|
|
return block;
|
|
} catch (err) {
|
|
if (err.name === 'AbortError') {
|
|
// store the signal here, we need it to determine later if an
|
|
// error was caused by this signal
|
|
err.signal = signal;
|
|
}
|
|
throw err;
|
|
} finally {
|
|
this.blockRequests.delete(blockId);
|
|
}
|
|
})();
|
|
this.blockRequests.set(blockId, blockRequest);
|
|
}
|
|
}
|
|
this.blockIdsToFetch.clear();
|
|
}
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param {Set} blockIds
|
|
* @returns {BlockGroup[]}
|
|
*/
|
|
groupBlocks(blockIds) {
|
|
const sortedBlockIds = Array.from(blockIds).sort((a, b) => a - b);
|
|
if (sortedBlockIds.length === 0) {
|
|
return [];
|
|
}
|
|
let current = [];
|
|
let lastBlockId = null;
|
|
const groups = [];
|
|
|
|
for (const blockId of sortedBlockIds) {
|
|
if (lastBlockId === null || lastBlockId + 1 === blockId) {
|
|
current.push(blockId);
|
|
lastBlockId = blockId;
|
|
} else {
|
|
groups.push(new BlockGroup(
|
|
current[0] * this.blockSize,
|
|
current.length * this.blockSize,
|
|
current,
|
|
));
|
|
current = [blockId];
|
|
lastBlockId = blockId;
|
|
}
|
|
}
|
|
|
|
groups.push(new BlockGroup(
|
|
current[0] * this.blockSize,
|
|
current.length * this.blockSize,
|
|
current,
|
|
));
|
|
|
|
return groups;
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param {Slice[]} slices
|
|
* @param {Map} blocks
|
|
*/
|
|
readSliceData(slices, blocks) {
|
|
return slices.map((slice) => {
|
|
const top = slice.offset + slice.length;
|
|
const blockIdLow = Math.floor(slice.offset / this.blockSize);
|
|
const blockIdHigh = Math.floor((slice.offset + slice.length) / this.blockSize);
|
|
const sliceData = new ArrayBuffer(slice.length);
|
|
const sliceView = new Uint8Array(sliceData);
|
|
|
|
for (let blockId = blockIdLow; blockId <= blockIdHigh; ++blockId) {
|
|
const block = blocks.get(blockId);
|
|
const delta = block.offset - slice.offset;
|
|
const topDelta = block.top - top;
|
|
let blockInnerOffset = 0;
|
|
let rangeInnerOffset = 0;
|
|
let usedBlockLength;
|
|
|
|
if (delta < 0) {
|
|
blockInnerOffset = -delta;
|
|
} else if (delta > 0) {
|
|
rangeInnerOffset = delta;
|
|
}
|
|
|
|
if (topDelta < 0) {
|
|
usedBlockLength = block.length - blockInnerOffset;
|
|
} else {
|
|
usedBlockLength = top - block.offset - blockInnerOffset;
|
|
}
|
|
|
|
const blockView = new Uint8Array(block.data, blockInnerOffset, usedBlockLength);
|
|
sliceView.set(blockView, rangeInnerOffset);
|
|
}
|
|
|
|
return sliceData;
|
|
});
|
|
}
|
|
}
|