-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathfileSystem.ts
450 lines (401 loc) · 12.1 KB
/
fileSystem.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
// Copyright 2020 Google Inc. All Rights Reserved.
//
// 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 { fd_t, OpenFlags, SystemError, E } from './bindings.js';
export type Handle = FileSystemFileHandle | FileSystemDirectoryHandle;
class OpenDirectory {
constructor(
public readonly path: string,
private readonly _handle: FileSystemDirectoryHandle
) {}
isFile!: false;
asFile(): never {
throw new SystemError(E.ISDIR);
}
asDir() {
return this;
}
private _currentIter:
| {
pos: number;
reverted: FileSystemHandle | undefined;
iter: AsyncIterableIterator<FileSystemHandle>;
}
| undefined = undefined;
getEntries(
start = 0
): AsyncIterableIterator<FileSystemHandle> & {
revert: (handle: FileSystemHandle) => void;
} {
if (this._currentIter?.pos !== start) {
// We're at incorrect position and will have to skip [start] items.
this._currentIter = {
pos: 0,
reverted: undefined,
iter: this._handle.values()
};
} else {
// We are already at correct position, so zero this out.
start = 0;
}
let currentIter = this._currentIter;
return {
next: async () => {
// This is a rare case when the caller tries to start reading directory
// from a different position than our iterator is on.
//
// This can happen e.g. with multiple iterators, or if previous iteration
// has been cancelled.
//
// In those cases, we need to first manually skip [start] items from the
// iterator, and on the next calls we'll be able to continue normally.
for (; start; start--) {
await currentIter.iter.next();
}
// If there is a handle saved by a `revert(...)` call, take and return it.
let { reverted } = currentIter;
if (reverted) {
currentIter.reverted = undefined;
currentIter.pos++;
return {
value: reverted,
done: false
};
}
// Otherwise use the underlying iterator.
let res = await currentIter.iter.next();
if (!res.done) {
currentIter.pos++;
}
return res;
},
// This function allows to go one step back in the iterator
// by saving an item in an internal buffer.
// That item will be given back on the next iteration attempt.
//
// This allows to avoid having to restart the underlying
// forward iterator over and over again just to find the required
// position.
revert: (handle: FileSystemHandle) => {
if (currentIter.reverted || currentIter.pos === 0) {
throw new Error('Cannot revert a handle in the current state.');
}
currentIter.pos--;
currentIter.reverted = handle;
},
[Symbol.asyncIterator]() {
return this;
}
};
}
private async _resolve(path: string) {
let parts = path ? path.split('/') : [];
let resolvedParts = [];
for (let item of parts) {
if (item === '..') {
if (resolvedParts.pop() === undefined) {
throw new SystemError(E.NOTCAPABLE);
}
} else if (item !== '.') {
resolvedParts.push(item);
}
}
let name = resolvedParts.pop();
let parent = this._handle;
for (let item of resolvedParts) {
parent = await parent.getDirectoryHandle(item);
}
return {
parent,
name
};
}
getFileOrDir(
path: string,
mode: FileOrDir.File,
openFlags?: OpenFlags
): Promise<FileSystemFileHandle>;
getFileOrDir(
path: string,
mode: FileOrDir.Dir,
openFlags?: OpenFlags
): Promise<FileSystemDirectoryHandle>;
getFileOrDir(
path: string,
mode: FileOrDir,
openFlags?: OpenFlags
): Promise<Handle>;
async getFileOrDir(path: string, mode: FileOrDir, openFlags: OpenFlags = 0) {
let { parent, name: maybeName } = await this._resolve(path);
// Handle case when we couldn't get a parent, only direct handle
// (this means it's a preopened directory).
if (maybeName === undefined) {
if (mode & FileOrDir.Dir) {
if (openFlags & (OpenFlags.Create | OpenFlags.Exclusive)) {
throw new SystemError(E.EXIST);
}
if (openFlags & OpenFlags.Truncate) {
throw new SystemError(E.ISDIR);
}
return parent;
} else {
throw new SystemError(E.ISDIR);
}
}
let name = maybeName;
async function openWithCreate(create: boolean) {
if (mode & FileOrDir.File) {
try {
return await parent.getFileHandle(name, { create });
} catch (err) {
if ((err as Error).name === 'TypeMismatchError') {
if (!(mode & FileOrDir.Dir)) {
console.warn(err);
throw new SystemError(E.ISDIR);
}
} else {
throw err;
}
}
}
try {
return await parent.getDirectoryHandle(name, { create });
} catch (err) {
if ((err as Error).name === 'TypeMismatchError') {
console.warn(err);
throw new SystemError(E.NOTDIR);
} else {
throw err;
}
}
}
if (openFlags & OpenFlags.Directory) {
if (mode & FileOrDir.Dir) {
mode = FileOrDir.Dir;
} else {
throw new TypeError(
`Open flags ${openFlags} require a directory but mode ${mode} doesn't allow it.`
);
}
}
let handle: Handle;
if (openFlags & OpenFlags.Create) {
if (openFlags & OpenFlags.Exclusive) {
let exists = true;
try {
await openWithCreate(false);
} catch {
exists = false;
}
if (exists) {
throw new SystemError(E.EXIST);
}
}
handle = await openWithCreate(true);
} else {
handle = await openWithCreate(false);
}
if (openFlags & OpenFlags.Truncate) {
if (handle.isDirectory) {
throw new SystemError(E.ISDIR);
}
let writable = await handle.createWritable({ keepExistingData: false });
await writable.close();
}
return handle;
}
async delete(path: string) {
let { parent, name } = await this._resolve(path);
if (!name) {
throw new SystemError(E.ACCES);
}
await parent.removeEntry(name);
}
close() {}
}
OpenDirectory.prototype.isFile = false;
class OpenFile {
constructor(
public readonly path: string,
private readonly _handle: FileSystemFileHandle
) {}
isFile!: true;
public position = 0;
private _writer: FileSystemWritableFileStream | undefined = undefined;
async getFile() {
// TODO: do we really have to?
await this.flush();
return this._handle.getFile();
}
private async _getWriter() {
return (
this._writer ||
(this._writer = await this._handle.createWritable({
keepExistingData: true
}))
);
}
async setSize(size: number) {
let writer = await this._getWriter();
await writer.truncate(size);
}
async read(len: number) {
let file = await this.getFile();
let slice = file.slice(this.position, this.position + len);
let arrayBuffer = await slice.arrayBuffer();
this.position += arrayBuffer.byteLength;
return new Uint8Array(arrayBuffer);
}
async write(data: Uint8Array) {
let writer = await this._getWriter();
await writer.write({ type: 'write', position: this.position, data });
this.position += data.length;
}
async flush() {
if (!this._writer) return;
await this._writer.close();
this._writer = undefined;
}
asFile() {
return this;
}
asDir(): never {
throw new SystemError(E.NOTDIR);
}
close() {
return this.flush();
}
}
OpenFile.prototype.isFile = true;
export const enum FileOrDir {
File = 1, // 1 << 0
Dir = 2, // 1 << 1
Any = 3 // File | Dir
}
export const FIRST_PREOPEN_FD = 3 as fd_t;
export class OpenFiles {
private _files = new Map<fd_t, OpenFile | OpenDirectory>();
private _nextFd = FIRST_PREOPEN_FD;
private readonly _firstNonPreopenFd: fd_t;
constructor(preOpen: Record<string, FileSystemDirectoryHandle>) {
for (let path in preOpen) {
this._add(path, preOpen[path]);
}
this._firstNonPreopenFd = this._nextFd;
}
getPreOpen(fd: fd_t): OpenDirectory {
if (fd >= FIRST_PREOPEN_FD && fd < this._firstNonPreopenFd) {
return this.get(fd) as OpenDirectory;
} else {
throw new SystemError(E.BADF, true);
}
}
private _add(path: string, handle: Handle) {
this._files.set(
this._nextFd,
handle.kind === 'file'
? new OpenFile(path, handle)
: new OpenDirectory(path, handle)
);
return this._nextFd++ as fd_t;
}
async open(preOpen: OpenDirectory, path: string, openFlags?: OpenFlags) {
return this._add(
`${preOpen.path}/${path}`,
await preOpen.getFileOrDir(path, FileOrDir.Any, openFlags)
);
}
get(fd: fd_t) {
let openFile = this._files.get(fd);
if (!openFile) {
throw new SystemError(E.BADF);
}
return openFile;
}
private _take(fd: fd_t) {
let handle = this.get(fd);
this._files.delete(fd);
return handle;
}
async renumber(from: fd_t, to: fd_t) {
await this.close(to);
this._files.set(to, this._take(from));
}
async close(fd: fd_t) {
await this._take(fd).close();
}
// Translation of the algorithm from __wasilibc_find_relpath.
findRelPath(path: string) {
/// Are the `prefix_len` bytes pointed to by `prefix` a prefix of `path`?
function prefixMatches(prefix: string, path: string) {
// Allow an empty string as a prefix of any relative path.
if (path[0] != '/' && !prefix) {
return true;
}
// Check whether any bytes of the prefix differ.
if (!path.startsWith(prefix)) {
return false;
}
// Ignore trailing slashes in directory names.
let i = prefix.length;
while (i > 0 && prefix[i - 1] == '/') {
--i;
}
// Match only complete path components.
let last = path[i];
return last === '/' || !last;
}
// Search through the preopens table. Iterate in reverse so that more
// recently added preopens take precedence over less recently addded ones.
let matchLen = 0;
let foundPre;
for (let i = this._firstNonPreopenFd - 1; i >= FIRST_PREOPEN_FD; --i) {
let pre = this.get(i as fd_t) as OpenDirectory;
let prefix = pre.path;
if (path !== '.' && !path.startsWith('./')) {
// We're matching a relative path that doesn't start with "./" and
// isn't ".".
if (prefix.startsWith('./')) {
prefix = prefix.slice(2);
} else if (prefix === '.') {
prefix = prefix.slice(1);
}
}
// If we haven't had a match yet, or the candidate path is longer than
// our current best match's path, and the candidate path is a prefix of
// the requested path, take that as the new best path.
if (
(!foundPre || prefix.length > matchLen) &&
prefixMatches(prefix, path)
) {
foundPre = pre;
matchLen = prefix.length;
}
}
if (!foundPre) {
throw new Error(
`Couldn't resolve the given path via preopened directories.`
);
}
// The relative path is the substring after the portion that was matched.
let computed = path.slice(matchLen);
// Omit leading slashes in the relative path.
computed = computed.replace(/^\/+/, '');
// *at syscalls don't accept empty relative paths, so use "." instead.
computed = computed || '.';
return {
preOpen: foundPre,
relativePath: computed
};
}
}