Created
June 22, 2011 15:59
-
-
Save schacon/1040423 to your computer and use it in GitHub Desktop.
simple ruby stopwatch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Stopwatch | |
attr_writer :splits, :max, :start, :end, :total | |
def initialize(message) | |
@message = message | |
@splits = [] | |
@max = 5 | |
end | |
def split(message) | |
@max = message.size > @max ? message.size : @max | |
time = Time.now | |
@start = time if !@start | |
@end = time | |
@splits << [time, message] | |
end | |
def report | |
puts | |
@total = @end - @start | |
last_time = nil | |
last_message = nil | |
@splits.each do |split| | |
time, message = split | |
if last_time | |
elapsed = time - last_time | |
ptime(last_message, elapsed) | |
end | |
last_time = time | |
last_message = message | |
end | |
ptime("Total", @total) | |
end | |
def ptime(message, time) | |
extra = '' | |
if time < @total | |
extra = ((time / @total) * 100).to_i.to_s + '%' | |
end | |
puts message.rjust(@max + 1) + ' ' + time.to_s.rjust(10) + ' ' + extra | |
end | |
end |
Author
schacon
commented
Jan 23, 2012
via email
I sometimes use this as a poor mans benchmarker. I just start it at
the beginning of a block, take some splits and then print out a report
at the end to see where time was generally spent.
…On Sun, Jan 22, 2012 at 4:19 PM, pannous ***@***.*** wrote:
Usage?
---
Reply to this email directly or view it on GitHub:
https://gist.github.com/1040423
how can i see the output? i ran your app it shown nothing in the shell.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment