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
use std::{
path::{Path, PathBuf},
time::Duration,
};
use atelier_core::model::Model;
use reqwest::Url;
use rustc_hash::FxHasher;
use crate::{
config::ModelSource,
error::{Error, Result},
};
const MAX_PARALLEL_DOWNLOADS: u16 = 8;
const CACHED_FILE_MAX_AGE: Duration = Duration::from_secs(60 * 60 * 24);
const SMITHY_CACHE_ENV_VAR: &str = "SMITHY_CACHE";
const SMITHY_CACHE_NO_EXPIRE: &str = "NO_EXPIRE";
pub fn sources_to_model(sources: &[ModelSource], base_dir: &Path, verbose: u8) -> Result<Model> {
let paths = sources_to_paths(sources, base_dir, verbose)?;
let mut assembler = atelier_assembler::ModelAssembler::default();
for path in paths.iter() {
if !path.exists() {
return Err(Error::MissingFile(format!(
"'{}' is not a valid path to a file or directory",
path.display(),
)));
}
let _ = assembler.push(path);
}
let model: Model = assembler
.try_into()
.map_err(|e| Error::Model(format!("assembling model: {:#?}", e)))?;
Ok(model)
}
#[doc(hidden)]
pub(crate) fn sources_to_paths(
sources: &[ModelSource],
base_dir: &Path,
verbose: u8,
) -> Result<Vec<PathBuf>> {
let mut results = Vec::new();
let mut urls = Vec::new();
for source in sources.iter() {
match source {
ModelSource::Path { path, files } => {
let prefix = if path.is_absolute() {
path.to_path_buf()
} else {
base_dir.join(path)
};
if files.is_empty() {
if verbose > 0 {
println!("DEBUG: adding path: {}", &prefix.display());
}
results.push(prefix)
} else {
for file in files.iter() {
let path = prefix.join(file);
if verbose > 0 {
println!("DEBUG: adding path: {}", &path.display());
}
results.push(path);
}
}
}
ModelSource::Url { url, files } => {
if files.is_empty() {
if verbose > 0 {
println!("DEBUG: adding url: {}", url);
}
urls.push(url.to_string());
} else {
for file in files.iter() {
let url = format!(
"{}{}{}",
url,
if !url.ends_with('/') && !file.starts_with('/') { "/" } else { "" },
file
);
if verbose > 0 {
println!("DEBUG: adding url: {}", &url);
}
urls.push(url);
}
}
}
}
}
if !urls.is_empty() {
let cached = urls_to_cached_files(urls)?;
results.extend_from_slice(&cached);
}
Ok(results)
}
fn url_to_cache_path(url: &str) -> Result<PathBuf> {
let origin = url.parse::<Url>().map_err(|e| bad_url(url, e))?;
let host_dir = origin.host_str().ok_or_else(|| bad_url(url, "no-host"))?;
let file_name = PathBuf::from(
origin
.path_segments()
.ok_or_else(|| bad_url(url, "path"))?
.last()
.map(|s| s.to_string())
.ok_or_else(|| bad_url(url, "last-path"))?,
);
let file_stem = file_name
.file_stem()
.map(|s| s.to_str())
.unwrap_or_default()
.unwrap_or("index");
let file_ext = file_name
.extension()
.map(|s| s.to_str())
.unwrap_or_default()
.unwrap_or("raw");
let new_file_name = format!("{}.{:x}.{}", file_stem, hash(origin.path()), file_ext);
let path = PathBuf::from(host_dir).join(new_file_name);
Ok(path)
}
#[doc(hidden)]
pub fn weld_cache_dir() -> Result<PathBuf> {
let dirs = directories::BaseDirs::new()
.ok_or_else(|| Error::Other("invalid home directory".to_string()))?;
let weld_cache = dirs.cache_dir().join("smithy");
Ok(weld_cache)
}
pub fn cache_expired(path: &Path) -> bool {
if let Ok(cache_flag) = std::env::var(SMITHY_CACHE_ENV_VAR) {
if cache_flag == SMITHY_CACHE_NO_EXPIRE {
return false;
}
}
if let Ok(md) = std::fs::metadata(path) {
if let Ok(modified) = md.modified() {
if let Ok(age) = modified.elapsed() {
return age >= CACHED_FILE_MAX_AGE;
}
}
}
true
}
fn urls_to_cached_files(urls: Vec<String>) -> Result<Vec<PathBuf>> {
let mut results = Vec::new();
let mut to_download = Vec::new();
let weld_cache = weld_cache_dir()?;
let tmpdir =
tempfile::tempdir().map_err(|e| Error::Io(format!("creating temp folder: {}", e)))?;
for url in urls.iter() {
let rel_path = url_to_cache_path(url)?;
let cache_path = weld_cache.join(&rel_path);
if cache_path.is_file() && !cache_expired(&cache_path) {
results.push(cache_path);
} else {
let temp_path = tmpdir.path().join(&rel_path);
std::fs::create_dir_all(temp_path.parent().unwrap()).map_err(|e| {
crate::Error::Io(format!(
"creating folder {}: {}",
&temp_path.parent().unwrap().display(),
e,
))
})?;
let dl = downloader::Download::new(url).file_name(&temp_path);
to_download.push(dl);
}
}
if !to_download.is_empty() {
let mut downloader = downloader::Downloader::builder()
.download_folder(tmpdir.path())
.parallel_requests(MAX_PARALLEL_DOWNLOADS)
.build()
.map_err(|e| Error::Other(format!("internal error: download failure: {}", e)))?;
let result = downloader
.download(&to_download)
.map_err(|e| Error::Other(format!("download error: {}", e)))?;
for r in result.iter() {
match r {
Err(e) => {
println!("Failure downloading: {}", e);
}
Ok(summary) => {
for status in summary.status.iter() {
if (200..300).contains(&status.1) {
let downloaded_file = &summary.file_name;
let rel_path = downloaded_file.strip_prefix(&tmpdir).map_err(|e| {
Error::Other(format!("internal download error {}", e))
})?;
let cache_file = weld_cache.join(rel_path);
std::fs::create_dir_all(&cache_file.parent().unwrap()).map_err(
|e| {
Error::Io(format!(
"creating folder {}: {}",
&cache_file.parent().unwrap().display(),
e
))
},
)?;
std::fs::copy(&downloaded_file, &cache_file).map_err(|e| {
Error::Other(format!(
"writing cache file {}: {}",
&cache_file.display(),
e
))
})?;
results.push(cache_file);
break;
} else {
println!("Warning: url '{}' got status {}", status.0, status.1);
}
}
}
};
}
}
if results.len() != urls.len() {
Err(Error::Other(format!(
"Quitting - {} model files could not be downloaded and were not found in the cache. \
If you have previously built this project and are working \"offline\", try setting \
SMITHY_CACHE=NO_EXPIRE in the environment",
urls.len() - results.len()
)))
} else {
Ok(results)
}
}
fn bad_url<E: std::fmt::Display>(s: &str, e: E) -> Error {
Error::Other(format!("bad url {}: {}", s, e))
}
#[cfg(test)]
type TestResult = std::result::Result<(), Box<dyn std::error::Error>>;
#[test]
fn test_cache_path() -> TestResult {
assert_eq!(
"localhost/file.1dc75e4e94bec8fd.smithy",
url_to_cache_path("http://localhost/path/file.smithy")
.unwrap()
.to_str()
.unwrap()
);
assert_eq!(
"localhost/file.cd93a55565eb790a.smithy",
url_to_cache_path("http://localhost/path/to/file.smithy")
.unwrap()
.to_str()
.unwrap(),
"hash changes with path"
);
assert_eq!(
"localhost/file.1dc75e4e94bec8fd.smithy",
url_to_cache_path("http://localhost:8080/path/file.smithy")
.unwrap()
.to_str()
.unwrap(),
"hash is not dependent on port",
);
assert_eq!(
"127.0.0.1/file.1dc75e4e94bec8fd.smithy",
url_to_cache_path("http://127.0.0.1/path/file.smithy")
.unwrap()
.to_str()
.unwrap(),
"hash is not dependent on host",
);
assert_eq!(
"127.0.0.1/foo.3f066558cb61d00f.raw",
url_to_cache_path("http://127.0.0.1/path/foo").unwrap().to_str().unwrap(),
"generate .raw for missing extension",
);
assert_eq!(
"127.0.0.1/index.ce34ccb3ff9b34cd.raw",
url_to_cache_path("http://127.0.0.1/dir/").unwrap().to_str().unwrap(),
"generate index.raw for missing filename",
);
Ok(())
}
fn hash(s: &str) -> u64 {
use std::hash::Hasher;
let mut hasher = FxHasher::default();
hasher.write(s.as_bytes());
hasher.finish()
}
#[test]
fn test_hash() {
assert_eq!(0, hash(""));
assert_eq!(18099358241699475913, hash("hello"));
}