Module: Utils::Analytics Private

Extended by:
Cachable, Context, T::Generic, Output::Mixin
Defined in:
utils/analytics.rb

Overview

This module is part of a private API. This module may only be used in the Homebrew/brew repository. Third parties should avoid using this module if possible, as it may be removed or changed without warning.

Helper module for fetching and reporting analytics data.

Constant Summary collapse

INFLUX_BUCKET =

This constant is part of a private API. This constant may only be used in the Homebrew/brew repository. Third parties should avoid using this constant if possible, as it may be removed or changed without warning.

"analytics"
INFLUX_HOST =

This constant is part of a private API. This constant may only be used in the Homebrew/brew repository. Third parties should avoid using this constant if possible, as it may be removed or changed without warning.

"https://analytics.brew.sh"
INFLUX_ORG =

This constant is part of a private API. This constant may only be used in the Homebrew/brew repository. Third parties should avoid using this constant if possible, as it may be removed or changed without warning.

"d81a3e6d582d485f"
WSL_SUFFIX =

This constant is part of a private API. This constant may only be used in the Homebrew/brew repository. Third parties should avoid using this constant if possible, as it may be removed or changed without warning.

" [WSL]"
ENV_CONFIG_COMMANDS =

This constant is part of a private API. This constant may only be used in the Homebrew/brew repository. Third parties should avoid using this constant if possible, as it may be removed or changed without warning.

%w[config fetch install reinstall update update-report upgrade].freeze
Cache =

This constant is part of a private API. This constant may only be used in the Homebrew/brew repository. Third parties should avoid using this constant if possible, as it may be removed or changed without warning.

type_template { { fixed: T::Hash[Symbol, T.untyped] } }

Class Method Summary collapse

Methods included from Context

current, current=, debug?, deferred_environment_expansion?, quiet?, verbose?, with_context

Methods included from Output::Mixin

issue_reporting_message, odebug, odeprecated, odie, odisabled, ofail, oh1, oh1_title, ohai, ohai_title, onoe, opoo, opoo_outside_github_actions, opoo_without_github_actions_annotation, pretty_cannot_install, pretty_deprecated, pretty_disabled, pretty_duration, pretty_install_status, pretty_installed, pretty_uninstalled, pretty_unmarked, pretty_upgradable, pretty_warning

Methods included from Cachable

cache, clear_cache

Class Method Details

.cask_output(cask, args:) ⇒ void

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

This method returns an undefined value.

Parameters:



372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
# File 'utils/analytics.rb', line 372

def cask_output(cask, args:)
  return if Homebrew::EnvConfig.no_analytics? || Homebrew::EnvConfig.no_github_api?

  require "api"

  return unless Homebrew::API.cask_token?(cask.token)

  analytics = Homebrew::API::Analytics.cask_analytics cask.token
  return if analytics.blank?

  output_analytics(analytics, args:)
rescue ArgumentError
  # Ignore failed API requests
  nil
end

.config_true?(key) ⇒ Boolean

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Parameters:

Returns:

  • (Boolean)


534
535
536
# File 'utils/analytics.rb', line 534

def config_true?(key)
  Homebrew::Settings.read(key) == "true"
end

.default_package_fieldsHash{Symbol => String}

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

remove os_version starting with " or number remove macOS patch release

Returns:



417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
# File 'utils/analytics.rb', line 417

def default_package_fields
  cache[:default_package_fields] ||= begin
    version = if (numeric_version = HOMEBREW_VERSION[/^[\d.]+/])
      suffix = "-dev" if HOMEBREW_VERSION.include?("-")
      numeric_version + suffix.to_s
    else
      ">=4.1.22"
    end

    # Only include OS versions with an actual name.
    os_name_and_version = if (os_version = OS_VERSION.presence) && os_version.downcase.match?(/^[a-z]/)
      with_wsl_suffix_if_needed(os_version)
    end

    {
      version:,
      os_name_and_version:,
    }
  end
end

.default_package_tagsHash{Symbol => Boolean, String}

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Returns:



396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
# File 'utils/analytics.rb', line 396

def default_package_tags
  cache[:default_package_tags] ||= begin
    # Only display default prefixes to reduce cardinality and improve privacy
    prefix = Homebrew.default_prefix? ? HOMEBREW_PREFIX.to_s : "custom-prefix"

    # Tags are always strings and must have low cardinality.
    {
      ci:             ENV["CI"].present?,
      prefix:,
      default_prefix: Homebrew.default_prefix?,
      developer:      Homebrew::EnvConfig.developer?,
      devcmdrun:      Homebrew::EnvConfig.devcmdrun?,
      arch:           HOMEBREW_PHYSICAL_PROCESSOR,
      os:             with_wsl_suffix_if_needed(HOMEBREW_SYSTEM),
    }
  end
end

.deferred_curl(url, args) ⇒ void

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

This method returns an undefined value.

Parameters:



58
59
60
61
62
63
64
65
66
67
68
69
70
# File 'utils/analytics.rb', line 58

def deferred_curl(url, args)
  require "utils/curl"

  curl = Utils::Curl.curl_executable
  args = Utils::Curl.curl_args(*args, "--silent", "--output", File::NULL, show_error: false)
  if ENV["HOMEBREW_ANALYTICS_DEBUG"]
    puts "#{curl} #{args.join(" ")} \"#{url}\""
    puts Utils.popen_read(curl, *args, url)
  else
    pid = spawn curl, *args, url, out: File::NULL, err: File::NULL
    Process.detach(pid)
  end
end

.delete_uuid!void

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

This method returns an undefined value.



225
226
227
# File 'utils/analytics.rb', line 225

def delete_uuid!
  Homebrew::Settings.delete :analyticsuuid
end

.disable!void

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

This method returns an undefined value.



219
220
221
222
# File 'utils/analytics.rb', line 219

def disable!
  Homebrew::Settings.write :analyticsdisabled, true
  delete_uuid!
end

.disabled?Boolean

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Returns:

  • (Boolean)


187
188
189
190
191
# File 'utils/analytics.rb', line 187

def disabled?
  return true if Homebrew::EnvConfig.no_analytics?

  config_true?(:analyticsdisabled)
end

.enable!void

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

This method returns an undefined value.



212
213
214
215
216
# File 'utils/analytics.rb', line 212

def enable!
  Homebrew::Settings.write :analyticsdisabled, false
  delete_uuid!
  messages_displayed!
end

.format_count(count) ⇒ String

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Parameters:

Returns:



539
540
541
# File 'utils/analytics.rb', line 539

def format_count(count)
  count.to_s.reverse.gsub(/(\d{3})(?=\d)/, '\\1,').reverse
end

.format_percent(percent) ⇒ String

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Parameters:

Returns:



544
545
546
# File 'utils/analytics.rb', line 544

def format_percent(percent)
  format("%<percent>.2f", percent:)
end

.formula_output(formula, args:) ⇒ void

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

This method returns an undefined value.

Parameters:



354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
# File 'utils/analytics.rb', line 354

def formula_output(formula, args:)
  return if Homebrew::EnvConfig.no_analytics? || Homebrew::EnvConfig.no_github_api?

  require "api"

  return unless Homebrew::API.formula_name? formula.name

  analytics = Homebrew::API::Analytics.formula_analytics formula.name
  return if analytics.blank?

  output_analytics(analytics, args:)
  output_github_packages_downloads(formula, analytics, args:)
rescue ArgumentError
  # Ignore failed API requests
  nil
end

.influx_message_displayed?Boolean

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Returns:

  • (Boolean)


174
175
176
# File 'utils/analytics.rb', line 174

def influx_message_displayed?
  config_true?(:influxanalyticsmessage)
end

.messages_displayed!void

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

This method returns an undefined value.



205
206
207
208
209
# File 'utils/analytics.rb', line 205

def messages_displayed!
  Homebrew::Settings.write :analyticsmessage, true
  Homebrew::Settings.write :caskanalyticsmessage, true
  Homebrew::Settings.write :influxanalyticsmessage, true
end

.messages_displayed?Boolean

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Returns:

  • (Boolean)


179
180
181
182
183
184
# File 'utils/analytics.rb', line 179

def messages_displayed?
  return false unless config_true?(:analyticsmessage)
  return false unless config_true?(:caskanalyticsmessage)

  influx_message_displayed?
end

.no_message_output?Boolean

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Returns:

  • (Boolean)


199
200
201
202
# File 'utils/analytics.rb', line 199

def no_message_output?
  # Used by Homebrew/install
  ENV["HOMEBREW_NO_ANALYTICS_MESSAGE_OUTPUT"].present?
end

.not_this_run?Boolean

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Returns:

  • (Boolean)


194
195
196
# File 'utils/analytics.rb', line 194

def not_this_run?
  ENV["HOMEBREW_NO_ANALYTICS_THIS_RUN"].present?
end

.output(args:, filter: nil) ⇒ void

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

This method returns an undefined value.

Parameters:



230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
# File 'utils/analytics.rb', line 230

def output(args:, filter: nil)
  require "api"

  days = args.days || "30"
  category = args.category || "install"
  begin
    json = Homebrew::API::Analytics.fetch category, days
  rescue ArgumentError
    # Ignore failed API requests
    return
  end
  return if json.blank? || json["items"].blank?

  os_version = category == "os-version"
  cask_install = category == "cask-install"
  results = {}
  json["items"].each do |item|
    key = if os_version
      item["os_version"]
    elsif cask_install
      item["cask"]
    else
      item["formula"]
    end
    next if filter.present? && key != filter && !key.start_with?("#{filter} ")

    results[key] = item["count"].tr(",", "").to_i
  end

  if filter.present? && results.blank?
    onoe "No results matching `#{filter}` found!"
    return
  end

  table_output(category, days, results, os_version:, cask_install:)
end

.output_analytics(analytics, args:) ⇒ void

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

This method returns an undefined value.

Parameters:



268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
# File 'utils/analytics.rb', line 268

def output_analytics(analytics, args:)
  full_analytics = args.analytics? || verbose?

  ohai "Analytics"
  analytics.each do |category, value|
    category = category.tr("_", "-")
    summaries = []

    value.each do |days, results|
      days = days.to_i
      if full_analytics
        next if args.days.present? && args.days&.to_i != days
        next if args.category.present? && args.category != category

        table_output(category, days.to_s, results)
      else
        total_count = results.values.sum
        summaries << "#{Formatter.number_readable(total_count)} (#{days} days)"
      end
    end

    puts "#{category}: #{summaries.join(", ")}" unless full_analytics
  end
end

.output_github_packages_downloads(formula, analytics, args:) ⇒ void

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

This method returns an undefined value.

This method is undocumented because it is not intended for general use. It relies on screen scraping some GitHub HTML that's not available as an API. This seems very likely to break in the future. That said, it's the only way to get the data we want right now.

Parameters:



298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
# File 'utils/analytics.rb', line 298

def output_github_packages_downloads(formula, analytics, args:)
  return unless args.github_packages_downloads?
  return unless formula.core_formula?

  require "tmpdir"
  require "utils/curl"

  escaped_formula_name = GitHubPackages.image_formula_name(formula.name)
                                       .gsub("/", "%2F")
  formula_url_suffix = "container/core%2F#{escaped_formula_name}/"
  formula_url = "https://github.com/Homebrew/homebrew-core/pkgs/#{formula_url_suffix}"
  output = Utils::Curl.curl_output("--fail", "--compressed", formula_url)
  return unless output.success?

  tag_urls = output.stdout
                   .scan(%r{/orgs/Homebrew/packages/#{formula_url_suffix}(\d+\?tag=([^"]+))})
                   .to_h { |version, tag| [tag.to_s, "#{formula_url}#{version}"] }
  return if tag_urls.empty?

  downloads_by_tag = Dir.mktmpdir("github-packages-downloads", HOMEBREW_TEMP) do |tmpdir|
    Utils::Curl.curl_output("--fail", "--compressed", "--parallel",
                            *tag_urls.flat_map { |tag, url| ["--output", "#{tmpdir}/#{tag}.html", url] })

    tag_urls.keys.filter_map do |tag|
      version_html = Pathname("#{tmpdir}/#{tag}.html")
      next unless version_html.exist?

      downloads = version_html.read[%r{>Last 30 days</span>\s*<span[^>]*>([\d.,]+M?)<}, 1]
      next if downloads.nil?

      count = if downloads.end_with?("M")
        (downloads.to_f * 1_000_000).to_i
      else
        downloads.tr(",", "").to_i
      end
      [tag, count]
    end
  end
  missing_tags = tag_urls.keys - downloads_by_tag.map(&:first)
  if missing_tags.any?
    opoo "Failed to fetch GitHub Packages downloads for: #{missing_tags.join(", ")}"
    return
  end

  table_output("github-packages-downloads", "30", downloads_by_tag.sort_by { |_, count| -count }.to_h,
               name_header: "Tag")

  install_count = analytics.dig("install", "30d")&.values&.sum
  return unless install_count&.positive?

  difference = ((downloads_by_tag.sum { |_, count| count } - install_count) * 100.0) / install_count
  puts "Difference from #{format_count(install_count)} analytics install events (30 days): " \
       "#{format("%+.2f", difference)}%"
end

.report_build_error(exception) ⇒ void

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

This method returns an undefined value.

Parameters:



93
94
95
96
97
98
99
100
101
102
103
104
105
# File 'utils/analytics.rb', line 93

def report_build_error(exception)
  return if not_this_run? || disabled?

  formula = exception.formula
  return unless formula

  tap = formula.tap
  return unless tap
  return unless tap.should_report_analytics?

  options = exception.options.to_a.compact.map(&:to_s).sort.uniq.join(" ")
  report_package_event(:build_error, package_name: formula.name, tap_name: tap.name, options:)
end

.report_command_run(command_instance) ⇒ void

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

This method returns an undefined value.

Parameters:



108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
# File 'utils/analytics.rb', line 108

def report_command_run(command_instance)
  return if not_this_run? || disabled?

  command = command_instance.class.command_name

  options_array = command_instance.args.options_only.to_a.compact

  # Strip out any flag values to reduce cardinality and preserve privacy.
  options_array.map! { |option| option.sub(/=.*/m, "=") }

  # Strip out --with-* and --without-* options
  options_array.reject! { |option| option.match(/^--with(?:out)?-/) }

  options = options_array.sort.uniq.join(" ")

  # Tags must have low cardinality.
  tags = {
    command:,
    ci:        ENV["CI"].present?,
    devcmdrun: Homebrew::EnvConfig.devcmdrun?,
    developer: Homebrew::EnvConfig.developer?,
  }
  if ENV_CONFIG_COMMANDS.include?(command)
    variables = Homebrew::EnvConfig::ANALYTICS_VARIABLES
    env_config = variables.fetch(Random.rand(variables.length))
    tags[:env_config] = env_config.to_s
    tags[:env_config_state] = if Homebrew::EnvConfig.user_set_variable?(env_config)
      Homebrew::EnvConfig.non_default_variable?(env_config) ? "non_default" : "default"
    else
      "unset"
    end
  end

  # Fields can have high cardinality.
  fields = { options: }

  report_influx(:command_run, tags, fields)
end

.report_influx(measurement, tags, fields) ⇒ void

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

This method returns an undefined value.

Parameters:



33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# File 'utils/analytics.rb', line 33

def report_influx(measurement, tags, fields)
  return if not_this_run? || disabled?

  # Tags are always implicitly strings and must have low cardinality.
  tags_string = tags.map { |k, v| "#{k}=#{v.to_s.gsub(/[ ,=]/) { |char| "\\#{char}" }}" }
                    .join(",")

  # Fields need explicitly wrapped with quotes and can have high cardinality.
  fields_string = fields.compact
                        .map { |k, v| %Q(#{k}="#{v}") }
                        .join(",")

  args = [
    "--max-time", "3",
    "--header", "Content-Type: text/plain; charset=utf-8",
    "--header", "Accept: application/json",
    "--data-binary", "#{measurement},#{tags_string} #{fields_string} #{Time.now.to_i}"
  ]

  # Second precision is highest we can do and has the lowest performance cost.
  url = "#{INFLUX_HOST}/api/v3/write_lp?bucket=#{INFLUX_BUCKET}&precision=seconds&no_sync=true"
  deferred_curl(url, args)
end

.report_package_event(measurement, package_name:, tap_name:, on_request: false, options: "") ⇒ void

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

This method returns an undefined value.

Parameters:

  • measurement (Symbol)
  • package_name (String)
  • tap_name (String)
  • on_request (Boolean) (defaults to: false)
  • options (String) (defaults to: "")


76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# File 'utils/analytics.rb', line 76

def report_package_event(measurement, package_name:, tap_name:, on_request: false, options: "")
  return if not_this_run? || disabled?

  # ensure options are removed (by `.compact` below) if empty
  options = nil if options.blank?

  # Tags must have low cardinality.
  tags = default_package_tags.merge(on_request:)

  # Fields can have high cardinality.
  fields = default_package_fields.merge(package: package_name, tap_name:, options:)
                                 .compact

  report_influx(measurement, tags, fields)
end

.report_test_bot_test(step_command_short, passed) ⇒ void

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

This method returns an undefined value.

Parameters:

  • step_command_short (String)
  • passed (Boolean)


148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
# File 'utils/analytics.rb', line 148

def report_test_bot_test(step_command_short, passed)
  return if not_this_run? || disabled?
  return if ENV["HOMEBREW_TEST_BOT_ANALYTICS"].blank?

  # Tags must have low cardinality.
  tags = {
    passed:,
    arch:   HOMEBREW_PHYSICAL_PROCESSOR,
    os:     HOMEBREW_SYSTEM,
  }

  # Strip out any flag values to reduce cardinality and preserve privacy.
  # Sort options to ensure consistent ordering and improve readability.
  command_and_package, options =
    step_command_short.split
                      .map { |arg| arg.sub(/=.*/, "=") }
                      .partition { |arg| !arg.start_with?("-") }
  command = (command_and_package + options.sort).join(" ")

  # Fields can have high cardinality.
  fields = { command: }

  report_influx(:test_bot_test, tags, fields)
end

.table_output(category, days, results, os_version: false, cask_install: false, name_header: nil) ⇒ void

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

This method returns an undefined value.

Parameters:

  • category (String)
  • days (String)
  • results (Hash{String => Integer})
  • os_version (Boolean) (defaults to: false)
  • cask_install (Boolean) (defaults to: false)
  • name_header (String, nil) (defaults to: nil)


444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
# File 'utils/analytics.rb', line 444

def table_output(category, days, results, os_version: false, cask_install: false, name_header: nil)
  oh1 "#{category} (#{days} days)"
  total_count = results.values.sum
  formatted_total_count = format_count(total_count)
  formatted_total_percent = format_percent(100)

  index_header = "Index"
  count_header = "Count"
  percent_header = "Percent"
  name_with_options_header = if name_header
    name_header
  elsif os_version
    "macOS Version"
  elsif cask_install
    "Token"
  else
    "Name (with options)"
  end

  total_index_footer = "Total"
  max_index_width = results.length.to_s.length
  index_width = [
    index_header.length,
    total_index_footer.length,
    max_index_width,
  ].max
  count_width = [
    count_header.length,
    formatted_total_count.length,
  ].max
  percent_width = [
    percent_header.length,
    formatted_total_percent.length,
  ].max
  name_with_options_width = Tty.width -
                            index_width -
                            count_width -
                            percent_width -
                            10 # spacing and lines

  formatted_index_header =
    format "%#{index_width}s", index_header
  formatted_name_with_options_header =
    format "%-#{name_with_options_width}s",
           name_with_options_header[0..(name_with_options_width-1)]
  formatted_count_header =
    format "%#{count_width}s", count_header
  formatted_percent_header =
    format "%#{percent_width}s", percent_header
  puts "#{formatted_index_header} | #{formatted_name_with_options_header} | " \
       "#{formatted_count_header} |  #{formatted_percent_header}"

  columns_line = "#{"-"*index_width}:|-#{"-"*name_with_options_width}-|-" \
                 "#{"-"*count_width}:|-#{"-"*percent_width}:"
  puts columns_line

  index = 0
  results.each do |name_with_options, count|
    index += 1
    formatted_index = format "%0#{max_index_width}d", index
    formatted_index = format "%-#{index_width}s", formatted_index
    formatted_name_with_options =
      format "%-#{name_with_options_width}s",
             name_with_options[0..(name_with_options_width-1)]
    formatted_count = format "%#{count_width}s", format_count(count)
    formatted_percent = if total_count.zero?
      format "%#{percent_width}s", format_percent(0)
    else
      format "%#{percent_width}s",
             format_percent((count.to_i * 100) / total_count.to_f)
    end
    puts "#{formatted_index} | #{formatted_name_with_options} | " \
         "#{formatted_count} | #{formatted_percent}%"
    next if index > 10
  end
  return if results.length <= 1

  formatted_total_footer =
    format "%-#{index_width}s", total_index_footer
  formatted_blank_footer =
    format "%-#{name_with_options_width}s", ""
  formatted_total_count_footer =
    format "%#{count_width}s", formatted_total_count
  formatted_total_percent_footer =
    format "%#{percent_width}s", formatted_total_percent
  puts "#{formatted_total_footer} | #{formatted_blank_footer} | " \
       "#{formatted_total_count_footer} | #{formatted_total_percent_footer}%"
end

.with_wsl_suffix_if_needed(value, wsl: OS.wsl?) ⇒ String

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Parameters:

  • value (String)
  • wsl (Boolean) (defaults to: OS.wsl?)

Returns:



389
390
391
392
393
# File 'utils/analytics.rb', line 389

def with_wsl_suffix_if_needed(value, wsl: OS.wsl?)
  return value if !wsl || value.end_with?(WSL_SUFFIX)

  "#{value}#{WSL_SUFFIX}"
end