Struct gstuff::FileLock

source ·
pub struct FileLock<'a> {
    pub lock_path: &'a dyn AsRef<Path>,
    pub ttl_sec: f64,
    pub file: File,
}
Expand description

Allows several threads or processes to compete for a shared resource by tracking resource ownership with a file.
If the lock file is older than ttl_sec then it is removed, allowing us to recover from a thread or process dying while holding the lock.

Fields§

§lock_path: &'a dyn AsRef<Path>

Filesystem path of the lock file.

§ttl_sec: f64

The time in seconds after which an outdated lock file can be removed.

§file: File

The owned lock file. Removed upon unlock.

Implementations§

source§

impl<'a> FileLock<'a>

source

pub fn lock( lock_path: &'a dyn AsRef<Path>, ttl_sec: f64, ) -> Result<Option<FileLock<'a>>, String>

Tries to obtain a file lock.

No blocking. Returns None if the file already exists and is recent enough (= locked).

The returned structure will automatically remove the lock file when dropped.

if let Some (lock) = try_s! (FileLock::lock (&"something.lock", 600.)) {
  // ... Your code here ...
  drop (lock)
}

Trait Implementations§

source§

impl<'a> Debug for FileLock<'a>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'a> Drop for FileLock<'a>

source§

fn drop(&mut self)

Executes the destructor for this type. Read more

Auto Trait Implementations§

§

impl<'a> Freeze for FileLock<'a>

§

impl<'a> !RefUnwindSafe for FileLock<'a>

§

impl<'a> !Send for FileLock<'a>

§

impl<'a> !Sync for FileLock<'a>

§

impl<'a> Unpin for FileLock<'a>

§

impl<'a> !UnwindSafe for FileLock<'a>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.