Class: TZInfo::TimezonePeriod

Inherits:
Object
  • Object
show all
Defined in:
lib/tzinfo/timezone_period.rb

Overview

A period of time in a timezone where the same offset from UTC applies.

All the methods that take times accept instances of Time, DateTime or integer timestamps.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(start_transition, end_transition, offset = nil) ⇒ TimezonePeriod

Initializes a new TimezonePeriod.



46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# File 'lib/tzinfo/timezone_period.rb', line 46

def initialize(start_transition, end_transition, offset = nil)
  @start_transition = start_transition
  @end_transition = end_transition
  
  if offset
    raise ArgumentError, 'Offset specified with transitions' if @start_transition || @end_transition
    @offset = offset
  else
    if @start_transition 
      @offset = @start_transition.offset
    elsif @end_transition
      @offset = @end_transition.previous_offset
    else
      raise ArgumentError, 'No offset specified and no transitions to determine it from'
    end
  end
  
  @utc_total_offset_rational = nil      
end

Instance Attribute Details

#end_transitionObject (readonly)

The TimezoneTransitionInfo that defines the end of this TimezonePeriod (may be nil if unbounded).



40
41
42
# File 'lib/tzinfo/timezone_period.rb', line 40

def end_transition
  @end_transition
end

#offsetObject (readonly)

The TimezoneOffsetInfo for this period.



43
44
45
# File 'lib/tzinfo/timezone_period.rb', line 43

def offset
  @offset
end

#start_transitionObject (readonly)

The TimezoneTransitionInfo that defines the start of this TimezonePeriod (may be nil if unbounded).



36
37
38
# File 'lib/tzinfo/timezone_period.rb', line 36

def start_transition
  @start_transition
end

Instance Method Details

#==(p) ⇒ Object

Returns true if this TimezonePeriod is equal to p. This compares the start_transition, end_transition and offset using ==.



172
173
174
175
176
# File 'lib/tzinfo/timezone_period.rb', line 172

def ==(p)
  p.respond_to?(:start_transition) && p.respond_to?(:end_transition) &&
    p.respond_to?(:offset) && start_transition == p.start_transition &&
    end_transition == p.end_transition && offset == p.offset
end

#abbreviationObject Also known as: zone_identifier

The identifier of this period, e.g. “GMT” (Greenwich Mean Time) or “BST” (British Summer Time) for “Europe/London”. The returned identifier is a symbol.



81
82
83
# File 'lib/tzinfo/timezone_period.rb', line 81

def abbreviation
  @offset.abbreviation
end

#dst?Boolean

true if daylight savings is in effect for this period; otherwise false.

Returns:

  • (Boolean)


122
123
124
# File 'lib/tzinfo/timezone_period.rb', line 122

def dst?
  @offset.dst?
end

#eql?(p) ⇒ Boolean

Returns true if this TimezonePeriods is equal to p. This compares the start_transition, end_transition and offset using eql?

Returns:

  • (Boolean)


180
181
182
183
184
# File 'lib/tzinfo/timezone_period.rb', line 180

def eql?(p)
  p.respond_to?(:start_transition) && p.respond_to?(:end_transition) &&
    p.respond_to?(:offset) && start_transition.eql?(p.start_transition) &&
    end_transition.eql?(p.end_transition) && offset.eql?(p.offset)
end

#hashObject

Returns a hash of this TimezonePeriod.



187
188
189
190
191
# File 'lib/tzinfo/timezone_period.rb', line 187

def hash
  result = @start_transition.hash ^ @end_transition.hash
  result ^= @offset.hash unless @start_transition || @end_transition
  result       
end

#inspectObject

Returns internal object state as a programmer-readable string.



194
195
196
197
198
# File 'lib/tzinfo/timezone_period.rb', line 194

def inspect
  result = "#<#{self.class}: #{@start_transition.inspect},#{@end_transition.inspect}"
  result << ",#{@offset.inspect}>" unless @start_transition || @end_transition
  result + '>'
end

#local_after_start?(local) ⇒ Boolean

true if the given local DateTime is after the start of the period (inclusive); otherwise false.

Returns:

  • (Boolean)


150
151
152
# File 'lib/tzinfo/timezone_period.rb', line 150

def local_after_start?(local)
  !@start_transition || @start_transition.local_start <= local
end

#local_before_end?(local) ⇒ Boolean

true if the given local DateTime is before the end of the period (exclusive); otherwise false.

Returns:

  • (Boolean)


156
157
158
# File 'lib/tzinfo/timezone_period.rb', line 156

def local_before_end?(local)
  !@end_transition || @end_transition.local_end > local
end

#local_endObject

The end time of the period in local time as a DateTime. May be nil if unbounded.



117
118
119
# File 'lib/tzinfo/timezone_period.rb', line 117

def local_end
  @end_transition ? @end_transition.local_end.to_datetime : nil
end

#local_startObject

The start time of the period in local time as a DateTime. May be nil if unbounded.



111
112
113
# File 'lib/tzinfo/timezone_period.rb', line 111

def local_start
  @start_transition ? @start_transition.local_start.to_datetime : nil
end

#std_offsetObject

Offset from the local time where daylight savings is in effect (seconds). E.g.: utc_offset could be -5 hours. Normally, std_offset would be 0. During daylight savings, std_offset would typically become +1 hours.



74
75
76
# File 'lib/tzinfo/timezone_period.rb', line 74

def std_offset
  @offset.std_offset
end

#to_local(utc) ⇒ Object

Converts a UTC DateTime to local time based on the offset of this period.



161
162
163
# File 'lib/tzinfo/timezone_period.rb', line 161

def to_local(utc)
  @offset.to_local(utc)
end

#to_utc(local) ⇒ Object

Converts a local DateTime to UTC based on the offset of this period.



166
167
168
# File 'lib/tzinfo/timezone_period.rb', line 166

def to_utc(local)
  @offset.to_utc(local)
end

#utc_after_start?(utc) ⇒ Boolean

true if the given UTC DateTime is after the start of the period (inclusive); otherwise false.

Returns:

  • (Boolean)


133
134
135
# File 'lib/tzinfo/timezone_period.rb', line 133

def utc_after_start?(utc)
  !@start_transition || @start_transition.at <= utc
end

#utc_before_end?(utc) ⇒ Boolean

true if the given UTC DateTime is before the end of the period (exclusive); otherwise false.

Returns:

  • (Boolean)


139
140
141
# File 'lib/tzinfo/timezone_period.rb', line 139

def utc_before_end?(utc)
  !@end_transition || @end_transition.at > utc
end

#utc_endObject

The end time of the period in UTC as a DateTime. May be nil if unbounded.



105
106
107
# File 'lib/tzinfo/timezone_period.rb', line 105

def utc_end
  @end_transition ? @end_transition.at.to_datetime : nil
end

#utc_offsetObject

Base offset of the timezone from UTC (seconds).



67
68
69
# File 'lib/tzinfo/timezone_period.rb', line 67

def utc_offset
  @offset.utc_offset
end

#utc_startObject

The start time of the period in UTC as a DateTime. May be nil if unbounded.



100
101
102
# File 'lib/tzinfo/timezone_period.rb', line 100

def utc_start
  @start_transition ? @start_transition.at.to_datetime : nil
end

#utc_total_offsetObject

Total offset from UTC (seconds). Equal to utc_offset + std_offset.



87
88
89
# File 'lib/tzinfo/timezone_period.rb', line 87

def utc_total_offset
  @offset.utc_total_offset
end

#utc_total_offset_rationalObject

Total offset from UTC (days). Result is a Rational.



92
93
94
95
96
97
# File 'lib/tzinfo/timezone_period.rb', line 92

def utc_total_offset_rational
  unless @utc_total_offset_rational
    @utc_total_offset_rational = OffsetRationals.rational_for_offset(utc_total_offset) 
  end
  @utc_total_offset_rational
end

#valid_for_local?(local) ⇒ Boolean

true if this period is valid for the given local DateTime; otherwise false.

Returns:

  • (Boolean)


144
145
146
# File 'lib/tzinfo/timezone_period.rb', line 144

def valid_for_local?(local)      
  local_after_start?(local) && local_before_end?(local) 
end

#valid_for_utc?(utc) ⇒ Boolean

true if this period is valid for the given UTC DateTime; otherwise false.

Returns:

  • (Boolean)


127
128
129
# File 'lib/tzinfo/timezone_period.rb', line 127

def valid_for_utc?(utc)
  utc_after_start?(utc) && utc_before_end?(utc) 
end