Class: Arel::SelectManager
Defined Under Namespace
Classes: Row
Instance Attribute Summary
Attributes inherited from TreeManager
#ast, #engine, #visitor
Instance Method Summary
collapse
Methods included from Crud
#delete, #update
Methods inherited from TreeManager
#initialize_copy, #to_dot, #to_sql, #where
Constructor Details
#initialize(engine, table = nil) ⇒ SelectManager
Returns a new instance of SelectManager.
5
6
7
8
9
10
|
# File 'lib/arel/select_manager.rb', line 5
def initialize engine, table = nil
super(engine)
@ast = Nodes::SelectStatement.new
@ctx = @ast.cores.last
from table
end
|
Instance Method Details
#constraints ⇒ Object
16
17
18
|
# File 'lib/arel/select_manager.rb', line 16
def constraints
@ctx.wheres
end
|
#except(other) ⇒ Object
Also known as:
minus
154
155
156
|
# File 'lib/arel/select_manager.rb', line 154
def except other
Nodes::Except.new ast, other.ast
end
|
#exists ⇒ Object
Produces an Arel::Nodes::Exists node
27
28
29
|
# File 'lib/arel/select_manager.rb', line 27
def exists
Arel::Nodes::Exists.new @ast
end
|
#from(table) ⇒ Object
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
# File 'lib/arel/select_manager.rb', line 70
def from table
table = Nodes::SqlLiteral.new(table) if String === table
if @ctx.froms
source = @ctx.froms
if Nodes::SqlLiteral === table && Nodes::Join === source
source.left = table
table = source
end
end
@ctx.froms = table
self
end
|
#group(*columns) ⇒ Object
59
60
61
62
63
64
65
66
67
68
|
# File 'lib/arel/select_manager.rb', line 59
def group *columns
columns.each do |column|
column = Nodes::SqlLiteral.new(column) if String === column
column = Nodes::SqlLiteral.new(column.to_s) if Symbol === column
@ctx.groups.push Nodes::Group.new column
end
self
end
|
#having(expr) ⇒ Object
100
101
102
103
104
105
|
# File 'lib/arel/select_manager.rb', line 100
def having expr
expr = Nodes::SqlLiteral.new(expr) if String === expr
@ctx.having = Nodes::Having.new(expr)
self
end
|
#insert(values) ⇒ Object
FIXME: this method should go away
205
206
207
208
209
210
211
212
213
214
215
216
217
218
|
# File 'lib/arel/select_manager.rb', line 205
def insert values
im = InsertManager.new @engine
table = @ctx.froms
primary_key_name = (primary_key = table.primary_key) && primary_key.name
primary_key_value = primary_key && values.is_a?(Hash) && values[primary_key]
im.into table
im.insert values
@engine.connection.insert im.to_sql, 'AREL', primary_key_name, primary_key_value
end
|
#intersect(other) ⇒ Object
150
151
152
|
# File 'lib/arel/select_manager.rb', line 150
def intersect other
Nodes::Intersect.new ast, other.ast
end
|
#join(relation, klass = Nodes::InnerJoin) ⇒ Object
88
89
90
91
92
93
94
95
96
97
98
|
# File 'lib/arel/select_manager.rb', line 88
def join relation, klass = Nodes::InnerJoin
return self unless relation
case relation
when String, Nodes::SqlLiteral
raise if relation.blank?
from Nodes::StringJoin.new(@ctx.froms, relation)
else
from klass.new(@ctx.froms, relation, nil)
end
end
|
#join_sql ⇒ Object
165
166
167
168
169
170
|
# File 'lib/arel/select_manager.rb', line 165
def join_sql
return nil unless @ctx.froms
viz = Visitors::JoinSql.new @engine
Nodes::SqlLiteral.new viz.accept @ctx
end
|
#joins(manager) ⇒ Object
178
179
180
181
182
183
184
|
# File 'lib/arel/select_manager.rb', line 178
def joins manager
if $VERBOSE
warn "joins is deprecated and will be removed in 2.2"
warn "please remove your call to joins from #{caller.first}"
end
manager.join_sql
end
|
#lock(locking = Arel.sql('FOR UPDATE')) ⇒ Object
37
38
39
40
41
42
43
44
45
46
47
48
|
# File 'lib/arel/select_manager.rb', line 37
def lock locking = Arel.sql('FOR UPDATE')
case locking
when true
locking = Arel.sql('FOR UPDATE')
when Arel::Nodes::SqlLiteral
when String
locking = Arel.sql locking
end
@ast.lock = Nodes::Lock.new(locking)
self
end
|
#locked ⇒ Object
50
51
52
|
# File 'lib/arel/select_manager.rb', line 50
def locked
@ast.lock
end
|
#on(*exprs) ⇒ Object
54
55
56
57
|
# File 'lib/arel/select_manager.rb', line 54
def on *exprs
@ctx.froms.constraint = Nodes::On.new(collapse(exprs))
self
end
|
#order(*expr) ⇒ Object
116
117
118
119
120
121
122
|
# File 'lib/arel/select_manager.rb', line 116
def order *expr
@ast.orders.concat expr.map { |x|
String === x || Symbol === x ? Nodes::SqlLiteral.new(x.to_s) : x
}
self
end
|
#orders ⇒ Object
124
125
126
|
# File 'lib/arel/select_manager.rb', line 124
def orders
@ast.orders
end
|
#project(*projections) ⇒ Object
107
108
109
110
111
112
113
114
|
# File 'lib/arel/select_manager.rb', line 107
def project *projections
@ctx.projections.concat projections.map { |x|
[Symbol, String].include?(x.class) ? SqlLiteral.new(x.to_s) : x
}
self
end
|
#skip(amount) ⇒ Object
20
21
22
23
|
# File 'lib/arel/select_manager.rb', line 20
def skip amount
@ast.offset = Nodes::Offset.new(amount)
self
end
|
#take(limit) ⇒ Object
159
160
161
162
163
|
# File 'lib/arel/select_manager.rb', line 159
def take limit
@ast.limit = Nodes::Limit.new(limit)
@ctx.top = Nodes::Top.new(limit)
self
end
|
#taken ⇒ Object
12
13
14
|
# File 'lib/arel/select_manager.rb', line 12
def taken
@ast.limit && @ast.limit.expr
end
|
#to_a ⇒ Object
198
199
200
201
202
|
# File 'lib/arel/select_manager.rb', line 198
def to_a warn "to_a is deprecated. Please remove it from #{caller[0]}"
@engine.connection.send(:select, to_sql, 'AREL').map { |x| Row.new(x) }
end
|
#union(operation, other = nil) ⇒ Object
139
140
141
142
143
144
145
146
147
148
|
# File 'lib/arel/select_manager.rb', line 139
def union operation, other = nil
if other
node_class = Nodes.const_get("Union#{operation.to_s.capitalize}")
else
other = operation
node_class = Nodes::Union
end
node_class.new self.ast, other.ast
end
|
#where_clauses ⇒ Object
31
32
33
34
35
|
# File 'lib/arel/select_manager.rb', line 31
def where_clauses
to_sql = Visitors::ToSql.new @engine
@ctx.wheres.map { |c| to_sql.accept c }
end
|
#where_sql ⇒ Object
132
133
134
135
136
137
|
# File 'lib/arel/select_manager.rb', line 132
def where_sql
return if @ctx.wheres.empty?
viz = Visitors::WhereSql.new @engine
Nodes::SqlLiteral.new viz.accept @ctx
end
|
#wheres ⇒ Object
128
129
130
|
# File 'lib/arel/select_manager.rb', line 128
def wheres
Compatibility::Wheres.new @engine, @ctx.wheres
end
|