2024-03-11 23:00:15 -07:00
|
|
|
# typed: strict
|
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require_relative "../../../global"
|
|
|
|
|
|
|
|
module Tapioca
|
|
|
|
module Compilers
|
|
|
|
class Args < Tapioca::Dsl::Compiler
|
|
|
|
# This is ugly, but we're moving to a new interface that will use a consistent DSL
|
|
|
|
# These are cmd/dev-cmd methods that end in `_args` but are not parsers
|
|
|
|
NON_PARSER_ARGS_METHODS = T.let([
|
|
|
|
:formulae_all_installs_from_args,
|
|
|
|
:reproducible_gnutar_args,
|
|
|
|
:tar_args,
|
|
|
|
].freeze, T::Array[Symbol])
|
|
|
|
|
|
|
|
# FIXME: Enable cop again when https://github.com/sorbet/sorbet/issues/3532 is fixed.
|
|
|
|
# rubocop:disable Style/MutableConstant
|
2024-03-11 23:28:53 -07:00
|
|
|
ConstantType = type_member { { fixed: T.class_of(Homebrew::CLI::Args) } }
|
2024-03-11 23:00:15 -07:00
|
|
|
# rubocop:enable Style/MutableConstant
|
|
|
|
|
2024-03-11 23:28:53 -07:00
|
|
|
sig { override.returns(T::Enumerable[T.class_of(Homebrew::CLI::Args)]) }
|
2024-03-13 21:55:59 -07:00
|
|
|
def self.gather_constants
|
|
|
|
# require all the commands to ensure the _arg methods are defined
|
|
|
|
["cmd", "dev-cmd"].each do |dir|
|
|
|
|
Dir[File.join(__dir__, "../../../#{dir}", "*.rb")].each { require(_1) }
|
|
|
|
end
|
|
|
|
[Homebrew::CLI::Args]
|
|
|
|
end
|
2024-03-11 23:00:15 -07:00
|
|
|
|
|
|
|
sig { override.void }
|
|
|
|
def decorate
|
|
|
|
root.create_path(Homebrew::CLI::Args) do |klass|
|
|
|
|
Homebrew.methods(false).select { _1.end_with?("_args") }.each do |args_method_name|
|
|
|
|
next if NON_PARSER_ARGS_METHODS.include?(args_method_name)
|
|
|
|
|
|
|
|
parser = Homebrew.method(args_method_name).call
|
|
|
|
comma_array_methods = comma_arrays(parser)
|
2024-03-13 21:55:59 -07:00
|
|
|
args_table(parser).each do |method_name, value|
|
2024-03-11 23:00:15 -07:00
|
|
|
# some args are used in multiple commands (this is ok as long as they have the same type)
|
2024-03-13 21:55:59 -07:00
|
|
|
next if klass.nodes.any? { T.cast(_1, RBI::Method).name.to_sym == method_name }
|
2024-03-11 23:00:15 -07:00
|
|
|
|
|
|
|
return_type = get_return_type(method_name, value, comma_array_methods)
|
2024-03-13 21:55:59 -07:00
|
|
|
klass.create_method(method_name.to_s, return_type:)
|
2024-03-11 23:00:15 -07:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2024-03-13 21:55:59 -07:00
|
|
|
sig { params(parser: Homebrew::CLI::Parser).returns(T::Hash[Symbol, T.untyped]) }
|
|
|
|
def args_table(parser)
|
|
|
|
# we exclude non-args from the table, such as :named and :remaining
|
|
|
|
parser.instance_variable_get(:@args).instance_variable_get(:@table).except(:named, :remaining)
|
|
|
|
end
|
|
|
|
|
|
|
|
sig { params(parser: Homebrew::CLI::Parser).returns(T::Array[Symbol]) }
|
|
|
|
def comma_arrays(parser)
|
|
|
|
parser.instance_variable_get(:@non_global_processed_options)
|
|
|
|
.filter_map { |k, v| parser.option_to_name(k).to_sym if v == :comma_array }
|
|
|
|
end
|
|
|
|
|
2024-03-11 23:00:15 -07:00
|
|
|
sig { params(method_name: Symbol, value: T.untyped, comma_array_methods: T::Array[Symbol]).returns(String) }
|
|
|
|
def get_return_type(method_name, value, comma_array_methods)
|
|
|
|
if comma_array_methods.include?(method_name)
|
|
|
|
"T.nilable(T::Array[String])"
|
|
|
|
elsif [true, false].include?(value)
|
|
|
|
"T::Boolean"
|
|
|
|
else
|
|
|
|
"T.nilable(String)"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|