blob: 12dcf51a7d9c44b02274b9e94f22f79a36ff3b79 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. 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.
*/
package org.apache.geronimo.gshell.marshal;
import com.thoughtworks.xstream.XStream;
import com.thoughtworks.xstream.io.xml.DomDriver;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.io.Reader;
import java.io.StringReader;
import java.io.Writer;
import java.net.URL;
/**
* Support for {@link Marshaller} implementations.
*
* @version $Rev$ $Date$
*/
public class MarshallerSupport<T>
implements Marshaller<T>
{
private final Logger log = LoggerFactory.getLogger(getClass());
private final Class rootType;
public MarshallerSupport(final Class rootType) {
assert rootType != null;
this.rootType = rootType;
}
protected XStream createXStream() {
XStream xs = new XStream(new DomDriver());
//
// TODO: See how we can enable schema validation when the input document has them configured.
//
configure(xs);
return xs;
}
protected void configure(final XStream xs) {
assert xs != null;
xs.processAnnotations(rootType);
}
protected void configureAnnotations(final XStream xs, final Class... classes) {
assert xs != null;
assert classes != null;
xs.processAnnotations(classes);
}
public void marshal(final T model, final OutputStream output) {
assert model != null;
assert output != null;
log.trace("Marshalling: {}", model);
createXStream().toXML(model, output);
}
public void marshal(final T model, final Writer writer) {
assert model != null;
assert writer != null;
log.trace("Marshalling: {}", model);
createXStream().toXML(model, writer);
}
public String marshal(final T root) {
assert root != null;
return createXStream().toXML(root);
}
@SuppressWarnings({"unchecked"})
public T unmarshal(final InputStream input) {
assert input != null;
T model = (T)createXStream().fromXML(input);
if (model instanceof MarshallerAware) {
((MarshallerAware)model).setMarshaller(this);
}
log.trace("Unmarshalled: {}", model);
return model;
}
@SuppressWarnings({"unchecked"})
public T unmarshal(final Reader reader) {
assert reader != null;
T model = (T)createXStream().fromXML(reader);
if (model instanceof MarshallerAware) {
((MarshallerAware)model).setMarshaller(this);
}
log.trace("Unmarshalled: {}", model);
return model;
}
public T unmarshal(final String xml) {
assert xml != null;
return unmarshal(new StringReader(xml));
}
public T unmarshal(final URL url) throws IOException {
assert url != null;
InputStream input = url.openStream();
try {
return unmarshal(input);
}
finally {
input.close();
}
}
public void marshal(final T root, final File file) throws IOException {
assert root != null;
assert file != null;
BufferedWriter writer = new BufferedWriter(new FileWriter(file));
try {
marshal(root, writer);
}
finally {
writer.close();
}
}
public T unmarshal(final File file) throws IOException {
assert file != null;
BufferedReader reader = new BufferedReader(new FileReader(file));
try {
return unmarshal(reader);
}
finally {
reader.close();
}
}
}