Files
narya/src/java/com/threerings/presents/io/StreamableFieldMarshaller.java
T
Michael Bayne 0bc39b6d3f Need to write out the class name of a streamable field as it may be a
derived class of the declared field type.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1095 542714f4-19e9-0310-aa3c-eee0fc999fb1
2002-03-06 23:45:01 +00:00

57 lines
1.7 KiB
Java

//
// $Id: StreamableFieldMarshaller.java,v 1.5 2002/03/06 23:45:01 mdb Exp $
package com.threerings.presents.io;
import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.IOException;
import java.lang.reflect.Field;
import com.samskivert.io.NestableIOException;
import com.samskivert.util.StringUtil;
import com.threerings.presents.io.Streamable;
public class StreamableFieldMarshaller implements FieldMarshaller
{
public void writeTo (DataOutputStream out, Field field, Object obj)
throws IOException, IllegalAccessException
{
Streamable value = (Streamable)field.get(obj);
if (value == null) {
out.writeUTF("");
} else {
out.writeUTF(value.getClass().getName());
value.writeTo(out);
}
}
public void readFrom (DataInputStream in, Field field, Object obj)
throws IOException, IllegalAccessException
{
try {
Streamable value = null;
String scnm = in.readUTF();
// instantiate and unserialize the streamable if we actually
// have a value
if (!StringUtil.blank(scnm)) {
Class sclass = Class.forName(scnm);
// create a new instance into which to unmarshall the field
value = (Streamable)sclass.newInstance();
// unserialize it
value.readFrom(in);
}
// and set the value in the object
field.set(obj, value);
} catch (Exception e) {
String errmsg = "Unable to instantiate streamable " +
"[field=" + field + ", object=" + obj + "]";
throw new NestableIOException(errmsg, e);
}
}
}