Issue #3080: Refactor find_module_path(), use return instead of break

Prepare also the API change of case_ok()
This commit is contained in:
Victor Stinner 2011-03-14 14:04:10 -04:00
parent df75a023a0
commit d029621c70

View file

@ -144,6 +144,8 @@ static const struct filedescr _PyImport_StandardFiletab[] = {
{0, 0}
};
static PyObject *initstr = NULL;
/* Initialize things */
@ -155,6 +157,10 @@ _PyImport_Init(void)
int countD = 0;
int countS = 0;
initstr = PyUnicode_InternFromString("__init__");
if (initstr == NULL)
Py_FatalError("Can't initialize import variables");
/* prepare _PyImport_Filetab: copy entries from
_PyImport_DynLoadFiletab and _PyImport_StandardFiletab.
*/
@ -1507,13 +1513,6 @@ load_package(PyObject *name, PyObject *pathname)
char buf[MAXPATHLEN+1];
FILE *fp = NULL;
struct filedescr *fdp;
static PyObject *initstr = NULL;
if (initstr == NULL) {
initstr = PyUnicode_InternFromString("__init__");
if (initstr == NULL)
return NULL;
}
m = PyImport_AddModuleObject(name);
if (m == NULL)
@ -1765,8 +1764,9 @@ find_module_path(PyObject *fullname, PyObject *name, PyObject *path,
and there's an __init__ module in that directory */
#ifdef HAVE_STAT
if (stat(buf, &statbuf) == 0 && /* it exists */
S_ISDIR(statbuf.st_mode) && /* it's a directory */
case_ok(buf, len, namelen, namestr)) { /* case matches */
S_ISDIR(statbuf.st_mode)) /* it's a directory */
{
if (case_ok(buf, len, namelen, namestr)) { /* case matches */
if (find_init_module(buf)) { /* and has __init__.py */
*p_fd = &fd_package;
return 2;
@ -1784,6 +1784,7 @@ find_module_path(PyObject *fullname, PyObject *name, PyObject *path,
return -1;
}
}
}
#endif
return 1;
}
@ -1842,26 +1843,22 @@ find_module_path_list(PyObject *fullname, PyObject *name,
if (filemode[0] == 'U')
filemode = "r" PY_STDIOTEXTMODE;
fp = fopen(buf, filemode);
if (fp != NULL) {
if (case_ok(buf, len, namelen, namestr))
break;
else { /* continue search */
if (fp == NULL)
continue;
if (case_ok(buf, len, namelen, namestr)) {
*p_fp = fp;
return fdp;
}
fclose(fp);
fp = NULL;
}
}
}
if (fp != NULL)
break;
}
if (fp == NULL) {
PyErr_Format(PyExc_ImportError,
"No module named %U", name);
return NULL;
}
*p_fp = fp;
return fdp;
}
/* Find a module: