2011-02-28 16:00:41 +01:00
|
|
|
#
|
|
|
|
# Wrapper around Hash so that the casted_by attribute is set.
|
|
|
|
|
|
|
|
module CouchRest::Model
|
|
|
|
class CastedHash < Hash
|
2011-04-20 16:44:49 +02:00
|
|
|
include CouchRest::Model::CastedBy
|
2011-02-28 16:00:41 +01:00
|
|
|
include CouchRest::Model::Dirty
|
2011-04-20 16:44:49 +02:00
|
|
|
attr_accessor :casted_by_property
|
|
|
|
|
|
|
|
def self.[](hash, property, parent = nil)
|
|
|
|
obj = super(hash)
|
|
|
|
obj.casted_by_property = property
|
|
|
|
obj.casted_by = parent unless parent.nil?
|
|
|
|
obj
|
|
|
|
end
|
2011-02-28 16:00:41 +01:00
|
|
|
|
|
|
|
# needed for dirty
|
|
|
|
def attributes
|
|
|
|
self
|
|
|
|
end
|
|
|
|
|
2011-03-03 13:52:19 +01:00
|
|
|
def []= key, obj
|
|
|
|
couchrest_attribute_will_change!(key) if use_dirty? && obj != self[key]
|
|
|
|
super(key, obj)
|
|
|
|
end
|
|
|
|
|
|
|
|
def delete(key)
|
|
|
|
couchrest_attribute_will_change!(key) if use_dirty? && include?(key)
|
|
|
|
super(key)
|
|
|
|
end
|
|
|
|
|
|
|
|
def merge!(other_hash)
|
|
|
|
if use_dirty? && other_hash && other_hash.kind_of?(Hash)
|
|
|
|
other_hash.keys.each do |key|
|
|
|
|
if self[key] != other_hash[key] || !include?(key)
|
|
|
|
couchrest_attribute_will_change!(key)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
super(other_hash)
|
|
|
|
end
|
|
|
|
|
|
|
|
def replace(other_hash)
|
|
|
|
if use_dirty? && other_hash && other_hash.kind_of?(Hash)
|
|
|
|
# new keys and changed keys
|
|
|
|
other_hash.keys.each do |key|
|
|
|
|
if self[key] != other_hash[key] || !include?(key)
|
|
|
|
couchrest_attribute_will_change!(key)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
# old keys
|
|
|
|
old_keys = self.keys.reject { |key| other_hash.include?(key) }
|
|
|
|
old_keys.each { |key| couchrest_attribute_will_change!(key) }
|
|
|
|
end
|
|
|
|
|
|
|
|
super(other_hash)
|
|
|
|
end
|
|
|
|
|
|
|
|
def clear
|
|
|
|
self.keys.each { |key| couchrest_attribute_will_change!(key) } if use_dirty?
|
|
|
|
super
|
|
|
|
end
|
|
|
|
|
|
|
|
def delete_if
|
|
|
|
if use_dirty? && block_given?
|
|
|
|
self.keys.each do |key|
|
|
|
|
couchrest_attribute_will_change!(key) if yield key, self[key]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
super
|
|
|
|
end
|
|
|
|
|
2011-03-06 00:28:54 +01:00
|
|
|
# ruby 1.9
|
2011-03-03 13:52:19 +01:00
|
|
|
def keep_if
|
|
|
|
if use_dirty? && block_given?
|
|
|
|
self.keys.each do |key|
|
|
|
|
couchrest_attribute_will_change!(key) if !yield key, self[key]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
super
|
|
|
|
end
|
|
|
|
|
2011-02-28 16:00:41 +01:00
|
|
|
end
|
|
|
|
end
|