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

http://vt-middleware.googlecode.com/ · Java · 354 lines · 139 code · 62 blank · 153 comment · 13 complexity · e995029a7686b8dae19e820dc6b4b5f8 MD5 · raw file

  1. /*
  2. $Id: LdapPoolConfig.java 183 2009-05-06 02:45:57Z 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: 183 $
  9. Updated: $Date: 2009-05-06 04:45:57 +0200 (Wed, 06 May 2009) $
  10. */
  11. package edu.vt.middleware.ldap.pool;
  12. import edu.vt.middleware.ldap.props.AbstractPropertyConfig;
  13. import edu.vt.middleware.ldap.props.LdapProperties;
  14. import edu.vt.middleware.ldap.props.PropertyInvoker;
  15. /**
  16. * <code>LdapPoolConfig</code> contains all the configuration data that the
  17. * pooling implementations need to control the pool.
  18. *
  19. * @author Middleware Services
  20. * @version $Revision: 183 $ $Date: 2009-05-06 04:45:57 +0200 (Wed, 06 May 2009) $
  21. */
  22. public class LdapPoolConfig extends AbstractPropertyConfig
  23. {
  24. /** Domain to look for ldap properties in, value is {@value}. */
  25. public static final String PROPERTIES_DOMAIN = "edu.vt.middleware.ldap.pool.";
  26. /** Default min pool size, value is {@value}. */
  27. public static final int DEFAULT_MIN_POOL_SIZE = 3;
  28. /** Default max pool size, value is {@value}. */
  29. public static final int DEFAULT_MAX_POOL_SIZE = 10;
  30. /** Default validate on check in, value is {@value}. */
  31. public static final boolean DEFAULT_VALIDATE_ON_CHECKIN = false;
  32. /** Default validate on check out, value is {@value}. */
  33. public static final boolean DEFAULT_VALIDATE_ON_CHECKOUT = false;
  34. /** Default validate periodically, value is {@value}. */
  35. public static final boolean DEFAULT_VALIDATE_PERIODICALLY = false;
  36. /** Default validate timer period, value is {@value}. */
  37. public static final long DEFAULT_VALIDATE_TIMER_PERIOD = 1800000;
  38. /** Default prune timer period, value is {@value}. */
  39. public static final long DEFAULT_PRUNE_TIMER_PERIOD = 300000;
  40. /** Default expiration time, value is {@value}. */
  41. public static final long DEFAULT_EXPIRATION_TIME = 600000;
  42. /** Invoker for ldap properties. */
  43. private static final PropertyInvoker PROPERTIES = new PropertyInvoker(
  44. LdapPoolConfig.class,
  45. PROPERTIES_DOMAIN);
  46. /** Min pool size. */
  47. private int minPoolSize = DEFAULT_MIN_POOL_SIZE;
  48. /** Max pool size. */
  49. private int maxPoolSize = DEFAULT_MAX_POOL_SIZE;
  50. /** Whether the ldap object should be validated when returned to the pool. */
  51. private boolean validateOnCheckIn = DEFAULT_VALIDATE_ON_CHECKIN;
  52. /** Whether the ldap object should be validated when given from the pool. */
  53. private boolean validateOnCheckOut = DEFAULT_VALIDATE_ON_CHECKOUT;
  54. /** Whether the pool should be validated periodically. */
  55. private boolean validatePeriodically = DEFAULT_VALIDATE_PERIODICALLY;
  56. /** Time in milliseconds that the validate pool timer should repeat. */
  57. private long validateTimerPeriod = DEFAULT_VALIDATE_TIMER_PERIOD;
  58. /** Time in milliseconds that the prune pool timer should repeat. */
  59. private long pruneTimerPeriod = DEFAULT_PRUNE_TIMER_PERIOD;
  60. /** Time in milliseconds that ldap objects should be considered expired. */
  61. private long expirationTime = DEFAULT_EXPIRATION_TIME;
  62. /** Default constructor. */
  63. public LdapPoolConfig() {}
  64. /**
  65. * This returns the min pool size for the <code>LdapPoolConfig</code>. Default
  66. * value is {@link #DEFAULT_MIN_POOL_SIZE}. This value represents the size of
  67. * the pool after the prune timer has run.
  68. *
  69. * @return <code>int</code> - min pool size
  70. */
  71. public int getMinPoolSize()
  72. {
  73. return this.minPoolSize;
  74. }
  75. /**
  76. * This returns the max pool size for the <code>LdapPoolConfig</code>. Default
  77. * value is {@link #DEFAULT_MAX_POOL_SIZE}. This value may or may not be
  78. * strictly enforced depending on the pooling implementation.
  79. *
  80. * @return <code>int</code> - max pool size
  81. */
  82. public int getMaxPoolSize()
  83. {
  84. return this.maxPoolSize;
  85. }
  86. /**
  87. * This returns the validate on check in flag for the <code>
  88. * LdapPoolConfig</code>. Default value is {@link
  89. * #DEFAULT_VALIDATE_ON_CHECKIN}.
  90. *
  91. * @return <code>boolean</code> - validate on check in
  92. */
  93. public boolean isValidateOnCheckIn()
  94. {
  95. return this.validateOnCheckIn;
  96. }
  97. /**
  98. * This returns the validate on check out flag for the <code>
  99. * LdapPoolConfig</code>. Default value is {@link
  100. * #DEFAULT_VALIDATE_ON_CHECKOUT}.
  101. *
  102. * @return <code>boolean</code> - validate on check in
  103. */
  104. public boolean isValidateOnCheckOut()
  105. {
  106. return this.validateOnCheckOut;
  107. }
  108. /**
  109. * This returns the validate periodically flag for the <code>
  110. * LdapPoolConfig</code>. Default value is {@link
  111. * #DEFAULT_VALIDATE_PERIODICALLY}.
  112. *
  113. * @return <code>boolean</code> - validate periodically
  114. */
  115. public boolean isValidatePeriodically()
  116. {
  117. return this.validatePeriodically;
  118. }
  119. /**
  120. * This returns the prune timer period for the <code>LdapPoolConfig</code>.
  121. * Default value is {@link #DEFAULT_PRUNE_TIMER_PERIOD}. The prune timer
  122. * attempts to execute {@link LdapPool#prune()}.
  123. *
  124. * @return <code>long</code> - prune timer period in milliseconds
  125. */
  126. public long getPruneTimerPeriod()
  127. {
  128. return this.pruneTimerPeriod;
  129. }
  130. /**
  131. * This returns the validate timer period for the <code>LdapPoolConfig</code>.
  132. * Default value is {@link #DEFAULT_VALIDATE_TIMER_PERIOD}. The validate timer
  133. * attempts to execute {@link LdapPool#validate()}.
  134. *
  135. * @return <code>long</code> - validate timer period in milliseconds
  136. */
  137. public long getValidateTimerPeriod()
  138. {
  139. return this.validateTimerPeriod;
  140. }
  141. /**
  142. * This returns the expiration time for the <code>LdapPoolConfig</code>.
  143. * Default value is {@link #DEFAULT_EXPIRATION_TIME}. The expiration time
  144. * represents the max time a ldap object should be available before it is
  145. * considered stale. This value does not apply to objects in the pool if the
  146. * pool has only a minimum number of objects available.
  147. *
  148. * @return <code>long</code> - expiration time in milliseconds
  149. */
  150. public long getExpirationTime()
  151. {
  152. return this.expirationTime;
  153. }
  154. /**
  155. * This sets the min pool size for the <code>LdapPoolConfig</code>.
  156. *
  157. * @param size <code>int</code>
  158. */
  159. public void setMinPoolSize(final int size)
  160. {
  161. checkImmutable();
  162. if (size >= 0) {
  163. this.minPoolSize = size;
  164. }
  165. }
  166. /**
  167. * This sets the max pool size for the <code>LdapPoolConfig</code>.
  168. *
  169. * @param size <code>int</code>
  170. */
  171. public void setMaxPoolSize(final int size)
  172. {
  173. checkImmutable();
  174. if (size >= 0) {
  175. this.maxPoolSize = size;
  176. }
  177. }
  178. /**
  179. * This sets the validate on check in flag for the <code>
  180. * LdapPoolConfig</code>.
  181. *
  182. * @param b <code>boolean</code>
  183. */
  184. public void setValidateOnCheckIn(final boolean b)
  185. {
  186. checkImmutable();
  187. this.validateOnCheckIn = b;
  188. }
  189. /**
  190. * This sets the validate on check out flag for the <code>
  191. * LdapPoolConfig</code>.
  192. *
  193. * @param b <code>boolean</code>
  194. */
  195. public void setValidateOnCheckOut(final boolean b)
  196. {
  197. checkImmutable();
  198. this.validateOnCheckOut = b;
  199. }
  200. /**
  201. * This sets the validate periodically flag for the <code>
  202. * LdapPoolConfig</code>.
  203. *
  204. * @param b <code>boolean</code>
  205. */
  206. public void setValidatePeriodically(final boolean b)
  207. {
  208. checkImmutable();
  209. this.validatePeriodically = b;
  210. }
  211. /**
  212. * Sets the period for which the prune pool timer will run.
  213. *
  214. * @param time in milliseconds
  215. */
  216. public void setPruneTimerPeriod(final long time)
  217. {
  218. checkImmutable();
  219. if (time >= 0) {
  220. this.pruneTimerPeriod = time;
  221. }
  222. }
  223. /**
  224. * Sets the period for which the validate pool timer will run.
  225. *
  226. * @param time in milliseconds
  227. */
  228. public void setValidateTimerPeriod(final long time)
  229. {
  230. checkImmutable();
  231. if (time >= 0) {
  232. this.validateTimerPeriod = time;
  233. }
  234. }
  235. /**
  236. * Sets the time that an ldap object should be considered stale and ready for
  237. * removal from the pool.
  238. *
  239. * @param time in milliseconds
  240. */
  241. public void setExpirationTime(final long time)
  242. {
  243. checkImmutable();
  244. if (time >= 0) {
  245. this.expirationTime = time;
  246. }
  247. }
  248. /** {@inheritDoc}. */
  249. public String getPropertiesDomain()
  250. {
  251. return PROPERTIES_DOMAIN;
  252. }
  253. /** {@inheritDoc}. */
  254. public void setEnvironmentProperties(final String name, final String value)
  255. {
  256. checkImmutable();
  257. if (name != null && value != null) {
  258. if (PROPERTIES.hasProperty(name)) {
  259. PROPERTIES.setProperty(this, name, value);
  260. }
  261. }
  262. }
  263. /** {@inheritDoc}. */
  264. public boolean hasEnvironmentProperty(final String name)
  265. {
  266. return PROPERTIES.hasProperty(name);
  267. }
  268. /**
  269. * Create an instance of this class initialized with properties from the
  270. * properties file. If propertiesFile is null, load properties from the
  271. * default properties file.
  272. *
  273. * @param propertiesFile to load properties from
  274. *
  275. * @return <code>LdapPoolConfig</code> initialized ldap pool config
  276. */
  277. public static LdapPoolConfig createFromProperties(final String propertiesFile)
  278. {
  279. final LdapPoolConfig poolConfig = new LdapPoolConfig();
  280. LdapProperties properties = null;
  281. if (propertiesFile != null) {
  282. properties = new LdapProperties(poolConfig, propertiesFile);
  283. } else {
  284. properties = new LdapProperties(poolConfig);
  285. }
  286. properties.configure();
  287. return poolConfig;
  288. }
  289. }