Class AbstractConnPool<T,C,E extends PoolEntry<T,C>>
- java.lang.Object
-
- org.apache.http.pool.AbstractConnPool<T,C,E>
-
- Type Parameters:
T- the route type that represents the opposite endpoint of a pooled connection.C- the connection type.E- the type of the pool entry containing a pooled connection.
- All Implemented Interfaces:
ConnPool<T,E>,ConnPoolControl<T>
- Direct Known Subclasses:
BasicConnPool
@Contract(threading=SAFE_CONDITIONAL) public abstract class AbstractConnPool<T,C,E extends PoolEntry<T,C>> extends java.lang.Object implements ConnPool<T,E>, ConnPoolControl<T>
Abstract synchronous (blocking) pool of connections.Please note that this class does not maintain its own pool of execution
Threads. Therefore, one must callFuture.get()orFuture.get(long, TimeUnit)method on theFutureobject returned by thelease(Object, Object, FutureCallback)method in order for the lease operation to complete.- Since:
- 4.2
-
-
Field Summary
Fields Modifier and Type Field Description private java.util.LinkedList<E>availableprivate java.util.concurrent.locks.Conditionconditionprivate ConnFactory<T,C>connFactoryprivate intdefaultMaxPerRouteprivate booleanisShutDownprivate java.util.Set<E>leasedprivate java.util.concurrent.locks.Locklockprivate java.util.Map<T,java.lang.Integer>maxPerRouteprivate intmaxTotalprivate java.util.LinkedList<java.util.concurrent.Future<E>>pendingprivate java.util.Map<T,RouteSpecificPool<T,C,E>>routeToPoolprivate intvalidateAfterInactivity
-
Constructor Summary
Constructors Constructor Description AbstractConnPool(ConnFactory<T,C> connFactory, int defaultMaxPerRoute, int maxTotal)
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description voidcloseExpired()Closes expired connections and evicts them from the pool.voidcloseIdle(long idletime, java.util.concurrent.TimeUnit timeUnit)Closes connections that have been idle longer than the given period of time and evicts them from the pool.protected abstract EcreateEntry(T route, C conn)Creates a new entry for the given connection with the given route.protected voidenumAvailable(PoolEntryCallback<T,C> callback)Enumerates all available connections.protected voidenumLeased(PoolEntryCallback<T,C> callback)Enumerates all leased connections.intgetDefaultMaxPerRoute()private intgetMax(T route)intgetMaxPerRoute(T route)intgetMaxTotal()private RouteSpecificPool<T,C,E>getPool(T route)private EgetPoolEntryBlocking(T route, java.lang.Object state, long timeout, java.util.concurrent.TimeUnit timeUnit, java.util.concurrent.Future<E> future)java.util.Set<T>getRoutes()Returns snapshot of all knows routesPoolStatsgetStats(T route)PoolStatsgetTotalStats()intgetValidateAfterInactivity()booleanisShutdown()java.util.concurrent.Future<E>lease(T route, java.lang.Object state)Attempts to lease a connection for the given route and with the given state from the pool.java.util.concurrent.Future<E>lease(T route, java.lang.Object state, FutureCallback<E> callback)Attempts to lease a connection for the given route and with the given state from the pool.protected voidonLease(E entry)protected voidonRelease(E entry)protected voidonReuse(E entry)private static java.lang.ExceptionoperationAborted()private voidpurgePoolMap()voidrelease(E entry, boolean reusable)Releases the pool entry back to the pool.voidsetDefaultMaxPerRoute(int max)voidsetMaxPerRoute(T route, int max)voidsetMaxTotal(int max)voidsetValidateAfterInactivity(int ms)voidshutdown()Shuts down the pool.java.lang.StringtoString()protected booleanvalidate(E entry)
-
-
-
Field Detail
-
lock
private final java.util.concurrent.locks.Lock lock
-
condition
private final java.util.concurrent.locks.Condition condition
-
connFactory
private final ConnFactory<T,C> connFactory
-
routeToPool
private final java.util.Map<T,RouteSpecificPool<T,C,E extends PoolEntry<T,C>>> routeToPool
-
pending
private final java.util.LinkedList<java.util.concurrent.Future<E extends PoolEntry<T,C>>> pending
-
maxPerRoute
private final java.util.Map<T,java.lang.Integer> maxPerRoute
-
isShutDown
private volatile boolean isShutDown
-
defaultMaxPerRoute
private volatile int defaultMaxPerRoute
-
maxTotal
private volatile int maxTotal
-
validateAfterInactivity
private volatile int validateAfterInactivity
-
-
Constructor Detail
-
AbstractConnPool
public AbstractConnPool(ConnFactory<T,C> connFactory, int defaultMaxPerRoute, int maxTotal)
-
-
Method Detail
-
createEntry
protected abstract E createEntry(T route, C conn)
Creates a new entry for the given connection with the given route.
-
onLease
protected void onLease(E entry)
- Since:
- 4.3
-
onRelease
protected void onRelease(E entry)
- Since:
- 4.3
-
onReuse
protected void onReuse(E entry)
- Since:
- 4.4
-
validate
protected boolean validate(E entry)
- Since:
- 4.4
-
isShutdown
public boolean isShutdown()
-
shutdown
public void shutdown() throws java.io.IOExceptionShuts down the pool.- Throws:
java.io.IOException
-
getPool
private RouteSpecificPool<T,C,E> getPool(T route)
-
operationAborted
private static java.lang.Exception operationAborted()
-
lease
public java.util.concurrent.Future<E> lease(T route, java.lang.Object state, FutureCallback<E> callback)
Attempts to lease a connection for the given route and with the given state from the pool.Please note that this class does not maintain its own pool of execution
Threads. Therefore, one must callFuture.get()orFuture.get(long, TimeUnit)method on theFuturereturned by this method in order for the lease operation to complete.- Specified by:
leasein interfaceConnPool<T,C>- Parameters:
route- route of the connection.state- arbitrary object that represents a particular state (usually a security principal or a unique token identifying the user whose credentials have been used while establishing the connection). May benull.callback- operation completion callback.- Returns:
- future for a leased pool entry.
-
lease
public java.util.concurrent.Future<E> lease(T route, java.lang.Object state)
Attempts to lease a connection for the given route and with the given state from the pool.Please note that this class does not maintain its own pool of execution
Threads. Therefore, one must callFuture.get()orFuture.get(long, TimeUnit)method on theFuturereturned by this method in order for the lease operation to complete.- Parameters:
route- route of the connection.state- arbitrary object that represents a particular state (usually a security principal or a unique token identifying the user whose credentials have been used while establishing the connection). May benull.- Returns:
- future for a leased pool entry.
-
getPoolEntryBlocking
private E getPoolEntryBlocking(T route, java.lang.Object state, long timeout, java.util.concurrent.TimeUnit timeUnit, java.util.concurrent.Future<E> future) throws java.io.IOException, java.lang.InterruptedException, java.util.concurrent.ExecutionException, java.util.concurrent.TimeoutException
- Throws:
java.io.IOExceptionjava.lang.InterruptedExceptionjava.util.concurrent.ExecutionExceptionjava.util.concurrent.TimeoutException
-
release
public void release(E entry, boolean reusable)
Description copied from interface:ConnPoolReleases the pool entry back to the pool.
-
getMax
private int getMax(T route)
-
setMaxTotal
public void setMaxTotal(int max)
- Specified by:
setMaxTotalin interfaceConnPoolControl<T>
-
getMaxTotal
public int getMaxTotal()
- Specified by:
getMaxTotalin interfaceConnPoolControl<T>
-
setDefaultMaxPerRoute
public void setDefaultMaxPerRoute(int max)
- Specified by:
setDefaultMaxPerRoutein interfaceConnPoolControl<T>
-
getDefaultMaxPerRoute
public int getDefaultMaxPerRoute()
- Specified by:
getDefaultMaxPerRoutein interfaceConnPoolControl<T>
-
setMaxPerRoute
public void setMaxPerRoute(T route, int max)
- Specified by:
setMaxPerRoutein interfaceConnPoolControl<T>
-
getMaxPerRoute
public int getMaxPerRoute(T route)
- Specified by:
getMaxPerRoutein interfaceConnPoolControl<T>
-
getTotalStats
public PoolStats getTotalStats()
- Specified by:
getTotalStatsin interfaceConnPoolControl<T>
-
getStats
public PoolStats getStats(T route)
- Specified by:
getStatsin interfaceConnPoolControl<T>
-
getRoutes
public java.util.Set<T> getRoutes()
Returns snapshot of all knows routes- Returns:
- the set of routes
- Since:
- 4.4
-
enumAvailable
protected void enumAvailable(PoolEntryCallback<T,C> callback)
Enumerates all available connections.- Since:
- 4.3
-
enumLeased
protected void enumLeased(PoolEntryCallback<T,C> callback)
Enumerates all leased connections.- Since:
- 4.3
-
purgePoolMap
private void purgePoolMap()
-
closeIdle
public void closeIdle(long idletime, java.util.concurrent.TimeUnit timeUnit)Closes connections that have been idle longer than the given period of time and evicts them from the pool.- Parameters:
idletime- maximum idle time.timeUnit- time unit.
-
closeExpired
public void closeExpired()
Closes expired connections and evicts them from the pool.
-
getValidateAfterInactivity
public int getValidateAfterInactivity()
- Returns:
- the number of milliseconds
- Since:
- 4.4
-
setValidateAfterInactivity
public void setValidateAfterInactivity(int ms)
- Parameters:
ms- the number of milliseconds- Since:
- 4.4
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-