ebson is an extensible BSON encoder/decoder library written in Java. The library is extensible in the sense that the mappings between Java and BSON types are configurable and the logic to serialize custom Java types is pluggable. Its single dependency is the Guava libraries by Google.
Released under the permissive MIT License.
Add the library as a dependency in your project's pom.xml like this.
<dependency>
<groupId>com.github.kohanyirobert</groupId>
<artifactId>ebson</artifactId>
<version>...</version>
</dependency>
Releases and snapshots are deployed to Sonatype's OSS repository (and synced to the Central Maven Repository from there). To download JARs from Sonatype's repository include the following repository tag inside your Maven installation's settings.xml or your project's pom.xml.
<repository>
<id>sonatype-oss</id>
<url>https://oss.sonatype.org/content/groups/public</url>
</repository>
As the project is managed with Maven you simply clone it and issue mvn install or mvn package inside the clone's directory.
git clone git://github.com/kohanyirobert/ebson.git
cd ebson/
mvn package
# and/or
mvn install
// create documents to serialize
BsonDocument document = BsonDocuments.of("key", new Date());
// grab a little-endian byte buffer
ByteBuffer buffer = ByteBuffer.allocate(32).order(ByteOrder.LITTLE_ENDIAN);
// use the documents utility class to write the document into the buffer
BsonDocuments.writeTo(buffer, document);
// use the serialized data
buffer.flip();
// given the previous buffer
BsonDocument newDocument = BsonDocuments.readFrom(buffer);
// prints true
System.out.println(document.equals(newDocument));
// to use joda-time's date-time instead of java's date supply
// a predicate (to test whether an input class is compatible with
// date-time or not) for the appropriate bson type
BsonObject.UTC_DATE_TIME.predicate(new Predicate<Class<?>>() {
@Override public boolean apply(Class<?> input) {
return input == null ? false : DateTime.class.isAssignableFrom(input);
}
});
// register a writer with the same bson type which is
// able to serialize date-times into byte buffers
BsonObject.UTC_DATE_TIME.writer(new BsonWriter() {
@Override public void writeTo(ByteBuffer buffer, Object reference) {
buffer.putLong(((DateTime) reference).getMillis());
}
});
// finally register a reader to do all this ass backwards
BsonObject.UTC_DATE_TIME.reader(new BsonReader() {
@Override public Object readFrom(ByteBuffer buffer) {
return new DateTime(buffer.getLong());
}
});