summaryrefslogtreecommitdiff
path: root/lib/gitlab/database/query_analyzers/base.rb
blob: e8066f7a706ea6bba2b629d8a52fccaa695c62d6 (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
45
46
47
48
49
50
51
52
53
# frozen_string_literal: true

module Gitlab
  module Database
    module QueryAnalyzers
      class Base
        def self.suppressed?
          Thread.current[self.suppress_key]
        end

        def self.suppress=(value)
          Thread.current[self.suppress_key] = value
        end

        def self.with_suppressed(value = true, &blk)
          previous = self.suppressed?
          self.suppress = value
          yield
        ensure
          self.suppress = previous
        end

        def self.begin!
          Thread.current[self.context_key] = {}
        end

        def self.end!
          Thread.current[self.context_key] = nil
        end

        def self.context
          Thread.current[self.context_key]
        end

        def self.enabled?
          raise NotImplementedError
        end

        def self.analyze(parsed)
          raise NotImplementedError
        end

        def self.context_key
          "#{self.class.name}_context"
        end

        def self.suppress_key
          "#{self.class.name}_suppressed"
        end
      end
    end
  end
end