is there a BSON serializer/deserializer library out there for PHP or Java?

Thanks

link|improve this question

feedback

4 Answers

up vote 1 down vote accepted

You might check the MongoDB drivers for those languages, since MongoDB uses BSON. See what they use, or steal their implementation.

link|improve this answer
feedback

Another possibility is BSON4Jackson extension for Jackson, which adds support for BSON reading/writing.

link|improve this answer
feedback

Not for Java, but here's one for Obj-C: https://github.com/martinkou/bson-objc/

link|improve this answer
feedback

BSON encoder/decoder in Java is pretty trivial. The following snippet of code is from my app, so it's in Scala. I am sure you could build a Java implementation from it easily.

import org.bson.BSON
import com.mongodb.{DBObject, DBDecoder, DefaultDBDecoder}

def convert(dbo: DBObject): Array[Byte] =
  BSON.encode(dbo)

// NB! this is a stateful object and thus it's not thread-safe, so have
// to create one per decoding
def decoder: DBDecoder = DefaultDBDecoder.FACTORY.create

def convert(data: Array[Byte]): DBObject =
  // NOTE: we do not support Ref in input, that's why "null" for DBCollection
  decoder.decode(data, null)

def convert(is: InputStream): DBObject =
  // NOTE: we do not support Ref in input, that's why "null" for DBCollection
  decoder.decode(is, null)

The only significant note is that DBEncoder instance has an internal state it (re)uses during decoding, so it's not thread-safe. It should be ok if you decode objects one by one, but otherwise you'd better create an instance per decoding session.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.