Search in sources :

Example 11 with Multi

use of io.helidon.common.reactive.Multi in project helidon by oracle.

the class JsonbBodyStreamWriter method write.

@Override
public Multi<DataChunk> write(Flow.Publisher<?> publisher, GenericType<?> type, MessageBodyWriterContext context) {
    MediaType contentType = context.findAccepted(MediaType.JSON_PREDICATE, MediaType.APPLICATION_JSON);
    context.contentType(contentType);
    AtomicBoolean first = new AtomicBoolean(true);
    ObjectToChunks jsonToChunks = new ObjectToChunks(jsonb, context.charset());
    return Multi.create(publisher).flatMap(jsonToChunks).flatMap(it -> {
        if (first.getAndSet(false)) {
            // first record, do not prepend a comma
            return Multi.just(DataChunk.create(ARRAY_JSON_BEGIN_BYTES), it);
        } else {
            // any subsequent record starts with a comma
            return Multi.just(DataChunk.create(COMMA_BYTES), it);
        }
    }).onCompleteResume(DataChunk.create(ARRAY_JSON_END_BYTES));
}
Also used : Objects(java.util.Objects) Jsonb(jakarta.json.bind.Jsonb) Flow(java.util.concurrent.Flow) DataChunk(io.helidon.common.http.DataChunk) AtomicBoolean(java.util.concurrent.atomic.AtomicBoolean) MessageBodyStreamWriter(io.helidon.media.common.MessageBodyStreamWriter) ObjectToChunks(io.helidon.media.jsonb.JsonbBodyWriter.ObjectToChunks) GenericType(io.helidon.common.GenericType) StandardCharsets(java.nio.charset.StandardCharsets) Multi(io.helidon.common.reactive.Multi) MessageBodyWriterContext(io.helidon.media.common.MessageBodyWriterContext) MediaType(io.helidon.common.http.MediaType) AtomicBoolean(java.util.concurrent.atomic.AtomicBoolean) ObjectToChunks(io.helidon.media.jsonb.JsonbBodyWriter.ObjectToChunks) MediaType(io.helidon.common.http.MediaType)

Aggregations

Multi (io.helidon.common.reactive.Multi)11 DataChunk (io.helidon.common.http.DataChunk)6 AtomicBoolean (java.util.concurrent.atomic.AtomicBoolean)6 GenericType (io.helidon.common.GenericType)5 MessageBodyWriterContext (io.helidon.media.common.MessageBodyWriterContext)5 Flow (java.util.concurrent.Flow)5 MatcherAssert.assertThat (org.hamcrest.MatcherAssert.assertThat)5 Test (org.junit.jupiter.api.Test)5 MediaType (io.helidon.common.http.MediaType)4 MessageBodyStreamWriter (io.helidon.media.common.MessageBodyStreamWriter)4 IOException (java.io.IOException)4 Json (jakarta.json.Json)3 JsonStructure (jakarta.json.JsonStructure)3 StandardCharsets (java.nio.charset.StandardCharsets)3 List (java.util.List)3 CompletionStage (java.util.concurrent.CompletionStage)3 Single (io.helidon.common.reactive.Single)2 Config (io.helidon.config.Config)2 DbRow (io.helidon.dbclient.DbRow)2 CONFIG (io.helidon.tests.integration.dbclient.common.AbstractIT.CONFIG)2