rails--rails/activejob/lib/active_job/arguments.rb

76 lines
2.3 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 14:35:37 +00:00
super("Error while trying to deserialize arguments: #{e.message}")
@original_exception = e
set_backtrace e.backtrace
end
end
2014-08-24 16:33:59 +00: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 14:31:20 +00:00
TYPE_WHITELIST = [ NilClass, Fixnum, Float, String, TrueClass, FalseClass, Bignum ]
def serialize(arguments)
2014-06-05 20:10:41 +00:00
arguments.map { |argument| serialize_argument(argument) }
end
def deserialize(arguments)
2014-06-05 20:10:41 +00:00
arguments.map { |argument| deserialize_argument(argument) }
rescue => e
raise DeserializationError.new(e)
2014-06-05 20:10:41 +00:00
end
private
def serialize_argument(argument)
2014-05-31 14:31:20 +00:00
case argument
2014-08-17 01:06:30 +00:00
when GlobalID::Identification
2014-09-12 08:28:20 +00:00
argument.to_global_id.to_s
2014-05-31 14:31:20 +00:00
when *TYPE_WHITELIST
argument
2014-05-31 14:31:20 +00:00
when Array
argument.map { |arg| serialize_argument(arg) }
2014-06-05 20:10:41 +00:00
when Hash
Hash[ argument.map { |key, value| [ serialize_hash_key(key), serialize_argument(value) ] } ]
else
raise SerializationError.new("Unsupported argument type: #{argument.class.name}")
end
end
def deserialize_argument(argument)
2014-05-31 14:31:20 +00:00
case argument
when Array
argument.map { |arg| deserialize_argument(arg) }
2014-05-31 14:31:20 +00:00
when Hash
2014-06-05 20:10:41 +00:00
Hash[ argument.map { |key, value| [ key, deserialize_argument(value) ] } ].with_indifferent_access
when String, GlobalID
2014-08-17 01:06:30 +00:00
GlobalID::Locator.locate(argument) || argument
else
argument
2014-05-31 14:31:20 +00:00
end
end
def serialize_hash_key(key)
2014-05-31 14:31:20 +00:00
case key
when String, Symbol
key.to_s
else
raise SerializationError.new("Unsupported hash key type: #{key.class.name}")
2014-05-31 14:31:20 +00:00
end
end
end
end