package io.undertow.servlet.spec;
import io.undertow.servlet.UndertowServletMessages;
import org.xnio.Buffers;
import org.xnio.ChannelListener;
import org.xnio.IoUtils;
import io.undertow.connector.ByteBufferPool;
import io.undertow.connector.PooledByteBuffer;
import org.xnio.channels.Channels;
import org.xnio.channels.StreamSourceChannel;
import javax.servlet.ReadListener;
import javax.servlet.ServletInputStream;
import java.io.IOException;
import java.nio.ByteBuffer;
import java.util.concurrent.Executor;
import static org.xnio.Bits.anyAreClear;
import static org.xnio.Bits.anyAreSet;
public class UpgradeServletInputStream extends ServletInputStream {
private final StreamSourceChannel channel;
private final ByteBufferPool bufferPool;
private final Executor ioExecutor;
private volatile ReadListener listener;
private static final int FLAG_READY = 1;
private static final int FLAG_CLOSED = 1 << 1;
private static final int FLAG_FINISHED = 1 << 2;
private static final int FLAG_ON_DATA_READ_CALLED = 1 << 3;
private int state;
private PooledByteBuffer pooled;
public UpgradeServletInputStream(final StreamSourceChannel channel, final ByteBufferPool bufferPool, Executor ioExecutor) {
this.channel = channel;
this.bufferPool = bufferPool;
this.ioExecutor = ioExecutor;
}
@Override
public boolean isFinished() {
return anyAreSet(state, FLAG_FINISHED);
}
@Override
public boolean isReady() {
return anyAreSet(state, FLAG_READY) && !isFinished();
}
@Override
public void setReadListener(final ReadListener readListener) {
if (readListener == null) {
throw UndertowServletMessages.MESSAGES.listenerCannotBeNull();
}
if (listener != null) {
throw UndertowServletMessages.MESSAGES.listenerAlreadySet();
}
listener = readListener;
channel.getReadSetter().set(new ServletInputStreamChannelListener());
ioExecutor.execute(new Runnable() {
@Override
public void run() {
channel.wakeupReads();
}
});
}
@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(final byte[] b) throws IOException {
return read(b, 0, b.length);
}
@Override
public int read(final byte[] b, final int off, final int len) throws IOException {
if (anyAreSet(state, FLAG_CLOSED)) {
throw UndertowServletMessages.MESSAGES.streamIsClosed();
}
if (listener != null) {
if (anyAreClear(state, FLAG_READY)) {
throw UndertowServletMessages.MESSAGES.streamNotReady();
}
} else {
readIntoBuffer();
}
if (anyAreSet(state, FLAG_FINISHED)) {
return -1;
}
if (len == 0) {
return 0;
}
ByteBuffer buffer = pooled.getBuffer();
int copied = Buffers.copy(ByteBuffer.wrap(b, off, len), buffer);
if (!buffer.hasRemaining()) {
pooled.close();
pooled = null;
if (listener != null) {
readIntoBufferNonBlocking();
}
}
return copied;
}
private void readIntoBuffer() throws IOException {
if (pooled == null && !anyAreSet(state, FLAG_FINISHED)) {
pooled = bufferPool.allocate();
int res = Channels.readBlocking(channel, pooled.getBuffer());
pooled.getBuffer().flip();
if (res == -1) {
state |= FLAG_FINISHED;
pooled.close();
pooled = null;
}
}
}
private void readIntoBufferNonBlocking() throws IOException {
if (pooled == null && !anyAreSet(state, FLAG_FINISHED | FLAG_CLOSED)) {
pooled = bufferPool.allocate();
if (listener == null) {
int res = channel.read(pooled.getBuffer());
if (res == 0) {
pooled.close();
pooled = null;
return;
}
pooled.getBuffer().flip();
if (res == -1) {
state |= FLAG_FINISHED;
pooled.close();
pooled = null;
}
} else {
if (anyAreClear(state, FLAG_READY)) {
throw UndertowServletMessages.MESSAGES.streamNotReady();
}
int res = channel.read(pooled.getBuffer());
pooled.getBuffer().flip();
if (res == -1) {
state |= FLAG_FINISHED;
pooled.close();
pooled = null;
} else if (res == 0) {
state &= ~FLAG_READY;
pooled.close();
pooled = null;
if(Thread.currentThread() == channel.getIoThread()) {
channel.resumeReads();
} else {
ioExecutor.execute(new Runnable() {
@Override
public void run() {
channel.resumeReads();
}
});
}
}
}
}
}
@Override
public int available() throws IOException {
if (anyAreSet(state, FLAG_CLOSED)) {
throw UndertowServletMessages.MESSAGES.streamIsClosed();
}
readIntoBufferNonBlocking();
if (anyAreSet(state, FLAG_FINISHED)) {
return 0;
}
if (pooled == null) {
return 0;
}
return pooled.getBuffer().remaining();
}
@Override
public void close() throws IOException {
if (anyAreSet(state, FLAG_CLOSED)) {
return;
}
state |= FLAG_FINISHED | FLAG_CLOSED;
if (pooled != null) {
pooled.close();
pooled = null;
}
channel.suspendReads();
channel.shutdownReads();
}
private class ServletInputStreamChannelListener implements ChannelListener<StreamSourceChannel> {
@Override
public void handleEvent(final StreamSourceChannel channel) {
if (anyAreSet(state, FLAG_FINISHED)) {
return;
}
state |= FLAG_READY;
try {
readIntoBufferNonBlocking();
if (pooled != null) {
state |= FLAG_READY;
if (!anyAreSet(state, FLAG_FINISHED)) {
listener.onDataAvailable();
}
}
} catch (Exception e) {
if(pooled != null) {
pooled.close();
pooled = null;
}
listener.onError(e);
IoUtils.safeClose(channel);
}
if (anyAreSet(state, FLAG_FINISHED)) {
if (anyAreClear(state, FLAG_ON_DATA_READ_CALLED)) {
try {
state |= FLAG_ON_DATA_READ_CALLED;
channel.shutdownReads();
listener.onAllDataRead();
} catch (IOException e) {
if(pooled != null) {
pooled.close();
pooled = null;
}
listener.onError(e);
IoUtils.safeClose(channel);
}
}
} else if(isReady()) {
channel.suspendReads();
}
}
}
}