Welcome to mirror list, hosted at ThFree Co, Russian Federation.

sleeping_lock.rb « exclusive_lease_helpers « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 52035220a714d0fffec1c79f33991c795f9d782e (plain)
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
48
49
50
# frozen_string_literal: true

module Gitlab
  module ExclusiveLeaseHelpers
    # Wrapper around ExclusiveLease that adds retry logic
    class SleepingLock
      delegate :cancel, to: :@lease

      def initialize(key, timeout:, delay:)
        @lease = ::Gitlab::ExclusiveLease.new(key, timeout: timeout)
        @delay = delay
        @attempts = 0
      end

      def obtain(max_attempts)
        until held?
          raise FailedToObtainLockError, 'Failed to obtain a lock' if attempts >= max_attempts

          sleep(sleep_sec) unless first_attempt?
          try_obtain
        end
      end

      def retried?
        attempts > 1
      end

      private

      attr_reader :delay, :attempts

      def held?
        @uuid.present?
      end

      def try_obtain
        @uuid ||= @lease.try_obtain
        @attempts += 1
      end

      def first_attempt?
        attempts == 0
      end

      def sleep_sec
        delay.respond_to?(:call) ? delay.call(attempts) : delay
      end
    end
  end
end