Class: ActiveRecord::ConnectionAdapters::SchemaCache
- Inherits:
-
Object
- Object
- ActiveRecord::ConnectionAdapters::SchemaCache
- Defined in:
- lib/active_record/connection_adapters/schema_cache.rb
Instance Attribute Summary collapse
-
#connection ⇒ Object
Returns the value of attribute connection.
-
#version ⇒ Object
readonly
Returns the value of attribute version.
Instance Method Summary collapse
-
#add(table_name) ⇒ Object
Add internal cache for table with
table_name
. -
#clear! ⇒ Object
Clears out internal caches.
-
#clear_data_source_cache!(name) ⇒ Object
Clear out internal caches for the data source
name
. -
#columns(table_name) ⇒ Object
Get the columns for a table.
-
#columns_hash(table_name) ⇒ Object
Get the columns for a table as a hash, key is the column name value is the column object.
-
#data_source_exists?(name) ⇒ Boolean
A cached lookup for table existence.
- #data_sources(name) ⇒ Object
- #encode_with(coder) ⇒ Object
- #init_with(coder) ⇒ Object
-
#initialize(conn) ⇒ SchemaCache
constructor
A new instance of SchemaCache.
- #initialize_dup(other) ⇒ Object
- #marshal_dump ⇒ Object
- #marshal_load(array) ⇒ Object
- #primary_keys(table_name) ⇒ Object
- #size ⇒ Object
Constructor Details
#initialize(conn) ⇒ SchemaCache
Returns a new instance of SchemaCache.
9 10 11 12 13 14 15 16 |
# File 'lib/active_record/connection_adapters/schema_cache.rb', line 9 def initialize(conn) @connection = conn @columns = {} @columns_hash = {} @primary_keys = {} @data_sources = {} end |
Instance Attribute Details
#connection ⇒ Object
Returns the value of attribute connection.
7 8 9 |
# File 'lib/active_record/connection_adapters/schema_cache.rb', line 7 def connection @connection end |
#version ⇒ Object (readonly)
Returns the value of attribute version.
6 7 8 |
# File 'lib/active_record/connection_adapters/schema_cache.rb', line 6 def version @version end |
Instance Method Details
#add(table_name) ⇒ Object
Add internal cache for table with table_name
.
55 56 57 58 59 60 61 |
# File 'lib/active_record/connection_adapters/schema_cache.rb', line 55 def add(table_name) if data_source_exists?(table_name) primary_keys(table_name) columns(table_name) columns_hash(table_name) end end |
#clear! ⇒ Object
Clears out internal caches
81 82 83 84 85 86 87 |
# File 'lib/active_record/connection_adapters/schema_cache.rb', line 81 def clear! @columns.clear @columns_hash.clear @primary_keys.clear @data_sources.clear @version = nil end |
#clear_data_source_cache!(name) ⇒ Object
Clear out internal caches for the data source name
.
94 95 96 97 98 99 |
# File 'lib/active_record/connection_adapters/schema_cache.rb', line 94 def clear_data_source_cache!(name) @columns.delete name @columns_hash.delete name @primary_keys.delete name @data_sources.delete name end |
#columns(table_name) ⇒ Object
Get the columns for a table
68 69 70 |
# File 'lib/active_record/connection_adapters/schema_cache.rb', line 68 def columns(table_name) @columns[table_name] ||= connection.columns(table_name) end |
#columns_hash(table_name) ⇒ Object
Get the columns for a table as a hash, key is the column name value is the column object.
74 75 76 77 78 |
# File 'lib/active_record/connection_adapters/schema_cache.rb', line 74 def columns_hash(table_name) @columns_hash[table_name] ||= Hash[columns(table_name).map { |col| [col.name, col] }] end |
#data_source_exists?(name) ⇒ Boolean
A cached lookup for table existence.
47 48 49 50 51 52 |
# File 'lib/active_record/connection_adapters/schema_cache.rb', line 47 def data_source_exists?(name) prepare_data_sources if @data_sources.empty? return @data_sources[name] if @data_sources.key? name @data_sources[name] = connection.data_source_exists?(name) end |
#data_sources(name) ⇒ Object
63 64 65 |
# File 'lib/active_record/connection_adapters/schema_cache.rb', line 63 def data_sources(name) @data_sources[name] end |
#encode_with(coder) ⇒ Object
26 27 28 29 30 31 32 |
# File 'lib/active_record/connection_adapters/schema_cache.rb', line 26 def encode_with(coder) coder["columns"] = @columns coder["columns_hash"] = @columns_hash coder["primary_keys"] = @primary_keys coder["data_sources"] = @data_sources coder["version"] = connection.migration_context.current_version end |
#init_with(coder) ⇒ Object
34 35 36 37 38 39 40 |
# File 'lib/active_record/connection_adapters/schema_cache.rb', line 34 def init_with(coder) @columns = coder["columns"] @columns_hash = coder["columns_hash"] @primary_keys = coder["primary_keys"] @data_sources = coder["data_sources"] @version = coder["version"] end |
#initialize_dup(other) ⇒ Object
18 19 20 21 22 23 24 |
# File 'lib/active_record/connection_adapters/schema_cache.rb', line 18 def initialize_dup(other) super @columns = @columns.dup @columns_hash = @columns_hash.dup @primary_keys = @primary_keys.dup @data_sources = @data_sources.dup end |
#marshal_dump ⇒ Object
101 102 103 104 105 |
# File 'lib/active_record/connection_adapters/schema_cache.rb', line 101 def marshal_dump # if we get current version during initialization, it happens stack over flow. @version = connection.migration_context.current_version [@version, @columns, @columns_hash, @primary_keys, @data_sources] end |
#marshal_load(array) ⇒ Object
107 108 109 |
# File 'lib/active_record/connection_adapters/schema_cache.rb', line 107 def marshal_load(array) @version, @columns, @columns_hash, @primary_keys, @data_sources = array end |
#primary_keys(table_name) ⇒ Object
42 43 44 |
# File 'lib/active_record/connection_adapters/schema_cache.rb', line 42 def primary_keys(table_name) @primary_keys[table_name] ||= data_source_exists?(table_name) ? connection.primary_key(table_name) : nil end |
#size ⇒ Object
89 90 91 |
# File 'lib/active_record/connection_adapters/schema_cache.rb', line 89 def size [@columns, @columns_hash, @primary_keys, @data_sources].map(&:size).inject :+ end |