Issue #2525 Clean up SharedBlockingCallback

Signed-off-by: Greg Wilkins <gregw@webtide.com>
This commit is contained in:
Greg Wilkins 2018-05-13 23:11:38 +10:00
parent 9aa645cf98
commit 625d1f7726
5 changed files with 30 additions and 21 deletions

View File

@ -62,7 +62,7 @@
<Set name="headerCacheSize"><Property name="jetty.httpConfig.headerCacheSize" default="512" /></Set> <Set name="headerCacheSize"><Property name="jetty.httpConfig.headerCacheSize" default="512" /></Set>
<Set name="delayDispatchUntilContent"><Property name="jetty.httpConfig.delayDispatchUntilContent" deprecated="jetty.delayDispatchUntilContent" default="true"/></Set> <Set name="delayDispatchUntilContent"><Property name="jetty.httpConfig.delayDispatchUntilContent" deprecated="jetty.delayDispatchUntilContent" default="true"/></Set>
<Set name="maxErrorDispatches"><Property name="jetty.httpConfig.maxErrorDispatches" default="10"/></Set> <Set name="maxErrorDispatches"><Property name="jetty.httpConfig.maxErrorDispatches" default="10"/></Set>
<Set name="blockingTimeout"><Property name="jetty.httpConfig.blockingTimeout" default="-1"/></Set> <Set name="blockingTimeout"><Property deprecated="jetty.httpConfig.blockingTimeout" default="-1"/></Set>
<Set name="persistentConnectionsEnabled"><Property name="jetty.httpConfig.persistentConnectionsEnabled" default="true"/></Set> <Set name="persistentConnectionsEnabled"><Property name="jetty.httpConfig.persistentConnectionsEnabled" default="true"/></Set>
<Set name="cookieCompliance"><Call class="org.eclipse.jetty.http.CookieCompliance" name="valueOf"><Arg><Property name="jetty.httpConfig.cookieCompliance" default="RFC6265"/></Arg></Call></Set> <Set name="cookieCompliance"><Call class="org.eclipse.jetty.http.CookieCompliance" name="valueOf"><Arg><Property name="jetty.httpConfig.cookieCompliance" default="RFC6265"/></Arg></Call></Set>
<Set name="multiPartFormDataCompliance"><Call class="org.eclipse.jetty.server.MultiPartFormDataCompliance" name="valueOf"><Arg><Property name="jetty.httpConfig.multiPartFormDataCompliance" default="RFC7578"/></Arg></Call></Set> <Set name="multiPartFormDataCompliance"><Call class="org.eclipse.jetty.server.MultiPartFormDataCompliance" name="valueOf"><Arg><Property name="jetty.httpConfig.multiPartFormDataCompliance" default="RFC7578"/></Arg></Call></Set>

View File

@ -59,9 +59,6 @@ etc/jetty.xml
## Maximum number of error dispatches to prevent looping ## Maximum number of error dispatches to prevent looping
# jetty.httpConfig.maxErrorDispatches=10 # jetty.httpConfig.maxErrorDispatches=10
## Maximum time to block in total for a blocking IO operation (default -1 is to use idleTimeout on progress)
# jetty.httpConfig.blockingTimeout=-1
## Cookie compliance mode of: RFC2965, RFC6265 ## Cookie compliance mode of: RFC2965, RFC6265
# jetty.httpConfig.cookieCompliance=RFC6265 # jetty.httpConfig.cookieCompliance=RFC6265

View File

@ -31,6 +31,8 @@ import org.eclipse.jetty.util.TreeTrie;
import org.eclipse.jetty.util.Trie; import org.eclipse.jetty.util.Trie;
import org.eclipse.jetty.util.annotation.ManagedAttribute; import org.eclipse.jetty.util.annotation.ManagedAttribute;
import org.eclipse.jetty.util.annotation.ManagedObject; import org.eclipse.jetty.util.annotation.ManagedObject;
import org.eclipse.jetty.util.log.Log;
import org.eclipse.jetty.util.log.Logger;
/** /**
* HTTP Configuration. * HTTP Configuration.
@ -46,6 +48,8 @@ import org.eclipse.jetty.util.annotation.ManagedObject;
@ManagedObject("HTTP Configuration") @ManagedObject("HTTP Configuration")
public class HttpConfiguration public class HttpConfiguration
{ {
private static final Logger LOG = Log.getLogger(HttpConfiguration.class);
public static final String SERVER_VERSION = "Jetty(" + Jetty.VERSION + ")"; public static final String SERVER_VERSION = "Jetty(" + Jetty.VERSION + ")";
private final List<Customizer> _customizers=new CopyOnWriteArrayList<>(); private final List<Customizer> _customizers=new CopyOnWriteArrayList<>();
private final Trie<Boolean> _formEncodedMethods = new TreeTrie<>(); private final Trie<Boolean> _formEncodedMethods = new TreeTrie<>();
@ -239,8 +243,10 @@ public class HttpConfiguration
* *
* @return -1, for no blocking timeout (default), 0 for a blocking timeout equal to the * @return -1, for no blocking timeout (default), 0 for a blocking timeout equal to the
* idle timeout; &gt;0 for a timeout in ms applied to the total blocking operation. * idle timeout; &gt;0 for a timeout in ms applied to the total blocking operation.
* @deprecated Replaced by {@link #getMinResponseDataRate()} and {@link #getMinRequestDataRate()}
*/ */
@ManagedAttribute("Total timeout in ms for blocking I/O operations.") @ManagedAttribute("Total timeout in ms for blocking I/O operations. DEPRECATED!")
@Deprecated
public long getBlockingTimeout() public long getBlockingTimeout()
{ {
return _blockingTimeout; return _blockingTimeout;
@ -254,9 +260,13 @@ public class HttpConfiguration
* *
* @param blockingTimeout -1, for no blocking timeout (default), 0 for a blocking timeout equal to the * @param blockingTimeout -1, for no blocking timeout (default), 0 for a blocking timeout equal to the
* idle timeout; &gt;0 for a timeout in ms applied to the total blocking operation. * idle timeout; &gt;0 for a timeout in ms applied to the total blocking operation.
* @deprecated Replaced by {@link #setMinResponseDataRate(long) and {@link #setMinRequestDataRate(long)}
*/ */
@Deprecated
public void setBlockingTimeout(long blockingTimeout) public void setBlockingTimeout(long blockingTimeout)
{ {
if (blockingTimeout>0)
LOG.warn("HttpConfiguration.setBlockingTimeout is deprecated!");
_blockingTimeout = blockingTimeout; _blockingTimeout = blockingTimeout;
} }

View File

@ -60,6 +60,7 @@ public class SharedBlockingCallback
private final Condition _complete = _lock.newCondition(); private final Condition _complete = _lock.newCondition();
private Blocker _blocker = new Blocker(); private Blocker _blocker = new Blocker();
@Deprecated
protected long getIdleTimeout() protected long getIdleTimeout()
{ {
return -1; return -1;
@ -135,7 +136,11 @@ public class SharedBlockingCallback
_complete.signalAll(); _complete.signalAll();
} }
else else
throw new IllegalStateException(_state); {
LOG.warn("Succeeded after {}",_state.toString());
if (LOG.isDebugEnabled())
LOG.debug(_state);
}
} }
finally finally
{ {
@ -167,8 +172,12 @@ public class SharedBlockingCallback
} }
else else
{ {
cause.printStackTrace(System.err); LOG.warn("Failed {} in {}",cause.toString(),_state.toString());
throw new IllegalStateException(_state); if (LOG.isDebugEnabled())
{
LOG.debug(cause);
LOG.debug(_state);
}
} }
} }
finally finally
@ -227,6 +236,7 @@ public class SharedBlockingCallback
} }
catch (final InterruptedException e) catch (final InterruptedException e)
{ {
_state = e;
throw new InterruptedIOException(); throw new InterruptedIOException();
} }
finally finally
@ -253,9 +263,9 @@ public class SharedBlockingCallback
{ {
try try
{ {
// If the blocker timed itself out, remember the state // If we have a failure
if (_state instanceof BlockerTimeoutException) if (_state!=null && _state!=SUCCEEDED)
// and create a new Blocker // create a new Blocker
_blocker=new Blocker(); _blocker=new Blocker();
else else
// else reuse Blocker // else reuse Blocker

View File

@ -220,6 +220,7 @@ public class SharedBlockingCallbackTest
@Test @Test
public void testBlockerTimeout() throws Exception public void testBlockerTimeout() throws Exception
{ {
SharedBlockingCallback.LOG.info("Succeeded after ... warning is expected...");
Blocker b0=null; Blocker b0=null;
try try
{ {
@ -243,16 +244,7 @@ public class SharedBlockingCallbackTest
try (Blocker blocker=sbcb.acquire()) try (Blocker blocker=sbcb.acquire())
{ {
assertThat(blocker,not(equalTo(b0))); assertThat(blocker,not(equalTo(b0)));
try b0.succeeded();
{
b0.succeeded();
fail();
}
catch(Exception e)
{
assertThat(e,instanceOf(IllegalStateException.class));
assertThat(e.getCause(),instanceOf(TimeoutException.class));
}
blocker.succeeded(); blocker.succeeded();
} }
} }