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
use crate::MarineError;
use crate::MarineResult;
use serde_derive::Serialize;
use serde_derive::Deserialize;
use serde_with::serde_as;
use serde_with::skip_serializing_none;
use serde_with::DisplayFromStr;
use std::path::Path;
use std::path::PathBuf;
#[derive(Deserialize, Serialize, Debug, Clone, Default)]
pub struct TomlMarineConfig {
pub modules_dir: Option<PathBuf>,
#[serde(skip_serializing_if = "Vec::is_empty")]
pub module: Vec<TomlMarineNamedModuleConfig>,
pub default: Option<TomlMarineModuleConfig>,
#[serde(skip)]
pub base_path: PathBuf,
}
impl TomlMarineConfig {
pub fn load<P: AsRef<Path>>(path: P) -> MarineResult<Self> {
let path = PathBuf::from(path.as_ref()).canonicalize().map_err(|e| {
MarineError::IOError(format!(
"failed to canonicalize path {}: {}",
path.as_ref().display(),
e
))
})?;
let file_content = std::fs::read(&path).map_err(|e| {
MarineError::IOError(format!("failed to load {}: {}", path.display(), e))
})?;
let mut config: TomlMarineConfig = toml::from_slice(&file_content)?;
let default_base_path = Path::new("/");
config.base_path = path
.canonicalize()
.map_err(|e| {
MarineError::IOError(format!(
"Failed to canonicalize config path {}: {}",
path.display(),
e
))
})?
.parent()
.unwrap_or(default_base_path)
.to_path_buf();
Ok(config)
}
}
#[derive(Deserialize, Serialize, Debug, Clone, Default)]
pub struct TomlMarineNamedModuleConfig {
pub name: String,
#[serde(default)]
pub load_from: Option<PathBuf>,
#[serde(default)]
pub file_name: Option<String>,
#[serde(flatten)]
pub config: TomlMarineModuleConfig,
}
#[serde_as]
#[skip_serializing_none]
#[derive(Deserialize, Serialize, Debug, Clone, Default)]
pub struct TomlMarineModuleConfig {
pub mem_pages_count: Option<u32>,
#[serde_as(as = "Option<DisplayFromStr>")]
#[serde(default)]
pub max_heap_size: Option<bytesize::ByteSize>,
pub logger_enabled: Option<bool>,
pub logging_mask: Option<i32>,
pub wasi: Option<TomlWASIConfig>,
pub mounted_binaries: Option<toml::value::Table>,
}
#[derive(Deserialize, Serialize, Debug, Clone, Default)]
pub struct TomlWASIConfig {
pub preopened_files: Option<Vec<PathBuf>>,
pub envs: Option<toml::value::Table>,
pub mapped_dirs: Option<toml::value::Table>,
}
#[cfg(test)]
mod tests {
use bytesize::ByteSize;
use super::{TomlMarineNamedModuleConfig, TomlMarineModuleConfig, TomlWASIConfig};
#[test]
fn serialize_marine_named_module_config() {
let mut mounted_binaries = toml::value::Table::new();
mounted_binaries.insert(
"curl".to_string(),
toml::Value::String("/usr/local/bin/curl".to_string()),
);
let config = TomlMarineNamedModuleConfig {
name: "name".to_string(),
file_name: Some("file_name".to_string()),
load_from: <_>::default(),
config: TomlMarineModuleConfig {
mem_pages_count: Some(100),
max_heap_size: Some(ByteSize::gib(4)),
logger_enabled: Some(false),
logging_mask: Some(1),
wasi: Some(TomlWASIConfig {
preopened_files: Some(vec!["a".to_string()]),
envs: None,
mapped_dirs: None,
}),
mounted_binaries: Some(mounted_binaries),
},
};
assert!(toml::to_string(&config).is_ok())
}
}