msg176544 - (view) |
Author: Serhiy Storchaka (serhiy.storchaka) *  |
Date: 2012-11-28 14:21 |
If the ZipFile was created by passing in a file-like object as the first argument to the constructor, then simultaneous reading or writing of different file results in an non-consistent state. There is a warning about this in the documentation. The proposed patch forces this condition, raising the early exception if you attempt to simultaneously access. I'm not sure whether it's worth apply to older versions. |
|
|
msg176546 - (view) |
Author: Jesús Cea Avión (jcea) *  |
Date: 2012-11-28 14:46 |
I am -0 to this. We can't prevent programmers for shotting in the foot. |
|
|
msg176548 - (view) |
Author: Serhiy Storchaka (serhiy.storchaka) *  |
Date: 2012-11-28 15:05 |
Reading from closed ZipFile or reading from ZipFile opened for write already forbidden. This is a preventing of the same kind. |
|
|
msg176849 - (view) |
Author: Stepan Kasal (kasal) |
Date: 2012-12-03 16:03 |
I agree that reading from a file open for write should be forbidden, no matter whether ZipFile was called with fp or a name. Actually, it is not yet forbidden, and two of the tests in the zipfile.py test suite do actually rely on this misfeature. The first chunk in the patch http://bugs.python.org/file24624/Proposed-fix-of-issue14099-second.patch contains a fix for this bug in test suite. OTOH, decompressing several files for a given zip file simultaneously does not sound that bad. You know, with all the current file managers, people look at a zip as if it were kind of a directory. |
|
|
msg176852 - (view) |
Author: Serhiy Storchaka (serhiy.storchaka) *  |
Date: 2012-12-03 16:37 |
> Actually, it is not yet forbidden, and two of the tests in the zipfile.py test suite do actually rely on this misfeature. Indeed. I missed that. Actually these tests work by accident, due to the fact that the contents of the zipfile is placed in the file object buffer. > OTOH, decompressing several files for a given zip file simultaneously does not sound that bad. You know, with all the current file managers, people look at a zip as if it were kind of a directory. I agree, but I'm afraid it's impossible to do without performance regression due to seek before every read. And for now ZipFile is not support simultaneous reading when external file object used. Also ZipFile is not thread-safe in any case. You can open several ZipFiles for simultaneous reading. |
|
|
msg176856 - (view) |
Author: Stepan Kasal (kasal) |
Date: 2012-12-03 16:51 |
> but I'm afraid it's impossible to do without performance regression due to seek before every read. I agree that this is key question. I would hope that the performance hit wouldn't be so bad, unless there are actually two decompressions running concurrently. So we can have an implementation that is generally correct, though some use scenarios result in slow execution. OTOH, if the seek() call were a problem even if the new position is the same as the old one, they can be optimized out by a simple wrapper around fp. |
|
|
msg177006 - (view) |
Author: Jesús Cea Avión (jcea) *  |
Date: 2012-12-05 20:24 |
Seek can be very cheap. Anybody could actually measure it??? |
|
|
msg177037 - (view) |
Author: Serhiy Storchaka (serhiy.storchaka) *  |
Date: 2012-12-06 10:48 |
> Seek can be very cheap. Anybody could actually measure it??? I am waiting for an updated patch for to make benchmarks. |
|
|
msg230998 - (view) |
Author: David Wilson (dw) * |
Date: 2014-11-11 03:16 |
Compared to the cost of everything else ZipExtFile must do (e.g. 4kb string concatenation in a loop, zlib), its surprising that lseek() would measurable at all. The attached file 'patch' is the minimal change I tested. It represents, in terms of computation and system call overhead, all required to implement the "seek before read" solution to simultaneous access. On OSX, churning over ever member of every ZIP in my downloads directory (about 400mb worth), this change results in around 0.9% overhead compared to the original module. Subsequently I'm strongly against the patch here. It is in effect papering over an implementation deficiency of the current zipfile module, one that could easily and cheaply be addressed. (My comment on this ticket is in the context of the now-marked-duplicate ). |
|
|
msg232071 - (view) |
Author: Serhiy Storchaka (serhiy.storchaka) *  |
Date: 2014-12-03 07:32 |
Closed in favor of . |
|
|