* lib/open3.rb (Open3.popen3w): removed.

(Open3.popen3): notice wait_thr.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@16213 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2008-04-26 16:47:30 +00:00
Родитель c42a631063
Коммит d95d209033
2 изменённых файлов: 20 добавлений и 42 удалений

Просмотреть файл

@ -1,3 +1,8 @@
Sun Apr 27 01:46:29 2008 Tanaka Akira <akr@fsij.org>
* lib/open3.rb (Open3.popen3w): removed.
(Open3.popen3): notice wait_thr.
Sun Apr 27 01:13:05 2008 Eric Hodel <drbrain@segment7.net> Sun Apr 27 01:13:05 2008 Eric Hodel <drbrain@segment7.net>
* lib/rdoc, test/rdoc: Update to RDoc 2.0.0 r56. * lib/rdoc, test/rdoc: Update to RDoc 2.0.0 r56.

Просмотреть файл

@ -9,56 +9,29 @@
# #
# #
# Open3 grants you access to stdin, stdout, and stderr when running another # Open3 grants you access to stdin, stdout, stderr and a thread to wait the
# program. Example: # child process when running another program.
#
# Example:
# #
# require "open3" # require "open3"
# include Open3 # include Open3
# #
# stdin, stdout, stderr = popen3('nroff -man') # stdin, stdout, stderr, wait_thr = popen3('nroff -man')
# #
# If the exit status of the child process is required, Open3.popen3w is usable. # 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.
# #
# Open3.popen3 can also take a block which will receive stdin, stdout and # Example:
# stderr as parameters. This ensures stdin, stdout and stderr are closed
# once the block exits. Example:
# #
# require "open3" # require "open3"
# #
# Open3.popen3('nroff -man') { |stdin, stdout, stderr| ... } # Open3.popen3('nroff -man') { |stdin, stdout, stderr, wait_thr| ... }
# #
module Open3 module Open3
#
# Open stdin, stdout, and stderr streams and start external executable.
#
# Non-block form:
#
# stdin, stdout, stderr = Open3.popen3(cmd)
# ...
# stdin.close # stdin, stdout and stderr should be closed in this form.
# stdout.close
# stderr.close
#
# Block form:
#
# Open3.popen3(cmd) { |stdin, stdout, stderr| ... }
# # stdin, stdout and stderr is closed automatically in this form.
#
# The parameter +cmd+ is passed directly to Kernel#spawn.
#
def popen3(*cmd)
if defined? yield
popen3w(*cmd) {|stdin, stdout, stderr, wait_thr|
yield stdin, stdout, stderr
}
else
stdin, stdout, stderr, wait_thr = popen3w(*cmd)
return stdin, stdout, stderr
end
end
module_function :popen3
# #
# Open stdin, stdout, and stderr streams and start external executable. # Open stdin, stdout, and stderr streams and start external executable.
# In addition, a thread for waiting the started process is noticed. # In addition, a thread for waiting the started process is noticed.
@ -67,7 +40,7 @@ module Open3
# #
# Non-block form: # Non-block form:
# #
# stdin, stdout, stderr, wait_thr = Open3.popen3w(cmd) # stdin, stdout, stderr, wait_thr = Open3.popen3(cmd)
# pid = wait_thr[:pid] # pid of the started process. # pid = wait_thr[:pid] # pid of the started process.
# ... # ...
# stdin.close # stdin, stdout and stderr should be closed in this form. # stdin.close # stdin, stdout and stderr should be closed in this form.
@ -77,7 +50,7 @@ module Open3
# #
# Block form: # Block form:
# #
# Open3.popen3w(cmd) { |stdin, stdout, stderr, wait_thr| ... } # Open3.popen3(cmd) { |stdin, stdout, stderr, wait_thr| ... }
# #
# The parameter +cmd+ is passed directly to Kernel#spawn. # The parameter +cmd+ is passed directly to Kernel#spawn.
# #
@ -86,7 +59,7 @@ module Open3
# #
# Closing stdin, stdout and stderr does not wait the process. # Closing stdin, stdout and stderr does not wait the process.
# #
def popen3w(*cmd) def popen3(*cmd)
pw = IO::pipe # pipe[0] for read, pipe[1] for write pw = IO::pipe # pipe[0] for read, pipe[1] for write
pr = IO::pipe pr = IO::pipe
pe = IO::pipe pe = IO::pipe
@ -109,7 +82,7 @@ module Open3
end end
pi pi
end end
module_function :popen3w module_function :popen3
end end
if $0 == __FILE__ if $0 == __FILE__