Sha256: 7936b106251d73a64513aaec19bb8cb3ca39b68eafd40f816f42a335b9cc944e

Contents?: true

Size: 795 Bytes

Versions: 2

Compression:

Stored size: 795 Bytes

Contents

require 'fileutils'

module WithAdvisoryLock
  class Flock < Base
    def filename
      @filename ||= begin
        safe = lock_str.to_s.gsub(/[^a-z0-9]/i, '')
        fn = ".lock-#{safe}-#{stable_hashcode(lock_str)}"
        # Let the user specify a directory besides CWD.
        ENV['FLOCK_DIR'] ? File.expand_path(fn, ENV['FLOCK_DIR']) : fn
      end
    end

    def file_io
      @file_io ||= begin
        FileUtils.touch(filename)
        File.open(filename, 'r+')
      end
    end

    def try_lock
      if transaction
        raise ArgumentError, 'transaction level locks are not supported on SQLite'
      end
      0 == file_io.flock((shared ? File::LOCK_SH : File::LOCK_EX) | File::LOCK_NB)
    end

    def release_lock
      0 == file_io.flock(File::LOCK_UN)
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
with_advisory_lock-4.6.0 lib/with_advisory_lock/flock.rb
with_advisory_lock-4.0.0 lib/with_advisory_lock/flock.rb