vote up 1 vote down star

I have read tons of posts but still can't seem to figure it out.

I want to subprocess.Popen() rsync.exe in windows, and print the stdout in python.

My code works, but it doesn't catch the progress until a file is done transfered! I want to print the progress for each file in realtime.

Using python 3.1 now since I heard it should be better at handling IO.

import subprocess, time, os, sys

cmd = "rsync.exe -vaz -P source/ dest/"
p, line = True, 'start'


p = subprocess.Popen(cmd,
                     shell=True,
                     bufsize=64,
                     stdin=subprocess.PIPE,
                     stderr=subprocess.PIPE,
                     stdout=subprocess.PIPE)

for line in p.stdout:
    print(">>> " + str(line.rstrip()))
    p.stdout.flush()
flag

2 Answers

vote up 2 vote down

Some rules of thumb for subprocess.

  • Never use shell=True. It needlessy invokes an extra shell process to call your program.
  • When calling processes, arguments are passed around as lists. sys.argv in python is a list, and so is argv in C. So you pass a list to Popen to call subprocesses, not a string.
  • Don't redirect stderr to a PIPE when you're not reading it.
  • Don't redirect stdin when you're not writing to it.

Example:

import subprocess, time, os, sys
cmd = ["rsync.exe", "-vaz", "-P", "source/" ,"dest/"]

p = subprocess.Popen(cmd,
                     stderr=subprocess.PIPE,
                     stdout=subprocess.STDOUT)

for line in p.stdout:
    print(">>> " + line.rstrip())

That said, it is very probable that rsync buffers its output when it detects that it is connected to a pipe instead of a terminal. It is in fact the default - when connected to a pipe, programs must explicity flush stdout for realtime results, otherwise standard C library will buffer.

To test for that, try running this instead:

cmd = [sys.executable, 'test_out.py']

and create a test_out.py file with the contents:

import sys
import time
print ("Hello")
sys.stdout.flush()
time.sleep(10)
print ("World")

Executing that subprocess should give you "Hello" and wait 10 seconds before giving "World". If that happens with the python code above and not with rsync, that means rsync itself is buffering output, so you are out of luck.

A solution would be to connect direct to a pty, using soemthing like pexpect.

link|flag
shell=False is right thing when you construct command line especially from user entered data. But nevertheless shell=True is useful too when you get the whole command line from trusted source (e.g. hardcoded in the script). – Denis Otkidach Oct 22 at 16:52
@Denis Otkidach: I don't think that warrants usage of shell=True. Think about it - you're invoking another process on your OS, involving memory allocation, disk usage, processor scheduling, just to split a string! And one you joined yourself!! You could split in python, but it is easier writing each parameter separately anyway. Also, using a list means you don't have to escape special shell chars: spaces, ;, >, <, &.. Your parameters can contain those chars and you don't have to worry! I can't see a reason to use shell=True, really, unless you're running a shell-only command. – nosklo Oct 22 at 20:02
nosklo,that should be: p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) – Senthil Kumaran Oct 23 at 7:28
vote up -1 vote down

Change the stdout from the rsync process to be unbuffered.

p = subprocess.Popen(cmd,
                     shell=True,
                     bufsize=0,  # 0=unbuffered, 1=line-buffered, else buffer-size
                     stdin=subprocess.PIPE,
                     stderr=subprocess.PIPE,
                     stdout=subprocess.PIPE)
link|flag
1  
Buffering happens on the rsync side, changing bufsize attribute on python side won't help. – nosklo Oct 22 at 12:37

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.