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
use std::fs::{self, File};
use std::io;
use std::marker::Unpin;
use std::path::{Path, PathBuf};
use std::sync::Arc;
use futures_executor::block_on;
use futures_io::AsyncRead;
use futures_util::{
io::{copy, AllowStdIo},
stream::TryStreamExt,
};
use rand::Rng;
use super::ExternalStorage;
use tikv_util::stream::error_stream;
const LOCAL_STORAGE_TMP_FILE_SUFFIX: &str = "tmp";
#[derive(Clone)]
pub struct LocalStorage {
base: PathBuf,
base_dir: Arc<File>,
}
impl LocalStorage {
pub fn new(base: &Path) -> io::Result<LocalStorage> {
info!("create local storage"; "base" => base.display());
let base_dir = Arc::new(File::open(base)?);
Ok(LocalStorage {
base: base.to_owned(),
base_dir,
})
}
fn tmp_path(&self, path: &Path) -> PathBuf {
let uid: u64 = rand::thread_rng().gen();
let tmp_suffix = format!("{}{:016x}", LOCAL_STORAGE_TMP_FILE_SUFFIX, uid);
self.base.join(path).with_extension(tmp_suffix)
}
}
fn url_for(base: &Path) -> url::Url {
let mut u = url::Url::parse("local:///").unwrap();
u.set_path(base.to_str().unwrap());
u
}
const STORAGE_NAME: &str = "local";
impl ExternalStorage for LocalStorage {
fn name(&self) -> &'static str {
&STORAGE_NAME
}
fn url(&self) -> io::Result<url::Url> {
Ok(url_for(&self.base.as_path()))
}
fn write(
&self,
name: &str,
reader: Box<dyn AsyncRead + Send + Unpin>,
_content_length: u64,
) -> io::Result<()> {
if Path::new(name)
.parent()
.map_or(true, |p| p.parent().is_some())
{
return Err(io::Error::new(
io::ErrorKind::Other,
format!("[{}] parent is not allowed in storage", name),
));
}
if fs::metadata(self.base.join(name)).is_ok() {
return Err(io::Error::new(
io::ErrorKind::AlreadyExists,
format!("[{}] is already exists in {}", name, self.base.display()),
));
}
let tmp_path = self.tmp_path(Path::new(name));
let mut tmp_f = AllowStdIo::new(File::create(&tmp_path)?);
block_on(copy(reader, &mut tmp_f))?;
tmp_f.into_inner().sync_all()?;
debug!("save file to local storage";
"name" => %name, "base" => %self.base.display());
fs::rename(tmp_path, self.base.join(name))?;
self.base_dir.sync_all()
}
fn read(&self, name: &str) -> Box<dyn AsyncRead + Unpin> {
debug!("read file from local storage";
"name" => %name, "base" => %self.base.display());
match File::open(self.base.join(name)) {
Ok(file) => Box::new(AllowStdIo::new(file)) as _,
Err(e) => Box::new(error_stream(e).into_async_read()) as _,
}
}
}
#[cfg(test)]
mod tests {
use super::*;
use tempfile::Builder;
#[test]
fn test_local_storage() {
let temp_dir = Builder::new().tempdir().unwrap();
let path = temp_dir.path();
let ls = LocalStorage::new(path).unwrap();
let tp = ls.tmp_path(Path::new("t.sst"));
assert_eq!(tp.parent().unwrap(), path);
assert!(tp.file_name().unwrap().to_str().unwrap().starts_with('t'));
assert!(
tp.as_path()
.extension()
.unwrap()
.to_str()
.unwrap()
.starts_with(LOCAL_STORAGE_TMP_FILE_SUFFIX)
);
let magic_contents: &[u8] = b"5678";
let content_length = magic_contents.len() as u64;
ls.write("a.log", Box::new(magic_contents), content_length)
.unwrap();
assert_eq!(fs::read(path.join("a.log")).unwrap(), magic_contents);
ls.write("a/a.log", Box::new(magic_contents), content_length)
.unwrap_err();
ls.write("", Box::new(magic_contents), content_length)
.unwrap_err();
ls.write("/", Box::new(magic_contents), content_length)
.unwrap_err();
}
#[test]
fn test_url_of_backend() {
assert_eq!(url_for(Path::new("/tmp/a")).to_string(), "local:///tmp/a");
}
}