blob: 66fcaf69458b86cd625bceb0d3b865b8d74fb885 (
plain) (
tree)
|
|
require 'active_record/attribute_set/builder'
module ActiveRecord
class AttributeSet # :nodoc:
def initialize(attributes)
@attributes = attributes
end
def [](name)
attributes[name] || Attribute.null(name)
end
def values_before_type_cast
attributes.transform_values(&:value_before_type_cast)
end
def to_hash
initialized_attributes.transform_values(&:value)
end
alias_method :to_h, :to_hash
def key?(name)
attributes.key?(name) && self[name].initialized?
end
def keys
attributes.initialized_keys
end
def fetch_value(name)
self[name].value { |n| yield n if block_given? }
end
def write_from_database(name, value)
attributes[name] = self[name].with_value_from_database(value)
end
def write_from_user(name, value)
attributes[name] = self[name].with_value_from_user(value)
end
def write_cast_value(name, value)
attributes[name] = self[name].with_cast_value(value)
end
def freeze
@attributes.freeze
super
end
def initialize_dup(_)
@attributes = attributes.dup
super
end
def initialize_clone(_)
@attributes = attributes.clone
super
end
def reset(key)
if key?(key)
write_from_database(key, nil)
end
end
protected
attr_reader :attributes
private
def initialized_attributes
attributes.select { |_, attr| attr.initialized? }
end
end
end
|