Path: csiph.com!usenet.pasdenom.info!news.albasani.net!newsfeed.freenet.ag!news2.euro.net!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.004 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'output': 0.04; "'')": 0.07; 'reason,': 0.07; 'subject:files': 0.09; 'subtle': 0.09; 'threads.': 0.09; "('',": 0.16; 'called,': 0.16; 'deadlock': 0.16; 'pipes': 0.16; 'poll': 0.16; 'processes.': 0.16; 'wrote:': 0.17; 'accepting': 0.18; '>>>': 0.18; 'input': 0.18; 'otherwise,': 0.20; 'object.': 0.22; 'pipe': 0.22; 'sorry,': 0.22; 'example': 0.23; 'this:': 0.23; 'header:In-Reply-To:1': 0.25; 'am,': 0.27; 'separate': 0.27; 'message-id:@mail.gmail.com': 0.27; '>>>>': 0.29; 'parent': 0.29; 'subject:size': 0.29; 'received:209.85.215.46': 0.30; 'to:addr:python-list': 0.33; 'received:google.com': 0.34; 'nov': 0.35; 'received:209.85': 0.35; 'something': 0.35; 'should': 0.36; 'two': 0.37; 'communicate': 0.37; 'received:209': 0.37; 'data': 0.37; 'subject:: ': 0.38; 'some': 0.38; 'instead': 0.39; 'to:addr:python.org': 0.39; 'subject:-': 0.40; 'header:Received:5': 0.40; 'end': 0.40; 'remove': 0.61; 'first': 0.61; 'more': 0.63; 'gave': 0.65; 'to:name:python': 0.84; 'subject:limited': 0.93 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :content-type; bh=v/BSbTiKmEsTYSh4Vd5FjQN3jauQT1HZPR9RR54eltc=; b=Iqidw0NlgkVK1jUXxLZauZ/GwGofPMl4VfswMajUV6lUfgYZSPIFq0vwZX6rDJ77Pr LKmrGsyHgs4OVtnTvYfX1jBBvCI8nubQn5JAhZzWf2yYhX/4MazEGVoN8nSj/8aznFZ6 OJ1Spi0JcjG77xreaWHmVuYDqh7/zsA5ys52arwFLo+U4BwmTRbikRJW+eubRKDKbs8r JcoLfREe31xR1KCczpcA4sBTrBTdzpOx8LkUq5CGrc0X6gGWm/Hj7YdIYED1ojWRbty5 sbUokOnbU+dqyk5fIg8i1v6u3See4ZLSbe0qmnUY6FAV9owOY3kl/KZEA+pvO1Vd2v94 C5jQ== MIME-Version: 1.0 In-Reply-To: References: <509ab0fa$0$6636$9b4e6d93@newsspool2.arcor-online.net> <509AD812.2060605@gmail.com> From: Ian Kelly Date: Tue, 13 Nov 2012 09:25:20 -0700 Subject: Re: creating size-limited tar files To: Python Content-Type: text/plain; charset=ISO-8859-1 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 34 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1352823951 news.xs4all.nl 6845 [2001:888:2000:d::a6]:36859 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:33251 On Tue, Nov 13, 2012 at 9:07 AM, Ian Kelly wrote: > It'll look something like this: > >>>> p1 = subprocess.Popen(cmd1, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE) >>>> p2 = subprocess.Popen(cmd2, shell=True, stdin=p1.stdout, stdout=subprocess.PIPE, stderr=subprocess.PIPE) >>>> p1.communicate() > ('', '') >>>> p2.communicate() > ('', '') >>>> p1.wait() > 0 >>>> p2.wait() > 0 > > Note that there's a subtle potential for deadlock here. During the > p1.communicate() call, if the p2 output buffer fills up, then it will > stop accepting input from p1 until p2.communicate() can be called, and > then if that buffer also fills up, p1 will hang. Additionally, if p2 > needs to wait on the parent process for some reason, then you end up > effectively serializing the two processes. > > Solution would be to poll all the open-ended pipes in a select() loop > instead of using communicate(), or perhaps make the two communicate > calls simultaneously in separate threads. Sorry, the example I gave above is wrong. If you're calling p1.communicate(), then you need to first remove the p1.stdout pipe from the Popen object. Otherwise, the communicate() call will try to read data from it and may "steal" input from p2. It should look more like this: >>> p1 = subprocess.Popen(cmd1, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE) >>> p2 = subprocess.Popen(cmd2, shell=True, stdin=p1.stdout, stdout=subprocess.PIPE, stderr=subprocess.PIPE) >>> p1.stdout = None