summaryrefslogtreecommitdiff
path: root/lib/gitlab/popen.rb
blob: a0fd41161a56e56addca8a00a1d1995f8c0be48c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
require 'fileutils'
require 'open3'

module Gitlab
  module Popen
    extend self

    def popen(cmd, path = nil)
      unless cmd.is_a?(Array)
        raise "System commands must be given as an array of strings"
      end

      path ||= Dir.pwd
      vars = { "PWD" => path }
      options = { chdir: path }

      unless File.directory?(path)
        FileUtils.mkdir_p(path)
      end

      @cmd_output = ""
      @cmd_status = 0
      Open3.popen3(vars, *cmd, options) do |stdin, stdout, stderr, wait_thr|
        yield(stdin) if block_given?
        stdin.close

        @cmd_output << stdout.read
        @cmd_output << stderr.read
        @cmd_status = wait_thr.value.exitstatus
      end

      [@cmd_output, @cmd_status]
    end
  end
end