diff options
author | Guido van Rossum <guido@python.org> | 1995-02-18 15:01:31 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-02-18 15:01:31 (GMT) |
commit | c3d1c8e9fcb3c82f7fb7b79a1afe88a154550768 (patch) | |
tree | 65e7d57ce694a4c67364e2e41d02039e38d41926 /Mac/Python | |
parent | f71a9a9c6e9408e8e92157c554d6054cdb9dbb5e (diff) | |
download | cpython-c3d1c8e9fcb3c82f7fb7b79a1afe88a154550768.zip cpython-c3d1c8e9fcb3c82f7fb7b79a1afe88a154550768.tar.gz cpython-c3d1c8e9fcb3c82f7fb7b79a1afe88a154550768.tar.bz2 |
added applet initialization;
fewer restrictions on loading modules from resources (+ fix!);
macstrerror -> MacOS_StrError
Diffstat (limited to 'Mac/Python')
-rw-r--r-- | Mac/Python/macglue.c | 86 |
1 files changed, 74 insertions, 12 deletions
diff --git a/Mac/Python/macglue.c b/Mac/Python/macglue.c index a612a9a..3c67221 100644 --- a/Mac/Python/macglue.c +++ b/Mac/Python/macglue.c @@ -40,10 +40,16 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #include <Desk.h> #include <Traps.h> #include <Processes.h> +#include <Fonts.h> +#include <Menus.h> #ifdef THINK_C #include <OSEvents.h> /* For EvQElPtr */ #endif +#ifndef HAVE_UNIVERSAL_HEADERS +#define GetResourceSizeOnDisk(x) SizeResource(x) +#endif + #include <signal.h> #include <stdio.h> @@ -116,8 +122,8 @@ Pstring(char *str) return buf; } -/* Replace strerror with something that might work */ -char *macstrerror(int err) +/* Like strerror() but for Mac OS error numbers */ +char *PyMac_StrError(int err) { static char buf[256]; Handle h; @@ -162,7 +168,7 @@ PyErr_Mac(PyObject *eobj, int err) } if (err == -1 && PyErr_Occurred()) return NULL; - msg = macstrerror(err); + msg = PyMac_StrError(err); v = Py_BuildValue("(is)", err, msg); PyErr_SetObject(eobj, v); Py_DECREF(v); @@ -500,12 +506,10 @@ char *filename; return 0; /* It doesn't exist */ if ( FSpGetFInfo(&fss, &finfo) != noErr ) return 0; /* shouldn't happen, I guess */ - if ( finfo.fdType != 'rsrc' || finfo.fdCreator != 'PYTH' ) - return 0; /* Not the right type */ oldrh = CurResFile(); filerh = FSpOpenResFile(&fss, fsRdPerm); if ( filerh == -1 ) - return 0; /* Again, shouldn't happen */ + return 0; UseResFile(filerh); SetResLoad(0); h = Get1NamedResource('PYC ', Pstring(module)); @@ -537,10 +541,6 @@ char *filename; goto error; if ( (err=FSpGetFInfo(&fss, &finfo)) != noErr ) goto error; - if ( finfo.fdType != 'rsrc' || finfo.fdCreator != 'PYTH' ) { - PyErr_SetString(PyExc_ImportError, "Incorrect typed file in sys.path"); - return NULL; - } oldrh = CurResFile(); filerh = FSpOpenResFile(&fss, fsRdPerm); if ( filerh == -1 ) { @@ -561,7 +561,7 @@ char *filename; size = GetHandleSize(h); if ( size < 8 ) { PyErr_SetString(PyExc_ImportError, "Resource too small"); - m = NULL; + co = NULL; } else { num = (*h)[0] & 0xff; num = num | (((*h)[1] & 0xff) << 8); @@ -588,7 +588,7 @@ error: { char buf[512]; - sprintf(buf, "%s: %s", filename, macstrerror(err)); + sprintf(buf, "%s: %s", filename, PyMac_StrError(err)); PyErr_SetString(PyExc_ImportError, buf); return NULL; } @@ -746,3 +746,65 @@ PyMac_BuildEventRecord(EventRecord *e) e->where.v, e->modifiers); } + + +/* What follows is used only by applets. */ + +static void +init_mac_world() +{ + MaxApplZone(); + InitGraf(&qd.thePort); + InitFonts(); + InitWindows(); + TEInit(); + InitDialogs((long)0); + InitMenus(); + InitCursor(); +} + +static int +run_main_resource() +{ + Handle h; + long size; + PyObject *code; + PyObject *result; + + h = GetNamedResource('PYC ', "\p__main__"); + if (h == NULL) { + fprintf(stderr, "No 'PYC ' resource named __main__ found\n"); + return 1; + } + size = GetResourceSizeOnDisk(h); + HLock(h); + code = PyMarshal_ReadObjectFromString(*h + 8, (int)(size - 8)); + HUnlock(h); + ReleaseResource(h); + if (code == NULL) { + PyErr_Print(); + return 1; + } + result = PyImport_ExecCodeModule("__main__", code); + Py_DECREF(code); + if (result == NULL) { + PyErr_Print(); + return 1; + } + Py_DECREF(result); + return 0; +} + +void +PyMac_InitApplet() +{ + static char *argv[] = {"__main__", NULL}; + + init_mac_world(); + Py_Initialize(); + PySys_SetArgv((sizeof argv / sizeof argv[0]) - 1, argv); + run_main_resource(); + fflush(stderr); + fflush(stdout); + /* XXX Should we bother to Py_Exit(sts)? */ +} |