Class: ArelExtensions::Nodes::Function

Inherits:
Arel::Nodes::Function
  • Object
show all
Includes:
Arel::Expressions, Arel::Math, Arel::OrderPredications, Predications
Defined in:
lib/arel_extensions/nodes/function.rb

Constant Summary collapse

RETURN_TYPE =

by default…

:string

Instance Method Summary collapse

Methods included from Predications

#cast, #imatches, #in, #matches, #not_in, #when

Instance Method Details

#!=(other) ⇒ Object



39
40
41
# File 'lib/arel_extensions/nodes/function.rb', line 39

def !=(other)
  Arel::Nodes::NotEqual.new self, Arel::Nodes.build_quoted(other, self)
end

#==(other) ⇒ Object



35
36
37
# File 'lib/arel_extensions/nodes/function.rb', line 35

def ==(other)
  Arel::Nodes::Equality.new self, Arel::Nodes.build_quoted(other, self)
end

#as(other) ⇒ Object



19
20
21
# File 'lib/arel_extensions/nodes/function.rb', line 19

def as other
  Arel::Nodes::As.new(self, Arel.sql(other))
end

#convert_to_date_node(object) ⇒ Object



113
114
115
116
117
118
119
120
121
122
123
124
125
126
# File 'lib/arel_extensions/nodes/function.rb', line 113

def convert_to_date_node(object)
  case object
  when Arel::Attributes::Attribute, Arel::Nodes::Node
    object
  when DateTime, Time
    Arel::Nodes.build_quoted(Date.new(object.year, object.month, object.day), self)
  when String
    Arel::Nodes.build_quoted(Date.parse(object), self)
  when Date
    Arel::Nodes.build_quoted(object, self)
  else
    raise(ArgumentError, "#{object.class} can not be converted to Date")
  end
end

#convert_to_datetime_node(object) ⇒ Object



128
129
130
131
132
133
134
135
136
137
138
139
140
141
# File 'lib/arel_extensions/nodes/function.rb', line 128

def convert_to_datetime_node(object)
  case object
  when Arel::Attributes::Attribute, Arel::Nodes::Node
    object
  when DateTime, Time
    Arel::Nodes.build_quoted(object, self)
  when String
    Arel::Nodes.build_quoted(Time.parse(object), self)
  when Date
    Arel::Nodes.build_quoted(Time.utc(object.year, object.month, object.day, 0, 0, 0), self)
  else
    raise(ArgumentError, "#{object.class} can not be converted to Datetime")
  end
end

#convert_to_node(object) ⇒ Object



58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# File 'lib/arel_extensions/nodes/function.rb', line 58

def convert_to_node(object)
  case object
  when Arel::Attributes::Attribute, Arel::Nodes::Node, Integer
    object
  when DateTime
    Arel::Nodes.build_quoted(object, self)
  when Time
    Arel::Nodes.build_quoted(object.strftime('%H:%M:%S'), self)
  when String, Symbol
    Arel::Nodes.build_quoted(object.to_s)
  when Date
    Arel::Nodes.build_quoted(object.to_s, self)
  when NilClass
    Arel.sql('NULL')
  when ActiveSupport::Duration
    Arel.sql(object.to_i)
  when Array
    Arel::Nodes::Grouping.new(object.map{|r| convert_to_node(e)})
  else
    raise(ArgumentError, "#{object.class} can not be converted to CONCAT arg")
  end
end

#convert_to_number(object) ⇒ Object



143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
# File 'lib/arel_extensions/nodes/function.rb', line 143

def convert_to_number(object)
  case object
  when ArelExtensions::Nodes::Duration
    object.with_interval = true
    object
  when Arel::Attributes::Attribute, Arel::Nodes::Node
    object
  when Integer
    object.to_i.abs
  when DateTime, Date, Time, String, ActiveSupport::Duration
    object.to_i.abs
  when NilClass
    0
  else
    raise(ArgumentError, "#{object.class} can not be converted to NUMBER arg")
  end
end

#convert_to_string_node(object) ⇒ Object



81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
# File 'lib/arel_extensions/nodes/function.rb', line 81

def convert_to_string_node(object)
  case object
  when Arel::Nodes::Node
    object
  when Integer
    Arel::Nodes.build_quoted(object.to_s)
  when Arel::Attributes::Attribute
    case self.type_of_attribute(object)
    when :date
      ArelExtensions::Nodes::Format.new [object, 'yyyy-mm-dd']
    when :time
      ArelExtensions::Nodes::Format.new [object, '%H:%M:%S']
    else
      object
    end
  when DateTime
    Arel::Nodes.build_quoted(object, self)
  when Time
    Arel::Nodes.build_quoted(object.strftime('%H:%M:%S'), self)
  when String
    Arel::Nodes.build_quoted(object)
  when Date
    Arel::Nodes.build_quoted(object, self)
  when NilClass
    Arel.sql(nil)
  when ActiveSupport::Duration
    Arel::Nodes.build_quoted(object.to_i.to_s)
  else
    raise(ArgumentError, "#{object.class} can not be converted to CONCAT arg")
  end
end

#exprObject



23
24
25
# File 'lib/arel_extensions/nodes/function.rb', line 23

def expr
   @expressions.first
end

#leftObject



27
28
29
# File 'lib/arel_extensions/nodes/function.rb', line 27

def left
  @expressions.first
end

#return_typeObject

overrides as to make new Node like AliasPredication



15
16
17
# File 'lib/arel_extensions/nodes/function.rb', line 15

def return_type
  self.class.const_get(:RETURN_TYPE)
end

#rightObject



31
32
33
# File 'lib/arel_extensions/nodes/function.rb', line 31

def right
  @expressions[1]
end

#type_of_attribute(att) ⇒ Object



43
44
45
46
47
48
49
50
51
52
53
54
55
56
# File 'lib/arel_extensions/nodes/function.rb', line 43

def type_of_attribute(att)
  case att
  when Arel::Attributes::Attribute
    begin
      Arel::Table.engine.connection.schema_cache.columns_hash(att.relation.table_name)[att.name.to_s].type
    rescue
      att
    end
  when ArelExtensions::Nodes::Function
    att.return_type
#        else
#          nil
  end
end