Class: IncrementalBackup::Lock
- Inherits:
-
Object
- Object
- IncrementalBackup::Lock
- Defined in:
- lib/incremental_backup/lock.rb
Constant Summary collapse
- LOCK_FILENAME =
'lock_{task_id}'
Instance Attribute Summary collapse
-
#failed ⇒ Object
Returns the value of attribute failed.
Class Method Summary collapse
-
.create(task, &block) ⇒ Object
Obtains lock, run block, release lock.
Instance Method Summary collapse
-
#initialize(task) ⇒ Lock
constructor
Should not be called from other places than Lock.create.
-
#release ⇒ Object
Release lock.
Constructor Details
#initialize(task) ⇒ Lock
Should not be called from other places than Lock.create
11 12 13 14 15 16 17 18 19 |
# File 'lib/incremental_backup/lock.rb', line 11 def initialize task @task = task if File.exists? path self.failed = true else FileUtils.touch path end end |
Instance Attribute Details
#failed ⇒ Object
Returns the value of attribute failed.
8 9 10 |
# File 'lib/incremental_backup/lock.rb', line 8 def failed @failed end |
Class Method Details
.create(task, &block) ⇒ Object
Obtains lock, run block, release lock
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
# File 'lib/incremental_backup/lock.rb', line 22 def self.create task, &block task.logger.info 'Obtaining lock...' lock = Lock.new task if lock.failed task.logger.info 'Lock can not be obtained. Exiting!' return end task.logger.info 'Obtained lock' begin yield ensure task.logger.info 'Releasing lock...' lock.release task.logger.info 'Released lock' end true end |
Instance Method Details
#release ⇒ Object
Release lock
46 47 48 |
# File 'lib/incremental_backup/lock.rb', line 46 def release FileUtils.rm path end |