Sha256: a598993e866be224a56e6f267520123287e77aa4fbef33bb36dda1820755385d

Contents?: true

Size: 1.71 KB

Versions: 23

Compression:

Stored size: 1.71 KB

Contents

module ActiveRecord
  module ConnectionAdapters
    class SchemaCache
      attr_reader :primary_keys, :tables
      attr_reader :connection

      def initialize(conn)
        @connection = conn
        @tables     = {}

        @columns = Hash.new do |h, table_name|
          h[table_name] = connection.columns(table_name, "#{table_name} Columns")
        end

        @columns_hash = Hash.new do |h, table_name|
          h[table_name] = Hash[columns[table_name].map { |col|
            [col.name, col]
          }]
        end

        @primary_keys = Hash.new do |h, table_name|
          h[table_name] = table_exists?(table_name) ? connection.primary_key(table_name) : nil
        end
      end

      # A cached lookup for table existence.
      def table_exists?(name)
        return @tables[name] if @tables.key? name

        @tables[name] = connection.table_exists?(name)
      end

      # Get the columns for a table
      def columns(table = nil)
        if table
          @columns[table]
        else
          @columns
        end
      end

      # Get the columns for a table as a hash, key is the column name
      # value is the column object.
      def columns_hash(table = nil)
        if table
          @columns_hash[table]
        else
          @columns_hash
        end
      end

      # Clears out internal caches
      def clear!
        @columns.clear
        @columns_hash.clear
        @primary_keys.clear
        @tables.clear
      end

      # Clear out internal caches for table with +table_name+.
      def clear_table_cache!(table_name)
        @columns.delete table_name
        @columns_hash.delete table_name
        @primary_keys.delete table_name
        @tables.delete table_name
      end
    end
  end
end

Version data entries

23 entries across 18 versions & 3 rubygems

Version Path
mdg-1.0.1 vendor/bundle/ruby/2.3.0/gems/activerecord-3.2.22.5/lib/active_record/connection_adapters/schema_cache.rb
activerecord-3.2.22.5 lib/active_record/connection_adapters/schema_cache.rb
activerecord-3.2.22.4 lib/active_record/connection_adapters/schema_cache.rb
activerecord-3.2.22.3 lib/active_record/connection_adapters/schema_cache.rb
activerecord-3.2.22.2 lib/active_record/connection_adapters/schema_cache.rb
activerecord-3.2.22.1 lib/active_record/connection_adapters/schema_cache.rb
activerecord-3.2.22 lib/active_record/connection_adapters/schema_cache.rb
activerecord-3.2.21 lib/active_record/connection_adapters/schema_cache.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/activerecord-3.2.18/lib/active_record/connection_adapters/schema_cache.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/apl-library-0.0.90/vendor/bundle/ruby/2.1.0/gems/activerecord-3.2.18/lib/active_record/connection_adapters/schema_cache.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/apl-library-0.0.90/vendor/bundle/ruby/1.9.1/gems/activerecord-3.2.18/lib/active_record/connection_adapters/schema_cache.rb
apl-library-0.0.90 vendor/bundle/ruby/1.8/gems/activerecord-3.2.18/lib/active_record/connection_adapters/schema_cache.rb
apl-library-0.0.90 vendor/bundle/ruby/1.9.1/gems/activerecord-3.2.18/lib/active_record/connection_adapters/schema_cache.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/apl-library-0.0.90/vendor/bundle/ruby/1.8/gems/activerecord-3.2.18/lib/active_record/connection_adapters/schema_cache.rb
activerecord-3.2.20 lib/active_record/connection_adapters/schema_cache.rb
activerecord-3.2.19 lib/active_record/connection_adapters/schema_cache.rb
activerecord-3.2.18 lib/active_record/connection_adapters/schema_cache.rb
activerecord-3.2.17 lib/active_record/connection_adapters/schema_cache.rb
activerecord-3.2.16 lib/active_record/connection_adapters/schema_cache.rb
activerecord-3.2.15 lib/active_record/connection_adapters/schema_cache.rb