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
// Unless explicitly stated otherwise all files in this repository are licensed
// under the MIT/Apache-2.0 License, at your convenience
//
// This product includes software developed at Datadog (https://www.datadoghq.com/). Copyright 2020 Datadog, Inc.
//
use crate::{
io::{glommio_file::GlommioFile, read_result::ReadResult, OpenOptions},
GlommioError,
};
use std::{
cell::Ref,
os::unix::io::{AsRawFd, FromRawFd, RawFd},
path::{Path, PathBuf},
};
type Result<T> = crate::Result<T, ()>;
/// An asynchronously accessed file backed by the OS page cache.
///
/// All access uses buffered I/O, and all operations including open and close
/// are asynchronous (with some exceptions noted).
///
/// See the module-level [documentation](index.html) for more details and
/// examples.
#[derive(Debug)]
pub struct BufferedFile {
pub(super) file: GlommioFile,
}
impl AsRawFd for BufferedFile {
fn as_raw_fd(&self) -> RawFd {
self.file.as_raw_fd()
}
}
impl FromRawFd for BufferedFile {
unsafe fn from_raw_fd(fd: RawFd) -> Self {
BufferedFile {
file: GlommioFile::from_raw_fd(fd),
}
}
}
impl BufferedFile {
/// Returns true if the BufferedFile represent the same file on the
/// underlying device.
///
/// Files are considered to be the same if they live in the same file system
/// and have the same Linux inode. Note that based on this rule a
/// symlink is *not* considered to be the same file.
///
/// Files will be considered to be the same if:
/// * A file is opened multiple times (different file descriptors, but same
/// file!)
/// * they are hard links.
///
/// # Examples
///
/// ```no_run
/// use glommio::{io::BufferedFile, LocalExecutor};
/// use std::os::unix::io::AsRawFd;
///
/// let ex = LocalExecutor::default();
/// ex.run(async {
/// let mut wfile = BufferedFile::create("myfile.txt").await.unwrap();
/// let mut rfile = BufferedFile::open("myfile.txt").await.unwrap();
/// // Different objects (OS file descriptors), so they will be different...
/// assert_ne!(wfile.as_raw_fd(), rfile.as_raw_fd());
/// // However they represent the same object.
/// assert!(wfile.is_same(&rfile));
/// wfile.close().await;
/// rfile.close().await;
/// });
/// ```
pub fn is_same(&self, other: &BufferedFile) -> bool {
self.file.is_same(&other.file)
}
/// Similar to [`create`] in the standard library, but returns a
/// `BufferedFile`
///
/// [`create`]: https://doc.rust-lang.org/std/fs/struct.File.html#method.create
pub async fn create<P: AsRef<Path>>(path: P) -> Result<BufferedFile> {
OpenOptions::new()
.write(true)
.create(true)
.truncate(true)
.buffered_open(path.as_ref())
.await
}
/// Similar to [`open`] in the standard library, but returns a
/// `BufferedFile`
///
/// [`open`]: https://doc.rust-lang.org/std/fs/struct.File.html#method.open
pub async fn open<P: AsRef<Path>>(path: P) -> Result<BufferedFile> {
OpenOptions::new()
.read(true)
.buffered_open(path.as_ref())
.await
}
pub(super) async fn open_with_options<'a>(
dir: RawFd,
path: &'a Path,
opdesc: &'static str,
opts: &'a OpenOptions,
) -> Result<BufferedFile> {
let flags = libc::O_CLOEXEC
| opts.get_access_mode()?
| opts.get_creation_mode()?
| (opts.custom_flags as libc::c_int & !libc::O_ACCMODE);
GlommioFile::open_at(dir, path, flags, opts.mode)
.await
.map_err(|source| GlommioError::create_enhanced(source, opdesc, Some(path), None))
.map(|file| BufferedFile { file })
}
/// Write the data in the buffer `buf` to this `BufferedFile` at the
/// specified position
///
/// This method acquires ownership of the buffer so the buffer can be kept
/// alive while the kernel has it.
///
/// Note that it is legal to return fewer bytes than the buffer size. That
/// is the situation, for example, when the device runs out of space
/// (See the man page for `write(2)` for details)
///
/// # Examples
/// ```no_run
/// use glommio::{io::BufferedFile, LocalExecutor};
///
/// let ex = LocalExecutor::default();
/// ex.run(async {
/// let file = BufferedFile::create("test.txt").await.unwrap();
///
/// let mut buf = vec![0, 1, 2, 3];
/// file.write_at(buf, 0).await.unwrap();
/// file.close().await.unwrap();
/// });
/// ```
pub async fn write_at(&self, buf: Vec<u8>, pos: u64) -> Result<usize> {
let source =
self.file
.reactor
.upgrade()
.unwrap()
.write_buffered(self.as_raw_fd(), buf, pos);
source.collect_rw().await.map_err(|source| {
GlommioError::create_enhanced(
source,
"Writing",
self.file.path.borrow().as_ref(),
Some(self.as_raw_fd()),
)
})
}
/// Reads data at the specified position into a buffer allocated by this
/// library.
///
/// Note that this differs from [`DmaFile`]'s read APIs: that reflects the
/// fact that buffered reads need no specific alignment and io_uring will
/// not be able to use its own pre-allocated buffers for it anyway.
///
/// [`DmaFile`]: struct.DmaFile.html
/// Reads from a specific position in the file and returns the buffer.
pub async fn read_at(&self, pos: u64, size: usize) -> Result<ReadResult> {
let source = self.file.reactor.upgrade().unwrap().read_buffered(
self.as_raw_fd(),
pos,
size,
self.file.scheduler.borrow().as_ref(),
);
let read_size = source.collect_rw().await.map_err(|source| {
GlommioError::create_enhanced(
source,
"Reading",
self.file.path.borrow().as_ref(),
Some(self.as_raw_fd()),
)
})?;
Ok(ReadResult::from_sliced_buffer(source, 0, read_size))
}
/// Issues `fdatasync` for the underlying file, instructing the OS to flush
/// all writes to the device, providing durability even if the system
/// crashes or is rebooted.
pub async fn fdatasync(&self) -> Result<()> {
self.file.fdatasync().await.map_err(Into::into)
}
/// pre-allocates space in the filesystem to hold a file at least as big as
/// the size argument.
pub async fn pre_allocate(&self, size: u64) -> Result<()> {
self.file.pre_allocate(size).await.map_err(Into::into)
}
/// Truncates a file to the specified size.
///
/// Note: this syscall might be issued in a background thread depending on
/// the system's capabilities.
pub async fn truncate(&self, size: u64) -> Result<()> {
self.file.truncate(size).await.map_err(Into::into)
}
/// rename this file.
///
/// Note: this syscall might be issued in a background thread depending on
/// the system's capabilities.
pub async fn rename<P: AsRef<Path>>(&mut self, new_path: P) -> Result<()> {
self.file.rename(new_path).await.map_err(Into::into)
}
/// remove this file.
///
/// The file does not have to be closed to be removed. Removing removes
/// the name from the filesystem but the file will still be accessible for
/// as long as it is open.
///
/// Note: this syscall might be issued in a background thread depending on
/// the system's capabilities.
pub async fn remove(&self) -> Result<()> {
self.file.remove().await.map_err(Into::into)
}
/// Returns the size of a file, in bytes.
pub async fn file_size(&self) -> Result<u64> {
self.file.file_size().await.map_err(Into::into)
}
/// Closes this file.
pub async fn close(self) -> Result<()> {
self.file.close().await.map_err(Into::into)
}
/// Returns an `Option` containing the path associated with this open
/// directory, or `None` if there isn't one.
pub fn path(&self) -> Option<Ref<'_, Path>> {
self.file.path()
}
pub(crate) fn discard(self) -> (RawFd, Option<PathBuf>) {
self.file.discard()
}
}
#[cfg(test)]
mod test {
use super::*;
use crate::io::dma_file::test::make_test_directories;
macro_rules! buffered_file_test {
( $name:ident, $dir:ident, $kind:ident, $code:block) => {
#[test]
fn $name() {
for dir in make_test_directories(&format!("buffered-{}", stringify!($name))) {
let $dir = dir.path.clone();
let $kind = dir.kind;
test_executor!(async move { $code });
}
}
};
}
macro_rules! check_contents {
( $buf:expr, $start:expr ) => {
for (idx, i) in $buf.iter().enumerate() {
assert_eq!(*i, ($start + (idx as u64)) as u8);
}
};
}
buffered_file_test!(file_create_close, path, _k, {
let new_file = BufferedFile::create(path.join("testfile"))
.await
.expect("failed to create file");
new_file.close().await.expect("failed to close file");
std::assert!(path.join("testfile").exists());
});
buffered_file_test!(file_open, path, _k, {
let new_file = BufferedFile::create(path.join("testfile"))
.await
.expect("failed to create file");
new_file.close().await.expect("failed to close file");
let file = BufferedFile::open(path.join("testfile"))
.await
.expect("failed to open file");
file.close().await.expect("failed to close file");
std::assert!(path.join("testfile").exists());
let stats = crate::executor().io_stats();
assert_eq!(stats.all_rings().files_opened(), 2);
assert_eq!(stats.all_rings().files_closed(), 2);
});
buffered_file_test!(file_open_nonexistent, path, _k, {
BufferedFile::open(path.join("testfile"))
.await
.expect_err("opened nonexistent file");
std::assert!(!path.join("testfile").exists());
});
buffered_file_test!(random_io, path, _k, {
let writer = BufferedFile::create(path.join("testfile")).await.unwrap();
let reader = BufferedFile::open(path.join("testfile")).await.unwrap();
let wb = vec![0, 1, 2, 3, 4, 5];
let r = writer.write_at(wb, 0).await.unwrap();
assert_eq!(r, 6);
let rb = reader.read_at(0, 6).await.unwrap();
assert_eq!(rb.len(), 6);
check_contents!(*rb, 0);
// Can read again from the same position
let rb = reader.read_at(0, 6).await.unwrap();
assert_eq!(rb.len(), 6);
check_contents!(*rb, 0);
// Can read again from a random, unaligned position, and will hit
// EOF.
let rb = reader.read_at(3, 6).await.unwrap();
assert_eq!(rb.len(), 3);
check_contents!(rb[0..3], 3);
writer.close().await.unwrap();
reader.close().await.unwrap();
let stats = crate::executor().io_stats();
assert_eq!(stats.all_rings().files_opened(), 2);
assert_eq!(stats.all_rings().files_closed(), 2);
assert_eq!(stats.all_rings().file_buffered_reads(), (3, 15));
assert_eq!(stats.all_rings().file_buffered_writes(), (1, 6));
});
buffered_file_test!(write_past_end, path, _k, {
let writer = BufferedFile::create(path.join("testfile")).await.unwrap();
let reader = BufferedFile::open(path.join("testfile")).await.unwrap();
let rb = reader.read_at(0, 6).await.unwrap();
assert_eq!(rb.len(), 0);
let wb = vec![0, 1, 2, 3, 4, 5];
let r = writer.write_at(wb, 10).await.unwrap();
assert_eq!(r, 6);
let rb = reader.read_at(0, 6).await.unwrap();
assert_eq!(rb.len(), 6);
for i in rb.iter() {
assert_eq!(*i, 0);
}
let rb = reader.read_at(10, 6).await.unwrap();
assert_eq!(rb.len(), 6);
check_contents!(*rb, 0);
writer.close().await.unwrap();
reader.close().await.unwrap();
});
}