io.fluxcapacitor.javaclient.common.serialization.AbstractSerializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-client Show documentation
Show all versions of java-client Show documentation
Default Java client library for interfacing with Flux Capacitor.
/*
* Copyright (c) 2016-2017 Flux Capacitor.
*
* 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 io.fluxcapacitor.javaclient.common.serialization;
import io.fluxcapacitor.common.api.Data;
import io.fluxcapacitor.common.api.SerializedObject;
import io.fluxcapacitor.common.serialization.Revision;
import io.fluxcapacitor.javaclient.common.serialization.upcasting.Upcaster;
import lombok.extern.slf4j.Slf4j;
import java.util.stream.Stream;
import static java.lang.String.format;
@Slf4j
public abstract class AbstractSerializer implements Serializer {
private final Upcaster> upcasterChain;
protected AbstractSerializer(Upcaster> upcasterChain) {
this.upcasterChain = upcasterChain;
}
@Override
public Data serialize(Object object) {
byte[] bytes;
try {
bytes = doSerialize(object);
} catch (Exception e) {
throw new SerializationException("Could not serialize " + object, e);
}
Revision revision = getRevision(object);
return new Data<>(bytes, getObjectType(object), revision == null ? 0 : revision.value());
}
protected String getObjectType(Object object) {
return object == null ? Void.class.getName() : object.getClass().getName();
}
protected Revision getRevision(Object object) {
return object == null ? null : object.getClass().getAnnotation(Revision.class);
}
protected abstract byte[] doSerialize(Object object) throws Exception;
@SuppressWarnings("unchecked")
@Override
public > Stream> deserialize(
Stream dataStream, boolean failOnUnknownType) {
return upcasterChain.upcast((Stream>) dataStream)
.flatMap(s -> {
Class> type;
try {
type = classForType(s.data().getType());
} catch (Exception e) {
if (failOnUnknownType) {
throw new SerializationException(
format("Could not deserialize object. The serialized type is unknown: %s (rev. %d)",
s.data().getType(), s.data().getRevision()), e);
}
return (Stream) handleUnknownType(s);
}
return (Stream) Stream.of(new DeserializingObject(s, () -> {
try {
return doDeserialize(s.data().getValue(), type);
} catch (Exception e) {
throw new SerializationException("Could not deserialize a " + s.data().getType(), e);
}
}));
});
}
protected Class> classForType(String type) throws Exception {
return Class.forName(type);
}
protected Stream> handleUnknownType(SerializedObject serializedObject) {
return Stream.empty();
}
protected abstract Object doDeserialize(byte[] bytes, Class> type) throws Exception;
protected enum NullValue {
INSTANCE;
}
}