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

build_trace.rb « ci « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b9db1559836e29136602a7ebf5fc1b410636fe70 (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
# frozen_string_literal: true

module Ci
  class BuildTrace
    CONVERTERS = {
      html: Gitlab::Ci::Ansi2html,
      json: Gitlab::Ci::Ansi2json
    }.freeze

    attr_reader :trace, :build

    delegate :state, :append, :truncated, :offset, :size, :total, to: :trace, allow_nil: true
    delegate :id, :status, :complete?, to: :build, prefix: true

    def initialize(build:, stream:, state:, content_format:)
      @build = build
      @content_format = content_format

      if stream.valid?
        stream.limit
        @trace = CONVERTERS.fetch(content_format).convert(stream.stream, state)
      end
    end

    def json?
      @content_format == :json
    end

    def html?
      @content_format == :html
    end

    def json_lines
      @trace&.lines if json?
    end

    def html_lines
      @trace&.html if html?
    end
  end
end