diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1997-06-12 15:29:46 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1997-06-12 15:29:46 (GMT) |
commit | eda78634a4719ac48735d551b6b2ab701792e4b4 (patch) | |
tree | 87a51dbf0cf76f0abe44204476c08a3b3a3a149a /Mac | |
parent | 0130f0fb8f66d88a2d733ffc166f9942c8ed10df (diff) | |
download | cpython-eda78634a4719ac48735d551b6b2ab701792e4b4.zip cpython-eda78634a4719ac48735d551b6b2ab701792e4b4.tar.gz cpython-eda78634a4719ac48735d551b6b2ab701792e4b4.tar.bz2 |
Make imports faster on the Mac, by
- Remembering whether sys.path components refer to files or folders,
- Using mac-specific code to check for file existence, in stead of trying
to fopen() each possible file.
These mods need an accompanying mod to import.c.
Diffstat (limited to 'Mac')
-rw-r--r-- | Mac/Include/macglue.h | 3 | ||||
-rw-r--r-- | Mac/Python/macglue.c | 111 |
2 files changed, 106 insertions, 8 deletions
diff --git a/Mac/Include/macglue.h b/Mac/Include/macglue.h index 0f53a0c..4d52fe6 100644 --- a/Mac/Include/macglue.h +++ b/Mac/Include/macglue.h @@ -81,8 +81,9 @@ void PyMac_HandleEvent Py_PROTO((EventRecord *, int)); /* Handle one event, if p void PyMac_InitMenuBar(void); /* Setup menu bar as we want it */ void PyMac_RestoreMenuBar(void); /* Restore menu bar for ease of exiting */ -int PyMac_FindResourceModule(char *, char *); /* Test for 'PYC ' resource in a file */ +int PyMac_FindResourceModule(PyStringObject *, char *, char *); /* Test for 'PYC ' resource in a file */ PyObject * PyMac_LoadResourceModule(char *, char *); /* Load 'PYC ' resource from file */ +struct filedescr *PyMac_FindModuleExtension(char *, int *, char *); /* Look for module in single folder */ int PyMac_GetDirectory(FSSpec *dirfss, char *prompt); /* Ask user for a directory */ void PyMac_PromptGetFile(short numTypes, ConstSFTypeListPtr typeList, diff --git a/Mac/Python/macglue.c b/Mac/Python/macglue.c index 033e02e..2177036 100644 --- a/Mac/Python/macglue.c +++ b/Mac/Python/macglue.c @@ -41,6 +41,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #include "macglue.h" #include "marshal.h" #include "import.h" +#include "importdl.h" #include "pythonresources.h" @@ -609,8 +610,10 @@ PyMac_InitMenuBar() void PyMac_RestoreMenuBar() { - if ( sioux_mbar ) + if ( sioux_mbar ) { SetMenuBar(sioux_mbar); + DrawMenuBar(); + } } @@ -647,7 +650,8 @@ SIOUXDoAboutBox(void) ** a 'PYC ' resource of the correct name */ int -PyMac_FindResourceModule(module, filename) +PyMac_FindResourceModule(obj, module, filename) +PyStringObject *obj; char *module; char *filename; { @@ -656,7 +660,27 @@ char *filename; short oldrh, filerh; int ok; Handle h; - + +#ifdef INTERN_STRINGS + /* + ** If we have interning find_module takes care of interning all + ** sys.path components. We then keep a record of all sys.path + ** components for which GetFInfo has failed (usually because the + ** component in question is a folder), and we don't try opening these + ** as resource files again. + */ +#define MAXPATHCOMPONENTS 32 + static PyStringObject *not_a_file[MAXPATHCOMPONENTS]; + static int max_not_a_file = 0; + int i; + + if ( obj->ob_sinterned ) { + for( i=0; i< max_not_a_file; i++ ) + if ( obj == not_a_file[i] ) + return 0; + } +#endif /* INTERN_STRINGS */ + if ( strcmp(filename, PyMac_ApplicationPath) == 0 ) { /* ** Special case: the application itself. Use a shortcut to @@ -667,10 +691,15 @@ char *filename; UseResFile(PyMac_AppRefNum); filerh = -1; } else { - if ( FSMakeFSSpec(0, 0, Pstring(filename), &fss) != noErr ) - return 0; /* It doesn't exist */ - if ( FSpGetFInfo(&fss, &finfo) != noErr ) - return 0; /* shouldn't happen, I guess */ + if ( FSMakeFSSpec(0, 0, Pstring(filename), &fss) != noErr || + FSpGetFInfo(&fss, &finfo) != noErr ) { +#ifdef INTERN_STRINGS + if ( max_not_a_file < MAXPATHCOMPONENTS && obj->ob_sinterned ) + not_a_file[max_not_a_file++] = obj; +#endif /* INTERN_STRINGS */ + /* doesn't exist or is folder */ + return 0; + } oldrh = CurResFile(); filerh = FSpOpenResFile(&fss, fsRdPerm); if ( filerh == -1 ) @@ -773,6 +802,74 @@ error: } /* +** Look for a module in a single folder. Upon entry buf and len +** point to the folder to search, upon exit they refer to the full +** pathname of the module found (if any). +*/ +struct filedescr * +PyMac_FindModuleExtension(char *buf, int *lenp, char *module) +{ + struct filedescr *fdp; + unsigned char fnbuf[64]; + int modnamelen = strlen(module); + FSSpec fss; + short refnum; + long dirid; + + /* + ** Copy the module name to the buffer (already :-terminated) + ** We also copy the first suffix, if this matches immedeately we're + ** lucky and return immedeately. + */ + if ( !_PyImport_Filetab[0].suffix ) + return 0; + + strcpy(buf+*lenp, module); + strcpy(buf+*lenp+modnamelen, _PyImport_Filetab[0].suffix); + if ( FSMakeFSSpec(0, 0, Pstring(buf), &fss) == noErr ) + return _PyImport_Filetab; + /* + ** We cannot check for fnfErr (unfortunately), it can mean either that + ** the file doesn't exist (fine, we try others) or the path leading to it. + */ + refnum = fss.vRefNum; + dirid = fss.parID; + if ( refnum == 0 || dirid == 0 ) /* Fail on nonexistent dir */ + return 0; + /* + ** We now have the folder parameters. Setup the field for the filename + */ + if ( modnamelen > 54 ) return 0; /* Leave room for extension */ + strcpy((char *)fnbuf+1, module); + + for( fdp = _PyImport_Filetab+1; fdp->suffix; fdp++ ) { + strcpy((char *)fnbuf+1+modnamelen, fdp->suffix); + fnbuf[0] = strlen((char *)fnbuf+1); + if (Py_VerboseFlag > 1) + fprintf(stderr, "# trying %s%s\n", buf, fdp->suffix); + if ( FSMakeFSSpec(refnum, dirid, fnbuf, &fss) == noErr ) { + /* Found it. */ + strcpy(buf+*lenp+modnamelen, fdp->suffix); + *lenp = strlen(buf); + return fdp; + } + } + return 0; +} + +#if 0 +int +PyMac_FileExists(char *name) +{ + FSSpec fss; + + if ( FSMakeFSSpec(0, 0, Pstring(name), &fss) == noErr ) + return 1; + return 0; +} +#endif + +/* ** Helper routine for GetDirectory */ static pascal short |