Crate dotlock

source ·
Expand description

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

Structs

A created “.lock” file.
Options which can be used to configure how a lock file is created.