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

com.devops4j.embedded.servlet.EmbeddedServletOutputStream Maven / Gradle / Ivy

There is a newer version: 0.0.4-alpha
Show newest version
package com.devops4j.embedded.servlet;

import com.devops4j.embedded.buffer.ByteBuf;
import lombok.Data;

import javax.servlet.WriteListener;
import java.io.IOException;

@Data
class EmbeddedServletOutputStream extends javax.servlet.ServletOutputStream {
    ByteBuf byteBuf;
    ByteBuf byteBuf0;

    public EmbeddedServletOutputStream(ByteBuf byteBuf) {
        this.byteBuf = byteBuf;
        this.byteBuf0 = ByteBuf.allocate(1024).autoExpand(true);
    }

    @Override
    public boolean isReady() {
        return true;
    }

    @Override
    public void setWriteListener(WriteListener writeListener) {

    }

    @Override
    public void write(int b) throws IOException {
        this.byteBuf.put(b);
    }

    @Override
    public void flush() throws IOException {
        byte[] data = this.byteBuf0.getBytes(this.getByteBuf0().readableLength());
        this.byteBuf.put(data);
    }

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

    @Override
    public void write(byte[] b, int off, int len) throws IOException {
        byte[] data = new byte[len];
        System.arraycopy(b, off, data, 0, len);
        this.byteBuf0.put(data);
    }

    @Override
    public void write(byte[] b) throws IOException {
        write(b, 0, b == null ? 0 : b.length);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy