Module: Commands Private
- Defined in:
- commands.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 functions for commands.
Constant Summary collapse
- HOMEBREW_CMD_PATH =
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.
T.let((HOMEBREW_LIBRARY_PATH/"cmd").freeze, Pathname)
- HOMEBREW_DEV_CMD_PATH =
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.
T.let((HOMEBREW_LIBRARY_PATH/"dev-cmd").freeze, Pathname)
- HOMEBREW_INTERNAL_COMMAND_ALIASES =
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.
If you are going to change anything in below hash, be sure to also update appropriate case statement in brew.sh
T.let({ "ls" => "list", "homepage" => "home", "-S" => "search", "up" => "update", "ln" => "link", "instal" => "install", # gem does the same "uninstal" => "uninstall", "post_install" => "postinstall", "rm" => "uninstall", "remove" => "uninstall", "abv" => "info", "dr" => "doctor", "--repo" => "--repository", "environment" => "--env", "--config" => "config", "-v" => "--version", "lc" => "livecheck", "tc" => "typecheck", }.freeze, T::Hash[String, String])
- DESCRIPTION_SPLITTING_PATTERN =
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.
This pattern is used to split descriptions at full stops. We only consider a dot as a full stop if it is either followed by a whitespace or at the end of the description. In this way we can prevent cutting off a sentence in the middle due to dots in URLs or paths.
/\.(?>\s|$)/
Class Method Summary collapse
- .args_method_name(cmd_path) ⇒ Symbol private
- .basename_without_extension(path) ⇒ String private
- .command_description(command, short: false) ⇒ String? private
- .command_options(command) ⇒ Array<Array<(String, String)>>? private
- .commands(external: true, aliases: false) ⇒ Array<String> private
- .external_cmd_path(cmd) ⇒ Pathname? private
- .external_commands ⇒ Array<String> private
-
.external_ruby_cmd_path(cmd) ⇒ Pathname?
private
Ruby commands which are run by being
required. -
.external_ruby_v2_cmd_path(cmd) ⇒ Pathname?
private
Ruby commands which can be
required without being run. - .find_commands(path) ⇒ Array<Pathname> private
- .find_internal_commands(path) ⇒ Array<String> private
- .internal_cmd_path(cmd) ⇒ Pathname? private
- .internal_commands ⇒ Array<String> private
- .internal_commands_aliases ⇒ Array<String> private
- .internal_commands_paths ⇒ Array<Pathname> private
- .internal_dev_cmd_path(cmd) ⇒ Pathname? private
- .internal_developer_commands ⇒ Array<String> private
- .internal_developer_commands_paths ⇒ Array<Pathname> private
- .method_name(cmd) ⇒ Symbol private
- .named_args_type(command) ⇒ Array<Symbol>, ... private
-
.option_conflicts(command, option) ⇒ Array<String>?
private
Returns the conflicts of a given
optionforcommand. - .path(cmd) ⇒ Pathname? private
- .rebuild_commands_completion_list ⇒ void private
- .rebuild_internal_commands_completion_list ⇒ void private
-
.tap_cmd_directories ⇒ Array<Pathname>
private
An array of all tap cmd directory Pathnames.
- .valid_internal_cmd?(cmd) ⇒ Boolean private
- .valid_internal_dev_cmd?(cmd) ⇒ Boolean private
- .valid_ruby_cmd?(cmd) ⇒ Boolean private
Class Method Details
.args_method_name(cmd_path) ⇒ Symbol
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.
63 64 65 66 67 |
# File 'commands.rb', line 63 def self.args_method_name(cmd_path) cmd_path_basename = basename_without_extension(cmd_path) cmd_method_prefix = method_name(cmd_path_basename) :"#{cmd_method_prefix}_args" end |
.basename_without_extension(path) ⇒ 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.
172 173 174 |
# File 'commands.rb', line 172 def self.basename_without_extension(path) path.basename(path.extname).to_s end |
.command_description(command, short: false) ⇒ 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.
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 |
# File 'commands.rb', line 237 def self.command_description(command, short: false) path = self.path(command) return if path.blank? if (cmd_parser = Homebrew::CLI::Parser.from_cmd_path(path)) if short cmd_parser.description&.split(DESCRIPTION_SPLITTING_PATTERN)&.first else cmd_parser.description end else comment_lines = path.read.lines.grep(/^#:/) # skip the comment's initial usage summary lines comment_lines.slice(2..-1)&.each do |line| match_data = /^#: (?<desc>\w.*+)$/.match(line) next unless match_data desc = T.must(match_data[:desc]) return desc.split(DESCRIPTION_SPLITTING_PATTERN).first if short return desc end nil end end |
.command_options(command) ⇒ Array<Array<(String, 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.
210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 |
# File 'commands.rb', line 210 def self.(command) return if command == "help" path = self.path(command) return if path.blank? if (cmd_parser = Homebrew::CLI::Parser.from_cmd_path(path)) cmd_parser..filter_map do |short, long, desc, hidden| next if hidden [T.must(long || short), desc] end else = [] comment_lines = path.read.lines.grep(/^#:/) return if comment_lines.empty? # skip the comment's initial usage summary lines comment_lines.slice(2..-1)&.each do |line| match_data = / (?<option>-[-\w]+) +(?<desc>.*)$/.match(line) << [match_data[:option], match_data[:desc]] if match_data end end end |
.commands(external: true, aliases: false) ⇒ Array<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.
115 116 117 118 119 120 121 |
# File 'commands.rb', line 115 def self.commands(external: true, aliases: false) cmds = internal_commands cmds += internal_developer_commands cmds += external_commands if external cmds += internal_commands_aliases if aliases cmds.sort end |
.external_cmd_path(cmd) ⇒ Pathname?
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.
99 100 101 |
# File 'commands.rb', line 99 def self.external_cmd_path(cmd) which("brew-#{cmd}", PATH.new(ENV.fetch("PATH")).append(tap_cmd_directories)) end |
.external_commands ⇒ Array<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.
162 163 164 165 166 167 168 169 |
# File 'commands.rb', line 162 def self.external_commands tap_cmd_directories.flat_map do |path| find_commands(path).select(&:executable?) .map { |basename| basename_without_extension(basename) } .map { |p| p.to_s.delete_prefix("brew-").strip } end.map(&:to_s) .sort end |
.external_ruby_cmd_path(cmd) ⇒ Pathname?
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.
Ruby commands which are run by being required.
94 95 96 |
# File 'commands.rb', line 94 def self.external_ruby_cmd_path(cmd) which("brew-#{cmd}.rb", PATH.new(ENV.fetch("PATH")).append(tap_cmd_directories)) end |
.external_ruby_v2_cmd_path(cmd) ⇒ Pathname?
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.
Ruby commands which can be required without being run.
87 88 89 90 |
# File 'commands.rb', line 87 def self.external_ruby_v2_cmd_path(cmd) path = which("#{cmd}.rb", tap_cmd_directories) path if Homebrew.require?(path) end |
.find_commands(path) ⇒ Array<Pathname>
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.
177 178 179 180 181 |
# File 'commands.rb', line 177 def self.find_commands(path) Pathname.glob("#{path}/*") .select(&:file?) .sort end |
.find_internal_commands(path) ⇒ Array<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.
155 156 157 158 159 |
# File 'commands.rb', line 155 def self.find_internal_commands(path) find_commands(path).map(&:basename) .map { |basename| basename_without_extension(basename) } .uniq end |
.internal_cmd_path(cmd) ⇒ Pathname?
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.
70 71 72 73 74 75 |
# File 'commands.rb', line 70 def self.internal_cmd_path(cmd) [ HOMEBREW_CMD_PATH/"#{cmd}.rb", HOMEBREW_CMD_PATH/"#{cmd}.sh", ].find(&:exist?) end |
.internal_commands ⇒ Array<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.
140 141 142 |
# File 'commands.rb', line 140 def self.internal_commands find_internal_commands(HOMEBREW_CMD_PATH).map(&:to_s) end |
.internal_commands_aliases ⇒ Array<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.
150 151 152 |
# File 'commands.rb', line 150 def self.internal_commands_aliases HOMEBREW_INTERNAL_COMMAND_ALIASES.keys end |
.internal_commands_paths ⇒ Array<Pathname>
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.
130 131 132 |
# File 'commands.rb', line 130 def self.internal_commands_paths find_commands HOMEBREW_CMD_PATH end |
.internal_dev_cmd_path(cmd) ⇒ Pathname?
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.
78 79 80 81 82 83 |
# File 'commands.rb', line 78 def self.internal_dev_cmd_path(cmd) [ HOMEBREW_DEV_CMD_PATH/"#{cmd}.rb", HOMEBREW_DEV_CMD_PATH/"#{cmd}.sh", ].find(&:exist?) end |
.internal_developer_commands ⇒ Array<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.
145 146 147 |
# File 'commands.rb', line 145 def self.internal_developer_commands find_internal_commands(HOMEBREW_DEV_CMD_PATH).map(&:to_s) end |
.internal_developer_commands_paths ⇒ Array<Pathname>
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.
135 136 137 |
# File 'commands.rb', line 135 def self.internal_developer_commands_paths find_commands HOMEBREW_DEV_CMD_PATH end |
.method_name(cmd) ⇒ Symbol
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.
55 56 57 58 59 60 |
# File 'commands.rb', line 55 def self.method_name(cmd) cmd.to_s .tr("-", "_") .downcase .to_sym end |
.named_args_type(command) ⇒ Array<Symbol>, ...
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.
265 266 267 268 269 270 271 272 273 |
# File 'commands.rb', line 265 def self.named_args_type(command) path = self.path(command) return if path.blank? cmd_parser = Homebrew::CLI::Parser.from_cmd_path(path) return if cmd_parser.blank? Array(cmd_parser.named_args_type) end |
.option_conflicts(command, option) ⇒ Array<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 the conflicts of a given option for command.
277 278 279 280 281 282 283 284 285 286 287 288 |
# File 'commands.rb', line 277 def self.option_conflicts(command, option) path = self.path(command) return if path.blank? cmd_parser = Homebrew::CLI::Parser.from_cmd_path(path) return if cmd_parser.blank? cmd_parser.conflicts.map do |set| set.map! { |s| s.tr "_", "-" } set - [option] if set.include? option end.flatten.compact end |
.path(cmd) ⇒ Pathname?
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.
104 105 106 107 108 109 110 111 112 |
# File 'commands.rb', line 104 def self.path(cmd) internal_cmd = HOMEBREW_INTERNAL_COMMAND_ALIASES.fetch(cmd, cmd) path ||= internal_cmd_path(internal_cmd) path ||= internal_dev_cmd_path(internal_cmd) path ||= external_ruby_v2_cmd_path(cmd) path ||= external_ruby_cmd_path(cmd) path ||= external_cmd_path(cmd) path end |
.rebuild_commands_completion_list ⇒ 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.
195 196 197 198 199 200 201 202 203 204 205 206 207 |
# File 'commands.rb', line 195 def self.rebuild_commands_completion_list require "completions" # Ensure that the cache exists so we can build the commands list HOMEBREW_CACHE.mkpath cmds = commands(aliases: true) - Homebrew::Completions::COMPLETIONS_EXCLUSION_LIST all_commands_file = HOMEBREW_CACHE/"all_commands_list.txt" external_commands_file = HOMEBREW_CACHE/"external_commands_list.txt" all_commands_file.atomic_write("#{cmds.sort.join("\n")}\n") external_commands_file.atomic_write("#{external_commands.sort.join("\n")}\n") end |
.rebuild_internal_commands_completion_list ⇒ 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.
184 185 186 187 188 189 190 191 192 |
# File 'commands.rb', line 184 def self.rebuild_internal_commands_completion_list require "completions" cmds = internal_commands + internal_developer_commands + internal_commands_aliases cmds.reject! { |cmd| Homebrew::Completions::COMPLETIONS_EXCLUSION_LIST.include? cmd } file = HOMEBREW_REPOSITORY/"completions/internal_commands_list.txt" file.atomic_write("#{cmds.sort.join("\n")}\n") end |
.tap_cmd_directories ⇒ Array<Pathname>
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.
An array of all tap cmd directory Pathnames.
125 126 127 |
# File 'commands.rb', line 125 def self.tap_cmd_directories Pathname.glob HOMEBREW_TAP_DIRECTORY/"*/*/cmd" end |
.valid_internal_cmd?(cmd) ⇒ 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.
39 40 41 |
# File 'commands.rb', line 39 def self.valid_internal_cmd?(cmd) Homebrew.require?(HOMEBREW_CMD_PATH/cmd) end |
.valid_internal_dev_cmd?(cmd) ⇒ 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.
44 45 46 |
# File 'commands.rb', line 44 def self.valid_internal_dev_cmd?(cmd) Homebrew.require?(HOMEBREW_DEV_CMD_PATH/cmd) end |
.valid_ruby_cmd?(cmd) ⇒ 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.
49 50 51 52 |
# File 'commands.rb', line 49 def self.valid_ruby_cmd?(cmd) (valid_internal_cmd?(cmd) || valid_internal_dev_cmd?(cmd) || external_ruby_v2_cmd_path(cmd).present?) && (Homebrew::AbstractCommand.command(cmd)&.ruby_cmd? == true) end |