Backed out changeset 709850f1ec67

This commit is contained in:
Benjamin Peterson 2012-05-05 21:22:14 -04:00
parent cfe6f2af3c
commit eaa5eeef57
1 changed files with 31 additions and 333 deletions

View File

@ -398,268 +398,6 @@ static int win32_can_symlink = 0;
#endif #endif
#endif #endif
/*
* De-vararg'd PyArg_ParseTupleAndKeywords()
*/
typedef struct argument_path_s {
struct argument_path_s *next;
PyObject *object;
char *format;
wchar_t **wide;
char **narrow;
Py_ssize_t *length;
} argument_path_t;
typedef struct {
PyObject *args;
PyObject *kwargs;
char format[32];
char *format_trace;
char *keywords[8];
int keyword_count;
PyObject **varargs[16];
int vararg_count;
const char *function_name;
argument_path_t *path_head;
} argument_parser_table_t;
#define APT_DECLARE(apt, fname) \
argument_parser_table_t apt; \
memset(&apt, 0, sizeof(apt)); \
apt.function_name = fname; \
apt.args = args; \
apt.kwargs = kwargs; \
apt.format_trace = apt.format
#define _APT_ARGUMENT_OBJECT(apt, name, variable, format) \
*apt.format_trace++ = (format); \
apt.keywords[apt.keyword_count++] = (name); \
apt.varargs[apt.vararg_count++] = (PyObject **)(variable); \
#define APT_ARGUMENT_OBJECT(apt, name, variable) \
_APT_ARGUMENT_OBJECT(apt, name, variable, 'O')
#define APT_ARGUMENT_OBJECT_WITH_CONVERTER(apt, name, variable, converter) \
apt.varargs[apt.vararg_count++] = (PyObject **)converter; \
APT_ARGUMENT_OBJECT(apt, name, variable); \
*apt.format_trace++ = '&'; \
#define APT_ARGUMENT_UNICODE(apt, name, variable) \
_APT_ARGUMENT_OBJECT(apt, name, variable, 'U')
#define APT_ARGUMENT_BYTES(apt, name, variable) \
_APT_ARGUMENT_OBJECT(apt, name, variable, 'y')
#define APT_ARGUMENT_INT(apt, name, variable) \
_APT_ARGUMENT_OBJECT(apt, name, variable, 'i')
static int
bool_converter(PyObject *object, void *address) {
int *output = (int *)address;
int value = PyObject_IsTrue(object);
if (value == -1)
return 0;
*output = value;
return 1;
}
#define APT_ARGUMENT_BOOL(apt, name, variable) \
_APT_ARGUMENT_OBJECT(apt, name, variable, 'p')
#if !MS_WINDOWS
#define _APT_DEFAULT_PATH_TYPE 'U'
#define _APT_PATH_BEFORE ;
#define _APT_PATH_AFTER ;
#else
#define _APT_DEFAULT_PATH_TYPE 'O'
#define _APT_PATH_BEFORE apt.varargs[apt.vararg_count++] = (PyObject **)PyUnicode_FSConverter;
#define _APT_PATH_AFTER *apt.format_trace++ = '&';
#endif
#define APT_ARGUMENT_PATH(apt, name, w, n, l) \
{ \
argument_path_t *_path_ = (argument_path_t *)alloca(sizeof(argument_path_t)); \
_APT_PATH_BEFORE; \
memset(_path_, 0, sizeof(*_path_)); \
_path_->wide = w; \
_path_->narrow = n; \
_path_->length = l; \
_path_->next = apt.path_head; \
apt.path_head = _path_; \
_APT_ARGUMENT_OBJECT(apt, name, &_path_->object, _APT_DEFAULT_PATH_TYPE); \
_APT_PATH_AFTER; \
} \
#define APT_OPTIONAL(apt) \
*apt.format_trace++ = '|' \
#define APT_KEYWORD_ONLY(apt) \
*apt.format_trace++ = '$' \
static int apt_parse(argument_parser_table_t *apt) {
argument_path_t *trace;
*apt->format_trace++ = ':';
strcpy(apt->format_trace, apt->function_name);
apt->keywords[apt->keyword_count] = NULL;
for (;;) {
int result;
switch (apt->vararg_count) {
case 0:
PyErr_SetString(PyExc_RuntimeError, "suspiciously too few arguments for apt_parse");
return 0;
#define APT_PREAMBLE \
result = PyArg_ParseTupleAndKeywords(apt->args, apt->kwargs, apt->format, apt->keywords, \
#define APT_POSTSCRIPT \
); \
break; \
case 1:
APT_PREAMBLE
apt->varargs[0]
APT_POSTSCRIPT
case 2:
APT_PREAMBLE
apt->varargs[0],
apt->varargs[1]
APT_POSTSCRIPT
case 3:
APT_PREAMBLE
apt->varargs[0],
apt->varargs[1],
apt->varargs[2]
APT_POSTSCRIPT
case 4:
APT_PREAMBLE
apt->varargs[0],
apt->varargs[1],
apt->varargs[2],
apt->varargs[3]
APT_POSTSCRIPT
case 5:
APT_PREAMBLE
apt->varargs[0],
apt->varargs[1],
apt->varargs[2],
apt->varargs[3],
apt->varargs[4]
APT_POSTSCRIPT
case 6:
APT_PREAMBLE
apt->varargs[0],
apt->varargs[1],
apt->varargs[2],
apt->varargs[3],
apt->varargs[4],
apt->varargs[5]
APT_POSTSCRIPT
case 7:
APT_PREAMBLE
apt->varargs[0],
apt->varargs[1],
apt->varargs[2],
apt->varargs[3],
apt->varargs[4],
apt->varargs[5],
apt->varargs[6]
APT_POSTSCRIPT
case 8:
APT_PREAMBLE
apt->varargs[0],
apt->varargs[1],
apt->varargs[2],
apt->varargs[3],
apt->varargs[4],
apt->varargs[5],
apt->varargs[6],
apt->varargs[7]
APT_POSTSCRIPT
default:
PyErr_SetString(PyExc_RuntimeError, "too many arguments for apt_parse");
return 0;
}
if (result) {
for (trace = apt->path_head; trace != NULL; trace = trace->next) {
#if MS_WINDOWS
switch (*trace->format) {
case 'U':
*trace->wide = PyUnicode_AsUnicode(trace->object);
if (trace->length)
*trace->length = PyUnicode_GET_SIZE(trace->object);
break;
case 'y'
if (win32_warn_bytes_api())
return 0;
*trace->narrow = trace->object;
if (trace->length)
*trace->length = strlen((char *)trace->object);
break;
default:
PyErr_SetString(PyExc_RuntimeError, "unexpected format character in apt_parse");
return 0;
}
#else
assert(*trace->format == 'O');
*trace->narrow = PyBytes_AsString(trace->object);
if (trace->length)
*trace->length = PyBytes_GET_SIZE(trace->object);
#endif
}
return result;
}
#if !MS_WINDOWS
break;
#else
for (trace = apt->path_head; trace != NULL; trace = trace->next) {
/*
* try flipping paths between wide and narrow.
*
* each element always started with wide.
* so:
* * if we see a wide, flip it to narrow and stop.
* * if we see a narrow, flip it to wide and move on to the next field.
* * if we run out of fields, we have exhausted all possibilities. fail.
*
* (conceptually it helps to think of the fields as a binary number
* with as many digits as there are entries in the path list.
* wide is 0, narrow is 1. we keep incrementing the number
* until we wrap around to 0 again.)
*/
if (*trace->format == 'U') {
*trace->format = 'y';
break;
}
if (*trace->format == 'y') {
*trace->format = 'U';
continue;
}
PyErr_SetString(PyExc_RuntimeError, "unexpected format character in apt_parse");
return 0;
}
if (!trace)
break;
#endif
}
return 0;
}
static void apt_cleanup(argument_parser_table_t *apt) {
#if !MS_WINDOWS
argument_path_t *trace;
for (trace = apt->path_head; trace != NULL; trace = trace->next) {
Py_XDECREF(trace->object);
}
#endif
}
/* A helper used by a number of POSIX-only functions */ /* A helper used by a number of POSIX-only functions */
#ifndef MS_WINDOWS #ifndef MS_WINDOWS
static int static int
@ -2204,12 +1942,6 @@ posix_do_stat(PyObject *self, PyObject *args,
/* POSIX methods */ /* POSIX methods */
#ifdef AT_FDCWD
#define DEFAULT_DIR_FD AT_FDCWD
#else
#define DEFAULT_DIR_FD (-100)
#endif
PyDoc_STRVAR(posix_access__doc__, PyDoc_STRVAR(posix_access__doc__,
"access(path, mode) -> True if granted, False otherwise\n\n\ "access(path, mode) -> True if granted, False otherwise\n\n\
Use the real uid/gid to test for access to a path. Note that most\n\ Use the real uid/gid to test for access to a path. Note that most\n\
@ -2219,54 +1951,34 @@ specified access to the path. The mode argument can be F_OK to test\n\
existence, or the inclusive-OR of R_OK, W_OK, and X_OK."); existence, or the inclusive-OR of R_OK, W_OK, and X_OK.");
static PyObject * static PyObject *
posix_access(PyObject *self, PyObject *args, PyObject *kwargs) posix_access(PyObject *self, PyObject *args)
{ {
const char *path;
int mode; int mode;
int dir_fd = DEFAULT_DIR_FD;
wchar_t *wide_path;
char *path;
int follow_symlinks = 1;
int effective_ids = 0;
#ifdef MS_WINDOWS #ifdef MS_WINDOWS
DWORD attr; DWORD attr;
#else PyObject *po;
int res; if (PyArg_ParseTuple(args, "Ui:access", &po, &mode)) {
#endif wchar_t* wpath = PyUnicode_AsUnicode(po);
if (wpath == NULL)
APT_DECLARE(apt, "access"); return NULL;
APT_ARGUMENT_PATH(apt, "path", &wide_path, &path, NULL); Py_BEGIN_ALLOW_THREADS
APT_ARGUMENT_INT(apt, "mode", &mode); attr = GetFileAttributesW(wpath);
APT_OPTIONAL(apt); Py_END_ALLOW_THREADS
APT_KEYWORD_ONLY(apt); goto finish;
APT_ARGUMENT_INT(apt, "dir_fd", &dir_fd); }
APT_ARGUMENT_BOOL(apt, "follow_symlinks", &follow_symlinks); /* Drop the argument parsing error as narrow strings
APT_ARGUMENT_BOOL(apt, "effective_ids", &effective_ids); are also valid. */
PyErr_Clear();
#define ACCESS_FAIL_IF_KEYWORD_USED \ if (!PyArg_ParseTuple(args, "yi:access", &path, &mode))
if (dir_fd != DEFAULT_DIR_FD) \ return NULL;
PyErr_SetString(PyExc_NotImplementedError, "access: dir_fd unavailable on this platform"); \ if (win32_warn_bytes_api())
if (!follow_symlinks) \
PyErr_SetString(PyExc_NotImplementedError, "access: follow_symlinks unavailable on this platform"); \
if (effective_ids) \
PyErr_SetString(PyExc_NotImplementedError, "access: effective_ids unavailable on this platform")
if (!apt_parse(&apt))
return NULL; return NULL;
Py_RETURN_NONE;
#ifdef MS_WINDOWS
ACCESS_FAIL_IF_KEYWORD_USED;
Py_BEGIN_ALLOW_THREADS Py_BEGIN_ALLOW_THREADS
if (wide != NULL)
attr = GetFileAttributesW(wide_path);
else
attr = GetFileAttributesA(path); attr = GetFileAttributesA(path);
Py_END_ALLOW_THREADS Py_END_ALLOW_THREADS
finish:
apt_cleanup(&apt);
if (attr == 0xFFFFFFFF) if (attr == 0xFFFFFFFF)
/* File does not exist, or cannot read attributes */ /* File does not exist, or cannot read attributes */
return PyBool_FromLong(0); return PyBool_FromLong(0);
@ -2277,28 +1989,16 @@ posix_access(PyObject *self, PyObject *args, PyObject *kwargs)
|| !(attr & FILE_ATTRIBUTE_READONLY) || !(attr & FILE_ATTRIBUTE_READONLY)
|| (attr & FILE_ATTRIBUTE_DIRECTORY)); || (attr & FILE_ATTRIBUTE_DIRECTORY));
#else #else
PyObject *opath;
if ((dir_fd != DEFAULT_DIR_FD) int res;
|| effective_ids || !follow_symlinks) { if (!PyArg_ParseTuple(args, "O&i:access",
#ifdef HAVE_FACCESSAT PyUnicode_FSConverter, &opath, &mode))
int flags = 0; return NULL;
if (!follow_symlinks) path = PyBytes_AsString(opath);
flags |= AT_SYMLINK_NOFOLLOW;
if (effective_ids)
flags |= AT_EACCESS;
Py_BEGIN_ALLOW_THREADS
res = faccessat(dir_fd, path, mode, flags);
Py_END_ALLOW_THREADS
#else
ACCESS_FAIL_IF_KEYWORD_USED;
#endif
} else {
Py_BEGIN_ALLOW_THREADS Py_BEGIN_ALLOW_THREADS
res = access(path, mode); res = access(path, mode);
Py_END_ALLOW_THREADS Py_END_ALLOW_THREADS
} Py_DECREF(opath);
apt_cleanup(&apt);
return PyBool_FromLong(res == 0); return PyBool_FromLong(res == 0);
#endif #endif
} }
@ -10896,9 +10596,7 @@ get_terminal_size(PyObject *self, PyObject *args)
static PyMethodDef posix_methods[] = { static PyMethodDef posix_methods[] = {
{"access", (PyCFunction)posix_access, {"access", posix_access, METH_VARARGS, posix_access__doc__},
METH_VARARGS | METH_KEYWORDS,
posix_access__doc__},
#ifdef HAVE_TTYNAME #ifdef HAVE_TTYNAME
{"ttyname", posix_ttyname, METH_VARARGS, posix_ttyname__doc__}, {"ttyname", posix_ttyname, METH_VARARGS, posix_ttyname__doc__},
#endif #endif