Welcome to mirror list, hosted at ThFree Co, Russian Federation.

type_map_cache.rb « postgresql_adapter « database « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ff66d9115ab1fa6b7e6095a785d747f354a4b6c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# frozen_string_literal: true

# Caches loading of additional types from the DB
# https://github.com/rails/rails/blob/v6.0.3.2/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb#L521-L589

# rubocop:disable Gitlab/ModuleWithInstanceVariables

module Gitlab
  module Database
    module PostgresqlAdapter
      module TypeMapCache
        extend ActiveSupport::Concern

        TYPE_MAP_CACHE_MONITOR = ::Monitor.new

        class_methods do
          def type_map_cache
            TYPE_MAP_CACHE_MONITOR.synchronize do
              @type_map_cache ||= {}
            end
          end
        end

        def initialize_type_map(map = type_map)
          TYPE_MAP_CACHE_MONITOR.synchronize do
            cached_type_map = self.class.type_map_cache[@connection_parameters.hash]
            break @type_map = cached_type_map if cached_type_map

            super
            self.class.type_map_cache[@connection_parameters.hash] = map
          end
        end

        def reload_type_map
          TYPE_MAP_CACHE_MONITOR.synchronize do
            self.class.type_map_cache[@connection_parameters.hash] = nil
          end

          super
        end
      end
    end
  end
end