aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/algebra/predicates.rb
blob: 72167c2b27bb6ca7998b46eb50d8f4f6a05ed1a5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
module Arel
  class Predicate
    def or(other_predicate)
      Or.new(self, other_predicate)
    end

    def and(other_predicate)
      And.new(self, other_predicate)
    end
  end

  class Binary < Predicate
    attributes :operand1, :operand2
    deriving :initialize

    def ==(other)
      self.class === other          and
      @operand1  ==  other.operand1 and
      @operand2  ==  other.operand2
    end

    def bind(relation)
      self.class.new(operand1.find_correlate_in(relation), operand2.find_correlate_in(relation))
    end
  end

  class Equality < Binary
    def ==(other)
      Equality === other and
        ((operand1 == other.operand1 and operand2 == other.operand2) or
         (operand1 == other.operand2 and operand2 == other.operand1))
    end
  end

  class GreaterThanOrEqualTo  < Binary; end
  class GreaterThan           < Binary; end
  class LessThanOrEqualTo     < Binary; end
  class LessThan              < Binary; end
  class Match                 < Binary; end
  class In                    < Binary; end
end