/src/org/joval/xml/schematron/Validator.java

http://github.com/joval/jOVAL · Java · 114 lines · 84 code · 9 blank · 21 comment · 13 complexity · e964bf2ae50c8d78769eb067768167ec MD5 · raw file

  1. // Copyright (C) 2012 jOVAL.org. All rights reserved.
  2. // This software is licensed under the AGPL 3.0 license available at http://www.joval.org/agpl_v3.txt
  3. package org.joval.xml.schematron;
  4. import java.io.File;
  5. import java.io.FileInputStream;
  6. import java.io.IOException;
  7. import javax.xml.bind.JAXBContext;
  8. import javax.xml.bind.JAXBException;
  9. import javax.xml.bind.util.JAXBSource;
  10. import javax.xml.transform.Source;
  11. import javax.xml.transform.Transformer;
  12. import javax.xml.transform.TransformerException;
  13. import javax.xml.transform.TransformerFactory;
  14. import javax.xml.transform.dom.DOMResult;
  15. import javax.xml.transform.stream.StreamSource;
  16. import org.w3c.dom.Node;
  17. import org.iso.svrl.SchematronOutput;
  18. import org.iso.svrl.SuccessfulReport;
  19. import org.iso.svrl.FailedAssert;
  20. import org.joval.util.JOVALMsg;
  21. import org.joval.xml.XSLTools;
  22. import org.joval.xml.SchemaRegistry;
  23. /**
  24. * A utility class for performing schematron validation.
  25. *
  26. * @author David A. Solin
  27. * @version %I% %G%
  28. */
  29. public class Validator {
  30. /**
  31. * For command-line testing.
  32. */
  33. public static void main(String[] argv) {
  34. if (argv.length != 2) {
  35. System.out.println("Usage: java org.joval.xml.schematron.Validator [xml] [xsl]");
  36. System.exit(1);
  37. } else {
  38. try {
  39. File xml = new File(argv[0]);
  40. File xsl = new File(argv[1]);
  41. Validator v = new Validator(xsl);
  42. v.validate(xml);
  43. System.out.println("Validation successful");
  44. } catch (IOException e) {
  45. e.printStackTrace();
  46. } catch (TransformerException e) {
  47. e.printStackTrace();
  48. } catch (ValidationException e) {
  49. System.out.println("Validation failed");
  50. for (String err : e.getErrors()) {
  51. System.out.println("Error: " + err);
  52. }
  53. }
  54. }
  55. }
  56. private Transformer transformer;
  57. /**
  58. * Create a new Validator given the specified Schematron-derived XSLT template.
  59. */
  60. public Validator(File xsl) throws IOException, TransformerException {
  61. transformer = XSLTools.XSLVersion.V1.getFactory().newTransformer(new StreamSource(new FileInputStream(xsl)));
  62. }
  63. /**
  64. * Validate a file.
  65. */
  66. public void validate(File xml) throws IOException, ValidationException {
  67. validate(new StreamSource(new FileInputStream(xml)));
  68. }
  69. /**
  70. * Applies the Schematron template transformation to the source, and verifies that there are no failed assertions
  71. * or reports.
  72. */
  73. public void validate(Source source) throws ValidationException {
  74. try {
  75. DOMResult result = new DOMResult();
  76. transformer.transform(source, result);
  77. Node root = result.getNode();
  78. if (root.getNodeType() == Node.DOCUMENT_NODE) {
  79. Object rootObj = SchemaRegistry.SVRL.getJAXBContext().createUnmarshaller().unmarshal(root);
  80. if (rootObj instanceof SchematronOutput) {
  81. String msg = JOVALMsg.getMessage(JOVALMsg.ERROR_SCHEMATRON_VALIDATION);
  82. ValidationException error = new ValidationException(msg);
  83. SchematronOutput output = (SchematronOutput)rootObj;
  84. for (Object child : output.getActivePatternAndFiredRuleAndFailedAssert()) {
  85. if (child instanceof FailedAssert) {
  86. error.getErrors().add(((FailedAssert)child).getText());
  87. } else if (child instanceof SuccessfulReport) {
  88. error.getErrors().add(((SuccessfulReport)child).getText());
  89. }
  90. }
  91. if (error.getErrors().size() > 0) {
  92. throw error;
  93. }
  94. } else {
  95. String msg = JOVALMsg.getMessage(JOVALMsg.ERROR_SCHEMATRON_TYPE, root.getClass().getName());
  96. throw new ValidationException(msg);
  97. }
  98. }
  99. } catch (TransformerException e) {
  100. throw new ValidationException(e);
  101. } catch (JAXBException e) {
  102. throw new ValidationException(e);
  103. }
  104. }
  105. }