summaryrefslogtreecommitdiff
path: root/lib/gitlab/cycle_analytics/base_stage.rb
blob: e2d6a301734f70f81f92483a446792ca07519550 (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
61
62
63
64
65
66
67
# frozen_string_literal: true

module Gitlab
  module CycleAnalytics
    class BaseStage
      include BaseQuery

      def initialize(project:, options:)
        @project = project
        @options = options
      end

      def events
        event_fetcher.fetch
      end

      def as_json
        AnalyticsStageSerializer.new.represent(self)
      end

      def title
        raise NotImplementedError.new("Expected #{self.name} to implement title")
      end

      def median
        BatchLoader.for(@project.id).batch(key: name) do |project_ids, loader|
          cte_table = Arel::Table.new("cte_table_for_#{name}")

          # Build a `SELECT` query. We find the first of the `end_time_attrs` that isn't `NULL` (call this end_time).
          # Next, we find the first of the start_time_attrs that isn't `NULL` (call this start_time).
          # We compute the (end_time - start_time) interval, and give it an alias based on the current
          # cycle analytics stage.
          interval_query = Arel::Nodes::As.new(cte_table,
            subtract_datetimes(stage_query(project_ids), start_time_attrs, end_time_attrs, name.to_s))

          if project_ids.one?
            loader.call(@project.id, median_datetime(cte_table, interval_query, name))
          else
            begin
              median_datetimes(cte_table, interval_query, name, :project_id)&.each do |project_id, median|
                loader.call(project_id, median)
              end
            rescue NotSupportedError
              {}
            end
          end
        end
      end

      def name
        raise NotImplementedError.new("Expected #{self.name} to implement name")
      end

      private

      def event_fetcher
        @event_fetcher ||= Gitlab::CycleAnalytics::EventFetcher[name].new(project: @project,
                                                                          stage: name,
                                                                          options: event_options)
      end

      def event_options
        @options.merge(start_time_attrs: start_time_attrs, end_time_attrs: end_time_attrs)
      end
    end
  end
end