fd-lock

Crates.iofd-lock
lib.rsfd-lock
version4.0.2
sourcesrc
created_at2019-06-28 00:08:41.253765
updated_at2023-12-29 16:59:11.528936
descriptionAdvisory cross-platform lock on a file using a file descriptor to it.
homepage
repositoryhttps://github.com/yoshuawuyts/fd-lock
max_upload_size
id144180
size46,355
Dan Gohman (sunfishcode)

documentation

https://docs.rs/fd-lock

README

fd-lock

crates.io version downloads docs.rs docs

Advisory cross-platform file locks using file descriptors. Adapted from mafintosh/fd-lock.

Note that advisory lock compliance is opt-in, and can freely be ignored by other parties. This means this crate should never be used for security purposes, but solely to coordinate file access.

Examples

Basic usage

use std::io::prelude::*;
use std::fs::File;
use fd_lock::RwLock;

// Lock a file and write to it.
let mut f = RwLock::new(File::open("foo.txt")?);
write!(f.write()?, "chashu cat")?;

// A lock can also be held across multiple operations.
let mut f = f.write()?;
write!(f, "nori cat")?;
write!(f, "bird!")?;

Installation

$ cargo add fd-lock

Safety

This crate uses unsafe on Windows to interface with windows-sys. All invariants have been carefully checked, and are manually enforced.

Contributing

Want to join us? Check out our "Contributing" guide and take a look at some of these issues:

References

License

MIT OR Apache-2.0

Commit count: 85

cargo fmt