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
|
// SPDX-License-Identifier: LGPL-3.0-or-later
//
// Copyright 2019 Hristo Venev
use std::ffi::OsString;
#[cfg(unix)]
use std::os::unix::fs::OpenOptionsExt;
use std::path::{Path, PathBuf};
use std::{fs, io, mem};
#[repr(transparent)]
pub struct Temp {
path: PathBuf,
}
impl Drop for Temp {
fn drop(&mut self) {
if self.path.as_os_str().is_empty() {
return;
}
fs::remove_file(&self.path).expect("failed to clean up temporary file");
}
}
impl Temp {
#[inline]
pub fn path(&self) -> &Path {
&*self.path
}
#[inline]
pub fn leave(mut self) -> PathBuf {
mem::replace(&mut self.path, PathBuf::new())
}
#[inline]
pub fn rename_to(self, to: impl AsRef<Path>) -> io::Result<()> {
fs::rename(self.leave(), to)
}
}
pub struct Writer {
inner: Temp,
file: fs::File,
}
impl Writer {
pub fn new(path: PathBuf) -> io::Result<Self> {
let mut file = fs::OpenOptions::new();
file.create_new(true);
file.append(true);
#[cfg(unix)]
file.mode(0o0600);
let file = file.open(&path)?;
Ok(Self {
inner: Temp { path },
file,
})
}
#[inline]
pub fn file(&mut self) -> &mut fs::File {
&mut self.file
}
#[inline]
pub fn sync_done(self) -> io::Result<Temp> {
self.file.sync_data()?;
Ok(self.inner)
}
#[inline]
pub fn done(self) -> Temp {
self.inner
}
}
pub fn update(path: &Path, data: &[u8]) -> io::Result<()> {
let mut tmp = OsString::from(path);
tmp.push(".tmp");
let mut tmp = Writer::new(PathBuf::from(tmp))?;
io::Write::write_all(tmp.file(), data)?;
tmp.sync_done()?.rename_to(path)
}
#[inline]
pub fn load(path: &impl AsRef<Path>) -> io::Result<Option<Vec<u8>>> {
_load(path.as_ref())
}
fn _load(path: &Path) -> io::Result<Option<Vec<u8>>> {
let mut file = match fs::File::open(&path) {
Ok(file) => file,
Err(e) => {
if e.kind() == io::ErrorKind::NotFound {
return Ok(None);
}
return Err(e);
}
};
let mut data = Vec::new();
io::Read::read_to_end(&mut file, &mut data)?;
Ok(Some(data))
}
|