calculations.rb 14.3 KB
Newer Older
1
module ActiveRecord
D
David Heinemeier Hansson 已提交
2
  module Calculations #:nodoc:
3
    extend ActiveSupport::Concern
4

5
    CALCULATIONS_OPTIONS = [:conditions, :joins, :order, :select, :group, :having, :distinct, :limit, :offset, :include, :from]
6 7

    module ClassMethods
8
      # Count operates using three different approaches.
9 10
      #
      # * Count all: By not passing any parameters to count, it will return a count of all the rows for the model.
11
      # * Count using column: By passing a column name to count, it will return a count of all the rows for the model with supplied column present
12 13
      # * Count using options will find the row count matched by the options used.
      #
14
      # The third approach, count using options, accepts an option hash as the only parameter. The options are:
15
      #
P
Pratik Naik 已提交
16
      # * <tt>:conditions</tt>: An SQL fragment like "administrator = 1" or [ "user_name = ?", username ]. See conditions in the intro to ActiveRecord::Base.
17
      # * <tt>:joins</tt>: Either an SQL fragment for additional joins like "LEFT JOIN comments ON comments.post_id = id" (rarely needed)
18
      #   or named associations in the same form used for the <tt>:include</tt> option, which will perform an INNER JOIN on the associated table(s).
19
      #   If the value is a string, then the records will be returned read-only since they will have attributes that do not correspond to the table's columns.
20
      #   Pass <tt>:readonly => false</tt> to override.
21
      # * <tt>:include</tt>: Named associations that should be loaded alongside using LEFT OUTER JOINs. The symbols named refer
22
      #   to already defined associations. When using named associations, count returns the number of DISTINCT items for the model you're counting.
23
      #   See eager loading under Associations.
24 25
      # * <tt>:order</tt>: An SQL fragment like "created_at DESC, name" (really only used with GROUP BY calculations).
      # * <tt>:group</tt>: An attribute name by which the result should be grouped. Uses the GROUP BY SQL-clause.
26
      # * <tt>:select</tt>: By default, this is * as in SELECT * FROM, but can be changed if you, for example, want to do a join but not
27 28
      #   include the joined columns.
      # * <tt>:distinct</tt>: Set this to true to make this a distinct calculation, such as SELECT COUNT(DISTINCT posts.id) ...
29 30
      # * <tt>:from</tt> - By default, this is the table name of the class, but can be changed to an alternate table name (or even the name
      #   of a database view).
31 32 33 34
      #
      # Examples for counting all:
      #   Person.count         # returns the total count of all people
      #
35 36 37
      # Examples for counting by column:
      #   Person.count(:age)  # returns the total count of all people whose age is present in database
      #
38 39 40
      # Examples for count with options:
      #   Person.count(:conditions => "age > 26")
      #   Person.count(:conditions => "age > 26 AND job.salary > 60000", :include => :job) # because of the named association, it finds the DISTINCT count using LEFT OUTER JOIN.
41
      #   Person.count(:conditions => "age > 26 AND job.salary > 60000", :joins => "LEFT JOIN jobs on jobs.person_id = person.id") # finds the number of rows matching the conditions and joins.
42 43 44
      #   Person.count('id', :conditions => "age > 26") # Performs a COUNT(id)
      #   Person.count(:all, :conditions => "age > 26") # Performs a COUNT(*) (:all is an alias for '*')
      #
45
      # Note: <tt>Person.count(:all)</tt> will not work because it will use <tt>:all</tt> as the condition.  Use Person.count instead.
46
      def count(*args)
47
        calculate(:count, *construct_count_options_from_args(*args))
48 49
      end

P
Pratik Naik 已提交
50 51 52
      # Calculates the average value on a given column. The value is returned as
      # a float, or +nil+ if there's no row. See +calculate+ for examples with
      # options.
53
      #
P
Pratik Naik 已提交
54
      #   Person.average('age') # => 35.8
55
      def average(column_name, options = {})
56
        calculate(:average, column_name, options)
57 58
      end

P
Pratik Naik 已提交
59 60 61
      # Calculates the minimum value on a given column.  The value is returned
      # with the same data type of the column, or +nil+ if there's no row. See
      # +calculate+ for examples with options.
62
      #
P
Pratik Naik 已提交
63
      #   Person.minimum('age') # => 7
64
      def minimum(column_name, options = {})
65
        calculate(:minimum, column_name, options)
66 67
      end

P
Pratik Naik 已提交
68 69 70
      # Calculates the maximum value on a given column. The value is returned
      # with the same data type of the column, or +nil+ if there's no row. See
      # +calculate+ for examples with options.
71
      #
P
Pratik Naik 已提交
72
      #   Person.maximum('age') # => 93
73
      def maximum(column_name, options = {})
74
        calculate(:maximum, column_name, options)
75 76
      end

P
Pratik Naik 已提交
77 78 79
      # Calculates the sum of values on a given column. The value is returned
      # with the same data type of the column, 0 if there's no row. See
      # +calculate+ for examples with options.
80
      #
P
Pratik Naik 已提交
81
      #   Person.sum('age') # => 4562
82
      def sum(column_name, options = {})
83
        calculate(:sum, column_name, options)
84 85
      end

86
      # This calculates aggregate values in the given column.  Methods for count, sum, average, minimum, and maximum have been added as shortcuts.
87
      # Options such as <tt>:conditions</tt>, <tt>:order</tt>, <tt>:group</tt>, <tt>:having</tt>, and <tt>:joins</tt> can be passed to customize the query.
88 89 90
      #
      # There are two basic forms of output:
      #   * Single aggregate value: The single value is type cast to Fixnum for COUNT, Float for AVG, and the given column's type for everything else.
91
      #   * Grouped values: This returns an ordered hash of the values and groups them by the <tt>:group</tt> option.  It takes either a column name, or the name
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
      #     of a belongs_to association.
      #
      #       values = Person.maximum(:age, :group => 'last_name')
      #       puts values["Drake"]
      #       => 43
      #
      #       drake  = Family.find_by_last_name('Drake')
      #       values = Person.maximum(:age, :group => :family) # Person belongs_to :family
      #       puts values[drake]
      #       => 43
      #
      #       values.each do |family, max_age|
      #       ...
      #       end
      #
107
      # Options:
P
Pratik Naik 已提交
108
      # * <tt>:conditions</tt> - An SQL fragment like "administrator = 1" or [ "user_name = ?", username ]. See conditions in the intro to ActiveRecord::Base.
109
      # * <tt>:include</tt>: Eager loading, see Associations for details.  Since calculations don't load anything, the purpose of this is to access fields on joined tables in your conditions, order, or group clauses.
110
      # * <tt>:joins</tt> - An SQL fragment for additional joins like "LEFT JOIN comments ON comments.post_id = id". (Rarely needed).
111
      #   The records will be returned read-only since they will have attributes that do not correspond to the table's columns.
112 113 114
      # * <tt>:order</tt> - An SQL fragment like "created_at DESC, name" (really only used with GROUP BY calculations).
      # * <tt>:group</tt> - An attribute name by which the result should be grouped. Uses the GROUP BY SQL-clause.
      # * <tt>:select</tt> - By default, this is * as in SELECT * FROM, but can be changed if you for example want to do a join, but not
115
      #   include the joined columns.
116
      # * <tt>:distinct</tt> - Set this to true to make this a distinct calculation, such as SELECT COUNT(DISTINCT posts.id) ...
117
      #
118 119 120 121 122
      # Examples:
      #   Person.calculate(:count, :all) # The same as Person.count
      #   Person.average(:age) # SELECT AVG(age) FROM people...
      #   Person.minimum(:age, :conditions => ['last_name != ?', 'Drake']) # Selects the minimum age for everyone with a last name other than 'Drake'
      #   Person.minimum(:age, :having => 'min(age) > 17', :group => :last_name) # Selects the minimum age for any family without any minors
123
      #   Person.sum("2 * age")
124
      def calculate(operation, column_name, options = {})
125
        validate_calculation_options(operation, options)
126
        operation = operation.to_s.downcase
127 128 129 130 131 132 133 134 135 136 137

        scope = scope(:find)

        merged_includes = merge_includes(scope ? scope[:include] : [], options[:include])
        joins = construct_join(options[:joins], scope)

        if merged_includes.any?
          join_dependency = ActiveRecord::Associations::ClassMethods::JoinDependency.new(self, merged_includes, joins)
          joins << join_dependency.join_associations.collect{|join| join.association_join }.join
        end

138
        if operation == "count"
139 140 141 142 143 144 145 146 147 148 149
          if merged_includes.any?
            distinct = true
            column_name = options[:select] || primary_key
          end

          distinct = nil if column_name.to_s =~ /\s*DISTINCT\s+/i
          distinct ||= options[:distinct]
        else
          distinct = nil
        end

150
        catch :invalid_query do
151 152 153 154 155 156 157
          relation = arel_table((scope && scope[:from]) || options[:from])

          relation.join(joins)

          relation.where(construct_conditions(options[:conditions], scope))
          relation.where(construct_arel_limited_ids_condition(options, join_dependency)) if join_dependency && !using_limitable_reflections?(join_dependency.reflections) && ((scope && scope[:limit]) || options[:limit])

158
          relation.order(options[:order])
159 160
          relation.take(options[:limit])
          relation.skip(options[:offset])
161

162
          if options[:group]
163
            return execute_grouped_calculation(operation, column_name, options, relation)
164
          else
165
            return execute_simple_calculation(operation, column_name, options.merge(:distinct => distinct), relation)
166
          end
167
        end
168
        0
169 170
      end

171
      def execute_simple_calculation(operation, column_name, options, relation) #:nodoc:
172 173 174
        column = if column_names.include?(column_name.to_s)
          Arel::Attribute.new(arel_table(options[:from] || table_name),
                              options[:select] || column_name)
175
        else
176 177
          Arel::SqlLiteral.new(options[:select] ||
                               (column_name == :all ? "*" : column_name.to_s))
178 179
        end

180
        relation.project(operation == 'count' ? column.count(options[:distinct]) : column.send(operation))
181

182
        type_cast_calculated_value(connection.select_value(relation.to_sql), column_for(column_name), operation)
183 184
      end

185
      def execute_grouped_calculation(operation, column_name, options, relation) #:nodoc:
186 187 188 189 190 191 192 193 194 195
        group_attr      = options[:group].to_s
        association     = reflect_on_association(group_attr.to_sym)
        associated      = association && association.macro == :belongs_to # only count belongs_to associations
        group_field     = associated ? association.primary_key_name : group_attr
        group_alias     = column_alias_for(group_field)
        group_column    = column_for group_field

        options[:group] = connection.adapter_name == 'FrontBase' ?  group_alias : group_field

        aggregate_alias = column_alias_for(operation, column_name)
196

197 198 199 200 201
        options[:select] = (operation == 'count' && column_name == :all) ?
          "COUNT(*) AS count_all" :
          Arel::Attribute.new(arel_table, column_name).send(operation).as(aggregate_alias).to_sql

        options[:select] <<  ", #{group_field} AS #{group_alias}"
202

203 204 205 206
        relation.project(options[:select])
        relation.group(construct_group(options[:group], options[:having], nil))

        calculated_data = connection.select_all(relation.to_sql)
207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222

        if association
          key_ids     = calculated_data.collect { |row| row[group_alias] }
          key_records = association.klass.base_class.find(key_ids)
          key_records = key_records.inject({}) { |hsh, r| hsh.merge(r.id => r) }
        end

        calculated_data.inject(ActiveSupport::OrderedHash.new) do |all, row|
          key   = type_cast_calculated_value(row[group_alias], group_column)
          key   = key_records[key] if associated
          value = row[aggregate_alias]
          all[key] = type_cast_calculated_value(value, column_for(column_name), operation)
          all
        end
      end

223
     protected
224
        def construct_count_options_from_args(*args)
225 226
          options     = {}
          column_name = :all
227

228 229
          # We need to handle
          #   count()
230
          #   count(:column_name=:all)
231 232
          #   count(options={})
          #   count(column_name=:all, options={})
233
          #   selects specified by scopes
234
          case args.size
235 236
          when 0
            column_name = scope(:find)[:select] if scope(:find)
237
          when 1
238 239 240 241 242 243
            if args[0].is_a?(Hash)
              column_name = scope(:find)[:select] if scope(:find)
              options = args[0]
            else
              column_name = args[0]
            end
244
          when 2
245 246
            column_name, options = args
          else
247
            raise ArgumentError, "Unexpected parameters passed to count(): #{args.inspect}"
248 249 250
          end

          [column_name || :all, options]
251
        end
252

253 254

      private
D
David Heinemeier Hansson 已提交
255
        def validate_calculation_options(operation, options = {})
256
          options.assert_valid_keys(CALCULATIONS_OPTIONS)
D
David Heinemeier Hansson 已提交
257
        end
258

P
Pratik Naik 已提交
259 260 261 262 263 264 265 266
        # Converts the given keys to the value that the database adapter returns as
        # a usable column name:
        #
        #   column_alias_for("users.id")                 # => "users_id"
        #   column_alias_for("sum(id)")                  # => "sum_id"
        #   column_alias_for("count(distinct users.id)") # => "count_distinct_users_id"
        #   column_alias_for("count(*)")                 # => "count_all"
        #   column_alias_for("count", "id")              # => "count_id"
D
David Heinemeier Hansson 已提交
267
        def column_alias_for(*keys)
268 269 270 271 272 273 274 275
          table_name = keys.join(' ')
          table_name.downcase!
          table_name.gsub!(/\*/, 'all')
          table_name.gsub!(/\W+/, ' ')
          table_name.strip!
          table_name.gsub!(/ +/, '_')

          connection.table_alias_for(table_name)
D
David Heinemeier Hansson 已提交
276
        end
277

D
David Heinemeier Hansson 已提交
278 279 280 281
        def column_for(field)
          field_name = field.to_s.split('.').last
          columns.detect { |c| c.name.to_s == field_name }
        end
282

D
David Heinemeier Hansson 已提交
283 284
        def type_cast_calculated_value(value, column, operation = nil)
          case operation
285
            when 'count' then value.to_i
286
            when 'sum'   then type_cast_using_column(value || '0', column)
287
            when 'average'   then value && (value.is_a?(Fixnum) ? value.to_f : value).to_d
288
            else type_cast_using_column(value, column)
D
David Heinemeier Hansson 已提交
289
          end
290
        end
291 292 293 294

        def type_cast_using_column(value, column)
          column ? column.type_cast(value) : value
        end
295 296
    end
  end
297
end