1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132 |
- /*[clinic input]
- preserve
- [clinic start generated code]*/
- #if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
- # include "pycore_gc.h" // PyGC_Head
- # include "pycore_runtime.h" // _Py_ID()
- #endif
- PyDoc_STRVAR(zlib_compress__doc__,
- "compress($module, data, /, level=Z_DEFAULT_COMPRESSION, wbits=MAX_WBITS)\n"
- "--\n"
- "\n"
- "Returns a bytes object containing compressed data.\n"
- "\n"
- " data\n"
- " Binary data to be compressed.\n"
- " level\n"
- " Compression level, in 0-9 or -1.\n"
- " wbits\n"
- " The window buffer size and container format.");
- #define ZLIB_COMPRESS_METHODDEF \
- {"compress", _PyCFunction_CAST(zlib_compress), METH_FASTCALL|METH_KEYWORDS, zlib_compress__doc__},
- static PyObject *
- zlib_compress_impl(PyObject *module, Py_buffer *data, int level, int wbits);
- static PyObject *
- zlib_compress(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
- {
- PyObject *return_value = NULL;
- #if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
- #define NUM_KEYWORDS 2
- static struct {
- PyGC_Head _this_is_not_used;
- PyObject_VAR_HEAD
- PyObject *ob_item[NUM_KEYWORDS];
- } _kwtuple = {
- .ob_base = PyVarObject_HEAD_INIT(&PyTuple_Type, NUM_KEYWORDS)
- .ob_item = { &_Py_ID(level), &_Py_ID(wbits), },
- };
- #undef NUM_KEYWORDS
- #define KWTUPLE (&_kwtuple.ob_base.ob_base)
- #else // !Py_BUILD_CORE
- # define KWTUPLE NULL
- #endif // !Py_BUILD_CORE
- static const char * const _keywords[] = {"", "level", "wbits", NULL};
- static _PyArg_Parser _parser = {
- .keywords = _keywords,
- .fname = "compress",
- .kwtuple = KWTUPLE,
- };
- #undef KWTUPLE
- PyObject *argsbuf[3];
- Py_ssize_t noptargs = nargs + (kwnames ? PyTuple_GET_SIZE(kwnames) : 0) - 1;
- Py_buffer data = {NULL, NULL};
- int level = Z_DEFAULT_COMPRESSION;
- int wbits = MAX_WBITS;
- args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser, 1, 3, 0, argsbuf);
- if (!args) {
- goto exit;
- }
- if (PyObject_GetBuffer(args[0], &data, PyBUF_SIMPLE) != 0) {
- goto exit;
- }
- if (!PyBuffer_IsContiguous(&data, 'C')) {
- _PyArg_BadArgument("compress", "argument 1", "contiguous buffer", args[0]);
- goto exit;
- }
- if (!noptargs) {
- goto skip_optional_pos;
- }
- if (args[1]) {
- level = _PyLong_AsInt(args[1]);
- if (level == -1 && PyErr_Occurred()) {
- goto exit;
- }
- if (!--noptargs) {
- goto skip_optional_pos;
- }
- }
- wbits = _PyLong_AsInt(args[2]);
- if (wbits == -1 && PyErr_Occurred()) {
- goto exit;
- }
- skip_optional_pos:
- return_value = zlib_compress_impl(module, &data, level, wbits);
- exit:
- /* Cleanup for data */
- if (data.obj) {
- PyBuffer_Release(&data);
- }
- return return_value;
- }
- PyDoc_STRVAR(zlib_decompress__doc__,
- "decompress($module, data, /, wbits=MAX_WBITS, bufsize=DEF_BUF_SIZE)\n"
- "--\n"
- "\n"
- "Returns a bytes object containing the uncompressed data.\n"
- "\n"
- " data\n"
- " Compressed data.\n"
- " wbits\n"
- " The window buffer size and container format.\n"
- " bufsize\n"
- " The initial output buffer size.");
- #define ZLIB_DECOMPRESS_METHODDEF \
- {"decompress", _PyCFunction_CAST(zlib_decompress), METH_FASTCALL|METH_KEYWORDS, zlib_decompress__doc__},
- static PyObject *
- zlib_decompress_impl(PyObject *module, Py_buffer *data, int wbits,
- Py_ssize_t bufsize);
- static PyObject *
- zlib_decompress(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
- {
- PyObject *return_value = NULL;
- #if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
- #define NUM_KEYWORDS 2
- static struct {
- PyGC_Head _this_is_not_used;
- PyObject_VAR_HEAD
- PyObject *ob_item[NUM_KEYWORDS];
- } _kwtuple = {
- .ob_base = PyVarObject_HEAD_INIT(&PyTuple_Type, NUM_KEYWORDS)
- .ob_item = { &_Py_ID(wbits), &_Py_ID(bufsize), },
- };
- #undef NUM_KEYWORDS
- #define KWTUPLE (&_kwtuple.ob_base.ob_base)
- #else // !Py_BUILD_CORE
- # define KWTUPLE NULL
- #endif // !Py_BUILD_CORE
- static const char * const _keywords[] = {"", "wbits", "bufsize", NULL};
- static _PyArg_Parser _parser = {
- .keywords = _keywords,
- .fname = "decompress",
- .kwtuple = KWTUPLE,
- };
- #undef KWTUPLE
- PyObject *argsbuf[3];
- Py_ssize_t noptargs = nargs + (kwnames ? PyTuple_GET_SIZE(kwnames) : 0) - 1;
- Py_buffer data = {NULL, NULL};
- int wbits = MAX_WBITS;
- Py_ssize_t bufsize = DEF_BUF_SIZE;
- args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser, 1, 3, 0, argsbuf);
- if (!args) {
- goto exit;
- }
- if (PyObject_GetBuffer(args[0], &data, PyBUF_SIMPLE) != 0) {
- goto exit;
- }
- if (!PyBuffer_IsContiguous(&data, 'C')) {
- _PyArg_BadArgument("decompress", "argument 1", "contiguous buffer", args[0]);
- goto exit;
- }
- if (!noptargs) {
- goto skip_optional_pos;
- }
- if (args[1]) {
- wbits = _PyLong_AsInt(args[1]);
- if (wbits == -1 && PyErr_Occurred()) {
- goto exit;
- }
- if (!--noptargs) {
- goto skip_optional_pos;
- }
- }
- {
- Py_ssize_t ival = -1;
- PyObject *iobj = _PyNumber_Index(args[2]);
- if (iobj != NULL) {
- ival = PyLong_AsSsize_t(iobj);
- Py_DECREF(iobj);
- }
- if (ival == -1 && PyErr_Occurred()) {
- goto exit;
- }
- bufsize = ival;
- }
- skip_optional_pos:
- return_value = zlib_decompress_impl(module, &data, wbits, bufsize);
- exit:
- /* Cleanup for data */
- if (data.obj) {
- PyBuffer_Release(&data);
- }
- return return_value;
- }
- PyDoc_STRVAR(zlib_compressobj__doc__,
- "compressobj($module, /, level=Z_DEFAULT_COMPRESSION, method=DEFLATED,\n"
- " wbits=MAX_WBITS, memLevel=DEF_MEM_LEVEL,\n"
- " strategy=Z_DEFAULT_STRATEGY, zdict=None)\n"
- "--\n"
- "\n"
- "Return a compressor object.\n"
- "\n"
- " level\n"
- " The compression level (an integer in the range 0-9 or -1; default is\n"
- " currently equivalent to 6). Higher compression levels are slower,\n"
- " but produce smaller results.\n"
- " method\n"
- " The compression algorithm. If given, this must be DEFLATED.\n"
- " wbits\n"
- " +9 to +15: The base-two logarithm of the window size. Include a zlib\n"
- " container.\n"
- " -9 to -15: Generate a raw stream.\n"
- " +25 to +31: Include a gzip container.\n"
- " memLevel\n"
- " Controls the amount of memory used for internal compression state.\n"
- " Valid values range from 1 to 9. Higher values result in higher memory\n"
- " usage, faster compression, and smaller output.\n"
- " strategy\n"
- " Used to tune the compression algorithm. Possible values are\n"
- " Z_DEFAULT_STRATEGY, Z_FILTERED, and Z_HUFFMAN_ONLY.\n"
- " zdict\n"
- " The predefined compression dictionary - a sequence of bytes\n"
- " containing subsequences that are likely to occur in the input data.");
- #define ZLIB_COMPRESSOBJ_METHODDEF \
- {"compressobj", _PyCFunction_CAST(zlib_compressobj), METH_FASTCALL|METH_KEYWORDS, zlib_compressobj__doc__},
- static PyObject *
- zlib_compressobj_impl(PyObject *module, int level, int method, int wbits,
- int memLevel, int strategy, Py_buffer *zdict);
- static PyObject *
- zlib_compressobj(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
- {
- PyObject *return_value = NULL;
- #if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
- #define NUM_KEYWORDS 6
- static struct {
- PyGC_Head _this_is_not_used;
- PyObject_VAR_HEAD
- PyObject *ob_item[NUM_KEYWORDS];
- } _kwtuple = {
- .ob_base = PyVarObject_HEAD_INIT(&PyTuple_Type, NUM_KEYWORDS)
- .ob_item = { &_Py_ID(level), &_Py_ID(method), &_Py_ID(wbits), &_Py_ID(memLevel), &_Py_ID(strategy), &_Py_ID(zdict), },
- };
- #undef NUM_KEYWORDS
- #define KWTUPLE (&_kwtuple.ob_base.ob_base)
- #else // !Py_BUILD_CORE
- # define KWTUPLE NULL
- #endif // !Py_BUILD_CORE
- static const char * const _keywords[] = {"level", "method", "wbits", "memLevel", "strategy", "zdict", NULL};
- static _PyArg_Parser _parser = {
- .keywords = _keywords,
- .fname = "compressobj",
- .kwtuple = KWTUPLE,
- };
- #undef KWTUPLE
- PyObject *argsbuf[6];
- Py_ssize_t noptargs = nargs + (kwnames ? PyTuple_GET_SIZE(kwnames) : 0) - 0;
- int level = Z_DEFAULT_COMPRESSION;
- int method = DEFLATED;
- int wbits = MAX_WBITS;
- int memLevel = DEF_MEM_LEVEL;
- int strategy = Z_DEFAULT_STRATEGY;
- Py_buffer zdict = {NULL, NULL};
- args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser, 0, 6, 0, argsbuf);
- if (!args) {
- goto exit;
- }
- if (!noptargs) {
- goto skip_optional_pos;
- }
- if (args[0]) {
- level = _PyLong_AsInt(args[0]);
- if (level == -1 && PyErr_Occurred()) {
- goto exit;
- }
- if (!--noptargs) {
- goto skip_optional_pos;
- }
- }
- if (args[1]) {
- method = _PyLong_AsInt(args[1]);
- if (method == -1 && PyErr_Occurred()) {
- goto exit;
- }
- if (!--noptargs) {
- goto skip_optional_pos;
- }
- }
- if (args[2]) {
- wbits = _PyLong_AsInt(args[2]);
- if (wbits == -1 && PyErr_Occurred()) {
- goto exit;
- }
- if (!--noptargs) {
- goto skip_optional_pos;
- }
- }
- if (args[3]) {
- memLevel = _PyLong_AsInt(args[3]);
- if (memLevel == -1 && PyErr_Occurred()) {
- goto exit;
- }
- if (!--noptargs) {
- goto skip_optional_pos;
- }
- }
- if (args[4]) {
- strategy = _PyLong_AsInt(args[4]);
- if (strategy == -1 && PyErr_Occurred()) {
- goto exit;
- }
- if (!--noptargs) {
- goto skip_optional_pos;
- }
- }
- if (PyObject_GetBuffer(args[5], &zdict, PyBUF_SIMPLE) != 0) {
- goto exit;
- }
- if (!PyBuffer_IsContiguous(&zdict, 'C')) {
- _PyArg_BadArgument("compressobj", "argument 'zdict'", "contiguous buffer", args[5]);
- goto exit;
- }
- skip_optional_pos:
- return_value = zlib_compressobj_impl(module, level, method, wbits, memLevel, strategy, &zdict);
- exit:
- /* Cleanup for zdict */
- if (zdict.obj) {
- PyBuffer_Release(&zdict);
- }
- return return_value;
- }
- PyDoc_STRVAR(zlib_decompressobj__doc__,
- "decompressobj($module, /, wbits=MAX_WBITS, zdict=b\'\')\n"
- "--\n"
- "\n"
- "Return a decompressor object.\n"
- "\n"
- " wbits\n"
- " The window buffer size and container format.\n"
- " zdict\n"
- " The predefined compression dictionary. This must be the same\n"
- " dictionary as used by the compressor that produced the input data.");
- #define ZLIB_DECOMPRESSOBJ_METHODDEF \
- {"decompressobj", _PyCFunction_CAST(zlib_decompressobj), METH_FASTCALL|METH_KEYWORDS, zlib_decompressobj__doc__},
- static PyObject *
- zlib_decompressobj_impl(PyObject *module, int wbits, PyObject *zdict);
- static PyObject *
- zlib_decompressobj(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
- {
- PyObject *return_value = NULL;
- #if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
- #define NUM_KEYWORDS 2
- static struct {
- PyGC_Head _this_is_not_used;
- PyObject_VAR_HEAD
- PyObject *ob_item[NUM_KEYWORDS];
- } _kwtuple = {
- .ob_base = PyVarObject_HEAD_INIT(&PyTuple_Type, NUM_KEYWORDS)
- .ob_item = { &_Py_ID(wbits), &_Py_ID(zdict), },
- };
- #undef NUM_KEYWORDS
- #define KWTUPLE (&_kwtuple.ob_base.ob_base)
- #else // !Py_BUILD_CORE
- # define KWTUPLE NULL
- #endif // !Py_BUILD_CORE
- static const char * const _keywords[] = {"wbits", "zdict", NULL};
- static _PyArg_Parser _parser = {
- .keywords = _keywords,
- .fname = "decompressobj",
- .kwtuple = KWTUPLE,
- };
- #undef KWTUPLE
- PyObject *argsbuf[2];
- Py_ssize_t noptargs = nargs + (kwnames ? PyTuple_GET_SIZE(kwnames) : 0) - 0;
- int wbits = MAX_WBITS;
- PyObject *zdict = NULL;
- args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser, 0, 2, 0, argsbuf);
- if (!args) {
- goto exit;
- }
- if (!noptargs) {
- goto skip_optional_pos;
- }
- if (args[0]) {
- wbits = _PyLong_AsInt(args[0]);
- if (wbits == -1 && PyErr_Occurred()) {
- goto exit;
- }
- if (!--noptargs) {
- goto skip_optional_pos;
- }
- }
- zdict = args[1];
- skip_optional_pos:
- return_value = zlib_decompressobj_impl(module, wbits, zdict);
- exit:
- return return_value;
- }
- PyDoc_STRVAR(zlib_Compress_compress__doc__,
- "compress($self, data, /)\n"
- "--\n"
- "\n"
- "Returns a bytes object containing compressed data.\n"
- "\n"
- " data\n"
- " Binary data to be compressed.\n"
- "\n"
- "After calling this function, some of the input data may still\n"
- "be stored in internal buffers for later processing.\n"
- "Call the flush() method to clear these buffers.");
- #define ZLIB_COMPRESS_COMPRESS_METHODDEF \
- {"compress", _PyCFunction_CAST(zlib_Compress_compress), METH_METHOD|METH_FASTCALL|METH_KEYWORDS, zlib_Compress_compress__doc__},
- static PyObject *
- zlib_Compress_compress_impl(compobject *self, PyTypeObject *cls,
- Py_buffer *data);
- static PyObject *
- zlib_Compress_compress(compobject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
- {
- PyObject *return_value = NULL;
- #if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
- # define KWTUPLE (PyObject *)&_Py_SINGLETON(tuple_empty)
- #else
- # define KWTUPLE NULL
- #endif
- static const char * const _keywords[] = {"", NULL};
- static _PyArg_Parser _parser = {
- .keywords = _keywords,
- .fname = "compress",
- .kwtuple = KWTUPLE,
- };
- #undef KWTUPLE
- PyObject *argsbuf[1];
- Py_buffer data = {NULL, NULL};
- args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser, 1, 1, 0, argsbuf);
- if (!args) {
- goto exit;
- }
- if (PyObject_GetBuffer(args[0], &data, PyBUF_SIMPLE) != 0) {
- goto exit;
- }
- if (!PyBuffer_IsContiguous(&data, 'C')) {
- _PyArg_BadArgument("compress", "argument 1", "contiguous buffer", args[0]);
- goto exit;
- }
- return_value = zlib_Compress_compress_impl(self, cls, &data);
- exit:
- /* Cleanup for data */
- if (data.obj) {
- PyBuffer_Release(&data);
- }
- return return_value;
- }
- PyDoc_STRVAR(zlib_Decompress_decompress__doc__,
- "decompress($self, data, /, max_length=0)\n"
- "--\n"
- "\n"
- "Return a bytes object containing the decompressed version of the data.\n"
- "\n"
- " data\n"
- " The binary data to decompress.\n"
- " max_length\n"
- " The maximum allowable length of the decompressed data.\n"
- " Unconsumed input data will be stored in\n"
- " the unconsumed_tail attribute.\n"
- "\n"
- "After calling this function, some of the input data may still be stored in\n"
- "internal buffers for later processing.\n"
- "Call the flush() method to clear these buffers.");
- #define ZLIB_DECOMPRESS_DECOMPRESS_METHODDEF \
- {"decompress", _PyCFunction_CAST(zlib_Decompress_decompress), METH_METHOD|METH_FASTCALL|METH_KEYWORDS, zlib_Decompress_decompress__doc__},
- static PyObject *
- zlib_Decompress_decompress_impl(compobject *self, PyTypeObject *cls,
- Py_buffer *data, Py_ssize_t max_length);
- static PyObject *
- zlib_Decompress_decompress(compobject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
- {
- PyObject *return_value = NULL;
- #if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
- #define NUM_KEYWORDS 1
- static struct {
- PyGC_Head _this_is_not_used;
- PyObject_VAR_HEAD
- PyObject *ob_item[NUM_KEYWORDS];
- } _kwtuple = {
- .ob_base = PyVarObject_HEAD_INIT(&PyTuple_Type, NUM_KEYWORDS)
- .ob_item = { &_Py_ID(max_length), },
- };
- #undef NUM_KEYWORDS
- #define KWTUPLE (&_kwtuple.ob_base.ob_base)
- #else // !Py_BUILD_CORE
- # define KWTUPLE NULL
- #endif // !Py_BUILD_CORE
- static const char * const _keywords[] = {"", "max_length", NULL};
- static _PyArg_Parser _parser = {
- .keywords = _keywords,
- .fname = "decompress",
- .kwtuple = KWTUPLE,
- };
- #undef KWTUPLE
- PyObject *argsbuf[2];
- Py_ssize_t noptargs = nargs + (kwnames ? PyTuple_GET_SIZE(kwnames) : 0) - 1;
- Py_buffer data = {NULL, NULL};
- Py_ssize_t max_length = 0;
- args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser, 1, 2, 0, argsbuf);
- if (!args) {
- goto exit;
- }
- if (PyObject_GetBuffer(args[0], &data, PyBUF_SIMPLE) != 0) {
- goto exit;
- }
- if (!PyBuffer_IsContiguous(&data, 'C')) {
- _PyArg_BadArgument("decompress", "argument 1", "contiguous buffer", args[0]);
- goto exit;
- }
- if (!noptargs) {
- goto skip_optional_pos;
- }
- {
- Py_ssize_t ival = -1;
- PyObject *iobj = _PyNumber_Index(args[1]);
- if (iobj != NULL) {
- ival = PyLong_AsSsize_t(iobj);
- Py_DECREF(iobj);
- }
- if (ival == -1 && PyErr_Occurred()) {
- goto exit;
- }
- max_length = ival;
- }
- skip_optional_pos:
- return_value = zlib_Decompress_decompress_impl(self, cls, &data, max_length);
- exit:
- /* Cleanup for data */
- if (data.obj) {
- PyBuffer_Release(&data);
- }
- return return_value;
- }
- PyDoc_STRVAR(zlib_Compress_flush__doc__,
- "flush($self, mode=zlib.Z_FINISH, /)\n"
- "--\n"
- "\n"
- "Return a bytes object containing any remaining compressed data.\n"
- "\n"
- " mode\n"
- " One of the constants Z_SYNC_FLUSH, Z_FULL_FLUSH, Z_FINISH.\n"
- " If mode == Z_FINISH, the compressor object can no longer be\n"
- " used after calling the flush() method. Otherwise, more data\n"
- " can still be compressed.");
- #define ZLIB_COMPRESS_FLUSH_METHODDEF \
- {"flush", _PyCFunction_CAST(zlib_Compress_flush), METH_METHOD|METH_FASTCALL|METH_KEYWORDS, zlib_Compress_flush__doc__},
- static PyObject *
- zlib_Compress_flush_impl(compobject *self, PyTypeObject *cls, int mode);
- static PyObject *
- zlib_Compress_flush(compobject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
- {
- PyObject *return_value = NULL;
- #if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
- # define KWTUPLE (PyObject *)&_Py_SINGLETON(tuple_empty)
- #else
- # define KWTUPLE NULL
- #endif
- static const char * const _keywords[] = {"", NULL};
- static _PyArg_Parser _parser = {
- .keywords = _keywords,
- .fname = "flush",
- .kwtuple = KWTUPLE,
- };
- #undef KWTUPLE
- PyObject *argsbuf[1];
- int mode = Z_FINISH;
- args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser, 0, 1, 0, argsbuf);
- if (!args) {
- goto exit;
- }
- if (nargs < 1) {
- goto skip_optional_posonly;
- }
- mode = _PyLong_AsInt(args[0]);
- if (mode == -1 && PyErr_Occurred()) {
- goto exit;
- }
- skip_optional_posonly:
- return_value = zlib_Compress_flush_impl(self, cls, mode);
- exit:
- return return_value;
- }
- #if defined(HAVE_ZLIB_COPY)
- PyDoc_STRVAR(zlib_Compress_copy__doc__,
- "copy($self, /)\n"
- "--\n"
- "\n"
- "Return a copy of the compression object.");
- #define ZLIB_COMPRESS_COPY_METHODDEF \
- {"copy", _PyCFunction_CAST(zlib_Compress_copy), METH_METHOD|METH_FASTCALL|METH_KEYWORDS, zlib_Compress_copy__doc__},
- static PyObject *
- zlib_Compress_copy_impl(compobject *self, PyTypeObject *cls);
- static PyObject *
- zlib_Compress_copy(compobject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
- {
- if (nargs || (kwnames && PyTuple_GET_SIZE(kwnames))) {
- PyErr_SetString(PyExc_TypeError, "copy() takes no arguments");
- return NULL;
- }
- return zlib_Compress_copy_impl(self, cls);
- }
- #endif /* defined(HAVE_ZLIB_COPY) */
- #if defined(HAVE_ZLIB_COPY)
- PyDoc_STRVAR(zlib_Compress___copy____doc__,
- "__copy__($self, /)\n"
- "--\n"
- "\n");
- #define ZLIB_COMPRESS___COPY___METHODDEF \
- {"__copy__", _PyCFunction_CAST(zlib_Compress___copy__), METH_METHOD|METH_FASTCALL|METH_KEYWORDS, zlib_Compress___copy____doc__},
- static PyObject *
- zlib_Compress___copy___impl(compobject *self, PyTypeObject *cls);
- static PyObject *
- zlib_Compress___copy__(compobject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
- {
- if (nargs || (kwnames && PyTuple_GET_SIZE(kwnames))) {
- PyErr_SetString(PyExc_TypeError, "__copy__() takes no arguments");
- return NULL;
- }
- return zlib_Compress___copy___impl(self, cls);
- }
- #endif /* defined(HAVE_ZLIB_COPY) */
- #if defined(HAVE_ZLIB_COPY)
- PyDoc_STRVAR(zlib_Compress___deepcopy____doc__,
- "__deepcopy__($self, memo, /)\n"
- "--\n"
- "\n");
- #define ZLIB_COMPRESS___DEEPCOPY___METHODDEF \
- {"__deepcopy__", _PyCFunction_CAST(zlib_Compress___deepcopy__), METH_METHOD|METH_FASTCALL|METH_KEYWORDS, zlib_Compress___deepcopy____doc__},
- static PyObject *
- zlib_Compress___deepcopy___impl(compobject *self, PyTypeObject *cls,
- PyObject *memo);
- static PyObject *
- zlib_Compress___deepcopy__(compobject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
- {
- PyObject *return_value = NULL;
- #if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
- # define KWTUPLE (PyObject *)&_Py_SINGLETON(tuple_empty)
- #else
- # define KWTUPLE NULL
- #endif
- static const char * const _keywords[] = {"", NULL};
- static _PyArg_Parser _parser = {
- .keywords = _keywords,
- .fname = "__deepcopy__",
- .kwtuple = KWTUPLE,
- };
- #undef KWTUPLE
- PyObject *argsbuf[1];
- PyObject *memo;
- args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser, 1, 1, 0, argsbuf);
- if (!args) {
- goto exit;
- }
- memo = args[0];
- return_value = zlib_Compress___deepcopy___impl(self, cls, memo);
- exit:
- return return_value;
- }
- #endif /* defined(HAVE_ZLIB_COPY) */
- #if defined(HAVE_ZLIB_COPY)
- PyDoc_STRVAR(zlib_Decompress_copy__doc__,
- "copy($self, /)\n"
- "--\n"
- "\n"
- "Return a copy of the decompression object.");
- #define ZLIB_DECOMPRESS_COPY_METHODDEF \
- {"copy", _PyCFunction_CAST(zlib_Decompress_copy), METH_METHOD|METH_FASTCALL|METH_KEYWORDS, zlib_Decompress_copy__doc__},
- static PyObject *
- zlib_Decompress_copy_impl(compobject *self, PyTypeObject *cls);
- static PyObject *
- zlib_Decompress_copy(compobject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
- {
- if (nargs || (kwnames && PyTuple_GET_SIZE(kwnames))) {
- PyErr_SetString(PyExc_TypeError, "copy() takes no arguments");
- return NULL;
- }
- return zlib_Decompress_copy_impl(self, cls);
- }
- #endif /* defined(HAVE_ZLIB_COPY) */
- #if defined(HAVE_ZLIB_COPY)
- PyDoc_STRVAR(zlib_Decompress___copy____doc__,
- "__copy__($self, /)\n"
- "--\n"
- "\n");
- #define ZLIB_DECOMPRESS___COPY___METHODDEF \
- {"__copy__", _PyCFunction_CAST(zlib_Decompress___copy__), METH_METHOD|METH_FASTCALL|METH_KEYWORDS, zlib_Decompress___copy____doc__},
- static PyObject *
- zlib_Decompress___copy___impl(compobject *self, PyTypeObject *cls);
- static PyObject *
- zlib_Decompress___copy__(compobject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
- {
- if (nargs || (kwnames && PyTuple_GET_SIZE(kwnames))) {
- PyErr_SetString(PyExc_TypeError, "__copy__() takes no arguments");
- return NULL;
- }
- return zlib_Decompress___copy___impl(self, cls);
- }
- #endif /* defined(HAVE_ZLIB_COPY) */
- #if defined(HAVE_ZLIB_COPY)
- PyDoc_STRVAR(zlib_Decompress___deepcopy____doc__,
- "__deepcopy__($self, memo, /)\n"
- "--\n"
- "\n");
- #define ZLIB_DECOMPRESS___DEEPCOPY___METHODDEF \
- {"__deepcopy__", _PyCFunction_CAST(zlib_Decompress___deepcopy__), METH_METHOD|METH_FASTCALL|METH_KEYWORDS, zlib_Decompress___deepcopy____doc__},
- static PyObject *
- zlib_Decompress___deepcopy___impl(compobject *self, PyTypeObject *cls,
- PyObject *memo);
- static PyObject *
- zlib_Decompress___deepcopy__(compobject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
- {
- PyObject *return_value = NULL;
- #if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
- # define KWTUPLE (PyObject *)&_Py_SINGLETON(tuple_empty)
- #else
- # define KWTUPLE NULL
- #endif
- static const char * const _keywords[] = {"", NULL};
- static _PyArg_Parser _parser = {
- .keywords = _keywords,
- .fname = "__deepcopy__",
- .kwtuple = KWTUPLE,
- };
- #undef KWTUPLE
- PyObject *argsbuf[1];
- PyObject *memo;
- args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser, 1, 1, 0, argsbuf);
- if (!args) {
- goto exit;
- }
- memo = args[0];
- return_value = zlib_Decompress___deepcopy___impl(self, cls, memo);
- exit:
- return return_value;
- }
- #endif /* defined(HAVE_ZLIB_COPY) */
- PyDoc_STRVAR(zlib_Decompress_flush__doc__,
- "flush($self, length=zlib.DEF_BUF_SIZE, /)\n"
- "--\n"
- "\n"
- "Return a bytes object containing any remaining decompressed data.\n"
- "\n"
- " length\n"
- " the initial size of the output buffer.");
- #define ZLIB_DECOMPRESS_FLUSH_METHODDEF \
- {"flush", _PyCFunction_CAST(zlib_Decompress_flush), METH_METHOD|METH_FASTCALL|METH_KEYWORDS, zlib_Decompress_flush__doc__},
- static PyObject *
- zlib_Decompress_flush_impl(compobject *self, PyTypeObject *cls,
- Py_ssize_t length);
- static PyObject *
- zlib_Decompress_flush(compobject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
- {
- PyObject *return_value = NULL;
- #if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
- # define KWTUPLE (PyObject *)&_Py_SINGLETON(tuple_empty)
- #else
- # define KWTUPLE NULL
- #endif
- static const char * const _keywords[] = {"", NULL};
- static _PyArg_Parser _parser = {
- .keywords = _keywords,
- .fname = "flush",
- .kwtuple = KWTUPLE,
- };
- #undef KWTUPLE
- PyObject *argsbuf[1];
- Py_ssize_t length = DEF_BUF_SIZE;
- args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser, 0, 1, 0, argsbuf);
- if (!args) {
- goto exit;
- }
- if (nargs < 1) {
- goto skip_optional_posonly;
- }
- {
- Py_ssize_t ival = -1;
- PyObject *iobj = _PyNumber_Index(args[0]);
- if (iobj != NULL) {
- ival = PyLong_AsSsize_t(iobj);
- Py_DECREF(iobj);
- }
- if (ival == -1 && PyErr_Occurred()) {
- goto exit;
- }
- length = ival;
- }
- skip_optional_posonly:
- return_value = zlib_Decompress_flush_impl(self, cls, length);
- exit:
- return return_value;
- }
- PyDoc_STRVAR(zlib_ZlibDecompressor_decompress__doc__,
- "decompress($self, /, data, max_length=-1)\n"
- "--\n"
- "\n"
- "Decompress *data*, returning uncompressed data as bytes.\n"
- "\n"
- "If *max_length* is nonnegative, returns at most *max_length* bytes of\n"
- "decompressed data. If this limit is reached and further output can be\n"
- "produced, *self.needs_input* will be set to ``False``. In this case, the next\n"
- "call to *decompress()* may provide *data* as b\'\' to obtain more of the output.\n"
- "\n"
- "If all of the input data was decompressed and returned (either because this\n"
- "was less than *max_length* bytes, or because *max_length* was negative),\n"
- "*self.needs_input* will be set to True.\n"
- "\n"
- "Attempting to decompress data after the end of stream is reached raises an\n"
- "EOFError. Any data found after the end of the stream is ignored and saved in\n"
- "the unused_data attribute.");
- #define ZLIB_ZLIBDECOMPRESSOR_DECOMPRESS_METHODDEF \
- {"decompress", _PyCFunction_CAST(zlib_ZlibDecompressor_decompress), METH_FASTCALL|METH_KEYWORDS, zlib_ZlibDecompressor_decompress__doc__},
- static PyObject *
- zlib_ZlibDecompressor_decompress_impl(ZlibDecompressor *self,
- Py_buffer *data, Py_ssize_t max_length);
- static PyObject *
- zlib_ZlibDecompressor_decompress(ZlibDecompressor *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
- {
- PyObject *return_value = NULL;
- #if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
- #define NUM_KEYWORDS 2
- static struct {
- PyGC_Head _this_is_not_used;
- PyObject_VAR_HEAD
- PyObject *ob_item[NUM_KEYWORDS];
- } _kwtuple = {
- .ob_base = PyVarObject_HEAD_INIT(&PyTuple_Type, NUM_KEYWORDS)
- .ob_item = { &_Py_ID(data), &_Py_ID(max_length), },
- };
- #undef NUM_KEYWORDS
- #define KWTUPLE (&_kwtuple.ob_base.ob_base)
- #else // !Py_BUILD_CORE
- # define KWTUPLE NULL
- #endif // !Py_BUILD_CORE
- static const char * const _keywords[] = {"data", "max_length", NULL};
- static _PyArg_Parser _parser = {
- .keywords = _keywords,
- .fname = "decompress",
- .kwtuple = KWTUPLE,
- };
- #undef KWTUPLE
- PyObject *argsbuf[2];
- Py_ssize_t noptargs = nargs + (kwnames ? PyTuple_GET_SIZE(kwnames) : 0) - 1;
- Py_buffer data = {NULL, NULL};
- Py_ssize_t max_length = -1;
- args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser, 1, 2, 0, argsbuf);
- if (!args) {
- goto exit;
- }
- if (PyObject_GetBuffer(args[0], &data, PyBUF_SIMPLE) != 0) {
- goto exit;
- }
- if (!PyBuffer_IsContiguous(&data, 'C')) {
- _PyArg_BadArgument("decompress", "argument 'data'", "contiguous buffer", args[0]);
- goto exit;
- }
- if (!noptargs) {
- goto skip_optional_pos;
- }
- {
- Py_ssize_t ival = -1;
- PyObject *iobj = _PyNumber_Index(args[1]);
- if (iobj != NULL) {
- ival = PyLong_AsSsize_t(iobj);
- Py_DECREF(iobj);
- }
- if (ival == -1 && PyErr_Occurred()) {
- goto exit;
- }
- max_length = ival;
- }
- skip_optional_pos:
- return_value = zlib_ZlibDecompressor_decompress_impl(self, &data, max_length);
- exit:
- /* Cleanup for data */
- if (data.obj) {
- PyBuffer_Release(&data);
- }
- return return_value;
- }
- PyDoc_STRVAR(zlib_adler32__doc__,
- "adler32($module, data, value=1, /)\n"
- "--\n"
- "\n"
- "Compute an Adler-32 checksum of data.\n"
- "\n"
- " value\n"
- " Starting value of the checksum.\n"
- "\n"
- "The returned checksum is an integer.");
- #define ZLIB_ADLER32_METHODDEF \
- {"adler32", _PyCFunction_CAST(zlib_adler32), METH_FASTCALL, zlib_adler32__doc__},
- static PyObject *
- zlib_adler32_impl(PyObject *module, Py_buffer *data, unsigned int value);
- static PyObject *
- zlib_adler32(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
- {
- PyObject *return_value = NULL;
- Py_buffer data = {NULL, NULL};
- unsigned int value = 1;
- if (!_PyArg_CheckPositional("adler32", nargs, 1, 2)) {
- goto exit;
- }
- if (PyObject_GetBuffer(args[0], &data, PyBUF_SIMPLE) != 0) {
- goto exit;
- }
- if (!PyBuffer_IsContiguous(&data, 'C')) {
- _PyArg_BadArgument("adler32", "argument 1", "contiguous buffer", args[0]);
- goto exit;
- }
- if (nargs < 2) {
- goto skip_optional;
- }
- value = (unsigned int)PyLong_AsUnsignedLongMask(args[1]);
- if (value == (unsigned int)-1 && PyErr_Occurred()) {
- goto exit;
- }
- skip_optional:
- return_value = zlib_adler32_impl(module, &data, value);
- exit:
- /* Cleanup for data */
- if (data.obj) {
- PyBuffer_Release(&data);
- }
- return return_value;
- }
- PyDoc_STRVAR(zlib_crc32__doc__,
- "crc32($module, data, value=0, /)\n"
- "--\n"
- "\n"
- "Compute a CRC-32 checksum of data.\n"
- "\n"
- " value\n"
- " Starting value of the checksum.\n"
- "\n"
- "The returned checksum is an integer.");
- #define ZLIB_CRC32_METHODDEF \
- {"crc32", _PyCFunction_CAST(zlib_crc32), METH_FASTCALL, zlib_crc32__doc__},
- static unsigned int
- zlib_crc32_impl(PyObject *module, Py_buffer *data, unsigned int value);
- static PyObject *
- zlib_crc32(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
- {
- PyObject *return_value = NULL;
- Py_buffer data = {NULL, NULL};
- unsigned int value = 0;
- unsigned int _return_value;
- if (!_PyArg_CheckPositional("crc32", nargs, 1, 2)) {
- goto exit;
- }
- if (PyObject_GetBuffer(args[0], &data, PyBUF_SIMPLE) != 0) {
- goto exit;
- }
- if (!PyBuffer_IsContiguous(&data, 'C')) {
- _PyArg_BadArgument("crc32", "argument 1", "contiguous buffer", args[0]);
- goto exit;
- }
- if (nargs < 2) {
- goto skip_optional;
- }
- value = (unsigned int)PyLong_AsUnsignedLongMask(args[1]);
- if (value == (unsigned int)-1 && PyErr_Occurred()) {
- goto exit;
- }
- skip_optional:
- _return_value = zlib_crc32_impl(module, &data, value);
- if ((_return_value == (unsigned int)-1) && PyErr_Occurred()) {
- goto exit;
- }
- return_value = PyLong_FromUnsignedLong((unsigned long)_return_value);
- exit:
- /* Cleanup for data */
- if (data.obj) {
- PyBuffer_Release(&data);
- }
- return return_value;
- }
- #ifndef ZLIB_COMPRESS_COPY_METHODDEF
- #define ZLIB_COMPRESS_COPY_METHODDEF
- #endif /* !defined(ZLIB_COMPRESS_COPY_METHODDEF) */
- #ifndef ZLIB_COMPRESS___COPY___METHODDEF
- #define ZLIB_COMPRESS___COPY___METHODDEF
- #endif /* !defined(ZLIB_COMPRESS___COPY___METHODDEF) */
- #ifndef ZLIB_COMPRESS___DEEPCOPY___METHODDEF
- #define ZLIB_COMPRESS___DEEPCOPY___METHODDEF
- #endif /* !defined(ZLIB_COMPRESS___DEEPCOPY___METHODDEF) */
- #ifndef ZLIB_DECOMPRESS_COPY_METHODDEF
- #define ZLIB_DECOMPRESS_COPY_METHODDEF
- #endif /* !defined(ZLIB_DECOMPRESS_COPY_METHODDEF) */
- #ifndef ZLIB_DECOMPRESS___COPY___METHODDEF
- #define ZLIB_DECOMPRESS___COPY___METHODDEF
- #endif /* !defined(ZLIB_DECOMPRESS___COPY___METHODDEF) */
- #ifndef ZLIB_DECOMPRESS___DEEPCOPY___METHODDEF
- #define ZLIB_DECOMPRESS___DEEPCOPY___METHODDEF
- #endif /* !defined(ZLIB_DECOMPRESS___DEEPCOPY___METHODDEF) */
- /*[clinic end generated code: output=244bf5f33deee674 input=a9049054013a1b77]*/
|