relation.rb 19.7 KB
Newer Older
1
# -*- coding: utf-8 -*-
2
require 'active_support/core_ext/object/blank'
3
require 'active_support/deprecation'
4

5
module ActiveRecord
R
Rizwan Reza 已提交
6
  # = Active Record Relation
7
  class Relation
8
    JoinOperation = Struct.new(:relation, :join_class, :on)
9 10

    MULTI_VALUE_METHODS  = [:includes, :eager_load, :preload, :select, :group,
11 12
                            :order, :joins, :where, :having, :bind, :references,
                            :extending]
13 14

    SINGLE_VALUE_METHODS = [:limit, :offset, :lock, :readonly, :from, :reordering,
15
                            :reverse_order, :uniq, :create_with]
16

J
Jon Leighton 已提交
17 18
    VALUE_METHODS = MULTI_VALUE_METHODS + SINGLE_VALUE_METHODS

19
    include FinderMethods, Calculations, SpawnMethods, QueryMethods, Batches, Explain, Delegation
20

21
    attr_reader :table, :klass, :loaded
22
    attr_accessor :default_scoped
23
    alias :loaded? :loaded
24
    alias :default_scoped? :default_scoped
25

26 27 28 29
    def initialize(klass, table, values = {})
      @klass             = klass
      @table             = table
      @values            = values
A
Aaron Patterson 已提交
30
      @implicit_readonly = nil
31
      @loaded            = false
32
      @default_scoped    = false
33 34
    end

35
    def insert(values)
36 37
      primary_key_value = nil

38
      if primary_key && Hash === values
39 40 41
        primary_key_value = values[values.keys.find { |k|
          k.name == primary_key
        }]
42 43 44 45 46 47 48 49 50 51

        if !primary_key_value && connection.prefetch_primary_key?(klass.table_name)
          primary_key_value = connection.next_sequence_value(klass.sequence_name)
          values[klass.arel_table[klass.primary_key]] = primary_key_value
        end
      end

      im = arel.create_insert
      im.into @table

52 53
      conn = @klass.connection

54
      substitutes = values.sort_by { |arel_attr,_| arel_attr.name }
55 56 57 58 59
      binds       = substitutes.map do |arel_attr, value|
        [@klass.columns_hash[arel_attr.name], value]
      end

      substitutes.each_with_index do |tuple, i|
60
        tuple[1] = conn.substitute_at(binds[i][0], i)
61 62
      end

63
      if values.empty? # empty insert
64
        im.values = Arel.sql(connection.empty_insert_statement_value)
65
      else
66
        im.insert substitutes
67
      end
68

69
      conn.insert(
70
        im,
71
        'SQL',
72
        primary_key,
73 74 75
        primary_key_value,
        nil,
        binds)
76
    end
77

P
Pratik Naik 已提交
78
    def new(*args, &block)
79
      scoping { @klass.new(*args, &block) }
80 81
    end

82
    def initialize_copy(other)
83 84
      @values        = @values.dup
      @values[:bind] = @values[:bind].dup if @values[:bind]
85 86 87
      reset
    end

88 89
    alias build new

90
    def create(*args, &block)
91
      scoping { @klass.create(*args, &block) }
92 93 94
    end

    def create!(*args, &block)
95
      scoping { @klass.create!(*args, &block) }
P
Pratik Naik 已提交
96 97
    end

98 99 100 101 102
    # Tries to load the first record; if it fails, then <tt>create</tt> is called with the same arguments as this method.
    #
    # Expects arguments in the same format as <tt>Base.create</tt>.
    #
    # ==== Examples
103 104 105 106 107 108 109 110 111 112
    #   # Find the first user named Penélope or create a new one.
    #   User.where(:first_name => 'Penélope').first_or_create
    #   # => <User id: 1, first_name: 'Penélope', last_name: nil>
    #
    #   # Find the first user named Penélope or create a new one.
    #   # We already have one so the existing record will be returned.
    #   User.where(:first_name => 'Penélope').first_or_create
    #   # => <User id: 1, first_name: 'Penélope', last_name: nil>
    #
    #   # Find the first user named Scarlett or create a new one with a particular last name.
113
    #   User.where(:first_name => 'Scarlett').first_or_create(:last_name => 'Johansson')
114
    #   # => <User id: 2, first_name: 'Scarlett', last_name: 'Johansson'>
115
    #
116 117
    #   # Find the first user named Scarlett or create a new one with a different last name.
    #   # We already have one so the existing record will be returned.
118 119 120
    #   User.where(:first_name => 'Scarlett').first_or_create do |user|
    #     user.last_name = "O'Hara"
    #   end
121
    #   # => <User id: 2, first_name: 'Scarlett', last_name: 'Johansson'>
122 123
    def first_or_create(attributes = nil, options = {}, &block)
      first || create(attributes, options, &block)
124 125 126 127
    end

    # Like <tt>first_or_create</tt> but calls <tt>create!</tt> so an exception is raised if the created record is invalid.
    #
128
    # Expects arguments in the same format as <tt>Base.create!</tt>.
129 130
    def first_or_create!(attributes = nil, options = {}, &block)
      first || create!(attributes, options, &block)
131 132 133 134 135
    end

    # Like <tt>first_or_create</tt> but calls <tt>new</tt> instead of <tt>create</tt>.
    #
    # Expects arguments in the same format as <tt>Base.new</tt>.
136
    def first_or_initialize(attributes = nil, options = {}, &block)
137
      first || new(attributes, options, &block)
138 139
    end

140 141 142 143 144 145 146 147 148
    # Runs EXPLAIN on the query or queries triggered by this relation and
    # returns the result as a string. The string is formatted imitating the
    # ones printed by the database shell.
    #
    # Note that this method actually runs the queries, since the results of some
    # are needed by the next ones when eager loading is going on.
    #
    # Please see further details in the
    # {Active Record Query Interface guide}[http://edgeguides.rubyonrails.org/active_record_querying.html#running-explain].
A
Arun Agrawal 已提交
149
    def explain
150 151
      _, queries = collecting_queries_for_explain { exec_queries }
      exec_explain(queries)
152
    end
X
Xavier Noria 已提交
153

154 155 156 157 158 159 160 161 162 163
    def to_a
      # We monitor here the entire execution rather than individual SELECTs
      # because from the point of view of the user fetching the records of a
      # relation is a single unit of work. You want to know if this call takes
      # too long, not if the individual queries take too long.
      #
      # It could be the case that none of the queries involved surpass the
      # threshold, and at the same time the sum of them all does. The user
      # should get a query plan logged in that case.
      logging_query_plan do
164
        exec_queries
X
Xavier Noria 已提交
165 166 167
      end
    end

168
    def exec_queries
P
Pratik Naik 已提交
169 170
      return @records if loaded?

171 172 173
      default_scoped = with_default_scope

      if default_scoped.equal?(self)
174
        @records = eager_loading? ? find_with_associations : @klass.find_by_sql(arel, bind_values)
P
Pratik Naik 已提交
175

176 177
        preload = preload_values
        preload +=  includes_values unless eager_loading?
178 179 180
        preload.each do |associations|
          ActiveRecord::Associations::Preloader.new(@records, associations).run
        end
181

182 183
        # @readonly_value is true only if set explicitly. @implicit_readonly is true if there
        # are JOINS and no explicit SELECT.
184
        readonly = readonly_value.nil? ? @implicit_readonly : readonly_value
185 186 187 188
        @records.each { |record| record.readonly! } if readonly
      else
        @records = default_scoped.to_a
      end
P
Pratik Naik 已提交
189 190 191 192

      @loaded = true
      @records
    end
193
    private :exec_queries
P
Pratik Naik 已提交
194

195 196 197
    def as_json(options = nil) #:nodoc:
      to_a.as_json(options)
    end
198

R
Rizwan Reza 已提交
199
    # Returns size of the records.
200 201 202 203
    def size
      loaded? ? @records.length : count
    end

R
Rizwan Reza 已提交
204
    # Returns true if there are no records.
205
    def empty?
206 207 208 209
      return @records.empty? if loaded?

      c = count
      c.respond_to?(:zero?) ? c.zero? : c.empty?
210 211
    end

P
Pratik Naik 已提交
212 213 214 215 216 217 218 219 220 221 222 223
    def any?
      if block_given?
        to_a.any? { |*block_args| yield(*block_args) }
      else
        !empty?
      end
    end

    def many?
      if block_given?
        to_a.many? { |*block_args| yield(*block_args) }
      else
224
        limit_value ? to_a.many? : size > 1
P
Pratik Naik 已提交
225 226 227
      end
    end

228 229 230 231 232
    # Scope all queries to the current scope.
    #
    # ==== Example
    #
    #   Comment.where(:post_id => 1).scoping do
233
    #     Comment.first # SELECT * FROM comments WHERE post_id = 1
234 235 236 237 238
    #   end
    #
    # Please check unscoped if you want to remove all previous scopes (including
    # the default_scope) during the execution of a block.
    def scoping
239 240 241 242
      previous, klass.current_scope = klass.current_scope, self
      yield
    ensure
      klass.current_scope = previous
243 244
    end

245 246 247 248 249 250 251 252
    # Updates all records with details given if they match a set of conditions supplied, limits and order can
    # also be supplied. This method constructs a single SQL UPDATE statement and sends it straight to the
    # database. It does not instantiate the involved models and it does not trigger Active Record callbacks
    # or validations.
    #
    # ==== Parameters
    #
    # * +updates+ - A string, array, or hash representing the SET part of an SQL statement.
253
    # * +conditions+ - A string, array, or hash representing the WHERE part of an SQL statement.
254
    #   See conditions in the intro.
255 256 257 258 259 260 261 262
    # * +options+ - Additional options are <tt>:limit</tt> and <tt>:order</tt>, see the examples for usage.
    #
    # ==== Examples
    #
    #   # Update all customers with the given attributes
    #   Customer.update_all :wants_email => true
    #
    #   # Update all books with 'Rails' in their title
263 264
    #   Book.where('title LIKE ?', '%Rails%').update_all(:author => 'David')
    #
265
    #   # Update all books that match conditions, but limit it to 5 ordered by date
266
    #   Book.where('title LIKE ?', '%Rails%').order(:created_at).limit(5).update_all(:author => 'David')
267 268 269 270 271 272
    def update_all(updates)
      stmt = Arel::UpdateManager.new(arel.engine)

      stmt.set Arel.sql(@klass.send(:sanitize_sql_for_assignment, updates))
      stmt.table(table)
      stmt.key = table[primary_key]
A
Aaron Patterson 已提交
273

274 275 276 277 278 279
      if joins_values.any?
        @klass.connection.join_to_update(stmt, arel)
      else
        stmt.take(arel.limit)
        stmt.order(*arel.orders)
        stmt.wheres = arel.constraints
280
      end
281 282

      @klass.connection.update stmt, 'SQL', bind_values
283 284 285 286 287 288 289 290
    end

    # Updates an object (or multiple objects) and saves it to the database, if validations pass.
    # The resulting object is returned whether the object was saved successfully to the database or not.
    #
    # ==== Parameters
    #
    # * +id+ - This should be the id or an array of ids to be updated.
291
    # * +attributes+ - This should be a hash of attributes or an array of hashes.
292 293 294
    #
    # ==== Examples
    #
295
    #   # Updates one record
296 297
    #   Person.update(15, :user_name => 'Samuel', :group => 'expert')
    #
298
    #   # Updates multiple records
299 300 301 302
    #   people = { 1 => { "first_name" => "David" }, 2 => { "first_name" => "Jeremy" } }
    #   Person.update(people.keys, people.values)
    def update(id, attributes)
      if id.is_a?(Array)
303
        id.map.with_index { |one_id, idx| update(one_id, attributes[idx]) }
304 305 306 307 308 309 310
      else
        object = find(id)
        object.update_attributes(attributes)
        object
      end
    end

311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336
    # Destroys the records matching +conditions+ by instantiating each
    # record and calling its +destroy+ method. Each object's callbacks are
    # executed (including <tt>:dependent</tt> association options and
    # +before_destroy+/+after_destroy+ Observer methods). Returns the
    # collection of objects that were destroyed; each will be frozen, to
    # reflect that no changes should be made (since they can't be
    # persisted).
    #
    # Note: Instantiation, callback execution, and deletion of each
    # record can be time consuming when you're removing many records at
    # once. It generates at least one SQL +DELETE+ query per record (or
    # possibly more, to enforce your callbacks). If you want to delete many
    # rows quickly, without concern for their associations or callbacks, use
    # +delete_all+ instead.
    #
    # ==== Parameters
    #
    # * +conditions+ - A string, array, or hash that specifies which records
    #   to destroy. If omitted, all records are destroyed. See the
    #   Conditions section in the introduction to ActiveRecord::Base for
    #   more information.
    #
    # ==== Examples
    #
    #   Person.destroy_all("last_login < '2004-04-04'")
    #   Person.destroy_all(:status => "inactive")
R
Rodrigo Navarro 已提交
337
    #   Person.where(:age => 0..18).destroy_all
338 339 340 341
    def destroy_all(conditions = nil)
      if conditions
        where(conditions).destroy_all
      else
342
        to_a.each {|object| object.destroy }.tap { reset }
343
      end
P
Pratik Naik 已提交
344 345
    end

J
typo  
Jo Liss 已提交
346
    # Destroy an object (or multiple objects) that has the given id. The object is instantiated first,
347
    # therefore all callbacks and filters are fired off before the object is deleted. This method is
P
Pratik Naik 已提交
348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372
    # less efficient than ActiveRecord#delete but allows cleanup methods and other actions to be run.
    #
    # This essentially finds the object (or multiple objects) with the given id, creates a new object
    # from the attributes, and then calls destroy on it.
    #
    # ==== Parameters
    #
    # * +id+ - Can be either an Integer or an Array of Integers.
    #
    # ==== Examples
    #
    #   # Destroy a single object
    #   Todo.destroy(1)
    #
    #   # Destroy multiple objects
    #   todos = [1,2,3]
    #   Todo.destroy(todos)
    def destroy(id)
      if id.is_a?(Array)
        id.map { |one_id| destroy(one_id) }
      else
        find(id).destroy
      end
    end

373 374 375 376 377 378
    # Deletes the records matching +conditions+ without instantiating the records
    # first, and hence not calling the +destroy+ method nor invoking callbacks. This
    # is a single SQL DELETE statement that goes straight to the database, much more
    # efficient than +destroy_all+. Be careful with relations though, in particular
    # <tt>:dependent</tt> rules defined on associations are not honored. Returns the
    # number of rows affected.
P
Pratik Naik 已提交
379 380 381
    #
    #   Post.delete_all("person_id = 5 AND (category = 'Something' OR category = 'Else')")
    #   Post.delete_all(["person_id = ? AND (category = ? OR category = ?)", 5, 'Something', 'Else'])
R
Rodrigo Navarro 已提交
382
    #   Post.where(:person_id => 5).where(:category => ['Something', 'Else']).delete_all
P
Pratik Naik 已提交
383
    #
384 385
    # Both calls delete the affected posts all at once with a single DELETE statement.
    # If you need to destroy dependent associations or call your <tt>before_*</tt> or
R
Rizwan Reza 已提交
386
    # +after_destroy+ callbacks, use the +destroy_all+ method instead.
387 388 389 390 391
    #
    # If a limit scope is supplied, +delete_all+ raises an ActiveRecord error:
    #
    #   Post.limit(100).delete_all
    #   # => ActiveRecord::ActiveRecordError: delete_all doesn't support limit scope
P
Pratik Naik 已提交
392
    def delete_all(conditions = nil)
393 394
      raise ActiveRecordError.new("delete_all doesn't support limit scope") if self.limit_value

A
Aaron Patterson 已提交
395 396 397
      if conditions
        where(conditions).delete_all
      else
398 399 400 401 402 403 404 405 406 407
        stmt = Arel::DeleteManager.new(arel.engine)
        stmt.from(table)

        if joins_values.any?
          @klass.connection.join_to_delete(stmt, arel, table[primary_key])
        else
          stmt.wheres = arel.constraints
        end

        affected = @klass.connection.delete(stmt, 'SQL', bind_values)
408

A
Aaron Patterson 已提交
409 410 411
        reset
        affected
      end
P
Pratik Naik 已提交
412 413
    end

414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433
    # Deletes the row with a primary key matching the +id+ argument, using a
    # SQL +DELETE+ statement, and returns the number of rows deleted. Active
    # Record objects are not instantiated, so the object's callbacks are not
    # executed, including any <tt>:dependent</tt> association options or
    # Observer methods.
    #
    # You can delete multiple rows at once by passing an Array of <tt>id</tt>s.
    #
    # Note: Although it is often much faster than the alternative,
    # <tt>#destroy</tt>, skipping callbacks might bypass business logic in
    # your application that ensures referential integrity or performs other
    # essential jobs.
    #
    # ==== Examples
    #
    #   # Delete a single row
    #   Todo.delete(1)
    #
    #   # Delete multiple rows
    #   Todo.delete([2,3,4])
434
    def delete(id_or_array)
435
      where(primary_key => id_or_array).delete_all
436 437
    end

438
    def reload
P
Pratik Naik 已提交
439
      reset
440 441
      to_a # force reload
      self
P
Pratik Naik 已提交
442 443 444
    end

    def reset
445
      @first = @last = @to_sql = @order_clause = @scope_for_create = @arel = @loaded = nil
446
      @should_eager_load = @join_dependency = nil
P
Pratik Naik 已提交
447
      @records = []
448 449 450
      self
    end

P
Pratik Naik 已提交
451
    def to_sql
452
      @to_sql ||= klass.connection.to_sql(arel, bind_values.dup)
P
Pratik Naik 已提交
453 454
    end

455
    def where_values_hash
456
      equalities = with_default_scope.where_values.grep(Arel::Nodes::Equality).find_all { |node|
A
Aaron Patterson 已提交
457 458 459
        node.left.relation.name == table_name
      }

460 461 462 463 464 465
      binds = Hash[bind_values.find_all(&:first).map { |column, v| [column.name, v] }]

      Hash[equalities.map { |where|
        name = where.left.name
        [name, binds.fetch(name.to_s) { where.right }]
      }]
466 467 468
    end

    def scope_for_create
469
      @scope_for_create ||= where_values_hash.merge(create_with_value)
P
Pratik Naik 已提交
470 471
    end

472
    def eager_loading?
473
      @should_eager_load ||=
474 475
        eager_load_values.any? ||
        includes_values.any? && (joined_includes_values.any? || references_eager_loaded_tables?)
476 477 478 479 480 481 482
    end

    # Joins that are also marked for preloading. In which case we should just eager load them.
    # Note that this is a naive implementation because we could have strings and symbols which
    # represent the same association, but that aren't matched by this. Also, we could have
    # nested hashes which partially match, e.g. { :a => :b } & { :a => [:b, :c] }
    def joined_includes_values
483
      includes_values & joins_values
484 485
    end

486 487 488 489 490
    def ==(other)
      case other
      when Relation
        other.to_sql == to_sql
      when Array
491
        to_a == other
492 493 494
      end
    end

495 496 497 498
    def pretty_print(q)
      q.pp(self.to_a)
    end

499
    def with_default_scope #:nodoc:
500
      if default_scoped? && default_scope = klass.send(:build_default_scope)
501 502 503
        default_scope = default_scope.merge(self)
        default_scope.default_scoped = false
        default_scope
504 505 506 507 508
      else
        self
      end
    end

509 510 511 512
    def blank?
      to_a.blank?
    end

513 514 515 516
    def values
      @values.dup
    end

517
    def inspect
518 519 520 521 522 523 524 525 526 527 528 529 530
      text = if limit_value && limit_value <= 10
        to_a.inspect
      else
        entries = limit(11).to_a
        if entries.size > 10
          entries.pop
          "[#{entries.map(&:inspect).join(', ')}, ...]"
        else
          entries.inspect
        end
      end

      "#<#{self.class.name} #{text}>"
531 532
    end

533 534
    private

535
    def references_eager_loaded_tables?
536 537 538 539 540 541 542 543 544 545
      joined_tables = arel.join_sources.map do |join|
        if join.is_a?(Arel::Nodes::StringJoin)
          tables_in_string(join.left)
        else
          [join.left.table_name, join.left.table_alias]
        end
      end

      joined_tables += [table.name, table.table_alias]

546
      # always convert table names to downcase as in Oracle quoted table names are in uppercase
547
      joined_tables = joined_tables.flatten.compact.map { |t| t.downcase }.uniq
548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571
      string_tables = tables_in_string(to_sql)

      if (references_values - joined_tables).any?
        true
      elsif (string_tables - joined_tables).any?
        ActiveSupport::Deprecation.warn(
          "It looks like you are eager loading table(s) (one of: #{string_tables.join(', ')}) " \
          "that are referenced in a string SQL snippet. For example: \n" \
          "\n" \
          "    Post.includes(:comments).where(\"comments.title = 'foo'\")\n" \
          "\n" \
          "Currently, Active Record recognises the table in the string, and knows to JOIN the " \
          "comments table to the query, rather than loading comments in a separate query. " \
          "However, doing this without writing a full-blown SQL parser is inherently flawed. " \
          "Since we don't want to write an SQL parser, we are removing this functionality. " \
          "From now on, you must explicitly tell Active Record when you are referencing a table " \
          "from a string:\n" \
          "\n" \
          "    Post.includes(:comments).where(\"comments.title = 'foo'\").references(:comments)\n\n"
        )
        true
      else
        false
      end
572 573 574 575
    end

    def tables_in_string(string)
      return [] if string.blank?
576
      # always convert table names to downcase as in Oracle quoted table names are in uppercase
577
      # ignore raw_sql_ that is used by Oracle adapter as alias for limit/offset subqueries
578
      string.scan(/([a-zA-Z_][.\w]+).?\./).flatten.map{ |s| s.downcase }.uniq - ['raw_sql_']
579
    end
580 581
  end
end