dotlock 0.5.0

Create .lock files atomically on any filesystem.
Documentation
  • Coverage
  • 100%
    16 out of 16 items documented2 out of 16 items with examples
  • Size
  • Source code size: 20.43 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.33 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 16s Average build duration of successful builds.
  • all releases: 16s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • bruceg/dotlock
    2 1 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • bruceg

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:

  1. A unique file is created using tempfile.

  2. 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.

  3. Delete the temporary file.

  4. The metadata of the destination is retrieved. If this fails, repeat the process.

  5. 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.

  6. If the lock file is stale (older than a configured age), delete the existing lock file and retry immediately.

  7. 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();