#lock #file #locking

lockfile

Create lockfiles that remove themselves when they are dropped

6 releases (3 breaking)

0.4.0 Sep 12, 2022
0.3.0 Sep 9, 2021
0.2.2 Feb 19, 2020
0.2.1 Jun 3, 2018
0.1.0 May 28, 2018

#847 in Filesystem

Download history 262/week @ 2023-12-18 177/week @ 2023-12-25 122/week @ 2024-01-01 200/week @ 2024-01-08 74/week @ 2024-01-15 93/week @ 2024-01-22 254/week @ 2024-01-29 153/week @ 2024-02-05 188/week @ 2024-02-12 243/week @ 2024-02-19 244/week @ 2024-02-26 241/week @ 2024-03-04 190/week @ 2024-03-11 106/week @ 2024-03-18 110/week @ 2024-03-25 255/week @ 2024-04-01

691 downloads per month
Used in 8 crates (4 directly)

MIT/Apache-2.0/ISC

11KB
175 lines

lockfile-rs

A (work in progress) library for creating and locking lockfiles.

See tests::smoke for a guide to how it works.


lib.rs:

This crate provides a lockfile struct that marks a location in the filesystem as locked.

A lock is conceptually created when the file is created, and released when it is deleted.

If the file is already present, the create function will fail.

Examples

use lockfile::Lockfile;

const PATH: &str = "/tmp/some_file/s8329894";
let lockfile = Lockfile::create(PATH).unwrap();
assert_eq!(lockfile.path(), Path::new(PATH));
lockfile.release()?; // or just let the lockfile be dropped
// File has been unlinked/deleted.
assert_eq!(fs::metadata(PATH).unwrap_err().kind(),
           io::ErrorKind::NotFound);

Dependencies

~22KB