ResponseBodyEmitter detects timeout/completion

ResponseBodyEmitter now registers by default to receive callbacks
on timeout/completion and sets its internal "complete" flag to true
in order to prevent proactively further use of the emitter.

Issue: SPR-13498
This commit is contained in:
Rossen Stoyanchev
2015-09-25 14:06:33 -04:00
parent a6a6aed17f
commit fdbe8dc4c1
2 changed files with 69 additions and 22 deletions

View File

@@ -69,9 +69,9 @@ public class ResponseBodyEmitter {
private Throwable failure;
private Runnable timeoutCallback;
private final DefaultCallback timeoutCallback = new DefaultCallback();
private Runnable completionCallback;
private final DefaultCallback completionCallback = new DefaultCallback();
/**
@@ -126,11 +126,8 @@ public class ResponseBodyEmitter {
this.handler.complete();
}
}
if (this.timeoutCallback != null) {
else {
this.handler.onTimeout(this.timeoutCallback);
}
if (this.completionCallback != null) {
this.handler.onCompletion(this.completionCallback);
}
}
@@ -168,11 +165,11 @@ public class ResponseBodyEmitter {
this.handler.send(object, mediaType);
}
catch (IOException ex) {
this.handler.completeWithError(ex);
completeWithError(ex);
throw ex;
}
catch (Throwable ex) {
this.handler.completeWithError(ex);
completeWithError(ex);
throw new IllegalStateException("Failed to send " + object, ex);
}
}
@@ -212,10 +209,7 @@ public class ResponseBodyEmitter {
* called from a container thread when an async request times out.
*/
public synchronized void onTimeout(Runnable callback) {
this.timeoutCallback = callback;
if (this.handler != null) {
this.handler.onTimeout(callback);
}
this.timeoutCallback.setDelegate(callback);
}
/**
@@ -225,10 +219,7 @@ public class ResponseBodyEmitter {
* detecting that a {@code ResponseBodyEmitter} instance is no longer usable.
*/
public synchronized void onCompletion(Runnable callback) {
this.completionCallback = callback;
if (this.handler != null) {
this.handler.onCompletion(callback);
}
this.completionCallback.setDelegate(callback);
}
@@ -272,4 +263,22 @@ public class ResponseBodyEmitter {
}
}
private class DefaultCallback implements Runnable {
private Runnable delegate;
public void setDelegate(Runnable delegate) {
this.delegate = delegate;
}
@Override
public void run() {
ResponseBodyEmitter.this.complete = true;
if (this.delegate != null) {
this.delegate.run();
}
}
}
}