Class: Puppet::Util::Lockfile

Inherits:
Object
  • Object
show all
Defined in:
lib/puppet/util/lockfile.rb

Overview

This class provides a simple API for managing a lock file whose contents are an (optional) String. In addition to querying the basic state (#locked?) of the lock, managing the lock (#lock, #unlock), the contents can be retrieved at any time while the lock is held (#lock_data). This can be used to store pids, messages, etc.

See Also:

Direct Known Subclasses

JsonLockfile

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(file_path) ⇒ Lockfile

Returns a new instance of Lockfile.



14
15
16
# File 'lib/puppet/util/lockfile.rb', line 14

def initialize(file_path)
  @file_path = file_path
end

Instance Attribute Details

#file_pathObject (readonly)

Returns the value of attribute file_path.



12
13
14
# File 'lib/puppet/util/lockfile.rb', line 12

def file_path
  @file_path
end

Instance Method Details

#lock(lock_data = nil) ⇒ boolean

Returns true if lock is successfully acquired, false otherwise.

Returns:

  • (boolean)

    true if lock is successfully acquired, false otherwise.



27
28
29
30
31
32
33
34
# File 'lib/puppet/util/lockfile.rb', line 27

def lock(lock_data = nil)
  Puppet::FileSystem.exclusive_create(@file_path, nil) do |fd|
    fd.print(lock_data)
  end
  true
rescue Errno::EEXIST
  false
end

#lock_dataString

Retrieve the (optional) lock data that was specified at the time the file

was locked.

Returns:

  • (String)

    the data object.



53
54
55
# File 'lib/puppet/util/lockfile.rb', line 53

def lock_data
  File.read(@file_path) if file_locked?
end

#locked?Boolean

Returns:

  • (Boolean)


45
46
47
48
# File 'lib/puppet/util/lockfile.rb', line 45

def locked?
  # delegate logic to a more explicit private method
  file_locked?
end

#unlockObject



36
37
38
39
40
41
42
43
# File 'lib/puppet/util/lockfile.rb', line 36

def unlock
  if locked?
    Puppet::FileSystem.unlink(@file_path)
    true
  else
    false
  end
end