2009-07-21 19:21:03 -04:00
|
|
|
module ActiveRecord
|
|
|
|
class Relation
|
2010-01-12 11:50:53 -05:00
|
|
|
JoinOperation = Struct.new(:relation, :join_class, :on)
|
|
|
|
ASSOCIATION_METHODS = [:includes, :eager_load, :preload]
|
|
|
|
MULTI_VALUE_METHODS = [:select, :group, :order, :joins, :where, :having]
|
|
|
|
SINGLE_VALUE_METHODS = [:limit, :offset, :lock, :readonly, :create_with, :from]
|
|
|
|
|
2010-01-19 11:45:35 -05:00
|
|
|
include FinderMethods, Calculations, SpawnMethods, QueryMethods
|
2009-12-29 04:54:09 -05:00
|
|
|
|
2010-01-17 17:54:24 -05:00
|
|
|
delegate :length, :collect, :map, :each, :all?, :include?, :to => :to_a
|
2010-01-19 12:41:54 -05:00
|
|
|
delegate :insert, :update, :to => :arel
|
2009-12-29 04:37:51 -05:00
|
|
|
|
2010-01-12 11:50:53 -05:00
|
|
|
attr_reader :table, :klass
|
2009-12-29 04:37:51 -05:00
|
|
|
|
2010-01-12 11:50:53 -05:00
|
|
|
def initialize(klass, table)
|
|
|
|
@klass, @table = klass, table
|
|
|
|
(ASSOCIATION_METHODS + MULTI_VALUE_METHODS).each {|v| instance_variable_set(:"@#{v}_values", [])}
|
2009-09-01 14:36:09 -04:00
|
|
|
end
|
|
|
|
|
2010-01-02 13:38:59 -05:00
|
|
|
def new(*args, &block)
|
2010-01-02 13:46:14 -05:00
|
|
|
with_create_scope { @klass.new(*args, &block) }
|
|
|
|
end
|
|
|
|
|
2010-01-17 13:33:18 -05:00
|
|
|
alias build new
|
|
|
|
|
2010-01-02 13:46:14 -05:00
|
|
|
def create(*args, &block)
|
|
|
|
with_create_scope { @klass.create(*args, &block) }
|
|
|
|
end
|
|
|
|
|
|
|
|
def create!(*args, &block)
|
|
|
|
with_create_scope { @klass.create!(*args, &block) }
|
2010-01-02 13:38:59 -05:00
|
|
|
end
|
|
|
|
|
2009-12-29 02:01:08 -05:00
|
|
|
def respond_to?(method, include_private = false)
|
2010-01-12 11:50:53 -05:00
|
|
|
return true if arel.respond_to?(method, include_private) || Array.method_defined?(method)
|
2009-12-29 01:57:40 -05:00
|
|
|
|
|
|
|
if match = DynamicFinderMatch.match(method)
|
|
|
|
return true if @klass.send(:all_attributes_exists?, match.attribute_names)
|
|
|
|
elsif match = DynamicScopeMatch.match(method)
|
|
|
|
return true if @klass.send(:all_attributes_exists?, match.attribute_names)
|
|
|
|
else
|
|
|
|
super
|
|
|
|
end
|
2009-08-18 15:35:33 -04:00
|
|
|
end
|
|
|
|
|
2009-12-26 04:37:00 -05:00
|
|
|
def to_a
|
|
|
|
return @records if loaded?
|
|
|
|
|
2010-01-19 04:52:09 -05:00
|
|
|
@records = eager_loading? ? find_with_associations : @klass.find_by_sql(arel.to_sql)
|
2009-12-26 04:37:00 -05:00
|
|
|
|
2010-01-12 11:50:53 -05:00
|
|
|
preload = @preload_values
|
2010-01-19 04:52:09 -05:00
|
|
|
preload += @includes_values unless eager_loading?
|
2010-01-02 16:54:28 -05:00
|
|
|
preload.each {|associations| @klass.send(:preload_associations, @records, associations) }
|
|
|
|
|
2010-01-12 11:50:53 -05:00
|
|
|
# @readonly_value is true only if set explicity. @implicit_readonly is true if there are JOINS and no explicit SELECT.
|
|
|
|
readonly = @readonly_value.nil? ? @implicit_readonly : @readonly_value
|
|
|
|
@records.each { |record| record.readonly! } if readonly
|
2009-12-26 04:37:00 -05:00
|
|
|
|
|
|
|
@loaded = true
|
|
|
|
@records
|
|
|
|
end
|
|
|
|
|
2009-12-29 01:45:28 -05:00
|
|
|
def size
|
|
|
|
loaded? ? @records.length : count
|
|
|
|
end
|
|
|
|
|
|
|
|
def empty?
|
|
|
|
loaded? ? @records.empty? : count.zero?
|
|
|
|
end
|
|
|
|
|
2009-12-30 01:30:26 -05:00
|
|
|
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
|
2010-01-12 11:50:53 -05:00
|
|
|
arel.send(:taken).present? ? to_a.many? : size > 1
|
2009-12-30 01:30:26 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-01-20 07:42:50 -05:00
|
|
|
# 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")
|
|
|
|
def destroy_all(conditions = nil)
|
|
|
|
if conditions
|
|
|
|
where(conditions).destroy_all
|
|
|
|
else
|
|
|
|
to_a.each {|object| object.destroy}
|
|
|
|
reset
|
|
|
|
end
|
2009-12-27 09:05:55 -05:00
|
|
|
end
|
|
|
|
|
2009-12-29 01:06:40 -05:00
|
|
|
def delete_all
|
2010-01-12 11:50:53 -05:00
|
|
|
arel.delete.tap { reset }
|
2009-12-29 01:06:40 -05:00
|
|
|
end
|
|
|
|
|
2010-01-20 07:54:36 -05:00
|
|
|
# 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])
|
2009-12-31 13:43:38 -05:00
|
|
|
def delete(id_or_array)
|
|
|
|
where(@klass.primary_key => id_or_array).delete_all
|
|
|
|
end
|
|
|
|
|
2009-12-26 04:37:00 -05:00
|
|
|
def loaded?
|
|
|
|
@loaded
|
|
|
|
end
|
|
|
|
|
2009-12-26 04:58:23 -05:00
|
|
|
def reload
|
2009-12-27 09:05:55 -05:00
|
|
|
reset
|
2010-01-16 17:55:59 -05:00
|
|
|
to_a # force reload
|
|
|
|
self
|
2009-12-27 09:05:55 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def reset
|
2010-01-16 17:55:59 -05:00
|
|
|
@first = @last = @to_sql = @order_clause = @scope_for_create = @arel = @loaded = nil
|
2010-01-19 04:52:09 -05:00
|
|
|
@should_eager_load = @join_dependency = nil
|
2009-12-27 09:05:55 -05:00
|
|
|
@records = []
|
2009-12-26 04:58:23 -05:00
|
|
|
self
|
|
|
|
end
|
|
|
|
|
2009-12-31 14:26:49 -05:00
|
|
|
def primary_key
|
|
|
|
@primary_key ||= table[@klass.primary_key]
|
|
|
|
end
|
|
|
|
|
2010-01-02 17:26:21 -05:00
|
|
|
def to_sql
|
2010-01-12 11:50:53 -05:00
|
|
|
@to_sql ||= arel.to_sql
|
2010-01-02 17:26:21 -05:00
|
|
|
end
|
|
|
|
|
2010-01-15 15:12:01 -05:00
|
|
|
def scope_for_create
|
|
|
|
@scope_for_create ||= begin
|
|
|
|
@create_with_value || wheres.inject({}) do |hash, where|
|
|
|
|
hash[where.operand1.name] = where.operand2.value if where.is_a?(Arel::Predicates::Equality)
|
|
|
|
hash
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-01-19 04:52:09 -05:00
|
|
|
def eager_loading?
|
|
|
|
@should_eager_load ||= (@eager_load_values.any? || (@includes_values.any? && references_eager_loaded_tables?))
|
|
|
|
end
|
|
|
|
|
2009-12-27 02:45:00 -05:00
|
|
|
protected
|
2009-12-25 16:23:10 -05:00
|
|
|
|
|
|
|
def method_missing(method, *args, &block)
|
2010-01-19 12:22:08 -05:00
|
|
|
if Array.method_defined?(method)
|
2009-12-25 16:23:10 -05:00
|
|
|
to_a.send(method, *args, &block)
|
2010-01-19 12:22:08 -05:00
|
|
|
elsif arel.respond_to?(method)
|
|
|
|
arel.send(method, *args, &block)
|
2009-12-26 16:55:29 -05:00
|
|
|
elsif match = DynamicFinderMatch.match(method)
|
|
|
|
attributes = match.attribute_names
|
|
|
|
super unless @klass.send(:all_attributes_exists?, attributes)
|
|
|
|
|
|
|
|
if match.finder?
|
2009-12-27 02:45:00 -05:00
|
|
|
find_by_attributes(match, attributes, *args)
|
2009-12-27 03:58:19 -05:00
|
|
|
elsif match.instantiator?
|
|
|
|
find_or_instantiator_by_attributes(match, attributes, *args, &block)
|
2009-12-26 16:55:29 -05:00
|
|
|
end
|
2009-12-25 16:23:10 -05:00
|
|
|
else
|
|
|
|
super
|
2009-07-21 19:21:03 -04:00
|
|
|
end
|
2009-12-25 16:23:10 -05:00
|
|
|
end
|
|
|
|
|
2010-01-17 17:54:24 -05:00
|
|
|
private
|
|
|
|
|
2010-01-02 13:46:14 -05:00
|
|
|
def with_create_scope
|
2010-01-14 03:06:33 -05:00
|
|
|
@klass.send(:with_scope, :create => scope_for_create, :find => {}) { yield }
|
2010-01-02 13:46:14 -05:00
|
|
|
end
|
|
|
|
|
2010-01-02 16:57:14 -05:00
|
|
|
def references_eager_loaded_tables?
|
2010-01-12 11:50:53 -05:00
|
|
|
joined_tables = (tables_in_string(arel.joins(arel)) + [table.name, table.table_alias]).compact.uniq
|
2010-01-02 17:28:34 -05:00
|
|
|
(tables_in_string(to_sql) - joined_tables).any?
|
2010-01-02 16:57:14 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def tables_in_string(string)
|
|
|
|
return [] if string.blank?
|
|
|
|
string.scan(/([a-zA-Z_][\.\w]+).?\./).flatten.uniq
|
|
|
|
end
|
|
|
|
|
2009-07-21 19:21:03 -04:00
|
|
|
end
|
|
|
|
end
|