Sha256: 9291264dad85b6aa48cdc8967238a3d646b5e31019167dd92244745ddb80c492

Contents?: true

Size: 1.22 KB

Versions: 3

Compression:

Stored size: 1.22 KB

Contents

# frozen_string_literal: true

#
# Because Open3 uses Process.detach the env $? is not set so
# this class reimplements Open3.popen3 with Process.wait instead.
# [FACT-2934] When calling Facter::Core::Execution, $? and $CHILD_STATUS
# ruby env variables should be set.
#

module Facter
  module Core
    module Execution
      class Popen3
        def self.popen_rune(cmd, opts, child_io, parent_io) # :nodoc:
          pid = spawn(*cmd, opts)
          child_io.each(&:close)
          result = [*parent_io, pid]
          if defined? yield
            begin
              return yield(*result)
            ensure
              parent_io.each(&:close)
              Process.wait(pid)
            end
          end
          result
        end

        def self.popen3e(*cmd, &block)
          opts = if cmd.last.is_a? Hash
                   cmd.pop.dup
                 else
                   {}
                 end
          in_r, in_w = IO.pipe
          opts[:in] = in_r
          in_w.sync = true
          out_r, out_w = IO.pipe
          opts[:out] = out_w
          err_r, err_w = IO.pipe
          opts[:err] = err_w
          popen_rune(cmd, opts, [in_r, out_w, err_w], [in_w, out_r, err_r], &block)
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
facter-4.0.52 lib/facter/custom_facts/core/execution/popen3.rb
facter-4.0.51 lib/facter/custom_facts/core/execution/popen3.rb
facter-4.0.50 lib/facter/custom_facts/core/execution/popen3.rb