class MiniMagick::Shell

Sends commands to the shell (more precisely, it sends commands directly to the operating system).

@private

Public Instance Methods

execute(command) click to toggle source
# File lib/mini_magick/shell.rb, line 28
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
execute_open3(*command) click to toggle source
# File lib/mini_magick/shell.rb, line 41
def execute_open3(*command)
  require "open3"
  Open3.capture3(*command)
end
execute_posix_spawn(*command) click to toggle source
# File lib/mini_magick/shell.rb, line 46
def execute_posix_spawn(*command)
  require "posix-spawn"
  pid, stdin, stdout, stderr = POSIX::Spawn.popen4(*command)
  Process.waitpid(pid)

  [stdout.read, stderr.read, $?]
end
run(command, options = {}) click to toggle source
# File lib/mini_magick/shell.rb, line 13
def run(command, options = {})
  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 options.fetch(:whiny, true)

  $stderr.print(stderr) unless options[:stderr] == false

  stdout
end