org.apache.abdera.parser.stax.FOMWriter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fom-impl Show documentation
Show all versions of fom-impl Show documentation
Implementation of Abdera's Feed Object Model. Can be used as a drop in replacement for the abdera-parser artifact.
/*
* 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.ByteArrayOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.io.OutputStreamWriter;
import java.io.Writer;
import org.apache.abdera.Abdera;
import org.apache.abdera.model.Base;
import org.apache.abdera.model.Document;
import org.apache.abdera.model.Element;
import org.apache.abdera.util.AbstractWriter;
import org.apache.abdera.util.Constants;
import org.apache.abdera.util.MimeTypeHelper;
import org.apache.abdera.writer.WriterOptions;
public class FOMWriter extends AbstractWriter implements org.apache.abdera.writer.NamedWriter {
public FOMWriter() {
}
public FOMWriter(Abdera abdera) {
}
@SuppressWarnings("unchecked")
public void writeTo(Base base, OutputStream out, WriterOptions options) throws IOException {
out = getCompressedOutputStream(out, options);
String charset = options.getCharset();
if (charset == null) {
if (base instanceof Document)
charset = ((Document)base).getCharset();
else if (base instanceof Element) {
Document doc = ((Element)base).getDocument();
if (doc != null)
charset = doc.getCharset();
}
if (charset == null)
charset = "UTF-8";
} else {
Document doc = null;
if (base instanceof Document)
doc = (Document)base;
else if (base instanceof Element)
doc = ((Element)base).getDocument();
if (doc != null)
doc.setCharset(charset);
}
base.writeTo(new OutputStreamWriter(out, charset));
finishCompressedOutputStream(out, options);
if (options.getAutoClose())
out.close();
}
public void writeTo(Base base, Writer out, WriterOptions options) throws IOException {
base.writeTo(out);
if (options.getAutoClose())
out.close();
}
public Object write(Base base, WriterOptions options) throws IOException {
ByteArrayOutputStream out = new ByteArrayOutputStream();
writeTo(base, out, options);
return out.toString();
}
public String getName() {
return "default";
}
public String[] getOutputFormats() {
return new String[] {Constants.ATOM_MEDIA_TYPE, Constants.APP_MEDIA_TYPE, Constants.CAT_MEDIA_TYPE,
Constants.XML_MEDIA_TYPE};
}
public boolean outputsFormat(String mediatype) {
return MimeTypeHelper.isMatch(mediatype, Constants.ATOM_MEDIA_TYPE) || MimeTypeHelper
.isMatch(mediatype, Constants.APP_MEDIA_TYPE)
|| MimeTypeHelper.isMatch(mediatype, Constants.CAT_MEDIA_TYPE)
|| MimeTypeHelper.isMatch(mediatype, Constants.XML_MEDIA_TYPE);
}
@Override
protected WriterOptions initDefaultWriterOptions() {
return new FOMWriterOptions();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy