Class: SystemCommand::Result Private
- Includes:
- Context
- Defined in:
- system_command.rb
Overview
This class is part of a private API. This class may only be used in the Homebrew/brew repository. Third parties should avoid using this class if possible, as it may be removed or changed without warning.
Result containing the output and exit status of a finished sub-process.
Instance Attribute Summary collapse
- #command ⇒ Object private
- #exit_status ⇒ Object private
- #status ⇒ Object private
Instance Method Summary collapse
- #assert_success! ⇒ void private
- #initialize(command, output, status, secrets:) ⇒ void constructor private
- #merged_output ⇒ String private
- #plist ⇒ Array, ... private
- #stderr ⇒ String private
- #stdout ⇒ String private
- #success? ⇒ Boolean private
- #to_ary ⇒ Array<(String, String, Process::Status)> private
Methods included from Context
current, current=, #debug?, #quiet?, #verbose?, #with_context
Constructor Details
#initialize(command, output, status, secrets:) ⇒ 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.
392 393 394 395 396 397 398 |
# File 'system_command.rb', line 392 def initialize(command, output, status, secrets:) @command = command @output = output @status = status @exit_status = status.exitstatus @secrets = secrets end |
Instance Attribute Details
#command ⇒ Object
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.
382 383 384 |
# File 'system_command.rb', line 382 def command @command end |
#exit_status ⇒ Object
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.
382 383 384 |
# File 'system_command.rb', line 382 def exit_status @exit_status end |
#status ⇒ Object
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.
382 383 384 |
# File 'system_command.rb', line 382 def status @status end |
Instance Method Details
#assert_success! ⇒ 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.
401 402 403 404 405 |
# File 'system_command.rb', line 401 def assert_success! return if @status.success? raise ErrorDuringExecution.new(command, status: @status, output: @output, secrets: @secrets) end |
#merged_output ⇒ 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.
422 423 424 425 |
# File 'system_command.rb', line 422 def merged_output @merged_output ||= @output.map { |_, line| line } .join end |
#plist ⇒ Array, ...
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.
440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 |
# File 'system_command.rb', line 440 def plist @plist ||= begin output = stdout output = output.sub(/\A(.*?)(\s*<\?\s*xml)/m) do warn_plist_garbage(T.must(Regexp.last_match(1))) Regexp.last_match(2) end output = output.sub(%r{(<\s*/\s*plist\s*>\s*)(.*?)\Z}m) do warn_plist_garbage(T.must(Regexp.last_match(2))) Regexp.last_match(1) end Plist.parse_xml(output, marshal: false) end end |
#stderr ⇒ 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.
415 416 417 418 419 |
# File 'system_command.rb', line 415 def stderr @stderr ||= @output.select { |type,| type == :stderr } .map { |_, line| line } .join end |
#stdout ⇒ 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.
408 409 410 411 412 |
# File 'system_command.rb', line 408 def stdout @stdout ||= @output.select { |type,| type == :stdout } .map { |_, line| line } .join end |
#success? ⇒ 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.
428 429 430 431 432 |
# File 'system_command.rb', line 428 def success? return false if @exit_status.nil? @exit_status.zero? end |
#to_ary ⇒ Array<(String, String, Process::Status)>
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.
435 436 437 |
# File 'system_command.rb', line 435 def to_ary [stdout, stderr, status] end |