Sha256: 9783b69a0df28398e1f5f405a7eb89b92e323ee6a28a3a2e77f2799a79b90ee0
Contents?: true
Size: 1.03 KB
Versions: 2
Compression:
Stored size: 1.03 KB
Contents
# encoding: utf-8 class Time # Functions to construct the MongoDB field key for trackers # # to_i_timestamp returns the computed UTC timestamp regardless of the # timezone. # # Examples: # 2011-01-01 00:00:00 UTC ===> 14975 # 2011-01-01 23:59:59 UTC ===> 14975 # 2011-01-02 00:00:00 UTC ===> 14976 # # to_i_hour returns the hour for the date, again regardless of TZ # # 2011-01-01 00:00:00 UTC ===> 0 # 2011-01-01 23:59:59 UTC ===> 23 # ONEHOUR = 60 * 60 ONEDAY = 24 * ONEHOUR def to_i_timestamp self.dup.utc.to_i / ONEDAY end def to_i_hour self.dup.utc.hour end # Returns an integer to use as MongoDB key def to_key "#{to_i_timestamp}.#{to_i_hour}" end def self.from_key(ts, h) Time.at(ts.to_i * ONEDAY + h.to_i * ONEHOUR) end # Returns a range to be enumerated using hours for the whole day def whole_day midnight = utc? ? Time.utc(year, month, day) : Time.new(year, month, day, 0, 0, 0, utc_offset) midnight...(midnight + ::Range::DAYS) end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
trackoid-0.3.5 | lib/trackoid/core_ext/time.rb |
trackoid-0.3.4 | lib/trackoid/core_ext/time.rb |