Sha256: d41a47791489bea45f549327bf932aba67ca6472637aff185e287f993577a795

Contents?: true

Size: 1.54 KB

Versions: 4

Compression:

Stored size: 1.54 KB

Contents

module ActiveRecord
  module Associations
    class SingularAssociation < Association #:nodoc:
      # Implements the reader method, e.g. foo.bar for Foo.has_one :bar
      def reader(force_reload = false)
        if force_reload
          klass.uncached { reload }
        elsif !loaded? || stale_target?
          reload
        end

        target
      end

      # Implements the writer method, e.g. foo.items= for Foo.has_many :items
      def writer(record)
        replace(record)
      end

      def create(attributes = {}, options = {}, &block)
        build(attributes, options, &block).tap { |record| record.save }
      end

      def create!(attributes = {}, options = {}, &block)
        build(attributes, options, &block).tap { |record| record.save! }
      end

      def build(attributes = {}, options = {})
        record = reflection.build_association(attributes, options)
        record.assign_attributes(create_scope.except(*record.changed), :without_protection => true)
        yield(record) if block_given?
        set_new_record(record)
        record
      end

      private

        def create_scope
          scoped.scope_for_create.stringify_keys.except(klass.primary_key)
        end

        def find_target
          scoped.first.tap { |record| set_inverse_instance(record) }
        end

        # Implemented by subclasses
        def replace(record)
          raise NotImplementedError, "Subclasses must implement a replace(record) method"
        end

        def set_new_record(record)
          replace(record)
        end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
activerecord-3.1.0.rc4 lib/active_record/associations/singular_association.rb
activerecord-3.1.0.rc3 lib/active_record/associations/singular_association.rb
activerecord-3.1.0.rc2 lib/active_record/associations/singular_association.rb
activerecord-3.1.0.rc1 lib/active_record/associations/singular_association.rb