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
use mruby_vfs::{FakeFileSystem, FileSystem};
use std::path::Path;
use crate::{Mrb, MrbError};
pub const RUBY_LOAD_PATH: &str = "/src/lib";
pub type RequireFunc = fn(Mrb) -> Result<(), MrbError>;
pub struct MrbFilesystem {
fs: FakeFileSystem<Metadata>,
}
impl MrbFilesystem {
pub fn new() -> Result<Self, MrbError> {
let fs = FakeFileSystem::new();
fs.create_dir_all(RUBY_LOAD_PATH).map_err(MrbError::Vfs)?;
Ok(Self { fs })
}
pub fn create_dir_all<P: AsRef<Path>>(&self, path: P) -> Result<(), MrbError> {
self.fs.create_dir_all(path.as_ref()).map_err(MrbError::Vfs)
}
pub fn is_file<P: AsRef<Path>>(&self, path: P) -> bool {
self.fs.is_file(path.as_ref())
}
pub fn read_file<P: AsRef<Path>>(&self, path: P) -> Result<Vec<u8>, MrbError> {
self.fs.read_file(path.as_ref()).map_err(MrbError::Vfs)
}
pub fn write_file<P, B>(&self, path: P, buf: B) -> Result<(), MrbError>
where
P: AsRef<Path>,
B: AsRef<[u8]>,
{
self.fs
.write_file(path.as_ref(), buf.as_ref())
.map_err(MrbError::Vfs)
}
pub fn set_metadata<P: AsRef<Path>>(
&self,
path: P,
metadata: Metadata,
) -> Result<(), MrbError> {
self.fs
.set_metadata(path.as_ref(), metadata)
.map_err(MrbError::Vfs)
}
pub fn metadata<P: AsRef<Path>>(&self, path: P) -> Option<Metadata> {
self.fs.metadata(path.as_ref())
}
}
#[derive(Clone, Debug)]
pub struct Metadata {
pub require: Option<RequireFunc>,
already_required: bool,
}
impl Metadata {
pub fn new() -> Self {
Self::default()
}
pub fn mark_required(self) -> Self {
Self {
require: self.require,
already_required: true,
}
}
pub fn is_already_required(&self) -> bool {
self.already_required
}
}
impl Default for Metadata {
fn default() -> Self {
Self {
require: None,
already_required: false,
}
}
}