2011-06-07 06:36:21 +05:30
|
|
|
|
/**
|
2012-01-19 18:21:06 +01:00
|
|
|
|
* Copyright (C) 2009-2012 Typesafe Inc. <http://www.typesafe.com>
|
2011-06-07 06:36:21 +05:30
|
|
|
|
*/
|
|
|
|
|
|
|
2011-06-22 09:59:00 +02:00
|
|
|
|
package akka.serialization
|
|
|
|
|
|
|
|
|
|
|
|
import akka.AkkaException
|
2011-11-29 11:50:22 +01:00
|
|
|
|
import com.typesafe.config.Config
|
2012-02-10 12:45:22 +01:00
|
|
|
|
import akka.actor.{ Extension, ExtendedActorSystem, Address, DynamicAccess }
|
|
|
|
|
|
import akka.event.Logging
|
|
|
|
|
|
import java.util.concurrent.ConcurrentHashMap
|
2012-07-22 15:33:18 +02:00
|
|
|
|
import scala.util.control.NonFatal
|
2012-02-06 21:12:26 +01:00
|
|
|
|
import scala.collection.mutable.ArrayBuffer
|
|
|
|
|
|
import java.io.NotSerializableException
|
2012-09-06 03:17:51 +02:00
|
|
|
|
import util.{ Try, DynamicVariable }
|
2011-06-07 06:36:21 +05:30
|
|
|
|
|
2011-11-24 18:53:18 +01:00
|
|
|
|
object Serialization {
|
2012-02-06 21:12:26 +01:00
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* Tuple that represents mapping from Class to Serializer
|
|
|
|
|
|
*/
|
|
|
|
|
|
type ClassSerializer = (Class[_], Serializer)
|
|
|
|
|
|
|
2012-01-27 12:14:28 +01:00
|
|
|
|
/**
|
|
|
|
|
|
* This holds a reference to the current transport address to be inserted
|
|
|
|
|
|
* into local actor refs during serialization.
|
|
|
|
|
|
*/
|
|
|
|
|
|
val currentTransportAddress = new DynamicVariable[Address](null)
|
|
|
|
|
|
|
2011-11-29 11:50:22 +01:00
|
|
|
|
class Settings(val config: Config) {
|
2011-11-24 18:53:18 +01:00
|
|
|
|
|
|
|
|
|
|
import scala.collection.JavaConverters._
|
|
|
|
|
|
import config._
|
|
|
|
|
|
|
2012-02-06 21:12:26 +01:00
|
|
|
|
val Serializers: Map[String, String] = configToMap(getConfig("akka.actor.serializers"))
|
2011-11-24 18:53:18 +01:00
|
|
|
|
|
2012-02-06 21:12:26 +01:00
|
|
|
|
val SerializationBindings: Map[String, String] = configToMap(getConfig("akka.actor.serialization-bindings"))
|
|
|
|
|
|
|
|
|
|
|
|
private def configToMap(cfg: Config): Map[String, String] =
|
|
|
|
|
|
cfg.root.unwrapped.asScala.toMap.map { case (k, v) ⇒ (k, v.toString) }
|
2011-11-24 18:53:18 +01:00
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2011-06-22 09:59:00 +02:00
|
|
|
|
/**
|
|
|
|
|
|
* Serialization module. Contains methods for serialization and deserialization as well as
|
2012-02-06 21:12:26 +01:00
|
|
|
|
* locating a Serializer for a particular class as defined in the mapping in the configuration.
|
2011-06-22 09:59:00 +02:00
|
|
|
|
*/
|
2012-01-24 11:33:40 +01:00
|
|
|
|
class Serialization(val system: ExtendedActorSystem) extends Extension {
|
2011-11-24 18:53:18 +01:00
|
|
|
|
import Serialization._
|
|
|
|
|
|
|
2011-11-29 11:50:22 +01:00
|
|
|
|
val settings = new Settings(system.settings.config)
|
2012-02-03 17:32:32 +01:00
|
|
|
|
val log = Logging(system, getClass.getName)
|
2011-07-19 14:20:18 +02:00
|
|
|
|
|
2011-12-29 16:11:56 +01:00
|
|
|
|
/**
|
|
|
|
|
|
* Serializes the given AnyRef/java.lang.Object according to the Serialization configuration
|
|
|
|
|
|
* to either an Array of Bytes or an Exception if one was thrown.
|
|
|
|
|
|
*/
|
2012-09-06 03:17:51 +02:00
|
|
|
|
def serialize(o: AnyRef): Try[Array[Byte]] = Try(findSerializerFor(o).toBinary(o))
|
2011-07-19 14:20:18 +02:00
|
|
|
|
|
2011-12-29 16:11:56 +01:00
|
|
|
|
/**
|
|
|
|
|
|
* Deserializes the given array of bytes using the specified serializer id,
|
|
|
|
|
|
* using the optional type hint to the Serializer and the optional ClassLoader ot load it into.
|
|
|
|
|
|
* Returns either the resulting object or an Exception if one was thrown.
|
|
|
|
|
|
*/
|
|
|
|
|
|
def deserialize(bytes: Array[Byte],
|
2011-12-30 22:00:49 +01:00
|
|
|
|
serializerId: Int,
|
2012-09-06 03:17:51 +02:00
|
|
|
|
clazz: Option[Class[_]]): Try[AnyRef] = Try(serializerByIdentity(serializerId).fromBinary(bytes, clazz))
|
2011-12-29 16:11:56 +01:00
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* Deserializes the given array of bytes using the specified type to look up what Serializer should be used.
|
|
|
|
|
|
* You can specify an optional ClassLoader to load the object into.
|
|
|
|
|
|
* Returns either the resulting object or an Exception if one was thrown.
|
|
|
|
|
|
*/
|
2012-09-06 03:17:51 +02:00
|
|
|
|
def deserialize(bytes: Array[Byte], clazz: Class[_]): Try[AnyRef] = Try(serializerFor(clazz).fromBinary(bytes, Some(clazz)))
|
2011-07-19 14:20:18 +02:00
|
|
|
|
|
2011-12-29 16:11:56 +01:00
|
|
|
|
/**
|
2012-02-06 21:12:26 +01:00
|
|
|
|
* Returns the Serializer configured for the given object, returns the NullSerializer if it's null.
|
|
|
|
|
|
*
|
2012-05-16 17:04:13 +02:00
|
|
|
|
* @throws akka.ConfigurationException if no `serialization-bindings` is configured for the
|
2012-02-06 21:12:26 +01:00
|
|
|
|
* class of the object
|
2011-12-29 16:11:56 +01:00
|
|
|
|
*/
|
2011-07-19 14:20:18 +02:00
|
|
|
|
def findSerializerFor(o: AnyRef): Serializer = o match {
|
2011-07-26 18:33:59 +12:00
|
|
|
|
case null ⇒ NullSerializer
|
|
|
|
|
|
case other ⇒ serializerFor(other.getClass)
|
2011-07-19 14:20:18 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
2011-12-29 16:11:56 +01:00
|
|
|
|
/**
|
2012-02-06 21:12:26 +01:00
|
|
|
|
* Returns the configured Serializer for the given Class. The configured Serializer
|
|
|
|
|
|
* is used if the configured class `isAssignableFrom` from the `clazz`, i.e.
|
|
|
|
|
|
* the configured class is a super class or implemented interface. In case of
|
|
|
|
|
|
* ambiguity it is primarily using the most specific configured class,
|
|
|
|
|
|
* and secondly the entry configured first.
|
|
|
|
|
|
*
|
|
|
|
|
|
* @throws java.io.NotSerializableException if no `serialization-bindings` is configured for the class
|
2011-12-29 16:11:56 +01:00
|
|
|
|
*/
|
2012-02-04 17:35:39 +01:00
|
|
|
|
def serializerFor(clazz: Class[_]): Serializer =
|
2012-02-06 21:12:26 +01:00
|
|
|
|
serializerMap.get(clazz) match {
|
|
|
|
|
|
case null ⇒
|
2012-02-07 15:11:16 +01:00
|
|
|
|
// bindings are ordered from most specific to least specific
|
2012-02-07 16:21:48 +01:00
|
|
|
|
def unique(possibilities: Seq[(Class[_], Serializer)]): Boolean =
|
|
|
|
|
|
possibilities.size == 1 ||
|
|
|
|
|
|
(possibilities map (_._1) forall (_ isAssignableFrom possibilities(0)._1)) ||
|
|
|
|
|
|
(possibilities map (_._2) forall (_ == possibilities(0)._2))
|
2012-02-07 15:11:16 +01:00
|
|
|
|
|
2012-02-07 16:21:48 +01:00
|
|
|
|
val ser = bindings filter { _._1 isAssignableFrom clazz } match {
|
|
|
|
|
|
case Seq() ⇒
|
2012-02-07 15:11:16 +01:00
|
|
|
|
throw new NotSerializableException("No configured serialization-bindings for class [%s]" format clazz.getName)
|
2012-02-07 16:21:48 +01:00
|
|
|
|
case possibilities ⇒
|
|
|
|
|
|
if (!unique(possibilities))
|
|
|
|
|
|
log.warning("Multiple serializers found for " + clazz + ", choosing first: " + possibilities)
|
|
|
|
|
|
possibilities(0)._2
|
2012-02-07 15:51:41 +01:00
|
|
|
|
}
|
|
|
|
|
|
serializerMap.putIfAbsent(clazz, ser) match {
|
2012-05-18 19:25:43 +02:00
|
|
|
|
case null ⇒ log.debug("Using serializer[{}] for message [{}]", ser.getClass.getName, clazz.getName); ser
|
2012-02-07 15:51:41 +01:00
|
|
|
|
case some ⇒ some
|
2012-02-04 17:35:39 +01:00
|
|
|
|
}
|
2012-02-06 21:12:26 +01:00
|
|
|
|
case ser ⇒ ser
|
2012-02-03 17:32:32 +01:00
|
|
|
|
}
|
2011-06-07 06:36:21 +05:30
|
|
|
|
|
2011-07-15 16:21:45 +02:00
|
|
|
|
/**
|
2012-02-09 19:26:02 +01:00
|
|
|
|
* Tries to load the specified Serializer by the fully-qualified name; the actual
|
2012-02-10 11:36:23 +01:00
|
|
|
|
* loading is performed by the system’s [[akka.actor.DynamicAccess]].
|
2011-07-15 16:21:45 +02:00
|
|
|
|
*/
|
2012-09-06 03:17:51 +02:00
|
|
|
|
def serializerOf(serializerFQN: String): Try[Serializer] =
|
|
|
|
|
|
system.dynamicAccess.createInstanceFor[Serializer](serializerFQN, Seq(classOf[ExtendedActorSystem] -> system)) recoverWith {
|
|
|
|
|
|
case _ ⇒ system.dynamicAccess.createInstanceFor[Serializer](serializerFQN, Seq())
|
|
|
|
|
|
}
|
2011-07-15 16:21:45 +02:00
|
|
|
|
|
2011-07-14 11:25:40 +02:00
|
|
|
|
/**
|
2011-07-19 14:20:18 +02:00
|
|
|
|
* A Map of serializer from alias to implementation (class implementing akka.serialization.Serializer)
|
2012-02-06 21:12:26 +01:00
|
|
|
|
* By default always contains the following mapping: "java" -> akka.serialization.JavaSerializer
|
2011-07-14 11:25:40 +02:00
|
|
|
|
*/
|
2012-05-18 19:25:43 +02:00
|
|
|
|
private val serializers: Map[String, Serializer] =
|
2012-09-06 03:17:51 +02:00
|
|
|
|
for ((k: String, v: String) ← settings.Serializers) yield k -> serializerOf(v).get
|
2011-06-29 21:25:17 +02:00
|
|
|
|
|
2011-07-14 11:25:40 +02:00
|
|
|
|
/**
|
2012-02-06 21:12:26 +01:00
|
|
|
|
* bindings is a Seq of tuple representing the mapping from Class to Serializer.
|
|
|
|
|
|
* It is primarily ordered by the most specific classes first, and secondly in the configured order.
|
2011-07-14 11:25:40 +02:00
|
|
|
|
*/
|
2012-09-06 03:17:51 +02:00
|
|
|
|
private[akka] val bindings: Seq[ClassSerializer] =
|
|
|
|
|
|
sort(for ((k: String, v: String) ← settings.SerializationBindings if v != "none") yield (system.dynamicAccess.getClassFor[Any](k).get, serializers(v)))
|
2011-06-29 21:25:17 +02:00
|
|
|
|
|
2011-07-14 11:25:40 +02:00
|
|
|
|
/**
|
2012-02-06 21:12:26 +01:00
|
|
|
|
* Sort so that subtypes always precede their supertypes, but without
|
|
|
|
|
|
* obeying any order between unrelated subtypes (insert sort).
|
2011-07-14 11:25:40 +02:00
|
|
|
|
*/
|
2012-02-06 21:12:26 +01:00
|
|
|
|
private def sort(in: Iterable[ClassSerializer]): Seq[ClassSerializer] =
|
|
|
|
|
|
(new ArrayBuffer[ClassSerializer](in.size) /: in) { (buf, ca) ⇒
|
|
|
|
|
|
buf.indexWhere(_._1 isAssignableFrom ca._1) match {
|
|
|
|
|
|
case -1 ⇒ buf append ca
|
|
|
|
|
|
case x ⇒ buf insert (x, ca)
|
|
|
|
|
|
}
|
|
|
|
|
|
buf
|
2012-02-03 17:32:32 +01:00
|
|
|
|
}
|
2012-02-06 21:12:26 +01:00
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* serializerMap is a Map whose keys is the class that is serializable and values is the serializer
|
|
|
|
|
|
* to be used for that class.
|
|
|
|
|
|
*/
|
2012-06-25 17:09:00 +02:00
|
|
|
|
private val serializerMap: ConcurrentHashMap[Class[_], Serializer] =
|
|
|
|
|
|
(new ConcurrentHashMap[Class[_], Serializer] /: bindings) { case (map, (c, s)) ⇒ map.put(c, s); map }
|
2011-07-19 14:20:18 +02:00
|
|
|
|
|
|
|
|
|
|
/**
|
2011-12-30 22:00:49 +01:00
|
|
|
|
* Maps from a Serializer Identity (Int) to a Serializer instance (optimization)
|
2011-07-19 14:20:18 +02:00
|
|
|
|
*/
|
2012-02-06 21:12:26 +01:00
|
|
|
|
val serializerByIdentity: Map[Int, Serializer] =
|
2011-07-26 18:33:59 +12:00
|
|
|
|
Map(NullSerializer.identifier -> NullSerializer) ++ serializers map { case (_, v) ⇒ (v.identifier, v) }
|
2011-06-07 06:36:21 +05:30
|
|
|
|
}
|
2011-10-06 21:19:46 +02:00
|
|
|
|
|