brew/Library/Homebrew/utils/formatter.rb

139 lines
4.0 KiB
Ruby
Raw Normal View History

2023-03-09 21:10:44 -08:00
# typed: true
# frozen_string_literal: true
2016-08-30 21:38:13 +02:00
require "utils/tty"
2020-08-19 07:58:25 +02:00
# Helper module for formatting output.
#
2024-04-22 21:05:48 +02:00
# @api internal
2016-08-30 21:38:13 +02:00
module Formatter
def self.arrow(string, color: nil)
2016-08-30 21:38:13 +02:00
prefix("==>", string, color)
end
def self.headline(string, color: nil)
2024-03-07 16:20:20 +00:00
arrow("#{Tty.bold}#{string}#{Tty.reset}", color:)
2016-08-30 21:38:13 +02:00
end
def self.identifier(string)
"#{Tty.green}#{string}#{Tty.default}"
2016-08-30 21:38:13 +02:00
end
def self.option(string)
2018-06-01 14:19:00 +02:00
"#{Tty.bold}#{string}#{Tty.reset}"
end
2024-04-22 21:05:48 +02:00
# Format a string as success, with an optional label.
#
# @api internal
def self.success(string, label: nil)
2016-08-30 21:38:13 +02:00
label(label, string, :green)
end
2024-04-22 21:05:48 +02:00
# Format a string as warning, with an optional label.
#
# @api internal
def self.warning(string, label: nil)
2016-08-30 21:38:13 +02:00
label(label, string, :yellow)
end
2024-04-22 21:05:48 +02:00
# Format a string as error, with an optional label.
#
# @api internal
def self.error(string, label: nil)
2016-08-30 21:38:13 +02:00
label(label, string, :red)
end
# Wraps text to fit within a given number of columns using regular expressions that:
#
# 1. convert hard-wrapped paragraphs to a single line
# 2. add line break and indent to subcommand descriptions
# 3. find any option descriptions longer than a pre-set length and wrap between words
# with a hanging indent, without breaking any words that overflow
# 4. wrap any remaining description lines that need wrapping with the same indent
# 5. wrap all lines to the given width.
#
# Note that an option (e.g. `--foo`) may not be at the beginning of a line,
# so we always wrap one word before an option.
# @see https://github.com/Homebrew/brew/pull/12672
# @see https://macromates.com/blog/2006/wrapping-text-with-regular-expressions/
def self.format_help_text(string, width: 172)
desc = OPTION_DESC_WIDTH
indent = width - desc
string.gsub(/(?<=\S) *\n(?=\S)/, " ")
.gsub(/([`>)\]]:) /, "\\1\n ")
.gsub(/^( +-.+ +(?=\S.{#{desc}}))(.{1,#{desc}})( +|$)(?!-)\n?/, "\\1\\2\n#{" " * indent}")
.gsub(/^( {#{indent}}(?=\S.{#{desc}}))(.{1,#{desc}})( +|$)(?!-)\n?/, "\\1\\2\n#{" " * indent}")
.gsub(/(.{1,#{width}})( +|$)(?!-)\n?/, "\\1\n")
2018-09-08 22:21:04 +05:30
end
def self.url(string)
2016-08-30 21:38:13 +02:00
"#{Tty.underline}#{string}#{Tty.no_underline}"
end
def self.label(label, string, color)
2016-08-30 21:38:13 +02:00
label = "#{label}:" unless label.nil?
prefix(label, string, color)
end
private_class_method :label
def self.prefix(prefix, string, color)
2016-08-30 21:38:13 +02:00
if prefix.nil? && color.nil?
string
elsif prefix.nil?
"#{Tty.send(color)}#{string}#{Tty.reset}"
elsif color.nil?
"#{prefix} #{string}"
else
"#{Tty.send(color)}#{prefix}#{Tty.reset} #{string}"
end
end
private_class_method :prefix
2024-04-22 21:05:48 +02:00
# Layout objects in columns that fit the current terminal width.
#
# @api internal
def self.columns(*objects, gap_size: 2)
objects = objects.flatten.map(&:to_s)
fallback = proc do
return objects.join("\n").concat("\n")
end
fallback.call if objects.empty?
2023-03-09 21:10:44 -08:00
fallback.call if respond_to?(:tty?) ? !T.unsafe(self).tty? : !$stdout.tty?
console_width = Tty.width
object_lengths = objects.map { |obj| Tty.strip_ansi(obj).length }
2023-03-09 21:10:44 -08:00
cols = (console_width + gap_size) / (T.must(object_lengths.max) + gap_size)
fallback.call if cols < 2
rows = (objects.count + cols - 1) / cols
cols = (objects.count + rows - 1) / rows # avoid empty trailing columns
col_width = ((console_width + gap_size) / cols) - gap_size
gap_string = "".rjust(gap_size)
output = +""
rows.times do |row_index|
2023-03-09 21:10:44 -08:00
item_indices_for_row = T.cast(row_index.step(objects.size - 1, rows).to_a, T::Array[Integer])
2023-03-09 21:10:44 -08:00
first_n = T.must(item_indices_for_row[0...-1]).map do |index|
objects[index] + "".rjust(col_width - object_lengths.fetch(index))
end
# don't add trailing whitespace to last column
2023-03-09 21:10:44 -08:00
last = objects.values_at(item_indices_for_row.fetch(-1))
output.concat((first_n + last)
.join(gap_string))
.concat("\n")
end
output.freeze
end
2016-08-30 21:38:13 +02:00
end