association_collection.rb 16.8 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
    # 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 已提交
14
    # collection because new records may have been added to the target, etc.
P
Pratik Naik 已提交
15 16 17
    #
    # 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
      def initialize(owner, reflection)
        super
        construct_sql
      end
23

24
      delegate :group, :order, :limit, :joins, :where, :preload, :eager_load, :from, :lock, :readonly, :to => :scoped
25 26 27 28 29 30 31 32 33 34 35 36 37 38

      def select(select = nil, &block)
        if block_given?
          load_target
          @target.select(&block)
        else
          scoped.select(select)
        end
      end

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

39 40 41 42 43 44
      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)
45
          ids           = args.flatten.compact.uniq.map { |arg| arg.to_i }
46 47 48 49 50 51 52 53 54

          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
55 56 57 58
          merge_options_from_reflection!(options)
          construct_find_options!(options)

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

60 61 62 63 64 65 66 67 68
          with_scope(:find => find_scope) do
            relation = @reflection.klass.send(:construct_finder_arel_with_includes, options)

            case args.first
            when :first, :last, :all
              relation.send(args.first)
            else
              relation.find(*args)
            end
69 70 71
          end
        end
      end
72

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

P
Pratik Naik 已提交
83
      # Fetches the last one using SQL if possible.
84
      def last(*args)
85
        if fetch_first_or_last_using_find?(args)
86 87 88 89 90 91 92
          find(:last, *args)
        else
          load_target unless loaded?
          @target.last(*args)
        end
      end

D
Initial  
David Heinemeier Hansson 已提交
93
      def to_ary
94
        load_target
95 96 97 98 99
        if @target.is_a?(Array)
          @target.to_ary
        else
          Array(@target)
        end
D
Initial  
David Heinemeier Hansson 已提交
100
      end
101

102
      def reset
103
        reset_target!
104
        @loaded = false
D
Initial  
David Heinemeier Hansson 已提交
105 106
      end

107
      def build(attributes = {}, &block)
108
        if attributes.is_a?(Array)
109
          attributes.collect { |attr| build(attr, &block) }
110
        else
111 112 113 114
          build_record(attributes) do |record|
            block.call(record) if block_given?
            set_belongs_to_association_for(record)
          end
115 116 117
        end
      end

D
Initial  
David Heinemeier Hansson 已提交
118 119 120
      # 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)
121
        result = true
122
        load_target if @owner.new_record?
123

124
        transaction do
125 126
          flatten_deeper(records).each do |record|
            raise_on_type_mismatch(record)
127 128 129
            add_record_to_target_with_callbacks(record) do |r|
              result &&= insert_record(record) unless @owner.new_record?
            end
130
          end
D
Initial  
David Heinemeier Hansson 已提交
131
        end
132

133
        result && self
D
Initial  
David Heinemeier Hansson 已提交
134 135 136 137
      end

      alias_method :push, :<<
      alias_method :concat, :<<
138

139 140 141 142 143 144 145 146 147 148 149 150 151 152 153
      # 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

154
      # Remove all records from this association
P
Pratik Naik 已提交
155 156
      #
      # See delete for more info.
157
      def delete_all
158
        load_target
159
        delete(@target)
160
        reset_target!
161
      end
162
      
163
      # Calculate sum using SQL, not Enumerable
164 165 166 167 168 169
      def sum(*args)
        if block_given?
          calculate(:sum, *args) { |*block_args| yield(*block_args) }
        else
          calculate(:sum, *args)
        end
170 171
      end

172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199
      # 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

200 201 202 203 204 205 206
      # 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 已提交
207
      def delete(*records)
208
        remove_records(records) do |records, old_records|
209
          delete_records(old_records) if old_records.any?
210
          records.each { |record| @target.delete(record) }
211
        end
D
Initial  
David Heinemeier Hansson 已提交
212
      end
213

P
Pratik Naik 已提交
214 215
      # Destroy +records+ and remove them from this association calling
      # +before_remove+ and +after_remove+ callbacks.
216
      #
P
Pratik Naik 已提交
217 218
      # Note that this method will _always_ remove records from the database
      # ignoring the +:dependent+ option.
219
      def destroy(*records)
220
        records = find(records) if records.any? {|record| record.kind_of?(Fixnum) || record.kind_of?(String)}
221 222 223 224 225 226 227
        remove_records(records) do |records, old_records|
          old_records.each { |record| record.destroy }
        end

        load_target
      end

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

232
        if @reflection.options[:dependent] && @reflection.options[:dependent] == :destroy
233 234 235 236
          destroy_all
        else          
          delete_all
        end
237

238 239
        self
      end
240

P
Pratik Naik 已提交
241
      # Destroy all the records from this association.
P
Pratik Naik 已提交
242 243
      #
      # See destroy for more info.
244 245 246
      def destroy_all
        load_target
        destroy(@target)
247
        reset_target!
D
Initial  
David Heinemeier Hansson 已提交
248
      end
249

250
      def create(attrs = {})
251 252 253
        if attrs.is_a?(Array)
          attrs.collect { |attr| create(attr) }
        else
254 255 256 257
          create_record(attrs) do |record|
            yield(record) if block_given?
            record.save
          end
258
        end
259 260
      end

261
      def create!(attrs = {})
262 263 264 265
        create_record(attrs) do |record|
          yield(record) if block_given?
          record.save!
        end
266 267
      end

P
Pratik Naik 已提交
268 269 270 271 272 273 274 275 276 277
      # 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 已提交
278
      def size
279
        if @owner.new_record? || (loaded? && !@reflection.options[:uniq])
280
          @target.size
281 282
        elsif !loaded? && @reflection.options[:group]
          load_target.size
283
        elsif !loaded? && !@reflection.options[:uniq] && @target.is_a?(Array)
284
          unsaved_records = @target.select { |r| r.new_record? }
D
David Heinemeier Hansson 已提交
285
          unsaved_records.size + count_records
286 287 288
        else
          count_records
        end
D
Initial  
David Heinemeier Hansson 已提交
289
      end
290

P
Pratik Naik 已提交
291 292 293 294 295
      # 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.
296
      def length
297
        load_target.size
298
      end
299

P
Pratik Naik 已提交
300 301 302
      # 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 已提交
303
      def empty?
304
        size.zero?
D
Initial  
David Heinemeier Hansson 已提交
305
      end
306

307
      def any?
308
        if block_given?
309
          method_missing(:any?) { |*block_args| yield(*block_args) }
310 311 312
        else
          !empty?
        end
313
      end
314

315 316 317 318 319 320 321 322 323
      # 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 已提交
324
      def uniq(collection = self)
325 326 327 328 329 330 331 332
        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 已提交
333 334
      end

335 336
      # Replace this collection with +other_array+
      # This will perform a diff and delete/add only records that have changed.
337
      def replace(other_array)
338 339 340 341 342
        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
343

344
        transaction do
345 346 347
          delete(@target.select { |v| !other.include?(v) })
          concat(other_array.select { |v| !current.include?(v) })
        end
348
      end
D
Initial  
David Heinemeier Hansson 已提交
349

350 351
      def include?(record)
        return false unless record.is_a?(@reflection.klass)
352
        load_target if @reflection.options[:finder_sql] && !loaded?
353 354 355
        return @target.include?(record) if loaded?
        exists?(record)
      end
356

357 358
      def proxy_respond_to?(method, include_private = false)
        super || @reflection.klass.respond_to?(method, include_private)
359 360
      end

361
      protected
362 363
        def construct_find_options!(options)
        end
364 365 366 367 368 369 370 371 372 373 374 375 376

        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

377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394
        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
395

396
        def method_missing(method, *args)
397
          if @target.respond_to?(method) || (!@reflection.klass.respond_to?(method) && Class.respond_to?(method))
398 399 400 401 402
            if block_given?
              super { |*block_args| yield(*block_args) }
            else
              super
            end
403 404 405 406
          elsif @reflection.klass.scopes.include?(method)
            @reflection.klass.scopes[method].call(self, *args)
          else          
            with_scope(construct_scope) do
407 408 409 410 411 412
              if block_given?
                @reflection.klass.send(method, *args) { |*block_args| yield(*block_args) }
              else
                @reflection.klass.send(method, *args)
              end
            end
413 414 415 416 417 418 419 420
          end
        end

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

421 422 423 424 425 426 427 428 429 430 431 432
        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

433 434 435 436 437
          records = @reflection.options[:uniq] ? uniq(records) : records
          records.each do |record|
            set_inverse_instance(record, @owner)
          end
          records
438 439
        end

D
Initial  
David Heinemeier Hansson 已提交
440
      private
441
        def create_record(attrs)
442
          attrs.update(@reflection.options[:conditions]) if @reflection.options[:conditions].is_a?(Hash)
443
          ensure_owner_is_not_new
444 445 446
          record = @reflection.klass.send(:with_scope, :create => construct_scope[:create]) do
            @reflection.build_association(attrs)
          end
447 448 449 450 451
          if block_given?
            add_record_to_target_with_callbacks(record) { |*block_args| yield(*block_args) }
          else
            add_record_to_target_with_callbacks(record)
          end
452 453
        end

454
        def build_record(attrs)
455
          attrs.update(@reflection.options[:conditions]) if @reflection.options[:conditions].is_a?(Hash)
456
          record = @reflection.build_association(attrs)
457 458 459 460 461
          if block_given?
            add_record_to_target_with_callbacks(record) { |*block_args| yield(*block_args) }
          else
            add_record_to_target_with_callbacks(record)
          end
462 463 464 465 466 467
        end

        def add_record_to_target_with_callbacks(record)
          callback(:before_add, record)
          yield(record) if block_given?
          @target ||= [] unless loaded?
468
          @target << record unless @reflection.options[:uniq] && @target.include?(record)
469
          callback(:after_add, record)
470
          set_inverse_instance(record, @owner)
471 472 473
          record
        end

474 475 476 477 478 479 480 481 482 483 484 485
        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

486 487
        def callback(method, record)
          callbacks_for(method).each do |callback|
488
            ActiveSupport::DeprecatedCallbacks::Callback.new(method, callback, record).call(@owner, record)
489 490
          end
        end
491

492
        def callbacks_for(callback_name)
493 494
          full_callback_name = "#{callback_name}_for_#{@reflection.name}"
          @owner.class.read_inheritable_attribute(full_callback_name.to_sym) || []
495 496 497 498 499 500 501
        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
502 503

        def fetch_first_or_last_using_find?(args)
504 505
          args.first.kind_of?(Hash) || !(loaded? || @owner.new_record? || @reflection.options[:finder_sql] ||
                                         @target.any? { |record| record.new_record? } || args.first.kind_of?(Integer))
506
        end
D
Initial  
David Heinemeier Hansson 已提交
507 508
    end
  end
509
end