2014-05-22 13:35:45 -04:00
|
|
|
require 'active_model/global_locator'
|
2014-06-26 15:29:21 -04:00
|
|
|
require 'active_model/global_identification'
|
2014-05-22 13:35:45 -04:00
|
|
|
|
|
|
|
module ActiveJob
|
|
|
|
class Arguments
|
2014-05-31 10:31:20 -04:00
|
|
|
TYPE_WHITELIST = [ NilClass, Fixnum, Float, String, TrueClass, FalseClass, Bignum ]
|
2014-05-22 13:35:45 -04:00
|
|
|
|
|
|
|
def self.serialize(arguments)
|
2014-06-05 16:10:41 -04:00
|
|
|
arguments.map { |argument| serialize_argument(argument) }
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.deserialize(arguments)
|
|
|
|
arguments.map { |argument| deserialize_argument(argument) }
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
def self.serialize_argument(argument)
|
2014-05-31 10:31:20 -04:00
|
|
|
case argument
|
|
|
|
when ActiveModel::GlobalIdentification
|
2014-05-22 13:35:45 -04:00
|
|
|
argument.global_id
|
2014-05-31 10:31:20 -04:00
|
|
|
when *TYPE_WHITELIST
|
2014-05-22 13:35:45 -04:00
|
|
|
argument
|
2014-05-31 10:31:20 -04:00
|
|
|
when Array
|
|
|
|
serialize(argument)
|
2014-06-05 16:10:41 -04:00
|
|
|
when Hash
|
|
|
|
Hash[ argument.map { |key, value| [ serialize_hash_key(key), serialize_argument(value) ] } ]
|
2014-05-22 13:35:45 -04:00
|
|
|
else
|
|
|
|
raise "Unsupported argument type: #{argument.class.name}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-06-05 16:10:41 -04:00
|
|
|
def self.deserialize_argument(argument)
|
2014-05-31 10:31:20 -04:00
|
|
|
case argument
|
|
|
|
when Array
|
|
|
|
deserialize(argument)
|
|
|
|
when Hash
|
2014-06-05 16:10:41 -04:00
|
|
|
Hash[ argument.map { |key, value| [ key, deserialize_argument(value) ] } ].with_indifferent_access
|
2014-05-31 10:31:20 -04:00
|
|
|
else
|
|
|
|
ActiveModel::GlobalLocator.locate(argument) || argument
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.serialize_hash_key(key)
|
|
|
|
case key
|
|
|
|
when String, Symbol
|
|
|
|
key.to_s
|
|
|
|
else
|
|
|
|
raise "Unsupported hash key type: #{key.class.name}"
|
|
|
|
end
|
|
|
|
end
|
2014-05-22 13:35:45 -04:00
|
|
|
end
|
|
|
|
end
|