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
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
use fs2::FileExt;
use glob::glob;
use log::{debug, error, info, warn};
use rand::distributions::{Distribution, Uniform};
use reqwest::blocking::{Client, ClientBuilder};
use reqwest::header::ETAG;
use std::default::Default;
use std::env;
use std::fs::{self, OpenOptions};
use std::path::{Path, PathBuf};
use std::thread;
use std::time::{self, Duration};
use tempfile::NamedTempFile;
use crate::archives::{extract_archive, ArchiveFormat};
use crate::utils::hash_str;
use crate::{meta::Meta, Error, ProgressBar};
#[derive(Debug)]
pub struct CacheBuilder {
config: Config,
}
#[derive(Debug)]
struct Config {
dir: Option<PathBuf>,
client_builder: ClientBuilder,
max_retries: u32,
max_backoff: u32,
freshness_lifetime: Option<u64>,
offline: bool,
progress_bar: Option<ProgressBar>,
}
impl CacheBuilder {
pub fn new() -> CacheBuilder {
CacheBuilder {
config: Config {
dir: None,
client_builder: ClientBuilder::new().timeout(None),
max_retries: 3,
max_backoff: 5000,
freshness_lifetime: None,
offline: false,
progress_bar: Some(ProgressBar::default()),
},
}
}
pub fn with_client_builder(client_builder: ClientBuilder) -> CacheBuilder {
CacheBuilder::new().client_builder(client_builder)
}
pub fn dir(mut self, dir: PathBuf) -> CacheBuilder {
self.config.dir = Some(dir);
self
}
pub fn client_builder(mut self, client_builder: ClientBuilder) -> CacheBuilder {
self.config.client_builder = client_builder;
self
}
pub fn timeout(mut self, timeout: Duration) -> CacheBuilder {
self.config.client_builder = self.config.client_builder.timeout(timeout);
self
}
pub fn connect_timeout(mut self, timeout: Duration) -> CacheBuilder {
self.config.client_builder = self.config.client_builder.connect_timeout(timeout);
self
}
pub fn max_retries(mut self, max_retries: u32) -> CacheBuilder {
self.config.max_retries = max_retries;
self
}
pub fn max_backoff(mut self, max_backoff: u32) -> CacheBuilder {
self.config.max_backoff = max_backoff;
self
}
pub fn freshness_lifetime(mut self, freshness_lifetime: u64) -> CacheBuilder {
self.config.freshness_lifetime = Some(freshness_lifetime);
self
}
pub fn offline(mut self, offline: bool) -> CacheBuilder {
self.config.offline = offline;
self
}
pub fn progress_bar(mut self, progress_bar: Option<ProgressBar>) -> CacheBuilder {
self.config.progress_bar = progress_bar;
self
}
pub fn build(self) -> Result<Cache, Error> {
let dir = self.config.dir.unwrap_or_else(|| {
if let Some(dir_str) = env::var_os("RUST_CACHED_PATH_ROOT") {
PathBuf::from(dir_str)
} else {
env::temp_dir().join("cache/")
}
});
let http_client = self.config.client_builder.build()?;
fs::create_dir_all(&dir)?;
Ok(Cache {
dir,
http_client,
max_retries: self.config.max_retries,
max_backoff: self.config.max_backoff,
freshness_lifetime: self.config.freshness_lifetime,
offline: self.config.offline,
progress_bar: self.config.progress_bar,
})
}
}
impl Default for CacheBuilder {
fn default() -> Self {
Self::new()
}
}
#[derive(Default)]
pub struct Options {
pub subdir: Option<String>,
pub extract: bool,
}
impl Options {
pub fn new(subdir: Option<&str>, extract: bool) -> Self {
Self {
subdir: subdir.map(String::from),
extract,
}
}
pub fn subdir(mut self, subdir: &str) -> Self {
self.subdir = Some(subdir.into());
self
}
pub fn extract(mut self) -> Self {
self.extract = true;
self
}
}
#[derive(Debug, Clone)]
pub struct Cache {
pub dir: PathBuf,
max_retries: u32,
max_backoff: u32,
freshness_lifetime: Option<u64>,
offline: bool,
progress_bar: Option<ProgressBar>,
http_client: Client,
}
impl Cache {
pub fn new() -> Result<Self, Error> {
Cache::builder().build()
}
pub fn builder() -> CacheBuilder {
CacheBuilder::new()
}
pub fn cached_path(&self, resource: &str) -> Result<PathBuf, Error> {
self.cached_path_with_options(resource, &Options::default())
}
pub fn cached_path_with_options(
&self,
resource: &str,
options: &Options,
) -> Result<PathBuf, Error> {
let cached_path: PathBuf;
let mut extraction_dir: Option<PathBuf> = None;
if !resource.starts_with("http") {
info!("Treating {} as local file", resource);
cached_path = PathBuf::from(resource);
if !cached_path.is_file() {
return Err(Error::ResourceNotFound(String::from(resource)));
}
if options.extract {
let resource_last_modified = fs::metadata(resource)?
.modified()
.ok()
.and_then(|sys_time| sys_time.elapsed().ok())
.map(|duration| format!("{}", duration.as_secs()));
extraction_dir = Some(self.resource_to_filepath(
resource,
&resource_last_modified,
options.subdir.as_deref(),
Some("-extracted"),
));
}
} else {
let meta = self.fetch_remote_resource(resource, options.subdir.as_deref())?;
if options.extract {
extraction_dir = Some(meta.get_extraction_path());
}
cached_path = meta.resource_path;
}
if let Some(dirpath) = extraction_dir {
debug!("Treating {} as archive", resource);
fs::create_dir_all(&dirpath.parent().unwrap())?;
debug!("Acquiring lock on extraction directory for {}", resource);
let lock_path = format!("{}.lock", dirpath.to_str().unwrap());
let filelock = OpenOptions::new()
.read(true)
.write(true)
.create(true)
.open(lock_path)?;
filelock.lock_exclusive()?;
debug!("Lock on extraction directory acquired for {}", resource);
if !dirpath.is_dir() {
info!("Extracting {} to {:?}", resource, dirpath);
let format = ArchiveFormat::parse_from_extension(resource)?;
extract_archive(&cached_path, &dirpath, &format)?;
}
filelock.unlock()?;
debug!("Lock released on extraction directory for {}", resource);
Ok(dirpath)
} else {
Ok(cached_path)
}
}
#[deprecated(
since = "0.4.4",
note = "Please use Cache::cached_path_with_options() instead"
)]
pub fn cached_path_in_subdir(
&self,
resource: &str,
subdir: Option<&str>,
) -> Result<PathBuf, Error> {
let options = Options::new(subdir, false);
self.cached_path_with_options(resource, &options)
}
fn fetch_remote_resource(&self, resource: &str, subdir: Option<&str>) -> Result<Meta, Error> {
let url =
reqwest::Url::parse(resource).map_err(|_| Error::InvalidUrl(String::from(resource)))?;
if let Some(subdir_path) = subdir {
fs::create_dir_all(&self.dir.join(subdir_path))?;
} else {
fs::create_dir_all(&self.dir)?;
};
let versions = self.find_existing(resource, subdir);
if self.offline {
if !versions.is_empty() {
info!("Found existing cached version of {}", resource);
return Ok(versions[0].clone());
} else {
error!("Offline mode is enabled but no cached versions of resource exist.");
return Err(Error::NoCachedVersions(String::from(resource)));
}
} else if !versions.is_empty() && versions[0].is_fresh(self.freshness_lifetime) {
info!("Latest cached version of {} is still fresh", resource);
return Ok(versions[0].clone());
}
let etag = self.try_get_etag(resource, &url)?;
let path = self.resource_to_filepath(resource, &etag, subdir, None);
debug!("Acquiring lock for cache of {}", resource);
let lock_path = format!("{}.lock", path.to_str().unwrap());
let filelock = OpenOptions::new()
.read(true)
.write(true)
.create(true)
.open(lock_path)?;
filelock.lock_exclusive()?;
debug!("Lock acquired for {}", resource);
if path.exists() {
info!("Cached version of {} is up-to-date", resource);
filelock.unlock()?;
return Meta::from_cache(&path);
}
let meta = self.try_download_resource(resource, &url, &path, &etag)?;
info!("New version of {} cached", resource);
filelock.unlock()?;
debug!("Lock released for {}", resource);
Ok(meta)
}
fn find_existing(&self, resource: &str, subdir: Option<&str>) -> Vec<Meta> {
let mut existing_meta: Vec<Meta> = vec![];
let glob_string = format!(
"{}.*.meta",
self.resource_to_filepath(resource, &None, subdir, None)
.to_str()
.unwrap(),
);
for meta_path in glob(&glob_string).unwrap().filter_map(Result::ok) {
if let Ok(meta) = Meta::from_path(&meta_path) {
existing_meta.push(meta);
}
}
existing_meta
.sort_unstable_by(|a, b| b.creation_time.partial_cmp(&a.creation_time).unwrap());
existing_meta
}
fn get_retry_delay(&self, retries: u32) -> u32 {
let between = Uniform::from(0..1000);
let mut rng = rand::thread_rng();
std::cmp::min(
2u32.pow(retries - 1) * 1000 + between.sample(&mut rng),
self.max_backoff,
)
}
fn try_download_resource(
&self,
resource: &str,
url: &reqwest::Url,
path: &Path,
etag: &Option<String>,
) -> Result<Meta, Error> {
let mut retries: u32 = 0;
loop {
match self.download_resource(resource, url, path, etag) {
Ok(meta) => {
return Ok(meta);
}
Err(err) => {
if retries >= self.max_retries {
error!("Max retries exceeded for {}", resource);
return Err(err);
}
if !err.is_retriable() {
error!("Download failed for {} with fatal error, {}", resource, err);
return Err(err);
}
retries += 1;
let retry_delay = self.get_retry_delay(retries);
warn!(
"Download failed for {}: {}\nRetrying in {} milliseconds...",
resource, err, retry_delay
);
thread::sleep(time::Duration::from_millis(u64::from(retry_delay)));
}
}
}
}
fn download_resource(
&self,
resource: &str,
url: &reqwest::Url,
path: &Path,
etag: &Option<String>,
) -> Result<Meta, Error> {
debug!("Attempting connection to {}", url);
let mut response = self
.http_client
.get(url.clone())
.send()?
.error_for_status()?;
debug!("Opened connection to {}", url);
let tempfile = NamedTempFile::new_in(path.parent().unwrap())?;
let mut tempfile_write_handle = OpenOptions::new().write(true).open(tempfile.path())?;
info!("Starting download of {}", url);
let bytes = if let Some(progress_bar) = &self.progress_bar {
let mut download_wrapper = progress_bar.wrap_download(
resource,
response.content_length(),
tempfile_write_handle,
);
let bytes = response.copy_to(&mut download_wrapper)?;
download_wrapper.finish();
bytes
} else {
response.copy_to(&mut tempfile_write_handle)?
};
info!("Downloaded {} bytes", bytes);
debug!("Writing meta file");
let meta = Meta::new(
String::from(resource),
path.into(),
etag.clone(),
self.freshness_lifetime,
);
meta.to_file()?;
debug!("Renaming temp file to cache location for {}", url);
fs::rename(tempfile.path(), &path)?;
Ok(meta)
}
fn try_get_etag(&self, resource: &str, url: &reqwest::Url) -> Result<Option<String>, Error> {
let mut retries: u32 = 0;
loop {
match self.get_etag(url) {
Ok(etag) => return Ok(etag),
Err(err) => {
if retries >= self.max_retries {
error!("Max retries exceeded for {}", resource);
return Err(err);
}
if !err.is_retriable() {
error!("ETAG fetch for {} failed with fatal error", resource);
return Err(err);
}
retries += 1;
let retry_delay = self.get_retry_delay(retries);
warn!(
"ETAG fetch failed for {}, retrying in {} milliseconds...",
resource, retry_delay
);
thread::sleep(time::Duration::from_millis(u64::from(retry_delay)));
}
}
}
}
fn get_etag(&self, url: &reqwest::Url) -> Result<Option<String>, Error> {
debug!("Fetching ETAG for {}", url);
let response = self
.http_client
.head(url.clone())
.send()?
.error_for_status()?;
if let Some(etag) = response.headers().get(ETAG) {
if let Ok(s) = etag.to_str() {
Ok(Some(s.into()))
} else {
debug!("No ETAG for {}", url);
Ok(None)
}
} else {
Ok(None)
}
}
fn resource_to_filepath(
&self,
resource: &str,
etag: &Option<String>,
subdir: Option<&str>,
suffix: Option<&str>,
) -> PathBuf {
let resource_hash = hash_str(resource);
let mut filename = if let Some(tag) = etag {
let etag_hash = hash_str(&tag[..]);
format!("{}.{}", resource_hash, etag_hash)
} else {
resource_hash
};
if let Some(suf) = suffix {
filename.push_str(suf);
}
let filepath = PathBuf::from(filename);
if let Some(subdir_path) = subdir {
self.dir.join(subdir_path).join(filepath)
} else {
self.dir.join(filepath)
}
}
}
#[cfg(test)]
mod tests {
use super::*;
use tempfile::tempdir;
#[test]
fn test_url_to_filename_with_etag() {
let cache_dir = tempdir().unwrap();
let cache = Cache::builder()
.dir(cache_dir.path().to_owned())
.build()
.unwrap();
let resource = "http://localhost:5000/foo.txt";
let etag = String::from("abcd");
assert_eq!(
cache
.resource_to_filepath(resource, &Some(etag), None, None)
.to_str()
.unwrap(),
format!(
"{}{}{}.{}",
cache_dir.path().to_str().unwrap(),
std::path::MAIN_SEPARATOR,
"b5696dbf866311125e26a62bef0125854dd40f010a70be9cfd23634c997c1874",
"88d4266fd4e6338d13b845fcf289579d209c897823b9217da3e161936f031589"
)
);
}
#[test]
fn test_url_to_filename_no_etag() {
let cache_dir = tempdir().unwrap();
let cache = Cache::builder()
.dir(cache_dir.path().to_owned())
.build()
.unwrap();
let resource = "http://localhost:5000/foo.txt";
assert_eq!(
cache
.resource_to_filepath(resource, &None, None, None)
.to_str()
.unwrap(),
format!(
"{}{}{}",
cache_dir.path().to_str().unwrap(),
std::path::MAIN_SEPARATOR,
"b5696dbf866311125e26a62bef0125854dd40f010a70be9cfd23634c997c1874",
)
);
}
#[test]
fn test_url_to_filename_in_subdir() {
let cache_dir = tempdir().unwrap();
let cache = Cache::builder()
.dir(cache_dir.path().to_owned())
.build()
.unwrap();
let resource = "http://localhost:5000/foo.txt";
assert_eq!(
cache
.resource_to_filepath(resource, &None, Some("target"), None)
.to_str()
.unwrap(),
format!(
"{}{}{}{}{}",
cache_dir.path().to_str().unwrap(),
std::path::MAIN_SEPARATOR,
"target",
std::path::MAIN_SEPARATOR,
"b5696dbf866311125e26a62bef0125854dd40f010a70be9cfd23634c997c1874",
)
);
}
#[test]
fn test_url_to_filename_with_suffix() {
let cache_dir = tempdir().unwrap();
let cache = Cache::builder()
.dir(cache_dir.path().to_owned())
.build()
.unwrap();
let resource = "http://localhost:5000/foo.txt";
assert_eq!(
cache
.resource_to_filepath(resource, &None, Some("target"), Some("-extracted"))
.to_str()
.unwrap(),
format!(
"{}{}{}{}{}-extracted",
cache_dir.path().to_str().unwrap(),
std::path::MAIN_SEPARATOR,
"target",
std::path::MAIN_SEPARATOR,
"b5696dbf866311125e26a62bef0125854dd40f010a70be9cfd23634c997c1874",
)
);
}
}