1994-08-23 10:34:25 -03:00
|
|
|
/***********************************************************
|
1997-01-31 12:15:11 -04:00
|
|
|
Copyright 1991-1997 by Stichting Mathematisch Centrum, Amsterdam,
|
1995-01-08 10:33:34 -04:00
|
|
|
The Netherlands.
|
1994-08-23 10:34:25 -03:00
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
******************************************************************/
|
|
|
|
|
1995-08-14 09:33:20 -03:00
|
|
|
/* Python interpreter main program */
|
1994-08-23 10:34:25 -03:00
|
|
|
|
1995-08-14 09:33:20 -03:00
|
|
|
#include "Python.h"
|
|
|
|
#include "pythonresources.h"
|
|
|
|
#include "import.h"
|
|
|
|
#include "marshal.h"
|
1996-09-04 12:24:59 -03:00
|
|
|
#include "macglue.h"
|
1994-08-23 10:34:25 -03:00
|
|
|
|
1995-08-14 09:33:20 -03:00
|
|
|
#include <Memory.h>
|
|
|
|
#include <Resources.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <Events.h>
|
|
|
|
#include <Windows.h>
|
1996-03-07 11:17:11 -04:00
|
|
|
#include <Fonts.h>
|
1997-09-09 10:53:21 -03:00
|
|
|
#include <Balloons.h>
|
1999-12-07 19:08:10 -04:00
|
|
|
#ifdef USE_APPEARANCE
|
|
|
|
#include <Gestalt.h>
|
|
|
|
#include <Appearance.h>
|
|
|
|
#endif /* USE_APPEARANCE */
|
1995-08-14 09:33:20 -03:00
|
|
|
#ifdef __MWERKS__
|
|
|
|
#include <SIOUX.h>
|
1995-11-10 10:51:26 -04:00
|
|
|
#define USE_SIOUX
|
1997-01-07 12:19:42 -04:00
|
|
|
#if __profile__ == 1
|
|
|
|
#include <profiler.h>
|
|
|
|
#endif
|
1994-08-23 10:34:25 -03:00
|
|
|
#endif
|
|
|
|
|
1995-10-27 10:32:30 -03:00
|
|
|
#ifdef THINK_C
|
|
|
|
#include <console.h>
|
|
|
|
#endif
|
|
|
|
|
1995-08-14 09:33:20 -03:00
|
|
|
#define STARTUP "PythonStartup"
|
1994-08-23 10:34:25 -03:00
|
|
|
|
1995-08-14 09:33:20 -03:00
|
|
|
extern int Py_DebugFlag; /* For parser.c, declared in pythonrun.c */
|
|
|
|
extern int Py_VerboseFlag; /* For import.c, declared in pythonrun.c */
|
1996-09-06 19:21:07 -03:00
|
|
|
short PyMac_AppRefNum; /* RefNum of application resource fork */
|
1995-08-14 09:33:20 -03:00
|
|
|
|
1996-08-02 12:16:16 -03:00
|
|
|
/* For Py_GetArgcArgv(); set by main() */
|
1995-08-14 09:33:20 -03:00
|
|
|
static char **orig_argv;
|
|
|
|
static int orig_argc;
|
|
|
|
|
1996-09-07 14:09:31 -03:00
|
|
|
PyMac_PrefRecord options;
|
1995-10-27 10:32:30 -03:00
|
|
|
|
1996-08-19 08:18:24 -03:00
|
|
|
static void Py_Main Py_PROTO((int, char **)); /* Forward */
|
|
|
|
void PyMac_Exit Py_PROTO((int)); /* Forward */
|
|
|
|
|
1999-12-07 19:08:10 -04:00
|
|
|
static void init_appearance()
|
|
|
|
{
|
|
|
|
#ifdef USE_APPEARANCE
|
|
|
|
OSErr err;
|
|
|
|
SInt32 response;
|
|
|
|
|
|
|
|
err = Gestalt(gestaltAppearanceAttr,&response);
|
|
|
|
if ( err ) goto no_appearance;
|
|
|
|
if ( !(response&(1<<gestaltAppearanceExists)) ) goto no_appearance;
|
|
|
|
/* XXXX Should we check the version? Compat-mode? */
|
|
|
|
PyMac_AppearanceCompliant = 1;
|
|
|
|
no_appearance:
|
|
|
|
return;
|
|
|
|
#endif /* USE_APPEARANCE */
|
|
|
|
}
|
1996-02-28 11:42:47 -04:00
|
|
|
/* Initialize the Mac toolbox world */
|
|
|
|
|
|
|
|
static void
|
|
|
|
init_mac_world()
|
|
|
|
{
|
|
|
|
#ifdef THINK_C
|
|
|
|
printf("\n");
|
|
|
|
#else
|
|
|
|
MaxApplZone();
|
|
|
|
InitGraf(&qd.thePort);
|
|
|
|
InitFonts();
|
|
|
|
InitWindows();
|
|
|
|
TEInit();
|
|
|
|
InitDialogs((long)0);
|
|
|
|
InitMenus();
|
|
|
|
InitCursor();
|
1999-12-07 19:08:10 -04:00
|
|
|
init_appearance();
|
1996-02-28 11:42:47 -04:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
1996-09-07 14:09:31 -03:00
|
|
|
/*
|
|
|
|
** PyMac_InteractiveOptions - Allow user to set options if option key is pressed
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
PyMac_InteractiveOptions(PyMac_PrefRecord *p, int *argcp, char ***argvp)
|
|
|
|
{
|
|
|
|
KeyMap rmap;
|
|
|
|
unsigned char *map;
|
|
|
|
short item, type;
|
|
|
|
ControlHandle handle;
|
|
|
|
DialogPtr dialog;
|
|
|
|
Rect rect;
|
|
|
|
int old_argc = *argcp;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/*
|
|
|
|
** If the preferences disallows interactive options we return,
|
|
|
|
** similarly of <option> 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); \
|
1997-04-08 12:27:00 -03:00
|
|
|
SetControlValue(handle, (short)p->var);
|
1996-09-07 14:09:31 -03:00
|
|
|
|
|
|
|
SET_OPT_ITEM(OPT_INSPECT, inspect);
|
|
|
|
SET_OPT_ITEM(OPT_VERBOSE, verbose);
|
1997-09-09 10:53:21 -03:00
|
|
|
SET_OPT_ITEM(OPT_OPTIMIZE, optimize);
|
1996-09-07 14:09:31 -03:00
|
|
|
SET_OPT_ITEM(OPT_UNBUFFERED, unbuffered);
|
|
|
|
SET_OPT_ITEM(OPT_DEBUGGING, debugging);
|
|
|
|
SET_OPT_ITEM(OPT_KEEPNORMAL, keep_normal);
|
|
|
|
SET_OPT_ITEM(OPT_KEEPERROR, keep_error);
|
1997-09-09 10:53:21 -03:00
|
|
|
SET_OPT_ITEM(OPT_OLDEXC, oldexc);
|
|
|
|
SET_OPT_ITEM(OPT_NOSITE, nosite);
|
1996-09-07 14:09:31 -03:00
|
|
|
/* 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 ) {
|
1997-04-08 12:27:00 -03:00
|
|
|
DisposeDialog(dialog);
|
1996-09-07 14:09:31 -03:00
|
|
|
exit(0);
|
|
|
|
}
|
1997-09-09 10:53:21 -03:00
|
|
|
if ( item == OPT_HELP ) {
|
|
|
|
HMSetBalloons(!HMGetBalloons());
|
|
|
|
}
|
1996-09-07 14:09:31 -03:00
|
|
|
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; i<old_argc; i++)
|
|
|
|
newer_argv[i] = (*argvp)[i];
|
|
|
|
for(i=old_argc; i<=newer_argc; i++) /* Copy the NULL too */
|
|
|
|
newer_argv[i] = new_argv[i-old_argc+1];
|
|
|
|
*argvp = newer_argv;
|
|
|
|
*argcp = newer_argc;
|
|
|
|
|
|
|
|
/* XXXX Is it not safe to use free() here, apparently */
|
|
|
|
}
|
|
|
|
#define OPT_ITEM(num, var) \
|
|
|
|
if ( item == (num) ) { \
|
|
|
|
p->var = !p->var; \
|
|
|
|
GetDialogItem(dialog, (num), &type, (Handle *)&handle, &rect); \
|
1997-04-08 12:27:00 -03:00
|
|
|
SetControlValue(handle, (short)p->var); \
|
1996-09-07 14:09:31 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
OPT_ITEM(OPT_INSPECT, inspect);
|
|
|
|
OPT_ITEM(OPT_VERBOSE, verbose);
|
1997-09-09 10:53:21 -03:00
|
|
|
OPT_ITEM(OPT_OPTIMIZE, optimize);
|
1996-09-07 14:09:31 -03:00
|
|
|
OPT_ITEM(OPT_UNBUFFERED, unbuffered);
|
|
|
|
OPT_ITEM(OPT_DEBUGGING, debugging);
|
|
|
|
OPT_ITEM(OPT_KEEPNORMAL, keep_normal);
|
|
|
|
OPT_ITEM(OPT_KEEPERROR, keep_error);
|
1997-09-09 10:53:21 -03:00
|
|
|
OPT_ITEM(OPT_OLDEXC, oldexc);
|
|
|
|
OPT_ITEM(OPT_NOSITE, nosite);
|
1996-09-07 14:09:31 -03:00
|
|
|
|
|
|
|
#undef OPT_ITEM
|
|
|
|
}
|
1997-04-08 12:27:00 -03:00
|
|
|
DisposeDialog(dialog);
|
1996-09-07 14:09:31 -03:00
|
|
|
}
|
1996-02-28 11:42:47 -04:00
|
|
|
|
1996-09-07 14:09:31 -03:00
|
|
|
/*
|
|
|
|
** Initialization code, shared by interpreter and applets
|
|
|
|
*/
|
1996-02-28 11:42:47 -04:00
|
|
|
static void
|
1997-01-15 11:49:08 -04:00
|
|
|
init_common(int *argcp, char ***argvp, int embedded)
|
1996-02-28 11:42:47 -04:00
|
|
|
{
|
1996-09-06 19:21:07 -03:00
|
|
|
/* Remember resource fork refnum, for later */
|
|
|
|
PyMac_AppRefNum = CurResFile();
|
|
|
|
|
1996-02-28 11:42:47 -04:00
|
|
|
/* Initialize toolboxes */
|
|
|
|
init_mac_world();
|
|
|
|
|
|
|
|
#ifdef USE_MAC_SHARED_LIBRARY
|
|
|
|
/* Add the shared library to the stack of resource files */
|
1998-07-31 06:38:01 -03:00
|
|
|
(void)PyMac_init_process_location();
|
1996-02-28 11:42:47 -04:00
|
|
|
PyMac_AddLibResources();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(USE_GUSI)
|
|
|
|
/* Setup GUSI */
|
|
|
|
GUSIDefaultSetup();
|
1996-09-04 12:24:59 -03:00
|
|
|
PyMac_SetGUSISpin();
|
1996-09-06 19:21:07 -03:00
|
|
|
PyMac_SetGUSIOptions();
|
1997-05-23 12:35:14 -03:00
|
|
|
atexit(PyMac_StopGUSISpin);
|
1996-02-28 11:42:47 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef USE_SIOUX
|
|
|
|
/* Set various SIOUX flags. Some are changed later based on options */
|
1997-06-12 07:49:13 -03:00
|
|
|
/* SIOUXSettings.standalone = 0; /* XXXX Attempting to keep sioux from eating events */
|
1996-02-28 11:42:47 -04:00
|
|
|
SIOUXSettings.asktosaveonclose = 0;
|
|
|
|
SIOUXSettings.showstatusline = 0;
|
|
|
|
SIOUXSettings.tabspaces = 4;
|
|
|
|
#endif
|
|
|
|
|
1996-09-07 14:09:31 -03:00
|
|
|
/* Get options from preference file (or from applet resource fork) */
|
|
|
|
options.keep_error = 1; /* default-default */
|
|
|
|
PyMac_PreferenceOptions(&options);
|
|
|
|
|
1997-01-15 11:49:08 -04:00
|
|
|
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, options.noargs);
|
|
|
|
|
|
|
|
/* Do interactive option setting, if allowed and <option> depressed */
|
|
|
|
PyMac_InteractiveOptions(&options, argcp, argvp);
|
|
|
|
}
|
1996-09-07 14:09:31 -03:00
|
|
|
|
|
|
|
/* Copy selected options to where the machine-independent stuff wants it */
|
|
|
|
Py_VerboseFlag = options.verbose;
|
1997-08-08 11:56:41 -03:00
|
|
|
/* Py_SuppressPrintingFlag = options.suppress_print; */
|
1997-09-09 10:53:21 -03:00
|
|
|
Py_OptimizeFlag = options.optimize;
|
1996-09-07 14:09:31 -03:00
|
|
|
Py_DebugFlag = options.debugging;
|
1997-10-07 18:48:57 -03:00
|
|
|
Py_NoSiteFlag = options.nosite;
|
|
|
|
Py_UseClassExceptionsFlag = !(options.oldexc);
|
1997-06-03 12:28:29 -03:00
|
|
|
if ( options.noargs ) {
|
|
|
|
/* don't process events at all without the scripts permission */
|
|
|
|
PyMacSchedParams scp;
|
|
|
|
|
|
|
|
PyMac_GetSchedParams(&scp);
|
|
|
|
scp.process_events = 0;
|
|
|
|
/* Should we disable command-dot as well? */
|
|
|
|
PyMac_SetSchedParams(&scp);
|
|
|
|
}
|
1997-09-09 10:53:21 -03:00
|
|
|
/* XXXX dispatch oldexc and nosite */
|
1996-09-07 14:09:31 -03:00
|
|
|
|
|
|
|
/* Set buffering */
|
|
|
|
if (options.unbuffered) {
|
|
|
|
#ifndef MPW
|
|
|
|
setbuf(stdout, (char *)NULL);
|
|
|
|
setbuf(stderr, (char *)NULL);
|
|
|
|
#else
|
|
|
|
/* On MPW (3.2) unbuffered seems to hang */
|
|
|
|
setvbuf(stdout, (char *)NULL, _IOLBF, BUFSIZ);
|
|
|
|
setvbuf(stderr, (char *)NULL, _IOLBF, BUFSIZ);
|
|
|
|
#endif
|
|
|
|
}
|
1997-01-07 12:19:42 -04:00
|
|
|
#if __profile__ == 1
|
|
|
|
/* collectSummary or collectDetailed, timebase, #routines, max stack depth */
|
1999-09-30 08:20:11 -03:00
|
|
|
ProfilerInit(collectSummary, bestTimeBase, 8000, 250);
|
1997-01-07 12:19:42 -04:00
|
|
|
#endif
|
1997-08-08 11:56:41 -03:00
|
|
|
|
|
|
|
/* Tell the rest of python about our argc/argv */
|
|
|
|
orig_argc = *argcp; /* For Py_GetArgcArgv() */
|
|
|
|
orig_argv = *argvp;
|
|
|
|
Py_SetProgramName((*argvp)[0]);
|
1996-02-28 11:42:47 -04:00
|
|
|
}
|
|
|
|
|
1996-09-07 14:09:31 -03:00
|
|
|
/*
|
|
|
|
** Inspection mode after script/applet termination
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
run_inspect()
|
|
|
|
{
|
|
|
|
int sts = 0;
|
|
|
|
|
|
|
|
if (options.inspect && isatty((int)fileno(stdin)))
|
|
|
|
sts = PyRun_AnyFile(stdin, "<stdin>") != 0;
|
|
|
|
return sts;
|
|
|
|
}
|
1996-02-28 11:42:47 -04:00
|
|
|
|
1995-08-14 09:33:20 -03:00
|
|
|
#ifdef USE_MAC_APPLET_SUPPORT
|
|
|
|
/* Applet support */
|
|
|
|
|
|
|
|
/* Run a compiled Python Python script from 'PYC ' resource __main__ */
|
|
|
|
static int
|
|
|
|
run_main_resource()
|
|
|
|
{
|
|
|
|
Handle h;
|
|
|
|
long size;
|
|
|
|
PyObject *code;
|
|
|
|
PyObject *result;
|
|
|
|
|
|
|
|
h = GetNamedResource('PYC ', "\p__main__");
|
|
|
|
if (h == NULL) {
|
|
|
|
Alert(NOPYC_ALERT, NULL);
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Initialization sequence for applets */
|
|
|
|
void
|
|
|
|
PyMac_InitApplet()
|
|
|
|
{
|
|
|
|
int argc;
|
|
|
|
char **argv;
|
|
|
|
int err;
|
|
|
|
|
1997-01-15 11:49:08 -04:00
|
|
|
init_common(&argc, &argv, 0);
|
1996-09-07 14:09:31 -03:00
|
|
|
|
1995-08-14 09:33:20 -03:00
|
|
|
Py_Initialize();
|
|
|
|
PySys_SetArgv(argc, argv);
|
1996-09-07 14:09:31 -03:00
|
|
|
|
1995-08-14 09:33:20 -03:00
|
|
|
err = run_main_resource();
|
1996-09-07 14:09:31 -03:00
|
|
|
|
|
|
|
err = (run_inspect() || err);
|
|
|
|
|
1995-08-14 09:33:20 -03:00
|
|
|
fflush(stderr);
|
|
|
|
fflush(stdout);
|
1995-10-27 10:32:30 -03:00
|
|
|
PyMac_Exit(err);
|
1995-08-14 09:33:20 -03:00
|
|
|
/* XXX Should we bother to Py_Exit(sts)? */
|
|
|
|
}
|
1995-02-02 10:27:31 -04:00
|
|
|
|
1997-01-15 11:49:08 -04:00
|
|
|
/*
|
|
|
|
** Hook for embedding python.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
PyMac_Initialize()
|
|
|
|
{
|
|
|
|
int argc;
|
|
|
|
char **argv;
|
|
|
|
|
|
|
|
init_common(&argc, &argv, 1);
|
|
|
|
Py_Initialize();
|
|
|
|
PySys_SetArgv(argc, argv);
|
|
|
|
}
|
|
|
|
|
1995-08-14 09:33:20 -03:00
|
|
|
#endif /* USE_MAC_APPLET_SUPPORT */
|
1994-12-14 09:47:30 -04:00
|
|
|
|
1995-08-14 09:33:20 -03:00
|
|
|
/* For normal application */
|
|
|
|
void
|
|
|
|
PyMac_InitApplication()
|
|
|
|
{
|
1994-08-23 10:34:25 -03:00
|
|
|
int argc;
|
|
|
|
char **argv;
|
1995-08-14 09:33:20 -03:00
|
|
|
|
1997-01-15 11:49:08 -04:00
|
|
|
init_common(&argc, &argv, 0);
|
1996-09-07 14:09:31 -03:00
|
|
|
|
1995-08-14 09:33:20 -03:00
|
|
|
if ( argc > 1 ) {
|
|
|
|
/* We're running a script. Attempt to change current directory */
|
|
|
|
char curwd[256], *endp;
|
1995-02-13 07:35:34 -04:00
|
|
|
|
1995-08-14 09:33:20 -03:00
|
|
|
strcpy(curwd, argv[1]);
|
|
|
|
endp = strrchr(curwd, ':');
|
|
|
|
if ( endp && endp > curwd ) {
|
|
|
|
*endp = '\0';
|
|
|
|
|
|
|
|
chdir(curwd);
|
1996-03-06 12:21:34 -04:00
|
|
|
#ifdef USE_GUSI
|
|
|
|
/* Change MacOS's idea of wd too */
|
|
|
|
PyMac_FixGUSIcd();
|
|
|
|
#endif
|
1995-02-13 07:35:34 -04:00
|
|
|
}
|
1995-08-14 09:33:20 -03:00
|
|
|
}
|
|
|
|
Py_Main(argc, argv);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Main program */
|
|
|
|
|
1996-08-19 08:18:24 -03:00
|
|
|
static void
|
1995-08-14 09:33:20 -03:00
|
|
|
Py_Main(argc, argv)
|
|
|
|
int argc;
|
|
|
|
char **argv;
|
|
|
|
{
|
|
|
|
int sts;
|
|
|
|
char *command = NULL;
|
|
|
|
char *filename = NULL;
|
|
|
|
FILE *fp = stdin;
|
1996-03-12 09:29:04 -04:00
|
|
|
|
1995-08-14 09:33:20 -03:00
|
|
|
filename = argv[1];
|
|
|
|
|
|
|
|
if (Py_VerboseFlag ||
|
|
|
|
command == NULL && filename == NULL && isatty((int)fileno(fp)))
|
|
|
|
fprintf(stderr, "Python %s\n%s\n",
|
1996-07-10 12:48:25 -03:00
|
|
|
Py_GetVersion(), Py_GetCopyright());
|
1995-08-14 09:33:20 -03:00
|
|
|
|
|
|
|
if (filename != NULL) {
|
|
|
|
if ((fp = fopen(filename, "r")) == NULL) {
|
|
|
|
fprintf(stderr, "%s: can't open file '%s'\n",
|
|
|
|
argv[0], filename);
|
1995-10-27 10:32:30 -03:00
|
|
|
PyMac_Exit(2);
|
1995-08-14 09:33:20 -03:00
|
|
|
}
|
1994-08-23 10:34:25 -03:00
|
|
|
}
|
1995-08-14 09:33:20 -03:00
|
|
|
|
1996-09-07 14:09:31 -03:00
|
|
|
/* We initialize the menubar here, hoping SIOUX is initialized by now */
|
1996-09-05 21:30:45 -03:00
|
|
|
PyMac_InitMenuBar();
|
|
|
|
|
1995-08-14 09:33:20 -03:00
|
|
|
Py_Initialize();
|
|
|
|
|
|
|
|
PySys_SetArgv(argc-1, argv+1);
|
|
|
|
|
|
|
|
if (filename == NULL && isatty((int)fileno(fp))) {
|
|
|
|
FILE *fp = fopen(STARTUP, "r");
|
|
|
|
if (fp != NULL) {
|
|
|
|
(void) PyRun_SimpleFile(fp, STARTUP);
|
|
|
|
PyErr_Clear();
|
|
|
|
fclose(fp);
|
|
|
|
}
|
1994-08-23 10:34:25 -03:00
|
|
|
}
|
1995-08-14 09:33:20 -03:00
|
|
|
sts = PyRun_AnyFile(
|
|
|
|
fp, filename == NULL ? "<stdin>" : filename) != 0;
|
|
|
|
if (filename != NULL)
|
|
|
|
fclose(fp);
|
1996-09-07 14:09:31 -03:00
|
|
|
|
|
|
|
if ( filename != NULL || command != NULL )
|
|
|
|
sts = (run_inspect() || sts);
|
1995-08-14 09:33:20 -03:00
|
|
|
|
|
|
|
Py_Exit(sts);
|
|
|
|
/*NOTREACHED*/
|
|
|
|
}
|
|
|
|
|
1995-10-27 10:32:30 -03:00
|
|
|
/*
|
|
|
|
** Terminate application
|
|
|
|
*/
|
1996-08-19 08:18:24 -03:00
|
|
|
void
|
1995-10-27 10:32:30 -03:00
|
|
|
PyMac_Exit(status)
|
|
|
|
int status;
|
|
|
|
{
|
|
|
|
int keep;
|
1997-01-07 12:19:42 -04:00
|
|
|
|
|
|
|
#if __profile__ == 1
|
|
|
|
ProfilerDump("\pPython Profiler Results");
|
|
|
|
ProfilerTerm();
|
|
|
|
#endif
|
1995-10-27 10:32:30 -03:00
|
|
|
if ( status )
|
1996-09-07 14:09:31 -03:00
|
|
|
keep = options.keep_error;
|
1995-10-27 10:32:30 -03:00
|
|
|
else
|
1996-09-07 14:09:31 -03:00
|
|
|
keep = options.keep_normal;
|
1995-10-27 10:32:30 -03:00
|
|
|
|
1995-11-10 10:51:26 -04:00
|
|
|
#ifdef USE_SIOUX
|
|
|
|
if (keep) {
|
|
|
|
SIOUXSettings.standalone = 1;
|
|
|
|
SIOUXSettings.autocloseonquit = 0;
|
1996-03-25 11:46:03 -04:00
|
|
|
SIOUXSetTitle("\p\307terminated\310");
|
1997-06-12 07:49:13 -03:00
|
|
|
PyMac_RestoreMenuBar();
|
1997-05-07 12:48:54 -03:00
|
|
|
#ifdef USE_MSL
|
|
|
|
/*
|
|
|
|
** Temporary workaround: autocloseonquit clearing does not
|
|
|
|
** currently work for the MSL/GUSI combo.
|
|
|
|
*/
|
|
|
|
while(getchar() > 0);
|
|
|
|
#endif
|
1995-11-10 10:51:26 -04:00
|
|
|
}
|
1995-10-27 10:32:30 -03:00
|
|
|
else
|
|
|
|
SIOUXSettings.autocloseonquit = 1;
|
1996-09-04 12:24:59 -03:00
|
|
|
#endif /* USE_SIOUX */
|
1995-10-27 10:32:30 -03:00
|
|
|
#ifdef THINK_C
|
|
|
|
console_options.pause_atexit = keep;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
exit(status);
|
|
|
|
}
|
1995-08-14 09:33:20 -03:00
|
|
|
|
|
|
|
/* Return the program name -- some code out there needs this. */
|
1997-05-23 12:35:14 -03:00
|
|
|
char *
|
|
|
|
Py_GetProgramFullPath()
|
|
|
|
{
|
1997-08-08 11:56:41 -03:00
|
|
|
return orig_argv[0];
|
1997-05-23 12:35:14 -03:00
|
|
|
}
|
|
|
|
|
1995-08-14 09:33:20 -03:00
|
|
|
|
|
|
|
/* Make the *original* argc/argv available to other modules.
|
|
|
|
This is rare, but it is needed by the secureware extension. */
|
|
|
|
|
|
|
|
void
|
1996-08-02 12:16:16 -03:00
|
|
|
Py_GetArgcArgv(argc,argv)
|
1995-08-14 09:33:20 -03:00
|
|
|
int *argc;
|
|
|
|
char ***argv;
|
|
|
|
{
|
|
|
|
*argc = orig_argc;
|
|
|
|
*argv = orig_argv;
|
1994-08-23 10:34:25 -03:00
|
|
|
}
|
1996-08-02 12:16:16 -03:00
|
|
|
|
|
|
|
/* More cruft that shouldn't really be here, used in sysmodule.c */
|
|
|
|
|
|
|
|
char *
|
|
|
|
Py_GetPrefix()
|
|
|
|
{
|
1997-09-08 10:22:22 -03:00
|
|
|
return PyMac_GetPythonDir();
|
1996-08-02 12:16:16 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
char *
|
|
|
|
Py_GetExecPrefix()
|
|
|
|
{
|
1997-09-08 10:22:22 -03:00
|
|
|
return PyMac_GetPythonDir();
|
1996-08-02 12:16:16 -03:00
|
|
|
}
|