vaguerent/lib/vagrant/util/counter.rb

28 lines
601 B
Ruby

# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: BUSL-1.1
require 'thread'
module Vagrant
module Util
# Atomic counter implementation. This is useful for incrementing
# a counter which is guaranteed to only be used once in its class.
module Counter
def get_and_update_counter(name=nil)
name ||= :global
mutex.synchronize do
@__counter ||= Hash.new(1)
result = @__counter[name]
@__counter[name] += 1
result
end
end
def mutex
@__counter_mutex ||= Mutex.new
end
end
end
end