1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/activerecord/lib/arel/nodes/node.rb

51 lines
1.4 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
2018-02-24 01:45:50 -05:00
2018-02-24 02:41:47 -05:00
module Arel # :nodoc: all
2010-09-15 12:26:01 -04:00
module Nodes
###
# Abstract base class for all AST nodes
class Node
include Arel::FactoryMethods
2010-12-01 12:19:09 -05:00
include Enumerable
###
# Factory method to create a Nodes::Not node that has the recipient of
# the caller as a child.
def not
Nodes::Not.new self
end
2010-09-15 12:26:01 -04:00
###
# Factory method to create a Nodes::Grouping node that has an Nodes::Or
# node as a child.
2018-02-24 01:45:50 -05:00
def or(right)
2010-09-15 12:26:01 -04:00
Nodes::Grouping.new Nodes::Or.new(self, right)
end
###
# Factory method to create an Nodes::And node.
2018-02-24 01:45:50 -05:00
def and(right)
2010-12-09 17:48:28 -05:00
Nodes::And.new [self, right]
2010-09-15 12:26:01 -04:00
end
# FIXME: this method should go away. I don't like people calling
# to_sql on non-head nodes. This forces us to walk the AST until we
# can find a node that has a "relation" member.
#
# Maybe we should just use `Table.engine`? :'(
2018-02-24 01:45:50 -05:00
def to_sql(engine = Table.engine)
collector = Arel::Collectors::SQLString.new
collector = engine.connection.visitor.accept self, collector
collector.value
end
# Iterate through AST, nodes will be yielded depth-first
2018-02-24 01:45:50 -05:00
def each(&block)
2010-11-29 18:31:28 -05:00
return enum_for(:each) unless block_given?
::Arel::Visitors::DepthFirst.new(block).accept self
end
2010-09-15 12:26:01 -04:00
end
end
end