vote up 0 vote down star

Can Ruby do something like this?

irb(main):001:0> start = Time.now
=> Thu Nov 05 01:02:54 -0800 2009

irb(main):002:0> Time.now - start
=> 25.239

irb(main):003:0> (Time.now - start).duration
=> "25 seconds"

(the duration method doesn't exist now)... and similarly, report

23 minutes and 35 seconds
1 hour and 33 minutes
2 days and 3 hours

(either report the whole duration, up to how many seconds, or report up to 2 numbers and units (if day and hour is reported, then no need to tell how many minutes))

flag

24% accept rate

3 Answers

vote up 4 vote down

Here's a quick and simple way to implement this. Set predefined measurements for seconds, minutes, hours and days. Then depending on the size of the number, output the appropriate string with the those units. We'll extend Numeric so that you can invoke the method on any numeric class (Fixnum, Bignum, or in your case Float).

class Numeric
  def duration
    secs  = self.to_int
    mins  = secs / 60
    hours = mins / 60
    days  = hours / 24

    if days > 0
      "#{days} days and #{hours % 24} hours"
    elsif hours > 0
      "#{hours} hours and #{mins % 60} minutes"
    elsif mins > 0
      "#{mins} minutes and #{secs % 60} seconds"
    elsif secs >= 0
      "#{secs} seconds"
    end
  end
end
link|flag
Perhaps some additional handling should be added for cases where one or more of the items is equal to one (1 hours and 1 minutes => 1 hour and 1 minute) also. – Splash Nov 5 at 11:41
Very neat. I love it :D – felipec Nov 30 at 22:00
1  
I spoke too soon; it doesn't work correctly. Should be something like: "#{days} days and #{hours % 24} hours" not "#{days} days and #{hours % days} hours" – felipec Nov 30 at 22:12
@felipec You're absolutely right. Answer changed. – Mike Richards Dec 1 at 2:30
vote up 1 vote down

You can do something like this, there may be a more elegant way to do it though:

require 'date'

start_time = Time.now
end_time = Time.now

time_diff = end_time - start_time
hours,minutes,seconds,frac = Date.day_fraction_to_time(time_diff)
puts "Time elapsed: #{hours} hours, #{minutes} minutes and #{seconds} seconds"

You could do some fairly simple funkiness with hours to get days and hours, and some switching to report the first two non-zero units.

link|flag
how come Date.day_fraction_to_time(25) returns [600, 0, 0, Rational(0, 1)] ? – Jian Lin Nov 5 at 9:30
This doesn't seem to get the right answer - end_time - start_time seems to be giving a number of seconds. I suspect there needs to be some kind of conversion before the day_fraction_to_time - perhaps day_fraction = time_diff / (24 * 60 * 60) and then use day_fraction in the call to day_fraction_to_time – parsenome Nov 5 at 15:07
(the reason it's saying 600 is because it thinks you're passing in 25 days as the day fraction, instead of 25 seconds) – parsenome Nov 5 at 15:08
vote up 1 vote down

Have a look at the Rails DateHelpe.distance_of_time_in_words method. It will give you a great starting place. Despite being loaded with magic numbers, the approach should work for you.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.