- rename to DynamicAccess - rename to createInstanceFor / createClassFor - fix a few little things
28 lines
No EOL
997 B
Scala
28 lines
No EOL
997 B
Scala
/**
|
|
* Copyright (C) 2009-2012 Typesafe Inc. <http://www.typesafe.com>
|
|
*/
|
|
|
|
package akka.serialization
|
|
|
|
import com.google.protobuf.Message
|
|
import akka.actor.DynamicAccess
|
|
|
|
/**
|
|
* This Serializer serializes `com.google.protobuf.Message`s
|
|
*/
|
|
class ProtobufSerializer extends Serializer {
|
|
val ARRAY_OF_BYTE_ARRAY = Array[Class[_]](classOf[Array[Byte]])
|
|
def includeManifest: Boolean = true
|
|
def identifier = 2
|
|
|
|
def toBinary(obj: AnyRef): Array[Byte] = obj match {
|
|
case m: Message ⇒ m.toByteArray
|
|
case _ ⇒ throw new IllegalArgumentException("Can't serialize a non-protobuf message using protobuf [" + obj + "]")
|
|
}
|
|
|
|
def fromBinary(bytes: Array[Byte], clazz: Option[Class[_]]): AnyRef =
|
|
clazz match {
|
|
case None ⇒ throw new IllegalArgumentException("Need a protobuf message class to be able to serialize bytes using protobuf")
|
|
case Some(c) ⇒ c.getDeclaredMethod("parseFrom", ARRAY_OF_BYTE_ARRAY: _*).invoke(null, bytes).asInstanceOf[Message]
|
|
}
|
|
} |