1994-09-29 06:42:55 -03:00
|
|
|
|
|
|
|
/* New getargs implementation */
|
|
|
|
|
1997-04-29 17:08:16 -03:00
|
|
|
#include "Python.h"
|
1994-09-29 06:42:55 -03:00
|
|
|
|
1996-08-21 20:38:24 -03:00
|
|
|
#include <ctype.h>
|
|
|
|
|
1994-09-29 06:42:55 -03:00
|
|
|
|
2006-04-12 01:38:54 -03:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2005-12-10 14:50:16 -04:00
|
|
|
int PyArg_Parse(PyObject *, const char *, ...);
|
|
|
|
int PyArg_ParseTuple(PyObject *, const char *, ...);
|
|
|
|
int PyArg_VaParse(PyObject *, const char *, va_list);
|
1994-09-29 06:42:55 -03:00
|
|
|
|
2000-07-09 00:09:57 -03:00
|
|
|
int PyArg_ParseTupleAndKeywords(PyObject *, PyObject *,
|
2006-02-27 12:46:16 -04:00
|
|
|
const char *, char **, ...);
|
2004-07-10 19:20:32 -03:00
|
|
|
int PyArg_VaParseTupleAndKeywords(PyObject *, PyObject *,
|
2006-02-27 12:46:16 -04:00
|
|
|
const char *, char **, va_list);
|
2004-07-10 19:20:32 -03:00
|
|
|
|
2006-04-14 06:08:42 -03:00
|
|
|
#ifdef HAVE_DECLSPEC_DLL
|
|
|
|
/* Export functions */
|
|
|
|
PyAPI_FUNC(int) _PyArg_Parse_SizeT(PyObject *, char *, ...);
|
|
|
|
PyAPI_FUNC(int) _PyArg_ParseTuple_SizeT(PyObject *, char *, ...);
|
|
|
|
PyAPI_FUNC(int) _PyArg_ParseTupleAndKeywords_SizeT(PyObject *, PyObject *,
|
|
|
|
const char *, char **, ...);
|
|
|
|
PyAPI_FUNC(PyObject *) _Py_BuildValue_SizeT(const char *, ...);
|
|
|
|
PyAPI_FUNC(int) _PyArg_VaParse_SizeT(PyObject *, char *, va_list);
|
|
|
|
PyAPI_FUNC(int) _PyArg_VaParseTupleAndKeywords_SizeT(PyObject *, PyObject *,
|
|
|
|
const char *, char **, va_list);
|
|
|
|
#endif
|
|
|
|
|
2006-02-15 13:27:45 -04:00
|
|
|
#define FLAG_COMPAT 1
|
|
|
|
#define FLAG_SIZE_T 2
|
|
|
|
|
1994-09-29 06:42:55 -03:00
|
|
|
|
|
|
|
/* Forward */
|
2005-12-10 14:50:16 -04:00
|
|
|
static int vgetargs1(PyObject *, const char *, va_list *, int);
|
|
|
|
static void seterror(int, const char *, int *, const char *, const char *);
|
2006-02-15 13:27:45 -04:00
|
|
|
static char *convertitem(PyObject *, const char **, va_list *, int, int *,
|
|
|
|
char *, size_t, PyObject **);
|
|
|
|
static char *converttuple(PyObject *, const char **, va_list *, int,
|
2003-05-03 07:00:22 -03:00
|
|
|
int *, char *, size_t, int, PyObject **);
|
2006-02-15 13:27:45 -04:00
|
|
|
static char *convertsimple(PyObject *, const char **, va_list *, int, char *,
|
2003-05-03 07:00:22 -03:00
|
|
|
size_t, PyObject **);
|
2006-02-15 13:27:45 -04:00
|
|
|
static Py_ssize_t convertbuffer(PyObject *, void **p, char **);
|
2000-07-09 00:09:57 -03:00
|
|
|
|
|
|
|
static int vgetargskeywords(PyObject *, PyObject *,
|
2006-02-27 12:46:16 -04:00
|
|
|
const char *, char **, va_list *, int);
|
2006-02-15 13:27:45 -04:00
|
|
|
static char *skipitem(const char **, va_list *, int);
|
1994-09-29 06:42:55 -03:00
|
|
|
|
2001-10-23 11:41:08 -03:00
|
|
|
int
|
2005-12-10 14:50:16 -04:00
|
|
|
PyArg_Parse(PyObject *args, const char *format, ...)
|
1994-09-29 06:42:55 -03:00
|
|
|
{
|
|
|
|
int retval;
|
|
|
|
va_list va;
|
|
|
|
|
|
|
|
va_start(va, format);
|
2006-02-15 13:27:45 -04:00
|
|
|
retval = vgetargs1(args, format, &va, FLAG_COMPAT);
|
|
|
|
va_end(va);
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
_PyArg_Parse_SizeT(PyObject *args, char *format, ...)
|
|
|
|
{
|
|
|
|
int retval;
|
|
|
|
va_list va;
|
|
|
|
|
|
|
|
va_start(va, format);
|
|
|
|
retval = vgetargs1(args, format, &va, FLAG_COMPAT|FLAG_SIZE_T);
|
1994-09-29 06:42:55 -03:00
|
|
|
va_end(va);
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-10-23 11:41:08 -03:00
|
|
|
int
|
2005-12-10 14:50:16 -04:00
|
|
|
PyArg_ParseTuple(PyObject *args, const char *format, ...)
|
1994-09-29 06:42:55 -03:00
|
|
|
{
|
|
|
|
int retval;
|
|
|
|
va_list va;
|
|
|
|
|
|
|
|
va_start(va, format);
|
1995-01-02 15:04:15 -04:00
|
|
|
retval = vgetargs1(args, format, &va, 0);
|
1994-09-29 06:42:55 -03:00
|
|
|
va_end(va);
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2006-02-15 13:27:45 -04:00
|
|
|
int
|
|
|
|
_PyArg_ParseTuple_SizeT(PyObject *args, char *format, ...)
|
|
|
|
{
|
|
|
|
int retval;
|
|
|
|
va_list va;
|
|
|
|
|
|
|
|
va_start(va, format);
|
|
|
|
retval = vgetargs1(args, format, &va, FLAG_SIZE_T);
|
|
|
|
va_end(va);
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
1994-09-29 06:42:55 -03:00
|
|
|
|
|
|
|
int
|
2005-12-10 14:50:16 -04:00
|
|
|
PyArg_VaParse(PyObject *args, const char *format, va_list va)
|
1994-09-29 06:42:55 -03:00
|
|
|
{
|
1995-01-02 15:04:15 -04:00
|
|
|
va_list lva;
|
|
|
|
|
|
|
|
#ifdef VA_LIST_IS_ARRAY
|
|
|
|
memcpy(lva, va, sizeof(va_list));
|
2002-07-28 07:23:27 -03:00
|
|
|
#else
|
|
|
|
#ifdef __va_copy
|
|
|
|
__va_copy(lva, va);
|
1995-01-02 15:04:15 -04:00
|
|
|
#else
|
|
|
|
lva = va;
|
2002-07-28 07:23:27 -03:00
|
|
|
#endif
|
1995-01-02 15:04:15 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
return vgetargs1(args, format, &lva, 0);
|
1994-09-29 06:42:55 -03:00
|
|
|
}
|
|
|
|
|
2006-02-15 13:27:45 -04:00
|
|
|
int
|
|
|
|
_PyArg_VaParse_SizeT(PyObject *args, char *format, va_list va)
|
|
|
|
{
|
|
|
|
va_list lva;
|
|
|
|
|
|
|
|
#ifdef VA_LIST_IS_ARRAY
|
|
|
|
memcpy(lva, va, sizeof(va_list));
|
|
|
|
#else
|
|
|
|
#ifdef __va_copy
|
|
|
|
__va_copy(lva, va);
|
|
|
|
#else
|
|
|
|
lva = va;
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return vgetargs1(args, format, &lva, FLAG_SIZE_T);
|
|
|
|
}
|
|
|
|
|
1994-09-29 06:42:55 -03:00
|
|
|
|
2003-05-03 07:00:22 -03:00
|
|
|
/* Handle cleanup of allocated memory in case of exception */
|
|
|
|
|
|
|
|
static int
|
|
|
|
addcleanup(void *ptr, PyObject **freelist)
|
|
|
|
{
|
|
|
|
PyObject *cobj;
|
|
|
|
if (!*freelist) {
|
|
|
|
*freelist = PyList_New(0);
|
|
|
|
if (!*freelist) {
|
|
|
|
PyMem_FREE(ptr);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
cobj = PyCObject_FromVoidPtr(ptr, NULL);
|
|
|
|
if (!cobj) {
|
|
|
|
PyMem_FREE(ptr);
|
|
|
|
return -1;
|
|
|
|
}
|
2008-02-26 01:23:51 -04:00
|
|
|
if (PyList_Append(*freelist, cobj)) {
|
2003-05-03 07:00:22 -03:00
|
|
|
PyMem_FREE(ptr);
|
|
|
|
Py_DECREF(cobj);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
Py_DECREF(cobj);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
cleanreturn(int retval, PyObject *freelist)
|
|
|
|
{
|
2008-02-26 01:23:51 -04:00
|
|
|
if (freelist) {
|
|
|
|
if (retval == 0) {
|
2006-02-16 10:37:16 -04:00
|
|
|
Py_ssize_t len = PyList_GET_SIZE(freelist), i;
|
2003-05-03 07:00:22 -03:00
|
|
|
for (i = 0; i < len; i++)
|
|
|
|
PyMem_FREE(PyCObject_AsVoidPtr(
|
|
|
|
PyList_GET_ITEM(freelist, i)));
|
|
|
|
}
|
|
|
|
Py_DECREF(freelist);
|
|
|
|
}
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1994-09-29 06:42:55 -03:00
|
|
|
static int
|
2006-02-15 13:27:45 -04:00
|
|
|
vgetargs1(PyObject *args, const char *format, va_list *p_va, int flags)
|
1994-09-29 06:42:55 -03:00
|
|
|
{
|
|
|
|
char msgbuf[256];
|
|
|
|
int levels[32];
|
2005-12-10 14:50:16 -04:00
|
|
|
const char *fname = NULL;
|
|
|
|
const char *message = NULL;
|
1994-09-29 06:42:55 -03:00
|
|
|
int min = -1;
|
|
|
|
int max = 0;
|
|
|
|
int level = 0;
|
2001-05-29 14:46:19 -03:00
|
|
|
int endfmt = 0;
|
2005-12-10 14:50:16 -04:00
|
|
|
const char *formatsave = format;
|
2006-02-16 10:37:16 -04:00
|
|
|
Py_ssize_t i, len;
|
1994-09-29 06:42:55 -03:00
|
|
|
char *msg;
|
2003-05-03 07:00:22 -03:00
|
|
|
PyObject *freelist = NULL;
|
2006-02-15 13:27:45 -04:00
|
|
|
int compat = flags & FLAG_COMPAT;
|
|
|
|
|
2001-02-12 18:13:26 -04:00
|
|
|
assert(compat || (args != (PyObject*)NULL));
|
2006-02-15 13:27:45 -04:00
|
|
|
flags = flags & ~FLAG_COMPAT;
|
2001-02-12 18:13:26 -04:00
|
|
|
|
2001-05-29 14:46:19 -03:00
|
|
|
while (endfmt == 0) {
|
1994-09-29 06:42:55 -03:00
|
|
|
int c = *format++;
|
2001-05-29 14:46:19 -03:00
|
|
|
switch (c) {
|
|
|
|
case '(':
|
1994-09-29 06:42:55 -03:00
|
|
|
if (level == 0)
|
|
|
|
max++;
|
|
|
|
level++;
|
2006-08-09 04:03:22 -03:00
|
|
|
if (level >= 30)
|
|
|
|
Py_FatalError("too many tuple nesting levels "
|
|
|
|
"in argument format string");
|
2001-05-29 14:46:19 -03:00
|
|
|
break;
|
|
|
|
case ')':
|
1994-09-29 06:42:55 -03:00
|
|
|
if (level == 0)
|
2001-05-29 14:46:19 -03:00
|
|
|
Py_FatalError("excess ')' in getargs format");
|
1994-09-29 06:42:55 -03:00
|
|
|
else
|
|
|
|
level--;
|
|
|
|
break;
|
2001-05-29 14:46:19 -03:00
|
|
|
case '\0':
|
|
|
|
endfmt = 1;
|
|
|
|
break;
|
|
|
|
case ':':
|
1994-09-29 06:42:55 -03:00
|
|
|
fname = format;
|
2001-05-29 14:46:19 -03:00
|
|
|
endfmt = 1;
|
1994-09-29 06:42:55 -03:00
|
|
|
break;
|
2001-05-29 14:46:19 -03:00
|
|
|
case ';':
|
1994-09-29 06:42:55 -03:00
|
|
|
message = format;
|
2001-05-29 14:46:19 -03:00
|
|
|
endfmt = 1;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
if (level == 0) {
|
|
|
|
if (c == 'O')
|
|
|
|
max++;
|
2005-12-19 02:05:18 -04:00
|
|
|
else if (isalpha(Py_CHARMASK(c))) {
|
2001-05-29 14:46:19 -03:00
|
|
|
if (c != 'e') /* skip encoded */
|
|
|
|
max++;
|
|
|
|
} else if (c == '|')
|
|
|
|
min = max;
|
|
|
|
}
|
1994-09-29 06:42:55 -03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (level != 0)
|
1997-04-29 17:08:16 -03:00
|
|
|
Py_FatalError(/* '(' */ "missing ')' in getargs format");
|
1994-09-29 06:42:55 -03:00
|
|
|
|
|
|
|
if (min < 0)
|
|
|
|
min = max;
|
|
|
|
|
|
|
|
format = formatsave;
|
|
|
|
|
|
|
|
if (compat) {
|
|
|
|
if (max == 0) {
|
|
|
|
if (args == NULL)
|
|
|
|
return 1;
|
2001-11-28 16:29:22 -04:00
|
|
|
PyOS_snprintf(msgbuf, sizeof(msgbuf),
|
|
|
|
"%.200s%s takes no arguments",
|
|
|
|
fname==NULL ? "function" : fname,
|
|
|
|
fname==NULL ? "" : "()");
|
1997-04-29 17:08:16 -03:00
|
|
|
PyErr_SetString(PyExc_TypeError, msgbuf);
|
1994-09-29 06:42:55 -03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
else if (min == 1 && max == 1) {
|
1994-11-10 18:35:48 -04:00
|
|
|
if (args == NULL) {
|
2001-11-28 16:29:22 -04:00
|
|
|
PyOS_snprintf(msgbuf, sizeof(msgbuf),
|
|
|
|
"%.200s%s takes at least one argument",
|
|
|
|
fname==NULL ? "function" : fname,
|
|
|
|
fname==NULL ? "" : "()");
|
1997-04-29 17:08:16 -03:00
|
|
|
PyErr_SetString(PyExc_TypeError, msgbuf);
|
1994-11-10 18:35:48 -04:00
|
|
|
return 0;
|
|
|
|
}
|
2006-02-15 13:27:45 -04:00
|
|
|
msg = convertitem(args, &format, p_va, flags, levels,
|
|
|
|
msgbuf, sizeof(msgbuf), &freelist);
|
1994-09-29 06:42:55 -03:00
|
|
|
if (msg == NULL)
|
2003-05-03 07:00:22 -03:00
|
|
|
return cleanreturn(1, freelist);
|
1994-09-29 06:42:55 -03:00
|
|
|
seterror(levels[0], msg, levels+1, fname, message);
|
2003-05-03 07:00:22 -03:00
|
|
|
return cleanreturn(0, freelist);
|
1994-09-29 06:42:55 -03:00
|
|
|
}
|
|
|
|
else {
|
1997-04-29 17:08:16 -03:00
|
|
|
PyErr_SetString(PyExc_SystemError,
|
1994-09-29 06:42:55 -03:00
|
|
|
"old style getargs format uses new features");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1997-04-29 17:08:16 -03:00
|
|
|
if (!PyTuple_Check(args)) {
|
|
|
|
PyErr_SetString(PyExc_SystemError,
|
1994-09-29 06:42:55 -03:00
|
|
|
"new style getargs format but argument is not a tuple");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2001-05-18 17:57:38 -03:00
|
|
|
len = PyTuple_GET_SIZE(args);
|
1994-09-29 06:42:55 -03:00
|
|
|
|
|
|
|
if (len < min || max < len) {
|
|
|
|
if (message == NULL) {
|
2001-11-28 16:29:22 -04:00
|
|
|
PyOS_snprintf(msgbuf, sizeof(msgbuf),
|
|
|
|
"%.150s%s takes %s %d argument%s "
|
2006-02-19 15:34:15 -04:00
|
|
|
"(%ld given)",
|
2001-11-28 16:29:22 -04:00
|
|
|
fname==NULL ? "function" : fname,
|
|
|
|
fname==NULL ? "" : "()",
|
|
|
|
min==max ? "exactly"
|
|
|
|
: len < min ? "at least" : "at most",
|
|
|
|
len < min ? min : max,
|
|
|
|
(len < min ? min : max) == 1 ? "" : "s",
|
2006-02-20 14:57:39 -04:00
|
|
|
Py_SAFE_DOWNCAST(len, Py_ssize_t, long));
|
1994-09-29 06:42:55 -03:00
|
|
|
message = msgbuf;
|
|
|
|
}
|
1997-04-29 17:08:16 -03:00
|
|
|
PyErr_SetString(PyExc_TypeError, message);
|
1994-09-29 06:42:55 -03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < len; i++) {
|
|
|
|
if (*format == '|')
|
|
|
|
format++;
|
2001-05-18 17:57:38 -03:00
|
|
|
msg = convertitem(PyTuple_GET_ITEM(args, i), &format, p_va,
|
2006-02-15 13:27:45 -04:00
|
|
|
flags, levels, msgbuf,
|
|
|
|
sizeof(msgbuf), &freelist);
|
1994-09-29 06:42:55 -03:00
|
|
|
if (msg) {
|
|
|
|
seterror(i+1, msg, levels, fname, message);
|
2003-05-03 07:00:22 -03:00
|
|
|
return cleanreturn(0, freelist);
|
1994-09-29 06:42:55 -03:00
|
|
|
}
|
|
|
|
}
|
1997-12-09 16:36:39 -04:00
|
|
|
|
2005-12-19 02:10:07 -04:00
|
|
|
if (*format != '\0' && !isalpha(Py_CHARMASK(*format)) &&
|
1997-12-19 00:25:23 -04:00
|
|
|
*format != '(' &&
|
1997-12-09 16:36:39 -04:00
|
|
|
*format != '|' && *format != ':' && *format != ';') {
|
|
|
|
PyErr_Format(PyExc_SystemError,
|
1998-01-19 18:22:44 -04:00
|
|
|
"bad format string: %.200s", formatsave);
|
2003-05-03 07:00:22 -03:00
|
|
|
return cleanreturn(0, freelist);
|
1997-12-09 16:36:39 -04:00
|
|
|
}
|
1994-09-29 06:42:55 -03:00
|
|
|
|
2003-05-03 07:00:22 -03:00
|
|
|
return cleanreturn(1, freelist);
|
1994-09-29 06:42:55 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
2005-12-10 14:50:16 -04:00
|
|
|
seterror(int iarg, const char *msg, int *levels, const char *fname,
|
|
|
|
const char *message)
|
1994-09-29 06:42:55 -03:00
|
|
|
{
|
2001-11-28 07:47:00 -04:00
|
|
|
char buf[512];
|
1994-09-29 06:42:55 -03:00
|
|
|
int i;
|
|
|
|
char *p = buf;
|
|
|
|
|
1997-04-29 17:08:16 -03:00
|
|
|
if (PyErr_Occurred())
|
1995-01-21 10:09:37 -04:00
|
|
|
return;
|
1994-09-29 06:42:55 -03:00
|
|
|
else if (message == NULL) {
|
|
|
|
if (fname != NULL) {
|
2001-11-28 17:46:59 -04:00
|
|
|
PyOS_snprintf(p, sizeof(buf), "%.200s() ", fname);
|
1994-09-29 06:42:55 -03:00
|
|
|
p += strlen(p);
|
|
|
|
}
|
2001-01-15 18:14:16 -04:00
|
|
|
if (iarg != 0) {
|
2001-12-02 20:43:33 -04:00
|
|
|
PyOS_snprintf(p, sizeof(buf) - (p - buf),
|
2001-11-28 17:46:59 -04:00
|
|
|
"argument %d", iarg);
|
2001-01-15 18:14:16 -04:00
|
|
|
i = 0;
|
|
|
|
p += strlen(p);
|
2006-07-26 05:03:10 -03:00
|
|
|
while (levels[i] > 0 && i < 32 && (int)(p-buf) < 220) {
|
|
|
|
PyOS_snprintf(p, sizeof(buf) - (p - buf),
|
2001-11-28 17:46:59 -04:00
|
|
|
", item %d", levels[i]-1);
|
2001-01-15 18:14:16 -04:00
|
|
|
p += strlen(p);
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2001-12-02 20:43:33 -04:00
|
|
|
PyOS_snprintf(p, sizeof(buf) - (p - buf), "argument");
|
1994-09-29 06:42:55 -03:00
|
|
|
p += strlen(p);
|
|
|
|
}
|
2001-12-02 20:43:33 -04:00
|
|
|
PyOS_snprintf(p, sizeof(buf) - (p - buf), " %.256s", msg);
|
1994-09-29 06:42:55 -03:00
|
|
|
message = buf;
|
|
|
|
}
|
1997-04-29 17:08:16 -03:00
|
|
|
PyErr_SetString(PyExc_TypeError, message);
|
1994-09-29 06:42:55 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Convert a tuple argument.
|
|
|
|
On entry, *p_format points to the character _after_ the opening '('.
|
|
|
|
On successful exit, *p_format points to the closing ')'.
|
|
|
|
If successful:
|
|
|
|
*p_format and *p_va are updated,
|
|
|
|
*levels and *msgbuf are untouched,
|
|
|
|
and NULL is returned.
|
|
|
|
If the argument is invalid:
|
|
|
|
*p_format is unchanged,
|
|
|
|
*p_va is undefined,
|
|
|
|
*levels is a 0-terminated list of item numbers,
|
|
|
|
*msgbuf contains an error message, whose format is:
|
2001-01-15 18:14:16 -04:00
|
|
|
"must be <typename1>, not <typename2>", where:
|
1994-09-29 06:42:55 -03:00
|
|
|
<typename1> is the name of the expected type, and
|
|
|
|
<typename2> is the name of the actual type,
|
|
|
|
and msgbuf is returned.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static char *
|
2006-02-15 13:27:45 -04:00
|
|
|
converttuple(PyObject *arg, const char **p_format, va_list *p_va, int flags,
|
|
|
|
int *levels, char *msgbuf, size_t bufsize, int toplevel,
|
|
|
|
PyObject **freelist)
|
1994-09-29 06:42:55 -03:00
|
|
|
{
|
|
|
|
int level = 0;
|
|
|
|
int n = 0;
|
2005-12-10 14:50:16 -04:00
|
|
|
const char *format = *p_format;
|
1994-09-29 06:42:55 -03:00
|
|
|
int i;
|
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
int c = *format++;
|
|
|
|
if (c == '(') {
|
|
|
|
if (level == 0)
|
|
|
|
n++;
|
|
|
|
level++;
|
|
|
|
}
|
|
|
|
else if (c == ')') {
|
|
|
|
if (level == 0)
|
|
|
|
break;
|
|
|
|
level--;
|
|
|
|
}
|
|
|
|
else if (c == ':' || c == ';' || c == '\0')
|
|
|
|
break;
|
2005-12-19 02:05:18 -04:00
|
|
|
else if (level == 0 && isalpha(Py_CHARMASK(c)))
|
1994-09-29 06:42:55 -03:00
|
|
|
n++;
|
|
|
|
}
|
|
|
|
|
2008-06-09 01:58:54 -03:00
|
|
|
if (!PySequence_Check(arg) || PyString_Check(arg)) {
|
1994-09-29 06:42:55 -03:00
|
|
|
levels[0] = 0;
|
2001-11-28 18:14:37 -04:00
|
|
|
PyOS_snprintf(msgbuf, bufsize,
|
2001-11-28 16:29:22 -04:00
|
|
|
toplevel ? "expected %d arguments, not %.50s" :
|
|
|
|
"must be %d-item sequence, not %.50s",
|
|
|
|
n,
|
|
|
|
arg == Py_None ? "None" : arg->ob_type->tp_name);
|
1994-09-29 06:42:55 -03:00
|
|
|
return msgbuf;
|
|
|
|
}
|
|
|
|
|
2000-07-12 10:05:33 -03:00
|
|
|
if ((i = PySequence_Size(arg)) != n) {
|
1994-09-29 06:42:55 -03:00
|
|
|
levels[0] = 0;
|
2001-11-28 18:14:37 -04:00
|
|
|
PyOS_snprintf(msgbuf, bufsize,
|
2001-11-28 16:29:22 -04:00
|
|
|
toplevel ? "expected %d arguments, not %d" :
|
|
|
|
"must be sequence of length %d, not %d",
|
|
|
|
n, i);
|
1994-09-29 06:42:55 -03:00
|
|
|
return msgbuf;
|
|
|
|
}
|
2001-01-15 18:14:16 -04:00
|
|
|
|
1994-09-29 06:42:55 -03:00
|
|
|
format = *p_format;
|
|
|
|
for (i = 0; i < n; i++) {
|
|
|
|
char *msg;
|
1999-02-17 19:16:43 -04:00
|
|
|
PyObject *item;
|
|
|
|
item = PySequence_GetItem(arg, i);
|
2006-07-26 05:03:10 -03:00
|
|
|
if (item == NULL) {
|
|
|
|
PyErr_Clear();
|
|
|
|
levels[0] = i+1;
|
|
|
|
levels[1] = 0;
|
|
|
|
strncpy(msgbuf, "is not retrievable", bufsize);
|
|
|
|
return msgbuf;
|
|
|
|
}
|
2006-02-15 13:27:45 -04:00
|
|
|
msg = convertitem(item, &format, p_va, flags, levels+1,
|
|
|
|
msgbuf, bufsize, freelist);
|
1999-02-17 19:16:43 -04:00
|
|
|
/* PySequence_GetItem calls tp->sq_item, which INCREFs */
|
|
|
|
Py_XDECREF(item);
|
1994-09-29 06:42:55 -03:00
|
|
|
if (msg != NULL) {
|
|
|
|
levels[0] = i+1;
|
|
|
|
return msg;
|
|
|
|
}
|
|
|
|
}
|
2001-01-15 18:14:16 -04:00
|
|
|
|
1994-09-29 06:42:55 -03:00
|
|
|
*p_format = format;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Convert a single item. */
|
|
|
|
|
|
|
|
static char *
|
2006-02-15 13:27:45 -04:00
|
|
|
convertitem(PyObject *arg, const char **p_format, va_list *p_va, int flags,
|
|
|
|
int *levels, char *msgbuf, size_t bufsize, PyObject **freelist)
|
1994-09-29 06:42:55 -03:00
|
|
|
{
|
|
|
|
char *msg;
|
2005-12-10 14:50:16 -04:00
|
|
|
const char *format = *p_format;
|
1994-09-29 06:42:55 -03:00
|
|
|
|
|
|
|
if (*format == '(' /* ')' */) {
|
|
|
|
format++;
|
2006-02-15 13:27:45 -04:00
|
|
|
msg = converttuple(arg, &format, p_va, flags, levels, msgbuf,
|
2003-05-03 07:00:22 -03:00
|
|
|
bufsize, 0, freelist);
|
1994-09-29 06:42:55 -03:00
|
|
|
if (msg == NULL)
|
|
|
|
format++;
|
|
|
|
}
|
|
|
|
else {
|
2006-02-15 13:27:45 -04:00
|
|
|
msg = convertsimple(arg, &format, p_va, flags,
|
|
|
|
msgbuf, bufsize, freelist);
|
1994-09-29 06:42:55 -03:00
|
|
|
if (msg != NULL)
|
|
|
|
levels[0] = 0;
|
|
|
|
}
|
|
|
|
if (msg == NULL)
|
|
|
|
*p_format = format;
|
|
|
|
return msg;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-05-29 14:37:05 -03:00
|
|
|
|
|
|
|
#define UNICODE_DEFAULT_ENCODING(arg) \
|
|
|
|
_PyUnicode_AsDefaultEncodedString(arg, NULL)
|
|
|
|
|
|
|
|
/* Format an error message generated by convertsimple(). */
|
1994-09-29 06:42:55 -03:00
|
|
|
|
|
|
|
static char *
|
2005-12-10 14:50:16 -04:00
|
|
|
converterr(const char *expected, PyObject *arg, char *msgbuf, size_t bufsize)
|
1994-09-29 06:42:55 -03:00
|
|
|
{
|
2001-09-09 22:54:43 -03:00
|
|
|
assert(expected != NULL);
|
|
|
|
assert(arg != NULL);
|
2001-11-28 18:14:37 -04:00
|
|
|
PyOS_snprintf(msgbuf, bufsize,
|
|
|
|
"must be %.50s, not %.50s", expected,
|
|
|
|
arg == Py_None ? "None" : arg->ob_type->tp_name);
|
2001-05-29 14:37:05 -03:00
|
|
|
return msgbuf;
|
1994-09-29 06:42:55 -03:00
|
|
|
}
|
|
|
|
|
2001-05-29 14:37:05 -03:00
|
|
|
#define CONV_UNICODE "(unicode conversion error)"
|
2000-04-27 17:13:18 -03:00
|
|
|
|
2003-02-04 16:59:40 -04:00
|
|
|
/* explicitly check for float arguments when integers are expected. For now
|
|
|
|
* signal a warning. Returns true if an exception was raised. */
|
|
|
|
static int
|
|
|
|
float_argument_error(PyObject *arg)
|
|
|
|
{
|
|
|
|
if (PyFloat_Check(arg) &&
|
|
|
|
PyErr_Warn(PyExc_DeprecationWarning,
|
|
|
|
"integer argument expected, got float" ))
|
|
|
|
return 1;
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1994-09-29 06:42:55 -03:00
|
|
|
/* Convert a non-tuple argument. Return NULL if conversion went OK,
|
2001-05-29 14:37:05 -03:00
|
|
|
or a string with a message describing the failure. The message is
|
|
|
|
formatted as "must be <desired type>, not <actual type>".
|
1994-09-29 06:42:55 -03:00
|
|
|
When failing, an exception may or may not have been raised.
|
2005-09-14 16:29:53 -03:00
|
|
|
Don't call if a tuple is expected.
|
|
|
|
|
|
|
|
When you add new format codes, please don't forget poor skipitem() below.
|
2001-05-29 14:37:05 -03:00
|
|
|
*/
|
1994-09-29 06:42:55 -03:00
|
|
|
|
|
|
|
static char *
|
2006-02-15 13:27:45 -04:00
|
|
|
convertsimple(PyObject *arg, const char **p_format, va_list *p_va, int flags,
|
2005-12-10 14:50:16 -04:00
|
|
|
char *msgbuf, size_t bufsize, PyObject **freelist)
|
1994-09-29 06:42:55 -03:00
|
|
|
{
|
2006-02-15 13:27:45 -04:00
|
|
|
/* For # codes */
|
|
|
|
#define FETCH_SIZE int *q=NULL;Py_ssize_t *q2=NULL;\
|
|
|
|
if (flags & FLAG_SIZE_T) q2=va_arg(*p_va, Py_ssize_t*); \
|
|
|
|
else q=va_arg(*p_va, int*);
|
|
|
|
#define STORE_SIZE(s) if (flags & FLAG_SIZE_T) *q2=s; else *q=s;
|
|
|
|
#define BUFFER_LEN ((flags & FLAG_SIZE_T) ? *q2:*q)
|
|
|
|
|
2005-12-10 14:50:16 -04:00
|
|
|
const char *format = *p_format;
|
1994-09-29 06:42:55 -03:00
|
|
|
char c = *format++;
|
2002-11-21 16:23:11 -04:00
|
|
|
#ifdef Py_USING_UNICODE
|
2001-09-09 22:54:43 -03:00
|
|
|
PyObject *uarg;
|
2002-11-21 16:23:11 -04:00
|
|
|
#endif
|
1994-09-29 06:42:55 -03:00
|
|
|
|
|
|
|
switch (c) {
|
|
|
|
|
2001-05-29 14:37:05 -03:00
|
|
|
case 'b': { /* unsigned byte -- very short int */
|
|
|
|
char *p = va_arg(*p_va, char *);
|
2003-01-24 18:15:21 -04:00
|
|
|
long ival;
|
2003-02-04 16:59:40 -04:00
|
|
|
if (float_argument_error(arg))
|
2004-08-07 14:57:16 -03:00
|
|
|
return converterr("integer<b>", arg, msgbuf, bufsize);
|
2003-01-24 18:15:21 -04:00
|
|
|
ival = PyInt_AsLong(arg);
|
2001-05-29 14:37:05 -03:00
|
|
|
if (ival == -1 && PyErr_Occurred())
|
2001-11-28 18:14:37 -04:00
|
|
|
return converterr("integer<b>", arg, msgbuf, bufsize);
|
2001-05-29 14:37:05 -03:00
|
|
|
else if (ival < 0) {
|
|
|
|
PyErr_SetString(PyExc_OverflowError,
|
|
|
|
"unsigned byte integer is less than minimum");
|
2001-11-28 18:14:37 -04:00
|
|
|
return converterr("integer<b>", arg, msgbuf, bufsize);
|
2001-05-29 14:37:05 -03:00
|
|
|
}
|
|
|
|
else if (ival > UCHAR_MAX) {
|
|
|
|
PyErr_SetString(PyExc_OverflowError,
|
|
|
|
"unsigned byte integer is greater than maximum");
|
2001-11-28 18:14:37 -04:00
|
|
|
return converterr("integer<b>", arg, msgbuf, bufsize);
|
2001-05-29 14:37:05 -03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
*p = (unsigned char) ival;
|
|
|
|
break;
|
|
|
|
}
|
1994-09-29 06:42:55 -03:00
|
|
|
|
2001-05-29 14:37:05 -03:00
|
|
|
case 'B': {/* byte sized bitfield - both signed and unsigned
|
|
|
|
values allowed */
|
|
|
|
char *p = va_arg(*p_va, char *);
|
2003-01-24 18:15:21 -04:00
|
|
|
long ival;
|
2003-02-04 16:59:40 -04:00
|
|
|
if (float_argument_error(arg))
|
2004-08-07 14:57:16 -03:00
|
|
|
return converterr("integer<B>", arg, msgbuf, bufsize);
|
2003-04-17 15:55:45 -03:00
|
|
|
ival = PyInt_AsUnsignedLongMask(arg);
|
2001-05-29 14:37:05 -03:00
|
|
|
if (ival == -1 && PyErr_Occurred())
|
2001-11-28 18:14:37 -04:00
|
|
|
return converterr("integer<B>", arg, msgbuf, bufsize);
|
2001-05-29 14:37:05 -03:00
|
|
|
else
|
|
|
|
*p = (unsigned char) ival;
|
|
|
|
break;
|
|
|
|
}
|
2000-08-05 18:29:58 -03:00
|
|
|
|
2003-04-17 21:12:30 -03:00
|
|
|
case 'h': {/* signed short int */
|
2001-05-29 14:37:05 -03:00
|
|
|
short *p = va_arg(*p_va, short *);
|
2003-01-24 18:15:21 -04:00
|
|
|
long ival;
|
2003-02-04 16:59:40 -04:00
|
|
|
if (float_argument_error(arg))
|
2004-08-07 14:57:16 -03:00
|
|
|
return converterr("integer<h>", arg, msgbuf, bufsize);
|
2003-01-24 18:15:21 -04:00
|
|
|
ival = PyInt_AsLong(arg);
|
2001-05-29 14:37:05 -03:00
|
|
|
if (ival == -1 && PyErr_Occurred())
|
2001-11-28 18:14:37 -04:00
|
|
|
return converterr("integer<h>", arg, msgbuf, bufsize);
|
2003-04-17 21:12:30 -03:00
|
|
|
else if (ival < SHRT_MIN) {
|
2001-05-29 14:37:05 -03:00
|
|
|
PyErr_SetString(PyExc_OverflowError,
|
2003-04-17 21:12:30 -03:00
|
|
|
"signed short integer is less than minimum");
|
2001-11-28 18:14:37 -04:00
|
|
|
return converterr("integer<h>", arg, msgbuf, bufsize);
|
2001-05-29 14:37:05 -03:00
|
|
|
}
|
2003-04-17 21:12:30 -03:00
|
|
|
else if (ival > SHRT_MAX) {
|
2001-05-29 14:37:05 -03:00
|
|
|
PyErr_SetString(PyExc_OverflowError,
|
2003-04-17 21:12:30 -03:00
|
|
|
"signed short integer is greater than maximum");
|
2001-11-28 18:14:37 -04:00
|
|
|
return converterr("integer<h>", arg, msgbuf, bufsize);
|
2001-05-29 14:37:05 -03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
*p = (short) ival;
|
|
|
|
break;
|
|
|
|
}
|
1994-09-29 06:42:55 -03:00
|
|
|
|
2001-05-29 14:37:05 -03:00
|
|
|
case 'H': { /* short int sized bitfield, both signed and
|
|
|
|
unsigned allowed */
|
|
|
|
unsigned short *p = va_arg(*p_va, unsigned short *);
|
2003-01-24 18:15:21 -04:00
|
|
|
long ival;
|
2003-02-04 16:59:40 -04:00
|
|
|
if (float_argument_error(arg))
|
2004-08-07 14:57:16 -03:00
|
|
|
return converterr("integer<H>", arg, msgbuf, bufsize);
|
2003-04-17 15:55:45 -03:00
|
|
|
ival = PyInt_AsUnsignedLongMask(arg);
|
2001-05-29 14:37:05 -03:00
|
|
|
if (ival == -1 && PyErr_Occurred())
|
2001-11-28 18:14:37 -04:00
|
|
|
return converterr("integer<H>", arg, msgbuf, bufsize);
|
2001-05-29 14:37:05 -03:00
|
|
|
else
|
|
|
|
*p = (unsigned short) ival;
|
|
|
|
break;
|
|
|
|
}
|
2006-02-15 13:27:45 -04:00
|
|
|
|
2001-05-29 14:37:05 -03:00
|
|
|
case 'i': {/* signed int */
|
|
|
|
int *p = va_arg(*p_va, int *);
|
2003-01-24 18:15:21 -04:00
|
|
|
long ival;
|
2003-02-04 16:59:40 -04:00
|
|
|
if (float_argument_error(arg))
|
2004-08-07 14:57:16 -03:00
|
|
|
return converterr("integer<i>", arg, msgbuf, bufsize);
|
2003-01-24 18:15:21 -04:00
|
|
|
ival = PyInt_AsLong(arg);
|
2001-05-29 14:37:05 -03:00
|
|
|
if (ival == -1 && PyErr_Occurred())
|
2001-11-28 18:14:37 -04:00
|
|
|
return converterr("integer<i>", arg, msgbuf, bufsize);
|
2006-06-08 10:31:07 -03:00
|
|
|
else if (ival > INT_MAX) {
|
2001-05-29 14:37:05 -03:00
|
|
|
PyErr_SetString(PyExc_OverflowError,
|
|
|
|
"signed integer is greater than maximum");
|
2001-11-28 18:14:37 -04:00
|
|
|
return converterr("integer<i>", arg, msgbuf, bufsize);
|
2001-05-29 14:37:05 -03:00
|
|
|
}
|
2006-06-08 10:31:07 -03:00
|
|
|
else if (ival < INT_MIN) {
|
2001-05-29 14:37:05 -03:00
|
|
|
PyErr_SetString(PyExc_OverflowError,
|
|
|
|
"signed integer is less than minimum");
|
2001-11-28 18:14:37 -04:00
|
|
|
return converterr("integer<i>", arg, msgbuf, bufsize);
|
2001-05-29 14:37:05 -03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
*p = ival;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2003-04-17 15:55:45 -03:00
|
|
|
case 'I': { /* int sized bitfield, both signed and
|
|
|
|
unsigned allowed */
|
|
|
|
unsigned int *p = va_arg(*p_va, unsigned int *);
|
|
|
|
unsigned int ival;
|
|
|
|
if (float_argument_error(arg))
|
2004-08-07 14:57:16 -03:00
|
|
|
return converterr("integer<I>", arg, msgbuf, bufsize);
|
2006-04-17 21:57:15 -03:00
|
|
|
ival = (unsigned int)PyInt_AsUnsignedLongMask(arg);
|
|
|
|
if (ival == (unsigned int)-1 && PyErr_Occurred())
|
2003-04-17 15:55:45 -03:00
|
|
|
return converterr("integer<I>", arg, msgbuf, bufsize);
|
|
|
|
else
|
|
|
|
*p = ival;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2006-02-15 13:27:45 -04:00
|
|
|
case 'n': /* Py_ssize_t */
|
|
|
|
#if SIZEOF_SIZE_T != SIZEOF_LONG
|
|
|
|
{
|
|
|
|
Py_ssize_t *p = va_arg(*p_va, Py_ssize_t *);
|
|
|
|
Py_ssize_t ival;
|
|
|
|
if (float_argument_error(arg))
|
2006-04-13 04:59:30 -03:00
|
|
|
return converterr("integer<n>", arg, msgbuf, bufsize);
|
2006-02-15 13:27:45 -04:00
|
|
|
ival = PyInt_AsSsize_t(arg);
|
|
|
|
if (ival == -1 && PyErr_Occurred())
|
2006-04-13 04:59:30 -03:00
|
|
|
return converterr("integer<n>", arg, msgbuf, bufsize);
|
2006-02-15 13:27:45 -04:00
|
|
|
*p = ival;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
/* Fall through from 'n' to 'l' if Py_ssize_t is int */
|
2001-05-29 14:37:05 -03:00
|
|
|
case 'l': {/* long int */
|
|
|
|
long *p = va_arg(*p_va, long *);
|
2003-01-24 18:15:21 -04:00
|
|
|
long ival;
|
2003-02-04 16:59:40 -04:00
|
|
|
if (float_argument_error(arg))
|
2004-08-07 14:57:16 -03:00
|
|
|
return converterr("integer<l>", arg, msgbuf, bufsize);
|
2003-01-24 18:15:21 -04:00
|
|
|
ival = PyInt_AsLong(arg);
|
2001-05-29 14:37:05 -03:00
|
|
|
if (ival == -1 && PyErr_Occurred())
|
2001-11-28 18:14:37 -04:00
|
|
|
return converterr("integer<l>", arg, msgbuf, bufsize);
|
2001-05-29 14:37:05 -03:00
|
|
|
else
|
|
|
|
*p = ival;
|
|
|
|
break;
|
|
|
|
}
|
2003-04-17 15:55:45 -03:00
|
|
|
|
|
|
|
case 'k': { /* long sized bitfield */
|
|
|
|
unsigned long *p = va_arg(*p_va, unsigned long *);
|
|
|
|
unsigned long ival;
|
|
|
|
if (PyInt_Check(arg))
|
|
|
|
ival = PyInt_AsUnsignedLongMask(arg);
|
|
|
|
else if (PyLong_Check(arg))
|
|
|
|
ival = PyLong_AsUnsignedLongMask(arg);
|
|
|
|
else
|
|
|
|
return converterr("integer<k>", arg, msgbuf, bufsize);
|
|
|
|
*p = ival;
|
|
|
|
break;
|
|
|
|
}
|
1994-09-29 06:42:55 -03:00
|
|
|
|
1999-01-25 17:48:56 -04:00
|
|
|
#ifdef HAVE_LONG_LONG
|
2003-03-29 06:06:18 -04:00
|
|
|
case 'L': {/* PY_LONG_LONG */
|
|
|
|
PY_LONG_LONG *p = va_arg( *p_va, PY_LONG_LONG * );
|
|
|
|
PY_LONG_LONG ival = PyLong_AsLongLong( arg );
|
2008-02-26 01:23:51 -04:00
|
|
|
if (ival == (PY_LONG_LONG)-1 && PyErr_Occurred() ) {
|
2001-11-28 18:14:37 -04:00
|
|
|
return converterr("long<L>", arg, msgbuf, bufsize);
|
2001-05-29 14:37:05 -03:00
|
|
|
} else {
|
|
|
|
*p = ival;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2003-04-17 15:55:45 -03:00
|
|
|
|
|
|
|
case 'K': { /* long long sized bitfield */
|
|
|
|
unsigned PY_LONG_LONG *p = va_arg(*p_va, unsigned PY_LONG_LONG *);
|
|
|
|
unsigned PY_LONG_LONG ival;
|
|
|
|
if (PyInt_Check(arg))
|
|
|
|
ival = PyInt_AsUnsignedLongMask(arg);
|
|
|
|
else if (PyLong_Check(arg))
|
|
|
|
ival = PyLong_AsUnsignedLongLongMask(arg);
|
|
|
|
else
|
|
|
|
return converterr("integer<K>", arg, msgbuf, bufsize);
|
|
|
|
*p = ival;
|
|
|
|
break;
|
|
|
|
}
|
1998-08-04 19:46:29 -03:00
|
|
|
#endif
|
|
|
|
|
2001-05-29 14:37:05 -03:00
|
|
|
case 'f': {/* float */
|
|
|
|
float *p = va_arg(*p_va, float *);
|
|
|
|
double dval = PyFloat_AsDouble(arg);
|
|
|
|
if (PyErr_Occurred())
|
2001-11-28 18:14:37 -04:00
|
|
|
return converterr("float<f>", arg, msgbuf, bufsize);
|
2001-05-29 14:37:05 -03:00
|
|
|
else
|
|
|
|
*p = (float) dval;
|
|
|
|
break;
|
|
|
|
}
|
1994-09-29 06:42:55 -03:00
|
|
|
|
2001-05-29 14:37:05 -03:00
|
|
|
case 'd': {/* double */
|
|
|
|
double *p = va_arg(*p_va, double *);
|
|
|
|
double dval = PyFloat_AsDouble(arg);
|
|
|
|
if (PyErr_Occurred())
|
2001-11-28 18:14:37 -04:00
|
|
|
return converterr("float<d>", arg, msgbuf, bufsize);
|
2001-05-29 14:37:05 -03:00
|
|
|
else
|
|
|
|
*p = dval;
|
|
|
|
break;
|
|
|
|
}
|
1994-09-29 06:42:55 -03:00
|
|
|
|
1996-07-20 23:27:43 -03:00
|
|
|
#ifndef WITHOUT_COMPLEX
|
2001-05-29 14:37:05 -03:00
|
|
|
case 'D': {/* complex double */
|
|
|
|
Py_complex *p = va_arg(*p_va, Py_complex *);
|
|
|
|
Py_complex cval;
|
|
|
|
cval = PyComplex_AsCComplex(arg);
|
|
|
|
if (PyErr_Occurred())
|
2001-11-28 18:14:37 -04:00
|
|
|
return converterr("complex<D>", arg, msgbuf, bufsize);
|
2001-05-29 14:37:05 -03:00
|
|
|
else
|
|
|
|
*p = cval;
|
|
|
|
break;
|
|
|
|
}
|
1996-07-20 23:27:43 -03:00
|
|
|
#endif /* WITHOUT_COMPLEX */
|
1996-01-11 21:09:56 -04:00
|
|
|
|
2001-05-29 14:37:05 -03:00
|
|
|
case 'c': {/* char */
|
|
|
|
char *p = va_arg(*p_va, char *);
|
2008-06-09 01:58:54 -03:00
|
|
|
if (PyString_Check(arg) && PyString_Size(arg) == 1)
|
|
|
|
*p = PyString_AS_STRING(arg)[0];
|
2001-05-29 14:37:05 -03:00
|
|
|
else
|
2001-11-28 18:14:37 -04:00
|
|
|
return converterr("char", arg, msgbuf, bufsize);
|
2001-05-29 14:37:05 -03:00
|
|
|
break;
|
|
|
|
}
|
1994-09-29 06:42:55 -03:00
|
|
|
|
2001-05-29 14:37:05 -03:00
|
|
|
case 's': {/* string */
|
|
|
|
if (*format == '#') {
|
|
|
|
void **p = (void **)va_arg(*p_va, char **);
|
2006-02-15 13:27:45 -04:00
|
|
|
FETCH_SIZE;
|
1997-05-05 19:15:02 -03:00
|
|
|
|
2008-06-09 01:58:54 -03:00
|
|
|
if (PyString_Check(arg)) {
|
|
|
|
*p = PyString_AS_STRING(arg);
|
|
|
|
STORE_SIZE(PyString_GET_SIZE(arg));
|
1994-09-29 06:42:55 -03:00
|
|
|
}
|
2001-08-17 15:39:25 -03:00
|
|
|
#ifdef Py_USING_UNICODE
|
2001-05-29 14:37:05 -03:00
|
|
|
else if (PyUnicode_Check(arg)) {
|
2001-09-09 22:54:43 -03:00
|
|
|
uarg = UNICODE_DEFAULT_ENCODING(arg);
|
|
|
|
if (uarg == NULL)
|
2001-05-29 14:37:05 -03:00
|
|
|
return converterr(CONV_UNICODE,
|
2001-11-28 18:14:37 -04:00
|
|
|
arg, msgbuf, bufsize);
|
2008-06-09 01:58:54 -03:00
|
|
|
*p = PyString_AS_STRING(uarg);
|
|
|
|
STORE_SIZE(PyString_GET_SIZE(uarg));
|
2001-05-29 14:37:05 -03:00
|
|
|
}
|
2001-08-17 15:39:25 -03:00
|
|
|
#endif
|
2001-05-29 14:37:05 -03:00
|
|
|
else { /* any buffer-like object */
|
|
|
|
char *buf;
|
2006-02-15 13:27:45 -04:00
|
|
|
Py_ssize_t count = convertbuffer(arg, p, &buf);
|
2001-05-29 14:37:05 -03:00
|
|
|
if (count < 0)
|
2001-11-28 18:14:37 -04:00
|
|
|
return converterr(buf, arg, msgbuf, bufsize);
|
2006-02-15 13:27:45 -04:00
|
|
|
STORE_SIZE(count);
|
2001-05-29 14:37:05 -03:00
|
|
|
}
|
|
|
|
format++;
|
|
|
|
} else {
|
|
|
|
char **p = va_arg(*p_va, char **);
|
|
|
|
|
2008-06-09 01:58:54 -03:00
|
|
|
if (PyString_Check(arg))
|
|
|
|
*p = PyString_AS_STRING(arg);
|
2001-08-17 15:39:25 -03:00
|
|
|
#ifdef Py_USING_UNICODE
|
2001-05-29 14:37:05 -03:00
|
|
|
else if (PyUnicode_Check(arg)) {
|
2001-09-09 22:54:43 -03:00
|
|
|
uarg = UNICODE_DEFAULT_ENCODING(arg);
|
|
|
|
if (uarg == NULL)
|
2001-05-29 14:37:05 -03:00
|
|
|
return converterr(CONV_UNICODE,
|
2001-11-28 18:14:37 -04:00
|
|
|
arg, msgbuf, bufsize);
|
2008-06-09 01:58:54 -03:00
|
|
|
*p = PyString_AS_STRING(uarg);
|
2001-05-29 14:37:05 -03:00
|
|
|
}
|
2001-08-17 15:39:25 -03:00
|
|
|
#endif
|
2001-05-29 14:37:05 -03:00
|
|
|
else
|
2001-11-28 18:14:37 -04:00
|
|
|
return converterr("string", arg, msgbuf, bufsize);
|
2008-06-09 01:58:54 -03:00
|
|
|
if ((Py_ssize_t)strlen(*p) != PyString_Size(arg))
|
2001-05-29 14:37:05 -03:00
|
|
|
return converterr("string without null bytes",
|
2001-11-28 18:14:37 -04:00
|
|
|
arg, msgbuf, bufsize);
|
1994-09-29 06:42:55 -03:00
|
|
|
}
|
2001-05-29 14:37:05 -03:00
|
|
|
break;
|
|
|
|
}
|
1997-05-05 19:15:02 -03:00
|
|
|
|
2001-05-29 14:37:05 -03:00
|
|
|
case 'z': {/* string, may be NULL (None) */
|
|
|
|
if (*format == '#') { /* any buffer-like object */
|
|
|
|
void **p = (void **)va_arg(*p_va, char **);
|
2006-02-15 13:27:45 -04:00
|
|
|
FETCH_SIZE;
|
2001-05-29 14:37:05 -03:00
|
|
|
|
|
|
|
if (arg == Py_None) {
|
|
|
|
*p = 0;
|
2006-02-15 13:27:45 -04:00
|
|
|
STORE_SIZE(0);
|
2001-05-29 14:37:05 -03:00
|
|
|
}
|
2008-06-09 01:58:54 -03:00
|
|
|
else if (PyString_Check(arg)) {
|
|
|
|
*p = PyString_AS_STRING(arg);
|
|
|
|
STORE_SIZE(PyString_GET_SIZE(arg));
|
2001-05-29 14:37:05 -03:00
|
|
|
}
|
2001-08-17 15:39:25 -03:00
|
|
|
#ifdef Py_USING_UNICODE
|
2001-05-29 14:37:05 -03:00
|
|
|
else if (PyUnicode_Check(arg)) {
|
2001-09-09 22:54:43 -03:00
|
|
|
uarg = UNICODE_DEFAULT_ENCODING(arg);
|
|
|
|
if (uarg == NULL)
|
2001-05-29 14:37:05 -03:00
|
|
|
return converterr(CONV_UNICODE,
|
2001-11-28 18:14:37 -04:00
|
|
|
arg, msgbuf, bufsize);
|
2008-06-09 01:58:54 -03:00
|
|
|
*p = PyString_AS_STRING(uarg);
|
|
|
|
STORE_SIZE(PyString_GET_SIZE(uarg));
|
2001-05-29 14:37:05 -03:00
|
|
|
}
|
2001-08-17 15:39:25 -03:00
|
|
|
#endif
|
2001-05-29 14:37:05 -03:00
|
|
|
else { /* any buffer-like object */
|
|
|
|
char *buf;
|
2006-02-15 13:27:45 -04:00
|
|
|
Py_ssize_t count = convertbuffer(arg, p, &buf);
|
2001-05-29 14:37:05 -03:00
|
|
|
if (count < 0)
|
2001-11-28 18:14:37 -04:00
|
|
|
return converterr(buf, arg, msgbuf, bufsize);
|
2006-02-15 13:27:45 -04:00
|
|
|
STORE_SIZE(count);
|
2001-05-29 14:37:05 -03:00
|
|
|
}
|
|
|
|
format++;
|
|
|
|
} else {
|
|
|
|
char **p = va_arg(*p_va, char **);
|
1997-05-05 19:15:02 -03:00
|
|
|
|
2001-05-29 14:37:05 -03:00
|
|
|
if (arg == Py_None)
|
|
|
|
*p = 0;
|
2008-06-09 01:58:54 -03:00
|
|
|
else if (PyString_Check(arg))
|
|
|
|
*p = PyString_AS_STRING(arg);
|
2001-08-17 15:39:25 -03:00
|
|
|
#ifdef Py_USING_UNICODE
|
2001-05-29 14:37:05 -03:00
|
|
|
else if (PyUnicode_Check(arg)) {
|
2001-09-09 22:54:43 -03:00
|
|
|
uarg = UNICODE_DEFAULT_ENCODING(arg);
|
|
|
|
if (uarg == NULL)
|
2001-05-29 14:37:05 -03:00
|
|
|
return converterr(CONV_UNICODE,
|
2001-11-28 18:14:37 -04:00
|
|
|
arg, msgbuf, bufsize);
|
2008-06-09 01:58:54 -03:00
|
|
|
*p = PyString_AS_STRING(uarg);
|
2001-05-29 14:37:05 -03:00
|
|
|
}
|
2001-08-17 15:39:25 -03:00
|
|
|
#endif
|
2001-05-29 14:37:05 -03:00
|
|
|
else
|
|
|
|
return converterr("string or None",
|
2001-11-28 18:14:37 -04:00
|
|
|
arg, msgbuf, bufsize);
|
2001-05-29 14:37:05 -03:00
|
|
|
if (*format == '#') {
|
2006-02-15 13:27:45 -04:00
|
|
|
FETCH_SIZE;
|
2006-03-01 17:31:21 -04:00
|
|
|
assert(0); /* XXX redundant with if-case */
|
2000-05-08 11:02:41 -03:00
|
|
|
if (arg == Py_None)
|
2001-05-29 14:37:05 -03:00
|
|
|
*q = 0;
|
1997-05-05 19:15:02 -03:00
|
|
|
else
|
2008-06-09 01:58:54 -03:00
|
|
|
*q = PyString_Size(arg);
|
2001-05-29 14:37:05 -03:00
|
|
|
format++;
|
1994-09-29 06:42:55 -03:00
|
|
|
}
|
2001-05-29 14:37:05 -03:00
|
|
|
else if (*p != NULL &&
|
2008-06-09 01:58:54 -03:00
|
|
|
(Py_ssize_t)strlen(*p) != PyString_Size(arg))
|
2001-05-29 14:37:05 -03:00
|
|
|
return converterr(
|
|
|
|
"string without null bytes or None",
|
2001-11-28 18:14:37 -04:00
|
|
|
arg, msgbuf, bufsize);
|
1994-09-29 06:42:55 -03:00
|
|
|
}
|
2001-05-29 14:37:05 -03:00
|
|
|
break;
|
|
|
|
}
|
1994-09-29 06:42:55 -03:00
|
|
|
|
2001-05-29 14:37:05 -03:00
|
|
|
case 'e': {/* encoded string */
|
|
|
|
char **buffer;
|
|
|
|
const char *encoding;
|
2001-08-17 15:39:25 -03:00
|
|
|
PyObject *s;
|
2007-11-30 16:51:40 -04:00
|
|
|
Py_ssize_t size;
|
|
|
|
int recode_strings;
|
2000-03-24 18:14:19 -04:00
|
|
|
|
2001-05-29 14:37:05 -03:00
|
|
|
/* Get 'e' parameter: the encoding name */
|
|
|
|
encoding = (const char *)va_arg(*p_va, const char *);
|
2001-08-17 15:39:25 -03:00
|
|
|
#ifdef Py_USING_UNICODE
|
2001-05-29 14:37:05 -03:00
|
|
|
if (encoding == NULL)
|
|
|
|
encoding = PyUnicode_GetDefaultEncoding();
|
2001-08-17 15:39:25 -03:00
|
|
|
#endif
|
2000-03-24 18:14:19 -04:00
|
|
|
|
2001-05-29 14:37:05 -03:00
|
|
|
/* Get output buffer parameter:
|
|
|
|
's' (recode all objects via Unicode) or
|
|
|
|
't' (only recode non-string objects)
|
|
|
|
*/
|
|
|
|
if (*format == 's')
|
|
|
|
recode_strings = 1;
|
|
|
|
else if (*format == 't')
|
|
|
|
recode_strings = 0;
|
|
|
|
else
|
|
|
|
return converterr(
|
|
|
|
"(unknown parser marker combination)",
|
2001-11-28 18:14:37 -04:00
|
|
|
arg, msgbuf, bufsize);
|
2001-05-29 14:37:05 -03:00
|
|
|
buffer = (char **)va_arg(*p_va, char **);
|
|
|
|
format++;
|
|
|
|
if (buffer == NULL)
|
|
|
|
return converterr("(buffer is NULL)",
|
2001-11-28 18:14:37 -04:00
|
|
|
arg, msgbuf, bufsize);
|
2000-03-24 18:14:19 -04:00
|
|
|
|
2001-05-29 14:37:05 -03:00
|
|
|
/* Encode object */
|
2008-06-09 01:58:54 -03:00
|
|
|
if (!recode_strings && PyString_Check(arg)) {
|
2001-05-29 14:37:05 -03:00
|
|
|
s = arg;
|
|
|
|
Py_INCREF(s);
|
|
|
|
}
|
|
|
|
else {
|
2001-08-17 15:39:25 -03:00
|
|
|
#ifdef Py_USING_UNICODE
|
|
|
|
PyObject *u;
|
|
|
|
|
2000-03-24 18:14:19 -04:00
|
|
|
/* Convert object to Unicode */
|
|
|
|
u = PyUnicode_FromObject(arg);
|
|
|
|
if (u == NULL)
|
2001-05-29 14:37:05 -03:00
|
|
|
return converterr(
|
|
|
|
"string or unicode or text buffer",
|
2001-11-28 18:14:37 -04:00
|
|
|
arg, msgbuf, bufsize);
|
2000-03-24 18:14:19 -04:00
|
|
|
|
|
|
|
/* Encode object; use default error handling */
|
|
|
|
s = PyUnicode_AsEncodedString(u,
|
|
|
|
encoding,
|
|
|
|
NULL);
|
|
|
|
Py_DECREF(u);
|
|
|
|
if (s == NULL)
|
2001-05-29 14:37:05 -03:00
|
|
|
return converterr("(encoding failed)",
|
2001-11-28 18:14:37 -04:00
|
|
|
arg, msgbuf, bufsize);
|
2008-06-09 01:58:54 -03:00
|
|
|
if (!PyString_Check(s)) {
|
2000-03-24 18:14:19 -04:00
|
|
|
Py_DECREF(s);
|
2001-05-29 14:37:05 -03:00
|
|
|
return converterr(
|
|
|
|
"(encoder failed to return a string)",
|
2001-11-28 18:14:37 -04:00
|
|
|
arg, msgbuf, bufsize);
|
2000-03-24 18:14:19 -04:00
|
|
|
}
|
2001-08-17 15:39:25 -03:00
|
|
|
#else
|
2001-11-28 18:14:37 -04:00
|
|
|
return converterr("string<e>", arg, msgbuf, bufsize);
|
2001-08-17 15:39:25 -03:00
|
|
|
#endif
|
2001-05-29 14:37:05 -03:00
|
|
|
}
|
2008-06-09 01:58:54 -03:00
|
|
|
size = PyString_GET_SIZE(s);
|
2001-05-29 14:37:05 -03:00
|
|
|
|
|
|
|
/* Write output; output is guaranteed to be 0-terminated */
|
|
|
|
if (*format == '#') {
|
|
|
|
/* Using buffer length parameter '#':
|
|
|
|
|
|
|
|
- if *buffer is NULL, a new buffer of the
|
|
|
|
needed size is allocated and the data
|
|
|
|
copied into it; *buffer is updated to point
|
|
|
|
to the new buffer; the caller is
|
|
|
|
responsible for PyMem_Free()ing it after
|
|
|
|
usage
|
|
|
|
|
|
|
|
- if *buffer is not NULL, the data is
|
|
|
|
copied to *buffer; *buffer_len has to be
|
|
|
|
set to the size of the buffer on input;
|
|
|
|
buffer overflow is signalled with an error;
|
|
|
|
buffer has to provide enough room for the
|
|
|
|
encoded string plus the trailing 0-byte
|
|
|
|
|
|
|
|
- in both cases, *buffer_len is updated to
|
|
|
|
the size of the buffer /excluding/ the
|
|
|
|
trailing 0-byte
|
|
|
|
|
|
|
|
*/
|
2006-02-15 13:27:45 -04:00
|
|
|
FETCH_SIZE;
|
2000-03-24 18:14:19 -04:00
|
|
|
|
2001-05-29 14:37:05 -03:00
|
|
|
format++;
|
2006-02-15 13:27:45 -04:00
|
|
|
if (q == NULL && q2 == NULL) {
|
2003-05-03 07:00:22 -03:00
|
|
|
Py_DECREF(s);
|
2001-05-29 14:37:05 -03:00
|
|
|
return converterr(
|
|
|
|
"(buffer_len is NULL)",
|
2001-11-28 18:14:37 -04:00
|
|
|
arg, msgbuf, bufsize);
|
2003-05-03 07:00:22 -03:00
|
|
|
}
|
2001-05-29 14:37:05 -03:00
|
|
|
if (*buffer == NULL) {
|
|
|
|
*buffer = PyMem_NEW(char, size + 1);
|
2000-03-24 18:14:19 -04:00
|
|
|
if (*buffer == NULL) {
|
2001-05-29 14:37:05 -03:00
|
|
|
Py_DECREF(s);
|
|
|
|
return converterr(
|
|
|
|
"(memory error)",
|
2001-11-28 18:14:37 -04:00
|
|
|
arg, msgbuf, bufsize);
|
2000-03-24 18:14:19 -04:00
|
|
|
}
|
2008-02-26 01:23:51 -04:00
|
|
|
if (addcleanup(*buffer, freelist)) {
|
2003-05-03 07:00:22 -03:00
|
|
|
Py_DECREF(s);
|
|
|
|
return converterr(
|
|
|
|
"(cleanup problem)",
|
|
|
|
arg, msgbuf, bufsize);
|
|
|
|
}
|
2000-03-24 18:14:19 -04:00
|
|
|
} else {
|
2006-02-15 13:27:45 -04:00
|
|
|
if (size + 1 > BUFFER_LEN) {
|
2000-03-24 18:14:19 -04:00
|
|
|
Py_DECREF(s);
|
2001-05-29 14:37:05 -03:00
|
|
|
return converterr(
|
|
|
|
"(buffer overflow)",
|
2001-11-28 18:14:37 -04:00
|
|
|
arg, msgbuf, bufsize);
|
2000-03-24 18:14:19 -04:00
|
|
|
}
|
|
|
|
}
|
2001-05-29 14:37:05 -03:00
|
|
|
memcpy(*buffer,
|
2008-06-09 01:58:54 -03:00
|
|
|
PyString_AS_STRING(s),
|
2001-05-29 14:37:05 -03:00
|
|
|
size + 1);
|
2006-02-15 13:27:45 -04:00
|
|
|
STORE_SIZE(size);
|
2001-05-29 14:37:05 -03:00
|
|
|
} else {
|
|
|
|
/* Using a 0-terminated buffer:
|
|
|
|
|
|
|
|
- the encoded string has to be 0-terminated
|
|
|
|
for this variant to work; if it is not, an
|
|
|
|
error raised
|
|
|
|
|
|
|
|
- a new buffer of the needed size is
|
|
|
|
allocated and the data copied into it;
|
|
|
|
*buffer is updated to point to the new
|
|
|
|
buffer; the caller is responsible for
|
|
|
|
PyMem_Free()ing it after usage
|
2000-03-24 18:14:19 -04:00
|
|
|
|
2001-05-29 14:37:05 -03:00
|
|
|
*/
|
2008-06-09 01:58:54 -03:00
|
|
|
if ((Py_ssize_t)strlen(PyString_AS_STRING(s))
|
2006-10-04 09:17:45 -03:00
|
|
|
!= size) {
|
2003-05-03 07:00:22 -03:00
|
|
|
Py_DECREF(s);
|
2001-05-29 14:37:05 -03:00
|
|
|
return converterr(
|
|
|
|
"(encoded string without NULL bytes)",
|
2001-11-28 18:14:37 -04:00
|
|
|
arg, msgbuf, bufsize);
|
2003-05-03 07:00:22 -03:00
|
|
|
}
|
2001-05-29 14:37:05 -03:00
|
|
|
*buffer = PyMem_NEW(char, size + 1);
|
|
|
|
if (*buffer == NULL) {
|
|
|
|
Py_DECREF(s);
|
|
|
|
return converterr("(memory error)",
|
2001-11-28 18:14:37 -04:00
|
|
|
arg, msgbuf, bufsize);
|
2000-05-03 12:17:02 -03:00
|
|
|
}
|
2008-02-26 01:23:51 -04:00
|
|
|
if (addcleanup(*buffer, freelist)) {
|
2003-05-03 07:00:22 -03:00
|
|
|
Py_DECREF(s);
|
|
|
|
return converterr("(cleanup problem)",
|
|
|
|
arg, msgbuf, bufsize);
|
|
|
|
}
|
2001-05-29 14:37:05 -03:00
|
|
|
memcpy(*buffer,
|
2008-06-09 01:58:54 -03:00
|
|
|
PyString_AS_STRING(s),
|
2001-05-29 14:37:05 -03:00
|
|
|
size + 1);
|
2000-05-03 12:17:02 -03:00
|
|
|
}
|
2001-05-29 14:37:05 -03:00
|
|
|
Py_DECREF(s);
|
|
|
|
break;
|
|
|
|
}
|
2000-05-03 12:17:02 -03:00
|
|
|
|
2001-08-17 15:39:25 -03:00
|
|
|
#ifdef Py_USING_UNICODE
|
2001-05-29 14:37:05 -03:00
|
|
|
case 'u': {/* raw unicode buffer (Py_UNICODE *) */
|
|
|
|
if (*format == '#') { /* any buffer-like object */
|
|
|
|
void **p = (void **)va_arg(*p_va, char **);
|
2006-02-15 13:27:45 -04:00
|
|
|
FETCH_SIZE;
|
2002-01-09 12:21:27 -04:00
|
|
|
if (PyUnicode_Check(arg)) {
|
|
|
|
*p = PyUnicode_AS_UNICODE(arg);
|
2006-02-15 13:27:45 -04:00
|
|
|
STORE_SIZE(PyUnicode_GET_SIZE(arg));
|
2002-01-09 12:21:27 -04:00
|
|
|
}
|
|
|
|
else {
|
2006-04-14 02:20:28 -03:00
|
|
|
return converterr("cannot convert raw buffers",
|
|
|
|
arg, msgbuf, bufsize);
|
2002-01-09 12:21:27 -04:00
|
|
|
}
|
2001-05-29 14:37:05 -03:00
|
|
|
format++;
|
|
|
|
} else {
|
|
|
|
Py_UNICODE **p = va_arg(*p_va, Py_UNICODE **);
|
|
|
|
if (PyUnicode_Check(arg))
|
|
|
|
*p = PyUnicode_AS_UNICODE(arg);
|
1994-09-29 06:42:55 -03:00
|
|
|
else
|
2001-11-28 18:14:37 -04:00
|
|
|
return converterr("unicode", arg, msgbuf, bufsize);
|
1994-09-29 06:42:55 -03:00
|
|
|
}
|
2001-05-29 14:37:05 -03:00
|
|
|
break;
|
|
|
|
}
|
2001-08-17 15:39:25 -03:00
|
|
|
#endif
|
2001-05-29 14:37:05 -03:00
|
|
|
|
|
|
|
case 'S': { /* string object */
|
|
|
|
PyObject **p = va_arg(*p_va, PyObject **);
|
2008-06-09 01:58:54 -03:00
|
|
|
if (PyString_Check(arg))
|
2001-05-29 14:37:05 -03:00
|
|
|
*p = arg;
|
|
|
|
else
|
2001-11-28 18:14:37 -04:00
|
|
|
return converterr("string", arg, msgbuf, bufsize);
|
2001-05-29 14:37:05 -03:00
|
|
|
break;
|
|
|
|
}
|
1994-09-29 06:42:55 -03:00
|
|
|
|
2001-08-17 15:39:25 -03:00
|
|
|
#ifdef Py_USING_UNICODE
|
2001-05-29 14:37:05 -03:00
|
|
|
case 'U': { /* Unicode object */
|
|
|
|
PyObject **p = va_arg(*p_va, PyObject **);
|
|
|
|
if (PyUnicode_Check(arg))
|
|
|
|
*p = arg;
|
|
|
|
else
|
2001-11-28 18:14:37 -04:00
|
|
|
return converterr("unicode", arg, msgbuf, bufsize);
|
2001-05-29 14:37:05 -03:00
|
|
|
break;
|
|
|
|
}
|
2001-08-17 15:39:25 -03:00
|
|
|
#endif
|
2001-05-29 14:37:05 -03:00
|
|
|
|
|
|
|
case 'O': { /* object */
|
|
|
|
PyTypeObject *type;
|
|
|
|
PyObject **p;
|
|
|
|
if (*format == '!') {
|
|
|
|
type = va_arg(*p_va, PyTypeObject*);
|
|
|
|
p = va_arg(*p_va, PyObject **);
|
|
|
|
format++;
|
2001-08-28 13:37:51 -03:00
|
|
|
if (PyType_IsSubtype(arg->ob_type, type))
|
2000-03-10 19:02:17 -04:00
|
|
|
*p = arg;
|
|
|
|
else
|
2001-11-28 18:14:37 -04:00
|
|
|
return converterr(type->tp_name, arg, msgbuf, bufsize);
|
1998-05-15 19:04:07 -03:00
|
|
|
|
2001-05-29 14:37:05 -03:00
|
|
|
}
|
|
|
|
else if (*format == '?') {
|
|
|
|
inquiry pred = va_arg(*p_va, inquiry);
|
|
|
|
p = va_arg(*p_va, PyObject **);
|
|
|
|
format++;
|
|
|
|
if ((*pred)(arg))
|
1994-09-29 06:42:55 -03:00
|
|
|
*p = arg;
|
2001-05-29 14:37:05 -03:00
|
|
|
else
|
|
|
|
return converterr("(unspecified)",
|
2001-11-28 18:14:37 -04:00
|
|
|
arg, msgbuf, bufsize);
|
2001-05-29 14:37:05 -03:00
|
|
|
|
|
|
|
}
|
|
|
|
else if (*format == '&') {
|
|
|
|
typedef int (*converter)(PyObject *, void *);
|
|
|
|
converter convert = va_arg(*p_va, converter);
|
|
|
|
void *addr = va_arg(*p_va, void *);
|
|
|
|
format++;
|
|
|
|
if (! (*convert)(arg, addr))
|
|
|
|
return converterr("(unspecified)",
|
2001-11-28 18:14:37 -04:00
|
|
|
arg, msgbuf, bufsize);
|
1994-09-29 06:42:55 -03:00
|
|
|
}
|
2001-05-29 14:37:05 -03:00
|
|
|
else {
|
|
|
|
p = va_arg(*p_va, PyObject **);
|
|
|
|
*p = arg;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
1997-05-05 19:15:02 -03:00
|
|
|
|
|
|
|
|
2001-05-29 14:37:05 -03:00
|
|
|
case 'w': { /* memory buffer, read-write access */
|
|
|
|
void **p = va_arg(*p_va, void **);
|
|
|
|
PyBufferProcs *pb = arg->ob_type->tp_as_buffer;
|
2007-11-30 16:51:40 -04:00
|
|
|
Py_ssize_t count;
|
1997-05-05 19:15:02 -03:00
|
|
|
|
2001-05-29 14:37:05 -03:00
|
|
|
if (pb == NULL ||
|
|
|
|
pb->bf_getwritebuffer == NULL ||
|
|
|
|
pb->bf_getsegcount == NULL)
|
2001-11-28 18:14:37 -04:00
|
|
|
return converterr("read-write buffer", arg, msgbuf, bufsize);
|
2001-05-29 14:37:05 -03:00
|
|
|
if ((*pb->bf_getsegcount)(arg, NULL) != 1)
|
|
|
|
return converterr("single-segment read-write buffer",
|
2001-11-28 18:14:37 -04:00
|
|
|
arg, msgbuf, bufsize);
|
2001-05-29 14:37:05 -03:00
|
|
|
if ((count = pb->bf_getwritebuffer(arg, 0, p)) < 0)
|
2001-11-28 18:14:37 -04:00
|
|
|
return converterr("(unspecified)", arg, msgbuf, bufsize);
|
2001-05-29 14:37:05 -03:00
|
|
|
if (*format == '#') {
|
2006-02-15 13:27:45 -04:00
|
|
|
FETCH_SIZE;
|
|
|
|
STORE_SIZE(count);
|
2001-05-29 14:37:05 -03:00
|
|
|
format++;
|
1997-05-05 19:15:02 -03:00
|
|
|
}
|
2001-05-29 14:37:05 -03:00
|
|
|
break;
|
|
|
|
}
|
1997-05-05 19:15:02 -03:00
|
|
|
|
2001-05-29 14:37:05 -03:00
|
|
|
case 't': { /* 8-bit character buffer, read-only access */
|
2006-02-27 12:46:16 -04:00
|
|
|
char **p = va_arg(*p_va, char **);
|
2001-10-11 11:40:37 -03:00
|
|
|
PyBufferProcs *pb = arg->ob_type->tp_as_buffer;
|
2007-11-30 16:51:40 -04:00
|
|
|
Py_ssize_t count;
|
1998-10-07 23:21:21 -03:00
|
|
|
|
2001-05-29 14:37:05 -03:00
|
|
|
if (*format++ != '#')
|
|
|
|
return converterr(
|
|
|
|
"invalid use of 't' format character",
|
2001-11-28 18:14:37 -04:00
|
|
|
arg, msgbuf, bufsize);
|
2001-05-29 14:37:05 -03:00
|
|
|
if (!PyType_HasFeature(arg->ob_type,
|
2001-10-11 11:40:37 -03:00
|
|
|
Py_TPFLAGS_HAVE_GETCHARBUFFER) ||
|
|
|
|
pb == NULL || pb->bf_getcharbuffer == NULL ||
|
|
|
|
pb->bf_getsegcount == NULL)
|
2001-05-29 14:37:05 -03:00
|
|
|
return converterr(
|
|
|
|
"string or read-only character buffer",
|
2001-11-28 18:14:37 -04:00
|
|
|
arg, msgbuf, bufsize);
|
2001-05-29 14:37:05 -03:00
|
|
|
|
2001-10-11 11:40:37 -03:00
|
|
|
if (pb->bf_getsegcount(arg, NULL) != 1)
|
|
|
|
return converterr(
|
|
|
|
"string or single-segment read-only buffer",
|
2001-11-28 18:14:37 -04:00
|
|
|
arg, msgbuf, bufsize);
|
2001-10-11 11:40:37 -03:00
|
|
|
|
|
|
|
count = pb->bf_getcharbuffer(arg, 0, p);
|
2001-05-29 14:37:05 -03:00
|
|
|
if (count < 0)
|
2001-11-28 18:14:37 -04:00
|
|
|
return converterr("(unspecified)", arg, msgbuf, bufsize);
|
2006-02-15 13:27:45 -04:00
|
|
|
{
|
|
|
|
FETCH_SIZE;
|
|
|
|
STORE_SIZE(count);
|
|
|
|
}
|
2001-05-29 14:37:05 -03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1994-09-29 06:42:55 -03:00
|
|
|
default:
|
2001-11-28 18:14:37 -04:00
|
|
|
return converterr("impossible<bad format char>", arg, msgbuf, bufsize);
|
1994-09-29 06:42:55 -03:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
*p_format = format;
|
|
|
|
return NULL;
|
|
|
|
}
|
1996-08-19 16:32:04 -03:00
|
|
|
|
2006-02-15 13:27:45 -04:00
|
|
|
static Py_ssize_t
|
2001-10-23 11:41:08 -03:00
|
|
|
convertbuffer(PyObject *arg, void **p, char **errmsg)
|
2001-05-29 14:37:05 -03:00
|
|
|
{
|
|
|
|
PyBufferProcs *pb = arg->ob_type->tp_as_buffer;
|
2006-02-15 13:27:45 -04:00
|
|
|
Py_ssize_t count;
|
2001-05-29 14:37:05 -03:00
|
|
|
if (pb == NULL ||
|
|
|
|
pb->bf_getreadbuffer == NULL ||
|
|
|
|
pb->bf_getsegcount == NULL) {
|
|
|
|
*errmsg = "string or read-only buffer";
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if ((*pb->bf_getsegcount)(arg, NULL) != 1) {
|
|
|
|
*errmsg = "string or single-segment read-only buffer";
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if ((count = (*pb->bf_getreadbuffer)(arg, 0, p)) < 0) {
|
|
|
|
*errmsg = "(unspecified)";
|
|
|
|
}
|
|
|
|
return count;
|
|
|
|
}
|
1996-08-19 16:32:04 -03:00
|
|
|
|
|
|
|
/* Support for keyword arguments donated by
|
|
|
|
Geoff Philbrick <philbric@delphi.hks.com> */
|
|
|
|
|
2001-10-27 01:26:57 -03:00
|
|
|
/* Return false (0) for error, else true. */
|
2001-10-23 11:41:08 -03:00
|
|
|
int
|
|
|
|
PyArg_ParseTupleAndKeywords(PyObject *args,
|
|
|
|
PyObject *keywords,
|
2005-12-10 14:50:16 -04:00
|
|
|
const char *format,
|
2006-02-27 12:46:16 -04:00
|
|
|
char **kwlist, ...)
|
1996-08-19 16:32:04 -03:00
|
|
|
{
|
|
|
|
int retval;
|
|
|
|
va_list va;
|
2001-10-27 00:58:40 -03:00
|
|
|
|
|
|
|
if ((args == NULL || !PyTuple_Check(args)) ||
|
|
|
|
(keywords != NULL && !PyDict_Check(keywords)) ||
|
|
|
|
format == NULL ||
|
|
|
|
kwlist == NULL)
|
|
|
|
{
|
|
|
|
PyErr_BadInternalCall();
|
2001-10-27 01:26:57 -03:00
|
|
|
return 0;
|
2001-10-27 00:58:40 -03:00
|
|
|
}
|
|
|
|
|
1996-08-19 16:32:04 -03:00
|
|
|
va_start(va, kwlist);
|
2006-02-15 13:27:45 -04:00
|
|
|
retval = vgetargskeywords(args, keywords, format, kwlist, &va, 0);
|
|
|
|
va_end(va);
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
_PyArg_ParseTupleAndKeywords_SizeT(PyObject *args,
|
|
|
|
PyObject *keywords,
|
|
|
|
const char *format,
|
2006-02-27 12:46:16 -04:00
|
|
|
char **kwlist, ...)
|
2006-02-15 13:27:45 -04:00
|
|
|
{
|
|
|
|
int retval;
|
|
|
|
va_list va;
|
|
|
|
|
|
|
|
if ((args == NULL || !PyTuple_Check(args)) ||
|
|
|
|
(keywords != NULL && !PyDict_Check(keywords)) ||
|
|
|
|
format == NULL ||
|
|
|
|
kwlist == NULL)
|
|
|
|
{
|
|
|
|
PyErr_BadInternalCall();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
va_start(va, kwlist);
|
|
|
|
retval = vgetargskeywords(args, keywords, format,
|
|
|
|
kwlist, &va, FLAG_SIZE_T);
|
1996-08-19 16:32:04 -03:00
|
|
|
va_end(va);
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-07-10 19:20:32 -03:00
|
|
|
int
|
|
|
|
PyArg_VaParseTupleAndKeywords(PyObject *args,
|
2005-12-10 14:50:16 -04:00
|
|
|
PyObject *keywords,
|
|
|
|
const char *format,
|
2006-02-27 12:46:16 -04:00
|
|
|
char **kwlist, va_list va)
|
2004-07-10 19:20:32 -03:00
|
|
|
{
|
|
|
|
int retval;
|
|
|
|
va_list lva;
|
|
|
|
|
|
|
|
if ((args == NULL || !PyTuple_Check(args)) ||
|
|
|
|
(keywords != NULL && !PyDict_Check(keywords)) ||
|
|
|
|
format == NULL ||
|
|
|
|
kwlist == NULL)
|
|
|
|
{
|
|
|
|
PyErr_BadInternalCall();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef VA_LIST_IS_ARRAY
|
|
|
|
memcpy(lva, va, sizeof(va_list));
|
|
|
|
#else
|
|
|
|
#ifdef __va_copy
|
|
|
|
__va_copy(lva, va);
|
|
|
|
#else
|
|
|
|
lva = va;
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2006-02-15 13:27:45 -04:00
|
|
|
retval = vgetargskeywords(args, keywords, format, kwlist, &lva, 0);
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
_PyArg_VaParseTupleAndKeywords_SizeT(PyObject *args,
|
|
|
|
PyObject *keywords,
|
|
|
|
const char *format,
|
2006-02-27 12:46:16 -04:00
|
|
|
char **kwlist, va_list va)
|
2006-02-15 13:27:45 -04:00
|
|
|
{
|
|
|
|
int retval;
|
|
|
|
va_list lva;
|
|
|
|
|
|
|
|
if ((args == NULL || !PyTuple_Check(args)) ||
|
|
|
|
(keywords != NULL && !PyDict_Check(keywords)) ||
|
|
|
|
format == NULL ||
|
|
|
|
kwlist == NULL)
|
|
|
|
{
|
|
|
|
PyErr_BadInternalCall();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef VA_LIST_IS_ARRAY
|
|
|
|
memcpy(lva, va, sizeof(va_list));
|
|
|
|
#else
|
|
|
|
#ifdef __va_copy
|
|
|
|
__va_copy(lva, va);
|
|
|
|
#else
|
|
|
|
lva = va;
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
retval = vgetargskeywords(args, keywords, format,
|
|
|
|
kwlist, &lva, FLAG_SIZE_T);
|
2004-07-10 19:20:32 -03:00
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2008-02-26 13:23:51 -04:00
|
|
|
#define IS_END_OF_FORMAT(c) (c == '\0' || c == ';' || c == ':')
|
2004-07-10 19:20:32 -03:00
|
|
|
|
1996-08-19 16:32:04 -03:00
|
|
|
static int
|
2005-12-10 14:50:16 -04:00
|
|
|
vgetargskeywords(PyObject *args, PyObject *keywords, const char *format,
|
2006-02-27 12:46:16 -04:00
|
|
|
char **kwlist, va_list *p_va, int flags)
|
1996-08-19 16:32:04 -03:00
|
|
|
{
|
2001-10-27 03:53:00 -03:00
|
|
|
char msgbuf[512];
|
1996-08-19 16:32:04 -03:00
|
|
|
int levels[32];
|
2008-02-26 13:23:51 -04:00
|
|
|
const char *fname, *msg, *custom_msg, *keyword;
|
|
|
|
int min = INT_MAX;
|
2001-10-27 04:00:56 -03:00
|
|
|
int i, len, nargs, nkeywords;
|
2008-02-26 13:23:51 -04:00
|
|
|
PyObject *freelist = NULL, *current_arg;
|
2001-10-26 21:17:34 -03:00
|
|
|
|
2001-10-27 00:58:40 -03:00
|
|
|
assert(args != NULL && PyTuple_Check(args));
|
|
|
|
assert(keywords == NULL || PyDict_Check(keywords));
|
|
|
|
assert(format != NULL);
|
|
|
|
assert(kwlist != NULL);
|
|
|
|
assert(p_va != NULL);
|
|
|
|
|
2008-02-26 13:23:51 -04:00
|
|
|
/* grab the function name or custom error msg first (mutually exclusive) */
|
|
|
|
fname = strchr(format, ':');
|
|
|
|
if (fname) {
|
|
|
|
fname++;
|
|
|
|
custom_msg = NULL;
|
2001-10-27 01:26:57 -03:00
|
|
|
}
|
2008-02-26 13:23:51 -04:00
|
|
|
else {
|
|
|
|
custom_msg = strchr(format,';');
|
|
|
|
if (custom_msg)
|
|
|
|
custom_msg++;
|
1996-08-19 16:32:04 -03:00
|
|
|
}
|
2001-10-27 02:30:17 -03:00
|
|
|
|
2008-02-26 13:23:51 -04:00
|
|
|
/* scan kwlist and get greatest possible nbr of args */
|
|
|
|
for (len=0; kwlist[len]; len++)
|
|
|
|
continue;
|
2001-10-27 03:14:32 -03:00
|
|
|
|
2008-02-26 13:23:51 -04:00
|
|
|
nargs = PyTuple_GET_SIZE(args);
|
|
|
|
nkeywords = (keywords == NULL) ? 0 : PyDict_Size(keywords);
|
|
|
|
if (nargs + nkeywords > len) {
|
|
|
|
PyErr_Format(PyExc_TypeError, "%s%s takes at most %d "
|
|
|
|
"argument%s (%d given)",
|
|
|
|
(fname == NULL) ? "function" : fname,
|
|
|
|
(fname == NULL) ? "" : "()",
|
|
|
|
len,
|
|
|
|
(len == 1) ? "" : "s",
|
|
|
|
nargs + nkeywords);
|
1996-08-19 16:32:04 -03:00
|
|
|
return 0;
|
|
|
|
}
|
2001-10-27 04:25:06 -03:00
|
|
|
|
2008-02-26 13:23:51 -04:00
|
|
|
/* convert tuple args and keyword args in same loop, using kwlist to drive process */
|
|
|
|
for (i = 0; i < len; i++) {
|
|
|
|
keyword = kwlist[i];
|
|
|
|
if (*format == '|') {
|
|
|
|
min = i;
|
1996-08-19 16:32:04 -03:00
|
|
|
format++;
|
2008-02-26 13:23:51 -04:00
|
|
|
}
|
|
|
|
if (IS_END_OF_FORMAT(*format)) {
|
|
|
|
PyErr_Format(PyExc_RuntimeError,
|
|
|
|
"More keyword list entries (%d) than "
|
|
|
|
"format specifiers (%d)", len, i);
|
2003-05-03 07:00:22 -03:00
|
|
|
return cleanreturn(0, freelist);
|
1996-08-19 16:32:04 -03:00
|
|
|
}
|
2008-02-26 13:23:51 -04:00
|
|
|
current_arg = NULL;
|
|
|
|
if (nkeywords) {
|
|
|
|
current_arg = PyDict_GetItemString(keywords, keyword);
|
|
|
|
}
|
|
|
|
if (current_arg) {
|
|
|
|
--nkeywords;
|
|
|
|
if (i < nargs) {
|
|
|
|
/* arg present in tuple and in dict */
|
|
|
|
PyErr_Format(PyExc_TypeError,
|
|
|
|
"Argument given by name ('%s') "
|
|
|
|
"and position (%d)",
|
|
|
|
keyword, i+1);
|
2003-05-03 07:00:22 -03:00
|
|
|
return cleanreturn(0, freelist);
|
1996-08-19 16:32:04 -03:00
|
|
|
}
|
|
|
|
}
|
2008-02-26 13:23:51 -04:00
|
|
|
else if (nkeywords && PyErr_Occurred())
|
2003-05-03 07:00:22 -03:00
|
|
|
return cleanreturn(0, freelist);
|
2008-02-26 13:23:51 -04:00
|
|
|
else if (i < nargs)
|
|
|
|
current_arg = PyTuple_GET_ITEM(args, i);
|
|
|
|
|
|
|
|
if (current_arg) {
|
|
|
|
msg = convertitem(current_arg, &format, p_va, flags,
|
|
|
|
levels, msgbuf, sizeof(msgbuf), &freelist);
|
1996-08-19 16:32:04 -03:00
|
|
|
if (msg) {
|
2008-02-26 13:23:51 -04:00
|
|
|
seterror(i+1, msg, levels, fname, custom_msg);
|
2003-05-03 07:00:22 -03:00
|
|
|
return cleanreturn(0, freelist);
|
1996-08-19 16:32:04 -03:00
|
|
|
}
|
2008-02-26 13:23:51 -04:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i < min) {
|
|
|
|
PyErr_Format(PyExc_TypeError, "Required argument "
|
|
|
|
"'%s' (pos %d) not found",
|
|
|
|
keyword, i+1);
|
|
|
|
return cleanreturn(0, freelist);
|
|
|
|
}
|
|
|
|
/* current code reports success when all required args
|
|
|
|
* fulfilled and no keyword args left, with no further
|
|
|
|
* validation. XXX Maybe skip this in debug build ?
|
|
|
|
*/
|
|
|
|
if (!nkeywords)
|
|
|
|
return cleanreturn(1, freelist);
|
|
|
|
|
|
|
|
/* We are into optional args, skip thru to any remaining
|
|
|
|
* keyword args */
|
|
|
|
msg = skipitem(&format, p_va, flags);
|
|
|
|
if (msg) {
|
|
|
|
PyErr_Format(PyExc_RuntimeError, "%s: '%s'", msg,
|
|
|
|
format);
|
|
|
|
return cleanreturn(0, freelist);
|
1996-08-19 16:32:04 -03:00
|
|
|
}
|
|
|
|
}
|
2001-10-27 02:07:41 -03:00
|
|
|
|
2008-02-26 13:23:51 -04:00
|
|
|
if (!IS_END_OF_FORMAT(*format)) {
|
|
|
|
PyErr_Format(PyExc_RuntimeError,
|
|
|
|
"more argument specifiers than keyword list entries "
|
|
|
|
"(remaining format:'%s')", format);
|
|
|
|
return cleanreturn(0, freelist);
|
|
|
|
}
|
|
|
|
|
1996-08-19 16:32:04 -03:00
|
|
|
/* make sure there are no extraneous keyword arguments */
|
2001-10-27 04:25:06 -03:00
|
|
|
if (nkeywords > 0) {
|
|
|
|
PyObject *key, *value;
|
2006-02-15 13:27:45 -04:00
|
|
|
Py_ssize_t pos = 0;
|
1996-08-19 16:32:04 -03:00
|
|
|
while (PyDict_Next(keywords, &pos, &key, &value)) {
|
2001-10-27 04:25:06 -03:00
|
|
|
int match = 0;
|
2002-04-04 12:22:30 -04:00
|
|
|
char *ks;
|
2008-06-09 01:58:54 -03:00
|
|
|
if (!PyString_Check(key)) {
|
2002-04-04 12:22:30 -04:00
|
|
|
PyErr_SetString(PyExc_TypeError,
|
|
|
|
"keywords must be strings");
|
2003-05-03 07:00:22 -03:00
|
|
|
return cleanreturn(0, freelist);
|
2002-04-04 12:22:30 -04:00
|
|
|
}
|
2008-06-09 01:58:54 -03:00
|
|
|
ks = PyString_AsString(key);
|
2008-02-26 13:23:51 -04:00
|
|
|
for (i = 0; i < len; i++) {
|
1996-08-19 16:32:04 -03:00
|
|
|
if (!strcmp(ks, kwlist[i])) {
|
|
|
|
match = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!match) {
|
2001-10-27 04:25:06 -03:00
|
|
|
PyErr_Format(PyExc_TypeError,
|
|
|
|
"'%s' is an invalid keyword "
|
|
|
|
"argument for this function",
|
|
|
|
ks);
|
2003-05-03 07:00:22 -03:00
|
|
|
return cleanreturn(0, freelist);
|
1996-08-19 16:32:04 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2001-10-27 04:25:06 -03:00
|
|
|
|
2003-05-03 07:00:22 -03:00
|
|
|
return cleanreturn(1, freelist);
|
1996-08-19 16:32:04 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static char *
|
2006-02-15 13:27:45 -04:00
|
|
|
skipitem(const char **p_format, va_list *p_va, int flags)
|
1996-08-19 16:32:04 -03:00
|
|
|
{
|
2008-02-26 13:23:51 -04:00
|
|
|
const char *format = *p_format;
|
1996-08-19 16:32:04 -03:00
|
|
|
char c = *format++;
|
|
|
|
|
|
|
|
switch (c) {
|
2005-09-14 16:29:53 -03:00
|
|
|
|
|
|
|
/* simple codes
|
|
|
|
* The individual types (second arg of va_arg) are irrelevant */
|
|
|
|
|
1996-08-19 16:32:04 -03:00
|
|
|
case 'b': /* byte -- very short int */
|
2000-08-05 18:29:58 -03:00
|
|
|
case 'B': /* byte as bitfield */
|
1996-08-19 16:32:04 -03:00
|
|
|
case 'h': /* short int */
|
2000-08-05 18:29:58 -03:00
|
|
|
case 'H': /* short int as bitfield */
|
1996-08-19 16:32:04 -03:00
|
|
|
case 'i': /* int */
|
2005-09-14 16:29:53 -03:00
|
|
|
case 'I': /* int sized bitfield */
|
1996-08-19 16:32:04 -03:00
|
|
|
case 'l': /* long int */
|
2005-09-14 16:29:53 -03:00
|
|
|
case 'k': /* long int sized bitfield */
|
1999-01-25 17:48:56 -04:00
|
|
|
#ifdef HAVE_LONG_LONG
|
2005-09-14 16:29:53 -03:00
|
|
|
case 'L': /* PY_LONG_LONG */
|
|
|
|
case 'K': /* PY_LONG_LONG sized bitfield */
|
1998-08-04 19:46:29 -03:00
|
|
|
#endif
|
1996-08-19 16:32:04 -03:00
|
|
|
case 'f': /* float */
|
|
|
|
case 'd': /* double */
|
|
|
|
#ifndef WITHOUT_COMPLEX
|
|
|
|
case 'D': /* complex double */
|
2005-09-14 16:29:53 -03:00
|
|
|
#endif
|
1996-08-19 16:32:04 -03:00
|
|
|
case 'c': /* char */
|
|
|
|
{
|
2005-09-14 16:29:53 -03:00
|
|
|
(void) va_arg(*p_va, void *);
|
1996-08-19 16:32:04 -03:00
|
|
|
break;
|
|
|
|
}
|
2006-02-15 13:27:45 -04:00
|
|
|
|
|
|
|
case 'n': /* Py_ssize_t */
|
|
|
|
{
|
|
|
|
(void) va_arg(*p_va, Py_ssize_t *);
|
|
|
|
break;
|
|
|
|
}
|
1996-08-19 16:32:04 -03:00
|
|
|
|
2005-09-14 16:29:53 -03:00
|
|
|
/* string codes */
|
|
|
|
|
|
|
|
case 'e': /* string with encoding */
|
1996-08-19 16:32:04 -03:00
|
|
|
{
|
2005-09-14 16:29:53 -03:00
|
|
|
(void) va_arg(*p_va, const char *);
|
|
|
|
if (!(*format == 's' || *format == 't'))
|
|
|
|
/* after 'e', only 's' and 't' is allowed */
|
|
|
|
goto err;
|
|
|
|
format++;
|
|
|
|
/* explicit fallthrough to string cases */
|
1996-08-19 16:32:04 -03:00
|
|
|
}
|
|
|
|
|
2005-09-14 16:29:53 -03:00
|
|
|
case 's': /* string */
|
|
|
|
case 'z': /* string or None */
|
|
|
|
#ifdef Py_USING_UNICODE
|
|
|
|
case 'u': /* unicode string */
|
|
|
|
#endif
|
|
|
|
case 't': /* buffer, read-only */
|
|
|
|
case 'w': /* buffer, read-write */
|
1996-08-19 16:32:04 -03:00
|
|
|
{
|
1996-12-05 19:27:02 -04:00
|
|
|
(void) va_arg(*p_va, char **);
|
1996-08-19 16:32:04 -03:00
|
|
|
if (*format == '#') {
|
2006-02-15 13:27:45 -04:00
|
|
|
if (flags & FLAG_SIZE_T)
|
|
|
|
(void) va_arg(*p_va, Py_ssize_t *);
|
|
|
|
else
|
|
|
|
(void) va_arg(*p_va, int *);
|
1996-08-19 16:32:04 -03:00
|
|
|
format++;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2005-09-14 16:29:53 -03:00
|
|
|
|
|
|
|
/* object codes */
|
|
|
|
|
1996-08-19 16:32:04 -03:00
|
|
|
case 'S': /* string object */
|
2005-09-14 16:29:53 -03:00
|
|
|
#ifdef Py_USING_UNICODE
|
|
|
|
case 'U': /* unicode string object */
|
|
|
|
#endif
|
1996-08-19 16:32:04 -03:00
|
|
|
{
|
1997-04-29 17:08:16 -03:00
|
|
|
(void) va_arg(*p_va, PyObject **);
|
1996-08-19 16:32:04 -03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case 'O': /* object */
|
|
|
|
{
|
|
|
|
if (*format == '!') {
|
|
|
|
format++;
|
1997-04-29 17:08:16 -03:00
|
|
|
(void) va_arg(*p_va, PyTypeObject*);
|
|
|
|
(void) va_arg(*p_va, PyObject **);
|
1996-08-19 16:32:04 -03:00
|
|
|
}
|
|
|
|
#if 0
|
|
|
|
/* I don't know what this is for */
|
|
|
|
else if (*format == '?') {
|
|
|
|
inquiry pred = va_arg(*p_va, inquiry);
|
|
|
|
format++;
|
|
|
|
if ((*pred)(arg)) {
|
1997-04-29 17:08:16 -03:00
|
|
|
(void) va_arg(*p_va, PyObject **);
|
1996-08-19 16:32:04 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
else if (*format == '&') {
|
2000-07-09 00:09:57 -03:00
|
|
|
typedef int (*converter)(PyObject *, void *);
|
1996-12-05 19:27:02 -04:00
|
|
|
(void) va_arg(*p_va, converter);
|
|
|
|
(void) va_arg(*p_va, void *);
|
1996-08-19 16:32:04 -03:00
|
|
|
format++;
|
|
|
|
}
|
|
|
|
else {
|
1997-04-29 17:08:16 -03:00
|
|
|
(void) va_arg(*p_va, PyObject **);
|
1996-08-19 16:32:04 -03:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2008-02-26 13:23:51 -04:00
|
|
|
|
|
|
|
case '(': /* bypass tuple, not handled at all previously */
|
|
|
|
{
|
|
|
|
char *msg;
|
|
|
|
for (;;) {
|
|
|
|
if (*format==')')
|
|
|
|
break;
|
|
|
|
if (IS_END_OF_FORMAT(*format))
|
|
|
|
return "Unmatched left paren in format "
|
|
|
|
"string";
|
|
|
|
msg = skipitem(&format, p_va, flags);
|
|
|
|
if (msg)
|
|
|
|
return msg;
|
|
|
|
}
|
|
|
|
format++;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case ')':
|
|
|
|
return "Unmatched right paren in format string";
|
|
|
|
|
1996-08-19 16:32:04 -03:00
|
|
|
default:
|
2005-09-14 16:29:53 -03:00
|
|
|
err:
|
1996-08-19 16:32:04 -03:00
|
|
|
return "impossible<bad format char>";
|
|
|
|
|
|
|
|
}
|
2005-09-14 16:29:53 -03:00
|
|
|
|
1996-08-19 16:32:04 -03:00
|
|
|
*p_format = format;
|
|
|
|
return NULL;
|
|
|
|
}
|
2001-10-23 18:09:29 -03:00
|
|
|
|
|
|
|
|
|
|
|
int
|
2006-03-01 00:06:10 -04:00
|
|
|
PyArg_UnpackTuple(PyObject *args, const char *name, Py_ssize_t min, Py_ssize_t max, ...)
|
2001-10-23 18:09:29 -03:00
|
|
|
{
|
2006-03-01 00:06:10 -04:00
|
|
|
Py_ssize_t i, l;
|
2001-10-23 18:09:29 -03:00
|
|
|
PyObject **o;
|
|
|
|
va_list vargs;
|
|
|
|
|
|
|
|
#ifdef HAVE_STDARG_PROTOTYPES
|
|
|
|
va_start(vargs, max);
|
|
|
|
#else
|
|
|
|
va_start(vargs);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
assert(min >= 0);
|
|
|
|
assert(min <= max);
|
|
|
|
if (!PyTuple_Check(args)) {
|
|
|
|
PyErr_SetString(PyExc_SystemError,
|
|
|
|
"PyArg_UnpackTuple() argument list is not a tuple");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
l = PyTuple_GET_SIZE(args);
|
|
|
|
if (l < min) {
|
|
|
|
if (name != NULL)
|
|
|
|
PyErr_Format(
|
|
|
|
PyExc_TypeError,
|
2006-03-01 01:38:39 -04:00
|
|
|
"%s expected %s%zd arguments, got %zd",
|
2001-10-23 18:09:29 -03:00
|
|
|
name, (min == max ? "" : "at least "), min, l);
|
|
|
|
else
|
|
|
|
PyErr_Format(
|
|
|
|
PyExc_TypeError,
|
2006-03-01 01:38:39 -04:00
|
|
|
"unpacked tuple should have %s%zd elements,"
|
|
|
|
" but has %zd",
|
2001-10-23 18:09:29 -03:00
|
|
|
(min == max ? "" : "at least "), min, l);
|
|
|
|
va_end(vargs);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (l > max) {
|
|
|
|
if (name != NULL)
|
|
|
|
PyErr_Format(
|
|
|
|
PyExc_TypeError,
|
2006-03-01 01:38:39 -04:00
|
|
|
"%s expected %s%zd arguments, got %zd",
|
2001-10-23 18:09:29 -03:00
|
|
|
name, (min == max ? "" : "at most "), max, l);
|
|
|
|
else
|
|
|
|
PyErr_Format(
|
|
|
|
PyExc_TypeError,
|
2006-03-01 01:38:39 -04:00
|
|
|
"unpacked tuple should have %s%zd elements,"
|
|
|
|
" but has %zd",
|
2001-10-23 18:09:29 -03:00
|
|
|
(min == max ? "" : "at most "), max, l);
|
|
|
|
va_end(vargs);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
for (i = 0; i < l; i++) {
|
|
|
|
o = va_arg(vargs, PyObject **);
|
|
|
|
*o = PyTuple_GET_ITEM(args, i);
|
|
|
|
}
|
|
|
|
va_end(vargs);
|
|
|
|
return 1;
|
|
|
|
}
|
2005-08-26 03:42:30 -03:00
|
|
|
|
|
|
|
|
|
|
|
/* For type constructors that don't take keyword args
|
|
|
|
*
|
|
|
|
* Sets a TypeError and returns 0 if the kwds dict is
|
2006-09-21 12:09:55 -03:00
|
|
|
* not empty, returns 1 otherwise
|
2005-08-26 03:42:30 -03:00
|
|
|
*/
|
|
|
|
int
|
2005-12-10 14:50:16 -04:00
|
|
|
_PyArg_NoKeywords(const char *funcname, PyObject *kw)
|
2005-08-26 03:42:30 -03:00
|
|
|
{
|
|
|
|
if (kw == NULL)
|
|
|
|
return 1;
|
|
|
|
if (!PyDict_CheckExact(kw)) {
|
|
|
|
PyErr_BadInternalCall();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (PyDict_Size(kw) == 0)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
PyErr_Format(PyExc_TypeError, "%s does not take keyword arguments",
|
|
|
|
funcname);
|
|
|
|
return 0;
|
|
|
|
}
|
2006-04-12 01:38:54 -03:00
|
|
|
#ifdef __cplusplus
|
|
|
|
};
|
|
|
|
#endif
|