/vt-ldap/trunk/src/main/java/edu/vt/middleware/ldap/pool/SoftLimitConnectionPool.java
http://vt-middleware.googlecode.com/ · Java · 115 lines · 59 code · 13 blank · 43 comment · 9 complexity · 6a24dee11bb0e4266eadcc1b1f9d630f MD5 · raw file
- /*
- $Id: SoftLimitConnectionPool.java 2197 2012-01-02 03:40:30Z dfisher $
- Copyright (C) 2003-2012 Virginia Tech.
- All rights reserved.
- SEE LICENSE FOR MORE INFORMATION
- Author: Middleware Services
- Email: middleware@vt.edu
- Version: $Revision: 2197 $
- Updated: $Date: 2012-01-02 04:40:30 +0100 (Mon, 02 Jan 2012) $
- */
- package edu.vt.middleware.ldap.pool;
- import java.util.NoSuchElementException;
- import edu.vt.middleware.ldap.Connection;
- import edu.vt.middleware.ldap.DefaultConnectionFactory;
- /**
- * Implements a pool of connections that has a set minimum and maximum size. The
- * pool will grow beyond it's maximum size as necessary based on it's current
- * load. Pool size will return to it's minimum based on the configuration of the
- * prune period. See {@link PoolConfig#setPrunePeriod} and {@link
- * PoolConfig#setExpirationTime}. This implementation should be used when you
- * have some flexibility in the number of connections that can be created to
- * handle spikes in load. See {@link AbstractConnectionPool}. Note that this
- * pool will begin blocking if it cannot create new connections.
- *
- * @author Middleware Services
- * @version $Revision: 2197 $ $Date: 2012-01-02 04:40:30 +0100 (Mon, 02 Jan 2012) $
- */
- public class SoftLimitConnectionPool extends BlockingConnectionPool
- {
- /** Creates a new soft limit pool. */
- public SoftLimitConnectionPool() {}
- /**
- * Creates a new soft limit pool.
- *
- * @param cf connection factory
- */
- public SoftLimitConnectionPool(final DefaultConnectionFactory cf)
- {
- super(new PoolConfig(), cf);
- }
- /**
- * Creates a new soft limit pool.
- *
- * @param pc pool configuration
- * @param cf connection factory
- */
- public SoftLimitConnectionPool(
- final PoolConfig pc,
- final DefaultConnectionFactory cf)
- {
- super(pc, cf);
- }
- /** {@inheritDoc} */
- @Override
- public Connection getConnection()
- throws PoolException
- {
- PooledConnectionHandler pc = null;
- logger.trace(
- "waiting on pool lock for check out {}",
- poolLock.getQueueLength());
- poolLock.lock();
- try {
- // if an available connection exists, use it
- // if no available connections, attempt to create
- if (available.size() > 0) {
- try {
- logger.trace("retrieve available connection");
- pc = retrieveAvailableConnection();
- } catch (NoSuchElementException e) {
- logger.error("could not remove connection from list", e);
- throw new IllegalStateException("Pool is empty", e);
- }
- }
- } finally {
- poolLock.unlock();
- }
- if (pc == null) {
- // no connection was available, create a new one
- pc = createActiveConnection();
- logger.trace("created new active connection: {}", pc);
- if (pc == null) {
- // create failed, block until a connection is available
- logger.debug("created failed, block until a connection is available");
- pc = blockAvailableConnection();
- } else {
- logger.trace("created new active connection: {}", pc);
- }
- }
- if (pc != null) {
- activateAndValidateConnection(pc);
- } else {
- logger.error("Could not service check out request");
- throw new PoolExhaustedException(
- "Pool is empty and connection creation failed");
- }
- return createConnectionProxy(pc);
- }
- }