5 releases

new 0.1.4 Apr 25, 2024
0.1.3 Mar 1, 2024
0.1.2 Nov 30, 2023
0.1.1 Nov 28, 2023
0.1.0 Aug 22, 2023

#85 in Filesystem

Download history 86280/week @ 2024-01-06 89669/week @ 2024-01-13 99587/week @ 2024-01-20 106240/week @ 2024-01-27 103766/week @ 2024-02-03 105065/week @ 2024-02-10 100777/week @ 2024-02-17 106575/week @ 2024-02-24 126965/week @ 2024-03-02 99476/week @ 2024-03-09 63553/week @ 2024-03-16 50691/week @ 2024-03-23 44936/week @ 2024-03-30 43093/week @ 2024-04-06 40602/week @ 2024-04-13 33469/week @ 2024-04-20

168,378 downloads per month
Used in 8 crates (via dias)

BSD-3-Clause

68KB
1K SLoC

Atomic Write File

Crate Documentation License

This is a Rust crate that offers functionality to write and overwrite files atomically, that is: without leaving the file in an intermediate state. Either the new contents of the files are written to the filesystem, or the old contents (if any) are preserved.

This crate implements two main structs: AtomicWriteFile and OpenOptions, which mimic the standard std::fs::File and std::fs::OpenOptions as much as possible.

This crate supports all major platforms, including: Unix systems, Windows, and WASI.

Motivation and Example

Consider the following snippet of code to write a configuration file in JSON format:

use std::io::Write;
use std::fs::File;

let mut file = File::options()
                    .write(true)
                    .create(true)
                    .open("config.json")?;

writeln!(file, "{{")?;
writeln!(file, "  \"key1\": \"value1\",")?;
writeln!(file, "  \"key2\": \"value2\"")?;
writeln!(file, "}}")?;

This code opens a file named config.json, truncates its contents (if the file already existed), and writes the JSON content line-by-line.

If the code is interrupted before all of the writeln! calls are completed (because of a panic, or a signal is received, or the process is killed, or a filesystem error occurs), then the file will be left in a broken state: it will not contain valid JSON data, and the original contents (if any) will be lost.

AtomicWriteFile solves this problem by placing the new contents into the destination file only after it has been completely written to the filesystem. The snippet above can be rewritten using AtomicWriteFile instead of File as follows:

use std::io::Write;
use atomic_write_file::AtomicWriteFile;

let mut file = AtomicWriteFile::options()
                               .open("config.json")?;

writeln!(file, "{{")?;
writeln!(file, "  \"key1\": \"value1\",")?;
writeln!(file, "  \"key2\": \"value2\"")?;
writeln!(file, "}}")?;

file.commit()?;

Note that this code is almost the same as the original, except that it now uses AtomicWriteFile instead of File and there's an additional call to commit().

If the code is interrupted early, before the call to commit(), the original file config.json will be left untouched. Only if the new contents are fully written to the filesystem, config.json will get them.

Documentation

Reference, examples, internal details, and limitations are all available on docs.rs/atomic-write-file.

Dependencies

~2MB
~39K SLoC