forked from nodejs/node
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfile_system.js
More file actions
1463 lines (1294 loc) · 42.8 KB
/
file_system.js
File metadata and controls
1463 lines (1294 loc) · 42.8 KB
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
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
'use strict';
const {
MathRandom,
ObjectFreeze,
Symbol,
SymbolDispose,
} = primordials;
const {
codes: {
ERR_INVALID_STATE,
},
} = require('internal/errors');
const { validateBoolean } = require('internal/validators');
const { MemoryProvider } = require('internal/vfs/providers/memory');
const path = require('path');
const { isAbsolute, resolve: resolvePath, join: joinPath } = path;
const {
isUnderMountPoint,
getRelativePath,
} = require('internal/vfs/router');
const {
openVirtualFd,
getVirtualFd,
closeVirtualFd,
} = require('internal/vfs/fd');
const {
createENOENT,
createENOTDIR,
createEBADF,
createEISDIR,
} = require('internal/vfs/errors');
const { VirtualReadStream, VirtualWriteStream } = require('internal/vfs/streams');
const { VirtualDir } = require('internal/vfs/dir');
const { emitExperimentalWarning, kEmptyObject } = require('internal/util');
let debug = require('internal/util/debuglog').debuglog('vfs', (fn) => {
debug = fn;
});
// Private symbols
const kProvider = Symbol('kProvider');
const kMountPoint = Symbol('kMountPoint');
const kMounted = Symbol('kMounted');
const kOverlay = Symbol('kOverlay');
const kModuleHooks = Symbol('kModuleHooks');
const kPromises = Symbol('kPromises');
const kVirtualCwd = Symbol('kVirtualCwd');
const kVirtualCwdEnabled = Symbol('kVirtualCwdEnabled');
const kOriginalChdir = Symbol('kOriginalChdir');
const kOriginalCwd = Symbol('kOriginalCwd');
// Lazy-loaded VFS setup
let registerVFS;
let deregisterVFS;
function loadVfsSetup() {
if (!registerVFS) {
const setup = require('internal/vfs/setup');
registerVFS = setup.registerVFS;
deregisterVFS = setup.deregisterVFS;
}
}
/**
* Virtual File System implementation using Provider architecture.
* Wraps a Provider and provides mount point routing and virtual cwd.
*/
class VirtualFileSystem {
/**
* @param {VirtualProvider|object} [providerOrOptions] The provider to use, or options
* @param {object} [options] Configuration options
* @param {boolean} [options.moduleHooks] Whether to enable require/import hooks (default: true)
* @param {boolean} [options.virtualCwd] Whether to enable virtual working directory
* @param {boolean} [options.overlay] Whether to enable overlay mode (only intercept existing files)
* @param {boolean} [options.emitExperimentalWarning] Whether to emit the public VFS experimental warning (default: true)
*/
constructor(providerOrOptions, options = kEmptyObject) {
// Handle case where first arg is options object (no provider)
let provider = null;
if (providerOrOptions !== undefined && providerOrOptions !== null) {
if (typeof providerOrOptions.openSync === 'function') {
// It's a provider
provider = providerOrOptions;
} else if (typeof providerOrOptions === 'object') {
// It's options (no provider specified)
options = providerOrOptions;
provider = null;
}
}
// Validate boolean options
if (options.moduleHooks !== undefined) {
validateBoolean(options.moduleHooks, 'options.moduleHooks');
}
if (options.virtualCwd !== undefined) {
validateBoolean(options.virtualCwd, 'options.virtualCwd');
}
if (options.overlay !== undefined) {
validateBoolean(options.overlay, 'options.overlay');
}
if (options.emitExperimentalWarning !== undefined) {
validateBoolean(options.emitExperimentalWarning, 'options.emitExperimentalWarning');
}
if (options.emitExperimentalWarning !== false) {
emitExperimentalWarning('VirtualFileSystem');
}
this[kProvider] = provider ?? new MemoryProvider();
this[kMountPoint] = null;
this[kMounted] = false;
this[kOverlay] = options.overlay === true;
this[kModuleHooks] = options.moduleHooks !== false;
this[kPromises] = null; // Lazy-initialized
this[kVirtualCwdEnabled] = options.virtualCwd === true;
this[kVirtualCwd] = null; // Set when chdir() is called
this[kOriginalChdir] = null; // Saved process.chdir
this[kOriginalCwd] = null; // Saved process.cwd
}
/**
* Gets the underlying provider.
* @returns {VirtualProvider}
*/
get provider() {
return this[kProvider];
}
/**
* Gets the mount point path, or null if not mounted.
* @returns {string|null}
*/
get mountPoint() {
return this[kMountPoint];
}
/**
* Returns true if VFS is mounted.
* @returns {boolean}
*/
get mounted() {
return this[kMounted];
}
/**
* Returns true if the provider is read-only.
* @returns {boolean}
*/
get readonly() {
return this[kProvider].readonly;
}
/**
* Returns true if overlay mode is enabled.
* In overlay mode, the VFS only intercepts paths that exist in the VFS,
* allowing other paths to fall through to the real file system.
* @returns {boolean}
*/
get overlay() {
return this[kOverlay];
}
/**
* Returns true if virtual working directory is enabled.
* @returns {boolean}
*/
get virtualCwdEnabled() {
return this[kVirtualCwdEnabled];
}
// ==================== Virtual Working Directory ====================
/**
* Gets the virtual current working directory.
* Returns null if no virtual cwd is set.
* @returns {string|null}
*/
cwd() {
if (!this[kVirtualCwdEnabled]) {
throw new ERR_INVALID_STATE('virtual cwd is not enabled');
}
return this[kVirtualCwd];
}
/**
* Sets the virtual current working directory.
* The path must exist in the VFS.
* @param {string} dirPath The directory path to set as cwd
*/
chdir(dirPath) {
if (!this[kVirtualCwdEnabled]) {
throw new ERR_INVALID_STATE('virtual cwd is not enabled');
}
const providerPath = this.#toProviderPath(dirPath);
const stats = this[kProvider].statSync(providerPath);
if (!stats.isDirectory()) {
throw createENOTDIR('chdir', dirPath);
}
// Store the full path (with mount point) as virtual cwd
this[kVirtualCwd] = this.#toMountedPath(providerPath);
}
/**
* Resolves a path relative to the virtual cwd if set.
* If the path is absolute or no virtual cwd is set, returns the path as-is.
* @param {string} inputPath The path to resolve
* @returns {string} The resolved path
*/
resolvePath(inputPath) {
// If path is absolute, return as-is
if (isAbsolute(inputPath)) {
return resolvePath(inputPath);
}
// If virtual cwd is enabled and set, resolve relative to it
if (this[kVirtualCwdEnabled] && this[kVirtualCwd] !== null) {
const resolved = `${this[kVirtualCwd]}/${inputPath}`;
return resolvePath(resolved);
}
// Fall back to resolving the path (will use real cwd)
return resolvePath(inputPath);
}
// ==================== Mount ====================
/**
* Mounts the VFS at a specific path prefix.
* @param {string} prefix The mount point path
* @returns {VirtualFileSystem} The VFS instance for chaining
*/
mount(prefix) {
if (this[kMounted]) {
throw new ERR_INVALID_STATE('VFS is already mounted');
}
this[kMountPoint] = resolvePath(prefix);
this[kMounted] = true;
debug('mount %s overlay=%s moduleHooks=%s virtualCwd=%s',
this[kMountPoint],
this[kOverlay],
this[kModuleHooks],
this[kVirtualCwdEnabled]);
if (this[kModuleHooks]) {
loadVfsSetup();
registerVFS(this);
}
if (this[kVirtualCwdEnabled]) {
this.#hookProcessCwd();
}
return this;
}
/**
* Unmounts the VFS.
*/
unmount() {
debug('unmount %s', this[kMountPoint]);
this.#unhookProcessCwd();
if (this[kModuleHooks]) {
loadVfsSetup();
deregisterVFS(this);
}
this[kMountPoint] = null;
this[kMounted] = false;
this[kVirtualCwd] = null; // Reset virtual cwd on unmount
}
/**
* Disposes of the VFS by unmounting it.
* Supports the Explicit Resource Management proposal (using declaration).
*/
[SymbolDispose]() {
if (this[kMounted]) {
this.unmount();
}
}
/**
* Hooks process.chdir and process.cwd to support virtual cwd.
*/
#hookProcessCwd() {
if (this[kOriginalChdir] !== null) {
return;
}
const vfs = this;
this[kOriginalChdir] = process.chdir;
this[kOriginalCwd] = process.cwd;
process.chdir = function chdir(directory) {
const normalized = resolvePath(directory);
if (vfs.shouldHandle(normalized)) {
vfs.chdir(normalized);
return;
}
return vfs[kOriginalChdir].call(process, directory);
};
process.cwd = function cwd() {
if (vfs[kVirtualCwd] !== null) {
return vfs[kVirtualCwd];
}
return vfs[kOriginalCwd].call(process);
};
}
/**
* Restores original process.chdir and process.cwd.
*/
#unhookProcessCwd() {
if (this[kOriginalChdir] === null) {
return;
}
process.chdir = this[kOriginalChdir];
process.cwd = this[kOriginalCwd];
this[kOriginalChdir] = null;
this[kOriginalCwd] = null;
}
// ==================== Path Resolution ====================
/**
* Converts a mounted path to a provider-relative path.
* @param {string} inputPath The path to convert
* @returns {string} The provider-relative path
*/
#toProviderPath(inputPath) {
if (this[kMounted] && this[kMountPoint]) {
const resolved = this.resolvePath(inputPath);
if (!isUnderMountPoint(resolved, this[kMountPoint])) {
throw createENOENT('open', inputPath);
}
return getRelativePath(resolved, this[kMountPoint]);
}
// Not mounted: paths are provider-internal, keep POSIX format
return path.posix.normalize(inputPath);
}
/**
* Converts a provider-relative path to a mounted path.
* @param {string} providerPath The provider-relative path
* @returns {string} The mounted path
*/
#toMountedPath(providerPath) {
if (this[kMounted] && this[kMountPoint]) {
return joinPath(this[kMountPoint], providerPath);
}
return providerPath;
}
/**
* Checks if a path should be handled by this VFS.
* In mount mode (default), returns true for all paths under the mount point.
* In overlay mode, returns true only if the path exists in the VFS.
* @param {string} inputPath The path to check
* @returns {boolean}
*/
shouldHandle(inputPath) {
if (!this[kMounted] || !this[kMountPoint]) {
return false;
}
const normalized = resolvePath(inputPath);
if (!isUnderMountPoint(normalized, this[kMountPoint])) {
return false;
}
// In overlay mode, only handle if the path exists in VFS
if (this[kOverlay]) {
try {
const providerPath = getRelativePath(normalized, this[kMountPoint]);
const handled = this[kProvider].existsSync(providerPath);
debug('shouldHandle %s -> %s (overlay mount=%s providerPath=%s)',
normalized, handled, this[kMountPoint], providerPath);
return handled;
} catch {
debug('shouldHandle %s -> false (overlay mount=%s providerPath=<error>)',
normalized, this[kMountPoint]);
return false;
}
}
debug('shouldHandle %s -> true (mount=%s)', normalized, this[kMountPoint]);
return true;
}
// ==================== FS Operations (Sync) ====================
/**
* Checks if a path exists synchronously.
* @param {string} filePath The path to check
* @returns {boolean}
*/
existsSync(filePath) {
try {
const providerPath = this.#toProviderPath(filePath);
return this[kProvider].existsSync(providerPath);
} catch {
return false;
}
}
/**
* Gets stats for a path synchronously.
* @param {string} filePath The path to stat
* @param {object} [options] Options
* @returns {Stats}
*/
statSync(filePath, options) {
const providerPath = this.#toProviderPath(filePath);
return this[kProvider].statSync(providerPath, options);
}
/**
* Gets stats for a path synchronously without following symlinks.
* @param {string} filePath The path to stat
* @param {object} [options] Options
* @returns {Stats}
*/
lstatSync(filePath, options) {
const providerPath = this.#toProviderPath(filePath);
return this[kProvider].lstatSync(providerPath, options);
}
/**
* Reads a file synchronously.
* @param {string} filePath The path to read
* @param {object|string} [options] Options or encoding
* @returns {Buffer|string}
*/
readFileSync(filePath, options) {
const providerPath = this.#toProviderPath(filePath);
return this[kProvider].readFileSync(providerPath, options);
}
/**
* Writes a file synchronously.
* @param {string} filePath The path to write
* @param {Buffer|string} data The data to write
* @param {object} [options] Options
*/
writeFileSync(filePath, data, options) {
const providerPath = this.#toProviderPath(filePath);
this[kProvider].writeFileSync(providerPath, data, options);
}
/**
* Appends to a file synchronously.
* @param {string} filePath The path to append to
* @param {Buffer|string} data The data to append
* @param {object} [options] Options
*/
appendFileSync(filePath, data, options) {
const providerPath = this.#toProviderPath(filePath);
this[kProvider].appendFileSync(providerPath, data, options);
}
/**
* Reads directory contents synchronously.
* @param {string} dirPath The directory path
* @param {object} [options] Options
* @returns {string[]|Dirent[]}
*/
readdirSync(dirPath, options) {
const providerPath = this.#toProviderPath(dirPath);
const result = this[kProvider].readdirSync(providerPath, options);
// Fix Dirent parentPath from provider-relative to actual VFS path
if (options?.withFileTypes === true) {
const recursive = options?.recursive === true;
for (let i = 0; i < result.length; i++) {
const dirent = result[i];
if (recursive) {
// In recursive mode, name may contain slashes (e.g. 'a/b.txt').
// Fix to basename only and set correct parentPath.
const slashIdx = dirent.name.lastIndexOf('/');
if (slashIdx !== -1) {
const subdir = dirent.name.slice(0, slashIdx);
dirent.parentPath = joinPath(dirPath, subdir);
dirent.name = dirent.name.slice(slashIdx + 1);
} else {
dirent.parentPath = dirPath;
}
} else {
dirent.parentPath = dirPath;
}
}
}
return result;
}
/**
* Creates a directory synchronously.
* @param {string} dirPath The directory path
* @param {object} [options] Options
* @returns {string|undefined}
*/
mkdirSync(dirPath, options) {
const providerPath = this.#toProviderPath(dirPath);
const result = this[kProvider].mkdirSync(providerPath, options);
if (result !== undefined) {
return this.#toMountedPath(result);
}
return undefined;
}
/**
* Removes a directory synchronously.
* @param {string} dirPath The directory path
*/
rmdirSync(dirPath) {
const providerPath = this.#toProviderPath(dirPath);
this[kProvider].rmdirSync(providerPath);
}
/**
* Removes a file synchronously.
* @param {string} filePath The file path
*/
unlinkSync(filePath) {
const providerPath = this.#toProviderPath(filePath);
this[kProvider].unlinkSync(providerPath);
}
/**
* Renames a file or directory synchronously.
* @param {string} oldPath The old path
* @param {string} newPath The new path
*/
renameSync(oldPath, newPath) {
const oldProviderPath = this.#toProviderPath(oldPath);
const newProviderPath = this.#toProviderPath(newPath);
this[kProvider].renameSync(oldProviderPath, newProviderPath);
}
/**
* Copies a file synchronously.
* @param {string} src Source path
* @param {string} dest Destination path
* @param {number} [mode] Copy mode flags
*/
copyFileSync(src, dest, mode) {
const srcProviderPath = this.#toProviderPath(src);
const destProviderPath = this.#toProviderPath(dest);
this[kProvider].copyFileSync(srcProviderPath, destProviderPath, mode);
}
/**
* Gets the real path by resolving all symlinks.
* @param {string} filePath The path
* @param {object} [options] Options
* @returns {string}
*/
realpathSync(filePath, options) {
const providerPath = this.#toProviderPath(filePath);
const realProviderPath = this[kProvider].realpathSync(providerPath, options);
return this.#toMountedPath(realProviderPath);
}
/**
* Reads the target of a symbolic link.
* @param {string} linkPath The symlink path
* @param {object} [options] Options
* @returns {string}
*/
readlinkSync(linkPath, options) {
const providerPath = this.#toProviderPath(linkPath);
return this[kProvider].readlinkSync(providerPath, options);
}
/**
* Creates a symbolic link.
* @param {string} target The symlink target
* @param {string} path The symlink path
* @param {string} [type] The symlink type
*/
symlinkSync(target, path, type) {
const providerPath = this.#toProviderPath(path);
this[kProvider].symlinkSync(target, providerPath, type);
}
/**
* Checks file accessibility synchronously.
* @param {string} filePath The path to check
* @param {number} [mode] Access mode
*/
accessSync(filePath, mode) {
const providerPath = this.#toProviderPath(filePath);
this[kProvider].accessSync(providerPath, mode);
}
/**
* Removes a file or directory synchronously.
* @param {string} filePath The path to remove
* @param {object} [options] Options
* @param {boolean} [options.recursive] If true, remove directories recursively
* @param {boolean} [options.force] If true, ignore ENOENT errors
*/
rmSync(filePath, options) {
const recursive = options?.recursive === true;
const force = options?.force === true;
let stats;
try {
stats = this.lstatSync(filePath);
} catch (err) {
if (force && err?.code === 'ENOENT') return;
throw err;
}
// Symlinks should be unlinked directly, never recursed into
if (stats.isSymbolicLink()) {
this.unlinkSync(filePath);
return;
}
if (stats.isDirectory()) {
if (!recursive) {
throw createEISDIR('rm', filePath);
}
const entries = this.readdirSync(filePath);
for (let i = 0; i < entries.length; i++) {
this.rmSync(joinPath(filePath, entries[i]), options);
}
this.rmdirSync(filePath);
} else {
this.unlinkSync(filePath);
}
}
// ==================== Additional Sync Operations ====================
/**
* Truncates a file synchronously.
* @param {string} filePath The file path
* @param {number} [len] The new length
*/
truncateSync(filePath, len = 0) {
if (len < 0) len = 0;
const providerPath = this.#toProviderPath(filePath);
const handle = this[kProvider].openSync(providerPath, 'r+');
try {
handle.truncateSync(len);
} finally {
handle.closeSync();
}
}
/**
* Truncates a file descriptor synchronously.
* @param {number} fd The file descriptor
* @param {number} [len] The new length
*/
ftruncateSync(fd, len = 0) {
const vfd = getVirtualFd(fd);
if (!vfd) {
throw createEBADF('ftruncate');
}
vfd.entry.truncateSync(len);
}
/**
* Creates a hard link synchronously.
* @param {string} existingPath The existing file path
* @param {string} newPath The new link path
*/
linkSync(existingPath, newPath) {
const existingProviderPath = this.#toProviderPath(existingPath);
const newProviderPath = this.#toProviderPath(newPath);
this[kProvider].linkSync(existingProviderPath, newProviderPath);
}
chmodSync(filePath, mode) {
const providerPath = this.#toProviderPath(filePath);
this[kProvider].chmodSync(providerPath, mode);
}
chownSync(filePath, uid, gid) {
const providerPath = this.#toProviderPath(filePath);
this[kProvider].chownSync(providerPath, uid, gid);
}
utimesSync(filePath, atime, mtime) {
const providerPath = this.#toProviderPath(filePath);
this[kProvider].utimesSync(providerPath, atime, mtime);
}
lutimesSync(filePath, atime, mtime) {
const providerPath = this.#toProviderPath(filePath);
this[kProvider].lutimesSync(providerPath, atime, mtime);
}
/**
* Creates a unique temporary directory synchronously.
* @param {string} prefix The prefix for the temp directory
* @returns {string} The full path of the created directory
*/
mkdtempSync(prefix) {
const providerPrefix = this.#toProviderPath(prefix);
// Generate random 6-character suffix like Node does
const chars = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789';
let suffix = '';
for (let i = 0; i < 6; i++) {
suffix += chars[(MathRandom() * chars.length) | 0];
}
const dirPath = providerPrefix + suffix;
this[kProvider].mkdirSync(dirPath);
return this.#toMountedPath(dirPath);
}
/**
* Opens a directory synchronously.
* @param {string} dirPath The directory path
* @param {object} [options] Options
* @returns {VirtualDir} A directory handle
*/
opendirSync(dirPath, options) {
const entries = this.readdirSync(dirPath, {
withFileTypes: true,
recursive: options?.recursive,
});
return new VirtualDir(dirPath, entries);
}
/**
* Opens a file as a Blob.
* @param {string} filePath The file path
* @param {object} [options] Options
* @returns {Blob} The file content as a Blob
*/
openAsBlob(filePath, options) {
const { Blob } = require('buffer');
const providerPath = this.#toProviderPath(filePath);
const content = this[kProvider].readFileSync(providerPath);
const type = options?.type || '';
return new Blob([content], { type });
}
// ==================== File Descriptor Operations ====================
/**
* Opens a file synchronously and returns a file descriptor.
* @param {string} filePath The path to open
* @param {string} [flags] Open flags
* @param {number} [mode] File mode
* @returns {number} The file descriptor
*/
openSync(filePath, flags = 'r', mode) {
const providerPath = this.#toProviderPath(filePath);
const handle = this[kProvider].openSync(providerPath, flags, mode);
return openVirtualFd(handle);
}
/**
* Closes a file descriptor synchronously.
* @param {number} fd The file descriptor
*/
closeSync(fd) {
const vfd = getVirtualFd(fd);
if (!vfd) {
throw createEBADF('close');
}
vfd.entry.closeSync();
closeVirtualFd(fd);
}
/**
* Reads from a file descriptor synchronously.
* @param {number} fd The file descriptor
* @param {Buffer} buffer The buffer to read into
* @param {number} offset The offset in the buffer
* @param {number} length The number of bytes to read
* @param {number|null} position The position in the file
* @returns {number} The number of bytes read
*/
readSync(fd, buffer, offset, length, position) {
const vfd = getVirtualFd(fd);
if (!vfd) {
throw createEBADF('read');
}
return vfd.entry.readSync(buffer, offset, length, position);
}
/**
* Writes to a file descriptor synchronously.
* @param {number} fd The file descriptor
* @param {Buffer} buffer The buffer to write from
* @param {number} offset The offset in the buffer
* @param {number} length The number of bytes to write
* @param {number|null} position The position in the file
* @returns {number} The number of bytes written
*/
writeSync(fd, buffer, offset, length, position) {
const vfd = getVirtualFd(fd);
if (!vfd) {
throw createEBADF('write');
}
return vfd.entry.writeSync(buffer, offset, length, position);
}
/**
* Gets file stats from a file descriptor synchronously.
* @param {number} fd The file descriptor
* @param {object} [options] Options
* @returns {Stats}
*/
fstatSync(fd, options) {
const vfd = getVirtualFd(fd);
if (!vfd) {
throw createEBADF('fstat');
}
return vfd.entry.statSync(options);
}
// ==================== FS Operations (Async with Callbacks) ====================
/**
* Reads a file asynchronously.
* @param {string} filePath The path to read
* @param {object|string|Function} [options] Options, encoding, or callback
* @param {Function} [callback] Callback (err, data)
*/
readFile(filePath, options, callback) {
if (typeof options === 'function') {
callback = options;
options = undefined;
}
this[kProvider].readFile(this.#toProviderPath(filePath), options)
.then((data) => callback(null, data), (err) => callback(err));
}
/**
* Writes a file asynchronously.
* @param {string} filePath The path to write
* @param {Buffer|string} data The data to write
* @param {object|Function} [options] Options or callback
* @param {Function} [callback] Callback (err)
*/
writeFile(filePath, data, options, callback) {
if (typeof options === 'function') {
callback = options;
options = undefined;
}
this[kProvider].writeFile(this.#toProviderPath(filePath), data, options)
.then(() => callback(null), (err) => callback(err));
}
/**
* Gets stats for a path asynchronously.
* @param {string} filePath The path to stat
* @param {object|Function} [options] Options or callback
* @param {Function} [callback] Callback (err, stats)
*/
stat(filePath, options, callback) {
if (typeof options === 'function') {
callback = options;
options = undefined;
}
this[kProvider].stat(this.#toProviderPath(filePath), options)
.then((stats) => callback(null, stats), (err) => callback(err));
}
/**
* Gets stats without following symlinks asynchronously.
* @param {string} filePath The path to stat
* @param {object|Function} [options] Options or callback
* @param {Function} [callback] Callback (err, stats)
*/
lstat(filePath, options, callback) {
if (typeof options === 'function') {
callback = options;
options = undefined;
}
this[kProvider].lstat(this.#toProviderPath(filePath), options)
.then((stats) => callback(null, stats), (err) => callback(err));
}
/**
* Reads directory contents asynchronously.
* @param {string} dirPath The directory path
* @param {object|Function} [options] Options or callback
* @param {Function} [callback] Callback (err, entries)
*/
readdir(dirPath, options, callback) {
if (typeof options === 'function') {
callback = options;
options = undefined;
}
this[kProvider].readdir(this.#toProviderPath(dirPath), options)
.then((entries) => callback(null, entries), (err) => callback(err));
}
/**
* Gets the real path asynchronously.
* @param {string} filePath The path
* @param {object|Function} [options] Options or callback
* @param {Function} [callback] Callback (err, resolvedPath)
*/
realpath(filePath, options, callback) {
if (typeof options === 'function') {
callback = options;
options = undefined;
}
this[kProvider].realpath(this.#toProviderPath(filePath), options)
.then((realPath) => callback(null, this.#toMountedPath(realPath)), (err) => callback(err));
}
/**
* Reads symlink target asynchronously.
* @param {string} linkPath The symlink path
* @param {object|Function} [options] Options or callback
* @param {Function} [callback] Callback (err, target)
*/
readlink(linkPath, options, callback) {
if (typeof options === 'function') {
callback = options;
options = undefined;
}
this[kProvider].readlink(this.#toProviderPath(linkPath), options)
.then((target) => callback(null, target), (err) => callback(err));
}
/**
* Checks file accessibility asynchronously.
* @param {string} filePath The path to check
* @param {number|Function} [mode] Access mode or callback
* @param {Function} [callback] Callback (err)
*/
access(filePath, mode, callback) {
if (typeof mode === 'function') {
callback = mode;
mode = undefined;
}
this[kProvider].access(this.#toProviderPath(filePath), mode)
.then(() => callback(null), (err) => callback(err));
}
/**
* Opens a file asynchronously.
* @param {string} filePath The path to open
* @param {string|Function} [flags] Open flags or callback
* @param {number|Function} [mode] File mode or callback
* @param {Function} [callback] Callback (err, fd)
*/
open(filePath, flags, mode, callback) {
if (typeof flags === 'function') {
callback = flags;
flags = 'r';
mode = undefined;
} else if (typeof mode === 'function') {
callback = mode;
mode = undefined;
}
const providerPath = this.#toProviderPath(filePath);
this[kProvider].open(providerPath, flags, mode)
.then((handle) => {
const fd = openVirtualFd(handle);
callback(null, fd);
}, (err) => callback(err));
}
/**
* Closes a file descriptor asynchronously.
* @param {number} fd The file descriptor
* @param {Function} callback Callback (err)
*/
close(fd, callback) {
const vfd = getVirtualFd(fd);
if (!vfd) {
process.nextTick(callback, createEBADF('close'));
return;
}
vfd.entry.close()
.then(() => {
closeVirtualFd(fd);
callback(null);