Sha256: c941b0f7a1afdedd62e56508fbe15ed6659041ea3776b84db164a50a7b3a577c

Contents?: true

Size: 1.54 KB

Versions: 26

Compression:

Stored size: 1.54 KB

Contents

# frozen_string_literal: true

module ActiveRecord
  module AttributeMethods
    module Read
      extend ActiveSupport::Concern

      module ClassMethods # :nodoc:
        private
          def define_method_attribute(name, owner:)
            ActiveModel::AttributeMethods::AttrNames.define_attribute_accessor_method(
              owner, name
            ) do |temp_method_name, attr_name_expr|
              owner.define_cached_method(name, as: temp_method_name, namespace: :active_record) do |batch|
                batch <<
                  "def #{temp_method_name}" <<
                  "  _read_attribute(#{attr_name_expr}) { |n| missing_attribute(n, caller) }" <<
                  "end"
              end
            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 = attr_name.to_s
        name = self.class.attribute_aliases[name] || name

        name = @primary_key if name == "id" && @primary_key
        @attributes.fetch_value(name, &block)
      end

      # This method exists to avoid the expensive primary_key check internally, without
      # breaking compatibility with the read_attribute API
      def _read_attribute(attr_name, &block) # :nodoc:
        @attributes.fetch_value(attr_name, &block)
      end

      alias :attribute :_read_attribute
      private :attribute
    end
  end
end

Version data entries

26 entries across 24 versions & 3 rubygems

Version Path
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/activerecord-7.0.3.1/lib/active_record/attribute_methods/read.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/activerecord-7.0.2.3/lib/active_record/attribute_methods/read.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/activerecord-7.0.3.1/lib/active_record/attribute_methods/read.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/activerecord-7.0.2.3/lib/active_record/attribute_methods/read.rb
rubypitaya-3.12.5 ./lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activerecord-7.0.4/lib/active_record/attribute_methods/read.rb
activerecord-7.0.4.3 lib/active_record/attribute_methods/read.rb
rubypitaya-3.12.4 ./lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activerecord-7.0.4/lib/active_record/attribute_methods/read.rb
activerecord-7.0.4.2 lib/active_record/attribute_methods/read.rb
rubypitaya-3.12.3 ./lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activerecord-7.0.4/lib/active_record/attribute_methods/read.rb
activerecord-7.0.4.1 lib/active_record/attribute_methods/read.rb
rubypitaya-3.12.2 ./lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activerecord-7.0.4/lib/active_record/attribute_methods/read.rb
activerecord-7.0.4 lib/active_record/attribute_methods/read.rb
activerecord-7.0.3.1 lib/active_record/attribute_methods/read.rb
activerecord-7.0.3 lib/active_record/attribute_methods/read.rb
activerecord-7.0.2.4 lib/active_record/attribute_methods/read.rb
activerecord-7.0.2.3 lib/active_record/attribute_methods/read.rb
activerecord-7.0.2.2 lib/active_record/attribute_methods/read.rb
activerecord-7.0.2.1 lib/active_record/attribute_methods/read.rb
activerecord-7.0.2 lib/active_record/attribute_methods/read.rb
activerecord-7.0.1 lib/active_record/attribute_methods/read.rb