2003-09-16 21:37:34 +04:00
|
|
|
#
|
2006-10-09 18:49:49 +04:00
|
|
|
# = open3.rb: Popen, but with stderr, too
|
1999-08-13 09:45:20 +04:00
|
|
|
#
|
2006-10-09 18:49:49 +04:00
|
|
|
# Author:: Yukihiro Matsumoto
|
|
|
|
# Documentation:: Konrad Meyer
|
|
|
|
#
|
|
|
|
# Open3 gives you access to stdin, stdout, and stderr when running other
|
|
|
|
# programs.
|
|
|
|
#
|
|
|
|
|
2004-12-15 19:01:11 +03:00
|
|
|
#
|
2008-04-26 20:47:30 +04:00
|
|
|
# Open3 grants you access to stdin, stdout, stderr and a thread to wait the
|
|
|
|
# child process when running another program.
|
|
|
|
#
|
|
|
|
# Example:
|
2004-12-15 19:01:11 +03:00
|
|
|
#
|
2006-10-09 18:49:49 +04:00
|
|
|
# require "open3"
|
2006-08-04 22:05:50 +04:00
|
|
|
# include Open3
|
|
|
|
#
|
2008-04-26 20:47:30 +04:00
|
|
|
# stdin, stdout, stderr, wait_thr = popen3('nroff -man')
|
2006-08-04 22:05:50 +04:00
|
|
|
#
|
2008-04-26 20:47:30 +04:00
|
|
|
# Open3.popen3 can also take a block which will receive stdin, stdout,
|
|
|
|
# stderr and wait_thr as parameters.
|
|
|
|
# This ensures stdin, stdout and stderr are closed and
|
|
|
|
# the process is terminated once the block exits.
|
2008-04-26 08:03:59 +04:00
|
|
|
#
|
2008-04-26 20:47:30 +04:00
|
|
|
# Example:
|
2006-08-04 22:05:50 +04:00
|
|
|
#
|
2006-10-09 18:49:49 +04:00
|
|
|
# require "open3"
|
2006-08-04 22:05:50 +04:00
|
|
|
#
|
2008-04-26 20:47:30 +04:00
|
|
|
# Open3.popen3('nroff -man') { |stdin, stdout, stderr, wait_thr| ... }
|
2006-10-09 18:49:49 +04:00
|
|
|
#
|
1999-08-13 09:45:20 +04:00
|
|
|
|
|
|
|
module Open3
|
2008-04-26 08:03:59 +04:00
|
|
|
#
|
|
|
|
# Open stdin, stdout, and stderr streams and start external executable.
|
|
|
|
# In addition, a thread for waiting the started process is noticed.
|
2008-04-26 15:25:40 +04:00
|
|
|
# The thread has a thread variable :pid which is the pid of the started
|
|
|
|
# process.
|
2008-04-26 08:03:59 +04:00
|
|
|
#
|
|
|
|
# Non-block form:
|
|
|
|
#
|
2008-04-26 20:47:30 +04:00
|
|
|
# stdin, stdout, stderr, wait_thr = Open3.popen3(cmd)
|
2008-04-26 15:25:40 +04:00
|
|
|
# pid = wait_thr[:pid] # pid of the started process.
|
2008-04-26 08:03:59 +04:00
|
|
|
# ...
|
|
|
|
# stdin.close # stdin, stdout and stderr should be closed in this form.
|
|
|
|
# stdout.close
|
|
|
|
# stderr.close
|
|
|
|
# exit_status = wait_thr.value # Process::Status object returned.
|
|
|
|
#
|
|
|
|
# Block form:
|
|
|
|
#
|
2008-04-26 20:47:30 +04:00
|
|
|
# Open3.popen3(cmd) { |stdin, stdout, stderr, wait_thr| ... }
|
2008-04-26 08:03:59 +04:00
|
|
|
#
|
|
|
|
# The parameter +cmd+ is passed directly to Kernel#spawn.
|
|
|
|
#
|
2008-04-26 15:54:13 +04:00
|
|
|
# wait_thr.value waits the termination of the process.
|
|
|
|
# The block form also waits the process when it returns.
|
|
|
|
#
|
|
|
|
# Closing stdin, stdout and stderr does not wait the process.
|
|
|
|
#
|
2008-04-26 20:47:30 +04:00
|
|
|
def popen3(*cmd)
|
1999-08-13 09:45:20 +04:00
|
|
|
pw = IO::pipe # pipe[0] for read, pipe[1] for write
|
|
|
|
pr = IO::pipe
|
|
|
|
pe = IO::pipe
|
|
|
|
|
2008-04-26 08:03:59 +04:00
|
|
|
pid = spawn(*cmd, STDIN=>pw[0], STDOUT=>pr[1], STDERR=>pe[1])
|
|
|
|
wait_thr = Process.detach(pid)
|
2000-10-20 20:37:01 +04:00
|
|
|
pw[0].close
|
|
|
|
pr[1].close
|
|
|
|
pe[1].close
|
2008-04-26 08:03:59 +04:00
|
|
|
pi = [pw[1], pr[0], pe[0], wait_thr]
|
2002-01-29 10:16:09 +03:00
|
|
|
pw[1].sync = true
|
2000-10-20 20:37:01 +04:00
|
|
|
if defined? yield
|
2000-10-25 08:48:41 +04:00
|
|
|
begin
|
2000-11-08 08:29:37 +03:00
|
|
|
return yield(*pi)
|
2000-10-25 08:48:41 +04:00
|
|
|
ensure
|
2008-04-26 08:03:59 +04:00
|
|
|
[pw[1], pr[0], pe[0]].each{|p| p.close unless p.closed?}
|
|
|
|
wait_thr.join
|
2000-10-25 08:48:41 +04:00
|
|
|
end
|
1999-08-13 09:45:20 +04:00
|
|
|
end
|
2000-10-20 20:37:01 +04:00
|
|
|
pi
|
1999-08-13 09:45:20 +04:00
|
|
|
end
|
2008-04-26 20:47:30 +04:00
|
|
|
module_function :popen3
|
1999-08-13 09:45:20 +04:00
|
|
|
end
|
|
|
|
|
|
|
|
if $0 == __FILE__
|
|
|
|
a = Open3.popen3("nroff -man")
|
|
|
|
Thread.start do
|
2000-02-25 06:51:23 +03:00
|
|
|
while line = gets
|
|
|
|
a[0].print line
|
1999-08-13 09:45:20 +04:00
|
|
|
end
|
|
|
|
a[0].close
|
|
|
|
end
|
2000-02-25 06:51:23 +03:00
|
|
|
while line = a[1].gets
|
|
|
|
print ":", line
|
1999-08-13 09:45:20 +04:00
|
|
|
end
|
|
|
|
end
|