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
use serde::Deserialize;
use std::path::{Path, PathBuf};
#[allow(clippy::module_name_repetitions)]
#[derive(Clone, Debug, Deserialize)]
pub struct ModulePath {
pub mounts: Vec<String>,
}
impl ModulePath {
pub fn add(&mut self, path: String) {
self.mounts.push(path)
}
pub fn resolve<S: AsRef<Path> + ?Sized>(&self, rel_file: &S) -> Option<Box<Path>> {
for mount in &self.mounts {
let mut target = PathBuf::new();
target.push(mount);
target.push(rel_file);
if let Ok(meta) = std::fs::metadata(&target) {
if meta.is_file() {
return Some(target.into());
}
}
}
None
}
pub fn file_to_module(rel_file: &str) -> String {
rel_file
.to_string()
.replace(".tremor$", "")
.replace("/", "::")
}
pub fn load() -> Self {
load_(
&std::env::var("TREMOR_PATH").unwrap_or_else(|_| String::from("/opt/local/tremor/lib")),
)
}
}
pub fn load() -> ModulePath {
ModulePath::load()
}
fn load_(tremor_path: &str) -> ModulePath {
let mounts: Vec<String> = tremor_path
.split(':')
.filter_map(|target| {
if let Ok(meta) = std::fs::metadata(target) {
if meta.is_dir() {
Some(target.replace("//", "/"))
} else {
None
}
} else {
None
}
})
.filter(|s| !s.is_empty())
.collect();
ModulePath { mounts }
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_default_module_path() {
let empty: Vec<String> = vec![];
assert_eq!(empty, load_("").mounts)
}
#[test]
fn test_module_path_env_override() {
use std::path::PathBuf;
let mut d = PathBuf::from(env!("CARGO_MANIFEST_DIR"));
d.push("tests/modules");
let tremor_path = format!("{}", d.display());
let empty: Vec<String> = vec![];
let mp = load_(&tremor_path);
assert_ne!(empty, mp.mounts);
assert_eq!(1, mp.mounts.len());
assert_eq!(format!("{}", d.display()).to_string(), mp.mounts[0]);
assert!(mp.resolve("there.tremor").is_some());
assert!(mp.resolve("not_there.tremor").is_none());
assert!(mp.resolve("nest/there.tremor").is_some());
assert!(mp.resolve("nest/not_there.tremor").is_none());
assert!(mp.resolve("nest/nest/there.tremor").is_some());
assert!(mp.resolve("nest/nest/not_there.tremor").is_none());
}
#[test]
fn test_module_path_env_override_bad_segments() {
use std::path::PathBuf;
let mut d = PathBuf::from(env!("CARGO_MANIFEST_DIR"));
d.push("tests/modules");
let tremor_path = format!("{}:snot:badger:/horse", d.display());
let empty: Vec<String> = vec![];
let mp = load_(&tremor_path);
assert_ne!(empty, mp.mounts);
assert_eq!(1, mp.mounts.len());
assert_eq!(format!("{}", d.display()).to_string(), mp.mounts[0]);
}
}