Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.hazelcast.internal.serialization.impl.defaultserializers.JavaDefaultSerializers Maven / Gradle / Ivy
/*
* Copyright (c) 2008-2024, Hazelcast, Inc. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.hazelcast.internal.serialization.impl.defaultserializers;
import com.hazelcast.core.HazelcastJsonValue;
import com.hazelcast.internal.compatibility.serialization.impl.CompatibilitySerializationConstants;
import com.hazelcast.internal.nio.BufferObjectDataInput;
import com.hazelcast.internal.nio.ClassLoaderUtil;
import com.hazelcast.internal.serialization.impl.SerializationConstants;
import com.hazelcast.internal.nio.IOUtil;
import com.hazelcast.nio.ObjectDataInput;
import com.hazelcast.nio.ObjectDataOutput;
import com.hazelcast.nio.serialization.ByteArraySerializer;
import com.hazelcast.nio.serialization.ClassNameFilter;
import com.hazelcast.nio.serialization.HazelcastSerializationException;
import com.hazelcast.nio.serialization.StreamSerializer;
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
import java.io.Externalizable;
import java.io.IOException;
import java.io.InputStream;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.io.OutputStream;
import java.math.BigDecimal;
import java.math.BigInteger;
import java.nio.ByteBuffer;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.LocalTime;
import java.time.OffsetDateTime;
import java.util.Date;
import java.util.Optional;
import java.util.zip.GZIPInputStream;
import java.util.zip.GZIPOutputStream;
import static com.hazelcast.internal.nio.IOUtil.newObjectInputStream;
import static com.hazelcast.internal.serialization.impl.SerializationConstants.JAVASCRIPT_JSON_SERIALIZATION_TYPE;
import static com.hazelcast.internal.serialization.impl.SerializationConstants.JAVA_DEFAULT_BYTE_BUFFER;
import static com.hazelcast.internal.serialization.impl.SerializationConstants.JAVA_DEFAULT_TYPE_EXTERNALIZABLE;
import static com.hazelcast.internal.serialization.impl.SerializationConstants.JAVA_DEFAULT_TYPE_OPTIONAL;
import static com.hazelcast.internal.serialization.impl.SerializationConstants.JAVA_DEFAULT_TYPE_SERIALIZABLE;
import static com.hazelcast.internal.serialization.impl.SerializationConstants.JAVA_DEFAULT_TYPE_LOCALDATE;
import static com.hazelcast.internal.serialization.impl.SerializationConstants.JAVA_DEFAULT_TYPE_LOCALTIME;
import static com.hazelcast.internal.serialization.impl.SerializationConstants.JAVA_DEFAULT_TYPE_LOCALDATETIME;
import static com.hazelcast.internal.serialization.impl.SerializationConstants.JAVA_DEFAULT_TYPE_OFFSETDATETIME;
import static java.lang.Math.max;
@SuppressWarnings({"NullableProblems", "rawtypes"})
public final class JavaDefaultSerializers {
private JavaDefaultSerializers() { }
public static final class JavaSerializer implements StreamSerializer {
private final boolean shared;
private final boolean gzipEnabled;
private final ClassNameFilter classFilter;
public JavaSerializer(boolean shared, boolean gzipEnabled, ClassNameFilter classFilter) {
this.shared = shared;
this.gzipEnabled = gzipEnabled;
this.classFilter = classFilter;
}
@Override
public int getTypeId() {
return JAVA_DEFAULT_TYPE_SERIALIZABLE;
}
@Override
public Object read(final ObjectDataInput in) throws IOException {
if (gzipEnabled) {
return readGzipped(((InputStream) in), in.getClassLoader());
}
return read(((InputStream) in), in.getClassLoader());
}
private Object read(InputStream in, ClassLoader classLoader) throws IOException {
try {
ObjectInputStream objectInputStream = newObjectInputStream(classLoader, classFilter, in);
if (shared) {
return objectInputStream.readObject();
}
return objectInputStream.readUnshared();
} catch (ClassNotFoundException e) {
throw new HazelcastSerializationException(e);
}
}
private Object readGzipped(InputStream in, ClassLoader classLoader) throws IOException {
ExtendedGZipInputStream gzip = new ExtendedGZipInputStream(in);
try {
Object obj = read(gzip, classLoader);
gzip.pushBackUnconsumedBytes();
return obj;
} finally {
gzip.closeInflater();
}
}
@SuppressFBWarnings("OS_OPEN_STREAM")
@Override
public void write(final ObjectDataOutput out, final Object obj) throws IOException {
if (gzipEnabled) {
writeGzipped(((OutputStream) out), obj);
} else {
write((OutputStream) out, obj);
}
}
private void write(OutputStream out, Object obj) throws IOException {
ObjectOutputStream objectOutputStream = new ObjectOutputStream(out);
if (shared) {
objectOutputStream.writeObject(obj);
} else {
objectOutputStream.writeUnshared(obj);
}
// Force flush if not yet written due to internal behavior if pos < 1024
objectOutputStream.flush();
}
private void writeGzipped(OutputStream out, Object obj) throws IOException {
ExtendedGZipOutputStream gzip = new ExtendedGZipOutputStream(out);
try {
write(gzip, obj);
gzip.finish();
} finally {
gzip.closeDeflater();
}
}
}
public static final class ExternalizableSerializer implements StreamSerializer {
private final boolean gzipEnabled;
private final ClassNameFilter classFilter;
public ExternalizableSerializer(boolean gzipEnabled, ClassNameFilter classFilter) {
this.gzipEnabled = gzipEnabled;
this.classFilter = classFilter;
}
@Override
public int getTypeId() {
return JAVA_DEFAULT_TYPE_EXTERNALIZABLE;
}
@Override
public Externalizable read(final ObjectDataInput in) throws IOException {
String className = in.readString();
try {
if (gzipEnabled) {
return readGzipped(((InputStream) in), className, in.getClassLoader());
}
return read((InputStream) in, className, in.getClassLoader());
} catch (Exception e) {
throw new HazelcastSerializationException("Problem while reading Externalizable class: "
+ className + ", exception: " + e);
}
}
private Externalizable readGzipped(InputStream in, String className, ClassLoader classLoader) throws Exception {
ExtendedGZipInputStream gzip = new ExtendedGZipInputStream(in);
try {
Externalizable external = read(gzip, className, classLoader);
gzip.pushBackUnconsumedBytes();
return external;
} finally {
gzip.closeInflater();
}
}
private Externalizable read(InputStream in, String className, ClassLoader classLoader) throws Exception {
if (classFilter != null) {
classFilter.filter(className);
}
Externalizable ds = ClassLoaderUtil.newInstance(classLoader, className);
ObjectInputStream objectInputStream = newObjectInputStream(classLoader, classFilter, in);
ds.readExternal(objectInputStream);
return ds;
}
@Override
public void write(final ObjectDataOutput out, final Externalizable obj) throws IOException {
out.writeString(obj.getClass().getName());
if (gzipEnabled) {
writeGzipped(((OutputStream) out), obj);
} else {
write((OutputStream) out, obj);
}
}
private void writeGzipped(OutputStream out, Externalizable obj) throws IOException {
ExtendedGZipOutputStream gzip = new ExtendedGZipOutputStream(out);
try {
write(gzip, obj);
gzip.finish();
} finally {
gzip.closeDeflater();
}
}
private void write(OutputStream outputStream, Externalizable obj) throws IOException {
ObjectOutputStream objectOutputStream = new ObjectOutputStream(outputStream);
obj.writeExternal(objectOutputStream);
// Force flush if not yet written due to internal behavior if pos < 1024
objectOutputStream.flush();
}
}
public static final class BigIntegerSerializer implements StreamSerializer {
/** Determines if ser-de should conform the 3.x format */
private final boolean isCompatibility;
public BigIntegerSerializer(boolean isCompatibility) {
this.isCompatibility = isCompatibility;
}
@Override
public int getTypeId() {
return isCompatibility
? CompatibilitySerializationConstants.JAVA_DEFAULT_TYPE_BIG_INTEGER
: SerializationConstants.JAVA_DEFAULT_TYPE_BIG_INTEGER;
}
@Override
public BigInteger read(final ObjectDataInput in) throws IOException {
return IOUtil.readBigInteger(in);
}
@Override
public void write(final ObjectDataOutput out, BigInteger value) throws IOException {
IOUtil.writeBigInteger(out, value);
}
}
public static final class BigDecimalSerializer implements StreamSerializer {
final BigIntegerSerializer bigIntegerSerializer;
/** Determines if ser-de should conform the 3.x format */
final boolean isCompatibility;
public BigDecimalSerializer(boolean isCompatibility) {
this.bigIntegerSerializer = new BigIntegerSerializer(isCompatibility);
this.isCompatibility = isCompatibility;
}
@Override
public int getTypeId() {
return isCompatibility
? CompatibilitySerializationConstants.JAVA_DEFAULT_TYPE_BIG_DECIMAL
: SerializationConstants.JAVA_DEFAULT_TYPE_BIG_DECIMAL;
}
@Override
public BigDecimal read(ObjectDataInput in) throws IOException {
return IOUtil.readBigDecimal(in);
}
@Override
public void write(final ObjectDataOutput out, BigDecimal value) throws IOException {
IOUtil.writeBigDecimal(out, value);
}
}
public static final class DateSerializer implements StreamSerializer {
/** Determines if ser-de should conform the 3.x format */
private final boolean isCompatibility;
public DateSerializer(boolean isCompatibility) {
this.isCompatibility = isCompatibility;
}
@Override
public int getTypeId() {
return isCompatibility
? CompatibilitySerializationConstants.JAVA_DEFAULT_TYPE_DATE
: SerializationConstants.JAVA_DEFAULT_TYPE_DATE;
}
@Override
public Date read(final ObjectDataInput in) throws IOException {
return new Date(in.readLong());
}
@Override
public void write(final ObjectDataOutput out, final Date obj) throws IOException {
out.writeLong(obj.getTime());
}
}
public static final class LocalDateSerializer implements StreamSerializer {
@Override
public int getTypeId() {
return JAVA_DEFAULT_TYPE_LOCALDATE;
}
@Override
public LocalDate read(final ObjectDataInput in) throws IOException {
return IOUtil.readLocalDate(in);
}
@Override
public void write(final ObjectDataOutput out, final LocalDate value) throws IOException {
IOUtil.writeLocalDate(out, value);
}
}
public static final class LocalTimeSerializer implements StreamSerializer {
@Override
public int getTypeId() {
return JAVA_DEFAULT_TYPE_LOCALTIME;
}
@Override
public LocalTime read(final ObjectDataInput in) throws IOException {
return IOUtil.readLocalTime(in);
}
@Override
public void write(final ObjectDataOutput out, final LocalTime value) throws IOException {
IOUtil.writeLocalTime(out, value);
}
}
public static final class LocalDateTimeSerializer implements StreamSerializer {
@Override
public int getTypeId() {
return JAVA_DEFAULT_TYPE_LOCALDATETIME;
}
@Override
public LocalDateTime read(final ObjectDataInput in) throws IOException {
return IOUtil.readLocalDateTime(in);
}
@Override
public void write(final ObjectDataOutput out, final LocalDateTime value) throws IOException {
IOUtil.writeLocalDateTime(out, value);
}
}
public static final class OffsetDateTimeSerializer implements StreamSerializer {
@Override
public int getTypeId() {
return JAVA_DEFAULT_TYPE_OFFSETDATETIME;
}
@Override
public OffsetDateTime read(final ObjectDataInput in) throws IOException {
return IOUtil.readOffsetDateTime(in);
}
@Override
public void write(final ObjectDataOutput out, final OffsetDateTime value) throws IOException {
IOUtil.writeOffsetDateTime(out, value);
}
}
public static final class ClassSerializer implements StreamSerializer {
/** Determines if ser-de should conform the 3.x format */
private final boolean isCompatibility;
public ClassSerializer(boolean isCompatibility) {
this.isCompatibility = isCompatibility;
}
@Override
public int getTypeId() {
return isCompatibility
? CompatibilitySerializationConstants.JAVA_DEFAULT_TYPE_CLASS
: SerializationConstants.JAVA_DEFAULT_TYPE_CLASS;
}
@Override
public Class read(final ObjectDataInput in) throws IOException {
try {
return ClassLoaderUtil.loadClass(in.getClassLoader(), in.readString());
} catch (ClassNotFoundException e) {
throw new HazelcastSerializationException(e);
}
}
@Override
public void write(final ObjectDataOutput out, final Class obj) throws IOException {
out.writeString(obj.getName());
}
}
public static final class OptionalSerializer implements StreamSerializer {
@Override
public int getTypeId() {
return JAVA_DEFAULT_TYPE_OPTIONAL;
}
@Override
public Optional read(final ObjectDataInput in) throws IOException {
final boolean present = in.readBoolean();
if (present) {
return Optional.of(in.readObject());
}
return Optional.empty();
}
@Override
public void write(final ObjectDataOutput out, final Optional obj) throws IOException {
if (obj.isPresent()) {
out.writeBoolean(true);
out.writeObject(obj.get());
} else {
out.writeBoolean(false);
}
}
}
public static final class EnumSerializer implements StreamSerializer {
@Override
public int getTypeId() {
return CompatibilitySerializationConstants.JAVA_DEFAULT_TYPE_ENUM;
}
@Override
public void write(ObjectDataOutput out, Enum obj) throws IOException {
String name = obj.getDeclaringClass().getName();
out.writeString(name);
out.writeString(obj.name());
}
@Override
public Enum read(ObjectDataInput in) throws IOException {
String clazzName = in.readString();
Class clazz;
try {
clazz = ClassLoaderUtil.loadClass(in.getClassLoader(), clazzName);
} catch (ClassNotFoundException e) {
throw new HazelcastSerializationException("Failed to deserialize enum: " + clazzName, e);
}
String name = in.readString();
return Enum.valueOf(clazz, name);
}
}
public static final class HazelcastJsonValueSerializer implements StreamSerializer {
@Override
public int getTypeId() {
return JAVASCRIPT_JSON_SERIALIZATION_TYPE;
}
@Override
public void write(ObjectDataOutput out, HazelcastJsonValue object) throws IOException {
out.writeString(object.toString());
}
@Override
public HazelcastJsonValue read(ObjectDataInput in) throws IOException {
return new HazelcastJsonValue(in.readString());
}
}
public static final class ByteBufferSerializer implements ByteArraySerializer {
@Override
public int getTypeId() {
return JAVA_DEFAULT_BYTE_BUFFER;
}
@Override
public byte[] write(ByteBuffer buffer) throws IOException {
if (buffer.hasArray() && buffer.arrayOffset() == 0 && buffer.limit() == buffer.capacity()) {
return buffer.array();
}
byte[] bytes = new byte[buffer.remaining()];
buffer.get(bytes);
return bytes;
}
@Override
public ByteBuffer read(byte[] buffer) throws IOException {
return ByteBuffer.wrap(buffer);
}
}
/**
* Gzip input stream consumes more bytes in the stream than it actually needs.
* This class enables us to access internal inflater that keeps consumed buffer.
* `pushBackUnconsumedBytes` method adjust the position so that, next data in the stream can be read correctly
*/
private static final class ExtendedGZipInputStream extends GZIPInputStream {
private static final int GZIP_TRAILER_SIZE = 8;
private ExtendedGZipInputStream(InputStream in) throws IOException {
super(in);
assert in instanceof BufferObjectDataInput : "Unexpected input: " + in;
}
private void pushBackUnconsumedBytes() {
int remaining = inf.getRemaining();
BufferObjectDataInput bufferedInput = (BufferObjectDataInput) in;
int position = bufferedInput.position();
int rewindBack = max(0, remaining - ExtendedGZipInputStream.GZIP_TRAILER_SIZE);
int newPosition = position - rewindBack;
bufferedInput.position(newPosition);
}
/**
* Only close inflater, we don't want to close underlying InputStream
*/
private void closeInflater() {
//GZIPInputStream allocates native resources
//via inf.end() these resources are released.
inf.end();
}
}
private static final class ExtendedGZipOutputStream extends GZIPOutputStream {
private ExtendedGZipOutputStream(OutputStream out) throws IOException {
super(out);
}
/**
* Only close deflater, we don't want to close underlying OutputStream
*/
private void closeDeflater() {
//GZIPOutputStream allocates native resources
//via def.end() these resources are released.
def.end();
}
}
}