calculations.rb 10.7 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

111 112
    # This method is designed to perform select by a single column as direct SQL query
    # Returns <tt>Array</tt> with values of the specified column name
113
    # The values has same data type as column.
114 115 116 117 118
    #
    # Examples:
    #
    #   Person.pluck(:id) # SELECT people.id FROM people
    #   Person.uniq.pluck(:role) # SELECT DISTINCT role FROM people
119
    #   Person.where(:age => 21).limit(5).pluck(:id) # SELECT people.id FROM people WHERE people.age = 21 LIMIT 5
120 121
    #
    def pluck(column_name)
122 123
      key = column_name.to_s.split('.', 2).last

124 125 126
      if column_name.is_a?(Symbol) && column_names.include?(column_name.to_s)
        column_name = "#{table_name}.#{column_name}"
      end
127

128
      result = klass.connection.select_all(select(column_name).arel, nil, bind_values)
129 130 131 132 133 134 135 136 137 138
      types  = result.column_types.merge klass.column_types
      column = types[key]

      result.map do |attributes|
        value = klass.initialize_attributes(attributes)[key]
        if column
          column.type_cast value
        else
          value
        end
139 140 141
      end
    end

142 143 144
    private

    def perform_calculation(operation, column_name, options = {})
145 146
      operation = operation.to_s.downcase

147
      distinct = options[:distinct]
148

149
      if operation == "count"
150 151
        column_name ||= (select_for_count || :all)

152
        unless arel.ast.grep(Arel::Nodes::OuterJoin).empty?
153 154
          distinct = true
        end
155

156 157
        column_name = primary_key if column_name == :all && distinct

158
        distinct = nil if column_name =~ /\s*DISTINCT\s+/i
159 160
      end

161
      if group_values.any?
162
        execute_grouped_calculation(operation, column_name, distinct)
163
      else
N
Neeraj Singh 已提交
164
        execute_simple_calculation(operation, column_name, distinct)
165
      end
P
Pratik Naik 已提交
166 167
    end

168
    def aggregate_column(column_name)
169
      if @klass.column_names.include?(column_name.to_s)
170
        Arel::Attribute.new(@klass.unscoped.table, column_name)
171
      else
172
        Arel.sql(column_name == :all ? "*" : column_name.to_s)
173
      end
174 175
    end

176 177 178 179
    def operation_over_aggregate_column(column, operation, distinct)
      operation == 'count' ? column.count(distinct) : column.send(operation)
    end

180
    def execute_simple_calculation(operation, column_name, distinct) #:nodoc:
181
      # Postgresql doesn't like ORDER BY when there are no GROUP BY
182
      relation = reorder(nil)
183

184 185 186
      if operation == "count" && (relation.limit_value || relation.offset_value)
        # Shortcut when limit is zero.
        return 0 if relation.limit_value == 0
187

188 189 190
        query_builder = build_count_subquery(relation, column_name, distinct)
      else
        column = aggregate_column(column_name)
191

192
        select_value = operation_over_aggregate_column(column, operation, distinct)
193

194 195 196
        relation.select_values = [select_value]

        query_builder = relation.arel
197 198
      end

199 200
      result = @klass.connection.select_value(query_builder, nil, relation.bind_values)
      type_cast_calculated_value(result, column_for(column_name), operation)
201 202
    end

203
    def execute_grouped_calculation(operation, column_name, distinct) #:nodoc:
204
      group_attr      = group_values
205 206
      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
207
      group_fields  = Array(associated ? association.foreign_key : group_attr)
A
Aaron Patterson 已提交
208 209 210 211
      group_aliases = group_fields.map { |field| column_alias_for(field) }
      group_columns = group_aliases.zip(group_fields).map { |aliaz,field|
        [aliaz, column_for(field)]
      }
212

213
      group = @klass.connection.adapter_name == 'FrontBase' ? group_aliases : group_fields
214

215 216
      if operation == 'count' && column_name == :all
        aggregate_alias = 'count_all'
217
      else
218
        aggregate_alias = column_alias_for(operation, column_name)
219 220
      end

A
Aaron Patterson 已提交
221 222 223 224 225 226
      select_values = [
        operation_over_aggregate_column(
          aggregate_column(column_name),
          operation,
          distinct).as(aggregate_alias)
      ]
227
      select_values += select_values unless having_values.empty?
A
Aaron Patterson 已提交
228 229 230 231 232

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

233
      relation = except(:group).group(group.join(','))
A
Aaron Patterson 已提交
234
      relation.select_values = select_values
235

236
      calculated_data = @klass.connection.select_all(relation, nil, bind_values)
237 238

      if association
239
        key_ids     = calculated_data.collect { |row| row[group_aliases.first] }
240
        key_records = association.klass.base_class.find(key_ids)
241
        key_records = Hash[key_records.map { |r| [r.id, r] }]
242 243
      end

R
Raghunadh 已提交
244
      Hash[calculated_data.map do |row|
A
Aaron Patterson 已提交
245 246 247
        key   = group_columns.map { |aliaz, column|
          type_cast_calculated_value(row[aliaz], column)
        }
248
        key   = key.first if key.size == 1
E
Emilio Tagua 已提交
249 250 251
        key = key_records[key] if associated
        [key, type_cast_calculated_value(row[aggregate_alias], column_for(column_name), operation)]
      end]
252
    end
253

254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278
    # 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)
279 280 281
      case operation
        when 'count'   then value.to_i
        when 'sum'     then type_cast_using_column(value || '0', column)
282
        when 'average' then value.respond_to?(:to_d) ? value.to_d : value
283
        else type_cast_using_column(value, column)
284 285 286 287 288 289 290
      end
    end

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

P
Pratik Naik 已提交
291
    def select_for_count
292 293
      if select_values.present?
        select = select_values.join(", ")
294
        select if select !~ /[,*]/
P
Pratik Naik 已提交
295 296
      end
    end
297 298

    def build_count_subquery(relation, column_name, distinct)
299 300 301 302 303 304 305 306 307 308
      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)
309
    end
310 311
  end
end