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
#[cfg(test)]
#[macro_use]
extern crate pretty_assertions;
use std::any::Any;
use std::ffi::OsString;
use std::fmt;
use std::io;
use std::ops::Deref;
use std::path::{Path, PathBuf};
use std::pin::Pin;
use std::task::Context;
use std::task::Poll;
use thiserror::Error;
pub mod arc_box_file;
pub mod arc_file;
pub mod arc_fs;
pub mod builder;
pub mod combine_file;
pub mod dual_write_file;
pub mod empty_fs;
#[cfg(feature = "host-fs")]
pub mod host_fs;
pub mod mem_fs;
pub mod null_file;
pub mod passthru_fs;
pub mod random_file;
pub mod special_file;
pub mod tmp_fs;
pub mod union_fs;
pub mod zero_file;
mod filesystems;
pub(crate) mod ops;
mod overlay_fs;
pub mod pipe;
#[cfg(feature = "static-fs")]
pub mod static_fs;
#[cfg(feature = "webc-fs")]
pub mod webc_fs;
pub use arc_box_file::*;
pub use arc_file::*;
pub use arc_fs::*;
pub use builder::*;
pub use combine_file::*;
pub use dual_write_file::*;
pub use empty_fs::*;
pub use filesystems::FileSystems;
pub use null_file::*;
pub use overlay_fs::OverlayFileSystem;
pub use passthru_fs::*;
pub use pipe::*;
pub use special_file::*;
pub use tmp_fs::*;
pub use union_fs::*;
pub use zero_file::*;
pub type Result<T> = std::result::Result<T, FsError>;
pub use tokio::io::ReadBuf;
pub use tokio::io::{AsyncRead, AsyncReadExt};
pub use tokio::io::{AsyncSeek, AsyncSeekExt};
pub use tokio::io::{AsyncWrite, AsyncWriteExt};
pub trait ClonableVirtualFile: VirtualFile + Clone {}
pub trait FileSystem: fmt::Debug + Send + Sync + 'static + Upcastable {
fn read_dir(&self, path: &Path) -> Result<ReadDir>;
fn create_dir(&self, path: &Path) -> Result<()>;
fn remove_dir(&self, path: &Path) -> Result<()>;
fn rename(&self, from: &Path, to: &Path) -> Result<()>;
fn metadata(&self, path: &Path) -> Result<Metadata>;
fn symlink_metadata(&self, path: &Path) -> Result<Metadata> {
self.metadata(path)
}
fn remove_file(&self, path: &Path) -> Result<()>;
fn new_open_options(&self) -> OpenOptions;
}
impl dyn FileSystem + 'static {
#[inline]
pub fn downcast_ref<T: 'static>(&'_ self) -> Option<&'_ T> {
self.upcast_any_ref().downcast_ref::<T>()
}
#[inline]
pub fn downcast_mut<T: 'static>(&'_ mut self) -> Option<&'_ mut T> {
self.upcast_any_mut().downcast_mut::<T>()
}
}
impl<D, F> FileSystem for D
where
D: Deref<Target = F> + std::fmt::Debug + Send + Sync + 'static,
F: FileSystem + ?Sized,
{
fn read_dir(&self, path: &Path) -> Result<ReadDir> {
(**self).read_dir(path)
}
fn create_dir(&self, path: &Path) -> Result<()> {
(**self).create_dir(path)
}
fn remove_dir(&self, path: &Path) -> Result<()> {
(**self).remove_dir(path)
}
fn rename(&self, from: &Path, to: &Path) -> Result<()> {
(**self).rename(from, to)
}
fn metadata(&self, path: &Path) -> Result<Metadata> {
(**self).metadata(path)
}
fn remove_file(&self, path: &Path) -> Result<()> {
(**self).remove_file(path)
}
fn new_open_options(&self) -> OpenOptions {
(**self).new_open_options()
}
}
pub trait FileOpener {
fn open(
&self,
path: &Path,
conf: &OpenOptionsConfig,
) -> Result<Box<dyn VirtualFile + Send + Sync + 'static>>;
}
#[derive(Debug, Clone)]
pub struct OpenOptionsConfig {
pub read: bool,
pub write: bool,
pub create_new: bool,
pub create: bool,
pub append: bool,
pub truncate: bool,
}
impl OpenOptionsConfig {
pub fn minimum_rights(&self, parent_rights: &Self) -> Self {
Self {
read: parent_rights.read && self.read,
write: parent_rights.write && self.write,
create_new: parent_rights.create_new && self.create_new,
create: parent_rights.create && self.create,
append: parent_rights.append && self.append,
truncate: parent_rights.truncate && self.truncate,
}
}
pub const fn read(&self) -> bool {
self.read
}
pub const fn write(&self) -> bool {
self.write
}
pub const fn create_new(&self) -> bool {
self.create_new
}
pub const fn create(&self) -> bool {
self.create
}
pub const fn append(&self) -> bool {
self.append
}
pub const fn truncate(&self) -> bool {
self.truncate
}
pub const fn would_mutate(&self) -> bool {
let OpenOptionsConfig {
read: _,
write,
create_new,
create,
append,
truncate,
} = *self;
append || write || create || create_new || truncate
}
}
impl<'a> fmt::Debug for OpenOptions<'a> {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
self.conf.fmt(f)
}
}
pub struct OpenOptions<'a> {
opener: &'a dyn FileOpener,
conf: OpenOptionsConfig,
}
impl<'a> OpenOptions<'a> {
pub fn new(opener: &'a dyn FileOpener) -> Self {
Self {
opener,
conf: OpenOptionsConfig {
read: false,
write: false,
create_new: false,
create: false,
append: false,
truncate: false,
},
}
}
pub fn get_config(&self) -> OpenOptionsConfig {
self.conf.clone()
}
pub fn options(&mut self, options: OpenOptionsConfig) -> &mut Self {
self.conf = options;
self
}
pub fn read(&mut self, read: bool) -> &mut Self {
self.conf.read = read;
self
}
pub fn write(&mut self, write: bool) -> &mut Self {
self.conf.write = write;
self
}
pub fn append(&mut self, append: bool) -> &mut Self {
self.conf.append = append;
self
}
pub fn truncate(&mut self, truncate: bool) -> &mut Self {
self.conf.truncate = truncate;
self
}
pub fn create(&mut self, create: bool) -> &mut Self {
self.conf.create = create;
self
}
pub fn create_new(&mut self, create_new: bool) -> &mut Self {
self.conf.create_new = create_new;
self
}
pub fn open<P: AsRef<Path>>(
&mut self,
path: P,
) -> Result<Box<dyn VirtualFile + Send + Sync + 'static>> {
self.opener.open(path.as_ref(), &self.conf)
}
}
pub trait VirtualFile:
fmt::Debug + AsyncRead + AsyncWrite + AsyncSeek + Unpin + Upcastable
{
fn last_accessed(&self) -> u64;
fn last_modified(&self) -> u64;
fn created_time(&self) -> u64;
fn size(&self) -> u64;
fn set_len(&mut self, new_size: u64) -> Result<()>;
fn unlink(&mut self) -> Result<()>;
fn is_open(&self) -> bool {
true
}
fn get_special_fd(&self) -> Option<u32> {
None
}
fn poll_read_ready(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<usize>>;
fn poll_write_ready(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<usize>>;
}
pub trait Upcastable {
fn upcast_any_ref(&'_ self) -> &'_ dyn Any;
fn upcast_any_mut(&'_ mut self) -> &'_ mut dyn Any;
fn upcast_any_box(self: Box<Self>) -> Box<dyn Any>;
}
impl<T: Any + fmt::Debug + 'static> Upcastable for T {
#[inline]
fn upcast_any_ref(&'_ self) -> &'_ dyn Any {
self
}
#[inline]
fn upcast_any_mut(&'_ mut self) -> &'_ mut dyn Any {
self
}
#[inline]
fn upcast_any_box(self: Box<Self>) -> Box<dyn Any> {
self
}
}
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
pub enum StdioMode {
Piped,
Inherit,
Null,
Log,
}
#[derive(Error, Copy, Clone, Debug, PartialEq, Eq)]
pub enum FsError {
#[error("fd not a directory")]
BaseNotDirectory,
#[error("fd not a file")]
NotAFile,
#[error("invalid fd")]
InvalidFd,
#[error("file exists")]
AlreadyExists,
#[error("lock error")]
Lock,
#[error("io error")]
IOError,
#[error("address is in use")]
AddressInUse,
#[error("address could not be found")]
AddressNotAvailable,
#[error("broken pipe (was closed)")]
BrokenPipe,
#[error("connection aborted")]
ConnectionAborted,
#[error("connection refused")]
ConnectionRefused,
#[error("connection reset")]
ConnectionReset,
#[error("operation interrupted")]
Interrupted,
#[error("invalid internal data")]
InvalidData,
#[error("invalid input")]
InvalidInput,
#[error("connection is not open")]
NotConnected,
#[error("entry not found")]
EntryNotFound,
#[error("can't access device")]
NoDevice,
#[error("permission denied")]
PermissionDenied,
#[error("time out")]
TimedOut,
#[error("unexpected eof")]
UnexpectedEof,
#[error("blocking operation. try again")]
WouldBlock,
#[error("write returned 0")]
WriteZero,
#[error("directory not empty")]
DirectoryNotEmpty,
#[error("unknown error found")]
UnknownError,
}
impl From<io::Error> for FsError {
fn from(io_error: io::Error) -> Self {
match io_error.kind() {
io::ErrorKind::AddrInUse => FsError::AddressInUse,
io::ErrorKind::AddrNotAvailable => FsError::AddressNotAvailable,
io::ErrorKind::AlreadyExists => FsError::AlreadyExists,
io::ErrorKind::BrokenPipe => FsError::BrokenPipe,
io::ErrorKind::ConnectionAborted => FsError::ConnectionAborted,
io::ErrorKind::ConnectionRefused => FsError::ConnectionRefused,
io::ErrorKind::ConnectionReset => FsError::ConnectionReset,
io::ErrorKind::Interrupted => FsError::Interrupted,
io::ErrorKind::InvalidData => FsError::InvalidData,
io::ErrorKind::InvalidInput => FsError::InvalidInput,
io::ErrorKind::NotConnected => FsError::NotConnected,
io::ErrorKind::NotFound => FsError::EntryNotFound,
io::ErrorKind::PermissionDenied => FsError::PermissionDenied,
io::ErrorKind::TimedOut => FsError::TimedOut,
io::ErrorKind::UnexpectedEof => FsError::UnexpectedEof,
io::ErrorKind::WouldBlock => FsError::WouldBlock,
io::ErrorKind::WriteZero => FsError::WriteZero,
io::ErrorKind::Other => FsError::IOError,
_ => FsError::UnknownError,
}
}
}
impl From<FsError> for io::Error {
fn from(val: FsError) -> Self {
let kind = match val {
FsError::AddressInUse => io::ErrorKind::AddrInUse,
FsError::AddressNotAvailable => io::ErrorKind::AddrNotAvailable,
FsError::AlreadyExists => io::ErrorKind::AlreadyExists,
FsError::BrokenPipe => io::ErrorKind::BrokenPipe,
FsError::ConnectionAborted => io::ErrorKind::ConnectionAborted,
FsError::ConnectionRefused => io::ErrorKind::ConnectionRefused,
FsError::ConnectionReset => io::ErrorKind::ConnectionReset,
FsError::Interrupted => io::ErrorKind::Interrupted,
FsError::InvalidData => io::ErrorKind::InvalidData,
FsError::InvalidInput => io::ErrorKind::InvalidInput,
FsError::NotConnected => io::ErrorKind::NotConnected,
FsError::EntryNotFound => io::ErrorKind::NotFound,
FsError::PermissionDenied => io::ErrorKind::PermissionDenied,
FsError::TimedOut => io::ErrorKind::TimedOut,
FsError::UnexpectedEof => io::ErrorKind::UnexpectedEof,
FsError::WouldBlock => io::ErrorKind::WouldBlock,
FsError::WriteZero => io::ErrorKind::WriteZero,
FsError::IOError => io::ErrorKind::Other,
FsError::BaseNotDirectory => io::ErrorKind::Other,
FsError::NotAFile => io::ErrorKind::Other,
FsError::InvalidFd => io::ErrorKind::Other,
FsError::Lock => io::ErrorKind::Other,
FsError::NoDevice => io::ErrorKind::Other,
FsError::DirectoryNotEmpty => io::ErrorKind::Other,
FsError::UnknownError => io::ErrorKind::Other,
};
kind.into()
}
}
#[derive(Debug)]
pub struct ReadDir {
data: Vec<DirEntry>,
index: usize,
}
impl ReadDir {
pub fn new(data: Vec<DirEntry>) -> Self {
Self { data, index: 0 }
}
pub fn is_empty(&self) -> bool {
self.data.is_empty()
}
}
#[derive(Debug, Clone)]
pub struct DirEntry {
pub path: PathBuf,
pub metadata: Result<Metadata>,
}
impl DirEntry {
pub fn path(&self) -> PathBuf {
self.path.clone()
}
pub fn metadata(&self) -> Result<Metadata> {
self.metadata.clone()
}
pub fn file_type(&self) -> Result<FileType> {
let metadata = self.metadata.clone()?;
Ok(metadata.file_type())
}
pub fn file_name(&self) -> OsString {
self.path
.file_name()
.unwrap_or(self.path.as_os_str())
.to_owned()
}
}
#[allow(clippy::len_without_is_empty)] #[derive(Clone, Debug, Default)]
pub struct Metadata {
pub ft: FileType,
pub accessed: u64,
pub created: u64,
pub modified: u64,
pub len: u64,
}
impl Metadata {
pub fn is_file(&self) -> bool {
self.ft.is_file()
}
pub fn is_dir(&self) -> bool {
self.ft.is_dir()
}
pub fn accessed(&self) -> u64 {
self.accessed
}
pub fn created(&self) -> u64 {
self.created
}
pub fn modified(&self) -> u64 {
self.modified
}
pub fn file_type(&self) -> FileType {
self.ft.clone()
}
pub fn len(&self) -> u64 {
self.len
}
}
#[derive(Clone, Debug, Default)]
pub struct FileType {
pub dir: bool,
pub file: bool,
pub symlink: bool,
pub char_device: bool,
pub block_device: bool,
pub socket: bool,
pub fifo: bool,
}
impl FileType {
pub fn is_dir(&self) -> bool {
self.dir
}
pub fn is_file(&self) -> bool {
self.file
}
pub fn is_symlink(&self) -> bool {
self.symlink
}
pub fn is_char_device(&self) -> bool {
self.char_device
}
pub fn is_block_device(&self) -> bool {
self.block_device
}
pub fn is_socket(&self) -> bool {
self.socket
}
pub fn is_fifo(&self) -> bool {
self.fifo
}
}
impl Iterator for ReadDir {
type Item = Result<DirEntry>;
fn next(&mut self) -> Option<Result<DirEntry>> {
if let Some(v) = self.data.get(self.index).cloned() {
self.index += 1;
return Some(Ok(v));
}
None
}
}