All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jboss.resteasy.plugins.providers.multipart.HeaderFlushedAsyncOutputStream Maven / Gradle / Ivy

There is a newer version: 7.0.0.Alpha4
Show newest version
package org.jboss.resteasy.plugins.providers.multipart;

import java.io.IOException;
import java.nio.charset.StandardCharsets;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.CompletionStage;

import jakarta.ws.rs.core.MultivaluedMap;
import jakarta.ws.rs.ext.RuntimeDelegate;

import org.jboss.resteasy.spi.AsyncOutputStream;

/**
 * @author Bill Burke
 * @version $Revision: 1 $
 */
public class HeaderFlushedAsyncOutputStream extends AsyncOutputStream {
    private MultivaluedMap headers;
    private AsyncOutputStream stream;
    private boolean headersFlushed = false;

    public HeaderFlushedAsyncOutputStream(final MultivaluedMap headers,
            final AsyncOutputStream delegate) {
        this.headers = headers;
        this.stream = delegate;
    }

    @SuppressWarnings(value = "unchecked")
    protected CompletionStage flushHeaders() {
        CompletionStage ret = CompletableFuture.completedFuture(null);
        if (headersFlushed)
            return ret;

        headersFlushed = true;
        RuntimeDelegate delegate = RuntimeDelegate.getInstance();

        for (String key : headers.keySet()) {
            for (Object obj : headers.get(key)) {
                String value;
                RuntimeDelegate.HeaderDelegate headerDelegate = delegate
                        .createHeaderDelegate(obj.getClass());
                if (headerDelegate != null) {
                    value = headerDelegate.toString(obj);
                } else {
                    value = obj.toString();
                }
                ret = ret.thenCompose(v -> stream.asyncWrite(key.getBytes(StandardCharsets.US_ASCII)))
                        .thenCompose(v -> stream.asyncWrite(AbstractMultipartWriter.COLON_SPACE_BYTES))
                        .thenCompose(v -> stream.asyncWrite(value.getBytes(StandardCharsets.US_ASCII)))
                        .thenCompose(v -> stream.asyncWrite(AbstractMultipartWriter.LINE_SEPARATOR_BYTES));
            }
        }
        return ret.thenCompose(v -> stream.asyncWrite(AbstractMultipartWriter.LINE_SEPARATOR_BYTES));
    }

    @Override
    public void write(int i) throws IOException {
        flushHeaders();
        stream.write(i);
    }

    @Override
    public void write(byte[] bytes) throws IOException {
        flushHeaders();
        stream.write(bytes);
    }

    @Override
    public void write(byte[] bytes, int i, int i1) throws IOException {
        flushHeaders();
        stream.write(bytes, i, i1);
    }

    @Override
    public void flush() throws IOException {
        stream.flush();
    }

    @Override
    public void close() throws IOException {
        stream.close();
    }

    @Override
    public CompletionStage asyncFlush() {
        return stream.asyncFlush();
    }

    @Override
    public CompletionStage asyncWrite(byte[] bytes, int offset, int length) {
        return flushHeaders()
                .thenCompose(v -> stream.asyncWrite(bytes, offset, length));
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy