Class: Async::Clock

Inherits:
Object
  • Object
show all
Defined in:
lib/async/clock.rb

Overview

A convenient wrapper around the internal monotonic clock.

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(total = 0) ⇒ Clock

Create a new clock with the initial total time.



34
35
36
37
# File 'lib/async/clock.rb', line 34

def initialize(total = 0)
	@total = total
	@started = nil
end

Class Method Details

.measureObject

Measure the execution of a block of code.



18
19
20
21
22
23
24
# File 'lib/async/clock.rb', line 18

def self.measure
	start_time = self.now
	
	yield
	
	return self.now - start_time
end

.nowObject

Get the current elapsed monotonic time.



11
12
13
# File 'lib/async/clock.rb', line 11

def self.now
	::Process.clock_gettime(::Process::CLOCK_MONOTONIC)
end

.startObject

Start measuring elapsed time from now.



28
29
30
# File 'lib/async/clock.rb', line 28

def self.start
	self.new.tap(&:start!)
end

Instance Method Details

#start!Object

Start measuring a duration.



40
41
42
# File 'lib/async/clock.rb', line 40

def start!
	@started ||= Clock.now
end

#stop!Object

Stop measuring a duration and append the duration to the current total.



45
46
47
48
49
50
51
52
# File 'lib/async/clock.rb', line 45

def stop!
	if @started
		@total += (Clock.now - @started)
		@started = nil
	end
	
	return @total
end

#totalObject

The total elapsed time including any current duration.



55
56
57
58
59
60
61
62
63
# File 'lib/async/clock.rb', line 55

def total
	total = @total
	
	if @started
		total += (Clock.now - @started)
	end
	
	return total
end