Sha256: 8232f451c2e1962f4f24194bbac4790c162243f9817075ebb55b7dbb7c588f2a

Contents?: true

Size: 1.86 KB

Versions: 11

Compression:

Stored size: 1.86 KB

Contents

module Arel
  module Nodes
    class Window < Arel::Nodes::Node
      include Arel::Expression
      attr_accessor :orders, :framing

      def initialize
        @orders = []
      end

      def order *expr
        # FIXME: We SHOULD NOT be converting these to SqlLiteral automatically
        @orders.concat expr.map { |x|
          String === x || Symbol === x ? Nodes::SqlLiteral.new(x.to_s) : x
        }
        self
      end

      def frame(expr)
        @framing = expr
      end

      def rows(expr = nil)
        frame(Rows.new(expr))
      end

      def range(expr = nil)
        frame(Range.new(expr))
      end

      def initialize_copy other
        super
        @orders = @orders.map { |x| x.clone }
      end

      def hash
        [@orders, @framing].hash
      end

      def eql? other
        self.class == other.class &&
          self.orders == other.orders &&
          self.framing == other.framing
      end
      alias :== :eql?
    end

    class NamedWindow < Window
      attr_accessor :name

      def initialize name
        super()
        @name = name
      end

      def initialize_copy other
        super
        @name = other.name.clone
      end

      def hash
        super ^ @name.hash
      end

      def eql? other
        super && self.name == other.name
      end
      alias :== :eql?
    end

    class Rows < Unary
      def initialize(expr = nil)
        super(expr)
      end
    end

    class Range < Unary
      def initialize(expr = nil)
        super(expr)
      end
    end

    class CurrentRow < Node
      def hash
        self.class.hash
      end

      def eql? other
        self.class == other.class
      end
    end

    class Preceding < Unary
      def initialize(expr = nil)
        super(expr)
      end
    end

    class Following < Unary
      def initialize(expr = nil)
        super(expr)
      end
    end
  end
end

Version data entries

11 entries across 11 versions & 3 rubygems

Version Path
angular-rails4-templates-0.4.1 vendor/ruby/2.1.0/gems/arel-5.0.1.20140414130214/lib/arel/nodes/window.rb
angular-rails4-templates-0.4.0 vendor/ruby/2.1.0/gems/arel-5.0.1.20140414130214/lib/arel/nodes/window.rb
angular-rails4-templates-0.3.0 vendor/ruby/2.1.0/gems/arel-5.0.1.20140414130214/lib/arel/nodes/window.rb
arel-5.0.1.20140414130214 lib/arel/nodes/window.rb
arel-4.0.2 lib/arel/nodes/window.rb
arel-5.0.0 lib/arel/nodes/window.rb
arel-4.0.1 lib/arel/nodes/window.rb
challah-1.0.0 vendor/bundle/gems/arel-4.0.0/lib/arel/nodes/window.rb
arel-4.0.0 lib/arel/nodes/window.rb
arel-4.0.0.beta2 lib/arel/nodes/window.rb
arel-4.0.0.beta1 lib/arel/nodes/window.rb