#io #traits #writers #file #extension #drop #close

io-close

An extension trait for safely dropping I/O writers such as File and BufWriter

22 releases

0.3.7 Apr 3, 2021
0.3.6 Apr 2, 2021
0.3.3 Jan 1, 2021
0.3.1 Dec 2, 2020
0.1.9 Nov 22, 2020

#617 in Rust patterns

Download history 31890/week @ 2023-12-06 31707/week @ 2023-12-13 21256/week @ 2023-12-20 17821/week @ 2023-12-27 26072/week @ 2024-01-03 28205/week @ 2024-01-10 30636/week @ 2024-01-17 29618/week @ 2024-01-24 30238/week @ 2024-01-31 27546/week @ 2024-02-07 28464/week @ 2024-02-14 28798/week @ 2024-02-21 29303/week @ 2024-02-28 27798/week @ 2024-03-06 27902/week @ 2024-03-13 25716/week @ 2024-03-20

115,779 downloads per month
Used in 61 crates (4 directly)

MIT/Apache

12KB
154 lines

Please see https://docs.rs/io-close.


lib.rs:

An extension trait for safely dropping I/O writers such as File and BufWriter. Specifically, it is for I/O writers which may contain a resource handle (such as a raw file descriptor), and where the automatic process of closing this handle during drop may generate an unseen I/O error. Using this trait (called Close) these errors can be seen and dealt with.

In the case of Linux the man page for close(2) has the following to say:

Not checking the return value of close() is a common but nevertheless serious programming error. It is quite possible that errors on a previous write(2) operation are first reported at the final close(). Not checking the return value when closing the file may lead to silent loss of data. This can especially be observed with NFS and with disk quota.

Implementations of Close are provided for most standard library I/O writers and (optionally) for a selection of I/O writers defined in external crates.

BufWriter example

use std::io::{BufWriter, Result, Write};
use io_close::Close;

fn main() -> Result<()> {
    let data = b"hello world";
    let mut buffer = BufWriter::new(tempfile::tempfile()?);
    buffer.write_all(data)?;
    buffer.close()?; // safely drop buffer and its contained File
    Ok(())
}

Optional implementations

Optional implementations of Close are provided for the following I/O writers defined in external crates, enabled through cargo features:

Dependencies

~225KB