Sha256: eea0a84695a7210a7842274aa53e33f2cb21da124f9bca6859051124484e10ad

Contents?: true

Size: 1.35 KB

Versions: 39

Compression:

Stored size: 1.35 KB

Contents

# frozen_string_literal: true

module Arel # :nodoc: all
  module Nodes
    ###
    # Abstract base class for all AST nodes
    class Node
      include Arel::FactoryMethods
      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

      ###
      # Factory method to create a Nodes::Grouping node that has an Nodes::Or
      # node as a child.
      def or(right)
        Nodes::Grouping.new Nodes::Or.new(self, right)
      end

      ###
      # Factory method to create an Nodes::And node.
      def and(right)
        Nodes::And.new [self, right]
      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`?  :'(
      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
      def each(&block)
        return enum_for(:each) unless block_given?

        ::Arel::Visitors::DepthFirst.new(block).accept self
      end
    end
  end
end

Version data entries

39 entries across 39 versions & 4 rubygems

Version Path
activerecord-6.0.6.1 lib/arel/nodes/node.rb
activerecord-6.0.6 lib/arel/nodes/node.rb
activerecord-6.0.5.1 lib/arel/nodes/node.rb
activerecord-6.0.5 lib/arel/nodes/node.rb
activerecord-6.0.4.8 lib/arel/nodes/node.rb
activerecord-6.0.4.7 lib/arel/nodes/node.rb
activerecord-6.0.4.6 lib/arel/nodes/node.rb
activerecord-6.0.4.5 lib/arel/nodes/node.rb
activerecord-6.0.4.4 lib/arel/nodes/node.rb
activerecord-6.0.4.3 lib/arel/nodes/node.rb
activerecord-6.0.4.2 lib/arel/nodes/node.rb
activerecord-6.0.4.1 lib/arel/nodes/node.rb
activerecord-6.0.4 lib/arel/nodes/node.rb
activerecord-6.0.3.7 lib/arel/nodes/node.rb
activerecord-6.0.3.6 lib/arel/nodes/node.rb
activerecord-6.0.3.5 lib/arel/nodes/node.rb
activerecord-6.0.3.4 lib/arel/nodes/node.rb
activerecord-6.0.3.3 lib/arel/nodes/node.rb
activerecord-6.0.3.2 lib/arel/nodes/node.rb
activerecord-6.0.3.1 lib/arel/nodes/node.rb