Package org.apache.abdera.parser.stax

Source Code of org.apache.abdera.parser.stax.FOMParser

/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements.  The ASF licenses this file to You
* under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*     http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.  For additional information regarding
* copyright in this work, please see the NOTICE file in the top level
* directory of this distribution.
*/
package org.apache.abdera.parser.stax;

import java.io.InputStream;
import java.io.Reader;
import java.net.URI;

import javax.xml.stream.XMLStreamReader;

import org.apache.abdera.factory.Factory;
import org.apache.abdera.model.Document;
import org.apache.abdera.model.Element;
import org.apache.abdera.parser.ParseException;
import org.apache.abdera.parser.Parser;
import org.apache.abdera.parser.ParserOptions;
import org.apache.abdera.parser.stax.util.FOMSniffingInputStream;
import org.apache.abdera.util.AbstractParser;
import org.apache.axiom.om.OMDocument;
import org.apache.axiom.om.util.StAXUtils;

public class FOMParser
  extends AbstractParser
  implements Parser {
 
  private FOMFactory getFomFactory(ParserOptions options) {
    FOMFactory factory =
      (options != null && options.getFactory() != null) ?
        (FOMFactory)options.getFactory() : null;
    if (factory == null)
      factory = (Factory.INSTANCE instanceof FOMFactory) ?
        (FOMFactory)Factory.INSTANCE : new FOMFactory();
    return factory;
  }
 
  private <T extends Element>Document<T> getDocument(
    FOMBuilder builder,
    URI base) {
      Document<T> document = builder.getFomDocument();
      try {
        document.setBaseUri(base.toString());
      } catch (Exception e) {}
      return document;
  }
 
  private void setCharset(ParserOptions options, String charset, Document doc) {
    if (charset != null) doc.setCharset(charset);
    if (options.getCharset() != null) {
      ((OMDocument)doc).setCharsetEncoding(options.getCharset());
    }   
  }
 
  public <T extends Element>Document<T> parse(
    InputStream in,
    URI base,
    ParserOptions options)
      throws ParseException {
    Document<T> document = null;
    if (in == null)
      throw new IllegalArgumentException("InputStream must not be null");
    try {
      String charset = (options != null) ? options.getCharset() : null;
      boolean detect = (options != null) ? options.getAutodetectCharset() : true;
      if (charset == null && detect) {
        FOMSniffingInputStream sin =
          (in instanceof FOMSniffingInputStream) ?
            (FOMSniffingInputStream)in :
            new FOMSniffingInputStream(in);
        charset = sin.getEncoding();
        in = sin;
      }
      XMLStreamReader xmlreader = StAXUtils.createXMLStreamReader(in);
      if (options != null && charset != null) options.setCharset(charset);
      FOMFactory factory = getFomFactory(options);
      FOMBuilder builder = new FOMBuilder(factory, xmlreader, options);
      document = getDocument(builder, base);
      setCharset(options, xmlreader.getCharacterEncodingScheme(), document);
    } catch (Exception e) {
      if (!(e instanceof ParseException))
        e = new ParseException(e);
      throw (ParseException)e;
    }
    return document;
  }

  public <T extends Element> Document<T> parse(
    Reader in,
    URI base,
    ParserOptions options)
      throws ParseException {
    Document<T> document = null;
    if (in == null)
      throw new IllegalArgumentException("Reader must not be null");
    try {
      FOMFactory factory = getFomFactory(options);
      XMLStreamReader xmlreader = StAXUtils.createXMLStreamReader(in);
      FOMBuilder builder = new FOMBuilder(factory, xmlreader, options);
      document = getDocument(builder, base);
      setCharset(options, xmlreader.getCharacterEncodingScheme(), document);
    } catch (Exception e) {
      if (!(e instanceof ParseException))
        e = new ParseException(e);
      throw (ParseException)e;
    }
    return document;
  }
 
  @Override
  public ParserOptions getDefaultParserOptions() {
    return new FOMParserOptions();
  }

}
TOP

Related Classes of org.apache.abdera.parser.stax.FOMParser

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.