vagrant/lib/vagrant/util/counter.rb

25 lines
532 B
Ruby

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