Skip to content

.NET Standard library providing exclusive lock on file. Additional functionality to acquire this lock with a timeout. Based on Xabe.Filelock: https://github.com/tomaszzmuda/Xabe.FileLock

License

Notifications You must be signed in to change notification settings

axgdev/ResilientFileLock

Folders and files

NameName
Last commit message
Last commit date

Latest commit

author
Axel Garcia
Mar 22, 2019
d3871f9 · Mar 22, 2019

History

24 Commits
Mar 21, 2019
Mar 22, 2019
Mar 15, 2019
Mar 15, 2019
Mar 22, 2019
Mar 22, 2019
Mar 22, 2019
Mar 21, 2019

Repository files navigation

ResilientFileLock

.NET Standard library providing exclusive lock on file. Additional functionality to acquire this lock with a timeout. Based on: Xabe.Filelock. Highly recommended to check out that library first, this library adds timeout possibilities as well as some additional mechanism to ensure it works for different processes in different computers.

Using

Install the ResilientFileLock NuGet package via nuget:

PM> Install-Package ResilientFileLock

Creating file lock:

ILock fileLock = new FileLock(file);
fileLock.TryAcquire(TimeSpan.FromSeconds(15));

This will create lock file with extension ".lock" in the same directory. Example: "/tmp/data.txt" -> "/tmp/data.lock".

Last two parameters are optional, the second last defines if lock should be automatically refreshing before expired. The last one is to provide cancellation.

If file already has lock file, and it time has not expired, method returns false.

Recommended using

using (fileLock = new FileLock(file))
{
    if (await fileLock.TryAcquire(TimeSpan.FromSeconds(15)))
    {
        // file operations here
    }
    else 
    {
        // if lock not acquired
    }
}

Timeout functionality

Similarly to the code above we can await the FileLock until timeout. Note that refreshing the lock could complicate things:

using (fileLock = new FileLock(file))
{
    if (await fileLock
            .WithTimeout(timeoutSpan: TimeSpan.FromSeconds(30), retrySpan: TimeSpan.FromSeconds(1))
            .TryAcquire(TimeSpan.FromSeconds(15)))
    {
        // file operations here
    }
    else 
    {
        // things to do if timeout happens
    }
}

License

ResilientFileLock is licensed under MIT - see License for details.

About

.NET Standard library providing exclusive lock on file. Additional functionality to acquire this lock with a timeout. Based on Xabe.Filelock: https://github.com/tomaszzmuda/Xabe.FileLock

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages