/vt-ldap/tags/vt-ldap-3.0/src/main/java/edu/vt/middleware/ldap/pool/SoftLimitLdapPool.java

http://vt-middleware.googlecode.com/ · Java · 130 lines · 73 code · 13 blank · 44 comment · 16 complexity · b00001df170c22bd41d2cc867495aebf MD5 · raw file

  1. /*
  2. $Id: SoftLimitLdapPool.java 263 2009-05-27 01:32:26Z dfisher $
  3. Copyright (C) 2003-2008 Virginia Tech.
  4. All rights reserved.
  5. SEE LICENSE FOR MORE INFORMATION
  6. Author: Middleware Services
  7. Email: middleware@vt.edu
  8. Version: $Revision: 263 $
  9. Updated: $Date: 2009-05-27 03:32:26 +0200 (Wed, 27 May 2009) $
  10. */
  11. package edu.vt.middleware.ldap.pool;
  12. import java.util.NoSuchElementException;
  13. import edu.vt.middleware.ldap.Ldap;
  14. /**
  15. * <code>SoftLimitLdapPool</code> implements a pool of ldap objects that has a
  16. * set minimum and maximum size. The pool will grow beyond it's maximum size as
  17. * necessary based on it's current load. Pool size will return to it's minimum
  18. * based on the configuration of the prune timer. See {@link
  19. * LdapPoolConfig#setPruneTimerPeriod} and {@link
  20. * LdapPoolConfig#setExpirationTime}. This implementation should be used when
  21. * you have some flexibility in the number of ldap connections that can be
  22. * created to handle spikes in load. See {@link AbstractLdapPool}. Note that
  23. * this pool will begin blocking if it cannot create new ldap connections.
  24. *
  25. * @author Middleware Services
  26. * @version $Revision: 263 $ $Date: 2009-05-27 03:32:26 +0200 (Wed, 27 May 2009) $
  27. */
  28. public class SoftLimitLdapPool extends BlockingLdapPool
  29. {
  30. /** Creates a new ldap pool using {@link DefaultLdapFactory}. */
  31. public SoftLimitLdapPool()
  32. {
  33. super(new LdapPoolConfig(), new DefaultLdapFactory());
  34. }
  35. /**
  36. * Creates a new ldap pool with the supplied ldap factory.
  37. *
  38. * @param lf ldap factory
  39. */
  40. public SoftLimitLdapPool(final LdapFactory<Ldap> lf)
  41. {
  42. super(new LdapPoolConfig(), lf);
  43. }
  44. /**
  45. * Creates a new ldap pool with the supplied ldap config and factory.
  46. *
  47. * @param lpc ldap pool configuration
  48. * @param lf ldap factory
  49. */
  50. public SoftLimitLdapPool(final LdapPoolConfig lpc, final LdapFactory<Ldap> lf)
  51. {
  52. super(lpc, lf);
  53. }
  54. /** {@inheritDoc}. */
  55. public Ldap checkOut()
  56. throws LdapPoolException
  57. {
  58. Ldap l = null;
  59. if (this.logger.isTraceEnabled()) {
  60. this.logger.trace(
  61. "waiting on pool lock for check out " + this.poolLock.getQueueLength());
  62. }
  63. this.poolLock.lock();
  64. try {
  65. // if an available object exists, use it
  66. // if no available objects, attempt to create
  67. if (this.available.size() > 0) {
  68. try {
  69. if (this.logger.isTraceEnabled()) {
  70. this.logger.trace("retrieve available ldap object");
  71. }
  72. l = this.retrieveAvailable();
  73. } catch (NoSuchElementException e) {
  74. if (this.logger.isErrorEnabled()) {
  75. this.logger.error("could not remove ldap object from list", e);
  76. }
  77. throw new IllegalStateException("Pool is empty", e);
  78. }
  79. }
  80. } finally {
  81. this.poolLock.unlock();
  82. }
  83. if (l == null) {
  84. // no object was available, create a new one
  85. l = this.createActive();
  86. if (this.logger.isTraceEnabled()) {
  87. this.logger.trace("created new active ldap object: " + l);
  88. }
  89. if (l == null) {
  90. // create failed, block until an object is available
  91. if (this.logger.isDebugEnabled()) {
  92. this.logger.debug(
  93. "created failed, block until an object " +
  94. "is available");
  95. }
  96. l = this.blockAvailable();
  97. } else {
  98. if (this.logger.isTraceEnabled()) {
  99. this.logger.trace("created new active ldap object: " + l);
  100. }
  101. }
  102. }
  103. if (l != null) {
  104. this.activateAndValidate(l);
  105. } else {
  106. if (this.logger.isErrorEnabled()) {
  107. this.logger.error("Could not service check out request");
  108. }
  109. throw new LdapPoolExhaustedException(
  110. "Pool is empty and object creation failed");
  111. }
  112. return l;
  113. }
  114. }