aboutsummaryrefslogblamecommitdiffstats
path: root/activerecord/lib/active_record/attribute_methods/read.rb
blob: 0f7bcba5641c3e17318b1e1857f4985a38a2ed77 (plain) (tree)
1
2
3
4
5
6
7
8
9

                             


                         

                                   
                                   
               
 

















                                                                                  
                                           
                                                 
                                                
 
                                                                                    
                                                                                              
 
                                                                                  
                                
                                              



                                                                                     
 



                                                      
             
         
 
                                                                                 
                                                                                
                                                       
                                           





                                                        


                                                                




                                                                                       


                                                                                              
                                                        





                                                                                 
         
 
                                       
                        


       
# frozen_string_literal: true

module ActiveRecord
  module AttributeMethods
    module Read
      extend ActiveSupport::Concern

      module ClassMethods # :nodoc:
        private

          # We want to generate the methods via module_eval rather than
          # define_method, because define_method is slower on dispatch.
          # Evaluating many similar methods may use more memory as the instruction
          # sequences are duplicated and cached (in MRI).  define_method may
          # be slower on dispatch, but if you're careful about the closure
          # created, then define_method will consume much less memory.
          #
          # 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 we first define with
          # the __temp__ identifier, and then use alias method to rename
          # it to what we want.
          #
          # We are also defining a constant to hold the frozen string of
          # the attribute name. Using a constant means that we do not have
          # to allocate an object on each call to the attribute method.
          # Making it frozen means that it doesn't get duped when used to
          # key the @attributes in read_attribute.
          def define_method_attribute(name)
            safe_name = name.unpack1("h*".freeze)
            temp_method = "__temp__#{safe_name}"

            ActiveRecord::AttributeMethods::AttrNames.set_name_cache safe_name, name
            sync_with_transaction_state = "sync_with_transaction_state" if name == primary_key

            generated_attribute_methods.module_eval <<-STR, __FILE__, __LINE__ + 1
              def #{temp_method}
                #{sync_with_transaction_state}
                name = ::ActiveRecord::AttributeMethods::AttrNames::ATTR_#{safe_name}
                _read_attribute(name) { |n| missing_attribute(n, caller) }
              end
            STR

            generated_attribute_methods.module_eval do
              alias_method name, temp_method
              undef_method temp_method
            end
          end
      end

      # Returns the value of the attribute identified by <tt>attr_name</tt> after
      # it has been typecast (for example, "2004-12-12" in a date column is cast
      # to a date object, like Date.new(2004, 12, 12)).
      def read_attribute(attr_name, &block)
        name = if self.class.attribute_alias?(attr_name)
          self.class.attribute_alias(attr_name).to_s
        else
          attr_name.to_s
        end

        primary_key = self.class.primary_key
        name = primary_key if name == "id".freeze && primary_key
        sync_with_transaction_state if name == primary_key
        _read_attribute(name, &block)
      end

      # This method exists to avoid the expensive primary_key check internally, without
      # breaking compatibility with the read_attribute API
      if defined?(JRUBY_VERSION)
        # This form is significantly faster on JRuby, and this is one of our biggest hotspots.
        # https://github.com/jruby/jruby/pull/2562
        def _read_attribute(attr_name, &block) # :nodoc:
          @attributes.fetch_value(attr_name.to_s, &block)
        end
      else
        def _read_attribute(attr_name) # :nodoc:
          @attributes.fetch_value(attr_name.to_s) { |n| yield n if block_given? }
        end
      end

      alias :attribute :_read_attribute
      private :attribute
    end
  end
end