2010-08-12 14:24:16 -04:00
|
|
|
module Arel
|
|
|
|
class Table
|
2010-08-16 17:56:56 -04:00
|
|
|
include Arel::Crud
|
|
|
|
|
2010-08-12 14:24:16 -04:00
|
|
|
@engine = nil
|
|
|
|
class << self; attr_accessor :engine; end
|
|
|
|
|
2010-08-23 17:24:00 -04:00
|
|
|
attr_reader :name, :engine, :aliases, :table_alias
|
2010-08-12 18:40:58 -04:00
|
|
|
|
2010-08-12 17:55:31 -04:00
|
|
|
def initialize name, engine = Table.engine
|
2010-08-13 14:53:36 -04:00
|
|
|
@name = name
|
|
|
|
@engine = engine
|
|
|
|
@columns = nil
|
2010-08-18 19:32:32 -04:00
|
|
|
@aliases = []
|
2010-08-23 17:24:00 -04:00
|
|
|
@table_alias = nil
|
2010-09-14 16:39:33 -04:00
|
|
|
@primary_key = nil
|
2010-09-12 21:15:21 -04:00
|
|
|
|
2010-09-21 16:50:53 -04:00
|
|
|
if Hash === engine
|
|
|
|
@engine = engine[:engine] || Table.engine
|
|
|
|
@columns = attributes_for engine[:columns]
|
|
|
|
|
|
|
|
# Sometime AR sends an :as parameter to table, to let the table know
|
|
|
|
# that it is an Alias. We may want to override new, and return a
|
|
|
|
# TableAlias node?
|
2010-09-23 16:38:18 -04:00
|
|
|
@table_alias = engine[:as] unless engine[:as].to_s == name.to_s
|
2010-09-21 16:50:53 -04:00
|
|
|
end
|
2010-08-18 19:32:32 -04:00
|
|
|
end
|
|
|
|
|
2010-09-14 16:39:33 -04:00
|
|
|
def primary_key
|
|
|
|
@primary_key ||= self[@engine.connection.primary_key(name)]
|
|
|
|
end
|
|
|
|
|
2010-08-18 19:32:32 -04:00
|
|
|
def alias
|
|
|
|
Nodes::TableAlias.new("#{name}_2", self).tap do |node|
|
|
|
|
@aliases << node
|
|
|
|
end
|
2010-08-12 14:24:16 -04:00
|
|
|
end
|
|
|
|
|
2010-08-13 11:11:08 -04:00
|
|
|
def tm
|
2010-09-23 18:26:08 -04:00
|
|
|
SelectManager.new(@engine, self)
|
2010-08-13 00:21:20 -04:00
|
|
|
end
|
|
|
|
|
2010-09-08 20:32:44 -04:00
|
|
|
def from table
|
2010-09-23 18:26:08 -04:00
|
|
|
SelectManager.new(@engine, table)
|
2010-09-08 20:32:44 -04:00
|
|
|
end
|
|
|
|
|
2010-09-07 17:02:23 -04:00
|
|
|
def joins manager
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
2010-09-07 17:49:06 -04:00
|
|
|
def join relation, klass = Nodes::InnerJoin
|
2010-09-09 12:27:29 -04:00
|
|
|
return tm unless relation
|
|
|
|
|
2010-08-24 20:59:03 -04:00
|
|
|
sm = SelectManager.new(@engine)
|
|
|
|
case relation
|
|
|
|
when String, Nodes::SqlLiteral
|
|
|
|
raise if relation.blank?
|
|
|
|
sm.from Nodes::StringJoin.new(self, relation)
|
|
|
|
else
|
2010-09-07 17:49:06 -04:00
|
|
|
sm.from klass.new(self, relation, nil)
|
2010-08-24 20:59:03 -04:00
|
|
|
end
|
2010-08-18 19:32:32 -04:00
|
|
|
end
|
|
|
|
|
2010-09-07 19:07:37 -04:00
|
|
|
def group *columns
|
|
|
|
tm.group(*columns)
|
|
|
|
end
|
|
|
|
|
2010-09-06 20:17:49 -04:00
|
|
|
def order *expr
|
2010-09-06 20:18:10 -04:00
|
|
|
tm.order(*expr)
|
2010-09-06 20:17:49 -04:00
|
|
|
end
|
|
|
|
|
2010-08-13 14:30:24 -04:00
|
|
|
def where condition
|
|
|
|
tm.where condition
|
|
|
|
end
|
|
|
|
|
2010-09-08 16:25:42 -04:00
|
|
|
def project *things
|
2010-09-08 16:44:34 -04:00
|
|
|
tm.project(*things)
|
2010-08-13 17:13:38 -04:00
|
|
|
end
|
|
|
|
|
2010-08-16 18:02:37 -04:00
|
|
|
def take amount
|
|
|
|
tm.take amount
|
|
|
|
end
|
|
|
|
|
2010-09-08 18:29:22 -04:00
|
|
|
def having expr
|
|
|
|
tm.having expr
|
|
|
|
end
|
|
|
|
|
2010-08-12 17:55:31 -04:00
|
|
|
def columns
|
2010-09-21 16:50:53 -04:00
|
|
|
@columns ||=
|
|
|
|
attributes_for @engine.connection.columns(@name, "#{@name} Columns")
|
2010-08-12 17:55:31 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def [] name
|
2010-09-18 14:33:07 -04:00
|
|
|
return nil unless table_exists?
|
|
|
|
|
2010-09-10 19:58:19 -04:00
|
|
|
name = name.to_sym
|
2010-08-12 17:55:31 -04:00
|
|
|
columns.find { |column| column.name == name }
|
2010-08-12 14:24:16 -04:00
|
|
|
end
|
2010-09-18 14:33:07 -04:00
|
|
|
|
|
|
|
private
|
2010-09-21 16:50:53 -04:00
|
|
|
def attributes_for columns
|
|
|
|
return nil unless columns
|
|
|
|
|
|
|
|
columns.map do |column|
|
|
|
|
Attributes.for(column).new self, column.name.to_sym, column
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-09-18 14:33:07 -04:00
|
|
|
def table_exists?
|
|
|
|
@table_exists ||= tables.key?(@name) || engine.connection.table_exists?(name)
|
|
|
|
end
|
|
|
|
|
|
|
|
def tables
|
|
|
|
self.class.table_cache(@engine)
|
|
|
|
end
|
|
|
|
|
|
|
|
@@table_cache = nil
|
|
|
|
def self.table_cache engine # :nodoc:
|
|
|
|
@@table_cache ||= Hash[engine.connection.tables.map { |x| [x,true] }]
|
|
|
|
end
|
2010-08-12 14:24:16 -04:00
|
|
|
end
|
|
|
|
end
|