Project

General

Profile

1
/**
2
 *  '$RCSfile$'
3
 *    Purpose: A Class that validates XML documents
4
 *             This class is designed to be 'parser independent
5
 *             i.e. it uses only org.xml.sax classes
6
 *             It is tied to SAX 2.0 methods
7
 *  Copyright: 2000 Regents of the University of California and the
8
 *             National Center for Ecological Analysis and Synthesis
9
 *    Authors: Dan Higgins, Matt Jones
10
 * 
11
 *   '$Author: jones $'
12
 *     '$Date: 2006-11-10 10:25:38 -0800 (Fri, 10 Nov 2006) $'
13
 * '$Revision: 3077 $'
14
 *
15
 * This program is free software; you can redistribute it and/or modify
16
 * it under the terms of the GNU General Public License as published by
17
 * the Free Software Foundation; either version 2 of the License, or
18
 * (at your option) any later version.
19
 *
20
 * This program is distributed in the hope that it will be useful,
21
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23
 * GNU General Public License for more details.
24
 *
25
 * You should have received a copy of the GNU General Public License
26
 * along with this program; if not, write to the Free Software
27
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
28
 */
29
package edu.ucsb.nceas.metacat;
30

    
31

    
32
import java.net.URL;
33
import java.net.MalformedURLException;
34
import java.util.*;
35
import java.io.*;
36
import java.lang.reflect.*;
37
import java.sql.*;
38

    
39
import org.w3c.dom.*;
40
import org.xml.sax.*;
41
import org.xml.sax.XMLReader;
42
import org.xml.sax.helpers.XMLReaderFactory;
43

    
44
import com.arbortext.catalog.*;
45

    
46
/**
47
 * Name: DBValidate.java
48
 *       Purpose: A Class that validates XML documents
49
 * 			   This class is designed to be parser independent
50
 *    			   i.e. it uses only org.xml.sax classes
51
 * 			   It is tied to SAX 2.0 methods
52
 *     Copyright: 2000 Regents of the University of California and the
53
 *                National Center for Ecological Analysis and Synthesis
54
 *                April 28, 2000
55
 *    Authors: Dan Higgins, Matt Jones
56
 */
57
public class DBValidate {
58
    
59
  static int WARNING = 0;
60
  static int ERROR=1;
61
  static int FATAL_ERROR=2;
62

    
63
  XMLReader parser;
64
  ErrorStorer ef;
65
  String xml_doc; // document to be parsed
66
  public boolean alreadyHandle = false;
67
    
68
  /** Construct a new validation object */
69
  public DBValidate() {
70
    alreadyHandle = false;
71
    try {
72
      // Get an instance of the parser
73
      String parserName = MetaCatUtil.getOption("saxparser");
74
      parser = XMLReaderFactory.createXMLReader(parserName);
75
      parser.setFeature("http://xml.org/sax/features/validation",true);
76
      //parser.setValidationMode(true);     // Oracle
77
    } catch (Exception e) {
78
      System.err.println("Could not create parser in DBValidate.DBValidate");
79
    }
80
  }
81
    
82
  /** Construct a new validation object using an OASIS catalog file */
83
  public DBValidate(String xmlcatalogfile)  {
84
    this();
85

    
86
    CatalogEntityResolver cer = new CatalogEntityResolver();
87
    try {
88
      Catalog myCatalog = new Catalog();
89
      myCatalog.loadSystemCatalogs();
90
      myCatalog.parseCatalog(xmlcatalogfile);
91
      cer.setCatalog(myCatalog);
92
    } catch (Exception e) {
93
      System.out.println("Problem creating Catalog in DBValidate.DBValidate");
94
    }
95

    
96
    parser.setEntityResolver(cer);
97
  }
98

    
99
  /** Construct a new validation object using a database entity resolver */
100
  public DBValidate(DBConnection conn) {
101
    this();
102

    
103
    DBEntityResolver dbresolver = new DBEntityResolver(conn);
104
    parser.setEntityResolver(dbresolver);
105
  }
106

    
107
  /** 
108
   * validate an xml document against its DTD
109
   *
110
   * @param doc the filename of the document to validate
111
   */
112
  public boolean validate(String doc) {
113
    xml_doc = doc;    
114
    ef = new ErrorStorer();
115
    ef.resetErrors();
116
    parser.setErrorHandler(ef);
117
    try {
118
      parser.parse((createURL(xml_doc)).toString());
119
    } catch (IOException e) {
120
      System.out.println("IOException:Could not parse :" + xml_doc +
121
                         " from DBValidate.validate");
122
      ParseError eip = null;
123
      eip = new ParseError("",0,0,
124
                "IOException:Could not parse :"+xml_doc);
125
      if (ef.errorNodes == null)  ef.errorNodes = new Vector();
126
      ef.errorNodes.addElement(eip);
127
        
128
    } catch (Exception e) {} 
129

    
130
    
131
    
132
    if (ef != null && ef.getErrorNodes()!=null && 
133
      ef.getErrorNodes().size() > 0 ) {
134
      return false; 
135
    } else {
136
      return true;
137
    }
138
  }
139
    
140
  /** 
141
   * validate an xml document against its DTD
142
   *
143
   * @param xmldoc the String containing the xml document to validate
144
   */
145
  public boolean validateString(String xmldoc) {
146
    // string is actual XML here, NOT URL or file name    
147
    ef = new ErrorStorer();
148
    ef.resetErrors();
149
    parser.setErrorHandler(ef);
150
      
151
    InputSource is = new InputSource(new StringReader(xmldoc));
152
    try 
153
    {
154
      
155
      parser.parse(is);
156
     
157
    }
158
    catch (SAXParseException e) 
159
    {
160
      System.out.println("SAXParseException Error in DBValidate.validateString"
161
                         +e.getMessage());
162
      ef.error(e);
163
    }
164
    catch (SAXException saxe)
165
    {
166
      System.out.println("SAXException error in validateString: "
167
                          +saxe.getMessage());
168
      ef.otherError(saxe, null);
169
      
170
    }
171
    catch (IOException ioe)
172
    {
173
      System.out.println("IOExcption error in validateString "
174
                          +ioe.getMessage());
175
      ef.otherError(ioe, null);
176
    }
177

    
178
    if (ef != null && ef.getErrorNodes()!=null && 
179
      ef.getErrorNodes().size() > 0 ) {
180
      return false; 
181
    } else {
182
      return true;
183
    }
184
  }
185
    
186
  /** provide a list of errors from the validation process */
187
  public String returnErrors() {
188
    StringBuffer errorstring = new StringBuffer();
189
    errorstring.append("<?xml version=\"1.0\" ?>\n");
190
    if (ef != null && ef.getErrorNodes()!=null && 
191
        ef.getErrorNodes().size() > 0 ) {
192
      Vector errors = ef.getErrorNodes();
193
      errorstring.append("<validationerrors>\n");
194
      for (Enumeration e = errors.elements() ; e.hasMoreElements() ;) {
195
        errorstring.append(
196
                      ((ParseError)(e.nextElement())).toXML());
197
      }
198
      errorstring.append("</validationerrors>\n");
199
    } else {
200
      errorstring.append("<valid />\n");
201
    }
202
    return errorstring.toString();
203
  }
204
              
205
  /** Create a URL object from either a URL string or a plain file name. */
206
  private URL createURL(String name) throws Exception {
207
    try {
208
      URL u = new URL(name);
209
      return u;
210
    } catch (MalformedURLException ex) {
211
    }
212
    URL u = new URL("file:" + new File(name).getAbsolutePath());
213
    return u;
214
  }    
215

    
216
  /** 
217
   * main method for testing 
218
   * <p>
219
   * Usage: java DBValidate <xmlfile or URL>
220
   */
221
  public static void main(String[] args) {
222

    
223
    if (args.length != 1) {
224
      System.out.println("Usage: java DBValidate <xmlfile or URL>");
225
      System.exit(0);
226
    }
227

    
228
    String doc = args[0];
229

    
230
    MetaCatUtil util = new MetaCatUtil();
231
    DBConnection conn = null;
232
    int serailNumber = -1;
233
    try {
234
      conn = DBConnectionPool.getDBConnection("DBValidate.main");
235
      serailNumber = conn.getCheckOutSerialNumber();
236
  
237
      DBValidate gxv = new DBValidate(conn);
238
      if (gxv.validate(doc)) {
239
        System.out.print(gxv.returnErrors());
240
      } else {
241
        System.out.print(gxv.returnErrors());
242
      }
243
    } catch (SQLException e) {
244
      System.out.println("<error>Couldn't open database connection.</error>");
245
    } 
246
    finally
247
    {
248
      DBConnectionPool.returnDBConnection(conn, serailNumber);
249
    }//finally
250
  }
251

    
252
    
253
  /**
254
   * ErrorStorer has been revised here to simply create a Vector of 
255
   * ParseError objects
256
   *
257
   */
258
  class ErrorStorer implements ErrorHandler {
259

    
260
    //
261
    // Data
262
    //
263
    Vector errorNodes = null;
264
        
265
    /**
266
     * Constructor
267
     */
268
    public ErrorStorer() {
269
    }
270

    
271
    /**
272
     * The client is is allowed to get a reference to the Hashtable,
273
     * and so could corrupt it, or add to it...
274
     */
275
    public Vector getErrorNodes() {
276
        return errorNodes;
277
    }
278

    
279
    /**
280
     * The ParseError object for the node key is returned.
281
     * If the node doesn't have errors, null is returned.
282
     */
283
    public Object getError() {
284
        if (errorNodes == null)
285
            return null;
286
        return errorNodes;
287
    }
288
        
289
    /**
290
     * Reset the error storage.
291
     */
292
    public void resetErrors() {
293
        if (errorNodes != null)
294
        errorNodes.removeAllElements();
295
    }
296
    
297
    /***/
298
    public void warning(SAXParseException ex) {
299
        
300
        handleError(ex, WARNING);
301
        
302
    }
303

    
304
    public void error(SAXParseException ex) {
305
      
306
        handleError(ex, ERROR);
307
       
308
    }
309

    
310
    public void fatalError(SAXParseException ex){
311
      
312
        handleError(ex, FATAL_ERROR);
313
        
314
    }
315
    
316
    public void otherError(Exception ex, String fileName)
317
    {
318
      if (!alreadyHandle)
319
      {
320
        if (errorNodes == null) 
321
        {
322
          errorNodes = new Vector();
323
        }
324
      
325
        ParseError error = new ParseError(fileName, ex.getMessage());
326
        errorNodes.addElement(error);
327
       
328
      }
329
    }
330
        
331
    private void handleError(SAXParseException ex, int type) {
332
     
333
      if (errorNodes == null) {
334
        errorNodes = new Vector();
335
      }
336
      
337
      ParseError eip = null;
338
      
339
      eip = new ParseError(ex.getSystemId(), ex.getLineNumber(),
340
                           ex.getColumnNumber(), ex.getMessage());
341
      
342
      // put it in the Hashtable.
343
      errorNodes.addElement(eip);
344
      alreadyHandle = true;
345
      
346
    }
347
        
348
  }
349
    
350
  /**
351
   * The ParseError class wraps up all the error info from
352
   * the ErrorStorer's error method.
353
   *
354
   * @see ErrorStorer
355
   */
356
  class ParseError extends Object {
357

    
358
    //
359
    // Data
360
    //
361

    
362
    String fileName;
363
    int lineNo;
364
    int charOffset;
365
    String msg;
366

    
367
    /**
368
     * Constructor
369
     */
370
    public ParseError(String fileName, int lineNo, int charOffset, String msg) {
371
      this.fileName=fileName;
372
      this.lineNo=lineNo;
373
      this.charOffset=charOffset;
374
      this.msg=msg;
375
    }
376
    public ParseError(String fileName, String msg) {
377
      this.fileName=fileName;
378
      this.msg=msg;
379
    }
380
    //
381
    // Getters...
382
    //
383
    public String getFileName() { return fileName; }
384
    public int getLineNo() { return lineNo; }
385
    public int getCharOffset() { return charOffset;}
386
    public String getMsg() { return msg; }
387
    public void setMsg(String s) { msg = s; }
388

    
389
    /** Return the error message as an xml fragment */
390
    public String toXML() {
391
      StringBuffer err = new StringBuffer();
392
      err.append("<error>\n");
393
      err.append("<filename>").append(getFileName()).append("</filename>\n");
394
      err.append("<line>").append(getLineNo()).append("</line>\n");
395
      err.append("<offset>").append(getCharOffset()).append("</offset>\n");
396
      err.append("<message>").append(getMsg()).append("</message>\n");
397
      err.append("</error>\n");
398
      return err.toString();
399
    }
400
  }
401
}
(27-27/66)