Sha256: 2ef440bbb942d12054a6c54d110cec382187c56d823a5878639807270331329a
Contents?: true
Size: 1.25 KB
Versions: 53
Compression:
Stored size: 1.25 KB
Contents
require 'algebrick/serializer' module Dynflow def self.serializer @serializer ||= Serializer.new end class Serializer < Algebrick::Serializer ARBITRARY_TYPE_KEY = :class MARSHAL_KEY = :marshaled protected def parse_other(other, options = {}) if Hash === other if (marshal_value = other[MARSHAL_KEY] || other[MARSHAL_KEY.to_s]) return Marshal.load(Base64.strict_decode64(marshal_value)) end if (type_name = other[ARBITRARY_TYPE_KEY] || other[ARBITRARY_TYPE_KEY.to_s]) type = Utils.constantize(type_name) rescue nil if type && type.respond_to?(:from_hash) return type.from_hash other end end end return other end def generate_other(object, options = {}) hash = case when object.respond_to?(:to_h) object.to_h when object.respond_to?(:to_hash) object.to_hash else { ARBITRARY_TYPE_KEY => object.class.to_s, MARSHAL_KEY => Base64.strict_encode64(Marshal.dump(object)) } end raise "Missing #{ARBITRARY_TYPE_KEY} key in #{hash.inspect}" unless hash.key?(ARBITRARY_TYPE_KEY) hash end end end
Version data entries
53 entries across 53 versions & 1 rubygems