diff options
author | Guido van Rossum <guido@python.org> | 2003-02-03 20:45:52 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2003-02-03 20:45:52 (GMT) |
commit | 7d9ea5013f2f6122aa83a68429bf2dd5e5a00017 (patch) | |
tree | fd7852cc158ec0ffd49a320515b380b2dafe6798 /Modules/zlibmodule.c | |
parent | 94c30c012431c8495c73850a4438b0b7a3a2b9d4 (diff) | |
download | cpython-7d9ea5013f2f6122aa83a68429bf2dd5e5a00017.zip cpython-7d9ea5013f2f6122aa83a68429bf2dd5e5a00017.tar.gz cpython-7d9ea5013f2f6122aa83a68429bf2dd5e5a00017.tar.bz2 |
- Thanks to Scott David Daniels, a subtle bug in how the zlib
extension implemented flush() was fixed. Scott also rewrite the
zlib test suite using the unittest module. (SF bug #640230 and
patch #678531.)
Backport candidate I think.
Diffstat (limited to 'Modules/zlibmodule.c')
-rw-r--r-- | Modules/zlibmodule.c | 57 |
1 files changed, 45 insertions, 12 deletions
diff --git a/Modules/zlibmodule.c b/Modules/zlibmodule.c index 4c1ce23..7fedae7 100644 --- a/Modules/zlibmodule.c +++ b/Modules/zlibmodule.c @@ -656,26 +656,57 @@ PyDoc_STRVAR(decomp_flush__doc__, static PyObject * PyZlib_unflush(compobject *self, PyObject *args) -/*decompressor flush is a no-op because all pending data would have been - flushed by the decompress method. However, this routine previously called - inflateEnd, causing any further decompress or flush calls to raise - exceptions. This behaviour has been preserved.*/ { - int err; + int err, length = DEFAULTALLOC; PyObject * retval = NULL; + unsigned long start_total_out; - if (!PyArg_ParseTuple(args, "")) + if (!PyArg_ParseTuple(args, "|i:flush", &length)) return NULL; + if (!(retval = PyString_FromStringAndSize(NULL, length))) + return NULL; + ENTER_ZLIB - err = inflateEnd(&(self->zst)); - if (err != Z_OK) - zlib_error(self->zst, err, "from inflateEnd()"); - else { - self->is_initialised = 0; - retval = PyString_FromStringAndSize(NULL, 0); + start_total_out = self->zst.total_out; + self->zst.avail_out = length; + self->zst.next_out = (Byte *)PyString_AS_STRING(retval); + + Py_BEGIN_ALLOW_THREADS + err = inflate(&(self->zst), Z_FINISH); + Py_END_ALLOW_THREADS + + /* while Z_OK and the output buffer is full, there might be more output, + so extend the output buffer and try again */ + while ((err == Z_OK || err == Z_BUF_ERROR) && self->zst.avail_out == 0) { + if (_PyString_Resize(&retval, length << 1) < 0) + goto error; + self->zst.next_out = (Byte *)PyString_AS_STRING(retval) + length; + self->zst.avail_out = length; + length = length << 1; + + Py_BEGIN_ALLOW_THREADS + err = inflate(&(self->zst), Z_FINISH); + Py_END_ALLOW_THREADS + } + + /* If flushmode is Z_FINISH, we also have to call deflateEnd() to free + various data structures. Note we should only get Z_STREAM_END when + flushmode is Z_FINISH */ + if (err == Z_STREAM_END) { + err = inflateEnd(&(self->zst)); + self->is_initialised = 0; + if (err != Z_OK) { + zlib_error(self->zst, err, "from inflateEnd()"); + Py_DECREF(retval); + retval = NULL; + goto error; + } } + _PyString_Resize(&retval, self->zst.total_out - start_total_out); + +error: LEAVE_ZLIB @@ -868,6 +899,8 @@ PyInit_zlib(void) if (ver != NULL) PyModule_AddObject(m, "ZLIB_VERSION", ver); + PyModule_AddStringConstant(m, "__version__", "1.0"); + #ifdef WITH_THREAD zlib_lock = PyThread_allocate_lock(); #endif /* WITH_THREAD */ |