blob: fbeb9046843caaeb336a02d40dcd4e0ea4c90733 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
require 'active_support/concurrency/share_lock'
module ActiveSupport #:nodoc:
module Dependencies #:nodoc:
class Interlock
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
|