提交 0581c1a9 编写于 作者: A Aaron Patterson

use fetch rather than both Hash#key? and Hash#[]

上级 148f849c
...@@ -58,66 +58,68 @@ def type_cast_attribute(attr_name, attributes, cache = {}) #:nodoc: ...@@ -58,66 +58,68 @@ def type_cast_attribute(attr_name, attributes, cache = {}) #:nodoc:
end end
protected protected
# We want to generate the methods via module_eval rather than define_method, # We want to generate the methods via module_eval rather than define_method,
# because define_method is slower on dispatch and uses more memory (because it # because define_method is slower on dispatch and uses more memory (because it
# creates a closure). # creates a closure).
# #
# But sometimes the database might return columns with characters that are not # But sometimes the database might return columns with characters that are not
# allowed in normal method names (like 'my_column(omg)'. So to work around this # allowed in normal method names (like 'my_column(omg)'. So to work around this
# we first define with the __temp__ identifier, and then use alias method to # we first define with the __temp__ identifier, and then use alias method to
# rename it to what we want. # rename it to what we want.
def define_method_attribute(attr_name) def define_method_attribute(attr_name)
cast_code = attribute_cast_code(attr_name) cast_code = attribute_cast_code(attr_name)
generated_attribute_methods.module_eval <<-STR, __FILE__, __LINE__ + 1 generated_attribute_methods.module_eval <<-STR, __FILE__, __LINE__ + 1
def __temp__ def __temp__
#{internal_attribute_access_code(attr_name, cast_code)} #{internal_attribute_access_code(attr_name, cast_code)}
end end
alias_method '#{attr_name}', :__temp__ alias_method '#{attr_name}', :__temp__
undef_method :__temp__ undef_method :__temp__
STR STR
generated_external_attribute_methods.module_eval <<-STR, __FILE__, __LINE__ + 1
def __temp__(v, attributes, attributes_cache, attr_name)
#{external_attribute_access_code(attr_name, cast_code)}
end
alias_method '#{attr_name}', :__temp__
undef_method :__temp__
STR
end
private generated_external_attribute_methods.module_eval <<-STR, __FILE__, __LINE__ + 1
def cacheable_column?(column) def __temp__(v, attributes, attributes_cache, attr_name)
attribute_types_cached_by_default.include?(column.type) #{external_attribute_access_code(attr_name, cast_code)}
end end
alias_method '#{attr_name}', :__temp__
undef_method :__temp__
STR
end
def internal_attribute_access_code(attr_name, cast_code) private
access_code = "(v=@attributes[attr_name]) && #{cast_code}" def cacheable_column?(column)
attribute_types_cached_by_default.include?(column.type)
end
unless attr_name == primary_key def internal_attribute_access_code(attr_name, cast_code)
access_code.insert(0, "missing_attribute(attr_name, caller) unless @attributes.has_key?(attr_name); ") if attr_name == primary_key
end access_code = "v = @attributes[attr_name];"
else
access_code = "v = @attributes.fetch(attr_name) { missing_attribute(attr_name, caller) };"
end
if cache_attribute?(attr_name) access_code << "v && #{cast_code};"
access_code = "@attributes_cache[attr_name] ||= (#{access_code})"
end
"attr_name = '#{attr_name}'; #{access_code}" if cache_attribute?(attr_name)
access_code = "@attributes_cache[attr_name] ||= (#{access_code})"
end end
def external_attribute_access_code(attr_name, cast_code) "attr_name = '#{attr_name}'; #{access_code}"
access_code = "v && #{cast_code}" end
if cache_attribute?(attr_name) def external_attribute_access_code(attr_name, cast_code)
access_code = "attributes_cache[attr_name] ||= (#{access_code})" access_code = "v && #{cast_code}"
end
access_code if cache_attribute?(attr_name)
access_code = "attributes_cache[attr_name] ||= (#{access_code})"
end end
def attribute_cast_code(attr_name) access_code
columns_hash[attr_name].type_cast_code('v') end
end
def attribute_cast_code(attr_name)
columns_hash[attr_name].type_cast_code('v')
end
end end
# Returns the value of the attribute identified by <tt>attr_name</tt> after it has been typecast (for example, # Returns the value of the attribute identified by <tt>attr_name</tt> after it has been typecast (for example,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册