1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.xchain.framework.sax;
17
18 import org.xml.sax.XMLReader;
19 import org.xml.sax.InputSource;
20 import org.xml.sax.ErrorHandler;
21 import org.xml.sax.SAXParseException;
22
23 import org.slf4j.Logger;
24 import org.slf4j.LoggerFactory;
25
26
27
28
29
30
31 public class Pipeline
32 {
33 public static Logger log = LoggerFactory.getLogger( Pipeline.class );
34
35 protected CompositeStage compositeStage = null;
36 protected InputSource source = null;
37 protected XMLReader reader = null;
38
39 public CompositeStage getCompositeStage() { return this.compositeStage; }
40 public void setCompositeStage( CompositeStage compositeStage ) { this.compositeStage = compositeStage; }
41 public void setSource( InputSource source ) { this.source = source; }
42 public void setXmlReader( XMLReader reader ) { this.reader = reader; }
43 public XMLReader getXmlReader() { return reader; }
44
45
46
47
48
49 public void execute()
50 throws Exception
51 {
52
53 reader.setContentHandler(compositeStage.getContentHandler());
54
55
56 reader.setErrorHandler( new ErrorHandler() {
57 public void error( SAXParseException e ) {
58 log.error(e.getMessage(), e);
59 throw new RuntimeException("An error was thrown while processing the document.", e);
60 }
61
62 public void fatalError( SAXParseException e ) {
63 log.error(e.getMessage(), e);
64 throw new RuntimeException("A fatal error was thrown while processing the document.", e);
65 }
66
67 public void warning( SAXParseException e ) {
68 log.warn("SAX Parser Warning.", e);
69 }
70 });
71
72
73 if( log.isDebugEnabled() ) {
74 log.debug("Running pipeline.");
75 }
76
77
78 reader.parse(source);
79 }
80 }