/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

  1. /*
  2. $Id: SoftLimitConnectionPool.java 2197 2012-01-02 03:40:30Z dfisher $
  3. Copyright (C) 2003-2012 Virginia Tech.
  4. All rights reserved.
  5. SEE LICENSE FOR MORE INFORMATION
  6. Author: Middleware Services
  7. Email: middleware@vt.edu
  8. Version: $Revision: 2197 $
  9. Updated: $Date: 2012-01-02 04:40:30 +0100 (Mon, 02 Jan 2012) $
  10. */
  11. package edu.vt.middleware.ldap.pool;
  12. import java.util.NoSuchElementException;
  13. import edu.vt.middleware.ldap.Connection;
  14. import edu.vt.middleware.ldap.DefaultConnectionFactory;
  15. /**
  16. * Implements a pool of connections that has a set minimum and maximum size. The
  17. * pool will grow beyond it's maximum size as necessary based on it's current
  18. * load. Pool size will return to it's minimum based on the configuration of the
  19. * prune period. See {@link PoolConfig#setPrunePeriod} and {@link
  20. * PoolConfig#setExpirationTime}. This implementation should be used when you
  21. * have some flexibility in the number of connections that can be created to
  22. * handle spikes in load. See {@link AbstractConnectionPool}. Note that this
  23. * pool will begin blocking if it cannot create new connections.
  24. *
  25. * @author Middleware Services
  26. * @version $Revision: 2197 $ $Date: 2012-01-02 04:40:30 +0100 (Mon, 02 Jan 2012) $
  27. */
  28. public class SoftLimitConnectionPool extends BlockingConnectionPool
  29. {
  30. /** Creates a new soft limit pool. */
  31. public SoftLimitConnectionPool() {}
  32. /**
  33. * Creates a new soft limit pool.
  34. *
  35. * @param cf connection factory
  36. */
  37. public SoftLimitConnectionPool(final DefaultConnectionFactory cf)
  38. {
  39. super(new PoolConfig(), cf);
  40. }
  41. /**
  42. * Creates a new soft limit pool.
  43. *
  44. * @param pc pool configuration
  45. * @param cf connection factory
  46. */
  47. public SoftLimitConnectionPool(
  48. final PoolConfig pc,
  49. final DefaultConnectionFactory cf)
  50. {
  51. super(pc, cf);
  52. }
  53. /** {@inheritDoc} */
  54. @Override
  55. public Connection getConnection()
  56. throws PoolException
  57. {
  58. PooledConnectionHandler pc = null;
  59. logger.trace(
  60. "waiting on pool lock for check out {}",
  61. poolLock.getQueueLength());
  62. poolLock.lock();
  63. try {
  64. // if an available connection exists, use it
  65. // if no available connections, attempt to create
  66. if (available.size() > 0) {
  67. try {
  68. logger.trace("retrieve available connection");
  69. pc = retrieveAvailableConnection();
  70. } catch (NoSuchElementException e) {
  71. logger.error("could not remove connection from list", e);
  72. throw new IllegalStateException("Pool is empty", e);
  73. }
  74. }
  75. } finally {
  76. poolLock.unlock();
  77. }
  78. if (pc == null) {
  79. // no connection was available, create a new one
  80. pc = createActiveConnection();
  81. logger.trace("created new active connection: {}", pc);
  82. if (pc == null) {
  83. // create failed, block until a connection is available
  84. logger.debug("created failed, block until a connection is available");
  85. pc = blockAvailableConnection();
  86. } else {
  87. logger.trace("created new active connection: {}", pc);
  88. }
  89. }
  90. if (pc != null) {
  91. activateAndValidateConnection(pc);
  92. } else {
  93. logger.error("Could not service check out request");
  94. throw new PoolExhaustedException(
  95. "Pool is empty and connection creation failed");
  96. }
  97. return createConnectionProxy(pc);
  98. }
  99. }