View Javadoc

1   /**
2    *    Copyright 2011 meltmedia
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.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   * @author Mike Moulton
28   * @author Christian Trimble
29   * @author Josh Kennedy
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     * Executes the pipeline.  The stage list is bound to the xml reader, then the parse method is called on the xml reader, passing
47     * in the source object.  This method should only be executed once, and then the pipeline should be thrown away.
48     */
49    public void execute()
50      throws Exception
51    {
52      // bind the reader to the content handler.
53      reader.setContentHandler(compositeStage.getContentHandler());
54  
55      // attach an error handler to the transformer handler.
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      // parse the source document.
78      reader.parse(source);
79    }
80  }