Class: Sequel::SQL::Expression

Inherits:
Object
  • Object
show all
Defined in:
lib/sequel/sql.rb,
lib/sequel/extensions/eval_inspect.rb

Overview

Base class for all SQL expression objects.

Class Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Class Attribute Details

.comparison_attrsObject (readonly)

All attributes used for equality and hash methods.



82
83
84
# File 'lib/sequel/sql.rb', line 82

def comparison_attrs
  @comparison_attrs
end

Class Method Details

.attr_reader(*args) ⇒ Object

Expression objects are assumed to be value objects, where their attribute values can’t change after assignment. In order to make it easy to define equality and hash methods, subclass instances assume that the only values that affect the results of such methods are the values of the object’s attributes.



89
90
91
92
# File 'lib/sequel/sql.rb', line 89

def attr_reader(*args)
  super
  comparison_attrs.concat(args)
end

.inherited(subclass) ⇒ Object

Copy the comparison_attrs into the subclass.



95
96
97
98
# File 'lib/sequel/sql.rb', line 95

def inherited(subclass)
  super
  subclass.instance_variable_set(:@comparison_attrs, comparison_attrs.dup)
end

Instance Method Details

#==(other) ⇒ Object

Alias of eql?



114
115
116
# File 'lib/sequel/sql.rb', line 114

def ==(other)
  eql?(other)
end

#eql?(other) ⇒ Boolean

Returns true if the receiver is the same expression as the the other expression.

Returns:

  • (Boolean)


120
121
122
# File 'lib/sequel/sql.rb', line 120

def eql?(other)
  other.is_a?(self.class) && !self.class.comparison_attrs.find{|a| send(a) != other.send(a)}
end

#hashObject

Make sure that the hash value is the same if the attributes are the same.



125
126
127
# File 'lib/sequel/sql.rb', line 125

def hash
  ([self.class] + self.class.comparison_attrs.map{|x| send(x)}).hash
end

#inspectObject

Attempt to produce a string suitable for eval, such that:

eval(obj.inspect) == obj


131
132
133
# File 'lib/sequel/sql.rb', line 131

def inspect
  "#<#{self.class} #{instance_variables.map{|iv| "#{iv}=>#{instance_variable_get(iv).inspect}"}.join(', ')}>"
end

#litObject

Returns self, because SQL::Expression already acts like LiteralString.



136
137
138
# File 'lib/sequel/sql.rb', line 136

def lit
  self
end

#sql_literal(ds) ⇒ Object

Alias of to_s



141
142
143
144
145
# File 'lib/sequel/sql.rb', line 141

def sql_literal(ds)
  s = String.new
  to_s_append(ds, s)
  s
end