Thought I’d re-print this email to me from Mike Brock, the MVEL author:
This weekend, myself and Dhanji Prasanna from Google have firmed up an initial prototype implementation of MVBus; a new high-efficiency serialization framework built around MVEL, that is at least 4 times faster than XStream in the worst of scenarios.
It’s a very impressive framework, inspired by an an idea by Mark Proctor.
It consists of an encoding engine with modular type plug-ins, that allows any Java object to be translated in compact MVEL code, which can then be executed natively by the MVEL interpreter to be turned back into a real object.
Here’s an example of how it works:
// Create a simple POJO object
Person p = new Person("Mike", 30, new String[] { "Dorkus", "Jerkhead"});
p.setActive(true);
// Create another...
Person mother = new Person("Sarah", 50, new String[] { "Mommy", "Mom"});
mother.setActive(false);
// And another
Person father = new Person("John", 55, new String[] { "Dad", "Daddy"});
mother.setActive(false);
// Stick them together to make a somewhat complex graph
p.setMother(mother);
p.setFather(father);
// Create an MVBus encoding bus
MVBus bus = MVBus.createBus();
// Encode it!
String marshalled = bus.encode(p);
And here’s what that ‘marshalled’ variable contains
org.mvbus.decode.MVBUSDecoder.instantiate(org.mvbus.tests.resources.Person).{name="Mike",age=30,nicknames=new java.lang.String[] {"Dorkus","Jerkhead"},mother=org.mvbus.decode.MVBUSDecoder.instantiate(org.mvbus.tests.resources.Person).{name="Sarah",age=50,nicknames=new java.lang.String[] {"Mommy","Mom"},active=false},father=org.mvbus.decode.MVBUSDecoder.instantiate(org.mvbus.tests.resources.Person).{name="John",age=55,nicknames=new java.lang.String[] {"Dad","Daddy"},active=false},active=true}
This is completely native MVEL code that can be turned back into an Object simply by passing it to MVEL.eval(). And it’s very fast. However, if this isn’t pretty enough for you, the encoder has a nice pretty printer that can be turned on like so:
MVBus bus = MVBus.createBus(PrintStyle.PRETTY);
String marshalled = bus.encode(p);
Which produces
org.mvbus.decode.MVBUSDecoder.instantiate(org.mvbus.tests.resources.Person).{
name = "Mike",
age = 30,
nicknames = new java.lang.String[] {
"Dorkus","Jerkhead"
},
mother = org.mvbus.decode.MVBUSDecoder.instantiate(org.mvbus.tests.resources.Person).{
name = "Sarah",
age = 50,
nicknames = new java.lang.String[] {
"Mommy","Mom"
},
active = false
},
father = org.mvbus.decode.MVBUSDecoder.instantiate(org.mvbus.tests.resources.Person).{
name = "John",
age = 55,
nicknames = new java.lang.String[] {
"Dad","Daddy"
},
active = false
},
active = true
}
… in all it’s MVEL-ly glory.