Path: csiph.com!usenet.pasdenom.info!aioe.org!news.stack.nl!newsfeed.xs4all.nl!newsfeed6.news.xs4all.nl!xs4all!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.000 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'received:209.85.223': 0.03; 'output': 0.04; '"""': 0.05; '%s"': 0.07; 'cleanup': 0.07; "'-'": 0.09; 'cmd': 0.09; 'err:': 0.09; 'fname': 0.09; 'output,': 0.09; 'solution,': 0.09; 'subject:files': 0.09; 'cc:addr:python- list': 0.10; 'def': 0.10; 'anyway': 0.11; '%s,': 0.16; '(output': 0.16; 'cc:name:python list': 0.16; 'downside': 0.16; 'echo': 0.16; 'err': 0.16; 'meanwhile': 0.16; 'out)': 0.16; 'pipes': 0.16; 'proc': 0.16; 'subprocess': 0.16; 'ugly.': 0.16; 'bytes': 0.17; 'skip:{ 20': 0.17; 'bit': 0.21; 'split': 0.23; 'this:': 0.23; 'cc:2**1': 0.24; 'command': 0.24; 'cc:addr:python.org': 0.25; 'header:In-Reply-To:1': 0.25; 'implemented': 0.27; 'wonder': 0.27; 'message-id:@mail.gmail.com': 0.27; 'run': 0.28; 'faster,': 0.29; 'subject:size': 0.29; 'tar': 0.29; 'probably': 0.29; 'error': 0.30; 'file': 0.32; 'running': 0.32; 'problem': 0.33; 'another': 0.33; 'received:google.com': 0.34; 'false': 0.35; 'received:209.85': 0.35; 'something': 0.35; 'there': 0.35; 'ability': 0.36; 'but': 0.36; 'skip:{ 10': 0.36; 'received:209': 0.37; 'subject:: ': 0.38; 'files': 0.38; 'skip:l 20': 0.38; 'subject:-': 0.40; 'header:Received:5': 0.40; 'containing': 0.61; 'first': 0.61; 'below.': 0.68; 'lose': 0.71; 'andrea': 0.84; 'thing,': 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:date:message-id:subject:from:to :cc:content-type; bh=K6EMId2EWdnFfO/g0XtD7cfesDMEAP3TDZKRexEJM/Q=; b=QDla9b6S86ce4BGewscJPnAkKpTzedqVY3ZwCt/OblqAC2Teuk1/53X0M8kNsZzxwP I4xwNwtOXvO55AEzOGyl22aLykgBY5cxK93jaDJDASxR3CC77QJoiVZF8s9QRuDW4dcd EljBYc1AEN3uxGr4cCTZxkM8Ho7wPsSW1ACSih+fzziBN3Yn8PRgR1tgzzu5lQb0U+Iy 4sS6QWAym/nuInifCZOw1u/nQK1npE252CEcTpfj4FY3zaQnfgbPP/u8liTNtvar1mFo G2rnx6MKdSEVWTN30J4Jr3A4RPD+D+XISTqhg6+jUEFZd6ulkxoJ5C5E1FfEI+a+StpB TNDg== MIME-Version: 1.0 In-Reply-To: References: <509ab0fa$0$6636$9b4e6d93@newsspool2.arcor-online.net> <509AD812.2060605@gmail.com> Date: Tue, 13 Nov 2012 10:31:32 +0000 Subject: Re: creating size-limited tar files From: andrea crotti To: Oscar Benjamin Content-Type: text/plain; charset=ISO-8859-1 Cc: Python List , Roy Smith 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: 50 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1352802696 news.xs4all.nl 6954 [2001:888:2000:d::a6]:41075 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:33232 2012/11/9 andrea crotti : > Anyway in the meanwhile I implemented this tar and split in this way below. > It works very well and it's probably much faster, but the downside is that > I give away control to tar and split.. > > def tar_and_split(inputfile, output, bytes_size=None): > """Take the file containing all the files to compress, the bytes > desired for the split and the base name of the output file > """ > # cleanup first > for fname in glob(output + "*"): > logger.debug("Removing old file %s" % fname) > remove(fname) > > out = '-' if bytes_size else (output + '.tar.gz') > cmd = "tar czpf {} $(cat {})".format(out, inputfile) > if bytes_size: > cmd += "| split -b {} -d - {}".format(bytes_size, output) > > logger.info("Running command %s" % cmd) > > proc = subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE, > stderr=subprocess.PIPE) > out, err = proc.communicate() > if err: > logger.error("Got error messages %s" % err) > > logger.info("Output %s" % out) > > if proc.returncode != 0: > logger.error("Something failed running %s, need to re-run" % cmd) > return False There is another problem with this solution, if I run something like this with Popen: cmd = "tar {bigc} -czpf - --files-from {inputfile} | split -b {bytes_size} -d - {output}" proc = subprocess.Popen(to_run, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE) the proc.returncode will only be the one from "split", so I lose the ability to check if tar failed.. A solution would be something like this: { ls -dlkfjdsl; echo $? > tar.status; } | split but it's a bit ugly. I wonder if I can use the subprocess PIPEs to do the same thing, is it going to be as fast and work in the same way??