/castor-1.3.2/xml/src/main/java/org/exolab/castor/xml/validators/IntValidator.java

# · Java · 315 lines · 131 code · 28 blank · 156 comment · 19 complexity · 0a6a1d7027fc30aefb6a7924de522be5 MD5 · raw file

  1. /*
  2. * Copyright 2006 Werner Guttmann
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package org.exolab.castor.xml.validators;
  17. import org.exolab.castor.xml.TypeValidator;
  18. import org.exolab.castor.xml.ValidationContext;
  19. import org.exolab.castor.xml.ValidationException;
  20. /**
  21. * The Int Validation class. This class handles validation for the primitive
  22. * <code>int</code> and <code>java.lang.Integer</code> types as well as all
  23. * derived types such as unsigned-short.
  24. *
  25. * @author <a href="mailto:werner DOT guttmann AT gmx DOT net">Werner Guttmann</a>
  26. * @version $Revision: 6571 $ $Date: 2006-04-25 15:08:23 -0600 (Tue, 25 Apr
  27. * 2006) $
  28. */
  29. public class IntValidator extends PatternValidator implements TypeValidator {
  30. /** If true, we perform "minimum value" validation. */
  31. private boolean _useMin = false;
  32. /** If true, we perform "maximum value" validation. */
  33. private boolean _useMax = false;
  34. /** If true, we perform "fixed" validation. */
  35. private boolean _useFixed = false;
  36. /** Minimum value (inclusive) for this int. (Not used unless _useMin == true.) */
  37. private int _min = 0;
  38. /** Maximum value (inclusive) for this int. (Not used unless _useMax == true.) */
  39. private int _max = 0;
  40. /** Maximum number of digits in this int. (Not applied if < 0.) */
  41. private int _totalDigits = -1;
  42. /** Fixed value of this int. (Not used unless _useFixed == true.) */
  43. private int _fixed = 0;
  44. /**
  45. * Creates a new IntValidator with no restrictions.
  46. */
  47. public IntValidator() {
  48. super();
  49. } // -- IntegerValidator
  50. /**
  51. * Clears the fixed value for this IntValidator.
  52. */
  53. public void clearFixed() {
  54. _useFixed = false;
  55. } // -- clearFixed
  56. /**
  57. * Clears the maximum value for this IntValidator.
  58. */
  59. public void clearMax() {
  60. _useMax = false;
  61. } // -- clearMax
  62. /**
  63. * Clears the minimum value for this IntValidator.
  64. */
  65. public void clearMin() {
  66. _useMin = false;
  67. } // -- clearMin
  68. /**
  69. * Returns the configured fixed value for int validation. Returns null if no
  70. * fixed value has been configured.
  71. *
  72. * @return the fixed value to validate against.
  73. */
  74. public Integer getFixed() {
  75. if (_useFixed) {
  76. return new Integer(_fixed);
  77. }
  78. return null;
  79. } // -- getFixed
  80. /**
  81. * Returns the configured maximum value for int validation. Returns null if
  82. * no maximum has been configured.
  83. *
  84. * @return the maximum (inclusive) value to validate against.
  85. */
  86. public Integer getMaxInclusive() {
  87. if (_useMax) {
  88. return new Integer(_max);
  89. }
  90. return null;
  91. } // -- getMaxInclusive
  92. /**
  93. * Returns the configured minimum value for int validation. Returns null if
  94. * no minimum has been configured.
  95. *
  96. * @return the minimum inclusive value to validate against.
  97. */
  98. public Integer getMinInclusive() {
  99. if (_useMin) {
  100. return new Integer(_min);
  101. }
  102. return null;
  103. } // -- getMinInclusive
  104. /**
  105. * Returns the configured maximum number of digits (inclusive) for int
  106. * validation. Returns null if no maximum number of digits has been
  107. * configured.
  108. *
  109. * @return the maximum number of digits to validate against.
  110. */
  111. public Integer getTotalDigits() {
  112. if (_totalDigits >= 0) {
  113. return new Integer(_totalDigits);
  114. }
  115. return null;
  116. } // -- getTotalDigits
  117. /**
  118. * Returns true if a fixed value to validate against has been set.
  119. *
  120. * @return true if a fixed value has been set.
  121. */
  122. public boolean hasFixed() {
  123. return _useFixed;
  124. } // -- hasFixed
  125. /**
  126. * Sets the fixed value for int validation.
  127. * <p>
  128. * NOTE: If maximum and/or minimum values have been set and the fixed value
  129. * is not within that max/min range, then no int will pass validation. This
  130. * is as according to the XML Schema spec.
  131. *
  132. * @param fixedValue
  133. * the fixed value that a int validated with this validator must
  134. * be equal to.
  135. */
  136. public void setFixed(final int fixedValue) {
  137. _useFixed = true;
  138. this._fixed = fixedValue;
  139. } // -- setFixed
  140. /**
  141. * Sets the fixed value for int validation.
  142. * <p>
  143. * NOTE: If maximum and/or minimum values have been set and the fixed value
  144. * is not within that max/min range, then no int will pass validation. This
  145. * is as according to the XML Schema spec.
  146. *
  147. * @param fixedValue
  148. * the fixed value that a int validated with this validator must
  149. * be equal to.
  150. */
  151. public void setFixed(final Integer fixedValue) {
  152. _useFixed = true;
  153. this._fixed = fixedValue.intValue();
  154. }
  155. /**
  156. * Sets the minimum (exclusive) value for int validation. To pass
  157. * validation, a int must be greater than this value.
  158. *
  159. * @param minValue
  160. * the minimum (exclusive) value for int validation.
  161. */
  162. public void setMinExclusive(final int minValue) {
  163. _useMin = true;
  164. _min = minValue + 1;
  165. } // -- setMinExclusive
  166. /**
  167. * Sets the minimum (inclusive) value for int validation. To pass
  168. * validation, a int must be greater than or equal to this value.
  169. *
  170. * @param minValue
  171. * the minimum (inclusive) value for int validation.
  172. */
  173. public void setMinInclusive(final int minValue) {
  174. _useMin = true;
  175. _min = minValue;
  176. } // -- setMinInclusive
  177. /**
  178. * Sets the maximum (exclusive) value for int validation. To pass
  179. * validation, a int must be less than this value.
  180. *
  181. * @param maxValue
  182. * the maximum (exclusive) value for int validation.
  183. */
  184. public void setMaxExclusive(final int maxValue) {
  185. _useMax = true;
  186. _max = maxValue - 1;
  187. } // -- setMaxExclusive
  188. /**
  189. * Sets the maximum (inclusive) value for int validation. To pass
  190. * validation, a int must be less than or equal to this value.
  191. *
  192. * @param maxValue
  193. * the maximum (inclusive) value for int validation.
  194. */
  195. public void setMaxInclusive(final int maxValue) {
  196. _useMax = true;
  197. _max = maxValue;
  198. } // -- setMaxInclusive
  199. /**
  200. * Sets the maximum number of digits for int validation. To pass validation,
  201. * a int must have this many digits or fewer. Leading zeros are not counted.
  202. *
  203. * @param totalDig
  204. * the maximum (inclusive) number of digits for int validation.
  205. * (must be > 0)
  206. */
  207. public void setTotalDigits(final int totalDig) {
  208. if (totalDig <= 0) {
  209. throw new IllegalArgumentException(
  210. "IntegerValidator: the totalDigits facet must be positive");
  211. }
  212. _totalDigits = totalDig;
  213. }
  214. /**
  215. * Validates the given Object.
  216. *
  217. * @param i
  218. * the long to validate
  219. * @param context
  220. * the ValidationContext
  221. * @throws ValidationException if the object fails validation.
  222. */
  223. public void validate(final int i, final ValidationContext context)
  224. throws ValidationException {
  225. if (_useFixed && i != _fixed) {
  226. String err = "int " + i + " is not equal to the fixed value: " + _fixed;
  227. throw new ValidationException(err);
  228. }
  229. if (_useMin && i < _min) {
  230. String err = "int " + i + " is less than the minimum allowed value: " + _min;
  231. throw new ValidationException(err);
  232. }
  233. if (_useMax && i > _max) {
  234. String err = "int " + i + " is greater than the maximum allowed value: " + _max;
  235. throw new ValidationException(err);
  236. }
  237. if (_totalDigits != -1) {
  238. int length = Integer.toString(i).length();
  239. if (i < 0) {
  240. length--;
  241. }
  242. if (length > _totalDigits) {
  243. String err = "int " + i + " has too many digits -- must have "
  244. + _totalDigits + " digits or fewer.";
  245. throw new ValidationException(err);
  246. }
  247. }
  248. if (hasPattern()) {
  249. super.validate(Integer.toString(i), context);
  250. }
  251. } // -- validate
  252. /**
  253. * Validates the given Object.
  254. *
  255. * @param object
  256. * the Object to validate
  257. * @throws ValidationException if the object fails validation.
  258. */
  259. public void validate(final Object object) throws ValidationException {
  260. validate(object, (ValidationContext) null);
  261. } // -- validate
  262. /**
  263. * Validates the given Object.
  264. *
  265. * @param object
  266. * the Object to validate
  267. * @param context
  268. * the ValidationContext
  269. * @throws ValidationException if the object fails validation.
  270. */
  271. public void validate(final Object object, final ValidationContext context)
  272. throws ValidationException {
  273. if (object == null) {
  274. String err = "IntValidator cannot validate a null object.";
  275. throw new ValidationException(err);
  276. }
  277. int value = 0;
  278. try {
  279. value = ((Integer) object).intValue();
  280. } catch (Exception ex) {
  281. String err = "Expecting an Integer, received instead an instance of: ";
  282. err += object.getClass().getName();
  283. throw new ValidationException(err);
  284. }
  285. validate(value, context);
  286. } //-- validate
  287. } //-- IntegerValidator