Class: ActiveRecord::Associations::AliasTracker
- Inherits:
-
Object
- Object
- ActiveRecord::Associations::AliasTracker
- Defined in:
- lib/active_record/associations/alias_tracker.rb
Overview
Keeps track of table aliases for ActiveRecord::Associations::JoinDependency
Instance Attribute Summary collapse
-
#aliases ⇒ Object
readonly
Returns the value of attribute aliases.
Class Method Summary collapse
-
.create(connection, initial_table, joins, aliases = nil) ⇒ Object
:nodoc:.
- .initial_count_for(connection, name, table_joins) ⇒ Object
Instance Method Summary collapse
- #aliased_table_for(arel_table, table_name = nil) ⇒ Object
-
#initialize(connection, aliases) ⇒ AliasTracker
constructor
table_joins is an array of arel joins which might conflict with the aliases we assign here.
Constructor Details
#initialize(connection, aliases) ⇒ AliasTracker
table_joins is an array of arel joins which might conflict with the aliases we assign here
49 50 51 52 |
# File 'lib/active_record/associations/alias_tracker.rb', line 49 def initialize(connection, aliases) @aliases = aliases @connection = connection end |
Instance Attribute Details
#aliases ⇒ Object (readonly)
Returns the value of attribute aliases.
76 77 78 |
# File 'lib/active_record/associations/alias_tracker.rb', line 76 def aliases @aliases end |
Class Method Details
.create(connection, initial_table, joins, aliases = nil) ⇒ Object
:nodoc:
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
# File 'lib/active_record/associations/alias_tracker.rb', line 9 def self.create(connection, initial_table, joins, aliases = nil) if joins.empty? aliases ||= Hash.new(0) elsif aliases default_proc = aliases.default_proc || proc { 0 } aliases.default_proc = proc { |h, k| h[k] = initial_count_for(connection, k, joins) + default_proc.call(h, k) } else aliases = Hash.new { |h, k| h[k] = initial_count_for(connection, k, joins) } end aliases[initial_table] = 1 new(connection, aliases) end |
.initial_count_for(connection, name, table_joins) ⇒ Object
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
# File 'lib/active_record/associations/alias_tracker.rb', line 26 def self.initial_count_for(connection, name, table_joins) quoted_name = nil counts = table_joins.map do |join| if join.is_a?(Arel::Nodes::StringJoin) # quoted_name should be case ignored as some database adapters (Oracle) return quoted name in uppercase quoted_name ||= connection.quote_table_name(name) # Table names + table aliases join.left.scan( /JOIN(?:\s+\w+)?\s+(?:\S+\s+)?(?:#{quoted_name}|#{name})\sON/i ).size elsif join.is_a?(Arel::Nodes::Join) join.left.name == name ? 1 : 0 else raise ArgumentError, "joins list should be initialized by list of Arel::Nodes::Join" end end counts.sum end |
Instance Method Details
#aliased_table_for(arel_table, table_name = nil) ⇒ Object
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 |
# File 'lib/active_record/associations/alias_tracker.rb', line 54 def aliased_table_for(arel_table, table_name = nil) table_name ||= arel_table.name if aliases[table_name] == 0 # If it's zero, we can have our table_name aliases[table_name] = 1 arel_table = arel_table.alias(table_name) if arel_table.name != table_name else # Otherwise, we need to use an alias aliased_name = @connection.table_alias_for(yield) # Update the count count = aliases[aliased_name] += 1 aliased_name = "#{truncate(aliased_name)}_#{count}" if count > 1 arel_table = arel_table.alias(aliased_name) end arel_table end |