Class: Toys::Utils::Exec::Result
- Inherits:
-
Object
- Object
- Toys::Utils::Exec::Result
- Defined in:
- lib/toys/utils/exec.rb
Overview
The result returned from a subcommand execution. This includes the identifying name of the execution (if any), the result status of the execution, and any captured stream output.
Possible result statuses are:
- The process failed to start. #failed? will return true, and #exception will return an exception describing the failure (often an errno).
- The process executed and exited with a normal exit code. Either #success? or #error? will return true, and #exit_code will return the numeric exit code.
- The process executed but was terminated by an uncaught signal. #signaled? will return true, and #term_signal will return the numeric signal code.
Instance Attribute Summary collapse
-
#captured_err ⇒ String?
readonly
The captured error string.
-
#captured_out ⇒ String?
readonly
The captured output string.
-
#exception ⇒ Exception?
readonly
The exception raised if a process couldn't be started.
-
#name ⇒ Object
readonly
The subcommand's name.
-
#status ⇒ Process::Status?
readonly
The Ruby process status object, providing various information about the ending state of the process.
Instance Method Summary collapse
-
#error? ⇒ Boolean
Returns true if the subprocess terminated with a nonzero status, or false if the process failed to start, terminated due to a signal, or returned a zero status.
-
#exit_code ⇒ Integer?
The numeric status code for a process that exited normally,.
-
#failed? ⇒ Boolean
Returns true if the subprocess failed to start, or false if the process was able to execute.
-
#signaled? ⇒ Boolean
Returns true if the subprocess terminated due to an unhandled signal, or false if the process failed to start or exited normally.
-
#success? ⇒ Boolean
Returns true if the subprocess terminated with a zero status, or false if the process failed to start, terminated due to a signal, or returned a nonzero status.
-
#term_signal ⇒ Integer?
The numeric signal code that caused process termination.
Instance Attribute Details
#captured_err ⇒ String? (readonly)
The captured error string.
828 829 830 |
# File 'lib/toys/utils/exec.rb', line 828 def captured_err @captured_err end |
#captured_out ⇒ String? (readonly)
The captured output string.
820 821 822 |
# File 'lib/toys/utils/exec.rb', line 820 def captured_out @captured_out end |
#exception ⇒ Exception? (readonly)
The exception raised if a process couldn't be started.
Exactly one of #exception and #status will be non-nil.
850 851 852 |
# File 'lib/toys/utils/exec.rb', line 850 def exception @exception end |
#name ⇒ Object (readonly)
The subcommand's name.
812 813 814 |
# File 'lib/toys/utils/exec.rb', line 812 def name @name end |
#status ⇒ Process::Status? (readonly)
The Ruby process status object, providing various information about the ending state of the process.
Exactly one of #exception and #status will be non-nil.
840 841 842 |
# File 'lib/toys/utils/exec.rb', line 840 def status @status end |
Instance Method Details
#error? ⇒ Boolean
Returns true if the subprocess terminated with a nonzero status, or false if the process failed to start, terminated due to a signal, or returned a zero status.
920 921 922 923 |
# File 'lib/toys/utils/exec.rb', line 920 def error? code = exit_code !code.nil? && !code.zero? end |
#exit_code ⇒ Integer?
The numeric status code for a process that exited normally,
Exactly one of #exception, #exit_code, and #term_signal will be non-nil.
863 864 865 |
# File 'lib/toys/utils/exec.rb', line 863 def exit_code status&.exitstatus end |
#failed? ⇒ Boolean
Returns true if the subprocess failed to start, or false if the process was able to execute.
887 888 889 |
# File 'lib/toys/utils/exec.rb', line 887 def failed? status.nil? end |
#signaled? ⇒ Boolean
Returns true if the subprocess terminated due to an unhandled signal, or false if the process failed to start or exited normally.
897 898 899 |
# File 'lib/toys/utils/exec.rb', line 897 def signaled? !term_signal.nil? end |
#success? ⇒ Boolean
Returns true if the subprocess terminated with a zero status, or false if the process failed to start, terminated due to a signal, or returned a nonzero status.
908 909 910 911 |
# File 'lib/toys/utils/exec.rb', line 908 def success? code = exit_code !code.nil? && code.zero? end |
#term_signal ⇒ Integer?
The numeric signal code that caused process termination.
Exactly one of #exception, #exit_code, and #term_signal will be non-nil.
877 878 879 |
# File 'lib/toys/utils/exec.rb', line 877 def term_signal status&.termsig end |