association_collection.rb 15.5 KB
Newer Older
1 2
require 'set'

D
Initial  
David Heinemeier Hansson 已提交
3 4
module ActiveRecord
  module Associations
P
Pratik Naik 已提交
5 6 7 8 9 10 11 12 13 14 15 16 17
    # 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
    # collection because new records may have beed added to the target, etc.
    #
    # If you need to work on all current children, new and existing records,
    # +load_target+ and the +loaded+ flag are your friends.
18
    class AssociationCollection < AssociationProxy #:nodoc:
19 20 21 22 23 24 25 26 27 28 29
      def initialize(owner, reflection)
        super
        construct_sql
      end
      
      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)
30
          ids           = args.flatten.compact.uniq.map { |arg| arg.to_i }
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62

          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
          conditions = "#{@finder_sql}"
          if sanitized_conditions = sanitize_sql(options[:conditions])
            conditions << " AND (#{sanitized_conditions})"
          end
          
          options[:conditions] = conditions

          if options[:order] && @reflection.options[:order]
            options[:order] = "#{options[:order]}, #{@reflection.options[:order]}"
          elsif @reflection.options[:order]
            options[:order] = @reflection.options[:order]
          end
          
          # Build options specific to association
          construct_find_options!(options)
          
          merge_options_from_reflection!(options)
          
          # Pass through args exactly as we received them.
          args << options
          @reflection.klass.find(*args)
        end
      end
63

P
Pratik Naik 已提交
64
      # Fetches the first one using SQL if possible.
65
      def first(*args)
66
        if fetch_first_or_last_using_find?(args)
67 68 69 70 71 72 73
          find(:first, *args)
        else
          load_target unless loaded?
          @target.first(*args)
        end
      end

P
Pratik Naik 已提交
74
      # Fetches the last one using SQL if possible.
75
      def last(*args)
76
        if fetch_first_or_last_using_find?(args)
77 78 79 80 81 82 83
          find(:last, *args)
        else
          load_target unless loaded?
          @target.last(*args)
        end
      end

D
Initial  
David Heinemeier Hansson 已提交
84
      def to_ary
85
        load_target
86 87 88 89 90
        if @target.is_a?(Array)
          @target.to_ary
        else
          Array(@target)
        end
D
Initial  
David Heinemeier Hansson 已提交
91
      end
92

93
      def reset
94
        reset_target!
95
        @loaded = false
D
Initial  
David Heinemeier Hansson 已提交
96 97
      end

98
      def build(attributes = {}, &block)
99
        if attributes.is_a?(Array)
100
          attributes.collect { |attr| build(attr, &block) }
101
        else
102 103 104 105
          build_record(attributes) do |record|
            block.call(record) if block_given?
            set_belongs_to_association_for(record)
          end
106 107 108
        end
      end

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

115
        transaction do
116 117
          flatten_deeper(records).each do |record|
            raise_on_type_mismatch(record)
118 119 120
            add_record_to_target_with_callbacks(record) do |r|
              result &&= insert_record(record) unless @owner.new_record?
            end
121
          end
D
Initial  
David Heinemeier Hansson 已提交
122
        end
123

124
        result && self
D
Initial  
David Heinemeier Hansson 已提交
125 126 127 128
      end

      alias_method :push, :<<
      alias_method :concat, :<<
129

130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
      # Starts a transaction in the association class's database connection.
      #
      #   class Author < ActiveRecord::Base
      #     has_many :books
      #   end
      #
      #   Author.find(:first).books.transaction do
      #     # same effect as calling Book.transaction
      #   end
      def transaction(*args)
        @reflection.klass.transaction(*args) do
          yield
        end
      end

145 146
      # Remove all records from this association
      def delete_all
147
        load_target
148
        delete(@target)
149
        reset_target!
150
      end
151
      
152
      # Calculate sum using SQL, not Enumerable
153 154 155 156 157 158
      def sum(*args)
        if block_given?
          calculate(:sum, *args) { |*block_args| yield(*block_args) }
        else
          calculate(:sum, *args)
        end
159 160
      end

161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188
      # 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+.
      def count(*args)
        if @reflection.options[:counter_sql]
          @reflection.klass.count_by_sql(@counter_sql)
        else
          column_name, options = @reflection.klass.send(:construct_count_options_from_args, *args)
          if @reflection.options[:uniq]
            # This is needed because 'SELECT count(DISTINCT *)..' is not valid SQL.
            column_name = "#{@reflection.quoted_table_name}.#{@reflection.klass.primary_key}" if column_name == :all
            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

189 190 191 192 193 194 195
      # 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 已提交
196
      def delete(*records)
197
        remove_records(records) do |records, old_records|
198
          delete_records(old_records) if old_records.any?
199
          records.each { |record| @target.delete(record) }
200
        end
D
Initial  
David Heinemeier Hansson 已提交
201
      end
202

203 204 205 206 207 208 209 210 211 212 213 214 215
      # Destroy +records+ and remove from this association calling +before_remove+
      # and +after_remove+ callbacks.
      #
      # Note this method will always remove records from database ignoring the
      # +:dependent+ option.
      def destroy(*records)
        remove_records(records) do |records, old_records|
          old_records.each { |record| record.destroy }
        end

        load_target
      end

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

220
        if @reflection.options[:dependent] && @reflection.options[:dependent] == :destroy
221 222 223 224
          destroy_all
        else          
          delete_all
        end
225

226 227
        self
      end
228

229 230 231 232
      # Destory all the records from this association
      def destroy_all
        load_target
        destroy(@target)
233
        reset_target!
D
Initial  
David Heinemeier Hansson 已提交
234
      end
235

236
      def create(attrs = {})
237 238 239
        if attrs.is_a?(Array)
          attrs.collect { |attr| create(attr) }
        else
240 241 242 243
          create_record(attrs) do |record|
            yield(record) if block_given?
            record.save
          end
244
        end
245 246
      end

247
      def create!(attrs = {})
248 249 250 251
        create_record(attrs) do |record|
          yield(record) if block_given?
          record.save!
        end
252 253
      end

P
Pratik Naik 已提交
254 255 256 257 258 259 260 261 262 263
      # 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 已提交
264
      def size
265
        if @owner.new_record? || (loaded? && !@reflection.options[:uniq])
266
          @target.size
267 268
        elsif !loaded? && @reflection.options[:group]
          load_target.size
269
        elsif !loaded? && !@reflection.options[:uniq] && @target.is_a?(Array)
270
          unsaved_records = @target.select { |r| r.new_record? }
D
David Heinemeier Hansson 已提交
271
          unsaved_records.size + count_records
272 273 274
        else
          count_records
        end
D
Initial  
David Heinemeier Hansson 已提交
275
      end
276

P
Pratik Naik 已提交
277 278 279 280 281
      # 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.
282
      def length
283
        load_target.size
284
      end
285

P
Pratik Naik 已提交
286 287 288
      # 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 已提交
289
      def empty?
290
        size.zero?
D
Initial  
David Heinemeier Hansson 已提交
291
      end
292

293
      def any?
294
        if block_given?
295
          method_missing(:any?) { |*block_args| yield(*block_args) }
296 297 298
        else
          !empty?
        end
299
      end
300

D
Initial  
David Heinemeier Hansson 已提交
301
      def uniq(collection = self)
302 303 304 305 306 307 308 309
        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 已提交
310 311
      end

312 313
      # Replace this collection with +other_array+
      # This will perform a diff and delete/add only records that have changed.
314
      def replace(other_array)
315 316 317 318 319
        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
320

321
        transaction do
322 323 324
          delete(@target.select { |v| !other.include?(v) })
          concat(other_array.select { |v| !current.include?(v) })
        end
325
      end
D
Initial  
David Heinemeier Hansson 已提交
326

327 328
      def include?(record)
        return false unless record.is_a?(@reflection.klass)
329
        load_target if @reflection.options[:finder_sql] && !loaded?
330 331 332
        return @target.include?(record) if loaded?
        exists?(record)
      end
333

334 335
      def proxy_respond_to?(method, include_private = false)
        super || @reflection.klass.respond_to?(method, include_private)
336 337
      end

338
      protected
339 340 341
        def construct_find_options!(options)
        end
        
342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360
        def load_target
          if !@owner.new_record? || foreign_key_present
            begin
              if !loaded?
                if @target.is_a?(Array) && @target.any?
                  @target = find_target + @target.find_all {|t| t.new_record? }
                else
                  @target = find_target
                end
              end
            rescue ActiveRecord::RecordNotFound
              reset
            end
          end

          loaded if target
          target
        end
        
361
        def method_missing(method, *args)
362
          if @target.respond_to?(method) || (!@reflection.klass.respond_to?(method) && Class.respond_to?(method))
363 364 365 366 367
            if block_given?
              super { |*block_args| yield(*block_args) }
            else
              super
            end
368 369 370 371
          elsif @reflection.klass.scopes.include?(method)
            @reflection.klass.scopes[method].call(self, *args)
          else          
            with_scope(construct_scope) do
372 373 374 375 376 377
              if block_given?
                @reflection.klass.send(method, *args) { |*block_args| yield(*block_args) }
              else
                @reflection.klass.send(method, *args)
              end
            end
378 379 380 381 382 383 384 385
          end
        end

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

386 387 388 389 390 391 392 393 394 395 396 397 398 399 400
        def reset_target!
          @target = Array.new
        end

        def find_target
          records =
            if @reflection.options[:finder_sql]
              @reflection.klass.find_by_sql(@finder_sql)
            else
              find(:all)
            end

          @reflection.options[:uniq] ? uniq(records) : records
        end

D
Initial  
David Heinemeier Hansson 已提交
401
      private
402

403
        def create_record(attrs)
404
          attrs.update(@reflection.options[:conditions]) if @reflection.options[:conditions].is_a?(Hash)
405
          ensure_owner_is_not_new
406 407 408
          record = @reflection.klass.send(:with_scope, :create => construct_scope[:create]) do
            @reflection.build_association(attrs)
          end
409 410 411 412 413
          if block_given?
            add_record_to_target_with_callbacks(record) { |*block_args| yield(*block_args) }
          else
            add_record_to_target_with_callbacks(record)
          end
414 415
        end

416
        def build_record(attrs)
417
          attrs.update(@reflection.options[:conditions]) if @reflection.options[:conditions].is_a?(Hash)
418
          record = @reflection.build_association(attrs)
419 420 421 422 423
          if block_given?
            add_record_to_target_with_callbacks(record) { |*block_args| yield(*block_args) }
          else
            add_record_to_target_with_callbacks(record)
          end
424 425 426 427 428 429
        end

        def add_record_to_target_with_callbacks(record)
          callback(:before_add, record)
          yield(record) if block_given?
          @target ||= [] unless loaded?
430
          @target << record unless @reflection.options[:uniq] && @target.include?(record)
431 432 433 434
          callback(:after_add, record)
          record
        end

435 436 437 438 439 440 441 442 443 444 445 446
        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

447 448
        def callback(method, record)
          callbacks_for(method).each do |callback|
449
            ActiveSupport::Callbacks::Callback.new(method, callback, record).call(@owner, record)
450 451
          end
        end
452

453
        def callbacks_for(callback_name)
454 455
          full_callback_name = "#{callback_name}_for_#{@reflection.name}"
          @owner.class.read_inheritable_attribute(full_callback_name.to_sym) || []
456 457 458 459 460 461 462
        end   
        
        def ensure_owner_is_not_new
          if @owner.new_record?
            raise ActiveRecord::RecordNotSaved, "You cannot call create unless the parent is saved"
          end
        end
463 464

        def fetch_first_or_last_using_find?(args)
465 466
          args.first.kind_of?(Hash) || !(loaded? || @owner.new_record? || @reflection.options[:finder_sql] ||
                                         @target.any? { |record| record.new_record? } || args.first.kind_of?(Integer))
467
        end
D
Initial  
David Heinemeier Hansson 已提交
468 469
    end
  end
470
end