HTTPCLIENT-1127: a better fix for the deal-lock between SingleClientConnManager.releaseConnection() and SingleClientConnManager.shutdown(); previous fix may have broken ThreadSafeClientConnManager

git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@1180361 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Oleg Kalnichevski 2011-10-08 11:50:48 +00:00
parent 6bd3da869d
commit 28de736437
3 changed files with 137 additions and 126 deletions

View File

@ -112,7 +112,7 @@ public abstract class AbstractClientConnAdapter implements ManagedClientConnecti
* Detaches this adapter from the wrapped connection. * Detaches this adapter from the wrapped connection.
* This adapter becomes useless. * This adapter becomes useless.
*/ */
protected void detach() { protected synchronized void detach() {
wrappedConnection = null; wrappedConnection = null;
duration = Long.MAX_VALUE; duration = Long.MAX_VALUE;
} }
@ -300,18 +300,15 @@ public abstract class AbstractClientConnAdapter implements ManagedClientConnecti
} }
} }
public void releaseConnection() { public synchronized void releaseConnection() {
synchronized (connManager) {
if (released) { if (released) {
return; return;
} }
released = true; released = true;
connManager.releaseConnection(this, duration, TimeUnit.MILLISECONDS); connManager.releaseConnection(this, duration, TimeUnit.MILLISECONDS);
} }
}
public void abortConnection() { public synchronized void abortConnection() {
synchronized (connManager) {
if (released) { if (released) {
return; return;
} }
@ -323,7 +320,6 @@ public abstract class AbstractClientConnAdapter implements ManagedClientConnecti
} }
connManager.releaseConnection(this, duration, TimeUnit.MILLISECONDS); connManager.releaseConnection(this, duration, TimeUnit.MILLISECONDS);
} }
}
public Object getAttribute(final String id) { public Object getAttribute(final String id) {
OperatedClientConnection conn = getWrappedConnection(); OperatedClientConnection conn = getWrappedConnection();

View File

@ -105,7 +105,7 @@ public abstract class AbstractPooledConnAdapter extends AbstractClientConnAdapte
* This adapter becomes useless. * This adapter becomes useless.
*/ */
@Override @Override
protected void detach() { protected synchronized void detach() {
poolEntry = null; poolEntry = null;
super.detach(); super.detach();
} }

View File

@ -82,19 +82,19 @@ public class SingleClientConnManager implements ClientConnectionManager {
/** The one and only entry in this pool. */ /** The one and only entry in this pool. */
@GuardedBy("this") @GuardedBy("this")
protected PoolEntry uniquePoolEntry; protected volatile PoolEntry uniquePoolEntry;
/** The currently issued managed connection, if any. */ /** The currently issued managed connection, if any. */
@GuardedBy("this") @GuardedBy("this")
protected ConnAdapter managedConn; protected volatile ConnAdapter managedConn;
/** The time of the last connection release, or -1. */ /** The time of the last connection release, or -1. */
@GuardedBy("this") @GuardedBy("this")
protected long lastReleaseTime; protected volatile long lastReleaseTime;
/** The time the last released connection expires and shouldn't be reused. */ /** The time the last released connection expires and shouldn't be reused. */
@GuardedBy("this") @GuardedBy("this")
protected long connectionExpiresTime; protected volatile long connectionExpiresTime;
/** Indicates whether this connection manager is shut down. */ /** Indicates whether this connection manager is shut down. */
protected volatile boolean isShutDown; protected volatile boolean isShutDown;
@ -205,7 +205,7 @@ public class SingleClientConnManager implements ClientConnectionManager {
* @return a connection that can be used to communicate * @return a connection that can be used to communicate
* along the given route * along the given route
*/ */
public synchronized ManagedClientConnection getConnection(HttpRoute route, Object state) { public ManagedClientConnection getConnection(HttpRoute route, Object state) {
if (route == null) { if (route == null) {
throw new IllegalArgumentException("Route may not be null."); throw new IllegalArgumentException("Route may not be null.");
} }
@ -215,6 +215,7 @@ public class SingleClientConnManager implements ClientConnectionManager {
log.debug("Get connection for route " + route); log.debug("Get connection for route " + route);
} }
synchronized (this) {
if (managedConn != null) if (managedConn != null)
throw new IllegalStateException(MISUSE_MESSAGE); throw new IllegalStateException(MISUSE_MESSAGE);
@ -254,8 +255,9 @@ public class SingleClientConnManager implements ClientConnectionManager {
return managedConn; return managedConn;
} }
}
public synchronized void releaseConnection( public void releaseConnection(
ManagedClientConnection conn, ManagedClientConnection conn,
long validDuration, TimeUnit timeUnit) { long validDuration, TimeUnit timeUnit) {
assertStillUp(); assertStillUp();
@ -271,6 +273,7 @@ public class SingleClientConnManager implements ClientConnectionManager {
} }
ConnAdapter sca = (ConnAdapter) conn; ConnAdapter sca = (ConnAdapter) conn;
synchronized (sca) {
if (sca.poolEntry == null) if (sca.poolEntry == null)
return; // already released return; // already released
ClientConnectionManager manager = sca.getManager(); ClientConnectionManager manager = sca.getManager();
@ -278,7 +281,6 @@ public class SingleClientConnManager implements ClientConnectionManager {
throw new IllegalArgumentException throw new IllegalArgumentException
("Connection not obtained from this manager."); ("Connection not obtained from this manager.");
} }
try { try {
// make sure that the response has been read completely // make sure that the response has been read completely
if (sca.isOpen() && (this.alwaysShutDown || if (sca.isOpen() && (this.alwaysShutDown ||
@ -300,6 +302,7 @@ public class SingleClientConnManager implements ClientConnectionManager {
iox); iox);
} finally { } finally {
sca.detach(); sca.detach();
synchronized (this) {
managedConn = null; managedConn = null;
lastReleaseTime = System.currentTimeMillis(); lastReleaseTime = System.currentTimeMillis();
if(validDuration > 0) if(validDuration > 0)
@ -308,14 +311,17 @@ public class SingleClientConnManager implements ClientConnectionManager {
connectionExpiresTime = Long.MAX_VALUE; connectionExpiresTime = Long.MAX_VALUE;
} }
} }
}
}
public synchronized void closeExpiredConnections() { public void closeExpiredConnections() {
if(System.currentTimeMillis() >= connectionExpiresTime) { long time = connectionExpiresTime;
if (System.currentTimeMillis() >= time) {
closeIdleConnections(0, TimeUnit.MILLISECONDS); closeIdleConnections(0, TimeUnit.MILLISECONDS);
} }
} }
public synchronized void closeIdleConnections(long idletime, TimeUnit tunit) { public void closeIdleConnections(long idletime, TimeUnit tunit) {
assertStillUp(); assertStillUp();
// idletime can be 0 or negative, no problem there // idletime can be 0 or negative, no problem there
@ -323,6 +329,7 @@ public class SingleClientConnManager implements ClientConnectionManager {
throw new IllegalArgumentException("Time unit must not be null."); throw new IllegalArgumentException("Time unit must not be null.");
} }
synchronized (this) {
if ((managedConn == null) && uniquePoolEntry.connection.isOpen()) { if ((managedConn == null) && uniquePoolEntry.connection.isOpen()) {
final long cutoff = final long cutoff =
System.currentTimeMillis() - tunit.toMillis(idletime); System.currentTimeMillis() - tunit.toMillis(idletime);
@ -336,14 +343,16 @@ public class SingleClientConnManager implements ClientConnectionManager {
} }
} }
} }
}
public synchronized void shutdown() { public void shutdown() {
this.isShutDown = true; this.isShutDown = true;
if (managedConn != null) ConnAdapter conn = managedConn;
managedConn.detach(); if (conn != null)
conn.detach();
synchronized (this) {
try { try {
if (uniquePoolEntry != null) // and connection open? if (uniquePoolEntry != null) // and connection open?
uniquePoolEntry.shutdown(); uniquePoolEntry.shutdown();
@ -352,6 +361,8 @@ public class SingleClientConnManager implements ClientConnectionManager {
log.debug("Problem while shutting down manager.", iox); log.debug("Problem while shutting down manager.", iox);
} finally { } finally {
uniquePoolEntry = null; uniquePoolEntry = null;
managedConn = null;
}
} }
} }
@ -359,10 +370,13 @@ public class SingleClientConnManager implements ClientConnectionManager {
* @deprecated no longer used * @deprecated no longer used
*/ */
@Deprecated @Deprecated
protected synchronized void revokeConnection() { protected void revokeConnection() {
if (managedConn == null) ConnAdapter conn = managedConn;
if (conn == null)
return; return;
managedConn.detach(); conn.detach();
synchronized (this) {
try { try {
uniquePoolEntry.shutdown(); uniquePoolEntry.shutdown();
} catch (IOException iox) { } catch (IOException iox) {
@ -370,6 +384,7 @@ public class SingleClientConnManager implements ClientConnectionManager {
log.debug("Problem while shutting down connection.", iox); log.debug("Problem while shutting down connection.", iox);
} }
} }
}
/** /**
* The pool entry for this connection manager. * The pool entry for this connection manager.