com.esotericsoftware.kryo.serializers.TimeSerializers Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of redisson-all Show documentation
Show all versions of redisson-all Show documentation
Easy Redis Java client and Real-Time Data Platform. Valkey compatible. Sync/Async/RxJava3/Reactive API. Client side caching. Over 50 Redis based Java objects and services: JCache API, Apache Tomcat, Hibernate, Spring, Set, Multimap, SortedSet, Map, List, Queue, Deque, Semaphore, Lock, AtomicLong, Map Reduce, Bloom filter, Scheduler, RPC
/* Copyright (c) 2008-2023, Nathan Sweet
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following
* conditions are met:
*
* - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
* - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided with the distribution.
* - Neither the name of Esoteric Software nor the names of its contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
* BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
* SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */
package com.esotericsoftware.kryo.serializers;
import static com.esotericsoftware.kryo.util.Util.*;
import com.esotericsoftware.kryo.Kryo;
import com.esotericsoftware.kryo.io.Input;
import com.esotericsoftware.kryo.io.Output;
import java.time.Duration;
import java.time.Instant;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.LocalTime;
import java.time.MonthDay;
import java.time.OffsetDateTime;
import java.time.OffsetTime;
import java.time.Period;
import java.time.Year;
import java.time.YearMonth;
import java.time.ZoneId;
import java.time.ZoneOffset;
import java.time.ZonedDateTime;
/** Serializers for java.time.*, are added as default serializers if java version is >= 8.
*
* Serializers are all private for now because they're not expected to be somehow used/extended/accessed by the user. If there
* should be a case where this is needed it can be changed - for now the public api should be kept as spall as possible.
*
* Implementation note: All serialization is inspired by oracles java.time.Ser. */
public final class TimeSerializers {
public static void addDefaultSerializers (Kryo kryo) {
if (isClassAvailable("java.time.Duration")) kryo.addDefaultSerializer(Duration.class, DurationSerializer.class);
if (isClassAvailable("java.time.Instant")) kryo.addDefaultSerializer(Instant.class, InstantSerializer.class);
if (isClassAvailable("java.time.LocalDate")) kryo.addDefaultSerializer(LocalDate.class, LocalDateSerializer.class);
if (isClassAvailable("java.time.LocalTime")) kryo.addDefaultSerializer(LocalTime.class, LocalTimeSerializer.class);
if (isClassAvailable("java.time.LocalDateTime"))
kryo.addDefaultSerializer(LocalDateTime.class, LocalDateTimeSerializer.class);
if (isClassAvailable("java.time.ZoneOffset")) kryo.addDefaultSerializer(ZoneOffset.class, ZoneOffsetSerializer.class);
if (isClassAvailable("java.time.ZoneId")) kryo.addDefaultSerializer(ZoneId.class, ZoneIdSerializer.class);
if (isClassAvailable("java.time.OffsetTime")) kryo.addDefaultSerializer(OffsetTime.class, OffsetTimeSerializer.class);
if (isClassAvailable("java.time.OffsetDateTime"))
kryo.addDefaultSerializer(OffsetDateTime.class, OffsetDateTimeSerializer.class);
if (isClassAvailable("java.time.ZonedDateTime"))
kryo.addDefaultSerializer(ZonedDateTime.class, ZonedDateTimeSerializer.class);
if (isClassAvailable("java.time.Year")) kryo.addDefaultSerializer(Year.class, YearSerializer.class);
if (isClassAvailable("java.time.YearMonth")) kryo.addDefaultSerializer(YearMonth.class, YearMonthSerializer.class);
if (isClassAvailable("java.time.MonthDay")) kryo.addDefaultSerializer(MonthDay.class, MonthDaySerializer.class);
if (isClassAvailable("java.time.Period")) kryo.addDefaultSerializer(Period.class, PeriodSerializer.class);
}
public static class DurationSerializer extends ImmutableSerializer {
public void write (Kryo kryo, Output out, Duration duration) {
out.writeLong(duration.getSeconds());
out.writeInt(duration.getNano(), true);
}
public Duration read (Kryo kryo, Input in, Class type) {
long seconds = in.readLong();
int nanos = in.readInt(true);
return Duration.ofSeconds(seconds, nanos);
}
}
public static class InstantSerializer extends ImmutableSerializer {
public void write (Kryo kryo, Output out, Instant instant) {
out.writeVarLong(instant.getEpochSecond(), true);
out.writeInt(instant.getNano(), true);
}
public Instant read (Kryo kryo, Input in, Class type) {
long seconds = in.readVarLong(true);
int nanos = in.readInt(true);
return Instant.ofEpochSecond(seconds, nanos);
}
}
public static class LocalDateSerializer extends ImmutableSerializer {
public void write (Kryo kryo, Output out, LocalDate date) {
write(out, date);
}
static void write (Output out, LocalDate date) {
out.writeInt(date.getYear(), true);
out.writeByte(date.getMonthValue());
out.writeByte(date.getDayOfMonth());
}
public LocalDate read (Kryo kryo, Input in, Class type) {
return read(in);
}
static LocalDate read (Input in) {
int year = in.readInt(true);
int month = in.readByte();
int dayOfMonth = in.readByte();
return LocalDate.of(year, month, dayOfMonth);
}
}
public static class LocalDateTimeSerializer extends ImmutableSerializer {
public void write (Kryo kryo, Output out, LocalDateTime dateTime) {
LocalDateSerializer.write(out, dateTime.toLocalDate());
LocalTimeSerializer.write(out, dateTime.toLocalTime());
}
public LocalDateTime read (Kryo kryo, Input in, Class type) {
LocalDate date = LocalDateSerializer.read(in);
LocalTime time = LocalTimeSerializer.read(in);
return LocalDateTime.of(date, time);
}
}
public static class LocalTimeSerializer extends ImmutableSerializer {
public void write (Kryo kryo, Output out, LocalTime time) {
write(out, time);
}
static void write (Output out, LocalTime time) {
if (time.getNano() == 0) {
if (time.getSecond() == 0) {
if (time.getMinute() == 0) {
out.writeByte(~time.getHour());
} else {
out.writeByte(time.getHour());
out.writeByte(~time.getMinute());
}
} else {
out.writeByte(time.getHour());
out.writeByte(time.getMinute());
out.writeByte(~time.getSecond());
}
} else {
out.writeByte(time.getHour());
out.writeByte(time.getMinute());
out.writeByte(time.getSecond());
out.writeInt(time.getNano(), true);
}
}
public LocalTime read (Kryo kryo, Input in, Class type) {
return read(in);
}
static LocalTime read (Input in) {
int hour = in.readByte();
int minute = 0;
int second = 0;
int nano = 0;
if (hour < 0) {
hour = ~hour;
} else {
minute = in.readByte();
if (minute < 0) {
minute = ~minute;
} else {
second = in.readByte();
if (second < 0) {
second = ~second;
} else {
nano = in.readInt(true);
}
}
}
return LocalTime.of(hour, minute, second, nano);
}
}
public static class ZoneOffsetSerializer extends ImmutableSerializer {
public void write (Kryo kryo, Output out, ZoneOffset obj) {
write(out, obj);
}
static void write (Output out, ZoneOffset obj) {
final int offsetSecs = obj.getTotalSeconds();
int offsetByte = offsetSecs % 900 == 0 ? offsetSecs / 900 : 127; // compress to -72 to +72
out.writeByte(offsetByte);
if (offsetByte == 127) {
out.writeInt(offsetSecs);
}
}
public ZoneOffset read (Kryo kryo, Input in, Class type) {
return read(in);
}
static ZoneOffset read (Input in) {
int offsetByte = in.readByte();
return (offsetByte == 127 ? ZoneOffset.ofTotalSeconds(in.readInt()) : ZoneOffset.ofTotalSeconds(offsetByte * 900));
}
}
public static class ZoneIdSerializer extends ImmutableSerializer {
public void write (Kryo kryo, Output out, ZoneId obj) {
write(out, obj);
}
static void write (Output out, ZoneId obj) {
out.writeString(obj.getId());
}
public ZoneId read (Kryo kryo, Input in, Class type) {
return read(in);
}
static ZoneId read (Input in) {
String id = in.readString();
return ZoneId.of(id);
}
}
public static class OffsetTimeSerializer extends ImmutableSerializer {
public void write (Kryo kryo, Output out, OffsetTime obj) {
LocalTimeSerializer.write(out, obj.toLocalTime());
ZoneOffsetSerializer.write(out, obj.getOffset());
}
public OffsetTime read (Kryo kryo, Input in, Class type) {
LocalTime time = LocalTimeSerializer.read(in);
ZoneOffset offset = ZoneOffsetSerializer.read(in);
return OffsetTime.of(time, offset);
}
}
public static class OffsetDateTimeSerializer extends ImmutableSerializer {
public void write (Kryo kryo, Output out, OffsetDateTime obj) {
LocalDateSerializer.write(out, obj.toLocalDate());
LocalTimeSerializer.write(out, obj.toLocalTime());
ZoneOffsetSerializer.write(out, obj.getOffset());
}
public OffsetDateTime read (Kryo kryo, Input in, Class type) {
LocalDate date = LocalDateSerializer.read(in);
LocalTime time = LocalTimeSerializer.read(in);
ZoneOffset offset = ZoneOffsetSerializer.read(in);
return OffsetDateTime.of(date, time, offset);
}
}
public static class ZonedDateTimeSerializer extends ImmutableSerializer {
public void write (Kryo kryo, Output out, ZonedDateTime obj) {
LocalDateSerializer.write(out, obj.toLocalDate());
LocalTimeSerializer.write(out, obj.toLocalTime());
ZoneIdSerializer.write(out, obj.getZone());
}
public ZonedDateTime read (Kryo kryo, Input in, Class type) {
LocalDate date = LocalDateSerializer.read(in);
LocalTime time = LocalTimeSerializer.read(in);
ZoneId zone = ZoneIdSerializer.read(in);
return ZonedDateTime.of(date, time, zone);
}
}
public static class YearSerializer extends ImmutableSerializer {
public void write (Kryo kryo, Output out, Year obj) {
out.writeVarInt(obj.getValue(), true);
}
public Year read (Kryo kryo, Input in, Class type) {
return Year.of(in.readInt(true));
}
}
public static class YearMonthSerializer extends ImmutableSerializer {
public void write (Kryo kryo, Output out, YearMonth obj) {
out.writeVarInt(obj.getYear(), true);
out.writeByte(obj.getMonthValue());
}
public YearMonth read (Kryo kryo, Input in, Class type) {
int year = in.readInt(true);
byte month = in.readByte();
return YearMonth.of(year, month);
}
}
public static class MonthDaySerializer extends ImmutableSerializer {
public void write (Kryo kryo, Output out, MonthDay obj) {
out.writeByte(obj.getMonthValue());
out.writeByte(obj.getDayOfMonth());
}
public MonthDay read (Kryo kryo, Input in, Class type) {
byte month = in.readByte();
byte day = in.readByte();
return MonthDay.of(month, day);
}
}
public static class PeriodSerializer extends ImmutableSerializer {
public void write (Kryo kryo, Output out, Period obj) {
out.writeVarInt(obj.getYears(), true);
out.writeVarInt(obj.getMonths(), true);
out.writeVarInt(obj.getDays(), true);
}
public Period read (Kryo kryo, Input in, Class type) {
int years = in.readInt(true);
int months = in.readInt(true);
int days = in.readInt(true);
return Period.of(years, months, days);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy