calculations.rb 11.6 KB
Newer Older
1
require 'active_support/core_ext/object/blank'
2
require 'active_support/core_ext/object/try'
3

4
module ActiveRecord
5
  module Calculations
6 7 8 9 10 11 12 13 14 15 16 17 18
    # Count the records.
    #
    #   Person.count
    #   # => the total count of all people
    #
    #   Person.count(:age)
    #   # => returns the total count of all people whose age is present in database
    #
    #   Person.count(:all)
    #   # => performs a COUNT(*) (:all is an alias for '*')
    #
    #   Person.count(:age, distinct: true)
    #   # => counts the number of different age values
P
Pratik Naik 已提交
19 20
    def count(column_name = nil, options = {})
      column_name, options = nil, column_name if column_name.is_a?(Hash)
21
      calculate(:count, column_name, options)
22 23
    end

24 25
    # Calculates the average value on a given column. Returns +nil+ if there's
    # no row. See +calculate+ for examples with options.
26 27 28
    #
    #   Person.average('age') # => 35.8
    def average(column_name, options = {})
29
      calculate(:average, column_name, options)
30 31
    end

32
    # Calculates the minimum value on a given column. The value is returned
33 34 35 36 37
    # with the same data type of the column, or +nil+ if there's no row. See
    # +calculate+ for examples with options.
    #
    #   Person.minimum('age') # => 7
    def minimum(column_name, options = {})
38
      calculate(:minimum, column_name, options)
39 40
    end

41 42 43 44 45 46
    # 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.
    #
    #   Person.maximum('age') # => 93
    def maximum(column_name, options = {})
47
      calculate(:maximum, column_name, options)
48 49
    end

50 51 52 53 54
    # 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.
    #
    #   Person.sum('age') # => 4562
55 56 57 58 59 60
    def sum(*args)
      if block_given?
        self.to_a.sum(*args) {|*block_args| yield(*block_args)}
      else
        calculate(:sum, *args)
      end
61 62
    end

63
    # This calculates aggregate values in the given column. Methods for count, sum, average,
64
    # minimum, and maximum have been added as shortcuts.
65 66
    #
    # There are two basic forms of output:
67
    #
68
    #   * Single aggregate value: The single value is type cast to Fixnum for COUNT, Float
69
    #     for AVG, and the given column's type for everything else.
70
    #
71 72 73 74
    #   * Grouped values: This returns an ordered hash of the values and groups them. It
    #     takes either a column name, or the name of a belongs_to association.
    #
    #       values = Person.group('last_name').maximum(:age)
75 76 77 78
    #       puts values["Drake"]
    #       => 43
    #
    #       drake  = Family.find_by_last_name('Drake')
79
    #       values = Person.group(:family).maximum(:age) # Person belongs_to :family
80 81 82 83 84 85 86 87 88 89
    #       puts values[drake]
    #       => 43
    #
    #       values.each do |family, max_age|
    #       ...
    #       end
    #
    # Examples:
    #   Person.calculate(:count, :all) # The same as Person.count
    #   Person.average(:age) # SELECT AVG(age) FROM people...
90 91
    #
    #   # Selects the minimum age for any family without any minors
92
    #   Person.group(:last_name).having("min(age) > 17").minimum(:age)
93
    #
94
    #   Person.sum("2 * age")
95
    def calculate(operation, column_name, options = {})
96
      relation = with_default_scope
97

98 99 100
      if relation.equal?(self)
        if eager_loading? || (includes_values.present? && references_eager_loaded_tables?)
          construct_relation_for_association_calculations.calculate(operation, column_name, options)
101
        else
102
          perform_calculation(operation, column_name, options)
103
        end
104 105
      else
        relation.calculate(operation, column_name, options)
106 107 108 109 110
      end
    rescue ThrowResult
      0
    end

J
Jeremy Kemper 已提交
111 112 113 114 115 116 117 118 119 120 121 122
    # Use <tt>pluck</tt> as a shortcut to select a single attribute without
    # loading a bunch of records just to grab one attribute you want.
    #
    #   Person.pluck(:name)
    #
    # instead of
    #
    #   Person.all.map(&:name)
    #
    # Pluck returns an <tt>Array</tt> of attribute values type-casted to match
    # the plucked column name, if it can be deduced. Plucking a SQL fragment
    # returns String values by default.
123 124 125
    #
    # Examples:
    #
J
Jeremy Kemper 已提交
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
    #   Person.pluck(:id)
    #   # SELECT people.id FROM people
    #   # => [1, 2, 3]
    #
    #   Person.uniq.pluck(:role)
    #   # SELECT DISTINCT role FROM people
    #   # => ['admin', 'member', 'guest']
    #
    #   Person.where(:age => 21).limit(5).pluck(:id)
    #   # SELECT people.id FROM people WHERE people.age = 21 LIMIT 5
    #   # => [2, 3]
    #
    #   Person.pluck('DATEDIFF(updated_at, created_at)')
    #   # SELECT DATEDIFF(updated_at, created_at) FROM people
    #   # => ['0', '27761', '173']
141 142
    #
    def pluck(column_name)
143 144
      key = column_name.to_s.split('.', 2).last

145 146 147
      if column_name.is_a?(Symbol) && column_names.include?(column_name.to_s)
        column_name = "#{table_name}.#{column_name}"
      end
148

149
      result = klass.connection.select_all(select(column_name).arel, nil, bind_values)
150
      column = klass.column_types[key] || result.column_types.values.first
151 152

      result.map do |attributes|
153
        raise ArgumentError, "Pluck expects to select just one attribute: #{attributes.inspect}" unless attributes.one?
154 155
        value = klass.initialize_attributes(attributes).values.first
        column ? column.type_cast(value) : value
156 157 158
      end
    end

T
twinturbo 已提交
159 160 161 162 163
    # Pluck all the ID's for the relation using the table's primary key
    #
    # Examples:
    #
    #   Person.ids # SELECT people.id FROM people
B
Ben Pickles 已提交
164
    #   Person.joins(:companies).ids # SELECT people.id FROM people INNER JOIN companies ON companies.person_id = people.id
T
twinturbo 已提交
165 166 167 168
    def ids
      pluck primary_key
    end

169 170 171
    private

    def perform_calculation(operation, column_name, options = {})
172 173
      operation = operation.to_s.downcase

174
      distinct = options[:distinct]
175

176
      if operation == "count"
177 178
        column_name ||= (select_for_count || :all)

179
        unless arel.ast.grep(Arel::Nodes::OuterJoin).empty?
180 181
          distinct = true
        end
182

183 184
        column_name = primary_key if column_name == :all && distinct

185
        distinct = nil if column_name =~ /\s*DISTINCT\s+/i
186 187
      end

188
      if group_values.any?
189
        execute_grouped_calculation(operation, column_name, distinct)
190
      else
N
Neeraj Singh 已提交
191
        execute_simple_calculation(operation, column_name, distinct)
192
      end
P
Pratik Naik 已提交
193 194
    end

195
    def aggregate_column(column_name)
196
      if @klass.column_names.include?(column_name.to_s)
197
        Arel::Attribute.new(@klass.unscoped.table, column_name)
198
      else
199
        Arel.sql(column_name == :all ? "*" : column_name.to_s)
200
      end
201 202
    end

203 204 205 206
    def operation_over_aggregate_column(column, operation, distinct)
      operation == 'count' ? column.count(distinct) : column.send(operation)
    end

207
    def execute_simple_calculation(operation, column_name, distinct) #:nodoc:
208
      # Postgresql doesn't like ORDER BY when there are no GROUP BY
209
      relation = reorder(nil)
210

211 212 213
      if operation == "count" && (relation.limit_value || relation.offset_value)
        # Shortcut when limit is zero.
        return 0 if relation.limit_value == 0
214

215 216 217
        query_builder = build_count_subquery(relation, column_name, distinct)
      else
        column = aggregate_column(column_name)
218

219
        select_value = operation_over_aggregate_column(column, operation, distinct)
220

221 222 223
        relation.select_values = [select_value]

        query_builder = relation.arel
224 225
      end

226 227
      result = @klass.connection.select_value(query_builder, nil, relation.bind_values)
      type_cast_calculated_value(result, column_for(column_name), operation)
228 229
    end

230
    def execute_grouped_calculation(operation, column_name, distinct) #:nodoc:
231
      group_attr      = group_values
232 233
      association     = @klass.reflect_on_association(group_attr.first.to_sym)
      associated      = group_attr.size == 1 && association && association.macro == :belongs_to # only count belongs_to associations
234
      group_fields  = Array(associated ? association.foreign_key : group_attr)
A
Aaron Patterson 已提交
235 236 237 238
      group_aliases = group_fields.map { |field| column_alias_for(field) }
      group_columns = group_aliases.zip(group_fields).map { |aliaz,field|
        [aliaz, column_for(field)]
      }
239

240
      group = @klass.connection.adapter_name == 'FrontBase' ? group_aliases : group_fields
241

242 243
      if operation == 'count' && column_name == :all
        aggregate_alias = 'count_all'
244
      else
245
        aggregate_alias = column_alias_for(operation, column_name)
246 247
      end

A
Aaron Patterson 已提交
248 249 250 251 252 253
      select_values = [
        operation_over_aggregate_column(
          aggregate_column(column_name),
          operation,
          distinct).as(aggregate_alias)
      ]
254
      select_values += select_values unless having_values.empty?
A
Aaron Patterson 已提交
255 256 257 258 259

      select_values.concat group_fields.zip(group_aliases).map { |field,aliaz|
        "#{field} AS #{aliaz}"
      }

260
      relation = except(:group).group(group.join(','))
A
Aaron Patterson 已提交
261
      relation.select_values = select_values
262

263
      calculated_data = @klass.connection.select_all(relation, nil, bind_values)
264 265

      if association
266
        key_ids     = calculated_data.collect { |row| row[group_aliases.first] }
267
        key_records = association.klass.base_class.find(key_ids)
268
        key_records = Hash[key_records.map { |r| [r.id, r] }]
269 270
      end

R
Raghunadh 已提交
271
      Hash[calculated_data.map do |row|
A
Aaron Patterson 已提交
272 273 274
        key   = group_columns.map { |aliaz, column|
          type_cast_calculated_value(row[aliaz], column)
        }
275
        key   = key.first if key.size == 1
E
Emilio Tagua 已提交
276 277 278
        key = key_records[key] if associated
        [key, type_cast_calculated_value(row[aggregate_alias], column_for(column_name), operation)]
      end]
279
    end
280

281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305
    # 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"
    def column_alias_for(*keys)
      table_name = keys.join(' ')
      table_name.downcase!
      table_name.gsub!(/\*/, 'all')
      table_name.gsub!(/\W+/, ' ')
      table_name.strip!
      table_name.gsub!(/ +/, '_')

      @klass.connection.table_alias_for(table_name)
    end

    def column_for(field)
      field_name = field.to_s.split('.').last
      @klass.columns.detect { |c| c.name.to_s == field_name }
    end

    def type_cast_calculated_value(value, column, operation = nil)
306 307 308
      case operation
        when 'count'   then value.to_i
        when 'sum'     then type_cast_using_column(value || '0', column)
309
        when 'average' then value.respond_to?(:to_d) ? value.to_d : value
310
        else type_cast_using_column(value, column)
311 312 313 314 315 316 317
      end
    end

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

P
Pratik Naik 已提交
318
    def select_for_count
319 320
      if select_values.present?
        select = select_values.join(", ")
321
        select if select !~ /[,*]/
P
Pratik Naik 已提交
322 323
      end
    end
324 325

    def build_count_subquery(relation, column_name, distinct)
326 327 328 329 330 331 332 333 334 335
      column_alias = Arel.sql('count_column')
      subquery_alias = Arel.sql('subquery_for_count')

      aliased_column = aggregate_column(column_name == :all ? 1 : column_name).as(column_alias)
      relation.select_values = [aliased_column]
      subquery = relation.arel.as(subquery_alias)

      sm = Arel::SelectManager.new relation.engine
      select_value = operation_over_aggregate_column(column_alias, 'count', distinct)
      sm.project(select_value).from(subquery)
336
    end
337 338
  end
end