io.vertx.reactivex.impl.FlowableUnmarshaller Maven / Gradle / Ivy
package io.vertx.reactivex.impl;
import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.core.ObjectCodec;
import com.fasterxml.jackson.core.type.TypeReference;
import io.reactivex.Flowable;
import io.reactivex.FlowableTransformer;
import io.reactivex.Maybe;
import io.reactivex.Single;
import io.reactivex.annotations.NonNull;
import io.vertx.core.buffer.Buffer;
import org.reactivestreams.Publisher;
import static io.vertx.reactivex.impl.ObservableUnmarshaller.getT;
import static java.util.Objects.nonNull;
/**
* An operator to unmarshall json to pojos.
*
* @author Julien Viet
*/
public class FlowableUnmarshaller implements FlowableTransformer {
private final java.util.function.Function unwrap;
private final Class mappedType;
private final TypeReference mappedTypeRef;
private final ObjectCodec mapper;
public FlowableUnmarshaller(java.util.function.Function unwrap, Class mappedType) {
this(unwrap, mappedType, null, null);
}
public FlowableUnmarshaller(java.util.function.Function unwrap, TypeReference mappedTypeRef) {
this(unwrap, null, mappedTypeRef, null);
}
public FlowableUnmarshaller(java.util.function.Function unwrap, Class mappedType, ObjectCodec mapper) {
this(unwrap, mappedType, null, mapper);
}
public FlowableUnmarshaller(java.util.function.Function unwrap, TypeReference mappedTypeRef, ObjectCodec mapper) {
this(unwrap, null, mappedTypeRef, mapper);
}
private FlowableUnmarshaller(java.util.function.Function unwrap, Class mappedType, TypeReference mappedTypeRef, ObjectCodec mapper) {
this.unwrap = unwrap;
this.mappedType = mappedType;
this.mappedTypeRef = mappedTypeRef;
this.mapper = mapper;
}
@Override
public Publisher apply(@NonNull Flowable upstream) {
Flowable unwrapped = upstream.map(unwrap::apply);
Single aggregated = unwrapped.collect(Buffer::buffer, Buffer::appendBuffer);
Maybe unmarshalled = aggregated.toMaybe().concatMap(buffer -> {
if (buffer.length() > 0) {
try {
T obj;
if (mapper != null) {
JsonParser parser = mapper.getFactory().createParser(buffer.getBytes());
obj = nonNull(mappedType) ? mapper.readValue(parser, mappedType) :
mapper.readValue(parser, mappedTypeRef);
} else {
obj = getT(buffer, mappedType, mappedTypeRef);
}
return Maybe.just(obj);
} catch (Exception e) {
return Maybe.error(e);
}
} else {
return Maybe.empty();
}
});
return unmarshalled.toFlowable();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy