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

io.quarkus.resteasy.reactive.server.servlet.runtime.ServletResteasyReactiveInputStream Maven / Gradle / Ivy

There is a newer version: 3.17.5
Show newest version
package io.quarkus.resteasy.reactive.server.servlet.runtime;

import java.io.IOException;
import java.io.InputStream;
import java.nio.ByteBuffer;

import jakarta.servlet.http.HttpServletRequest;

public class ServletResteasyReactiveInputStream extends InputStream {
    ByteBuffer existingData;
    HttpServletRequest request;
    InputStream delegate;

    public ServletResteasyReactiveInputStream(ByteBuffer existingData, HttpServletRequest request) {
        if (existingData.remaining() > 0) {
            this.existingData = existingData;
        }
        this.request = request;
    }

    @Override
    public int read() throws IOException {
        byte[] b = new byte[1];
        int read = read(b);
        if (read == -1) {
            return -1;
        }
        return b[0] & 0xff;
    }

    @Override
    public int read(byte[] b, int off, int len) throws IOException {
        if (existingData != null) {
            int read = Math.min(len, existingData.remaining());
            existingData.get(b, off, read);
            if (existingData.remaining() == 0) {
                existingData = null;
            }
            return read;
        }
        if (delegate == null) {
            delegate = request.getInputStream();
        }
        return delegate.read(b, off, len);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy