Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Serialize to object using scala mongo driver?

Tags:

mongodb

scala

I'm new to the scala mongo driver and am trying to understand how to map a class from a Document? None of the documentation seems to show how this is done. In the .net driver, its as easy as passing a generic and having fields auto mapped. Is there nothing similar in scala?

like image 321
devshorts Avatar asked Nov 28 '15 02:11

devshorts


1 Answers

They don't make it easy. Digging through the java, I came up with this solution:

import org.bson.codecs.DecoderContext
import org.bson.codecs.configuration.CodecRegistries.{fromProviders, fromRegistries}
import org.bson.codecs.configuration.CodecRegistry
import org.bson.{BsonDocumentReader, BsonDocumentWrapper}
import org.mongodb.scala.bson.codecs.{DEFAULT_CODEC_REGISTRY, Macros}
import org.mongodb.scala.bson.collection.mutable.Document

import scala.reflect.classTag

case class Person(firstName: String, lastName: String)

object MongoTest extends App {

  val personCodecProvider = Macros.createCodecProvider[Person]()
  val codecRegistry: CodecRegistry = fromRegistries(fromProviders(personCodecProvider), DEFAULT_CODEC_REGISTRY)

  val document = Document("firstName" -> "first", "lastName" -> "last")
  val bsonDocument = BsonDocumentWrapper.asBsonDocument(document, DEFAULT_CODEC_REGISTRY)

  val bsonReader = new BsonDocumentReader(bsonDocument)
  val decoderContext = DecoderContext.builder.build
  val codec = codecRegistry.get(classTag[Person].runtimeClass)
  val person: Person = codec.decode(bsonReader, decoderContext).asInstanceOf[Person]

  println(s"person: $person")
}
like image 146
Greg Avatar answered Oct 13 '22 00:10

Greg