Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cache fetch promise and clear on error #381

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion src/geotiffimage.js
Original file line number Diff line number Diff line change
Expand Up @@ -382,12 +382,12 @@ class GeoTIFFImage {
offset = this.fileDirectory.StripOffsets[index];
byteCount = this.fileDirectory.StripByteCounts[index];
}
const slice = (await this.source.fetch([{ offset, length: byteCount }], signal))[0];

let request;
if (tiles === null || !tiles[index]) {
// resolve each request by potentially applying array normalization
request = (async () => {
const slice = (await this.source.fetch([{ offset, length: byteCount }], signal))[0];
let data = await poolOrDecoder.decode(this.fileDirectory, slice);
const sampleFormat = this.getSampleFormat();
const bitsPerSample = this.getBitsPerSample();
Expand All @@ -408,6 +408,11 @@ class GeoTIFFImage {
// set the cache
if (tiles !== null) {
tiles[index] = request;
request.catch(() => {
if (tiles[index] === request) {
tiles[index] = null;
}
});
}
} else {
// get from the cache
Expand Down