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/table.rb

140 lines
3.1 KiB
Ruby
Raw Normal View History

module Arel
2010-08-12 14:24:16 -04:00
class Table
include Arel::Crud
include Arel::FactoryMethods
2010-08-12 14:24:16 -04:00
@engine = nil
class << self; attr_accessor :engine; end
2010-09-27 16:59:50 -04:00
attr_accessor :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
@name = name.to_s
@engine = engine
@columns = nil
2010-08-18 19:32:32 -04:00
@aliases = []
@table_alias = nil
@primary_key = nil
2010-09-21 16:50:53 -04:00
if Hash === engine
@engine = engine[:engine] || Table.engine
# 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-11-16 19:47:34 -05:00
@table_alias = engine[:as] unless engine[:as].to_s == @name
2010-09-21 16:50:53 -04:00
end
2010-08-18 19:32:32 -04:00
end
def primary_key
@primary_key ||= begin
primary_key_name = @engine.connection.primary_key(name)
# some tables might be without primary key
primary_key_name && self[primary_key_name]
end
end
2010-11-24 15:01:05 -05:00
def alias name = "#{self.name}_2"
Nodes::TableAlias.new(name, self).tap do |node|
2010-08-18 19:32:32 -04:00
@aliases << node
end
2010-08-12 14:24:16 -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
2010-11-30 19:57:55 -05:00
if $VERBOSE
warn "joins is deprecated and will be removed in 3.0.0"
2010-11-30 19:57:55 -05:00
warn "please remove your call to joins from #{caller.first}"
end
2010-09-07 17:02:23 -04:00
nil
end
2010-09-07 17:49:06 -04:00
def join relation, klass = Nodes::InnerJoin
return from(self) unless relation
case relation
when String, Nodes::SqlLiteral
raise if relation.blank?
klass = Nodes::StringJoin
end
from create_join(self, relation, nil, klass)
2010-08-18 19:32:32 -04:00
end
2010-09-07 19:07:37 -04:00
def group *columns
from(self).group(*columns)
2010-09-07 19:07:37 -04:00
end
2010-09-06 20:17:49 -04:00
def order *expr
from(self).order(*expr)
2010-09-06 20:17:49 -04:00
end
def where condition
from(self).where condition
end
def project *things
from(self).project(*things)
2010-08-13 17:13:38 -04:00
end
2010-08-16 18:02:37 -04:00
def take amount
from(self).take amount
2010-08-16 18:02:37 -04:00
end
def skip amount
from(self).skip amount
end
2010-09-08 18:29:22 -04:00
def having expr
from(self).having expr
2010-09-08 18:29:22 -04:00
end
2010-08-12 17:55:31 -04:00
def columns
2010-12-03 18:24:30 -05:00
if $VERBOSE
warn <<-eowarn
(#{caller.first}) Arel::Table#columns is deprecated and will be removed in
Arel 3.0.0 with no replacement. PEW PEW PEW!!!
2010-12-03 18:24:30 -05:00
eowarn
end
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-12-03 18:24:30 -05:00
::Arel::Attribute.new self, name.to_sym
2010-08-12 14:24:16 -04:00
end
2010-09-27 16:52:50 -04:00
def select_manager
SelectManager.new(@engine)
2010-09-27 16:52:50 -04:00
end
2010-12-02 17:01:08 -05:00
def insert_manager
InsertManager.new(@engine)
end
2010-09-28 19:46:06 -04:00
private
2010-09-21 16:50:53 -04:00
def attributes_for columns
return nil unless columns
columns.map do |column|
2010-12-03 18:24:30 -05:00
Attributes.for(column).new self, column.name.to_sym
2010-09-21 16:50:53 -04:00
end
end
@@table_cache = nil
def self.table_cache engine # :nodoc:
if $VERBOSE
warn <<-eowarn
(#{caller.first}) Arel::Table.table_cache is deprecated and will be removed in
Arel 3.0.0 with no replacement. PEW PEW PEW!!!
eowarn
end
@@table_cache ||= Hash[engine.connection.tables.map { |x| [x,true] }]
end
2010-08-12 14:24:16 -04:00
end
end