aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/primitives/expression.rb
blob: bf674cc9e14085efc63545af1820a468a6fa6ef1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
module Arel
  class Expression < Attribute
    include Sql::Quoting
    
    attr_reader :attribute, :function_sql
    delegate :relation, :to => :attribute
    alias_method :name, :alias
    
    def initialize(attribute, function_sql, aliaz = nil, ancestor = nil)
      @attribute, @function_sql, @alias, @ancestor = attribute, function_sql, aliaz, ancestor
    end

    module Transformations
      def as(aliaz)
        Expression.new(attribute, function_sql, aliaz, self)
      end
      
      def bind(new_relation)
        new_relation == relation ? self : Expression.new(attribute.bind(new_relation), function_sql, @alias, self)
      end
          
      def to_attribute
        Attribute.new(relation, @alias, :ancestor => self)
      end
    end
    include Transformations
    
    def to_sql(formatter = nil)
      "#{function_sql}(#{attribute.to_sql})" + (@alias ? " AS #{quote_column_name(@alias)}" : '')
    end
    
    def aggregation?
      true
    end
    
    def ==(other)
      self.class    == other.class          and
      attribute     == other.attribute      and
      function_sql  == other.function_sql   and
      ancestor      == other.ancestor       and
      @alias        == other.alias
    end
  end
end