Class: Arel::TreeManager
- Inherits:
-
Object
- Object
- Arel::TreeManager
- Includes:
- FactoryMethods
- Defined in:
- lib/arel/tree_manager.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#ast ⇒ Object
readonly
Returns the value of attribute ast.
-
#bind_values ⇒ Object
Returns the value of attribute bind_values.
-
#engine ⇒ Object
readonly
Returns the value of attribute engine.
Instance Method Summary collapse
-
#initialize ⇒ TreeManager
constructor
A new instance of TreeManager.
- #initialize_copy(other) ⇒ Object
- #to_dot ⇒ Object
- #to_sql(engine = Table.engine) ⇒ Object
- #where(expr) ⇒ Object
Methods included from FactoryMethods
#create_and, #create_false, #create_join, #create_on, #create_string_join, #create_table_alias, #create_true, #grouping, #lower
Constructor Details
#initialize ⇒ TreeManager
Returns a new instance of TreeManager.
11 12 13 14 |
# File 'lib/arel/tree_manager.rb', line 11 def initialize @ctx = nil @bind_values = [] end |
Instance Attribute Details
#ast ⇒ Object (readonly)
Returns the value of attribute ast.
7 8 9 |
# File 'lib/arel/tree_manager.rb', line 7 def ast @ast end |
#bind_values ⇒ Object
Returns the value of attribute bind_values.
9 10 11 |
# File 'lib/arel/tree_manager.rb', line 9 def bind_values @bind_values end |
#engine ⇒ Object (readonly)
Returns the value of attribute engine.
7 8 9 |
# File 'lib/arel/tree_manager.rb', line 7 def engine @engine end |
Instance Method Details
#initialize_copy(other) ⇒ Object
28 29 30 31 |
# File 'lib/arel/tree_manager.rb', line 28 def initialize_copy other super @ast = @ast.clone end |
#to_dot ⇒ Object
16 17 18 19 20 |
# File 'lib/arel/tree_manager.rb', line 16 def to_dot collector = Arel::Collectors::PlainString.new collector = Visitors::Dot.new.accept @ast, collector collector.value end |
#to_sql(engine = Table.engine) ⇒ Object
22 23 24 25 26 |
# File 'lib/arel/tree_manager.rb', line 22 def to_sql engine = Table.engine collector = Arel::Collectors::SQLString.new collector = engine.connection.visitor.accept @ast, collector collector.value end |
#where(expr) ⇒ Object
33 34 35 36 37 38 39 |
# File 'lib/arel/tree_manager.rb', line 33 def where expr if Arel::TreeManager === expr expr = expr.ast end @ctx.wheres << expr self end |