Path: blob/aarch64-shenandoah-jdk8u272-b10/jdk/src/share/classes/java/time/temporal/JulianFields.java
38918 views
/*1* Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation. Oracle designates this7* particular file as subject to the "Classpath" exception as provided8* by Oracle in the LICENSE file that accompanied this code.9*10* This code is distributed in the hope that it will be useful, but WITHOUT11* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or12* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License13* version 2 for more details (a copy is included in the LICENSE file that14* accompanied this code).15*16* You should have received a copy of the GNU General Public License version17* 2 along with this work; if not, write to the Free Software Foundation,18* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.19*20* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA21* or visit www.oracle.com if you need additional information or have any22* questions.23*/2425/*26* This file is available under and governed by the GNU General Public27* License version 2 only, as published by the Free Software Foundation.28* However, the following notice accompanied the original version of this29* file:30*31* Copyright (c) 2012, Stephen Colebourne & Michael Nascimento Santos32*33* All rights reserved.34*35* Redistribution and use in source and binary forms, with or without36* modification, are permitted provided that the following conditions are met:37*38* * Redistributions of source code must retain the above copyright notice,39* this list of conditions and the following disclaimer.40*41* * Redistributions in binary form must reproduce the above copyright notice,42* this list of conditions and the following disclaimer in the documentation43* and/or other materials provided with the distribution.44*45* * Neither the name of JSR-310 nor the names of its contributors46* may be used to endorse or promote products derived from this software47* without specific prior written permission.48*49* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS50* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT51* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR52* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR53* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,54* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,55* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR56* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF57* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING58* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS59* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.60*/61package java.time.temporal;6263import static java.time.temporal.ChronoField.EPOCH_DAY;64import static java.time.temporal.ChronoUnit.DAYS;65import static java.time.temporal.ChronoUnit.FOREVER;6667import java.time.DateTimeException;68import java.time.chrono.ChronoLocalDate;69import java.time.chrono.Chronology;70import java.time.format.ResolverStyle;71import java.util.Map;7273/**74* A set of date fields that provide access to Julian Days.75* <p>76* The Julian Day is a standard way of expressing date and time commonly used in the scientific community.77* It is expressed as a decimal number of whole days where days start at midday.78* This class represents variations on Julian Days that count whole days from midnight.79* <p>80* The fields are implemented relative to {@link ChronoField#EPOCH_DAY EPOCH_DAY}.81* The fields are supported, and can be queried and set if {@code EPOCH_DAY} is available.82* The fields work with all chronologies.83*84* @implSpec85* This is an immutable and thread-safe class.86*87* @since 1.888*/89public final class JulianFields {9091/**92* The offset from Julian to EPOCH DAY.93*/94private static final long JULIAN_DAY_OFFSET = 2440588L;9596/**97* Julian Day field.98* <p>99* This is an integer-based version of the Julian Day Number.100* Julian Day is a well-known system that represents the count of whole days since day 0,101* which is defined to be January 1, 4713 BCE in the Julian calendar, and -4713-11-24 Gregorian.102* The field has "JulianDay" as 'name', and 'DAYS' as 'baseUnit'.103* The field always refers to the local date-time, ignoring the offset or zone.104* <p>105* For date-times, 'JULIAN_DAY.getFrom()' assumes the same value from106* midnight until just before the next midnight.107* When 'JULIAN_DAY.adjustInto()' is applied to a date-time, the time of day portion remains unaltered.108* 'JULIAN_DAY.adjustInto()' and 'JULIAN_DAY.getFrom()' only apply to {@code Temporal} objects that109* can be converted into {@link ChronoField#EPOCH_DAY}.110* An {@link UnsupportedTemporalTypeException} is thrown for any other type of object.111* <p>112* In the resolving phase of parsing, a date can be created from a Julian Day field.113* In {@linkplain ResolverStyle#STRICT strict mode} and {@linkplain ResolverStyle#SMART smart mode}114* the Julian Day value is validated against the range of valid values.115* In {@linkplain ResolverStyle#LENIENT lenient mode} no validation occurs.116*117* <h3>Astronomical and Scientific Notes</h3>118* The standard astronomical definition uses a fraction to indicate the time-of-day,119* thus 3.25 would represent the time 18:00, since days start at midday.120* This implementation uses an integer and days starting at midnight.121* The integer value for the Julian Day Number is the astronomical Julian Day value at midday122* of the date in question.123* This amounts to the astronomical Julian Day, rounded to an integer {@code JDN = floor(JD + 0.5)}.124*125* <pre>126* | ISO date | Julian Day Number | Astronomical Julian Day |127* | 1970-01-01T00:00 | 2,440,588 | 2,440,587.5 |128* | 1970-01-01T06:00 | 2,440,588 | 2,440,587.75 |129* | 1970-01-01T12:00 | 2,440,588 | 2,440,588.0 |130* | 1970-01-01T18:00 | 2,440,588 | 2,440,588.25 |131* | 1970-01-02T00:00 | 2,440,589 | 2,440,588.5 |132* | 1970-01-02T06:00 | 2,440,589 | 2,440,588.75 |133* | 1970-01-02T12:00 | 2,440,589 | 2,440,589.0 |134* </pre>135* <p>136* Julian Days are sometimes taken to imply Universal Time or UTC, but this137* implementation always uses the Julian Day number for the local date,138* regardless of the offset or time-zone.139*/140public static final TemporalField JULIAN_DAY = Field.JULIAN_DAY;141142/**143* Modified Julian Day field.144* <p>145* This is an integer-based version of the Modified Julian Day Number.146* Modified Julian Day (MJD) is a well-known system that counts days continuously.147* It is defined relative to astronomical Julian Day as {@code MJD = JD - 2400000.5}.148* Each Modified Julian Day runs from midnight to midnight.149* The field always refers to the local date-time, ignoring the offset or zone.150* <p>151* For date-times, 'MODIFIED_JULIAN_DAY.getFrom()' assumes the same value from152* midnight until just before the next midnight.153* When 'MODIFIED_JULIAN_DAY.adjustInto()' is applied to a date-time, the time of day portion remains unaltered.154* 'MODIFIED_JULIAN_DAY.adjustInto()' and 'MODIFIED_JULIAN_DAY.getFrom()' only apply to {@code Temporal} objects155* that can be converted into {@link ChronoField#EPOCH_DAY}.156* An {@link UnsupportedTemporalTypeException} is thrown for any other type of object.157* <p>158* This implementation is an integer version of MJD with the decimal part rounded to floor.159* <p>160* In the resolving phase of parsing, a date can be created from a Modified Julian Day field.161* In {@linkplain ResolverStyle#STRICT strict mode} and {@linkplain ResolverStyle#SMART smart mode}162* the Modified Julian Day value is validated against the range of valid values.163* In {@linkplain ResolverStyle#LENIENT lenient mode} no validation occurs.164*165* <h3>Astronomical and Scientific Notes</h3>166* <pre>167* | ISO date | Modified Julian Day | Decimal MJD |168* | 1970-01-01T00:00 | 40,587 | 40,587.0 |169* | 1970-01-01T06:00 | 40,587 | 40,587.25 |170* | 1970-01-01T12:00 | 40,587 | 40,587.5 |171* | 1970-01-01T18:00 | 40,587 | 40,587.75 |172* | 1970-01-02T00:00 | 40,588 | 40,588.0 |173* | 1970-01-02T06:00 | 40,588 | 40,588.25 |174* | 1970-01-02T12:00 | 40,588 | 40,588.5 |175* </pre>176*177* Modified Julian Days are sometimes taken to imply Universal Time or UTC, but this178* implementation always uses the Modified Julian Day for the local date,179* regardless of the offset or time-zone.180*/181public static final TemporalField MODIFIED_JULIAN_DAY = Field.MODIFIED_JULIAN_DAY;182183/**184* Rata Die field.185* <p>186* Rata Die counts whole days continuously starting day 1 at midnight at the beginning of 0001-01-01 (ISO).187* The field always refers to the local date-time, ignoring the offset or zone.188* <p>189* For date-times, 'RATA_DIE.getFrom()' assumes the same value from190* midnight until just before the next midnight.191* When 'RATA_DIE.adjustInto()' is applied to a date-time, the time of day portion remains unaltered.192* 'RATA_DIE.adjustInto()' and 'RATA_DIE.getFrom()' only apply to {@code Temporal} objects193* that can be converted into {@link ChronoField#EPOCH_DAY}.194* An {@link UnsupportedTemporalTypeException} is thrown for any other type of object.195* <p>196* In the resolving phase of parsing, a date can be created from a Rata Die field.197* In {@linkplain ResolverStyle#STRICT strict mode} and {@linkplain ResolverStyle#SMART smart mode}198* the Rata Die value is validated against the range of valid values.199* In {@linkplain ResolverStyle#LENIENT lenient mode} no validation occurs.200*/201public static final TemporalField RATA_DIE = Field.RATA_DIE;202203/**204* Restricted constructor.205*/206private JulianFields() {207throw new AssertionError("Not instantiable");208}209210/**211* Implementation of JulianFields. Each instance is a singleton.212*/213private static enum Field implements TemporalField {214JULIAN_DAY("JulianDay", DAYS, FOREVER, JULIAN_DAY_OFFSET),215MODIFIED_JULIAN_DAY("ModifiedJulianDay", DAYS, FOREVER, 40587L),216RATA_DIE("RataDie", DAYS, FOREVER, 719163L);217218private static final long serialVersionUID = -7501623920830201812L;219220private final transient String name;221private final transient TemporalUnit baseUnit;222private final transient TemporalUnit rangeUnit;223private final transient ValueRange range;224private final transient long offset;225226private Field(String name, TemporalUnit baseUnit, TemporalUnit rangeUnit, long offset) {227this.name = name;228this.baseUnit = baseUnit;229this.rangeUnit = rangeUnit;230this.range = ValueRange.of(-365243219162L + offset, 365241780471L + offset);231this.offset = offset;232}233234//-----------------------------------------------------------------------235@Override236public TemporalUnit getBaseUnit() {237return baseUnit;238}239240@Override241public TemporalUnit getRangeUnit() {242return rangeUnit;243}244245@Override246public boolean isDateBased() {247return true;248}249250@Override251public boolean isTimeBased() {252return false;253}254255@Override256public ValueRange range() {257return range;258}259260//-----------------------------------------------------------------------261@Override262public boolean isSupportedBy(TemporalAccessor temporal) {263return temporal.isSupported(EPOCH_DAY);264}265266@Override267public ValueRange rangeRefinedBy(TemporalAccessor temporal) {268if (isSupportedBy(temporal) == false) {269throw new DateTimeException("Unsupported field: " + this);270}271return range();272}273274@Override275public long getFrom(TemporalAccessor temporal) {276return temporal.getLong(EPOCH_DAY) + offset;277}278279@SuppressWarnings("unchecked")280@Override281public <R extends Temporal> R adjustInto(R temporal, long newValue) {282if (range().isValidValue(newValue) == false) {283throw new DateTimeException("Invalid value: " + name + " " + newValue);284}285return (R) temporal.with(EPOCH_DAY, Math.subtractExact(newValue, offset));286}287288//-----------------------------------------------------------------------289@Override290public ChronoLocalDate resolve(291Map<TemporalField, Long> fieldValues, TemporalAccessor partialTemporal, ResolverStyle resolverStyle) {292long value = fieldValues.remove(this);293Chronology chrono = Chronology.from(partialTemporal);294if (resolverStyle == ResolverStyle.LENIENT) {295return chrono.dateEpochDay(Math.subtractExact(value, offset));296}297range().checkValidValue(value, this);298return chrono.dateEpochDay(value - offset);299}300301//-----------------------------------------------------------------------302@Override303public String toString() {304return name;305}306}307}308309310