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
451
452
453
454
455
456
457
|
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
"use strict";
((window) => {
const core = window.Deno.core;
const {
Date,
MathTrunc,
SymbolAsyncIterator,
SymbolIterator,
} = window.__bootstrap.primordials;
const { pathFromURL } = window.__bootstrap.util;
const build = window.__bootstrap.build.build;
function chmodSync(path, mode) {
core.opSync("op_chmod_sync", { path: pathFromURL(path), mode });
}
async function chmod(path, mode) {
await core.opAsync("op_chmod_async", { path: pathFromURL(path), mode });
}
function chownSync(
path,
uid,
gid,
) {
core.opSync("op_chown_sync", { path: pathFromURL(path), uid, gid });
}
async function chown(
path,
uid,
gid,
) {
await core.opAsync(
"op_chown_async",
{ path: pathFromURL(path), uid, gid },
);
}
function copyFileSync(
fromPath,
toPath,
) {
core.opSync("op_copy_file_sync", {
from: pathFromURL(fromPath),
to: pathFromURL(toPath),
});
}
async function copyFile(
fromPath,
toPath,
) {
await core.opAsync("op_copy_file_async", {
from: pathFromURL(fromPath),
to: pathFromURL(toPath),
});
}
function cwd() {
return core.opSync("op_cwd");
}
function chdir(directory) {
core.opSync("op_chdir", pathFromURL(directory));
}
function makeTempDirSync(options = {}) {
return core.opSync("op_make_temp_dir_sync", options);
}
function makeTempDir(options = {}) {
return core.opAsync("op_make_temp_dir_async", options);
}
function makeTempFileSync(options = {}) {
return core.opSync("op_make_temp_file_sync", options);
}
function makeTempFile(options = {}) {
return core.opAsync("op_make_temp_file_async", options);
}
function mkdirArgs(path, options) {
const args = { path: pathFromURL(path), recursive: false };
if (options != null) {
if (typeof options.recursive == "boolean") {
args.recursive = options.recursive;
}
if (options.mode) {
args.mode = options.mode;
}
}
return args;
}
function mkdirSync(path, options) {
core.opSync("op_mkdir_sync", mkdirArgs(path, options));
}
async function mkdir(
path,
options,
) {
await core.opAsync("op_mkdir_async", mkdirArgs(path, options));
}
function readDirSync(path) {
return core.opSync("op_read_dir_sync", pathFromURL(path))[
SymbolIterator
]();
}
function readDir(path) {
const array = core.opAsync(
"op_read_dir_async",
pathFromURL(path),
);
return {
async *[SymbolAsyncIterator]() {
yield* await array;
},
};
}
function readLinkSync(path) {
return core.opSync("op_read_link_sync", pathFromURL(path));
}
function readLink(path) {
return core.opAsync("op_read_link_async", pathFromURL(path));
}
function realPathSync(path) {
return core.opSync("op_realpath_sync", pathFromURL(path));
}
function realPath(path) {
return core.opAsync("op_realpath_async", pathFromURL(path));
}
function removeSync(
path,
options = {},
) {
core.opSync("op_remove_sync", {
path: pathFromURL(path),
recursive: !!options.recursive,
});
}
async function remove(
path,
options = {},
) {
await core.opAsync("op_remove_async", {
path: pathFromURL(path),
recursive: !!options.recursive,
});
}
function renameSync(oldpath, newpath) {
core.opSync("op_rename_sync", {
oldpath: pathFromURL(oldpath),
newpath: pathFromURL(newpath),
});
}
async function rename(oldpath, newpath) {
await core.opAsync("op_rename_async", {
oldpath: pathFromURL(oldpath),
newpath: pathFromURL(newpath),
});
}
function parseFileInfo(response) {
const unix = build.os === "darwin" || build.os === "linux";
return {
isFile: response.isFile,
isDirectory: response.isDirectory,
isSymlink: response.isSymlink,
size: response.size,
mtime: response.mtime != null ? new Date(response.mtime) : null,
atime: response.atime != null ? new Date(response.atime) : null,
birthtime: response.birthtime != null
? new Date(response.birthtime)
: null,
// Only non-null if on Unix
dev: unix ? response.dev : null,
ino: unix ? response.ino : null,
mode: unix ? response.mode : null,
nlink: unix ? response.nlink : null,
uid: unix ? response.uid : null,
gid: unix ? response.gid : null,
rdev: unix ? response.rdev : null,
blksize: unix ? response.blksize : null,
blocks: unix ? response.blocks : null,
};
}
function fstatSync(rid) {
return parseFileInfo(core.opSync("op_fstat_sync", rid));
}
async function fstat(rid) {
return parseFileInfo(await core.opAsync("op_fstat_async", rid));
}
async function lstat(path) {
const res = await core.opAsync("op_stat_async", {
path: pathFromURL(path),
lstat: true,
});
return parseFileInfo(res);
}
function lstatSync(path) {
const res = core.opSync("op_stat_sync", {
path: pathFromURL(path),
lstat: true,
});
return parseFileInfo(res);
}
async function stat(path) {
const res = await core.opAsync("op_stat_async", {
path: pathFromURL(path),
lstat: false,
});
return parseFileInfo(res);
}
function statSync(path) {
const res = core.opSync("op_stat_sync", {
path: pathFromURL(path),
lstat: false,
});
return parseFileInfo(res);
}
function coerceLen(len) {
if (len == null || len < 0) {
return 0;
}
return len;
}
function ftruncateSync(rid, len) {
core.opSync("op_ftruncate_sync", { rid, len: coerceLen(len) });
}
async function ftruncate(rid, len) {
await core.opAsync("op_ftruncate_async", { rid, len: coerceLen(len) });
}
function truncateSync(path, len) {
core.opSync("op_truncate_sync", { path, len: coerceLen(len) });
}
async function truncate(path, len) {
await core.opAsync("op_truncate_async", { path, len: coerceLen(len) });
}
function umask(mask) {
return core.opSync("op_umask", mask);
}
function linkSync(oldpath, newpath) {
core.opSync("op_link_sync", { oldpath, newpath });
}
async function link(oldpath, newpath) {
await core.opAsync("op_link_async", { oldpath, newpath });
}
function toUnixTimeFromEpoch(value) {
if (value instanceof Date) {
const time = value.valueOf();
const seconds = MathTrunc(time / 1e3);
const nanoseconds = MathTrunc(time - (seconds * 1e3)) * 1e6;
return [
seconds,
nanoseconds,
];
}
const seconds = value;
const nanoseconds = 0;
return [
seconds,
nanoseconds,
];
}
function futimeSync(
rid,
atime,
mtime,
) {
core.opSync("op_futime_sync", {
rid,
atime: toUnixTimeFromEpoch(atime),
mtime: toUnixTimeFromEpoch(mtime),
});
}
async function futime(
rid,
atime,
mtime,
) {
await core.opAsync("op_futime_async", {
rid,
atime: toUnixTimeFromEpoch(atime),
mtime: toUnixTimeFromEpoch(mtime),
});
}
function utimeSync(
path,
atime,
mtime,
) {
core.opSync("op_utime_sync", {
path: pathFromURL(path),
atime: toUnixTimeFromEpoch(atime),
mtime: toUnixTimeFromEpoch(mtime),
});
}
async function utime(
path,
atime,
mtime,
) {
await core.opAsync("op_utime_async", {
path: pathFromURL(path),
atime: toUnixTimeFromEpoch(atime),
mtime: toUnixTimeFromEpoch(mtime),
});
}
function symlinkSync(
oldpath,
newpath,
options,
) {
core.opSync("op_symlink_sync", {
oldpath: pathFromURL(oldpath),
newpath: pathFromURL(newpath),
options,
});
}
async function symlink(
oldpath,
newpath,
options,
) {
await core.opAsync("op_symlink_async", {
oldpath: pathFromURL(oldpath),
newpath: pathFromURL(newpath),
options,
});
}
function fdatasyncSync(rid) {
core.opSync("op_fdatasync_sync", rid);
}
async function fdatasync(rid) {
await core.opAsync("op_fdatasync_async", rid);
}
function fsyncSync(rid) {
core.opSync("op_fsync_sync", rid);
}
async function fsync(rid) {
await core.opAsync("op_fsync_async", rid);
}
function flockSync(rid, exclusive) {
core.opSync("op_flock_sync", rid, exclusive === true);
}
async function flock(rid, exclusive) {
await core.opAsync("op_flock_async", rid, exclusive === true);
}
function funlockSync(rid) {
core.opSync("op_funlock_sync", rid);
}
async function funlock(rid) {
await core.opAsync("op_funlock_async", rid);
}
window.__bootstrap.fs = {
cwd,
chdir,
chmodSync,
chmod,
chown,
chownSync,
copyFile,
copyFileSync,
makeTempFile,
makeTempDir,
makeTempFileSync,
makeTempDirSync,
mkdir,
mkdirSync,
readDir,
readDirSync,
readLinkSync,
readLink,
realPathSync,
realPath,
remove,
removeSync,
renameSync,
rename,
lstat,
lstatSync,
stat,
statSync,
ftruncate,
ftruncateSync,
truncate,
truncateSync,
umask,
link,
linkSync,
fstatSync,
fstat,
futime,
futimeSync,
utime,
utimeSync,
symlink,
symlinkSync,
fdatasync,
fdatasyncSync,
fsync,
fsyncSync,
flock,
flockSync,
funlock,
funlockSync,
};
})(this);
|