Path: csiph.com!usenet.pasdenom.info!weretis.net!feeder4.news.weretis.net!feeds.phibee-telecom.net!newsfeed.xs4all.nl!newsfeed5.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.001 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; '*not*': 0.07; '__name__': 0.07; 'completeness': 0.07; 'does,': 0.09; 'explanation': 0.09; 'received:mail-lpp01m010-f46.google.com': 0.09; 'threads,': 0.09; 'cc:addr:python-list': 0.10; 'def': 0.10; 'anyway': 0.11; 'thread': 0.11; "'__main__':": 0.16; 'range(20):': 0.16; 'run(self):': 0.16; 'self.lock': 0.16; 'sense,': 0.16; 'subject:failed': 0.16; 'threads': 0.16; 'suggested': 0.20; 'cc:2**0': 0.23; 'errors': 0.23; 'cc:no real name:2**0': 0.24; 'cc:addr:python.org': 0.25; 'header:In-Reply-To:1': 0.25; 'object,': 0.27; 'message-id:@mail.gmail.com': 0.27; "doesn't": 0.28; 'skip:_ 10': 0.29; 'class': 0.29; 'this.': 0.29; "i'm": 0.29; 'maybe': 0.29; 'received:209.85.215.46': 0.30; 'code': 0.31; 'gets': 0.32; 'file': 0.32; 'hopefully': 0.33; 'received:google.com': 0.34; 'fail': 0.35; 'problem,': 0.35; 'doing': 0.35; 'received:209.85': 0.35; 'add': 0.36; 'but': 0.36; 'should': 0.36; 'does': 0.37; 'quite': 0.37; 'received:209': 0.37; 'subject:: ': 0.38; 'object': 0.38; 'skip:o 20': 0.38; 'some': 0.38; 'sure': 0.38; 'subject:-': 0.40; 'header:Received:5': 0.40; 'solve': 0.62; 'between': 0.63; 'andrea': 0.84; 'convinced': 0.93; 'anymore,': 0.95 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=g5owXZu2nX8uTIl038sf7cOSWwyqxT2DCMciiP2coQc=; b=NdiI8Z8aRKOZUlf0jj5voAy6AtGzukA4kSoyDWEQ+XD2dABnVS38hDTHKn7qCPZBrZ Ow4CCUgbXh7boKmwAzh3osDV40q1/wKHcPVfg/ZHL4yyOd1WS1KZhCn4xTVDSpjV0mBW VheAUghsdWZAGnbRiVSplKzQmbqGgOGpXC6WLlRKb6m8lVYmjny/wwZIpz/2LeUOC5Cp VBx3x0j7iVZChdsDWVd9qwQuXhQ8k5WGmyvWpbmDXN+V2niwZgBvDHvUXWy0I8vnDLzV sYZZRTeZpyJmIwVSim3EhqyG6HGLimZtaM10KQEFqRM8zoNHYG7+sYzvBAXRwW/G6oRV 1Fag== MIME-Version: 1.0 In-Reply-To: References: <50190ED6.1040100@shopzeus.com> <501956a7$0$29978$c3e8da3$5496439d@news.astraweb.com> <501A54A4.4030006@shopzeus.com> Date: Thu, 2 Aug 2012 11:59:28 +0100 Subject: Re: CRC-checksum failed in gzip From: andrea crotti To: Laszlo Nagy Content-Type: text/plain; charset=ISO-8859-1 Cc: python-list@python.org X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.12 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: 44 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1343905170 news.xs4all.nl 6916 [2001:888:2000:d::a6]:59858 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:26399 2012/8/2 andrea crotti : > > Ok sure that makes sense, but then this explanation is maybe not right > anymore, because I'm quite sure that the file object is *not* shared > between threads, everything happens inside a thread.. > > I managed to get some errors doing this with a big file > class OpenAndRead(threading.Thread): > def run(self): > global fz > fz.read(100) > > if __name__ == '__main__': > > fz = gzip.open('bigfile.avi.gz') > for i in range(20): > OpenAndRead().start() > > and it doesn't fail without the *global*, but this is definitively not > what the code does, because every thread gets a new file object, it's > not shared.. > > Anyway we'll read once for all the threads or add the lock, and > hopefully it should solve the problem, even if I'm not convinced yet > that it was this. Just for completeness as suggested this also does not fail: class OpenAndRead(threading.Thread): def __init__(self, lock): threading.Thread.__init__(self) self.lock = lock def run(self): global fz with self.lock: fz.read(100) if __name__ == '__main__': lock = threading.Lock() fz = gzip.open('bigfile.avi.gz') for i in range(20): OpenAndRead(lock).start()