org.apache.abdera2.parser.axiom.FOMParser.java Source code

Java tutorial

Introduction

Here is the source code for org.apache.abdera2.parser.axiom.FOMParser.java

Source

/*
 * 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.abdera2.parser.axiom;

import java.io.InputStream;
import java.io.Reader;

import javax.xml.stream.XMLInputFactory;
import javax.xml.stream.XMLStreamException;
import javax.xml.stream.XMLStreamReader;

import org.apache.abdera2.Abdera;
import org.apache.abdera2.common.Localizer;
import org.apache.abdera2.common.anno.Name;
import org.apache.abdera2.common.iri.IRI;
import org.apache.abdera2.common.io.Compression;
import org.apache.abdera2.common.xml.XMLStreamSniffingInputStream;
import org.apache.abdera2.common.xml.XmlRestrictedCharReader;
import org.apache.abdera2.common.xml.XmlVersionReader;
import org.apache.abdera2.factory.Factory;
import org.apache.abdera2.model.Document;
import org.apache.abdera2.model.Element;
import org.apache.abdera2.parser.AbstractParser;
import org.apache.abdera2.parser.ParseException;
import org.apache.abdera2.parser.Parser;
import org.apache.abdera2.parser.ParserOptions;

import org.apache.axiom.om.util.StAXParserConfiguration;
import org.apache.axiom.om.util.StAXUtils;
import org.apache.axiom.util.stax.dialect.StAXDialect;

import com.google.common.collect.Iterables;

@Name("default")
public class FOMParser extends AbstractParser implements Parser {
    private static final StAXParserConfiguration ABDERA_PARSER_CONFIGURATION = new StAXParserConfiguration() {
        public XMLInputFactory configure(XMLInputFactory factory, StAXDialect dialect) {
            factory.setProperty(XMLInputFactory.IS_REPLACING_ENTITY_REFERENCES, Boolean.FALSE);
            return factory;
        }

        // This is used in log statements inside Axiom
        @Override
        public String toString() {
            return "ABDERA";
        }
    };

    public FOMParser() {
        super();
    }

    public FOMParser(Abdera abdera) {
        super(abdera);
    }

    private FOMFactory getFomFactory(ParserOptions options) {
        FOMFactory factory = (options != null && options.getFactory() != null) ? (FOMFactory) options.getFactory()
                : null;
        if (factory == null) {
            Factory f = getFactory();
            factory = (f instanceof FOMFactory) ? (FOMFactory) f : new FOMFactory();
        }
        return factory;
    }

    private <T extends Element> Document<T> getDocument(FOMBuilder builder, IRI base, ParserOptions options)
            throws ParseException {
        Document<T> document = builder.getFomDocument();
        try {
            if (base != null)
                document.setBaseUri(base.toString());
            if (options != null && options.getCharset() != null)
                document.setCharset(options.getCharset());
            if (options != null)
                document.setMustPreserveWhitespace(options.getMustPreserveWhitespace());
        } catch (Exception e) {
            if (!(e instanceof ParseException))
                e = new ParseException(e);
            throw (ParseException) e;
        }
        return document;
    }

    public <T extends Element> Document<T> parse(InputStream in, String base, ParserOptions options)
            throws ParseException {
        if (in == null)
            throw new IllegalArgumentException(Localizer.get("INPUTSTREAM.NOT.NULL"));
        try {
            if (options == null)
                options = getDefaultParserOptions();
            if (!Iterables.isEmpty(options.getCompressionCodecs()))
                in = Compression.wrap(in, options.getCompressionCodecs());
            String charset = options.getCharset();
            if (charset == null && options.getAutodetectCharset()) {
                XMLStreamSniffingInputStream sin = (in instanceof XMLStreamSniffingInputStream)
                        ? (XMLStreamSniffingInputStream) in
                        : new XMLStreamSniffingInputStream(in);
                charset = sin.getEncoding();
                if (charset != null)
                    options = options.usingCharset(charset);
                in = sin;
            }
            if (options.getFilterRestrictedCharacters()) {
                Reader rdr = (charset == null)
                        ? new XmlRestrictedCharReader(in, options.getFilterRestrictedCharacterReplacement())
                        : new XmlRestrictedCharReader(in, charset,
                                options.getFilterRestrictedCharacterReplacement());
                return parse(StAXUtils.createXMLStreamReader(rdr), base, options);
            } else {
                XMLStreamReader xmlreader = (charset == null) ? createXMLStreamReader(in)
                        : createXMLStreamReader(in, charset);
                return parse(xmlreader, base, options);
            }
        } catch (Exception e) {
            if (!(e instanceof ParseException))
                e = new ParseException(e);
            throw (ParseException) e;
        }
    }

    public <T extends Element> Document<T> parse(Reader in, String base, ParserOptions options)
            throws ParseException {
        if (in == null)
            throw new IllegalArgumentException(Localizer.get("READER.NOT.NULL"));
        try {
            if (options == null)
                options = getDefaultParserOptions();
            if (options.getFilterRestrictedCharacters() && !(in instanceof XmlRestrictedCharReader)) {
                XmlVersionReader vr = new XmlVersionReader(in);
                in = new XmlRestrictedCharReader(vr, vr.getVersion(),
                        options.getFilterRestrictedCharacterReplacement());
            }
            return parse(createXMLStreamReader(in), base, options);
        } catch (Exception e) {
            if (!(e instanceof ParseException))
                e = new ParseException(e);
            throw (ParseException) e;
        }
    }

    private static XMLInputFactory getXMLInputFactory() {
        return StAXUtils.getXMLInputFactory(ABDERA_PARSER_CONFIGURATION);
    }

    public static XMLStreamReader createXMLStreamReader(InputStream in, String encoding) throws XMLStreamException {
        XMLInputFactory inputFactory = getXMLInputFactory();
        return inputFactory.createXMLStreamReader(in, encoding);
    }

    public static XMLStreamReader createXMLStreamReader(InputStream in) throws XMLStreamException {
        XMLInputFactory inputFactory = getXMLInputFactory();
        return inputFactory.createXMLStreamReader(in);
    }

    private XMLStreamReader createXMLStreamReader(Reader in) throws XMLStreamException {
        XMLInputFactory inputFactory = getXMLInputFactory();
        XMLStreamReader reader = inputFactory.createXMLStreamReader(in);
        return reader;
    }

    public <T extends Element> Document<T> parse(XMLStreamReader reader, String base, ParserOptions options)
            throws ParseException {
        try {
            FOMBuilder builder = new FOMBuilder(getFomFactory(options), reader, options);
            return getDocument(builder, base != null ? new IRI(base) : null, options);
        } catch (Exception e) {
            if (!(e instanceof ParseException))
                e = new ParseException(e);
            throw (ParseException) e;
        }
    }

    @Override
    protected ParserOptions.Builder initDefaultParserOptions() {
        return ParserOptions.make().factory(getFactory());
    }

}