Sha256: be51b56eb6c2295adbfd278c3fcc02eeed30880fb558c9261592035d4088776a
Contents?: true
Size: 1.49 KB
Versions: 5
Compression:
Stored size: 1.49 KB
Contents
require 'open3' require 'fileutils' module SSHKit module Backend class Local < Abstract def initialize(_ = nil, &block) @host = Host.new(:local) # just for logging @block = block end def upload!(local, remote, _options = {}) if local.is_a?(String) FileUtils.cp(local, remote) else File.open(remote, "wb") do |f| IO.copy_stream(local, f) end end end def download!(remote, local=nil, _options = {}) if local.nil? FileUtils.cp(remote, File.basename(remote)) else File.open(remote, "rb") do |f| IO.copy_stream(f, local) end end end private def execute_command(cmd) output.log_command_start(cmd) cmd.started = Time.now Open3.popen3(cmd.to_command) do |stdin, stdout, stderr, wait_thr| stdout_thread = Thread.new do while (line = stdout.gets) do cmd.on_stdout(stdin, line) output.log_command_data(cmd, :stdout, line) end end stderr_thread = Thread.new do while (line = stderr.gets) do cmd.on_stderr(stdin, line) output.log_command_data(cmd, :stderr, line) end end stdout_thread.join stderr_thread.join cmd.exit_status = wait_thr.value.to_i output.log_command_exit(cmd) end end end end end
Version data entries
5 entries across 5 versions & 1 rubygems