Path: blob/master/src/java.base/share/classes/java/time/Ser.java
41152 views
/*1* Copyright (c) 2012, 2019, 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* Copyright (c) 2011-2012, Stephen Colebourne & Michael Nascimento Santos27*28* All rights reserved.29*30* Redistribution and use in source and binary forms, with or without31* modification, are permitted provided that the following conditions are met:32*33* * Redistributions of source code must retain the above copyright notice,34* this list of conditions and the following disclaimer.35*36* * Redistributions in binary form must reproduce the above copyright notice,37* this list of conditions and the following disclaimer in the documentation38* and/or other materials provided with the distribution.39*40* * Neither the name of JSR-310 nor the names of its contributors41* may be used to endorse or promote products derived from this software42* without specific prior written permission.43*44* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS45* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT46* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR47* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR48* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,49* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,50* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR51* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF52* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING53* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS54* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.55*/56package java.time;5758import java.io.Externalizable;59import java.io.IOException;60import java.io.InvalidClassException;61import java.io.ObjectInput;62import java.io.ObjectOutput;63import java.io.Serializable;64import java.io.StreamCorruptedException;6566/**67* The shared serialization delegate for this package.68*69* @implNote70* This class wraps the object being serialized, and takes a byte representing the type of the class to71* be serialized. This byte can also be used for versioning the serialization format. In this case another72* byte flag would be used in order to specify an alternative version of the type format.73* For example {@code LOCAL_DATE_TYPE_VERSION_2 = 21}.74* <p>75* In order to serialize the object it writes its byte and then calls back to the appropriate class where76* the serialization is performed. In order to deserialize the object it read in the type byte, switching77* in order to select which class to call back into.78* <p>79* The serialization format is determined on a per class basis. In the case of field based classes each80* of the fields is written out with an appropriate size format in descending order of the field's size. For81* example in the case of {@link LocalDate} year is written before month. Composite classes, such as82* {@link LocalDateTime} are serialized as one object.83* <p>84* This class is mutable and should be created once per serialization.85*86* @serial include87* @since 1.888*/89final class Ser implements Externalizable {9091/**92* Serialization version.93*/94@java.io.Serial95private static final long serialVersionUID = -7683839454370182990L;9697static final byte DURATION_TYPE = 1;98static final byte INSTANT_TYPE = 2;99static final byte LOCAL_DATE_TYPE = 3;100static final byte LOCAL_TIME_TYPE = 4;101static final byte LOCAL_DATE_TIME_TYPE = 5;102static final byte ZONE_DATE_TIME_TYPE = 6;103static final byte ZONE_REGION_TYPE = 7;104static final byte ZONE_OFFSET_TYPE = 8;105static final byte OFFSET_TIME_TYPE = 9;106static final byte OFFSET_DATE_TIME_TYPE = 10;107static final byte YEAR_TYPE = 11;108static final byte YEAR_MONTH_TYPE = 12;109static final byte MONTH_DAY_TYPE = 13;110static final byte PERIOD_TYPE = 14;111112/** The type being serialized. */113private byte type;114/** The object being serialized. */115private Serializable object;116117/**118* Constructor for deserialization.119*/120public Ser() {121}122123/**124* Creates an instance for serialization.125*126* @param type the type127* @param object the object128*/129Ser(byte type, Serializable object) {130this.type = type;131this.object = object;132}133134//-----------------------------------------------------------------------135/**136* Implements the {@code Externalizable} interface to write the object.137* @serialData138*139* Each serializable class is mapped to a type that is the first byte140* in the stream. Refer to each class {@code writeReplace}141* serialized form for the value of the type and sequence of values for the type.142* <ul>143* <li><a href="{@docRoot}/serialized-form.html#java.time.Duration">Duration.writeReplace</a>144* <li><a href="{@docRoot}/serialized-form.html#java.time.Instant">Instant.writeReplace</a>145* <li><a href="{@docRoot}/serialized-form.html#java.time.LocalDate">LocalDate.writeReplace</a>146* <li><a href="{@docRoot}/serialized-form.html#java.time.LocalDateTime">LocalDateTime.writeReplace</a>147* <li><a href="{@docRoot}/serialized-form.html#java.time.LocalTime">LocalTime.writeReplace</a>148* <li><a href="{@docRoot}/serialized-form.html#java.time.MonthDay">MonthDay.writeReplace</a>149* <li><a href="{@docRoot}/serialized-form.html#java.time.OffsetTime">OffsetTime.writeReplace</a>150* <li><a href="{@docRoot}/serialized-form.html#java.time.OffsetDateTime">OffsetDateTime.writeReplace</a>151* <li><a href="{@docRoot}/serialized-form.html#java.time.Period">Period.writeReplace</a>152* <li><a href="{@docRoot}/serialized-form.html#java.time.Year">Year.writeReplace</a>153* <li><a href="{@docRoot}/serialized-form.html#java.time.YearMonth">YearMonth.writeReplace</a>154* <li><a href="{@docRoot}/serialized-form.html#java.time.ZoneId">ZoneId.writeReplace</a>155* <li><a href="{@docRoot}/serialized-form.html#java.time.ZoneOffset">ZoneOffset.writeReplace</a>156* <li><a href="{@docRoot}/serialized-form.html#java.time.ZonedDateTime">ZonedDateTime.writeReplace</a>157* </ul>158*159* @param out the data stream to write to, not null160*/161@Override162public void writeExternal(ObjectOutput out) throws IOException {163writeInternal(type, object, out);164}165166static void writeInternal(byte type, Object object, ObjectOutput out) throws IOException {167out.writeByte(type);168switch (type) {169case DURATION_TYPE:170((Duration) object).writeExternal(out);171break;172case INSTANT_TYPE:173((Instant) object).writeExternal(out);174break;175case LOCAL_DATE_TYPE:176((LocalDate) object).writeExternal(out);177break;178case LOCAL_DATE_TIME_TYPE:179((LocalDateTime) object).writeExternal(out);180break;181case LOCAL_TIME_TYPE:182((LocalTime) object).writeExternal(out);183break;184case ZONE_REGION_TYPE:185((ZoneRegion) object).writeExternal(out);186break;187case ZONE_OFFSET_TYPE:188((ZoneOffset) object).writeExternal(out);189break;190case ZONE_DATE_TIME_TYPE:191((ZonedDateTime) object).writeExternal(out);192break;193case OFFSET_TIME_TYPE:194((OffsetTime) object).writeExternal(out);195break;196case OFFSET_DATE_TIME_TYPE:197((OffsetDateTime) object).writeExternal(out);198break;199case YEAR_TYPE:200((Year) object).writeExternal(out);201break;202case YEAR_MONTH_TYPE:203((YearMonth) object).writeExternal(out);204break;205case MONTH_DAY_TYPE:206((MonthDay) object).writeExternal(out);207break;208case PERIOD_TYPE:209((Period) object).writeExternal(out);210break;211default:212throw new InvalidClassException("Unknown serialized type");213}214}215216//-----------------------------------------------------------------------217/**218* Implements the {@code Externalizable} interface to read the object.219* @serialData220*221* The streamed type and parameters defined by the type's {@code writeReplace}222* method are read and passed to the corresponding static factory for the type223* to create a new instance. That instance is returned as the de-serialized224* {@code Ser} object.225*226* <ul>227* <li><a href="{@docRoot}/serialized-form.html#java.time.Duration">Duration</a> -228* {@code Duration.ofSeconds(seconds, nanos);}229* <li><a href="{@docRoot}/serialized-form.html#java.time.Instant">Instant</a> -230* {@code Instant.ofEpochSecond(seconds, nanos);}231* <li><a href="{@docRoot}/serialized-form.html#java.time.LocalDate">LocalDate</a> -232* {@code LocalDate.of(year, month, day);}233* <li><a href="{@docRoot}/serialized-form.html#java.time.LocalDateTime">LocalDateTime</a> -234* {@code LocalDateTime.of(date, time);}235* <li><a href="{@docRoot}/serialized-form.html#java.time.LocalTime">LocalTime</a> -236* {@code LocalTime.of(hour, minute, second, nano);}237* <li><a href="{@docRoot}/serialized-form.html#java.time.MonthDay">MonthDay</a> -238* {@code MonthDay.of(month, day);}239* <li><a href="{@docRoot}/serialized-form.html#java.time.OffsetTime">OffsetTime</a> -240* {@code OffsetTime.of(time, offset);}241* <li><a href="{@docRoot}/serialized-form.html#java.time.OffsetDateTime">OffsetDateTime</a> -242* {@code OffsetDateTime.of(dateTime, offset);}243* <li><a href="{@docRoot}/serialized-form.html#java.time.Period">Period</a> -244* {@code Period.of(years, months, days);}245* <li><a href="{@docRoot}/serialized-form.html#java.time.Year">Year</a> -246* {@code Year.of(year);}247* <li><a href="{@docRoot}/serialized-form.html#java.time.YearMonth">YearMonth</a> -248* {@code YearMonth.of(year, month);}249* <li><a href="{@docRoot}/serialized-form.html#java.time.ZonedDateTime">ZonedDateTime</a> -250* {@code ZonedDateTime.ofLenient(dateTime, offset, zone);}251* <li><a href="{@docRoot}/serialized-form.html#java.time.ZoneId">ZoneId</a> -252* {@code ZoneId.of(id);}253* <li><a href="{@docRoot}/serialized-form.html#java.time.ZoneOffset">ZoneOffset</a> -254* {@code (offsetByte == 127 ? ZoneOffset.ofTotalSeconds(in.readInt()) :255* ZoneOffset.ofTotalSeconds(offsetByte * 900));}256* </ul>257*258* @param in the data to read, not null259*/260public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException {261type = in.readByte();262object = readInternal(type, in);263}264265static Serializable read(ObjectInput in) throws IOException, ClassNotFoundException {266byte type = in.readByte();267return readInternal(type, in);268}269270private static Serializable readInternal(byte type, ObjectInput in)271throws IOException, ClassNotFoundException {272switch (type) {273case DURATION_TYPE: return Duration.readExternal(in);274case INSTANT_TYPE: return Instant.readExternal(in);275case LOCAL_DATE_TYPE: return LocalDate.readExternal(in);276case LOCAL_DATE_TIME_TYPE: return LocalDateTime.readExternal(in);277case LOCAL_TIME_TYPE: return LocalTime.readExternal(in);278case ZONE_DATE_TIME_TYPE: return ZonedDateTime.readExternal(in);279case ZONE_OFFSET_TYPE: return ZoneOffset.readExternal(in);280case ZONE_REGION_TYPE: return ZoneRegion.readExternal(in);281case OFFSET_TIME_TYPE: return OffsetTime.readExternal(in);282case OFFSET_DATE_TIME_TYPE: return OffsetDateTime.readExternal(in);283case YEAR_TYPE: return Year.readExternal(in);284case YEAR_MONTH_TYPE: return YearMonth.readExternal(in);285case MONTH_DAY_TYPE: return MonthDay.readExternal(in);286case PERIOD_TYPE: return Period.readExternal(in);287default:288throw new StreamCorruptedException("Unknown serialized type");289}290}291292/**293* Returns the object that will replace this one.294*295* @return the read object, should never be null296*/297@java.io.Serial298private Object readResolve() {299return object;300}301302}303304305