@warp-drive-mirror/experiments 0.2.6-beta.0 → 0.2.6-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +14 -17
- package/dist/data-worker.js +1 -0
- package/dist/unpkg/dev/data-worker.js +380 -0
- package/dist/unpkg/dev/document-storage.js +349 -0
- package/dist/unpkg/dev/image-fetch.js +74 -0
- package/dist/unpkg/dev/image-worker.js +99 -0
- package/dist/unpkg/dev/worker-fetch.js +158 -0
- package/dist/unpkg/dev-deprecated/data-worker.js +380 -0
- package/dist/unpkg/dev-deprecated/document-storage.js +349 -0
- package/dist/unpkg/dev-deprecated/image-fetch.js +74 -0
- package/dist/unpkg/dev-deprecated/image-worker.js +99 -0
- package/dist/unpkg/dev-deprecated/worker-fetch.js +158 -0
- package/dist/unpkg/prod/data-worker.js +366 -0
- package/dist/unpkg/prod/document-storage.js +339 -0
- package/dist/unpkg/prod/image-fetch.js +74 -0
- package/dist/unpkg/prod/image-worker.js +99 -0
- package/dist/unpkg/prod/worker-fetch.js +158 -0
- package/dist/unpkg/prod-deprecated/data-worker.js +366 -0
- package/dist/unpkg/prod-deprecated/document-storage.js +339 -0
- package/dist/unpkg/prod-deprecated/image-fetch.js +74 -0
- package/dist/unpkg/prod-deprecated/image-worker.js +99 -0
- package/dist/unpkg/prod-deprecated/worker-fetch.js +158 -0
- package/logos/README.md +2 -2
- package/logos/logo-yellow-slab.svg +1 -0
- package/logos/word-mark-black.svg +1 -0
- package/logos/word-mark-white.svg +1 -0
- package/package.json +28 -8
- package/logos/NCC-1701-a-blue.svg +0 -4
- package/logos/NCC-1701-a-gold.svg +0 -4
- package/logos/NCC-1701-a-gold_100.svg +0 -1
- package/logos/NCC-1701-a-gold_base-64.txt +0 -1
- package/logos/NCC-1701-a.svg +0 -4
- package/logos/docs-badge.svg +0 -2
- package/logos/ember-data-logo-dark.svg +0 -12
- package/logos/ember-data-logo-light.svg +0 -12
- package/logos/social1.png +0 -0
- package/logos/social2.png +0 -0
- package/logos/warp-drive-logo-dark.svg +0 -4
- package/logos/warp-drive-logo-gold.svg +0 -4
|
@@ -0,0 +1,349 @@
|
|
|
1
|
+
const WARP_DRIVE_STORAGE_FILE_NAME = 'warp-drive_document-storage';
|
|
2
|
+
const WARP_DRIVE_STORAGE_VERSION = 1;
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* DocumentStorage is specifically designed around WarpDrive Cache and Request concepts.
|
|
6
|
+
*
|
|
7
|
+
* CacheFileDocument is a StructuredDocument (request response) whose `content` is
|
|
8
|
+
* the ResourceDocument returned by inserting the request into a Store's Cache.
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
/**
|
|
12
|
+
* A CacheDocument is a reconstructed request response that rehydrates ResourceDocument
|
|
13
|
+
* with the associated resources based on their identifiers.
|
|
14
|
+
*/
|
|
15
|
+
|
|
16
|
+
class InternalDocumentStorage {
|
|
17
|
+
constructor(options) {
|
|
18
|
+
this.options = options;
|
|
19
|
+
this._lastModified = 0;
|
|
20
|
+
this._invalidated = true;
|
|
21
|
+
this._fileHandle = this._open(options.scope);
|
|
22
|
+
this._channel = Object.assign(new BroadcastChannel(options.scope), {
|
|
23
|
+
onmessage: this._onMessage.bind(this)
|
|
24
|
+
});
|
|
25
|
+
}
|
|
26
|
+
_onMessage(_event) {
|
|
27
|
+
this._invalidated = true;
|
|
28
|
+
}
|
|
29
|
+
async _open(scope) {
|
|
30
|
+
const directoryHandle = await navigator.storage.getDirectory();
|
|
31
|
+
const fileHandle = await directoryHandle.getFileHandle(scope, {
|
|
32
|
+
create: true
|
|
33
|
+
});
|
|
34
|
+
return fileHandle;
|
|
35
|
+
}
|
|
36
|
+
async _read() {
|
|
37
|
+
if (this._filePromise) {
|
|
38
|
+
return this._filePromise;
|
|
39
|
+
}
|
|
40
|
+
if (this._invalidated) {
|
|
41
|
+
const updateFile = async () => {
|
|
42
|
+
const fileHandle = await this._fileHandle;
|
|
43
|
+
const file = await fileHandle.getFile();
|
|
44
|
+
const lastModified = file.lastModified;
|
|
45
|
+
if (lastModified === this._lastModified && this._cache) {
|
|
46
|
+
return this._cache;
|
|
47
|
+
}
|
|
48
|
+
const contents = await file.text();
|
|
49
|
+
const cache = contents ? JSON.parse(contents) : {
|
|
50
|
+
documents: [],
|
|
51
|
+
resources: []
|
|
52
|
+
};
|
|
53
|
+
const documents = new Map(cache.documents);
|
|
54
|
+
const resources = new Map(cache.resources);
|
|
55
|
+
const cacheMap = {
|
|
56
|
+
documents,
|
|
57
|
+
resources
|
|
58
|
+
};
|
|
59
|
+
this._cache = cacheMap;
|
|
60
|
+
this._invalidated = false;
|
|
61
|
+
this._lastModified = lastModified;
|
|
62
|
+
return cacheMap;
|
|
63
|
+
};
|
|
64
|
+
this._filePromise = updateFile();
|
|
65
|
+
await this._filePromise;
|
|
66
|
+
this._filePromise = null;
|
|
67
|
+
}
|
|
68
|
+
return this._cache;
|
|
69
|
+
}
|
|
70
|
+
async _patch(documentKey, document, updatedResources) {
|
|
71
|
+
const fileHandle = await this._fileHandle;
|
|
72
|
+
// secure a lock before getting latest state
|
|
73
|
+
const writable = await fileHandle.createWritable();
|
|
74
|
+
const cache = await this._read();
|
|
75
|
+
cache.documents.set(documentKey, document);
|
|
76
|
+
updatedResources.forEach((resource, key) => {
|
|
77
|
+
cache.resources.set(key, resource);
|
|
78
|
+
});
|
|
79
|
+
const documents = [...cache.documents.entries()];
|
|
80
|
+
const resources = [...cache.resources.entries()];
|
|
81
|
+
const cacheFile = {
|
|
82
|
+
documents,
|
|
83
|
+
resources
|
|
84
|
+
};
|
|
85
|
+
await writable.write(JSON.stringify(cacheFile));
|
|
86
|
+
await writable.close();
|
|
87
|
+
this._channel.postMessage({
|
|
88
|
+
type: 'patch',
|
|
89
|
+
key: documentKey,
|
|
90
|
+
resources: [...updatedResources.keys()]
|
|
91
|
+
});
|
|
92
|
+
}
|
|
93
|
+
async getDocument(key) {
|
|
94
|
+
const cache = await this._read();
|
|
95
|
+
// clone the document to avoid leaking the internal cache
|
|
96
|
+
const document = safeDocumentHydrate(cache.documents.get(key.lid));
|
|
97
|
+
if (!document) {
|
|
98
|
+
return null;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
// expand the document with the resources
|
|
102
|
+
if (document.content) {
|
|
103
|
+
if (docHasData(document.content)) {
|
|
104
|
+
let data = null;
|
|
105
|
+
if (Array.isArray(document.content.data)) {
|
|
106
|
+
data = document.content.data.map(resourceIdentifier => {
|
|
107
|
+
const resource = cache.resources.get(resourceIdentifier.lid);
|
|
108
|
+
if (!resource) {
|
|
109
|
+
throw new Error(`Resource not found for ${resourceIdentifier.lid}`);
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
// clone the resource to avoid leaking the internal cache
|
|
113
|
+
return structuredClone(resource);
|
|
114
|
+
});
|
|
115
|
+
} else if (document.content.data) {
|
|
116
|
+
const resource = cache.resources.get(document.content.data.lid);
|
|
117
|
+
if (!resource) {
|
|
118
|
+
throw new Error(`Resource not found for ${document.content.data.lid}`);
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
// clone the resource to avoid leaking the internal cache
|
|
122
|
+
data = structuredClone(resource);
|
|
123
|
+
}
|
|
124
|
+
if (document.content.included) {
|
|
125
|
+
const included = document.content.included.map(resourceIdentifier => {
|
|
126
|
+
const resource = cache.resources.get(resourceIdentifier.lid);
|
|
127
|
+
if (!resource) {
|
|
128
|
+
throw new Error(`Resource not found for ${resourceIdentifier.lid}`);
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
// clone the resource to avoid leaking the internal cache
|
|
132
|
+
return structuredClone(resource);
|
|
133
|
+
});
|
|
134
|
+
document.content.included = included;
|
|
135
|
+
}
|
|
136
|
+
document.content.data = data;
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
return document;
|
|
140
|
+
}
|
|
141
|
+
async putDocument(document, resourceCollector) {
|
|
142
|
+
const resources = new Map();
|
|
143
|
+
if (!document.content) {
|
|
144
|
+
throw new Error(`Document content is missing, only finalized documents can be stored`);
|
|
145
|
+
}
|
|
146
|
+
if (!document.content.lid) {
|
|
147
|
+
throw new Error(`Document content is missing a lid, only documents with a cache-key can be stored`);
|
|
148
|
+
}
|
|
149
|
+
if (docHasData(document.content)) {
|
|
150
|
+
this._getResources(document.content, resourceCollector, resources);
|
|
151
|
+
}
|
|
152
|
+
await this._patch(document.content.lid, safeDocumentSerialize(document), resources);
|
|
153
|
+
}
|
|
154
|
+
_getResources(document, resourceCollector, resources = new Map()) {
|
|
155
|
+
if (Array.isArray(document.data)) {
|
|
156
|
+
document.data.forEach(resourceIdentifier => {
|
|
157
|
+
const resource = resourceCollector(resourceIdentifier);
|
|
158
|
+
resources.set(resourceIdentifier.lid, structuredClone(resource));
|
|
159
|
+
});
|
|
160
|
+
} else if (document.data) {
|
|
161
|
+
const resource = resourceCollector(document.data);
|
|
162
|
+
resources.set(document.data.lid, structuredClone(resource));
|
|
163
|
+
}
|
|
164
|
+
if (document.included) {
|
|
165
|
+
document.included.forEach(resourceIdentifier => {
|
|
166
|
+
const resource = resourceCollector(resourceIdentifier);
|
|
167
|
+
resources.set(resourceIdentifier.lid, structuredClone(resource));
|
|
168
|
+
});
|
|
169
|
+
}
|
|
170
|
+
return resources;
|
|
171
|
+
}
|
|
172
|
+
async putResources(document, resourceCollector) {
|
|
173
|
+
const fileHandle = await this._fileHandle;
|
|
174
|
+
// secure a lock before getting latest state
|
|
175
|
+
const writable = await fileHandle.createWritable();
|
|
176
|
+
const cache = await this._read();
|
|
177
|
+
const updatedResources = this._getResources(document, resourceCollector);
|
|
178
|
+
updatedResources.forEach((resource, key) => {
|
|
179
|
+
cache.resources.set(key, resource);
|
|
180
|
+
});
|
|
181
|
+
const documents = [...cache.documents.entries()];
|
|
182
|
+
const resources = [...cache.resources.entries()];
|
|
183
|
+
const cacheFile = {
|
|
184
|
+
documents,
|
|
185
|
+
resources
|
|
186
|
+
};
|
|
187
|
+
await writable.write(JSON.stringify(cacheFile));
|
|
188
|
+
await writable.close();
|
|
189
|
+
this._channel.postMessage({
|
|
190
|
+
type: 'patch',
|
|
191
|
+
key: null,
|
|
192
|
+
resources: [...updatedResources.keys()]
|
|
193
|
+
});
|
|
194
|
+
}
|
|
195
|
+
async clear(reset) {
|
|
196
|
+
const fileHandle = await this._fileHandle;
|
|
197
|
+
const writable = await fileHandle.createWritable();
|
|
198
|
+
await writable.write('');
|
|
199
|
+
await writable.close();
|
|
200
|
+
this._invalidated = true;
|
|
201
|
+
this._lastModified = 0;
|
|
202
|
+
this._cache = null;
|
|
203
|
+
this._filePromise = null;
|
|
204
|
+
this._channel.postMessage({
|
|
205
|
+
type: 'clear'
|
|
206
|
+
});
|
|
207
|
+
if (!reset) {
|
|
208
|
+
this._channel.close();
|
|
209
|
+
this._channel = null;
|
|
210
|
+
if (!this.options.isolated) {
|
|
211
|
+
Storages.delete(this.options.scope);
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
function safeDocumentSerialize(document) {
|
|
217
|
+
(test => {
|
|
218
|
+
if (!test) {
|
|
219
|
+
throw new Error(`Expected to receive a document`);
|
|
220
|
+
}
|
|
221
|
+
})(document && typeof document === 'object');
|
|
222
|
+
const doc = document;
|
|
223
|
+
const newDoc = {};
|
|
224
|
+
if ('request' in doc) {
|
|
225
|
+
newDoc.request = prepareRequest(doc.request);
|
|
226
|
+
}
|
|
227
|
+
if ('response' in doc) {
|
|
228
|
+
newDoc.response = prepareResponse(doc.response);
|
|
229
|
+
}
|
|
230
|
+
if ('content' in doc) {
|
|
231
|
+
newDoc.content = structuredClone(doc.content);
|
|
232
|
+
}
|
|
233
|
+
return newDoc;
|
|
234
|
+
}
|
|
235
|
+
function prepareRequest(request) {
|
|
236
|
+
const {
|
|
237
|
+
signal,
|
|
238
|
+
headers
|
|
239
|
+
} = request;
|
|
240
|
+
const requestCopy = Object.assign({}, request);
|
|
241
|
+
delete requestCopy.store;
|
|
242
|
+
if (signal instanceof AbortSignal) {
|
|
243
|
+
delete requestCopy.signal;
|
|
244
|
+
}
|
|
245
|
+
if (headers instanceof Headers) {
|
|
246
|
+
requestCopy.headers = Array.from(headers);
|
|
247
|
+
}
|
|
248
|
+
return requestCopy;
|
|
249
|
+
}
|
|
250
|
+
function prepareResponse(response) {
|
|
251
|
+
if (!response) return null;
|
|
252
|
+
const clone = {};
|
|
253
|
+
if (response.headers) {
|
|
254
|
+
clone.headers = Array.from(response.headers);
|
|
255
|
+
}
|
|
256
|
+
clone.ok = response.ok;
|
|
257
|
+
clone.redirected = response.redirected;
|
|
258
|
+
clone.status = response.status;
|
|
259
|
+
clone.statusText = response.statusText;
|
|
260
|
+
clone.type = response.type;
|
|
261
|
+
clone.url = response.url;
|
|
262
|
+
return clone;
|
|
263
|
+
}
|
|
264
|
+
function safeDocumentHydrate(document) {
|
|
265
|
+
(test => {
|
|
266
|
+
if (!test) {
|
|
267
|
+
throw new Error(`Expected to receive a document`);
|
|
268
|
+
}
|
|
269
|
+
})(document && typeof document === 'object');
|
|
270
|
+
const doc = document;
|
|
271
|
+
const newDoc = {};
|
|
272
|
+
if ('request' in doc) {
|
|
273
|
+
const headers = new Headers(doc.request.headers);
|
|
274
|
+
const req = Object.assign({}, doc.request, {
|
|
275
|
+
headers
|
|
276
|
+
});
|
|
277
|
+
newDoc.request = new Request(doc.request.url ?? '', req);
|
|
278
|
+
}
|
|
279
|
+
if ('response' in doc) {
|
|
280
|
+
const headers = new Headers(doc.response.headers);
|
|
281
|
+
const resp = Object.assign({}, doc.response, {
|
|
282
|
+
headers
|
|
283
|
+
});
|
|
284
|
+
newDoc.response = new Response(null, resp);
|
|
285
|
+
}
|
|
286
|
+
if ('content' in doc) {
|
|
287
|
+
newDoc.content = structuredClone(doc.content);
|
|
288
|
+
}
|
|
289
|
+
return newDoc;
|
|
290
|
+
}
|
|
291
|
+
function docHasData(doc) {
|
|
292
|
+
return 'data' in doc;
|
|
293
|
+
}
|
|
294
|
+
const Storages = new Map();
|
|
295
|
+
|
|
296
|
+
/**
|
|
297
|
+
* DocumentStorage is a wrapper around the StorageManager API that provides
|
|
298
|
+
* a simple interface for reading and updating documents and requests.
|
|
299
|
+
*
|
|
300
|
+
* Some goals for this experiment:
|
|
301
|
+
*
|
|
302
|
+
* - optimize for storing requests/documents
|
|
303
|
+
* - optimize for storing resources
|
|
304
|
+
* - optimize for looking up resources associated to a document
|
|
305
|
+
* - optimize for notifying cross-tab when data is updated
|
|
306
|
+
*
|
|
307
|
+
* optional features:
|
|
308
|
+
*
|
|
309
|
+
* - support for offline mode
|
|
310
|
+
* - ?? support for relationship based cache traversal
|
|
311
|
+
* - a way to index records by type + another field (e.g updatedAt/createAt/name)
|
|
312
|
+
* such that simple queries can be done without having to scan all records
|
|
313
|
+
*/
|
|
314
|
+
class DocumentStorage {
|
|
315
|
+
constructor(options = {}) {
|
|
316
|
+
options.isolated = options.isolated ?? false;
|
|
317
|
+
options.scope = options.scope ?? 'default';
|
|
318
|
+
const fileName = `${WARP_DRIVE_STORAGE_FILE_NAME}@version_${WARP_DRIVE_STORAGE_VERSION}:${options.scope}`;
|
|
319
|
+
if (!options.isolated && Storages.has(fileName)) {
|
|
320
|
+
const storage = Storages.get(fileName);
|
|
321
|
+
if (storage) {
|
|
322
|
+
this._storage = storage.deref();
|
|
323
|
+
return;
|
|
324
|
+
}
|
|
325
|
+
}
|
|
326
|
+
const storage = new InternalDocumentStorage({
|
|
327
|
+
scope: fileName,
|
|
328
|
+
isolated: options.isolated
|
|
329
|
+
});
|
|
330
|
+
this._storage = storage;
|
|
331
|
+
if (!options.isolated) {
|
|
332
|
+
Storages.set(fileName, new WeakRef(storage));
|
|
333
|
+
}
|
|
334
|
+
}
|
|
335
|
+
getDocument(key) {
|
|
336
|
+
return this._storage.getDocument(key);
|
|
337
|
+
}
|
|
338
|
+
putDocument(document, resourceCollector) {
|
|
339
|
+
return this._storage.putDocument(document, resourceCollector);
|
|
340
|
+
}
|
|
341
|
+
putResources(document, resourceCollector) {
|
|
342
|
+
return this._storage.putResources(document, resourceCollector);
|
|
343
|
+
}
|
|
344
|
+
clear(reset) {
|
|
345
|
+
return this._storage.clear(reset);
|
|
346
|
+
}
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
export { DocumentStorage };
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import { createDeferred } from '@warp-drive-mirror/core/request';
|
|
2
|
+
|
|
3
|
+
// @ts-expect-error untyped global
|
|
4
|
+
const isServerEnv = typeof FastBoot !== 'undefined';
|
|
5
|
+
class ImageFetch {
|
|
6
|
+
constructor(worker) {
|
|
7
|
+
this.threadId = isServerEnv ? '' : crypto.randomUUID();
|
|
8
|
+
this.pending = new Map();
|
|
9
|
+
this.cache = new Map();
|
|
10
|
+
this.worker = worker;
|
|
11
|
+
if (!isServerEnv) {
|
|
12
|
+
const fn = event => {
|
|
13
|
+
const {
|
|
14
|
+
type,
|
|
15
|
+
url
|
|
16
|
+
} = event.data;
|
|
17
|
+
const deferred = this.cleanupRequest(url);
|
|
18
|
+
if (!deferred) {
|
|
19
|
+
return;
|
|
20
|
+
}
|
|
21
|
+
if (type === 'success-response') {
|
|
22
|
+
deferred.resolve(url);
|
|
23
|
+
return;
|
|
24
|
+
}
|
|
25
|
+
if (type === 'error-response') {
|
|
26
|
+
deferred.reject(null);
|
|
27
|
+
return;
|
|
28
|
+
}
|
|
29
|
+
};
|
|
30
|
+
if (worker instanceof SharedWorker) {
|
|
31
|
+
worker.port.postMessage({
|
|
32
|
+
type: 'connect',
|
|
33
|
+
thread: this.threadId
|
|
34
|
+
});
|
|
35
|
+
worker.port.onmessage = fn;
|
|
36
|
+
} else if (worker) {
|
|
37
|
+
this.channel = new MessageChannel();
|
|
38
|
+
worker.postMessage({
|
|
39
|
+
type: 'connect',
|
|
40
|
+
thread: this.threadId
|
|
41
|
+
}, [this.channel.port2]);
|
|
42
|
+
this.channel.port1.onmessage = fn;
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
cleanupRequest(url) {
|
|
47
|
+
const deferred = this.pending.get(url);
|
|
48
|
+
this.pending.delete(url);
|
|
49
|
+
return deferred;
|
|
50
|
+
}
|
|
51
|
+
_send(event) {
|
|
52
|
+
// eslint-disable-next-line @typescript-eslint/no-unused-expressions
|
|
53
|
+
this.worker instanceof SharedWorker ? this.worker.port.postMessage(event) : this.channel.port1.postMessage(event);
|
|
54
|
+
}
|
|
55
|
+
load(url) {
|
|
56
|
+
if (isServerEnv) {
|
|
57
|
+
return Promise.resolve(url);
|
|
58
|
+
}
|
|
59
|
+
const objectUrl = this.cache.get(url);
|
|
60
|
+
if (objectUrl) {
|
|
61
|
+
return Promise.resolve(objectUrl);
|
|
62
|
+
}
|
|
63
|
+
const deferred = createDeferred();
|
|
64
|
+
this.pending.set(url, deferred);
|
|
65
|
+
this._send({
|
|
66
|
+
type: 'load',
|
|
67
|
+
thread: this.threadId,
|
|
68
|
+
url
|
|
69
|
+
});
|
|
70
|
+
return deferred.promise;
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
export { ImageFetch };
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
const WorkerScope = globalThis.SharedWorkerGlobalScope;
|
|
2
|
+
async function loadImage(url) {
|
|
3
|
+
const response = await fetch(url);
|
|
4
|
+
const fileBlob = await response.blob();
|
|
5
|
+
return URL.createObjectURL(fileBlob);
|
|
6
|
+
}
|
|
7
|
+
class ImageWorker {
|
|
8
|
+
constructor(options) {
|
|
9
|
+
// disable if running on main thread
|
|
10
|
+
if (typeof window !== 'undefined') {
|
|
11
|
+
return;
|
|
12
|
+
}
|
|
13
|
+
this.threads = new Map();
|
|
14
|
+
this.pendingImages = new Map();
|
|
15
|
+
this.cache = new Map();
|
|
16
|
+
this.options = options || {
|
|
17
|
+
persisted: false
|
|
18
|
+
};
|
|
19
|
+
this.isSharedWorker = WorkerScope && globalThis instanceof WorkerScope;
|
|
20
|
+
this.initialize();
|
|
21
|
+
}
|
|
22
|
+
fetch(url) {
|
|
23
|
+
const objectUrl = this.cache.get(url);
|
|
24
|
+
if (objectUrl) {
|
|
25
|
+
return Promise.resolve(objectUrl);
|
|
26
|
+
}
|
|
27
|
+
const pending = this.pendingImages.get(url);
|
|
28
|
+
if (pending) {
|
|
29
|
+
return pending;
|
|
30
|
+
}
|
|
31
|
+
const promise = loadImage(url);
|
|
32
|
+
this.pendingImages.set(url, promise);
|
|
33
|
+
return promise.finally(() => {
|
|
34
|
+
this.pendingImages.delete(url);
|
|
35
|
+
});
|
|
36
|
+
}
|
|
37
|
+
initialize() {
|
|
38
|
+
if (this.isSharedWorker) {
|
|
39
|
+
globalThis.onconnect = e => {
|
|
40
|
+
const port = e.ports[0];
|
|
41
|
+
port.onmessage = event => {
|
|
42
|
+
const {
|
|
43
|
+
type
|
|
44
|
+
} = event.data;
|
|
45
|
+
switch (type) {
|
|
46
|
+
case 'connect':
|
|
47
|
+
this.setupThread(event.data.thread, port);
|
|
48
|
+
break;
|
|
49
|
+
}
|
|
50
|
+
};
|
|
51
|
+
port.start();
|
|
52
|
+
};
|
|
53
|
+
} else {
|
|
54
|
+
globalThis.onmessage = event => {
|
|
55
|
+
const {
|
|
56
|
+
type
|
|
57
|
+
} = event.data;
|
|
58
|
+
switch (type) {
|
|
59
|
+
case 'connect':
|
|
60
|
+
this.setupThread(event.data.thread, event.ports[0]);
|
|
61
|
+
break;
|
|
62
|
+
}
|
|
63
|
+
};
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
setupThread(thread, port) {
|
|
67
|
+
this.threads.set(thread, port);
|
|
68
|
+
port.onmessage = event => {
|
|
69
|
+
if (event.type === 'close') {
|
|
70
|
+
this.threads.delete(thread);
|
|
71
|
+
return;
|
|
72
|
+
}
|
|
73
|
+
const {
|
|
74
|
+
type
|
|
75
|
+
} = event.data;
|
|
76
|
+
switch (type) {
|
|
77
|
+
case 'load':
|
|
78
|
+
void this.request(event.data);
|
|
79
|
+
break;
|
|
80
|
+
}
|
|
81
|
+
};
|
|
82
|
+
}
|
|
83
|
+
async request(event) {
|
|
84
|
+
const {
|
|
85
|
+
thread,
|
|
86
|
+
url
|
|
87
|
+
} = event;
|
|
88
|
+
const objectUrl = await this.fetch(url);
|
|
89
|
+
const port = this.threads.get(thread);
|
|
90
|
+
port.postMessage({
|
|
91
|
+
type: 'success-response',
|
|
92
|
+
thread,
|
|
93
|
+
url,
|
|
94
|
+
objectUrl
|
|
95
|
+
});
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
export { ImageWorker };
|
|
@@ -0,0 +1,158 @@
|
|
|
1
|
+
import { createDeferred } from '@warp-drive-mirror/core/request';
|
|
2
|
+
|
|
3
|
+
// @ts-expect-error untyped global
|
|
4
|
+
const isServerEnv = typeof FastBoot !== 'undefined';
|
|
5
|
+
function isAggregateError(error) {
|
|
6
|
+
return error instanceof AggregateError || error.name === 'AggregateError' && Array.isArray(error.errors);
|
|
7
|
+
}
|
|
8
|
+
function stitchTrace(stack, origin) {
|
|
9
|
+
if (origin.startsWith('Error\n')) {
|
|
10
|
+
return origin.slice(6) + '\n' + stack;
|
|
11
|
+
}
|
|
12
|
+
return origin + '\n' + stack;
|
|
13
|
+
}
|
|
14
|
+
function cloneError(error, stack) {
|
|
15
|
+
const isAggregate = isAggregateError(error);
|
|
16
|
+
const cloned = isAggregate ? new AggregateError(structuredClone(error.errors), error.message) : new Error(error.message);
|
|
17
|
+
cloned.stack = stitchTrace(error.stack || '', stack);
|
|
18
|
+
cloned.error = error.error;
|
|
19
|
+
|
|
20
|
+
// copy over enumerable properties
|
|
21
|
+
Object.assign(cloned, error);
|
|
22
|
+
return cloned;
|
|
23
|
+
}
|
|
24
|
+
class WorkerFetch {
|
|
25
|
+
constructor(worker) {
|
|
26
|
+
this.threadId = isServerEnv ? '' : crypto.randomUUID();
|
|
27
|
+
this.pending = new Map();
|
|
28
|
+
this.worker = worker;
|
|
29
|
+
if (!isServerEnv) {
|
|
30
|
+
const fn = event => {
|
|
31
|
+
const {
|
|
32
|
+
type,
|
|
33
|
+
id,
|
|
34
|
+
data
|
|
35
|
+
} = event.data;
|
|
36
|
+
const info = this.cleanupRequest(id);
|
|
37
|
+
|
|
38
|
+
// typically this means the request was aborted
|
|
39
|
+
if (!info) {
|
|
40
|
+
return;
|
|
41
|
+
}
|
|
42
|
+
if (type === 'success-response') {
|
|
43
|
+
const {
|
|
44
|
+
deferred
|
|
45
|
+
} = info;
|
|
46
|
+
const {
|
|
47
|
+
response,
|
|
48
|
+
content
|
|
49
|
+
} = data;
|
|
50
|
+
if (response) {
|
|
51
|
+
response.headers = new Headers(response.headers);
|
|
52
|
+
info.context.setResponse(new Response(null, response));
|
|
53
|
+
}
|
|
54
|
+
deferred.resolve(content);
|
|
55
|
+
return;
|
|
56
|
+
}
|
|
57
|
+
if (type === 'error-response') {
|
|
58
|
+
const {
|
|
59
|
+
deferred,
|
|
60
|
+
stack
|
|
61
|
+
} = info;
|
|
62
|
+
deferred.reject(cloneError(data, stack));
|
|
63
|
+
return;
|
|
64
|
+
}
|
|
65
|
+
};
|
|
66
|
+
if (worker instanceof SharedWorker) {
|
|
67
|
+
worker.port.postMessage({
|
|
68
|
+
type: 'connect',
|
|
69
|
+
thread: this.threadId
|
|
70
|
+
});
|
|
71
|
+
worker.port.onmessage = fn;
|
|
72
|
+
} else if (worker) {
|
|
73
|
+
this.channel = new MessageChannel();
|
|
74
|
+
worker.postMessage({
|
|
75
|
+
type: 'connect',
|
|
76
|
+
thread: this.threadId
|
|
77
|
+
}, [this.channel.port2]);
|
|
78
|
+
this.channel.port1.onmessage = fn;
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
cleanupRequest(id) {
|
|
83
|
+
const info = this.pending.get(id);
|
|
84
|
+
this.pending.delete(id);
|
|
85
|
+
if (info?.signal) {
|
|
86
|
+
info.signal.removeEventListener('abort', info.abortFn);
|
|
87
|
+
}
|
|
88
|
+
return info;
|
|
89
|
+
}
|
|
90
|
+
send(event) {
|
|
91
|
+
// eslint-disable-next-line @typescript-eslint/no-unused-expressions
|
|
92
|
+
this.worker instanceof SharedWorker ? this.worker.port.postMessage(event) : this.channel.port1.postMessage(event);
|
|
93
|
+
}
|
|
94
|
+
request(context, next) {
|
|
95
|
+
if (isServerEnv) {
|
|
96
|
+
return next(context.request);
|
|
97
|
+
}
|
|
98
|
+
const deferred = createDeferred();
|
|
99
|
+
const {
|
|
100
|
+
signal,
|
|
101
|
+
request
|
|
102
|
+
} = prepareRequest(context.request);
|
|
103
|
+
const abortFn = signal ? () => {
|
|
104
|
+
deferred.reject(enhanceReason(signal.reason));
|
|
105
|
+
this.send({
|
|
106
|
+
type: 'abort',
|
|
107
|
+
thread: this.threadId,
|
|
108
|
+
id: context.id,
|
|
109
|
+
data: signal.reason
|
|
110
|
+
});
|
|
111
|
+
this.cleanupRequest(context.id);
|
|
112
|
+
} : () => {
|
|
113
|
+
return;
|
|
114
|
+
};
|
|
115
|
+
signal?.addEventListener('abort', abortFn);
|
|
116
|
+
try {
|
|
117
|
+
throw new Error();
|
|
118
|
+
} catch (e) {
|
|
119
|
+
this.pending.set(context.id, {
|
|
120
|
+
context,
|
|
121
|
+
deferred,
|
|
122
|
+
signal,
|
|
123
|
+
abortFn,
|
|
124
|
+
stack: e.stack
|
|
125
|
+
});
|
|
126
|
+
}
|
|
127
|
+
this.send({
|
|
128
|
+
type: 'request',
|
|
129
|
+
thread: this.threadId,
|
|
130
|
+
id: context.id,
|
|
131
|
+
data: request
|
|
132
|
+
});
|
|
133
|
+
return deferred.promise;
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
function enhanceReason(reason) {
|
|
137
|
+
return new DOMException(reason || 'The user aborted a request.', 'AbortError');
|
|
138
|
+
}
|
|
139
|
+
function prepareRequest(request) {
|
|
140
|
+
const {
|
|
141
|
+
signal,
|
|
142
|
+
headers
|
|
143
|
+
} = request;
|
|
144
|
+
const requestCopy = Object.assign({}, request);
|
|
145
|
+
delete requestCopy.store;
|
|
146
|
+
if (signal instanceof AbortSignal) {
|
|
147
|
+
delete requestCopy.signal;
|
|
148
|
+
}
|
|
149
|
+
if (headers instanceof Headers) {
|
|
150
|
+
requestCopy.headers = Array.from(headers);
|
|
151
|
+
}
|
|
152
|
+
return {
|
|
153
|
+
signal: signal || null,
|
|
154
|
+
request: requestCopy
|
|
155
|
+
};
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
export { WorkerFetch };
|