class Console::Event::Spawn
Represents a child process spawn event.
“‘ruby Console.info(self, **Console::Event::Spawn.for(“ls”, “-l”))
event = Console::Event::Spawn.for
(“ls”, “-l”) event.status = Process.wait “‘
Attributes
@attribute [Numeric] The end time of the command.
@attribute [Numeric] The start time of the command.
@attribute [Process::Status] The status of the command, if it has completed.
Public Class Methods
Source
# File vendor/bundle/ruby/3.4.0/gems/console-1.30.2/lib/console/event/spawn.rb, line 25 def self.for(*arguments, **options) # Extract out the command environment: if arguments.first.is_a?(Hash) environment = arguments.shift self.new(environment, arguments, options) else self.new(nil, arguments, options) end end
Create a new spawn event.
@parameter arguments [Array] The arguments to the command, similar to how you would pass them to ‘Kernel.system` or `Process.spawn`. @parameter options [Hash] The options to pass to the command, similar to how you would pass them to `Kernel.system` or `Process.spawn`. @returns [Spawn] The new spawn event representing the command.
Source
# File vendor/bundle/ruby/3.4.0/gems/console-1.30.2/lib/console/event/spawn.rb, line 40 def initialize(environment, arguments, options) @environment = environment @arguments = arguments @options = options @start_time = Clock.now @end_time = nil @status = nil end
Create a new spawn event.
@parameter environment [Hash] The environment to use when running the command. @parameter arguments [Array] The arguments used for command execution. @parameter options [Hash] The options to pass to the command, similar to how you would pass them to ‘Kernel.system` or `Process.spawn`.
Public Instance Methods
Source
# File vendor/bundle/ruby/3.4.0/gems/console-1.30.2/lib/console/event/spawn.rb, line 71 def duration if @end_time @end_time - @start_time end end
Calculate the duration of the command, if it has completed.
@returns [Numeric] The duration of the command.
Source
# File vendor/bundle/ruby/3.4.0/gems/console-1.30.2/lib/console/event/spawn.rb, line 99 def emit(*arguments, **options) options[:severity] ||= :info super end
Log the spawn event.
@parameter arguments [Array] The arguments to log. @parameter options [Hash] Additional options to pass to the logger output.
Console::Event::Generic#emit
Source
# File vendor/bundle/ruby/3.4.0/gems/console-1.30.2/lib/console/event/spawn.rb, line 63 def status=(status) @end_time = Time.now @status = status end
Set
the status of the command, and record the end time.
@parameter status [Process::Status] The status of the command.
Source
# File vendor/bundle/ruby/3.4.0/gems/console-1.30.2/lib/console/event/spawn.rb, line 80 def to_hash Hash.new.tap do |hash| hash[:type] = :spawn hash[:environment] = @environment if @environment&.any? hash[:arguments] = @arguments if @arguments&.any? hash[:options] = @options if @options&.any? hash[:status] = @status.to_i if @status if duration = self.duration hash[:duration] = duration end end end
Convert the spawn event to a hash suitable for JSON
serialization.
@returns [Hash] The hash representation of the spawn event.