/*********************************************************** Copyright 1991-1997 by Stichting Mathematisch Centrum, Amsterdam, The Netherlands. All Rights Reserved Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation, and that the names of Stichting Mathematisch Centrum or CWI not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ /* Python interpreter main program */ #include "Python.h" #include "pythonresources.h" #include "import.h" #include "marshal.h" #include "macglue.h" #include #include #include #include #include #include #include #ifdef USE_APPEARANCE #include #include #endif /* USE_APPEARANCE */ #ifdef __MWERKS__ #include #define USE_SIOUX extern int ccommand(char ***); #if __profile__ == 1 #include #endif #endif #include #ifdef USE_MAC_SHARED_LIBRARY extern PyMac_AddLibResources(void); #endif #ifdef USE_GUSI #include "GUSISIOUX.h" #endif #define STARTUP "PythonStartup" #define COPYRIGHT \ "Type \"copyright\", \"credits\" or \"license\" for more information." extern int Py_DebugFlag; /* For parser.c, declared in pythonrun.c */ extern int Py_VerboseFlag; /* For import.c, declared in pythonrun.c */ short PyMac_AppRefNum; /* RefNum of application resource fork */ /* For Py_GetArgcArgv(); set by main() */ static char **orig_argv; static int orig_argc; PyMac_PrefRecord PyMac_options; static void Py_Main(int, char **); /* Forward */ void PyMac_Exit(int); /* Forward */ static void init_appearance() { #ifdef USE_APPEARANCE OSErr err; SInt32 response; err = Gestalt(gestaltAppearanceAttr,&response); if ( err ) goto no_appearance; if ( !(response&(1< isn't pressed. */ if (p->nointopt) return; GetKeys(rmap); map = (unsigned char *)rmap; if ( ( map[0x3a>>3] & (1<<(0x3a&7)) ) == 0 ) /* option key is 3a */ return; dialog = GetNewDialog(OPT_DIALOG, NULL, (WindowPtr)-1); if ( dialog == NULL ) { printf("Option dialog not found - cannot set options\n"); return; } SetDialogDefaultItem(dialog, OPT_OK); SetDialogCancelItem(dialog, OPT_CANCEL); /* Set default values */ #define SET_OPT_ITEM(num, var) \ GetDialogItem(dialog, (num), &type, (Handle *)&handle, &rect); \ SetControlValue(handle, (short)p->var); SET_OPT_ITEM(OPT_INSPECT, inspect); SET_OPT_ITEM(OPT_VERBOSE, verbose); SET_OPT_ITEM(OPT_OPTIMIZE, optimize); SET_OPT_ITEM(OPT_UNBUFFERED, unbuffered); SET_OPT_ITEM(OPT_DEBUGGING, debugging); GetDialogItem(dialog, OPT_KEEPALWAYS, &type, (Handle *)&handle, &rect); SetControlValue(handle, (short)(p->keep_console == POPT_KEEPCONSOLE_ALWAYS)); GetDialogItem(dialog, OPT_KEEPOUTPUT, &type, (Handle *)&handle, &rect); SetControlValue(handle, (short)(p->keep_console == POPT_KEEPCONSOLE_OUTPUT)); GetDialogItem(dialog, OPT_KEEPERROR, &type, (Handle *)&handle, &rect); SetControlValue(handle, (short)(p->keep_console == POPT_KEEPCONSOLE_ERROR)); GetDialogItem(dialog, OPT_KEEPNEVER, &type, (Handle *)&handle, &rect); SetControlValue(handle, (short)(p->keep_console == POPT_KEEPCONSOLE_NEVER)); /* SET_OPT_ITEM(OPT_KEEPCONSOLE, keep_console); */ SET_OPT_ITEM(OPT_TABWARN, tabwarn); SET_OPT_ITEM(OPT_NOSITE, nosite); SET_OPT_ITEM(OPT_NONAVSERV, nonavservice); /* The rest are not settable interactively */ #undef SET_OPT_ITEM while (1) { handle = NULL; ModalDialog(NULL, &item); if ( item == OPT_OK ) break; if ( item == OPT_CANCEL ) { DisposeDialog(dialog); exit(0); } #if !TARGET_API_MAC_CARBON if ( item == OPT_HELP ) { HMSetBalloons(!HMGetBalloons()); } #endif if ( item == OPT_CMDLINE ) { int new_argc, newer_argc; char **new_argv, **newer_argv; new_argc = ccommand(&new_argv); newer_argc = (new_argc-1) + old_argc; newer_argv = malloc((newer_argc+1)*sizeof(char *)); if( !newer_argv ) Py_FatalError("Cannot malloc argv\n"); for(i=0; ivar = !p->var; \ GetDialogItem(dialog, (num), &type, (Handle *)&handle, &rect); \ SetControlValue(handle, (short)p->var); \ } OPT_ITEM(OPT_INSPECT, inspect); OPT_ITEM(OPT_VERBOSE, verbose); OPT_ITEM(OPT_OPTIMIZE, optimize); OPT_ITEM(OPT_UNBUFFERED, unbuffered); OPT_ITEM(OPT_DEBUGGING, debugging); if ( item == OPT_KEEPALWAYS ) p->keep_console = POPT_KEEPCONSOLE_ALWAYS; if ( item == OPT_KEEPOUTPUT ) p->keep_console = POPT_KEEPCONSOLE_OUTPUT; if ( item == OPT_KEEPERROR ) p->keep_console = POPT_KEEPCONSOLE_ERROR; if ( item == OPT_KEEPNEVER ) p->keep_console = POPT_KEEPCONSOLE_NEVER; GetDialogItem(dialog, OPT_KEEPALWAYS, &type, (Handle *)&handle, &rect); SetControlValue(handle, (short)(p->keep_console == POPT_KEEPCONSOLE_ALWAYS)); GetDialogItem(dialog, OPT_KEEPOUTPUT, &type, (Handle *)&handle, &rect); SetControlValue(handle, (short)(p->keep_console == POPT_KEEPCONSOLE_OUTPUT)); GetDialogItem(dialog, OPT_KEEPERROR, &type, (Handle *)&handle, &rect); SetControlValue(handle, (short)(p->keep_console == POPT_KEEPCONSOLE_ERROR)); GetDialogItem(dialog, OPT_KEEPNEVER, &type, (Handle *)&handle, &rect); SetControlValue(handle, (short)(p->keep_console == POPT_KEEPCONSOLE_NEVER)); OPT_ITEM(OPT_TABWARN, tabwarn); OPT_ITEM(OPT_NOSITE, nosite); OPT_ITEM(OPT_NONAVSERV, nonavservice); #undef OPT_ITEM } DisposeDialog(dialog); } /* ** Initialization code, shared by interpreter and applets */ static void init_common(int *argcp, char ***argvp, int embedded) { /* Remember resource fork refnum, for later */ PyMac_AppRefNum = CurResFile(); /* Initialize toolboxes */ init_mac_world(); #ifdef USE_MAC_SHARED_LIBRARY /* Add the shared library to the stack of resource files */ (void)PyMac_init_process_location(); PyMac_AddLibResources(); #endif #if defined(USE_GUSI1) /* Setup GUSI */ GUSIDefaultSetup(); PyMac_SetGUSISpin(); PyMac_SetGUSIOptions(); #endif #if defined(USE_GUSI) atexit(PyMac_StopGUSISpin); #endif #ifdef USE_SIOUX /* Set various SIOUX flags. Some are changed later based on options */ /* SIOUXSettings.standalone = 0; /* XXXX Attempting to keep sioux from eating events */ SIOUXSettings.asktosaveonclose = 0; SIOUXSettings.showstatusline = 0; SIOUXSettings.tabspaces = 4; #endif /* Get options from preference file (or from applet resource fork) */ PyMac_options.keep_console = POPT_KEEPCONSOLE_OUTPUT; /* default-default */ PyMac_PreferenceOptions(&PyMac_options); if ( embedded ) { static char *emb_argv[] = {"embedded-python", 0}; *argcp = 1; *argvp = emb_argv; } else { /* Create argc/argv. Do it before we go into the options event loop. */ *argcp = PyMac_GetArgv(argvp, PyMac_options.noargs); #ifndef NO_ARGV0_CHDIR if (*argcp >= 1 && (*argvp)[0] && (*argvp)[0][0]) { /* Workaround for MacOS X, which currently (DP4) doesn't set ** the working folder correctly */ char app_wd[256], *p; strncpy(app_wd, (*argvp)[0], 256); p = strrchr(app_wd, ':'); if ( p ) *p = 0; chdir(app_wd); } #endif /* Do interactive option setting, if allowed and