association_collection.rb 18.3 KB
Newer Older
1
require 'set'
2
require 'active_support/core_ext/array/wrap'
3

D
Initial  
David Heinemeier Hansson 已提交
4 5
module ActiveRecord
  module Associations
6 7
    # = Active Record Association Collection
    #
P
Pratik Naik 已提交
8 9 10 11 12 13 14 15 16
    # AssociationCollection is an abstract class that provides common stuff to
    # ease the implementation of association proxies that represent
    # collections. See the class hierarchy in AssociationProxy.
    #
    # You need to be careful with assumptions regarding the target: The proxy
    # does not fetch records from the database until it needs them, but new
    # ones created with +build+ are added to the target. So, the target may be
    # non-empty and still lack children waiting to be read from the database.
    # If you look directly to the database you cannot assume that's the entire
P
Pratik Naik 已提交
17
    # collection because new records may have been added to the target, etc.
P
Pratik Naik 已提交
18 19 20
    #
    # If you need to work on all current children, new and existing records,
    # +load_target+ and the +loaded+ flag are your friends.
21
    class AssociationCollection < AssociationProxy #:nodoc:
22 23 24 25
      def initialize(owner, reflection)
        super
        construct_sql
      end
26

27
      delegate :group, :order, :limit, :joins, :where, :preload, :eager_load, :includes, :from, :lock, :readonly, :having, :to => :scoped
28

29
      def select(select = nil)
30 31
        if block_given?
          load_target
32
          @target.select.each { |e| yield e }
33 34 35 36 37 38 39 40 41
        else
          scoped.select(select)
        end
      end

      def scoped
        with_scope(construct_scope) { @reflection.klass.scoped }
      end

42 43 44 45 46 47
      def find(*args)
        options = args.extract_options!

        # If using a custom finder_sql, scan the entire collection.
        if @reflection.options[:finder_sql]
          expects_array = args.first.kind_of?(Array)
48
          ids           = args.flatten.compact.uniq.map { |arg| arg.to_i }
49 50 51 52 53 54 55 56 57

          if ids.size == 1
            id = ids.first
            record = load_target.detect { |r| id == r.id }
            expects_array ? [ record ] : record
          else
            load_target.select { |r| ids.include?(r.id) }
          end
        else
58 59 60 61
          merge_options_from_reflection!(options)
          construct_find_options!(options)

          find_scope = construct_scope[:find].slice(:conditions, :order)
62

63
          with_scope(:find => find_scope) do
64
            relation = @reflection.klass.send(:construct_finder_arel, options, @reflection.klass.send(:current_scoped_methods))
65 66

            case args.first
67
            when :first, :last
68
              relation.send(args.first)
69 70 71
            when :all
              records = relation.all
              @reflection.options[:uniq] ? uniq(records) : records
72 73 74
            else
              relation.find(*args)
            end
75 76 77
          end
        end
      end
78

P
Pratik Naik 已提交
79
      # Fetches the first one using SQL if possible.
80
      def first(*args)
81
        if fetch_first_or_last_using_find?(args)
82 83 84 85 86 87 88
          find(:first, *args)
        else
          load_target unless loaded?
          @target.first(*args)
        end
      end

P
Pratik Naik 已提交
89
      # Fetches the last one using SQL if possible.
90
      def last(*args)
91
        if fetch_first_or_last_using_find?(args)
92 93 94 95 96 97 98
          find(:last, *args)
        else
          load_target unless loaded?
          @target.last(*args)
        end
      end

D
Initial  
David Heinemeier Hansson 已提交
99
      def to_ary
100
        load_target
101 102 103
        if @target.is_a?(Array)
          @target.to_ary
        else
104
          Array.wrap(@target)
105
        end
D
Initial  
David Heinemeier Hansson 已提交
106
      end
107
      alias_method :to_a, :to_ary
108

109
      def reset
110
        reset_target!
111
        reset_named_scopes_cache!
112
        @loaded = false
D
Initial  
David Heinemeier Hansson 已提交
113 114
      end

115
      def build(attributes = {}, &block)
116
        if attributes.is_a?(Array)
117
          attributes.collect { |attr| build(attr, &block) }
118
        else
119 120 121 122
          build_record(attributes) do |record|
            block.call(record) if block_given?
            set_belongs_to_association_for(record)
          end
123 124 125
        end
      end

126
      # Add +records+ to this association.  Returns +self+ so method calls may be chained.
D
Initial  
David Heinemeier Hansson 已提交
127 128
      # Since << flattens its argument list and inserts each record, +push+ and +concat+ behave identically.
      def <<(*records)
129
        result = true
130
        load_target if @owner.new_record?
131

132
        transaction do
133 134
          flatten_deeper(records).each do |record|
            raise_on_type_mismatch(record)
135 136 137
            add_record_to_target_with_callbacks(record) do |r|
              result &&= insert_record(record) unless @owner.new_record?
            end
138
          end
D
Initial  
David Heinemeier Hansson 已提交
139
        end
140

141
        result && self
D
Initial  
David Heinemeier Hansson 已提交
142 143 144 145
      end

      alias_method :push, :<<
      alias_method :concat, :<<
146

147 148 149 150 151 152
      # Starts a transaction in the association class's database connection.
      #
      #   class Author < ActiveRecord::Base
      #     has_many :books
      #   end
      #
153
      #   Author.first.books.transaction do
154 155 156 157 158 159 160 161
      #     # same effect as calling Book.transaction
      #   end
      def transaction(*args)
        @reflection.klass.transaction(*args) do
          yield
        end
      end

162
      # Remove all records from this association
P
Pratik Naik 已提交
163 164
      #
      # See delete for more info.
165
      def delete_all
166
        load_target
167
        delete(@target)
168
        reset_target!
169
        reset_named_scopes_cache!
170
      end
171

172
      # Calculate sum using SQL, not Enumerable
173 174 175 176 177 178
      def sum(*args)
        if block_given?
          calculate(:sum, *args) { |*block_args| yield(*block_args) }
        else
          calculate(:sum, *args)
        end
179 180
      end

181 182 183 184
      # Count all records using SQL. If the +:counter_sql+ option is set for the association, it will
      # be used for the query. If no +:counter_sql+ was supplied, but +:finder_sql+ was set, the
      # descendant's +construct_sql+ method will have set :counter_sql automatically.
      # Otherwise, construct options and pass them with scope to the target class's +count+.
185
      def count(column_name = nil, options = {})
186 187 188
        if @reflection.options[:counter_sql]
          @reflection.klass.count_by_sql(@counter_sql)
        else
189 190
          column_name, options = nil, column_name if column_name.is_a?(Hash)

191 192
          if @reflection.options[:uniq]
            # This is needed because 'SELECT count(DISTINCT *)..' is not valid SQL.
193
            column_name = "#{@reflection.quoted_table_name}.#{@reflection.klass.primary_key}" unless column_name
194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
            options.merge!(:distinct => true)
          end

          value = @reflection.klass.send(:with_scope, construct_scope) { @reflection.klass.count(column_name, options) }

          limit  = @reflection.options[:limit]
          offset = @reflection.options[:offset]

          if limit || offset
            [ [value - offset.to_i, 0].max, limit.to_i ].min
          else
            value
          end
        end
      end

210 211 212 213 214 215 216
      # Removes +records+ from this association calling +before_remove+ and
      # +after_remove+ callbacks.
      #
      # This method is abstract in the sense that +delete_records+ has to be
      # provided by descendants. Note this method does not imply the records
      # are actually removed from the database, that depends precisely on
      # +delete_records+. They are in any case removed from the collection.
D
Initial  
David Heinemeier Hansson 已提交
217
      def delete(*records)
218
        remove_records(records) do |records, old_records|
219
          delete_records(old_records) if old_records.any?
220
          records.each { |record| @target.delete(record) }
221
        end
D
Initial  
David Heinemeier Hansson 已提交
222
      end
223

P
Pratik Naik 已提交
224 225
      # Destroy +records+ and remove them from this association calling
      # +before_remove+ and +after_remove+ callbacks.
226
      #
P
Pratik Naik 已提交
227 228
      # Note that this method will _always_ remove records from the database
      # ignoring the +:dependent+ option.
229
      def destroy(*records)
230
        records = find(records) if records.any? {|record| record.kind_of?(Fixnum) || record.kind_of?(String)}
231 232 233 234 235 236 237
        remove_records(records) do |records, old_records|
          old_records.each { |record| record.destroy }
        end

        load_target
      end

238 239
      # Removes all records from this association.  Returns +self+ so method calls may be chained.
      def clear
240
        return self if length.zero? # forces load_target if it hasn't happened already
241

242
        if @reflection.options[:dependent] && @reflection.options[:dependent] == :destroy
243
          destroy_all
244
        else
245 246
          delete_all
        end
247

248 249
        self
      end
250

P
Pratik Naik 已提交
251
      # Destroy all the records from this association.
P
Pratik Naik 已提交
252 253
      #
      # See destroy for more info.
254 255
      def destroy_all
        load_target
256 257 258 259
        destroy(@target).tap do
          reset_target!
          reset_named_scopes_cache!
        end
D
Initial  
David Heinemeier Hansson 已提交
260
      end
261

262
      def create(attrs = {})
263 264 265
        if attrs.is_a?(Array)
          attrs.collect { |attr| create(attr) }
        else
266 267 268 269
          create_record(attrs) do |record|
            yield(record) if block_given?
            record.save
          end
270
        end
271 272
      end

273
      def create!(attrs = {})
274 275 276 277
        create_record(attrs) do |record|
          yield(record) if block_given?
          record.save!
        end
278 279
      end

P
Pratik Naik 已提交
280 281 282 283 284 285 286 287 288 289
      # Returns the size of the collection by executing a SELECT COUNT(*)
      # query if the collection hasn't been loaded, and calling
      # <tt>collection.size</tt> if it has.
      #
      # If the collection has been already loaded +size+ and +length+ are
      # equivalent. If not and you are going to need the records anyway
      # +length+ will take one less query. Otherwise +size+ is more efficient.
      #
      # This method is abstract in the sense that it relies on
      # +count_records+, which is a method descendants have to provide.
D
Initial  
David Heinemeier Hansson 已提交
290
      def size
291
        if @owner.new_record? || (loaded? && !@reflection.options[:uniq])
292
          @target.size
293 294
        elsif !loaded? && @reflection.options[:group]
          load_target.size
295
        elsif !loaded? && !@reflection.options[:uniq] && @target.is_a?(Array)
296
          unsaved_records = @target.select { |r| r.new_record? }
D
David Heinemeier Hansson 已提交
297
          unsaved_records.size + count_records
298 299 300
        else
          count_records
        end
D
Initial  
David Heinemeier Hansson 已提交
301
      end
302

P
Pratik Naik 已提交
303 304 305 306 307
      # Returns the size of the collection calling +size+ on the target.
      #
      # If the collection has been already loaded +length+ and +size+ are
      # equivalent. If not and you are going to need the records anyway this
      # method will take one less query. Otherwise +size+ is more efficient.
308
      def length
309
        load_target.size
310
      end
311

P
Pratik Naik 已提交
312 313 314
      # Equivalent to <tt>collection.size.zero?</tt>. If the collection has
      # not been already loaded and you are going to fetch the records anyway
      # it is better to check <tt>collection.length.zero?</tt>.
D
Initial  
David Heinemeier Hansson 已提交
315
      def empty?
316
        size.zero?
D
Initial  
David Heinemeier Hansson 已提交
317
      end
318

319
      def any?
320
        if block_given?
321
          method_missing(:any?) { |*block_args| yield(*block_args) }
322 323 324
        else
          !empty?
        end
325
      end
326

327 328 329 330 331 332 333 334 335
      # Returns true if the collection has more than 1 record. Equivalent to collection.size > 1.
      def many?
        if block_given?
          method_missing(:many?) { |*block_args| yield(*block_args) }
        else
          size > 1
        end
      end

D
Initial  
David Heinemeier Hansson 已提交
336
      def uniq(collection = self)
337 338 339 340 341 342 343 344
        seen = Set.new
        collection.inject([]) do |kept, record|
          unless seen.include?(record.id)
            kept << record
            seen << record.id
          end
          kept
        end
D
Initial  
David Heinemeier Hansson 已提交
345 346
      end

347 348
      # Replace this collection with +other_array+
      # This will perform a diff and delete/add only records that have changed.
349
      def replace(other_array)
350 351 352 353 354
        other_array.each { |val| raise_on_type_mismatch(val) }

        load_target
        other   = other_array.size < 100 ? other_array : other_array.to_set
        current = @target.size < 100 ? @target : @target.to_set
355

356
        transaction do
357 358 359
          delete(@target.select { |v| !other.include?(v) })
          concat(other_array.select { |v| !current.include?(v) })
        end
360
      end
D
Initial  
David Heinemeier Hansson 已提交
361

362 363
      def include?(record)
        return false unless record.is_a?(@reflection.klass)
364
        load_target if @reflection.options[:finder_sql] && !loaded?
365 366 367
        return @target.include?(record) if loaded?
        exists?(record)
      end
368

369 370
      def proxy_respond_to?(method, include_private = false)
        super || @reflection.klass.respond_to?(method, include_private)
371 372
      end

373
      protected
374 375
        def construct_find_options!(options)
        end
376 377 378 379 380 381 382 383 384 385 386 387 388

        def construct_counter_sql
          if @reflection.options[:counter_sql]
            @counter_sql = interpolate_sql(@reflection.options[:counter_sql])
          elsif @reflection.options[:finder_sql]
            # replace the SELECT clause with COUNT(*), preserving any hints within /* ... */
            @reflection.options[:counter_sql] = @reflection.options[:finder_sql].sub(/SELECT\b(\/\*.*?\*\/ )?(.*)\bFROM\b/im) { "SELECT #{$1}COUNT(*) FROM" }
            @counter_sql = interpolate_sql(@reflection.options[:counter_sql])
          else
            @counter_sql = @finder_sql
          end
        end

389 390 391 392 393
        def load_target
          if !@owner.new_record? || foreign_key_present
            begin
              if !loaded?
                if @target.is_a?(Array) && @target.any?
394 395 396
                  @target = find_target.map do |f|
                    i = @target.index(f)
                    t = @target.delete_at(i) if i
397 398 399 400 401 402
                    if t && t.changed?
                      t
                    else
                      f.mark_for_destruction if t && t.marked_for_destruction?
                      f
                    end
403
                  end + @target
404 405 406 407 408 409 410 411 412 413 414 415
                else
                  @target = find_target
                end
              end
            rescue ActiveRecord::RecordNotFound
              reset
            end
          end

          loaded if target
          target
        end
416

417
        def method_missing(method, *args)
418 419 420 421 422 423 424 425 426 427 428
          case method.to_s
          when 'find_or_create'
            return find(:first, :conditions => args.first) || create(args.first)
          when /^find_or_create_by_(.*)$/
            rest = $1
            return  send("find_by_#{rest}", *args) ||
                    method_missing("create_by_#{rest}", *args)
          when /^create_by_(.*)$/
            return create Hash[$1.split('_and_').zip(args)]
          end

429
          if @target.respond_to?(method) || (!@reflection.klass.respond_to?(method) && Class.respond_to?(method))
430 431 432 433 434
            if block_given?
              super { |*block_args| yield(*block_args) }
            else
              super
            end
435
          elsif @reflection.klass.scopes[method]
436
            @_named_scopes_cache ||= {}
437 438
            @_named_scopes_cache[method] ||= {}
            @_named_scopes_cache[method][args] ||= with_scope(construct_scope) { @reflection.klass.send(method, *args) }
439
          else
440
            with_scope(construct_scope) do
441 442 443 444 445 446
              if block_given?
                @reflection.klass.send(method, *args) { |*block_args| yield(*block_args) }
              else
                @reflection.klass.send(method, *args)
              end
            end
447 448 449 450 451 452 453 454
          end
        end

        # overloaded in derived Association classes to provide useful scoping depending on association type.
        def construct_scope
          {}
        end

455 456 457 458
        def reset_target!
          @target = Array.new
        end

459 460 461 462
        def reset_named_scopes_cache!
          @_named_scopes_cache = {}
        end

463 464 465 466 467 468 469 470
        def find_target
          records =
            if @reflection.options[:finder_sql]
              @reflection.klass.find_by_sql(@finder_sql)
            else
              find(:all)
            end

471 472 473 474 475
          records = @reflection.options[:uniq] ? uniq(records) : records
          records.each do |record|
            set_inverse_instance(record, @owner)
          end
          records
476 477
        end

478 479 480 481 482 483 484 485 486 487
        def add_record_to_target_with_callbacks(record)
          callback(:before_add, record)
          yield(record) if block_given?
          @target ||= [] unless loaded?
          @target << record unless @reflection.options[:uniq] && @target.include?(record)
          callback(:after_add, record)
          set_inverse_instance(record, @owner)
          record
        end

D
Initial  
David Heinemeier Hansson 已提交
488
      private
489
        def create_record(attrs)
490
          attrs.update(@reflection.options[:conditions]) if @reflection.options[:conditions].is_a?(Hash)
491
          ensure_owner_is_not_new
492 493 494
          record = @reflection.klass.send(:with_scope, :create => construct_scope[:create]) do
            @reflection.build_association(attrs)
          end
495 496 497 498 499
          if block_given?
            add_record_to_target_with_callbacks(record) { |*block_args| yield(*block_args) }
          else
            add_record_to_target_with_callbacks(record)
          end
500 501
        end

502
        def build_record(attrs)
503
          attrs.update(@reflection.options[:conditions]) if @reflection.options[:conditions].is_a?(Hash)
504
          record = @reflection.build_association(attrs)
505 506 507 508 509
          if block_given?
            add_record_to_target_with_callbacks(record) { |*block_args| yield(*block_args) }
          else
            add_record_to_target_with_callbacks(record)
          end
510 511
        end

512 513 514 515 516 517 518 519 520 521 522 523
        def remove_records(*records)
          records = flatten_deeper(records)
          records.each { |record| raise_on_type_mismatch(record) }

          transaction do
            records.each { |record| callback(:before_remove, record) }
            old_records = records.reject { |r| r.new_record? }
            yield(records, old_records)
            records.each { |record| callback(:after_remove, record) }
          end
        end

524 525
        def callback(method, record)
          callbacks_for(method).each do |callback|
526 527 528 529 530 531 532 533
            case callback
            when Symbol
              @owner.send(callback, record)
            when Proc
              callback.call(@owner, record)
            else
              callback.send(method, @owner, record)
            end
534 535
          end
        end
536

537
        def callbacks_for(callback_name)
538 539
          full_callback_name = "#{callback_name}_for_#{@reflection.name}"
          @owner.class.read_inheritable_attribute(full_callback_name.to_sym) || []
540 541
        end

542 543 544 545 546
        def ensure_owner_is_not_new
          if @owner.new_record?
            raise ActiveRecord::RecordNotSaved, "You cannot call create unless the parent is saved"
          end
        end
547 548

        def fetch_first_or_last_using_find?(args)
549 550
          args.first.kind_of?(Hash) || !(loaded? || @owner.new_record? || @reflection.options[:finder_sql] ||
                                         @target.any? { |record| record.new_record? } || args.first.kind_of?(Integer))
551
        end
D
Initial  
David Heinemeier Hansson 已提交
552 553
    end
  end
554
end