time_with_zone.rb 7.3 KB
Newer Older
1
require 'tzinfo'
2 3 4 5 6 7 8
module ActiveSupport
  # A Time-like class that can represent a time in any time zone. Necessary because standard Ruby Time instances are 
  # limited to UTC and the system's ENV['TZ'] zone
  class TimeWithZone
    include Comparable
    attr_reader :time_zone
  
9 10 11
    def initialize(utc_time, time_zone, local_time = nil, period = nil)
      @utc, @time_zone, @time = utc_time, time_zone, local_time
      @period = @utc ? period : get_period_and_ensure_valid_local_time
12 13
    end
  
G
Geoff Buesing 已提交
14
    # Returns a Time or DateTime instance that represents the time in time_zone
15
    def time
16
      @time ||= period.to_local(@utc)
17 18
    end

G
Geoff Buesing 已提交
19
    # Returns a Time or DateTime instance that represents the time in UTC
20
    def utc
21
      @utc ||= period.to_utc(@time)
22 23
    end
    alias_method :comparable_time, :utc
24 25 26
    alias_method :getgm, :utc
    alias_method :getutc, :utc
    alias_method :gmtime, :utc
27
  
28
    # Returns the underlying TZInfo::TimezonePeriod
29
    def period
30
      @period ||= time_zone.period_for_utc(@utc)
31 32
    end

33 34
    # Returns the simultaneous time in Time.zone, or the specified zone
    def in_time_zone(new_zone = ::Time.zone)
35
      return self if time_zone == new_zone
36 37 38 39 40
      utc.in_time_zone(new_zone)
    end
  
    # Returns a Time.local() instance of the simultaneous time in your system's ENV['TZ'] zone
    def localtime
41
      utc.getlocal
42
    end
43
    alias_method :getlocal, :localtime
44 45
  
    def dst?
46
      period.dst?
47
    end
48
    alias_method :isdst, :dst?
49 50
  
    def utc?
51
      time_zone.name == 'UTC'
52
    end
53
    alias_method :gmt?, :utc?
54 55
  
    def utc_offset
56
      period.utc_total_offset
57
    end
58 59
    alias_method :gmt_offset, :utc_offset
    alias_method :gmtoff, :utc_offset
60 61 62 63 64 65 66
  
    def formatted_offset(colon = true, alternate_utc_string = nil)
      utc? && alternate_utc_string || utc_offset.to_utc_offset_s(colon)
    end
  
    # Time uses #zone to display the time zone abbreviation, so we're duck-typing it
    def zone
67
      period.zone_identifier.to_s
68 69 70 71 72 73 74 75 76
    end
  
    def inspect
      "#{time.strftime('%a, %d %b %Y %H:%M:%S')} #{zone} #{formatted_offset}"
    end

    def xmlschema
      "#{time.strftime("%Y-%m-%dT%H:%M:%S")}#{formatted_offset(true, 'Z')}"
    end
77
    alias_method :iso8601, :xmlschema
78 79
  
    def to_json(options = nil)
80 81 82 83 84
      if ActiveSupport.use_standard_json_time_format
        utc.xmlschema.inspect
      else
        %("#{time.strftime("%Y/%m/%d %H:%M:%S")} #{formatted_offset(false)}")
      end
85
    end
86
    
87
    def to_yaml(options = {})
88 89 90 91 92
      if options.kind_of?(YAML::Emitter)
        utc.to_yaml(options)
      else
        time.to_yaml(options).gsub('Z', formatted_offset(true, 'Z'))
      end
93 94
    end
    
95 96 97 98 99 100 101 102
    def httpdate
      utc.httpdate
    end
  
    def rfc2822
      to_s(:rfc822)
    end
    alias_method :rfc822, :rfc2822
103
  
104 105
    # <tt>:db</tt> format outputs time in UTC; all others output time in local.
    # Uses TimeWithZone's +strftime+, so <tt>%Z</tt> and <tt>%z</tt> work correctly.
106 107 108 109 110 111 112 113 114
    def to_s(format = :default) 
      return utc.to_s(format) if format == :db
      if formatter = ::Time::DATE_FORMATS[format]
        formatter.respond_to?(:call) ? formatter.call(self).to_s : strftime(formatter)
      else
        "#{time.strftime("%Y-%m-%d %H:%M:%S")} #{formatted_offset(false, 'UTC')}" # mimicking Ruby 1.9 Time#to_s format
      end
    end
    
115
    # Replaces <tt>%Z</tt> and <tt>%z</tt> directives with +zone+ and +formatted_offset+, respectively, before passing to
116 117 118 119 120 121 122 123 124 125
    # Time#strftime, so that zone information is correct
    def strftime(format)
      format = format.gsub('%Z', zone).gsub('%z', formatted_offset(false))
      time.strftime(format)
    end
  
    # Use the time in UTC for comparisons
    def <=>(other)
      utc <=> other
    end
126
    
G
Geoff Buesing 已提交
127 128 129 130
    def between?(min, max)
      utc.between?(min, max)
    end
    
131 132 133 134
    def eql?(other)
      utc == other
    end
    
135 136 137
    # If wrapped #time is a DateTime, use DateTime#since instead of #+
    # Otherwise, just pass on to #method_missing
    def +(other)
138 139
      result = utc.acts_like?(:date) ? utc.since(other) : utc + other
      result.in_time_zone(time_zone)
140 141
    end
    
142 143 144
    # If a time-like object is passed in, compare it with +utc+.
    # Else if wrapped +time+ is a DateTime, use DateTime#ago instead of DateTime#-.
    # Otherwise, just pass on to +method_missing+.
145
    def -(other)
146 147 148
      if other.acts_like?(:time)
        utc - other
      else
149 150
        result = utc.acts_like?(:date) ? utc.ago(other) : utc - other
        result.in_time_zone(time_zone)
151
      end
152
    end
153
    
154 155 156 157 158 159 160 161 162 163 164 165
    def since(other)
      utc.since(other).in_time_zone(time_zone)
    end
    
    def ago(other)
      utc.ago(other).in_time_zone(time_zone)
    end
    
    def advance(options)
      utc.advance(options).in_time_zone(time_zone)
    end
    
166 167 168 169 170 171 172 173
    %w(year mon month day mday hour min sec).each do |method_name|
      class_eval <<-EOV
        def #{method_name}
          time.#{method_name}
        end
      EOV
    end
    
174 175 176 177
    def usec
      time.respond_to?(:usec) ? time.usec : 0
    end
    
178
    def to_a
179
      [time.sec, time.min, time.hour, time.day, time.mon, time.year, time.wday, time.yday, dst?, zone]
180 181 182 183 184 185 186 187 188
    end
    
    def to_f
      utc.to_f
    end    
    
    def to_i
      utc.to_i
    end
189 190
    alias_method :hash, :to_i
    alias_method :tv_sec, :to_i
191
  
192
    # A TimeWithZone acts like a Time, so just return +self+.
193 194 195 196
    def to_time
      self
    end
    
197 198 199 200
    def to_datetime
      utc.to_datetime.new_offset(Rational(utc_offset, 86_400))
    end
    
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215
    # so that self acts_like?(:time)
    def acts_like_time?
      true
    end
  
    # Say we're a Time to thwart type checking
    def is_a?(klass)
      klass == ::Time || super
    end
    alias_method :kind_of?, :is_a?
  
    # Neuter freeze because freezing can cause problems with lazy loading of attributes
    def freeze
      self
    end
216 217 218 219 220 221

    def marshal_dump
      [utc, time_zone.name, time]
    end
    
    def marshal_load(variables)
222
      initialize(variables[0], ::Time.send!(:get_zone, variables[1]), variables[2])
223
    end
224 225 226
  
    # Ensure proxy class responds to all methods that underlying time instance responds to
    def respond_to?(sym)
227 228
      # consistently respond false to acts_like?(:date), regardless of whether #time is a Time or DateTime
      return false if sym.to_s == 'acts_like_date?'
229 230 231 232 233
      super || time.respond_to?(sym)
    end
  
    # Send the missing method to time instance, and wrap result in a new TimeWithZone with the existing time_zone
    def method_missing(sym, *args, &block)
234 235
      result = time.__send__(sym, *args, &block)
      result.acts_like?(:time) ? self.class.new(nil, time_zone, result) : result
236
    end
237 238 239
    
    private      
      def get_period_and_ensure_valid_local_time
G
Geoff Buesing 已提交
240 241 242 243 244 245 246 247 248 249 250 251 252 253
        # we don't want a Time.local instance enforcing its own DST rules as well, 
        # so transfer time values to a utc constructor if necessary
        @time = transfer_time_values_to_utc_constructor(@time) unless @time.utc?
        begin
          @time_zone.period_for_local(@time)
        rescue ::TZInfo::PeriodNotFound
          # time is in the "spring forward" hour gap, so we're moving the time forward one hour and trying again
          @time += 1.hour
          retry
        end
      end
      
      def transfer_time_values_to_utc_constructor(time)
        ::Time.utc_time(time.year, time.month, time.day, time.hour, time.min, time.sec, time.respond_to?(:usec) ? time.usec : 0)
254
      end
255 256
  end
end