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

183 lines
4 KiB
Ruby
Raw Normal View History

2010-08-12 17:55:31 -04:00
module Arel
module Attributes
class Attribute < Struct.new :relation, :name, :column
2010-09-14 18:20:24 -04:00
include Arel::Expressions
def not_eq other
Nodes::NotEqual.new self, other
end
def not_eq_any others
grouping_any :not_eq, others
end
def not_eq_all others
grouping_all :not_eq, others
end
2010-08-12 18:22:26 -04:00
def eq other
Nodes::Equality.new self, other
end
2010-09-29 12:54:13 -04:00
def eq_any others
grouping_any :eq, others
end
2010-09-29 12:54:13 -04:00
def eq_all others
grouping_all :eq, others
2010-09-29 12:54:13 -04:00
end
def in other
2010-09-20 19:23:23 -04:00
case other
when Arel::SelectManager
Nodes::In.new self, other.to_a.map { |x| x.id }
when Range
if other.exclude_end?
left = Nodes::GreaterThanOrEqual.new(self, other.min)
right = Nodes::LessThan.new(self, other.max + 1)
Nodes::And.new left, right
else
Nodes::Between.new(self, Nodes::And.new(other.min, other.max))
end
else
Nodes::In.new self, other
end
end
2010-09-07 19:37:11 -04:00
def in_any others
grouping_any :in, others
end
def in_all others
grouping_all :in, others
end
def not_in other
case other
when Arel::SelectManager
Nodes::NotIn.new self, other.to_a.map { |x| x.id }
when Range
if other.exclude_end?
left = Nodes::LessThan.new(self, other.min)
right = Nodes::GreaterThanOrEqual.new(self, other.max)
Nodes::Or.new left, right
else
left = Nodes::LessThan.new(self, other.min)
right = Nodes::GreaterThan.new(self, other.max)
Nodes::Or.new left, right
end
else
Nodes::NotIn.new self, other
end
end
def not_in_any others
grouping_any :not_in, others
end
def not_in_all others
grouping_all :not_in, others
end
def matches other
Nodes::Matches.new self, other
end
def matches_any others
grouping_any :matches, others
end
def matches_all others
grouping_all :matches, others
end
def does_not_match other
Nodes::DoesNotMatch.new self, other
end
def does_not_match_any others
grouping_any :does_not_match, others
end
def does_not_match_all others
grouping_all :does_not_match, others
end
2010-09-10 14:39:50 -04:00
def gteq right
Nodes::GreaterThanOrEqual.new self, right
end
2010-09-10 14:47:03 -04:00
def gteq_any others
grouping_any :gteq, others
end
def gteq_all others
grouping_all :gteq, others
end
2010-09-10 14:47:03 -04:00
def gt right
Nodes::GreaterThan.new self, right
end
def gt_any others
grouping_any :gt, others
end
def gt_all others
grouping_all :gt, others
end
def lt right
Nodes::LessThan.new self, right
end
def lt_any others
grouping_any :lt, others
end
def lt_all others
grouping_all :lt, others
end
def lteq right
Nodes::LessThanOrEqual.new self, right
end
def lteq_any others
grouping_any :lteq, others
end
def lteq_all others
grouping_all :lteq, others
end
private
def grouping_any method_id, others
first = send method_id, others.shift
Nodes::Grouping.new others.inject(first) { |memo,expr|
Nodes::Or.new(memo, send(method_id, expr))
}
end
def grouping_all method_id, others
first = send method_id, others.shift
Nodes::Grouping.new others.inject(first) { |memo,expr|
Nodes::And.new(memo, send(method_id, expr))
}
end
2010-08-12 17:55:31 -04:00
end
2010-08-12 18:22:26 -04:00
class String < Attribute; end
class Time < Attribute; end
2010-08-12 17:55:31 -04:00
class Boolean < Attribute; end
class Decimal < Attribute; end
2010-08-12 18:22:26 -04:00
class Float < Attribute; end
2010-08-12 17:55:31 -04:00
class Integer < Attribute; end
end
2010-09-07 19:37:11 -04:00
Attribute = Attributes::Attribute
2010-08-12 17:55:31 -04:00
end