author | mduigou |
Tue, 05 Nov 2013 19:44:41 -0800 | |
changeset 21615 | 0231a565a5b7 |
parent 20873 | e91d5b1cb8e6 |
child 22081 | 86eb26ff8f2b |
permissions | -rw-r--r-- |
15289 | 1 |
/* |
2 |
* Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved. |
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
|
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. Oracle designates this |
|
8 |
* particular file as subject to the "Classpath" exception as provided |
|
9 |
* by Oracle in the LICENSE file that accompanied this code. |
|
10 |
* |
|
11 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
* accompanied this code). |
|
16 |
* |
|
17 |
* You should have received a copy of the GNU General Public License version |
|
18 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
* |
|
21 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
22 |
* or visit www.oracle.com if you need additional information or have any |
|
23 |
* questions. |
|
24 |
*/ |
|
25 |
||
26 |
/* |
|
27 |
* This file is available under and governed by the GNU General Public |
|
28 |
* License version 2 only, as published by the Free Software Foundation. |
|
29 |
* However, the following notice accompanied the original version of this |
|
30 |
* file: |
|
31 |
* |
|
32 |
* Copyright (c) 2007-2012, Stephen Colebourne & Michael Nascimento Santos |
|
33 |
* |
|
34 |
* All rights reserved. |
|
35 |
* |
|
36 |
* Redistribution and use in source and binary forms, with or without |
|
37 |
* modification, are permitted provided that the following conditions are met: |
|
38 |
* |
|
39 |
* * Redistributions of source code must retain the above copyright notice, |
|
40 |
* this list of conditions and the following disclaimer. |
|
41 |
* |
|
42 |
* * Redistributions in binary form must reproduce the above copyright notice, |
|
43 |
* this list of conditions and the following disclaimer in the documentation |
|
44 |
* and/or other materials provided with the distribution. |
|
45 |
* |
|
46 |
* * Neither the name of JSR-310 nor the names of its contributors |
|
47 |
* may be used to endorse or promote products derived from this software |
|
48 |
* without specific prior written permission. |
|
49 |
* |
|
50 |
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
|
51 |
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
|
52 |
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
|
53 |
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR |
|
54 |
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
|
55 |
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
|
56 |
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
|
57 |
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
|
58 |
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
|
59 |
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
|
60 |
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|
61 |
*/ |
|
62 |
package java.time; |
|
63 |
||
15658 | 64 |
import static java.time.LocalTime.MINUTES_PER_HOUR; |
65 |
import static java.time.LocalTime.SECONDS_PER_HOUR; |
|
66 |
import static java.time.LocalTime.SECONDS_PER_MINUTE; |
|
15289 | 67 |
import static java.time.temporal.ChronoField.OFFSET_SECONDS; |
68 |
||
69 |
import java.io.DataInput; |
|
70 |
import java.io.DataOutput; |
|
71 |
import java.io.IOException; |
|
72 |
import java.io.InvalidObjectException; |
|
73 |
import java.io.Serializable; |
|
74 |
import java.time.temporal.ChronoField; |
|
75 |
import java.time.temporal.Temporal; |
|
76 |
import java.time.temporal.TemporalAccessor; |
|
77 |
import java.time.temporal.TemporalAdjuster; |
|
78 |
import java.time.temporal.TemporalField; |
|
20795 | 79 |
import java.time.temporal.TemporalQueries; |
15289 | 80 |
import java.time.temporal.TemporalQuery; |
19030 | 81 |
import java.time.temporal.UnsupportedTemporalTypeException; |
15289 | 82 |
import java.time.temporal.ValueRange; |
83 |
import java.time.zone.ZoneRules; |
|
84 |
import java.util.Objects; |
|
85 |
import java.util.concurrent.ConcurrentHashMap; |
|
86 |
import java.util.concurrent.ConcurrentMap; |
|
87 |
||
88 |
/** |
|
89 |
* A time-zone offset from Greenwich/UTC, such as {@code +02:00}. |
|
90 |
* <p> |
|
91 |
* A time-zone offset is the period of time that a time-zone differs from Greenwich/UTC. |
|
92 |
* This is usually a fixed number of hours and minutes. |
|
93 |
* <p> |
|
94 |
* Different parts of the world have different time-zone offsets. |
|
95 |
* The rules for how offsets vary by place and time of year are captured in the |
|
96 |
* {@link ZoneId} class. |
|
97 |
* <p> |
|
98 |
* For example, Paris is one hour ahead of Greenwich/UTC in winter and two hours |
|
99 |
* ahead in summer. The {@code ZoneId} instance for Paris will reference two |
|
100 |
* {@code ZoneOffset} instances - a {@code +01:00} instance for winter, |
|
101 |
* and a {@code +02:00} instance for summer. |
|
102 |
* <p> |
|
103 |
* In 2008, time-zone offsets around the world extended from -12:00 to +14:00. |
|
104 |
* To prevent any problems with that range being extended, yet still provide |
|
105 |
* validation, the range of offsets is restricted to -18:00 to 18:00 inclusive. |
|
106 |
* <p> |
|
107 |
* This class is designed for use with the ISO calendar system. |
|
108 |
* The fields of hours, minutes and seconds make assumptions that are valid for the |
|
109 |
* standard ISO definitions of those fields. This class may be used with other |
|
110 |
* calendar systems providing the definition of the time fields matches those |
|
111 |
* of the ISO calendar system. |
|
112 |
* <p> |
|
113 |
* Instances of {@code ZoneOffset} must be compared using {@link #equals}. |
|
114 |
* Implementations may choose to cache certain common offsets, however |
|
115 |
* applications must not rely on such caching. |
|
116 |
* |
|
17474 | 117 |
* @implSpec |
15289 | 118 |
* This class is immutable and thread-safe. |
119 |
* |
|
120 |
* @since 1.8 |
|
121 |
*/ |
|
122 |
public final class ZoneOffset |
|
123 |
extends ZoneId |
|
124 |
implements TemporalAccessor, TemporalAdjuster, Comparable<ZoneOffset>, Serializable { |
|
125 |
||
126 |
/** Cache of time-zone offset by offset in seconds. */ |
|
127 |
private static final ConcurrentMap<Integer, ZoneOffset> SECONDS_CACHE = new ConcurrentHashMap<>(16, 0.75f, 4); |
|
128 |
/** Cache of time-zone offset by ID. */ |
|
129 |
private static final ConcurrentMap<String, ZoneOffset> ID_CACHE = new ConcurrentHashMap<>(16, 0.75f, 4); |
|
130 |
||
131 |
/** |
|
132 |
* The abs maximum seconds. |
|
133 |
*/ |
|
134 |
private static final int MAX_SECONDS = 18 * SECONDS_PER_HOUR; |
|
135 |
/** |
|
136 |
* Serialization version. |
|
137 |
*/ |
|
138 |
private static final long serialVersionUID = 2357656521762053153L; |
|
139 |
||
140 |
/** |
|
141 |
* The time-zone offset for UTC, with an ID of 'Z'. |
|
142 |
*/ |
|
143 |
public static final ZoneOffset UTC = ZoneOffset.ofTotalSeconds(0); |
|
144 |
/** |
|
145 |
* Constant for the maximum supported offset. |
|
146 |
*/ |
|
147 |
public static final ZoneOffset MIN = ZoneOffset.ofTotalSeconds(-MAX_SECONDS); |
|
148 |
/** |
|
149 |
* Constant for the maximum supported offset. |
|
150 |
*/ |
|
151 |
public static final ZoneOffset MAX = ZoneOffset.ofTotalSeconds(MAX_SECONDS); |
|
152 |
||
153 |
/** |
|
154 |
* The total offset in seconds. |
|
155 |
*/ |
|
156 |
private final int totalSeconds; |
|
157 |
/** |
|
158 |
* The string form of the time-zone offset. |
|
159 |
*/ |
|
160 |
private final transient String id; |
|
161 |
||
162 |
//----------------------------------------------------------------------- |
|
163 |
/** |
|
164 |
* Obtains an instance of {@code ZoneOffset} using the ID. |
|
165 |
* <p> |
|
166 |
* This method parses the string ID of a {@code ZoneOffset} to |
|
167 |
* return an instance. The parsing accepts all the formats generated by |
|
168 |
* {@link #getId()}, plus some additional formats: |
|
20873 | 169 |
* <ul> |
15289 | 170 |
* <li>{@code Z} - for UTC |
171 |
* <li>{@code +h} |
|
172 |
* <li>{@code +hh} |
|
173 |
* <li>{@code +hh:mm} |
|
174 |
* <li>{@code -hh:mm} |
|
175 |
* <li>{@code +hhmm} |
|
176 |
* <li>{@code -hhmm} |
|
177 |
* <li>{@code +hh:mm:ss} |
|
178 |
* <li>{@code -hh:mm:ss} |
|
179 |
* <li>{@code +hhmmss} |
|
180 |
* <li>{@code -hhmmss} |
|
20873 | 181 |
* </ul> |
15289 | 182 |
* Note that ± means either the plus or minus symbol. |
183 |
* <p> |
|
184 |
* The ID of the returned offset will be normalized to one of the formats |
|
185 |
* described by {@link #getId()}. |
|
186 |
* <p> |
|
187 |
* The maximum supported range is from +18:00 to -18:00 inclusive. |
|
188 |
* |
|
189 |
* @param offsetId the offset ID, not null |
|
190 |
* @return the zone-offset, not null |
|
191 |
* @throws DateTimeException if the offset ID is invalid |
|
192 |
*/ |
|
193 |
@SuppressWarnings("fallthrough") |
|
194 |
public static ZoneOffset of(String offsetId) { |
|
195 |
Objects.requireNonNull(offsetId, "offsetId"); |
|
196 |
// "Z" is always in the cache |
|
197 |
ZoneOffset offset = ID_CACHE.get(offsetId); |
|
198 |
if (offset != null) { |
|
199 |
return offset; |
|
200 |
} |
|
201 |
||
202 |
// parse - +h, +hh, +hhmm, +hh:mm, +hhmmss, +hh:mm:ss |
|
203 |
final int hours, minutes, seconds; |
|
204 |
switch (offsetId.length()) { |
|
205 |
case 2: |
|
206 |
offsetId = offsetId.charAt(0) + "0" + offsetId.charAt(1); // fallthru |
|
207 |
case 3: |
|
208 |
hours = parseNumber(offsetId, 1, false); |
|
209 |
minutes = 0; |
|
210 |
seconds = 0; |
|
211 |
break; |
|
212 |
case 5: |
|
213 |
hours = parseNumber(offsetId, 1, false); |
|
214 |
minutes = parseNumber(offsetId, 3, false); |
|
215 |
seconds = 0; |
|
216 |
break; |
|
217 |
case 6: |
|
218 |
hours = parseNumber(offsetId, 1, false); |
|
219 |
minutes = parseNumber(offsetId, 4, true); |
|
220 |
seconds = 0; |
|
221 |
break; |
|
222 |
case 7: |
|
223 |
hours = parseNumber(offsetId, 1, false); |
|
224 |
minutes = parseNumber(offsetId, 3, false); |
|
225 |
seconds = parseNumber(offsetId, 5, false); |
|
226 |
break; |
|
227 |
case 9: |
|
228 |
hours = parseNumber(offsetId, 1, false); |
|
229 |
minutes = parseNumber(offsetId, 4, true); |
|
230 |
seconds = parseNumber(offsetId, 7, true); |
|
231 |
break; |
|
232 |
default: |
|
15658 | 233 |
throw new DateTimeException("Invalid ID for ZoneOffset, invalid format: " + offsetId); |
15289 | 234 |
} |
235 |
char first = offsetId.charAt(0); |
|
236 |
if (first != '+' && first != '-') { |
|
15658 | 237 |
throw new DateTimeException("Invalid ID for ZoneOffset, plus/minus not found when expected: " + offsetId); |
15289 | 238 |
} |
239 |
if (first == '-') { |
|
240 |
return ofHoursMinutesSeconds(-hours, -minutes, -seconds); |
|
241 |
} else { |
|
242 |
return ofHoursMinutesSeconds(hours, minutes, seconds); |
|
243 |
} |
|
244 |
} |
|
245 |
||
246 |
/** |
|
247 |
* Parse a two digit zero-prefixed number. |
|
248 |
* |
|
249 |
* @param offsetId the offset ID, not null |
|
250 |
* @param pos the position to parse, valid |
|
251 |
* @param precededByColon should this number be prefixed by a precededByColon |
|
252 |
* @return the parsed number, from 0 to 99 |
|
253 |
*/ |
|
254 |
private static int parseNumber(CharSequence offsetId, int pos, boolean precededByColon) { |
|
255 |
if (precededByColon && offsetId.charAt(pos - 1) != ':') { |
|
15658 | 256 |
throw new DateTimeException("Invalid ID for ZoneOffset, colon not found when expected: " + offsetId); |
15289 | 257 |
} |
258 |
char ch1 = offsetId.charAt(pos); |
|
259 |
char ch2 = offsetId.charAt(pos + 1); |
|
260 |
if (ch1 < '0' || ch1 > '9' || ch2 < '0' || ch2 > '9') { |
|
15658 | 261 |
throw new DateTimeException("Invalid ID for ZoneOffset, non numeric characters found: " + offsetId); |
15289 | 262 |
} |
263 |
return (ch1 - 48) * 10 + (ch2 - 48); |
|
264 |
} |
|
265 |
||
266 |
//----------------------------------------------------------------------- |
|
267 |
/** |
|
268 |
* Obtains an instance of {@code ZoneOffset} using an offset in hours. |
|
269 |
* |
|
270 |
* @param hours the time-zone offset in hours, from -18 to +18 |
|
271 |
* @return the zone-offset, not null |
|
272 |
* @throws DateTimeException if the offset is not in the required range |
|
273 |
*/ |
|
274 |
public static ZoneOffset ofHours(int hours) { |
|
275 |
return ofHoursMinutesSeconds(hours, 0, 0); |
|
276 |
} |
|
277 |
||
278 |
/** |
|
279 |
* Obtains an instance of {@code ZoneOffset} using an offset in |
|
280 |
* hours and minutes. |
|
281 |
* <p> |
|
282 |
* The sign of the hours and minutes components must match. |
|
283 |
* Thus, if the hours is negative, the minutes must be negative or zero. |
|
284 |
* If the hours is zero, the minutes may be positive, negative or zero. |
|
285 |
* |
|
286 |
* @param hours the time-zone offset in hours, from -18 to +18 |
|
287 |
* @param minutes the time-zone offset in minutes, from 0 to ±59, sign matches hours |
|
288 |
* @return the zone-offset, not null |
|
289 |
* @throws DateTimeException if the offset is not in the required range |
|
290 |
*/ |
|
291 |
public static ZoneOffset ofHoursMinutes(int hours, int minutes) { |
|
292 |
return ofHoursMinutesSeconds(hours, minutes, 0); |
|
293 |
} |
|
294 |
||
295 |
/** |
|
296 |
* Obtains an instance of {@code ZoneOffset} using an offset in |
|
297 |
* hours, minutes and seconds. |
|
298 |
* <p> |
|
299 |
* The sign of the hours, minutes and seconds components must match. |
|
300 |
* Thus, if the hours is negative, the minutes and seconds must be negative or zero. |
|
301 |
* |
|
302 |
* @param hours the time-zone offset in hours, from -18 to +18 |
|
303 |
* @param minutes the time-zone offset in minutes, from 0 to ±59, sign matches hours and seconds |
|
304 |
* @param seconds the time-zone offset in seconds, from 0 to ±59, sign matches hours and minutes |
|
305 |
* @return the zone-offset, not null |
|
306 |
* @throws DateTimeException if the offset is not in the required range |
|
307 |
*/ |
|
308 |
public static ZoneOffset ofHoursMinutesSeconds(int hours, int minutes, int seconds) { |
|
309 |
validate(hours, minutes, seconds); |
|
310 |
int totalSeconds = totalSeconds(hours, minutes, seconds); |
|
311 |
return ofTotalSeconds(totalSeconds); |
|
312 |
} |
|
313 |
||
314 |
//----------------------------------------------------------------------- |
|
315 |
/** |
|
316 |
* Obtains an instance of {@code ZoneOffset} from a temporal object. |
|
317 |
* <p> |
|
15658 | 318 |
* This obtains an offset based on the specified temporal. |
319 |
* A {@code TemporalAccessor} represents an arbitrary set of date and time information, |
|
320 |
* which this factory converts to an instance of {@code ZoneOffset}. |
|
321 |
* <p> |
|
15289 | 322 |
* A {@code TemporalAccessor} represents some form of date and time information. |
323 |
* This factory converts the arbitrary temporal object to an instance of {@code ZoneOffset}. |
|
324 |
* <p> |
|
20795 | 325 |
* The conversion uses the {@link TemporalQueries#offset()} query, which relies |
15658 | 326 |
* on extracting the {@link ChronoField#OFFSET_SECONDS OFFSET_SECONDS} field. |
15289 | 327 |
* <p> |
328 |
* This method matches the signature of the functional interface {@link TemporalQuery} |
|
329 |
* allowing it to be used in queries via method reference, {@code ZoneOffset::from}. |
|
330 |
* |
|
331 |
* @param temporal the temporal object to convert, not null |
|
332 |
* @return the zone-offset, not null |
|
333 |
* @throws DateTimeException if unable to convert to an {@code ZoneOffset} |
|
334 |
*/ |
|
335 |
public static ZoneOffset from(TemporalAccessor temporal) { |
|
20520
0952771e3e25
8024835: Change until() to accept any compatible temporal
rriggs
parents:
19841
diff
changeset
|
336 |
Objects.requireNonNull(temporal, "temporal"); |
20795 | 337 |
ZoneOffset offset = temporal.query(TemporalQueries.offset()); |
15658 | 338 |
if (offset == null) { |
20747 | 339 |
throw new DateTimeException("Unable to obtain ZoneOffset from TemporalAccessor: " + |
340 |
temporal + " of type " + temporal.getClass().getName()); |
|
15289 | 341 |
} |
15658 | 342 |
return offset; |
15289 | 343 |
} |
344 |
||
345 |
//----------------------------------------------------------------------- |
|
346 |
/** |
|
347 |
* Validates the offset fields. |
|
348 |
* |
|
349 |
* @param hours the time-zone offset in hours, from -18 to +18 |
|
350 |
* @param minutes the time-zone offset in minutes, from 0 to ±59 |
|
351 |
* @param seconds the time-zone offset in seconds, from 0 to ±59 |
|
352 |
* @throws DateTimeException if the offset is not in the required range |
|
353 |
*/ |
|
354 |
private static void validate(int hours, int minutes, int seconds) { |
|
355 |
if (hours < -18 || hours > 18) { |
|
356 |
throw new DateTimeException("Zone offset hours not in valid range: value " + hours + |
|
357 |
" is not in the range -18 to 18"); |
|
358 |
} |
|
359 |
if (hours > 0) { |
|
360 |
if (minutes < 0 || seconds < 0) { |
|
361 |
throw new DateTimeException("Zone offset minutes and seconds must be positive because hours is positive"); |
|
362 |
} |
|
363 |
} else if (hours < 0) { |
|
364 |
if (minutes > 0 || seconds > 0) { |
|
365 |
throw new DateTimeException("Zone offset minutes and seconds must be negative because hours is negative"); |
|
366 |
} |
|
367 |
} else if ((minutes > 0 && seconds < 0) || (minutes < 0 && seconds > 0)) { |
|
368 |
throw new DateTimeException("Zone offset minutes and seconds must have the same sign"); |
|
369 |
} |
|
370 |
if (Math.abs(minutes) > 59) { |
|
371 |
throw new DateTimeException("Zone offset minutes not in valid range: abs(value) " + |
|
372 |
Math.abs(minutes) + " is not in the range 0 to 59"); |
|
373 |
} |
|
374 |
if (Math.abs(seconds) > 59) { |
|
375 |
throw new DateTimeException("Zone offset seconds not in valid range: abs(value) " + |
|
376 |
Math.abs(seconds) + " is not in the range 0 to 59"); |
|
377 |
} |
|
378 |
if (Math.abs(hours) == 18 && (Math.abs(minutes) > 0 || Math.abs(seconds) > 0)) { |
|
379 |
throw new DateTimeException("Zone offset not in valid range: -18:00 to +18:00"); |
|
380 |
} |
|
381 |
} |
|
382 |
||
383 |
/** |
|
384 |
* Calculates the total offset in seconds. |
|
385 |
* |
|
386 |
* @param hours the time-zone offset in hours, from -18 to +18 |
|
387 |
* @param minutes the time-zone offset in minutes, from 0 to ±59, sign matches hours and seconds |
|
388 |
* @param seconds the time-zone offset in seconds, from 0 to ±59, sign matches hours and minutes |
|
389 |
* @return the total in seconds |
|
390 |
*/ |
|
391 |
private static int totalSeconds(int hours, int minutes, int seconds) { |
|
392 |
return hours * SECONDS_PER_HOUR + minutes * SECONDS_PER_MINUTE + seconds; |
|
393 |
} |
|
394 |
||
395 |
//----------------------------------------------------------------------- |
|
396 |
/** |
|
397 |
* Obtains an instance of {@code ZoneOffset} specifying the total offset in seconds |
|
398 |
* <p> |
|
399 |
* The offset must be in the range {@code -18:00} to {@code +18:00}, which corresponds to -64800 to +64800. |
|
400 |
* |
|
401 |
* @param totalSeconds the total time-zone offset in seconds, from -64800 to +64800 |
|
402 |
* @return the ZoneOffset, not null |
|
403 |
* @throws DateTimeException if the offset is not in the required range |
|
404 |
*/ |
|
405 |
public static ZoneOffset ofTotalSeconds(int totalSeconds) { |
|
406 |
if (Math.abs(totalSeconds) > MAX_SECONDS) { |
|
407 |
throw new DateTimeException("Zone offset not in valid range: -18:00 to +18:00"); |
|
408 |
} |
|
409 |
if (totalSeconds % (15 * SECONDS_PER_MINUTE) == 0) { |
|
410 |
Integer totalSecs = totalSeconds; |
|
411 |
ZoneOffset result = SECONDS_CACHE.get(totalSecs); |
|
412 |
if (result == null) { |
|
413 |
result = new ZoneOffset(totalSeconds); |
|
414 |
SECONDS_CACHE.putIfAbsent(totalSecs, result); |
|
415 |
result = SECONDS_CACHE.get(totalSecs); |
|
416 |
ID_CACHE.putIfAbsent(result.getId(), result); |
|
417 |
} |
|
418 |
return result; |
|
419 |
} else { |
|
420 |
return new ZoneOffset(totalSeconds); |
|
421 |
} |
|
422 |
} |
|
423 |
||
424 |
//----------------------------------------------------------------------- |
|
425 |
/** |
|
426 |
* Constructor. |
|
427 |
* |
|
428 |
* @param totalSeconds the total time-zone offset in seconds, from -64800 to +64800 |
|
429 |
*/ |
|
430 |
private ZoneOffset(int totalSeconds) { |
|
431 |
super(); |
|
432 |
this.totalSeconds = totalSeconds; |
|
433 |
id = buildId(totalSeconds); |
|
434 |
} |
|
435 |
||
436 |
private static String buildId(int totalSeconds) { |
|
437 |
if (totalSeconds == 0) { |
|
438 |
return "Z"; |
|
439 |
} else { |
|
440 |
int absTotalSeconds = Math.abs(totalSeconds); |
|
441 |
StringBuilder buf = new StringBuilder(); |
|
442 |
int absHours = absTotalSeconds / SECONDS_PER_HOUR; |
|
443 |
int absMinutes = (absTotalSeconds / SECONDS_PER_MINUTE) % MINUTES_PER_HOUR; |
|
444 |
buf.append(totalSeconds < 0 ? "-" : "+") |
|
445 |
.append(absHours < 10 ? "0" : "").append(absHours) |
|
446 |
.append(absMinutes < 10 ? ":0" : ":").append(absMinutes); |
|
447 |
int absSeconds = absTotalSeconds % SECONDS_PER_MINUTE; |
|
448 |
if (absSeconds != 0) { |
|
449 |
buf.append(absSeconds < 10 ? ":0" : ":").append(absSeconds); |
|
450 |
} |
|
451 |
return buf.toString(); |
|
452 |
} |
|
453 |
} |
|
454 |
||
455 |
//----------------------------------------------------------------------- |
|
456 |
/** |
|
457 |
* Gets the total zone offset in seconds. |
|
458 |
* <p> |
|
459 |
* This is the primary way to access the offset amount. |
|
460 |
* It returns the total of the hours, minutes and seconds fields as a |
|
461 |
* single offset that can be added to a time. |
|
462 |
* |
|
463 |
* @return the total zone offset amount in seconds |
|
464 |
*/ |
|
465 |
public int getTotalSeconds() { |
|
466 |
return totalSeconds; |
|
467 |
} |
|
468 |
||
469 |
/** |
|
470 |
* Gets the normalized zone offset ID. |
|
471 |
* <p> |
|
472 |
* The ID is minor variation to the standard ISO-8601 formatted string |
|
473 |
* for the offset. There are three formats: |
|
20873 | 474 |
* <ul> |
15289 | 475 |
* <li>{@code Z} - for UTC (ISO-8601) |
476 |
* <li>{@code +hh:mm} or {@code -hh:mm} - if the seconds are zero (ISO-8601) |
|
477 |
* <li>{@code +hh:mm:ss} or {@code -hh:mm:ss} - if the seconds are non-zero (not ISO-8601) |
|
20873 | 478 |
* </ul> |
15289 | 479 |
* |
480 |
* @return the zone offset ID, not null |
|
481 |
*/ |
|
482 |
@Override |
|
483 |
public String getId() { |
|
484 |
return id; |
|
485 |
} |
|
486 |
||
487 |
/** |
|
488 |
* Gets the associated time-zone rules. |
|
489 |
* <p> |
|
490 |
* The rules will always return this offset when queried. |
|
491 |
* The implementation class is immutable, thread-safe and serializable. |
|
492 |
* |
|
493 |
* @return the rules, not null |
|
494 |
*/ |
|
495 |
@Override |
|
496 |
public ZoneRules getRules() { |
|
497 |
return ZoneRules.of(this); |
|
498 |
} |
|
499 |
||
500 |
//----------------------------------------------------------------------- |
|
501 |
/** |
|
502 |
* Checks if the specified field is supported. |
|
503 |
* <p> |
|
504 |
* This checks if this offset can be queried for the specified field. |
|
505 |
* If false, then calling the {@link #range(TemporalField) range} and |
|
506 |
* {@link #get(TemporalField) get} methods will throw an exception. |
|
507 |
* <p> |
|
508 |
* If the field is a {@link ChronoField} then the query is implemented here. |
|
509 |
* The {@code OFFSET_SECONDS} field returns true. |
|
510 |
* All other {@code ChronoField} instances will return false. |
|
511 |
* <p> |
|
512 |
* If the field is not a {@code ChronoField}, then the result of this method |
|
15658 | 513 |
* is obtained by invoking {@code TemporalField.isSupportedBy(TemporalAccessor)} |
15289 | 514 |
* passing {@code this} as the argument. |
515 |
* Whether the field is supported is determined by the field. |
|
516 |
* |
|
517 |
* @param field the field to check, null returns false |
|
518 |
* @return true if the field is supported on this offset, false if not |
|
519 |
*/ |
|
520 |
@Override |
|
521 |
public boolean isSupported(TemporalField field) { |
|
522 |
if (field instanceof ChronoField) { |
|
523 |
return field == OFFSET_SECONDS; |
|
524 |
} |
|
15658 | 525 |
return field != null && field.isSupportedBy(this); |
15289 | 526 |
} |
527 |
||
528 |
/** |
|
529 |
* Gets the range of valid values for the specified field. |
|
530 |
* <p> |
|
531 |
* The range object expresses the minimum and maximum valid values for a field. |
|
532 |
* This offset is used to enhance the accuracy of the returned range. |
|
533 |
* If it is not possible to return the range, because the field is not supported |
|
534 |
* or for some other reason, an exception is thrown. |
|
535 |
* <p> |
|
536 |
* If the field is a {@link ChronoField} then the query is implemented here. |
|
537 |
* The {@link #isSupported(TemporalField) supported fields} will return |
|
538 |
* appropriate range instances. |
|
16852 | 539 |
* All other {@code ChronoField} instances will throw an {@code UnsupportedTemporalTypeException}. |
15289 | 540 |
* <p> |
541 |
* If the field is not a {@code ChronoField}, then the result of this method |
|
15658 | 542 |
* is obtained by invoking {@code TemporalField.rangeRefinedBy(TemporalAccessor)} |
15289 | 543 |
* passing {@code this} as the argument. |
544 |
* Whether the range can be obtained is determined by the field. |
|
545 |
* |
|
546 |
* @param field the field to query the range for, not null |
|
547 |
* @return the range of valid values for the field, not null |
|
548 |
* @throws DateTimeException if the range for the field cannot be obtained |
|
16852 | 549 |
* @throws UnsupportedTemporalTypeException if the field is not supported |
15289 | 550 |
*/ |
551 |
@Override // override for Javadoc |
|
552 |
public ValueRange range(TemporalField field) { |
|
553 |
return TemporalAccessor.super.range(field); |
|
554 |
} |
|
555 |
||
556 |
/** |
|
557 |
* Gets the value of the specified field from this offset as an {@code int}. |
|
558 |
* <p> |
|
559 |
* This queries this offset for the value for the specified field. |
|
560 |
* The returned value will always be within the valid range of values for the field. |
|
561 |
* If it is not possible to return the value, because the field is not supported |
|
562 |
* or for some other reason, an exception is thrown. |
|
563 |
* <p> |
|
564 |
* If the field is a {@link ChronoField} then the query is implemented here. |
|
565 |
* The {@code OFFSET_SECONDS} field returns the value of the offset. |
|
16852 | 566 |
* All other {@code ChronoField} instances will throw an {@code UnsupportedTemporalTypeException}. |
15289 | 567 |
* <p> |
568 |
* If the field is not a {@code ChronoField}, then the result of this method |
|
15658 | 569 |
* is obtained by invoking {@code TemporalField.getFrom(TemporalAccessor)} |
15289 | 570 |
* passing {@code this} as the argument. Whether the value can be obtained, |
571 |
* and what the value represents, is determined by the field. |
|
572 |
* |
|
573 |
* @param field the field to get, not null |
|
574 |
* @return the value for the field |
|
16852 | 575 |
* @throws DateTimeException if a value for the field cannot be obtained or |
576 |
* the value is outside the range of valid values for the field |
|
577 |
* @throws UnsupportedTemporalTypeException if the field is not supported or |
|
578 |
* the range of values exceeds an {@code int} |
|
15289 | 579 |
* @throws ArithmeticException if numeric overflow occurs |
580 |
*/ |
|
581 |
@Override // override for Javadoc and performance |
|
582 |
public int get(TemporalField field) { |
|
583 |
if (field == OFFSET_SECONDS) { |
|
584 |
return totalSeconds; |
|
585 |
} else if (field instanceof ChronoField) { |
|
19030 | 586 |
throw new UnsupportedTemporalTypeException("Unsupported field: " + field); |
15289 | 587 |
} |
588 |
return range(field).checkValidIntValue(getLong(field), field); |
|
589 |
} |
|
590 |
||
591 |
/** |
|
592 |
* Gets the value of the specified field from this offset as a {@code long}. |
|
593 |
* <p> |
|
594 |
* This queries this offset for the value for the specified field. |
|
595 |
* If it is not possible to return the value, because the field is not supported |
|
596 |
* or for some other reason, an exception is thrown. |
|
597 |
* <p> |
|
598 |
* If the field is a {@link ChronoField} then the query is implemented here. |
|
599 |
* The {@code OFFSET_SECONDS} field returns the value of the offset. |
|
16852 | 600 |
* All other {@code ChronoField} instances will throw an {@code UnsupportedTemporalTypeException}. |
15289 | 601 |
* <p> |
602 |
* If the field is not a {@code ChronoField}, then the result of this method |
|
15658 | 603 |
* is obtained by invoking {@code TemporalField.getFrom(TemporalAccessor)} |
15289 | 604 |
* passing {@code this} as the argument. Whether the value can be obtained, |
605 |
* and what the value represents, is determined by the field. |
|
606 |
* |
|
607 |
* @param field the field to get, not null |
|
608 |
* @return the value for the field |
|
609 |
* @throws DateTimeException if a value for the field cannot be obtained |
|
16852 | 610 |
* @throws UnsupportedTemporalTypeException if the field is not supported |
15289 | 611 |
* @throws ArithmeticException if numeric overflow occurs |
612 |
*/ |
|
613 |
@Override |
|
614 |
public long getLong(TemporalField field) { |
|
615 |
if (field == OFFSET_SECONDS) { |
|
616 |
return totalSeconds; |
|
617 |
} else if (field instanceof ChronoField) { |
|
19030 | 618 |
throw new UnsupportedTemporalTypeException("Unsupported field: " + field); |
15289 | 619 |
} |
15658 | 620 |
return field.getFrom(this); |
15289 | 621 |
} |
622 |
||
623 |
//----------------------------------------------------------------------- |
|
624 |
/** |
|
625 |
* Queries this offset using the specified query. |
|
626 |
* <p> |
|
627 |
* This queries this offset using the specified query strategy object. |
|
628 |
* The {@code TemporalQuery} object defines the logic to be used to |
|
629 |
* obtain the result. Read the documentation of the query to understand |
|
630 |
* what the result of this method will be. |
|
631 |
* <p> |
|
632 |
* The result of this method is obtained by invoking the |
|
633 |
* {@link TemporalQuery#queryFrom(TemporalAccessor)} method on the |
|
634 |
* specified query passing {@code this} as the argument. |
|
635 |
* |
|
636 |
* @param <R> the type of the result |
|
637 |
* @param query the query to invoke, not null |
|
638 |
* @return the query result, null may be returned (defined by the query) |
|
639 |
* @throws DateTimeException if unable to query (defined by the query) |
|
640 |
* @throws ArithmeticException if numeric overflow occurs (defined by the query) |
|
641 |
*/ |
|
642 |
@SuppressWarnings("unchecked") |
|
643 |
@Override |
|
644 |
public <R> R query(TemporalQuery<R> query) { |
|
20795 | 645 |
if (query == TemporalQueries.offset() || query == TemporalQueries.zone()) { |
15289 | 646 |
return (R) this; |
647 |
} |
|
648 |
return TemporalAccessor.super.query(query); |
|
649 |
} |
|
650 |
||
651 |
/** |
|
652 |
* Adjusts the specified temporal object to have the same offset as this object. |
|
653 |
* <p> |
|
654 |
* This returns a temporal object of the same observable type as the input |
|
655 |
* with the offset changed to be the same as this. |
|
656 |
* <p> |
|
657 |
* The adjustment is equivalent to using {@link Temporal#with(TemporalField, long)} |
|
658 |
* passing {@link ChronoField#OFFSET_SECONDS} as the field. |
|
659 |
* <p> |
|
660 |
* In most cases, it is clearer to reverse the calling pattern by using |
|
661 |
* {@link Temporal#with(TemporalAdjuster)}: |
|
662 |
* <pre> |
|
663 |
* // these two lines are equivalent, but the second approach is recommended |
|
664 |
* temporal = thisOffset.adjustInto(temporal); |
|
665 |
* temporal = temporal.with(thisOffset); |
|
666 |
* </pre> |
|
667 |
* <p> |
|
668 |
* This instance is immutable and unaffected by this method call. |
|
669 |
* |
|
670 |
* @param temporal the target object to be adjusted, not null |
|
671 |
* @return the adjusted object, not null |
|
672 |
* @throws DateTimeException if unable to make the adjustment |
|
673 |
* @throws ArithmeticException if numeric overflow occurs |
|
674 |
*/ |
|
675 |
@Override |
|
676 |
public Temporal adjustInto(Temporal temporal) { |
|
677 |
return temporal.with(OFFSET_SECONDS, totalSeconds); |
|
678 |
} |
|
679 |
||
680 |
//----------------------------------------------------------------------- |
|
681 |
/** |
|
682 |
* Compares this offset to another offset in descending order. |
|
683 |
* <p> |
|
684 |
* The offsets are compared in the order that they occur for the same time |
|
685 |
* of day around the world. Thus, an offset of {@code +10:00} comes before an |
|
686 |
* offset of {@code +09:00} and so on down to {@code -18:00}. |
|
687 |
* <p> |
|
688 |
* The comparison is "consistent with equals", as defined by {@link Comparable}. |
|
689 |
* |
|
690 |
* @param other the other date to compare to, not null |
|
691 |
* @return the comparator value, negative if less, postive if greater |
|
692 |
* @throws NullPointerException if {@code other} is null |
|
693 |
*/ |
|
694 |
@Override |
|
695 |
public int compareTo(ZoneOffset other) { |
|
696 |
return other.totalSeconds - totalSeconds; |
|
697 |
} |
|
698 |
||
699 |
//----------------------------------------------------------------------- |
|
700 |
/** |
|
701 |
* Checks if this offset is equal to another offset. |
|
702 |
* <p> |
|
703 |
* The comparison is based on the amount of the offset in seconds. |
|
704 |
* This is equivalent to a comparison by ID. |
|
705 |
* |
|
706 |
* @param obj the object to check, null returns false |
|
707 |
* @return true if this is equal to the other offset |
|
708 |
*/ |
|
709 |
@Override |
|
710 |
public boolean equals(Object obj) { |
|
711 |
if (this == obj) { |
|
712 |
return true; |
|
713 |
} |
|
714 |
if (obj instanceof ZoneOffset) { |
|
715 |
return totalSeconds == ((ZoneOffset) obj).totalSeconds; |
|
716 |
} |
|
717 |
return false; |
|
718 |
} |
|
719 |
||
720 |
/** |
|
721 |
* A hash code for this offset. |
|
722 |
* |
|
723 |
* @return a suitable hash code |
|
724 |
*/ |
|
725 |
@Override |
|
726 |
public int hashCode() { |
|
727 |
return totalSeconds; |
|
728 |
} |
|
729 |
||
730 |
//----------------------------------------------------------------------- |
|
731 |
/** |
|
732 |
* Outputs this offset as a {@code String}, using the normalized ID. |
|
733 |
* |
|
734 |
* @return a string representation of this offset, not null |
|
735 |
*/ |
|
736 |
@Override |
|
737 |
public String toString() { |
|
738 |
return id; |
|
739 |
} |
|
740 |
||
741 |
// ----------------------------------------------------------------------- |
|
742 |
/** |
|
743 |
* Writes the object using a |
|
744 |
* <a href="../../serialized-form.html#java.time.Ser">dedicated serialized form</a>. |
|
19841
15c8e97d6a14
8024164: JSR310 serialization should be described in details
rriggs
parents:
19030
diff
changeset
|
745 |
* @serialData |
15289 | 746 |
* <pre> |
19841
15c8e97d6a14
8024164: JSR310 serialization should be described in details
rriggs
parents:
19030
diff
changeset
|
747 |
* out.writeByte(8); // identifies a ZoneOffset |
15289 | 748 |
* int offsetByte = totalSeconds % 900 == 0 ? totalSeconds / 900 : 127; |
749 |
* out.writeByte(offsetByte); |
|
750 |
* if (offsetByte == 127) { |
|
19841
15c8e97d6a14
8024164: JSR310 serialization should be described in details
rriggs
parents:
19030
diff
changeset
|
751 |
* out.writeInt(totalSeconds); |
15289 | 752 |
* } |
753 |
* </pre> |
|
754 |
* |
|
755 |
* @return the instance of {@code Ser}, not null |
|
756 |
*/ |
|
757 |
private Object writeReplace() { |
|
758 |
return new Ser(Ser.ZONE_OFFSET_TYPE, this); |
|
759 |
} |
|
760 |
||
761 |
/** |
|
762 |
* Defend against malicious streams. |
|
763 |
* @return never |
|
764 |
* @throws InvalidObjectException always |
|
765 |
*/ |
|
19841
15c8e97d6a14
8024164: JSR310 serialization should be described in details
rriggs
parents:
19030
diff
changeset
|
766 |
private Object readResolve() throws InvalidObjectException { |
15289 | 767 |
throw new InvalidObjectException("Deserialization via serialization delegate"); |
768 |
} |
|
769 |
||
770 |
@Override |
|
771 |
void write(DataOutput out) throws IOException { |
|
772 |
out.writeByte(Ser.ZONE_OFFSET_TYPE); |
|
773 |
writeExternal(out); |
|
774 |
} |
|
775 |
||
776 |
void writeExternal(DataOutput out) throws IOException { |
|
777 |
final int offsetSecs = totalSeconds; |
|
778 |
int offsetByte = offsetSecs % 900 == 0 ? offsetSecs / 900 : 127; // compress to -72 to +72 |
|
779 |
out.writeByte(offsetByte); |
|
780 |
if (offsetByte == 127) { |
|
781 |
out.writeInt(offsetSecs); |
|
782 |
} |
|
783 |
} |
|
784 |
||
785 |
static ZoneOffset readExternal(DataInput in) throws IOException { |
|
786 |
int offsetByte = in.readByte(); |
|
787 |
return (offsetByte == 127 ? ZoneOffset.ofTotalSeconds(in.readInt()) : ZoneOffset.ofTotalSeconds(offsetByte * 900)); |
|
788 |
} |
|
789 |
||
790 |
} |