-
-
Save SalemHarrache/f8bab57d7d9b5cc55c11 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# I was frustrated that no matter what buffer setting I passed to communicate, | |
# I could not get stdout from my subprocess until the process had completed. | |
# I googled around and came up with this, which illustrates the problem and a | |
# solution. | |
# http://stackoverflow.com/questions/2804543/read-subprocess-stdout-line-by-line | |
# http://bugs.python.org/issue3907 | |
# http://docs.python.org/library/io.html | |
import io | |
import os.path | |
import subprocess | |
import sys | |
import time | |
def generate(): | |
for i in xrange(0, 20): | |
print 'line ' + str(i) | |
sys.stdout.flush() | |
time.sleep(0.3) | |
def invoke_subprocess(bufsize): | |
return subprocess.Popen('python ' + os.path.abspath(__file__) + ' --generate', shell=True, stdout=subprocess.PIPE, bufsize=bufsize) | |
def subprocess_communicate(bufsize): | |
p = invoke_subprocess(bufsize) | |
while p.returncode is None: | |
(stdout, stderr) = p.communicate() | |
for line in stdout.splitlines(): | |
yield line | |
def io_open(): | |
p = invoke_subprocess(1) | |
for line in io.open(p.stdout.fileno()): | |
yield line.rstrip('\n') | |
def demo(): | |
for (name, fn) in { | |
'unbuffered p.communicate()': lambda: subprocess_communicate(0), | |
'line buffered p.communicate()': lambda: subprocess_communicate(1), | |
'io.open(p.stdout)': lambda: io_open(), | |
}.iteritems(): | |
start = time.time() | |
first = None | |
stop = None | |
lines = [] | |
for line in fn(): | |
lines.append(line) | |
if first is None: | |
first = time.time() | |
stop = time.time() | |
print name + ': ' + str(len(lines)) + ' received' | |
if first is not None: | |
print name + ': ' + str(first - start) + ' seconds until first line' | |
print name + ': ' + str(stop - start) + ' seconds until all lines' | |
if __name__ == '__main__': | |
if len(sys.argv) == 2 and sys.argv[1] == '--generate': | |
generate() | |
else: | |
demo() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment