1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/activesupport/lib/active_support/dependencies/interlock.rb

48 lines
1.1 KiB
Ruby
Raw Normal View History

require 'active_support/concurrency/share_lock'
2015-07-08 15:03:14 -04:00
module ActiveSupport #:nodoc:
module Dependencies #:nodoc:
class Interlock
2015-07-08 15:03:14 -04:00
def initialize # :nodoc:
@lock = ActiveSupport::Concurrency::ShareLock.new
end
def loading
@lock.exclusive(purpose: :load, compatible: [:load]) do
yield
end
end
def unloading
@lock.exclusive(purpose: :unload, compatible: [:load, :unload]) do
yield
end
end
# Attempt to obtain an "unloading" (exclusive) lock. If possible,
# execute the supplied block while holding the lock. If there is
# concurrent activity, return immediately (without executing the
# block) instead of waiting.
def attempt_unloading
@lock.exclusive(purpose: :unload, compatible: [:load, :unload], no_wait: true) do
yield
end
end
def start_running
@lock.start_sharing
end
def done_running
@lock.stop_sharing
end
def running
@lock.sharing do
yield
end
end
end
end
end