Sha256: 7ccae230ee2e3da86d147df686ca3279cb3983104c40e6e6d7b75a648340216b

Contents?: true

Size: 1.27 KB

Versions: 3

Compression:

Stored size: 1.27 KB

Contents

require "mini_magick/logger"
require "timeout"

module MiniMagick
  ##
  # Sends commands to the shell (more precisely, it sends commands directly to
  # the operating system).
  #
  # @private
  #
  class Shell

    def initialize(whiny = true)
      @whiny = whiny
    end

    def run(command)
      stdout, stderr, code = execute(command)

      case code
      when 1
        fail MiniMagick::Error, "`#{command.join(" ")}` failed with error:\n#{stderr}"
      when 127
        fail MiniMagick::Error, stderr
      end if @whiny

      $stderr.print(stderr)

      stdout
    end

    def execute(command)
      stdout, stderr, status =
        MiniMagick.logger.debug(command.join(" ")) do
          Timeout.timeout(MiniMagick.timeout) do
            send("execute_#{MiniMagick.shell_api.gsub("-", "_")}", *command)
          end
        end

      [stdout, stderr, status.exitstatus]
    rescue Errno::ENOENT, IOError
      ["", "executable not found: \"#{command.first}\"", 127]
    end

    def execute_open3(*command)
      require "open3"
      Open3.capture3(*command)
    end

    def execute_posix_spawn(*command)
      require "posix-spawn"
      pid, stdin, stdout, stderr = POSIX::Spawn.popen4(*command)
      Process.waitpid(pid)

      [stdout.read, stderr.read, $?]
    end

  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
mini_magick-4.2.7 lib/mini_magick/shell.rb
mini_magick-4.2.5 lib/mini_magick/shell.rb
mini_magick-4.2.4 lib/mini_magick/shell.rb