| 
									
										
										
										
											2017-02-02 12:09:30 +01:00
										 |  |  | /*[clinic input]
 | 
					
						
							|  |  |  | preserve | 
					
						
							|  |  |  | [clinic start generated code]*/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyDoc_STRVAR(Struct___init____doc__, | 
					
						
							|  |  |  | "Struct(format)\n" | 
					
						
							|  |  |  | "--\n" | 
					
						
							|  |  |  | "\n" | 
					
						
							|  |  |  | "Create a compiled struct object.\n" | 
					
						
							|  |  |  | "\n" | 
					
						
							|  |  |  | "Return a new Struct object which writes and reads binary data according to\n" | 
					
						
							|  |  |  | "the format string.\n" | 
					
						
							|  |  |  | "\n" | 
					
						
							|  |  |  | "See help(struct) for more on format strings."); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int | 
					
						
							|  |  |  | Struct___init___impl(PyStructObject *self, PyObject *format); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int | 
					
						
							|  |  |  | Struct___init__(PyObject *self, PyObject *args, PyObject *kwargs) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int return_value = -1; | 
					
						
							|  |  |  |     static const char * const _keywords[] = {"format", NULL}; | 
					
						
							| 
									
										
										
										
											2019-03-14 10:32:22 +02:00
										 |  |  |     static _PyArg_Parser _parser = {NULL, _keywords, "Struct", 0}; | 
					
						
							|  |  |  |     PyObject *argsbuf[1]; | 
					
						
							|  |  |  |     PyObject * const *fastargs; | 
					
						
							|  |  |  |     Py_ssize_t nargs = PyTuple_GET_SIZE(args); | 
					
						
							| 
									
										
										
										
											2017-02-02 12:09:30 +01:00
										 |  |  |     PyObject *format; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-14 10:32:22 +02:00
										 |  |  |     fastargs = _PyArg_UnpackKeywords(_PyTuple_CAST(args)->ob_item, nargs, kwargs, NULL, &_parser, 1, 1, 0, argsbuf); | 
					
						
							|  |  |  |     if (!fastargs) { | 
					
						
							| 
									
										
										
										
											2017-02-02 12:09:30 +01:00
										 |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-03-14 10:32:22 +02:00
										 |  |  |     format = fastargs[0]; | 
					
						
							| 
									
										
										
										
											2017-02-02 12:09:30 +01:00
										 |  |  |     return_value = Struct___init___impl((PyStructObject *)self, format); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | exit: | 
					
						
							|  |  |  |     return return_value; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyDoc_STRVAR(Struct_unpack__doc__, | 
					
						
							|  |  |  | "unpack($self, buffer, /)\n" | 
					
						
							|  |  |  | "--\n" | 
					
						
							|  |  |  | "\n" | 
					
						
							|  |  |  | "Return a tuple containing unpacked values.\n" | 
					
						
							|  |  |  | "\n" | 
					
						
							|  |  |  | "Unpack according to the format string Struct.format. The buffer\'s size\n" | 
					
						
							|  |  |  | "in bytes must be Struct.size.\n" | 
					
						
							|  |  |  | "\n" | 
					
						
							|  |  |  | "See help(struct) for more on format strings."); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define STRUCT_UNPACK_METHODDEF    \
 | 
					
						
							|  |  |  |     {"unpack", (PyCFunction)Struct_unpack, METH_O, Struct_unpack__doc__}, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | Struct_unpack_impl(PyStructObject *self, Py_buffer *buffer); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | Struct_unpack(PyStructObject *self, PyObject *arg) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     PyObject *return_value = NULL; | 
					
						
							|  |  |  |     Py_buffer buffer = {NULL, NULL}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-25 13:23:47 +02:00
										 |  |  |     if (PyObject_GetBuffer(arg, &buffer, PyBUF_SIMPLE) != 0) { | 
					
						
							|  |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (!PyBuffer_IsContiguous(&buffer, 'C')) { | 
					
						
							| 
									
										
										
										
											2019-08-29 16:49:08 +02:00
										 |  |  |         _PyArg_BadArgument("unpack", "argument", "contiguous buffer", arg); | 
					
						
							| 
									
										
										
										
											2017-02-02 12:09:30 +01:00
										 |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return_value = Struct_unpack_impl(self, &buffer); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | exit: | 
					
						
							|  |  |  |     /* Cleanup for buffer */ | 
					
						
							|  |  |  |     if (buffer.obj) { | 
					
						
							|  |  |  |        PyBuffer_Release(&buffer); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return return_value; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyDoc_STRVAR(Struct_unpack_from__doc__, | 
					
						
							|  |  |  | "unpack_from($self, /, buffer, offset=0)\n" | 
					
						
							|  |  |  | "--\n" | 
					
						
							|  |  |  | "\n" | 
					
						
							|  |  |  | "Return a tuple containing unpacked values.\n" | 
					
						
							|  |  |  | "\n" | 
					
						
							|  |  |  | "Values are unpacked according to the format string Struct.format.\n" | 
					
						
							|  |  |  | "\n" | 
					
						
							| 
									
										
										
										
											2018-03-11 02:58:52 +08:00
										 |  |  | "The buffer\'s size in bytes, starting at position offset, must be\n" | 
					
						
							|  |  |  | "at least Struct.size.\n" | 
					
						
							| 
									
										
										
										
											2017-02-02 12:09:30 +01:00
										 |  |  | "\n" | 
					
						
							|  |  |  | "See help(struct) for more on format strings."); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define STRUCT_UNPACK_FROM_METHODDEF    \
 | 
					
						
							| 
									
										
										
										
											2018-11-27 11:27:36 +02:00
										 |  |  |     {"unpack_from", (PyCFunction)(void(*)(void))Struct_unpack_from, METH_FASTCALL|METH_KEYWORDS, Struct_unpack_from__doc__}, | 
					
						
							| 
									
										
										
										
											2017-02-02 12:09:30 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | Struct_unpack_from_impl(PyStructObject *self, Py_buffer *buffer, | 
					
						
							|  |  |  |                         Py_ssize_t offset); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2017-12-15 13:11:11 +02:00
										 |  |  | Struct_unpack_from(PyStructObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) | 
					
						
							| 
									
										
										
										
											2017-02-02 12:09:30 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     PyObject *return_value = NULL; | 
					
						
							|  |  |  |     static const char * const _keywords[] = {"buffer", "offset", NULL}; | 
					
						
							| 
									
										
										
										
											2019-03-14 10:32:22 +02:00
										 |  |  |     static _PyArg_Parser _parser = {NULL, _keywords, "unpack_from", 0}; | 
					
						
							|  |  |  |     PyObject *argsbuf[2]; | 
					
						
							|  |  |  |     Py_ssize_t noptargs = nargs + (kwnames ? PyTuple_GET_SIZE(kwnames) : 0) - 1; | 
					
						
							| 
									
										
										
										
											2017-02-02 12:09:30 +01:00
										 |  |  |     Py_buffer buffer = {NULL, NULL}; | 
					
						
							|  |  |  |     Py_ssize_t offset = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-14 10:32:22 +02:00
										 |  |  |     args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser, 1, 2, 0, argsbuf); | 
					
						
							|  |  |  |     if (!args) { | 
					
						
							| 
									
										
										
										
											2017-02-02 12:09:30 +01:00
										 |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-03-14 10:32:22 +02:00
										 |  |  |     if (PyObject_GetBuffer(args[0], &buffer, PyBUF_SIMPLE) != 0) { | 
					
						
							|  |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (!PyBuffer_IsContiguous(&buffer, 'C')) { | 
					
						
							| 
									
										
										
										
											2019-08-29 16:49:08 +02:00
										 |  |  |         _PyArg_BadArgument("unpack_from", "argument 'buffer'", "contiguous buffer", args[0]); | 
					
						
							| 
									
										
										
										
											2019-03-14 10:32:22 +02:00
										 |  |  |         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; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         offset = ival; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | skip_optional_pos: | 
					
						
							| 
									
										
										
										
											2017-02-02 12:09:30 +01:00
										 |  |  |     return_value = Struct_unpack_from_impl(self, &buffer, offset); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | exit: | 
					
						
							|  |  |  |     /* Cleanup for buffer */ | 
					
						
							|  |  |  |     if (buffer.obj) { | 
					
						
							|  |  |  |        PyBuffer_Release(&buffer); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return return_value; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyDoc_STRVAR(Struct_iter_unpack__doc__, | 
					
						
							|  |  |  | "iter_unpack($self, buffer, /)\n" | 
					
						
							|  |  |  | "--\n" | 
					
						
							|  |  |  | "\n" | 
					
						
							|  |  |  | "Return an iterator yielding tuples.\n" | 
					
						
							|  |  |  | "\n" | 
					
						
							|  |  |  | "Tuples are unpacked from the given bytes source, like a repeated\n" | 
					
						
							|  |  |  | "invocation of unpack_from().\n" | 
					
						
							|  |  |  | "\n" | 
					
						
							|  |  |  | "Requires that the bytes length be a multiple of the struct size."); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define STRUCT_ITER_UNPACK_METHODDEF    \
 | 
					
						
							|  |  |  |     {"iter_unpack", (PyCFunction)Struct_iter_unpack, METH_O, Struct_iter_unpack__doc__}, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyDoc_STRVAR(_clearcache__doc__, | 
					
						
							|  |  |  | "_clearcache($module, /)\n" | 
					
						
							|  |  |  | "--\n" | 
					
						
							|  |  |  | "\n" | 
					
						
							|  |  |  | "Clear the internal cache."); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define _CLEARCACHE_METHODDEF    \
 | 
					
						
							|  |  |  |     {"_clearcache", (PyCFunction)_clearcache, METH_NOARGS, _clearcache__doc__}, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | _clearcache_impl(PyObject *module); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | _clearcache(PyObject *module, PyObject *Py_UNUSED(ignored)) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return _clearcache_impl(module); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyDoc_STRVAR(calcsize__doc__, | 
					
						
							|  |  |  | "calcsize($module, format, /)\n" | 
					
						
							|  |  |  | "--\n" | 
					
						
							|  |  |  | "\n" | 
					
						
							|  |  |  | "Return size in bytes of the struct described by the format string."); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define CALCSIZE_METHODDEF    \
 | 
					
						
							|  |  |  |     {"calcsize", (PyCFunction)calcsize, METH_O, calcsize__doc__}, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-04 11:14:52 +02:00
										 |  |  | static Py_ssize_t | 
					
						
							|  |  |  | calcsize_impl(PyObject *module, PyStructObject *s_object); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | calcsize(PyObject *module, PyObject *arg) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     PyObject *return_value = NULL; | 
					
						
							|  |  |  |     PyStructObject *s_object = NULL; | 
					
						
							|  |  |  |     Py_ssize_t _return_value; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-25 13:23:47 +02:00
										 |  |  |     if (!cache_struct_converter(arg, &s_object)) { | 
					
						
							| 
									
										
										
										
											2017-02-04 11:14:52 +02:00
										 |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     _return_value = calcsize_impl(module, s_object); | 
					
						
							|  |  |  |     if ((_return_value == -1) && PyErr_Occurred()) { | 
					
						
							|  |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return_value = PyLong_FromSsize_t(_return_value); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | exit: | 
					
						
							|  |  |  |     /* Cleanup for s_object */ | 
					
						
							|  |  |  |     Py_XDECREF(s_object); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return return_value; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-02 12:09:30 +01:00
										 |  |  | PyDoc_STRVAR(unpack__doc__, | 
					
						
							| 
									
										
										
										
											2017-02-02 14:24:16 +01:00
										 |  |  | "unpack($module, format, buffer, /)\n" | 
					
						
							| 
									
										
										
										
											2017-02-02 12:09:30 +01:00
										 |  |  | "--\n" | 
					
						
							|  |  |  | "\n" | 
					
						
							|  |  |  | "Return a tuple containing values unpacked according to the format string.\n" | 
					
						
							|  |  |  | "\n" | 
					
						
							|  |  |  | "The buffer\'s size in bytes must be calcsize(format).\n" | 
					
						
							|  |  |  | "\n" | 
					
						
							|  |  |  | "See help(struct) for more on format strings."); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define UNPACK_METHODDEF    \
 | 
					
						
							| 
									
										
										
										
											2018-11-27 11:27:36 +02:00
										 |  |  |     {"unpack", (PyCFunction)(void(*)(void))unpack, METH_FASTCALL, unpack__doc__}, | 
					
						
							| 
									
										
										
										
											2017-02-02 12:09:30 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2017-02-04 11:14:52 +02:00
										 |  |  | unpack_impl(PyObject *module, PyStructObject *s_object, Py_buffer *buffer); | 
					
						
							| 
									
										
										
										
											2017-02-02 12:09:30 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2017-12-15 13:11:11 +02:00
										 |  |  | unpack(PyObject *module, PyObject *const *args, Py_ssize_t nargs) | 
					
						
							| 
									
										
										
										
											2017-02-02 12:09:30 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     PyObject *return_value = NULL; | 
					
						
							| 
									
										
										
										
											2017-02-04 11:14:52 +02:00
										 |  |  |     PyStructObject *s_object = NULL; | 
					
						
							| 
									
										
										
										
											2017-02-02 14:24:16 +01:00
										 |  |  |     Py_buffer buffer = {NULL, NULL}; | 
					
						
							| 
									
										
										
										
											2017-02-02 12:09:30 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-11 16:01:14 +02:00
										 |  |  |     if (!_PyArg_CheckPositional("unpack", nargs, 2, 2)) { | 
					
						
							|  |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (!cache_struct_converter(args[0], &s_object)) { | 
					
						
							|  |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (PyObject_GetBuffer(args[1], &buffer, PyBUF_SIMPLE) != 0) { | 
					
						
							|  |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (!PyBuffer_IsContiguous(&buffer, 'C')) { | 
					
						
							| 
									
										
										
										
											2019-08-29 16:49:08 +02:00
										 |  |  |         _PyArg_BadArgument("unpack", "argument 2", "contiguous buffer", args[1]); | 
					
						
							| 
									
										
										
										
											2017-02-02 12:09:30 +01:00
										 |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-02-04 11:14:52 +02:00
										 |  |  |     return_value = unpack_impl(module, s_object, &buffer); | 
					
						
							| 
									
										
										
										
											2017-02-02 12:09:30 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | exit: | 
					
						
							| 
									
										
										
										
											2017-02-04 11:14:52 +02:00
										 |  |  |     /* Cleanup for s_object */ | 
					
						
							|  |  |  |     Py_XDECREF(s_object); | 
					
						
							| 
									
										
										
										
											2017-02-02 14:24:16 +01:00
										 |  |  |     /* Cleanup for buffer */ | 
					
						
							|  |  |  |     if (buffer.obj) { | 
					
						
							|  |  |  |        PyBuffer_Release(&buffer); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-02 12:09:30 +01:00
										 |  |  |     return return_value; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyDoc_STRVAR(unpack_from__doc__, | 
					
						
							|  |  |  | "unpack_from($module, format, /, buffer, offset=0)\n" | 
					
						
							|  |  |  | "--\n" | 
					
						
							|  |  |  | "\n" | 
					
						
							|  |  |  | "Return a tuple containing values unpacked according to the format string.\n" | 
					
						
							|  |  |  | "\n" | 
					
						
							|  |  |  | "The buffer\'s size, minus offset, must be at least calcsize(format).\n" | 
					
						
							|  |  |  | "\n" | 
					
						
							|  |  |  | "See help(struct) for more on format strings."); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define UNPACK_FROM_METHODDEF    \
 | 
					
						
							| 
									
										
										
										
											2018-11-27 11:27:36 +02:00
										 |  |  |     {"unpack_from", (PyCFunction)(void(*)(void))unpack_from, METH_FASTCALL|METH_KEYWORDS, unpack_from__doc__}, | 
					
						
							| 
									
										
										
										
											2017-02-02 12:09:30 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2017-02-04 11:14:52 +02:00
										 |  |  | unpack_from_impl(PyObject *module, PyStructObject *s_object, | 
					
						
							|  |  |  |                  Py_buffer *buffer, Py_ssize_t offset); | 
					
						
							| 
									
										
										
										
											2017-02-02 12:09:30 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2017-12-15 13:11:11 +02:00
										 |  |  | unpack_from(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) | 
					
						
							| 
									
										
										
										
											2017-02-02 12:09:30 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     PyObject *return_value = NULL; | 
					
						
							|  |  |  |     static const char * const _keywords[] = {"", "buffer", "offset", NULL}; | 
					
						
							| 
									
										
										
										
											2019-03-14 10:32:22 +02:00
										 |  |  |     static _PyArg_Parser _parser = {NULL, _keywords, "unpack_from", 0}; | 
					
						
							|  |  |  |     PyObject *argsbuf[3]; | 
					
						
							|  |  |  |     Py_ssize_t noptargs = nargs + (kwnames ? PyTuple_GET_SIZE(kwnames) : 0) - 2; | 
					
						
							| 
									
										
										
										
											2017-02-04 11:14:52 +02:00
										 |  |  |     PyStructObject *s_object = NULL; | 
					
						
							| 
									
										
										
										
											2017-02-02 12:09:30 +01:00
										 |  |  |     Py_buffer buffer = {NULL, NULL}; | 
					
						
							|  |  |  |     Py_ssize_t offset = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-14 10:32:22 +02:00
										 |  |  |     args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser, 2, 3, 0, argsbuf); | 
					
						
							|  |  |  |     if (!args) { | 
					
						
							|  |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (!cache_struct_converter(args[0], &s_object)) { | 
					
						
							|  |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (PyObject_GetBuffer(args[1], &buffer, PyBUF_SIMPLE) != 0) { | 
					
						
							| 
									
										
										
										
											2017-02-02 12:09:30 +01:00
										 |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-03-14 10:32:22 +02:00
										 |  |  |     if (!PyBuffer_IsContiguous(&buffer, 'C')) { | 
					
						
							| 
									
										
										
										
											2019-08-29 16:49:08 +02:00
										 |  |  |         _PyArg_BadArgument("unpack_from", "argument 'buffer'", "contiguous buffer", args[1]); | 
					
						
							| 
									
										
										
										
											2019-03-14 10:32:22 +02:00
										 |  |  |         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; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         offset = ival; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | skip_optional_pos: | 
					
						
							| 
									
										
										
										
											2017-02-04 11:14:52 +02:00
										 |  |  |     return_value = unpack_from_impl(module, s_object, &buffer, offset); | 
					
						
							| 
									
										
										
										
											2017-02-02 12:09:30 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | exit: | 
					
						
							| 
									
										
										
										
											2017-02-04 11:14:52 +02:00
										 |  |  |     /* Cleanup for s_object */ | 
					
						
							|  |  |  |     Py_XDECREF(s_object); | 
					
						
							| 
									
										
										
										
											2017-02-02 12:09:30 +01:00
										 |  |  |     /* Cleanup for buffer */ | 
					
						
							|  |  |  |     if (buffer.obj) { | 
					
						
							|  |  |  |        PyBuffer_Release(&buffer); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return return_value; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyDoc_STRVAR(iter_unpack__doc__, | 
					
						
							|  |  |  | "iter_unpack($module, format, buffer, /)\n" | 
					
						
							|  |  |  | "--\n" | 
					
						
							|  |  |  | "\n" | 
					
						
							|  |  |  | "Return an iterator yielding tuples unpacked from the given bytes.\n" | 
					
						
							|  |  |  | "\n" | 
					
						
							|  |  |  | "The bytes are unpacked according to the format string, like\n" | 
					
						
							|  |  |  | "a repeated invocation of unpack_from().\n" | 
					
						
							|  |  |  | "\n" | 
					
						
							|  |  |  | "Requires that the bytes length be a multiple of the format struct size."); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define ITER_UNPACK_METHODDEF    \
 | 
					
						
							| 
									
										
										
										
											2018-11-27 11:27:36 +02:00
										 |  |  |     {"iter_unpack", (PyCFunction)(void(*)(void))iter_unpack, METH_FASTCALL, iter_unpack__doc__}, | 
					
						
							| 
									
										
										
										
											2017-02-02 12:09:30 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2017-02-04 11:14:52 +02:00
										 |  |  | iter_unpack_impl(PyObject *module, PyStructObject *s_object, | 
					
						
							|  |  |  |                  PyObject *buffer); | 
					
						
							| 
									
										
										
										
											2017-02-02 12:09:30 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2017-12-15 13:11:11 +02:00
										 |  |  | iter_unpack(PyObject *module, PyObject *const *args, Py_ssize_t nargs) | 
					
						
							| 
									
										
										
										
											2017-02-02 12:09:30 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     PyObject *return_value = NULL; | 
					
						
							| 
									
										
										
										
											2017-02-04 11:14:52 +02:00
										 |  |  |     PyStructObject *s_object = NULL; | 
					
						
							| 
									
										
										
										
											2017-02-02 12:09:30 +01:00
										 |  |  |     PyObject *buffer; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-11 16:01:14 +02:00
										 |  |  |     if (!_PyArg_CheckPositional("iter_unpack", nargs, 2, 2)) { | 
					
						
							|  |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (!cache_struct_converter(args[0], &s_object)) { | 
					
						
							| 
									
										
										
										
											2017-02-02 12:09:30 +01:00
										 |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-01-11 16:01:14 +02:00
										 |  |  |     buffer = args[1]; | 
					
						
							| 
									
										
										
										
											2017-02-04 11:14:52 +02:00
										 |  |  |     return_value = iter_unpack_impl(module, s_object, buffer); | 
					
						
							| 
									
										
										
										
											2017-02-02 12:09:30 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | exit: | 
					
						
							| 
									
										
										
										
											2017-02-04 11:14:52 +02:00
										 |  |  |     /* Cleanup for s_object */ | 
					
						
							|  |  |  |     Py_XDECREF(s_object); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-02 12:09:30 +01:00
										 |  |  |     return return_value; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-05-26 18:43:38 +03:00
										 |  |  | /*[clinic end generated code: output=1205daf7f616f0cf input=a9049054013a1b77]*/ |