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

query_analyzer.rb « database « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 830ad1383c047832b37ca8d4bf6968334bae9488 (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
54
55
56
57
58
59
60
# frozen_string_literal: true

module Gitlab
  module Database
    # The purpose of this class is to implement a various query analyzers based on `pg_query`
    # And process them all via `Gitlab::Database::QueryAnalyzers::*`
    class QueryAnalyzer
      ANALYZERS = [].freeze

      Parsed = Struct.new(
        :sql, :connection, :pg
      )

      def hook!
        @subscriber = ActiveSupport::Notifications.subscribe('sql.active_record') do |event|
          process_sql(event.payload[:sql], event.payload[:connection])
        end
      end

      private

      def process_sql(sql, connection)
        analyzers = enabled_analyzers(connection)
        return unless analyzers.any?

        parsed = parse(sql, connection)
        return unless parsed

        analyzers.each do |analyzer|
          analyzer.analyze(parsed)
        rescue => e # rubocop:disable Style/RescueStandardError
          # We catch all standard errors to prevent validation errors to introduce fatal errors in production
          Gitlab::ErrorTracking.track_and_raise_for_dev_exception(e)
        end
      end

      def enabled_analyzers(connection)
        ANALYZERS.select do |analyzer|
          analyzer.enabled?(connection)
        rescue StandardError => e # rubocop:disable Style/RescueStandardError
          # We catch all standard errors to prevent validation errors to introduce fatal errors in production
          Gitlab::ErrorTracking.track_and_raise_for_dev_exception(e)
        end
      end

      def parse(sql, connection)
        parsed = PgQuery.parse(sql)
        return unless parsed

        normalized = PgQuery.normalize(sql)
        Parsed.new(normalized, connection, parsed)
      rescue PgQuery::ParseError => e
        # Ignore PgQuery parse errors (due to depth limit or other reasons)
        Gitlab::ErrorTracking.track_exception(e)

        nil
      end
    end
  end
end