Created
November 8, 2010 18:56
-
-
Save kzk/668091 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.io.DataInput; | |
import java.io.DataOutput; | |
import java.io.IOException; | |
import org.apache.hadoop.io.BytesWritable; | |
import org.apache.hadoop.io.WritableComparable; | |
import org.msgpack.MessagePack; | |
public class MessagePackWritable<C> implements WritableComparable<MessagePackWritable<C>> { | |
private C obj_; | |
public MessagePackWritable(C obj) { | |
// TODO: how about this overhead? | |
MessagePack.register(obj.getClass()); | |
obj_ = obj; | |
} | |
public void set(C obj) { obj_ = obj; } | |
public C get() { return obj_; } | |
public void write(DataOutput out) throws IOException { | |
byte[] raw = MessagePack.pack(obj_); | |
if (raw == null) return; | |
out.writeInt(raw.length); | |
out.write(raw, 0, raw.length); | |
} | |
@SuppressWarnings("unchecked") | |
public void readFields(DataInput in) throws IOException { | |
int size = in.readInt(); | |
if (size > 0) { | |
byte[] raw = new byte[size]; | |
in.readFully(raw, 0, size); | |
// TODO: want to supress allocation here by recycling obj_ | |
obj_ = (C)MessagePack.unpack(raw, obj_.getClass()); | |
} | |
} | |
@Override | |
public int compareTo(MessagePackWritable<C> other) { | |
// TODO: compare without packing | |
byte[] raw1 = MessagePack.pack(this.get()); | |
byte[] raw2 = MessagePack.pack(other.get()); | |
return BytesWritable.Comparator.compareBytes(raw1, 0, raw1.length, raw2, 0, raw2.length); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment