1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/activejob/lib/active_job/arguments.rb

112 lines
3.6 KiB
Ruby
Raw Normal View History

module ActiveJob
# Raised when an exception is raised during job arguments deserialization.
#
# Wraps the original exception raised as +original_exception+.
class DeserializationError < StandardError
attr_reader :original_exception
def initialize(e) #:nodoc:
2014-09-04 10:35:37 -04:00
super("Error while trying to deserialize arguments: #{e.message}")
@original_exception = e
set_backtrace e.backtrace
end
end
2014-08-24 12:33:59 -04:00
# Raised when an unsupported argument type is being set as job argument. We
# currently support NilClass, Fixnum, Float, String, TrueClass, FalseClass,
# Bignum and object that can be represented as GlobalIDs (ex: Active Record).
# Also raised if you set the key for a Hash something else than a string or
# a symbol.
class SerializationError < ArgumentError
end
module Arguments
extend self
2014-05-31 10:31:20 -04:00
TYPE_WHITELIST = [ NilClass, Fixnum, Float, String, TrueClass, FalseClass, Bignum ]
# Serializes a set of arguments. Whitelisted types are returned
# as-is. Arrays/Hashes are serialized element by element.
# All other types are serialized using GlobalID.
def serialize(arguments)
2014-06-05 16:10:41 -04:00
arguments.map { |argument| serialize_argument(argument) }
end
# Deserializes a set of arguments. Whitelisted types are returned
# as-is. Arrays/Hashes are deserialized element by element.
# All other types are deserialized using GlobalID.
def deserialize(arguments)
2014-06-05 16:10:41 -04:00
arguments.map { |argument| deserialize_argument(argument) }
rescue => e
raise DeserializationError.new(e)
2014-06-05 16:10:41 -04:00
end
private
GLOBALID_KEY = '_aj_globalid'.freeze
private_constant :GLOBALID_KEY
def serialize_argument(argument)
2014-05-31 10:31:20 -04:00
case argument
when *TYPE_WHITELIST
argument
when GlobalID::Identification
{ GLOBALID_KEY => argument.to_global_id.to_s }
2014-05-31 10:31:20 -04:00
when Array
argument.map { |arg| serialize_argument(arg) }
2014-06-05 16:10:41 -04:00
when Hash
argument.each_with_object({}) do |(key, value), hash|
hash[serialize_hash_key(key)] = serialize_argument(value)
end
else
raise SerializationError.new("Unsupported argument type: #{argument.class.name}")
end
end
def deserialize_argument(argument)
2014-05-31 10:31:20 -04:00
case argument
when String
GlobalID::Locator.locate(argument) || argument
when *TYPE_WHITELIST
argument
2014-05-31 10:31:20 -04:00
when Array
argument.map { |arg| deserialize_argument(arg) }
2014-05-31 10:31:20 -04:00
when Hash
if serialized_global_id?(argument)
deserialize_global_id argument
else
deserialize_hash argument
end
else
raise ArgumentError, "Can only deserialize primitive arguments: #{argument.inspect}"
2014-05-31 10:31:20 -04:00
end
end
def serialized_global_id?(hash)
hash.size == 1 and hash.include?(GLOBALID_KEY)
end
def deserialize_global_id(hash)
GlobalID::Locator.locate hash[GLOBALID_KEY]
end
def deserialize_hash(serialized_hash)
serialized_hash.each_with_object({}.with_indifferent_access) do |(key, value), hash|
hash[key] = deserialize_argument(value)
end
end
RESERVED_KEYS = [GLOBALID_KEY, GLOBALID_KEY.to_sym]
private_constant :RESERVED_KEYS
def serialize_hash_key(key)
2014-05-31 10:31:20 -04:00
case key
when *RESERVED_KEYS
raise SerializationError.new("Can't serialize a Hash with reserved key #{key.inspect}")
2014-05-31 10:31:20 -04:00
when String, Symbol
key.to_s
else
raise SerializationError.new("Only string and symbol hash keys may be serialized as job arguments, but #{key.inspect} is a #{key.class}")
2014-05-31 10:31:20 -04:00
end
end
end
end