-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathlocking.rs
287 lines (260 loc) · 8.02 KB
/
locking.rs
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
#![allow(unused)]
use crate::storage::{layer, Label};
use fs2::*;
use futures::future::Future;
use futures::task::{Context, Poll};
use std::io::Read;
use std::io::{self, SeekFrom};
use std::path::*;
use std::pin::Pin;
use tokio::fs;
use tokio::io::{AsyncRead, AsyncReadExt, AsyncSeekExt, AsyncWrite, AsyncWriteExt, ReadBuf};
use tokio::task::{spawn_blocking, JoinHandle};
pub struct LockedFileLockFuture {
file: Option<std::fs::File>,
spawn: Option<JoinHandle<()>>,
exclusive: bool,
}
impl LockedFileLockFuture {
fn new_shared(file: std::fs::File) -> Self {
Self {
file: Some(file),
spawn: None,
exclusive: false,
}
}
fn new_exclusive(file: std::fs::File) -> Self {
Self {
file: Some(file),
spawn: None,
exclusive: true,
}
}
}
impl Future for LockedFileLockFuture {
type Output = io::Result<std::fs::File>;
fn poll(mut self: Pin<&mut Self>, cx: &mut Context) -> Poll<io::Result<std::fs::File>> {
if self.file.is_some() {
if self.spawn.is_none() {
let file = self
.file
.as_ref()
.unwrap()
.try_clone()
.expect("file clone failed");
let exclusive = self.exclusive;
self.spawn = Some(spawn_blocking(move || {
if exclusive {
file.lock_exclusive()
.expect("failed to acquire exclusive lock")
} else {
if !cfg!(feature = "noreadlock") {
file.lock_shared()
.expect("failed to acquire exclusive lock")
}
}
}));
}
match Pin::new(&mut self.spawn.as_mut().unwrap()).poll(cx) {
Poll::Ready(Ok(_)) => {
let mut file = None;
std::mem::swap(&mut file, &mut self.file);
Poll::Ready(Ok(file.unwrap()))
}
Poll::Pending => Poll::Pending,
Poll::Ready(Err(_)) => {
panic!("polled LockedFileLockFuture outside of a tokio context")
}
}
} else {
panic!("polled LockedFileLockFuture after completion");
}
}
}
#[derive(Debug)]
pub struct LockedFile {
file: Option<fs::File>,
}
impl LockedFile {
pub async fn open<P: 'static + AsRef<Path> + Send>(path: P) -> io::Result<Self> {
let mut file = fs::OpenOptions::new()
.read(true)
.open(path)
.await?
.into_std()
.await;
if !cfg!(feature = "noreadlock") {
file = match file.try_lock_shared() {
Ok(()) => file,
Err(_) => LockedFileLockFuture::new_shared(file).await?,
};
}
Ok(LockedFile {
file: Some(fs::File::from_std(file)),
})
}
pub async fn try_open<P: 'static + AsRef<Path> + Send>(path: P) -> io::Result<Option<Self>> {
match Self::open(path).await {
Ok(f) => Ok(Some(f)),
Err(e) => match e.kind() {
io::ErrorKind::NotFound => Ok(None),
_ => Err(e),
},
}
}
pub async fn create_and_open<P: 'static + AsRef<Path> + Send>(path: P) -> io::Result<Self> {
let path = PathBuf::from(path.as_ref());
match Self::try_open(path.clone()).await? {
Some(file) => Ok(file),
None => {
let mut file = fs::OpenOptions::new()
.write(true)
.truncate(false)
.create(true)
.open(path.clone())
.await?;
file.shutdown().await?;
Self::open(path).await
}
}
}
}
impl AsyncRead for LockedFile {
fn poll_read(
mut self: Pin<&mut Self>,
cx: &mut Context,
buf: &mut ReadBuf,
) -> Poll<io::Result<()>> {
Pin::new(
self.file
.as_mut()
.expect("tried to read from dropped LockedFile"),
)
.poll_read(cx, buf)
}
}
impl Drop for LockedFile {
fn drop(&mut self) {
let mut file = None;
std::mem::swap(&mut file, &mut self.file);
if let Some(file) = file {
file.try_into_std()
.expect("could not convert tokio file into std")
.unlock()
.unwrap();
}
}
}
pub struct ExclusiveLockedFile {
file: Option<fs::File>,
}
impl ExclusiveLockedFile {
pub async fn create_and_open<P: 'static + AsRef<Path> + Send>(path: P) -> io::Result<Self> {
let file = fs::OpenOptions::new()
.create_new(true)
.read(false)
.write(true)
.open(path)
.await?
.into_std()
.await;
let file = match file.try_lock_exclusive() {
Ok(()) => file,
Err(_) => LockedFileLockFuture::new_exclusive(file).await?,
};
Ok(ExclusiveLockedFile {
file: Some(fs::File::from_std(file)),
})
}
pub async fn open<P: 'static + AsRef<Path> + Send>(path: P) -> io::Result<Self> {
let file = fs::OpenOptions::new()
.read(true)
.write(true)
.open(path)
.await?
.into_std()
.await;
let file = match file.try_lock_exclusive() {
Ok(()) => file,
Err(_) => LockedFileLockFuture::new_exclusive(file).await?,
};
Ok(ExclusiveLockedFile {
file: Some(fs::File::from_std(file)),
})
}
pub async fn seek(&mut self, pos: SeekFrom) -> io::Result<u64> {
let file = self
.file
.as_mut()
.expect("tried to truncate a dropped file");
file.seek(pos).await
}
pub async fn truncate(&mut self) -> io::Result<()> {
let file = self
.file
.as_mut()
.expect("tried to truncate a dropped file");
let pos = file.seek(SeekFrom::Current(0)).await?;
file.set_len(pos).await
}
pub async fn sync_all(&mut self) -> io::Result<()> {
let file = self.file.as_mut().expect("tried to sync a dropped file");
file.sync_data().await
}
}
impl AsyncRead for ExclusiveLockedFile {
fn poll_read(
mut self: Pin<&mut Self>,
cx: &mut Context,
buf: &mut ReadBuf,
) -> Poll<io::Result<()>> {
Pin::new(
self.file
.as_mut()
.expect("tried to read from dropped ExclusiveLockedFile"),
)
.poll_read(cx, buf)
}
}
impl AsyncWrite for ExclusiveLockedFile {
fn poll_write(
mut self: Pin<&mut Self>,
cx: &mut Context,
buf: &[u8],
) -> Poll<io::Result<usize>> {
Pin::new(
self.file
.as_mut()
.expect("tried to write to a dropped ExclusiveLockedFile"),
)
.poll_write(cx, buf)
}
fn poll_flush(mut self: Pin<&mut Self>, cx: &mut Context) -> Poll<io::Result<()>> {
Pin::new(
self.file
.as_mut()
.expect("tried to flush a dropped ExclusiveLockedFile"),
)
.poll_flush(cx)
}
fn poll_shutdown(mut self: Pin<&mut Self>, cx: &mut Context) -> Poll<io::Result<()>> {
Pin::new(
self.file
.as_mut()
.expect("tried to shutdown a dropped ExclusiveLockedFile"),
)
.poll_shutdown(cx)
}
}
impl Drop for ExclusiveLockedFile {
fn drop(&mut self) {
let mut file = None;
std::mem::swap(&mut file, &mut self.file);
if let Some(file) = file {
file.try_into_std()
.expect("could not convert tokio file into std")
.unlock()
.unwrap();
}
}
}