Project

futex

0.01
No release in over 3 years
Low commit activity in last 3 years
Ruby Gem for file-based locking
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

= 5.11.3
= 2.1.2
= 12.3.1
= 4.3.0
= 0.62.0
= 0.3.0
 Project Readme

EO principles respected here DevOps By Rultor.com We recommend RubyMine

Build Status Build status Gem Version Maintainability Yard Docs

Hits-of-Code License

Sometimes you need to synchronize your block of code, but Mutex is too coarse-grained, because it always locks, no matter what objects your code accesses. The Futex (from "file mutex") is more fine-grained and uses a file as an entrance lock to your code.

First, install it:

$ gem install futex

Then, use it like this:

require 'futex'
Futex.new('/tmp/my-file.txt').open do |f|
  IO.write(f, 'Hello, world!')
end

The file /tmp/my-file.txt.lock will be created and used as an entrance lock. It will won't be deleted afterwards.

If you are not planning to write to the file, it is recommended to get a non-exclusive/shared access to it, by providing false to the method open():

require 'futex'
Futex.new('/tmp/my-file.txt').open(false) do |f|
  IO.read(f)
end

For better traceability you can provide a few arguments to the constructor of the Futex class, including:

  • log: an object that implements debug() method, which will receive supplementary messages from the locking mechanism;

  • logging: set it to true if you want to see logs;

  • timeout: the number of seconds to wait for the lock availability (Futex::CantLock exception is raised when the wait is expired);

  • sleep: the number of seconds to wait between attempts to acquire the lock file (the smaller the number, the more responsive is the software, but the higher the load for the file system and the CPU);

  • lock: the absolute path of the lock file;

That's it.

How to contribute

Read these guidelines. Make sure you build is green before you contribute your pull request. You will need to have Ruby 2.3+ and Bundler installed. Then:

$ bundle update
$ bundle exec rake

If it's clean and you don't see any error messages, submit your pull request.