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
|
#[cfg(unix)]
use std::os::unix::io::{AsRawFd, RawFd};
#[cfg(windows)]
use std::os::windows::io::{AsRawHandle, RawHandle};
use std::{io, path::Path};
use crate::{
buf::{IoBuf, IoBufMut},
driver::{op::Op, shared_fd::SharedFd},
fs::OpenOptions,
};
/// A reference to an open file on the filesystem.
///
/// An instance of a `File` can be read and/or written depending on what options
/// it was opened with. The `File` type provides **positional** read and write
/// operations. The file does not maintain an internal cursor. The caller is
/// required to specify an offset when issuing an operation.
///
/// While files are automatically closed when they go out of scope, the
/// operation happens asynchronously in the background. It is recommended to
/// call the `close()` function in order to guarantee that the file successfully
/// closed before exiting the scope. Closing a file does not guarantee writes
/// have persisted to disk. Use [`sync_all`] to ensure all writes have reached
/// the filesystem.
///
/// [`sync_all`]: File::sync_all
///
/// # Examples
///
/// Creates a new file and write data to it:
///
/// ```no_run
/// use monoio::fs::File;
///
/// #[monoio::main]
/// async fn main() -> Result<(), Box<dyn std::error::Error>> {
/// // Open a file
/// let file = File::create("hello.txt").await?;
///
/// // Write some data
/// let (res, buf) = file.write_at(&b"hello world"[..], 0).await;
/// let n = res?;
///
/// println!("wrote {} bytes", n);
///
/// // Sync data to the file system.
/// file.sync_all().await?;
///
/// // Close the file
/// file.close().await?;
///
/// Ok(())
/// }
/// ```
pub struct File {
/// Open file descriptor
fd: SharedFd,
}
impl File {
/// Attempts to open a file in read-only mode.
///
/// See the [`OpenOptions::open`] method for more details.
///
/// # Errors
///
/// This function will return an error if `path` does not already exist.
/// Other errors may also be returned according to [`OpenOptions::open`].
///
/// # Examples
///
/// ```no_run
/// use monoio::fs::File;
///
/// #[monoio::main]
/// async fn main() -> Result<(), Box<dyn std::error::Error>> {
/// let f = File::open("foo.txt").await?;
///
/// // Close the file
/// f.close().await?;
/// Ok(())
/// }
/// ```
pub async fn open(path: impl AsRef<Path>) -> io::Result<File> {
OpenOptions::new().read(true).open(path).await
}
/// Opens a file in write-only mode.
///
/// This function will create a file if it does not exist,
/// and will truncate it if it does.
///
/// See the [`OpenOptions::open`] function for more details.
///
/// # Examples
///
/// ```no_run
/// use monoio::fs::File;
///
/// #[monoio::main]
/// async fn main() -> Result<(), Box<dyn std::error::Error>> {
/// let f = File::create("foo.txt").await?;
///
/// // Close the file
/// f.close().await?;
/// Ok(())
/// }
/// ```
pub async fn create(path: impl AsRef<Path>) -> io::Result<File> {
OpenOptions::new()
.write(true)
.create(true)
.truncate(true)
.open(path)
.await
}
pub(crate) fn from_shared_fd(fd: SharedFd) -> File {
File { fd }
}
/// Read some bytes at the specified offset from the file into the specified
/// buffer, returning how many bytes were read.
///
/// # Return
///
/// The method returns the operation result and the same buffer value passed
/// as an argument.
///
/// If the method returns [`Ok(n)`], then the read was successful. A nonzero
/// `n` value indicates that the buffer has been filled with `n` bytes of
/// data from the file. If `n` is `0`, then one of the following happened:
///
/// 1. The specified offset is the end of the file.
/// 2. The buffer specified was 0 bytes in length.
///
/// It is not an error if the returned value `n` is smaller than the buffer
/// size, even when the file contains enough data to fill the buffer.
///
/// # Errors
///
/// If this function encounters any form of I/O or other error, an error
/// variant will be returned. The buffer is returned on error.
///
/// # Examples
///
/// ```no_run
/// use monoio::fs::File;
///
/// #[monoio::main]
/// async fn main() -> Result<(), Box<dyn std::error::Error>> {
/// let f = File::open("foo.txt").await?;
/// let buffer = vec![0; 10];
///
/// // Read up to 10 bytes
/// let (res, buffer) = f.read_at(buffer, 0).await;
/// let n = res?;
///
/// println!("The bytes: {:?}", &buffer[..n]);
///
/// // Close the file
/// f.close().await?;
/// Ok(())
/// }
/// ```
pub async fn read_at<T: IoBufMut>(&self, buf: T, pos: u64) -> crate::BufResult<usize, T> {
// Submit the read operation
let op = Op::read_at(&self.fd, buf, pos).unwrap();
op.read().await
}
/// Read the exact number of bytes required to fill `buf` at the specified
/// offset from the file.
///
/// This function reads as many as bytes as necessary to completely fill the
/// specified buffer `buf`.
///
/// # Return
///
/// The method returns the operation result and the same buffer value passed
/// as an argument.
///
/// If the method returns [`Ok(())`], then the read was successful.
///
/// # Errors
///
/// If this function encounters an error of the kind
/// [`ErrorKind::Interrupted`] then the error is ignored and the
/// operation will continue.
///
/// If this function encounters an "end of file" before completely filling
/// the buffer, it returns an error of the kind
/// [`ErrorKind::UnexpectedEof`]. The buffer is returned on error.
///
/// If this function encounters any form of I/O or other error, an error
/// variant will be returned. The buffer is returned on error.
///
/// # Examples
///
/// ```no_run
/// use monoio::fs::File;
///
/// #[monoio::main]
/// async fn main() -> Result<(), Box<dyn std::error::Error>> {
/// let f = File::open("foo.txt").await?;
/// let buffer = vec![0; 10];
///
/// // Read up to 10 bytes
/// let (res, buffer) = f.read_exact_at(buffer, 0).await;
/// res?;
///
/// println!("The bytes: {:?}", buffer);
///
/// // Close the file
/// f.close().await?;
/// Ok(())
/// }
/// ```
///
/// [`ErrorKind::Interrupted`]: std::io::ErrorKind::Interrupted
/// [`ErrorKind::UnexpectedEof`]: std::io::ErrorKind::UnexpectedEof
pub async fn read_exact_at<T: IoBufMut>(
&self,
mut buf: T,
pos: u64,
) -> crate::BufResult<(), T> {
let len = buf.bytes_total();
let mut read = 0;
while read < len {
let slice = unsafe { buf.slice_mut_unchecked(read..len) };
let (res, slice) = self.read_at(slice, pos + read as u64).await;
buf = slice.into_inner();
match res {
Ok(0) => {
return (
Err(io::Error::new(
io::ErrorKind::UnexpectedEof,
"failed to fill whole buffer",
)),
buf,
)
}
Ok(n) => {
read += n;
}
Err(ref e) if e.kind() == io::ErrorKind::Interrupted => {}
Err(e) => return (Err(e), buf),
};
}
(Ok(()), buf)
}
/// Write a buffer into this file at the specified offset, returning how
/// many bytes were written.
///
/// This function will attempt to write the entire contents of `buf`, but
/// the entire write may not succeed, or the write may also generate an
/// error. The bytes will be written starting at the specified offset.
///
/// # Return
///
/// The method returns the operation result and the same buffer value passed
/// in as an argument. A return value of `0` typically means that the
/// underlying file is no longer able to accept bytes and will likely not be
/// able to in the future as well, or that the buffer provided is empty.
///
/// # Errors
///
/// Each call to `write` may generate an I/O error indicating that the
/// operation could not be completed. If an error is returned then no bytes
/// in the buffer were written to this writer.
///
/// It is **not** considered an error if the entire buffer could not be
/// written to this writer.
///
/// # Examples
///
/// ```no_run
/// use monoio::fs::File;
///
/// #[monoio::main]
/// async fn main() -> Result<(), Box<dyn std::error::Error>> {
/// let file = File::create("foo.txt").await?;
///
/// // Writes some prefix of the byte string, not necessarily all of it.
/// let (res, _) = file.write_at(&b"some bytes"[..], 0).await;
/// let n = res?;
///
/// println!("wrote {} bytes", n);
///
/// // Close the file
/// file.close().await?;
/// Ok(())
/// }
/// ```
///
/// [`Ok(n)`]: Ok
pub async fn write_at<T: IoBuf>(&self, buf: T, pos: u64) -> crate::BufResult<usize, T> {
let op = Op::write_at(&self.fd, buf, pos).unwrap();
op.write().await
}
/// Attempts to write an entire buffer into this file at the specified
/// offset.
///
/// This method will continuously call [`write_at`] until there is no more
/// data to be written or an error of non-[`ErrorKind::Interrupted`]
/// kind is returned. This method will not return until the entire
/// buffer has been successfully written or such an error occurs.
///
/// If the buffer contains no data, this will never call [`write_at`].
///
/// # Return
///
/// The method returns the operation result and the same buffer value passed
/// in as an argument.
///
/// # Errors
///
/// This function will return the first error of
/// non-[`ErrorKind::Interrupted`] kind that [`write_at`] returns.
///
/// # Examples
///
/// ```no_run
/// use monoio::fs::File;
///
/// #[monoio::main]
/// async fn main() -> Result<(), Box<dyn std::error::Error>> {
/// let file = File::create("foo.txt").await?;
///
/// // Writes some prefix of the byte string, not necessarily all of it.
/// let (res, _) = file.write_all_at(&b"some bytes"[..], 0).await;
/// res?;
///
/// println!("wrote all bytes");
///
/// // Close the file
/// file.close().await?;
/// Ok(())
/// }
/// ```
///
/// [`write_at`]: File::write_at
/// [`ErrorKind::Interrupted`]: std::io::ErrorKind::Interrupted
pub async fn write_all_at<T: IoBuf>(&self, mut buf: T, pos: u64) -> crate::BufResult<(), T> {
let len = buf.bytes_init();
let mut written = 0;
while written < len {
let slice = unsafe { buf.slice_unchecked(written..len) };
let (res, slice) = self.write_at(slice, pos + written as u64).await;
buf = slice.into_inner();
match res {
Ok(0) => {
return (
Err(io::Error::new(
io::ErrorKind::WriteZero,
"failed to write whole buffer",
)),
buf,
)
}
Ok(n) => written += n,
Err(ref e) if e.kind() == io::ErrorKind::Interrupted => {}
Err(e) => return (Err(e), buf),
};
}
(Ok(()), buf)
}
/// Attempts to sync all OS-internal metadata to disk.
///
/// This function will attempt to ensure that all in-memory data reaches the
/// filesystem before completing.
///
/// This can be used to handle errors that would otherwise only be caught
/// when the `File` is closed. Dropping a file will ignore errors in
/// synchronizing this in-memory data.
///
/// # Examples
///
/// ```no_run
/// use monoio::fs::File;
///
/// #[monoio::main]
/// async fn main() -> Result<(), Box<dyn std::error::Error>> {
/// let f = File::create("foo.txt").await?;
/// let (res, buf) = f.write_at(&b"Hello, world!"[..], 0).await;
/// let n = res?;
///
/// f.sync_all().await?;
///
/// // Close the file
/// f.close().await?;
/// Ok(())
/// }
/// ```
pub async fn sync_all(&self) -> io::Result<()> {
let op = Op::fsync(&self.fd).unwrap();
let completion = op.await;
completion.meta.result?;
Ok(())
}
/// Attempts to sync file data to disk.
///
/// This method is similar to [`sync_all`], except that it may not
/// synchronize file metadata to the filesystem.
///
/// This is intended for use cases that must synchronize content, but don't
/// need the metadata on disk. The goal of this method is to reduce disk
/// operations.
///
/// Note that some platforms may simply implement this in terms of
/// [`sync_all`].
///
/// [`sync_all`]: File::sync_all
///
/// # Examples
///
/// ```no_run
/// use monoio::fs::File;
///
/// #[monoio::main]
/// async fn main() -> Result<(), Box<dyn std::error::Error>> {
/// let f = File::create("foo.txt").await?;
/// let (res, buf) = f.write_at(&b"Hello, world!"[..], 0).await;
/// let n = res?;
///
/// f.sync_data().await?;
///
/// // Close the file
/// f.close().await?;
/// Ok(())
/// }
/// ```
pub async fn sync_data(&self) -> io::Result<()> {
let op = Op::datasync(&self.fd).unwrap();
let completion = op.await;
completion.meta.result?;
Ok(())
}
/// Closes the file.
///
/// The method completes once the close operation has completed,
/// guaranteeing that resources associated with the file have been released.
///
/// If `close` is not called before dropping the file, the file is closed in
/// the background, but there is no guarantee as to **when** the close
/// operation will complete.
///
/// # Examples
///
/// ```no_run
/// use monoio::fs::File;
///
/// #[monoio::main]
/// async fn main() -> Result<(), Box<dyn std::error::Error>> {
/// // Open the file
/// let f = File::open("foo.txt").await?;
/// // Close the file
/// f.close().await?;
///
/// Ok(())
/// }
/// ```
pub async fn close(self) -> io::Result<()> {
self.fd.close().await;
Ok(())
}
}
#[cfg(unix)]
impl AsRawFd for File {
fn as_raw_fd(&self) -> RawFd {
self.fd.raw_fd()
}
}
#[cfg(windows)]
impl AsRawHandle for File {
fn as_raw_handle(&self) -> RawHandle {
self.fd.raw_handle()
}
}
|