/modules-legacy/prov-sql/src/main/java/org/openprovenance/prov/sql/ProvDeserialiser.java

http://github.com/lucmoreau/ProvToolbox · Java · 131 lines · 104 code · 20 blank · 7 comment · 8 complexity · fe0305de54e9742ba7c04cefeb17fd09 MD5 · raw file

  1. package org.openprovenance.prov.sql;
  2. import java.io.File;
  3. import java.io.IOException;
  4. import javax.xml.bind.JAXBContext;
  5. import javax.xml.bind.Unmarshaller;
  6. import javax.xml.bind.JAXBException;
  7. import javax.xml.bind.JAXBElement;
  8. import org.xml.sax.SAXException;
  9. import javax.xml.validation.SchemaFactory;
  10. import javax.xml.validation.Schema;
  11. import javax.xml.transform.stream.StreamSource;
  12. import javax.xml.transform.Source;
  13. /** Deserialiser of OPM Graphs. */
  14. public class ProvDeserialiser {
  15. // it is recommended by the Jaxb documentation that one JAXB
  16. // context is created for one application. This object is thread
  17. // safe (in the sun impelmenation, but not
  18. // marshallers/unmarshallers.
  19. static protected JAXBContext jc;
  20. public ProvDeserialiser () throws JAXBException {
  21. if (jc==null)
  22. jc = JAXBContext.newInstance( ProvFactory.packageList );
  23. // note, it is sometimes recommended to pass the current classloader
  24. }
  25. public ProvDeserialiser (String packageList) throws JAXBException {
  26. if (jc==null)
  27. jc = JAXBContext.newInstance(packageList);
  28. }
  29. private static ThreadLocal<ProvDeserialiser> threadDeserialiser=
  30. new ThreadLocal<ProvDeserialiser> () {
  31. protected synchronized ProvDeserialiser initialValue () {
  32. try {
  33. return new ProvDeserialiser();
  34. } catch (JAXBException jxb) {
  35. throw new RuntimeException("ProvDeserialiser: deserialiser init failure()");
  36. }
  37. }
  38. };
  39. public static ProvDeserialiser getThreadProvDeserialiser() {
  40. return threadDeserialiser.get();
  41. }
  42. public Document deserialiseDocument (File serialised)
  43. throws JAXBException {
  44. Unmarshaller u=jc.createUnmarshaller();
  45. Object root= u.unmarshal(serialised);
  46. @SuppressWarnings("unchecked")
  47. Document res=(Document)((JAXBElement<Document>) root).getValue();
  48. return res;
  49. }
  50. public Document validateDocument (String[] schemaFiles, File serialised) throws JAXBException,SAXException, IOException {
  51. return validateDocument (schemaFiles, serialised,true);
  52. }
  53. public Document validateDocument (String[] schemaFiles, File serialised, boolean withCurie)
  54. throws JAXBException,SAXException, IOException {
  55. SchemaFactory sf = SchemaFactory.newInstance(javax.xml.XMLConstants.W3C_XML_SCHEMA_NS_URI);
  56. Source [] sources=new Source[2+schemaFiles.length];
  57. int schemaCount;
  58. if (withCurie) {
  59. schemaCount=3;
  60. sources=new Source[schemaCount+schemaFiles.length];
  61. sources[0]=new StreamSource(this.getClass().getResourceAsStream("/"+"curie.xsd"));
  62. sources[1]=new StreamSource(this.getClass().getResourceAsStream("/"+"xml.xsd"));
  63. sources[2]=new StreamSource(this.getClass().getResourceAsStream("/"+"prov-20130307.xsd")); //TODO: here to use: prov-20130307-curie.xsd
  64. } else {
  65. schemaCount=3;
  66. sources=new Source[schemaCount+schemaFiles.length];
  67. sources[0]=new StreamSource(this.getClass().getResourceAsStream("/"+"curie.xsd"));
  68. sources[1]=new StreamSource(this.getClass().getResourceAsStream("/"+"xml.xsd"));
  69. sources[2]=new StreamSource(this.getClass().getResourceAsStream("/"+"prov-20130307.xsd"));
  70. }
  71. int i=0;
  72. for (String schemaFile: schemaFiles) {
  73. sources[schemaCount+i]=new StreamSource(new File(schemaFile));
  74. i++;
  75. }
  76. Schema schema = sf.newSchema(sources);
  77. Unmarshaller u=jc.createUnmarshaller();
  78. //u.setValidating(true); was jaxb1.0
  79. u.setSchema(schema);
  80. Object root= u.unmarshal(serialised);
  81. @SuppressWarnings("unchecked")
  82. Document res=(Document)((JAXBElement<Document>) root).getValue();
  83. return res;
  84. }
  85. public static void main(String [] args) {
  86. ProvDeserialiser deserial=ProvDeserialiser.getThreadProvDeserialiser();
  87. if ((args==null) || (args.length==0)) {
  88. System.out.println("Usage: opmxml-validate <filename> {schemaFiles}*");
  89. return;
  90. }
  91. File f=new File(args[0]);
  92. String [] schemas=new String[args.length-1];
  93. for (int i=1; i< args.length; i++) {
  94. schemas[i-1]=args[i];
  95. }
  96. try {
  97. deserial.validateDocument(schemas,f);
  98. System.out.println(args[0] + " IS a valid OPM graph");
  99. return ;
  100. } catch (JAXBException je) {
  101. je.printStackTrace();
  102. System.out.println(args[0] + " IS NOT a valid OPM graph");
  103. } catch (SAXException je) {
  104. je.printStackTrace();
  105. System.out.println(args[0] + " IS NOT a valid OPM graph");
  106. } catch (IOException io) {
  107. io.printStackTrace();
  108. System.out.println(args[0] + " IS NOT a valid OPM graph");
  109. }
  110. }
  111. }