Class: Puppet::Util::JsonLockfile

Inherits:
Lockfile show all
Defined in:
lib/puppet/util/json_lockfile.rb

Overview

This class provides a simple API for managing a lock file whose contents are a serialized JSON object. 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 structured data (state messages, etc.) about the lock.

See Also:

Instance Attribute Summary

Attributes inherited from Lockfile

#file_path

Instance Method Summary collapse

Methods inherited from Lockfile

#initialize, #locked?, #unlock

Constructor Details

This class inherits a constructor from Puppet::Util::Lockfile

Instance Method Details

#lock(lock_data = nil) ⇒ boolean

Lock the lockfile. You may optionally pass a data object, which will be retrievable for the duration of time during which the file is locked.

Parameters:

  • lock_data (Hash) (defaults to: nil)

    an optional Hash of data to associate with the lock. This may be used to store pids, descriptive messages, etc. The data may be retrieved at any time while the lock is held by calling the #lock_data method. NOTE that the JSON serialization does NOT support Symbol objects–if you pass them in, they will be serialized as Strings, so you should plan accordingly.

Returns:

  • (boolean)

    true if lock is successfully acquired, false otherwise.



25
26
27
28
29
# File 'lib/puppet/util/json_lockfile.rb', line 25

def lock(lock_data = nil)
  return false if locked?

  super(Puppet::Util::Json.dump(lock_data))
end

#lock_dataObject

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

was locked.

Returns:

  • (Object)

    the data object. Remember that the serialization does not support Symbol objects, so if your data Object originally contained symbols, they will be converted to Strings.



36
37
38
39
40
41
42
43
44
45
46
# File 'lib/puppet/util/json_lockfile.rb', line 36

def lock_data
  return nil unless file_locked?

  file_contents = super
  return nil if file_contents.nil? or file_contents.empty?

  Puppet::Util::Json.load(file_contents)
rescue Puppet::Util::Json::ParseError
  Puppet.warning _("Unable to read lockfile data from %{path}: not in JSON") % { path: @file_path }
  nil
end