summaryrefslogtreecommitdiffstats
path: root/Modules/posixmodule.c
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>1998-07-23 16:14:40 (GMT)
committerBarry Warsaw <barry@python.org>1998-07-23 16:14:40 (GMT)
commitd58d7647f333f149da0263df7529c9130469b68b (patch)
tree1bd60dfc5cd0e57adceae4a922452e56a3bf68a0 /Modules/posixmodule.c
parent52ddc0e7567fb927ca3a5cd1ed4243c3450a552e (diff)
downloadcpython-d58d7647f333f149da0263df7529c9130469b68b.zip
cpython-d58d7647f333f149da0263df7529c9130469b68b.tar.gz
cpython-d58d7647f333f149da0263df7529c9130469b68b.tar.bz2
Several changes to support inclusion of filename in relevent
exceptions: posix_error_with_filename(): New function which calls PyErr_SetFromErrnoWithFilename() The following methods have been changed to call posix_error_with_filename(): posix_1str() posix_strint() posix_strintint() posix_do_stat() posix_mkdir() posix_utime() posix_readlink() posix_open() INITFUNC(): os.error (nee PosixError) is PyExc_OSError
Diffstat (limited to 'Modules/posixmodule.c')
-rw-r--r--Modules/posixmodule.c34
1 files changed, 21 insertions, 13 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c
index cafb46f..b53fb0c 100644
--- a/Modules/posixmodule.c
+++ b/Modules/posixmodule.c
@@ -325,10 +325,18 @@ static PyObject *PosixError; /* Exception posix.error */
/* Set a POSIX-specific error from errno, and return NULL */
-static PyObject * posix_error()
+static PyObject *
+posix_error()
{
return PyErr_SetFromErrno(PosixError);
}
+static PyObject *
+posix_error_with_filename(name)
+ char* name;
+{
+ return PyErr_SetFromErrnoWithFilename(PosixError, name);
+}
+
#if defined(PYOS_OS2)
/**********************************************************************
@@ -420,7 +428,7 @@ posix_1str(args, func)
res = (*func)(path1);
Py_END_ALLOW_THREADS
if (res < 0)
- return posix_error();
+ return posix_error_with_filename(path1);
Py_INCREF(Py_None);
return Py_None;
}
@@ -438,6 +446,7 @@ posix_2str(args, func)
res = (*func)(path1, path2);
Py_END_ALLOW_THREADS
if (res != 0)
+ /* XXX how to report both path1 and path2??? */
return posix_error();
Py_INCREF(Py_None);
return Py_None;
@@ -457,7 +466,7 @@ posix_strint(args, func)
res = (*func)(path, i);
Py_END_ALLOW_THREADS
if (res < 0)
- return posix_error();
+ return posix_error_with_filename(path);
Py_INCREF(Py_None);
return Py_None;
}
@@ -476,7 +485,7 @@ posix_strintint(args, func)
res = (*func)(path, i, i2);
Py_END_ALLOW_THREADS
if (res < 0)
- return posix_error();
+ return posix_error_with_filename(path);
Py_INCREF(Py_None);
return Py_None;
}
@@ -496,7 +505,7 @@ posix_do_stat(self, args, statfunc)
res = (*statfunc)(path, &st);
Py_END_ALLOW_THREADS
if (res != 0)
- return posix_error();
+ return posix_error_with_filename(path);
return Py_BuildValue("(llllllllll)",
(long)st.st_mode,
(long)st.st_ino,
@@ -868,7 +877,7 @@ posix_mkdir(self, args)
#endif
Py_END_ALLOW_THREADS
if (res < 0)
- return posix_error();
+ return posix_error_with_filename(path);
Py_INCREF(Py_None);
return Py_None;
}
@@ -1056,7 +1065,7 @@ posix_utime(self, args)
res = utime(path, UTIME_ARG);
Py_END_ALLOW_THREADS
if (res < 0)
- return posix_error();
+ return posix_error_with_filename(path);
Py_INCREF(Py_None);
return Py_None;
#undef UTIME_ARG
@@ -1772,7 +1781,7 @@ posix_readlink(self, args)
n = readlink(path, buf, (int) sizeof buf);
Py_END_ALLOW_THREADS
if (n < 0)
- return posix_error();
+ return posix_error_with_filename(path);
return PyString_FromStringAndSize(buf, n);
}
#endif /* HAVE_READLINK */
@@ -1985,7 +1994,7 @@ posix_open(self, args)
fd = open(file, flag, mode);
Py_END_ALLOW_THREADS
if (fd < 0)
- return posix_error();
+ return posix_error_with_filename(file);
return PyInt_FromLong((long)fd);
}
@@ -2768,8 +2777,7 @@ INITFUNC()
if (all_ins(d))
return;
- /* Initialize exception */
- PosixError = PyErr_NewException("os.error", NULL, NULL);
- if (PosixError != NULL)
- PyDict_SetItemString(d, "error", PosixError);
+ Py_INCREF(PyExc_OSError);
+ PosixError = PyExc_OSError;
+ PyDict_SetItemString(d, "error", PosixError);
}