blob: 8ddac9dbb2bc1b2e6f0a6951d52236f357093dce [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.activemq.transport.xstream;
import java.io.IOException;
import java.io.Reader;
import com.thoughtworks.xstream.converters.Converter;
import com.thoughtworks.xstream.converters.MarshallingContext;
import com.thoughtworks.xstream.converters.UnmarshallingContext;
import com.thoughtworks.xstream.io.HierarchicalStreamReader;
import com.thoughtworks.xstream.io.HierarchicalStreamWriter;
import org.apache.activemq.command.ConsumerInfo;
import org.apache.activemq.command.MarshallAware;
import org.apache.activemq.command.MessageDispatch;
import org.apache.activemq.command.TransientInitializer;
import org.apache.activemq.transport.stomp.XStreamSupport;
import org.apache.activemq.transport.util.TextWireFormat;
import org.apache.activemq.util.ByteSequence;
import org.apache.activemq.wireformat.WireFormat;
import com.thoughtworks.xstream.XStream;
/**
* A {@link WireFormat} implementation which uses the <a
* href="http://xstream.codehaus.org/>XStream</a> library to marshall commands
* onto the wire
*
*
*/
public class XStreamWireFormat extends TextWireFormat {
private XStream xStream;
private int version;
@Override
public int getVersion() {
return version;
}
@Override
public void setVersion(int version) {
this.version = version;
}
public WireFormat copy() {
return new XStreamWireFormat();
}
@Override
public Object unmarshalText(String text) {
return getXStream().fromXML(text);
}
@Override
public Object unmarshalText(Reader reader) {
Object val = getXStream().fromXML(reader);
if (val instanceof TransientInitializer) {
((TransientInitializer)val).initTransients();
}
return val;
}
@Override
public String marshalText(Object command) throws IOException {
if (command instanceof MarshallAware) {
((MarshallAware)command).beforeMarshall(this);
} else if(command instanceof MessageDispatch) {
MessageDispatch dispatch = (MessageDispatch) command;
if (dispatch != null && dispatch.getMessage() != null) {
dispatch.getMessage().beforeMarshall(this);
}
}
return getXStream().toXML(command);
}
/**
* Can this wireformat process packets of this version
*
* @param version the version number to test
* @return true if can accept the version
*/
public boolean canProcessWireFormatVersion(int version) {
return true;
}
/**
* @return the current version of this wire format
*/
public int getCurrentWireFormatVersion() {
return 1;
}
// Properties
// -------------------------------------------------------------------------
public XStream getXStream() {
if (xStream == null) {
xStream = createXStream();
// make it work in OSGi env
xStream.setClassLoader(getClass().getClassLoader());
}
return xStream;
}
public void setXStream(XStream xStream) {
this.xStream = xStream;
}
// Implementation methods
// -------------------------------------------------------------------------
protected XStream createXStream() {
final XStream xstream = XStreamSupport.createXStream();
xstream.ignoreUnknownElements();
xstream.registerConverter(new Converter() {
final Converter delegate = xstream.getConverterLookup().lookupConverterForType(ByteSequence.class);
@Override
public void marshal(Object o, HierarchicalStreamWriter hierarchicalStreamWriter, MarshallingContext marshallingContext) {
ByteSequence byteSequence = (ByteSequence)o;
byteSequence.compact();
delegate.marshal(byteSequence, hierarchicalStreamWriter, marshallingContext);
}
@Override
public Object unmarshal(HierarchicalStreamReader hierarchicalStreamReader, UnmarshallingContext unmarshallingContext) {
return delegate.unmarshal(hierarchicalStreamReader, unmarshallingContext);
}
@Override
public boolean canConvert(Class aClass) {
return aClass == ByteSequence.class;
}
});
return xstream;
}
}