org.apache.coyote.http11.upgrade.AbstractServletOutputStream Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.coyote.http11.upgrade;
import java.io.IOException;
import javax.servlet.ServletOutputStream;
import javax.servlet.WriteListener;
import org.apache.tomcat.util.ExceptionUtils;
import org.apache.tomcat.util.res.StringManager;
public abstract class AbstractServletOutputStream extends ServletOutputStream {
protected static final StringManager sm =
StringManager.getManager(Constants.Package);
private final Object fireListenerLock = new Object();
private final Object writeLock = new Object();
private volatile boolean closeRequired = false;
// Start in blocking-mode
private volatile WriteListener listener = null;
private volatile boolean fireListener = false;
private volatile ClassLoader applicationLoader = null;
private volatile byte[] buffer;
@Override
public final boolean isReady() {
if (listener == null) {
throw new IllegalStateException(
sm.getString("upgrade.sos.canWrite.is"));
}
// Make sure isReady() and onWritePossible() have a consistent view of
// buffer and fireListener when determining if the listener should fire
synchronized (fireListenerLock) {
boolean result = (buffer == null);
fireListener = !result;
return result;
}
}
@Override
public final void setWriteListener(WriteListener listener) {
if (listener == null) {
throw new IllegalArgumentException(
sm.getString("upgrade.sos.writeListener.null"));
}
this.listener = listener;
this.applicationLoader = Thread.currentThread().getContextClassLoader();
}
protected final boolean isCloseRequired() {
return closeRequired;
}
@Override
public void write(int b) throws IOException {
synchronized (writeLock) {
preWriteChecks();
writeInternal(new byte[] { (byte) b }, 0, 1);
}
}
@Override
public void write(byte[] b, int off, int len) throws IOException {
synchronized (writeLock) {
preWriteChecks();
writeInternal(b, off, len);
}
}
@Override
public void close() throws IOException {
closeRequired = true;
doClose();
}
private void preWriteChecks() {
if (buffer != null) {
throw new IllegalStateException(
sm.getString("upgrade.sis.write.ise"));
}
}
/**
* Must hold writeLock to call this method.
*/
private void writeInternal(byte[] b, int off, int len) throws IOException {
if (listener == null) {
// Simple case - blocking IO
doWrite(true, b, off, len);
} else {
// Non-blocking IO
// If the non-blocking read does not complete, doWrite() will add
// the socket back into the poller. The poller may trigger a new
// write event before this method has finished updating buffer. The
// writeLock sync makes sure that buffer is updated before the next
// write executes.
int written = doWrite(false, b, off, len);
if (written < len) {
// TODO: - Reuse the buffer
// - Only reallocate if it gets too big (>8k?)
buffer = new byte[len - written];
System.arraycopy(b, off + written, buffer, 0, len - written);
} else {
buffer = null;
}
}
}
protected final void onWritePossible() throws IOException {
synchronized (writeLock) {
try {
writeInternal(buffer, 0, buffer.length);
} catch (Throwable t) {
ExceptionUtils.handleThrowable(t);
Thread thread = Thread.currentThread();
ClassLoader originalClassLoader = thread.getContextClassLoader();
try {
thread.setContextClassLoader(applicationLoader);
listener.onError(t);
} finally {
thread.setContextClassLoader(originalClassLoader);
}
if (t instanceof IOException) {
throw t;
} else {
throw new IOException(t);
}
}
// Make sure isReady() and onWritePossible() have a consistent view of
// buffer and fireListener when determining if the listener should fire
boolean fire = false;
synchronized (fireListenerLock) {
if (buffer == null && fireListener) {
fireListener = false;
fire = true;
}
}
if (fire) {
Thread thread = Thread.currentThread();
ClassLoader originalClassLoader = thread.getContextClassLoader();
try {
thread.setContextClassLoader(applicationLoader);
listener.onWritePossible();
} finally {
thread.setContextClassLoader(originalClassLoader);
}
}
}
}
/**
* Abstract method to be overridden by concrete implementations. The base
* class will ensure that there are no concurrent calls to this method for
* the same socket.
*/
protected abstract int doWrite(boolean block, byte[] b, int off, int len)
throws IOException;
protected abstract void doFlush() throws IOException;
protected abstract void doClose() throws IOException;
}