1 unstable release
Uses old Rust 2015
0.5.0 | Oct 24, 2018 |
---|
#1394 in Filesystem
26 downloads per month
11KB
142 lines
dotlock
This crate contains support for creating lock files as are used on
various UNIX type systems. This is similar to the lockfile
program
from procmail or the dotlockfile
program
from liblockfile.
Usage
Add this to your Cargo.toml
:
[dependencies]
dotlock = "0"
...and this to your crate root:
extern crate dotlock;
Example
extern crate dotlock;
use std::fs::File;
use std::io::{Write, Read, Seek, SeekFrom};
fn main() {
let mut lock = dotlock::Dotlock::create("some.file.lock").unwrap();
writeln!(lock, "Do not touch this file!").unwrap();
}
lib.rs
:
Create ".lock" files atomically on any filesystem.
This crate contains support for creating lock files as are used on
various UNIX type systems. This is similar to the lockfile
program
from procmail or the dotlockfile
program from liblockfile.
They are called ".lock" files, because they are traditionally named
the same as the file they are referencing with the extension of
.lock
.
The algorithm that is used to create a lock file in an atomic way is as follows:
-
A unique file is created using
tempfile
. -
The destination lock file is created using the
link
system call. This operation is atomic across all filesystems including NFS. The result of this operation is ignored, as success is based on subsequent results. -
Delete the temporary file.
-
The metadata of the destination is retrieved. If this fails, repeat the process.
-
The metadata of the temporary file and the destination lock file are compared. If they are the same file, then we have successfully locked the file. Return the opened file.
-
If the lock file is stale (older than a configured age), delete the existing lock file and retry immediately.
-
Before retrying, sleep briefly (defaults to 5 seconds).
Examples
use dotlock::DotlockOptions;
use std::time::Duration;
let _lock = DotlockOptions::new()
.tries(10)
.pause(Duration::from_secs(1))
.create("database.lock").unwrap();
Dependencies
~1.6–10MB
~96K SLoC