blob: 98c83238432ee52250488ccd7efd7927435d4c89 [file] [log] [blame]
Guido van Rossumb0f3c821994-08-23 13:34:25 +00001/***********************************************************
Jack Jansen42218ce1997-01-31 16:15:11 +00002Copyright 1991-1997 by Stichting Mathematisch Centrum, Amsterdam,
Guido van Rossum99546991995-01-08 14:33:34 +00003The Netherlands.
Guido van Rossumb0f3c821994-08-23 13:34:25 +00004
5 All Rights Reserved
6
7Permission to use, copy, modify, and distribute this software and its
8documentation for any purpose and without fee is hereby granted,
9provided that the above copyright notice appear in all copies and that
10both that copyright notice and this permission notice appear in
11supporting documentation, and that the names of Stichting Mathematisch
12Centrum or CWI not be used in advertising or publicity pertaining to
13distribution of the software without specific, written prior permission.
14
15STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
16THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
17FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
18FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
19WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
20ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
21OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
22
23******************************************************************/
24
Jack Jansen696c9581995-08-14 12:33:20 +000025/* Python interpreter main program */
Guido van Rossumb0f3c821994-08-23 13:34:25 +000026
Jack Jansen696c9581995-08-14 12:33:20 +000027#include "Python.h"
28#include "pythonresources.h"
29#include "import.h"
30#include "marshal.h"
Jack Jansenf6865f71996-09-04 15:24:59 +000031#include "macglue.h"
Guido van Rossumb0f3c821994-08-23 13:34:25 +000032
Jack Jansen696c9581995-08-14 12:33:20 +000033#include <Memory.h>
34#include <Resources.h>
Guido van Rossumb0f3c821994-08-23 13:34:25 +000035#include <stdio.h>
Jack Jansen696c9581995-08-14 12:33:20 +000036#include <Events.h>
37#include <Windows.h>
Jack Jansen2429c721996-03-07 15:17:11 +000038#include <Fonts.h>
Jack Jansen36b983c1997-09-09 13:53:21 +000039#include <Balloons.h>
Jack Jansen8f5725a1999-12-07 23:08:10 +000040#ifdef USE_APPEARANCE
41#include <Gestalt.h>
42#include <Appearance.h>
43#endif /* USE_APPEARANCE */
Jack Jansenc76fd391995-02-02 14:27:31 +000044#ifdef __MWERKS__
45#include <SIOUX.h>
Jack Jansen1e8557a1995-11-10 14:51:26 +000046#define USE_SIOUX
Jack Jansen8c693211997-01-07 16:19:42 +000047#if __profile__ == 1
48#include <profiler.h>
49#endif
Jack Jansenc76fd391995-02-02 14:27:31 +000050#endif
51
Jack Jansen0168f271995-10-27 13:32:30 +000052#ifdef THINK_C
53#include <console.h>
54#endif
55
Jack Jansen696c9581995-08-14 12:33:20 +000056#define STARTUP "PythonStartup"
Jack Jansenbac428d1994-12-14 13:47:30 +000057
Jack Jansen696c9581995-08-14 12:33:20 +000058extern int Py_DebugFlag; /* For parser.c, declared in pythonrun.c */
59extern int Py_VerboseFlag; /* For import.c, declared in pythonrun.c */
Jack Jansen3f7d2b41996-09-06 22:21:07 +000060short PyMac_AppRefNum; /* RefNum of application resource fork */
Jack Jansen696c9581995-08-14 12:33:20 +000061
Jack Jansen1d2f8631996-08-02 15:16:16 +000062/* For Py_GetArgcArgv(); set by main() */
Jack Jansen696c9581995-08-14 12:33:20 +000063static char **orig_argv;
64static int orig_argc;
65
Jack Jansen7d5f9e81996-09-07 17:09:31 +000066PyMac_PrefRecord options;
Jack Jansen0168f271995-10-27 13:32:30 +000067
Jack Jansen76ceece1996-08-19 11:18:24 +000068static void Py_Main Py_PROTO((int, char **)); /* Forward */
69void PyMac_Exit Py_PROTO((int)); /* Forward */
70
Jack Jansen8f5725a1999-12-07 23:08:10 +000071static void init_appearance()
72{
73#ifdef USE_APPEARANCE
74 OSErr err;
75 SInt32 response;
76
77 err = Gestalt(gestaltAppearanceAttr,&response);
78 if ( err ) goto no_appearance;
79 if ( !(response&(1<<gestaltAppearanceExists)) ) goto no_appearance;
80 /* XXXX Should we check the version? Compat-mode? */
81 PyMac_AppearanceCompliant = 1;
82no_appearance:
83 return;
84#endif /* USE_APPEARANCE */
85}
Jack Jansen01fbc681996-02-28 15:42:47 +000086/* Initialize the Mac toolbox world */
87
88static void
89init_mac_world()
90{
91#ifdef THINK_C
92 printf("\n");
93#else
94 MaxApplZone();
95 InitGraf(&qd.thePort);
96 InitFonts();
97 InitWindows();
98 TEInit();
99 InitDialogs((long)0);
100 InitMenus();
101 InitCursor();
Jack Jansen8f5725a1999-12-07 23:08:10 +0000102 init_appearance();
Jack Jansen01fbc681996-02-28 15:42:47 +0000103#endif
104}
105
Jack Jansen7d5f9e81996-09-07 17:09:31 +0000106/*
107** PyMac_InteractiveOptions - Allow user to set options if option key is pressed
108*/
Jack Jansen01fbc681996-02-28 15:42:47 +0000109static void
Jack Jansen7d5f9e81996-09-07 17:09:31 +0000110PyMac_InteractiveOptions(PyMac_PrefRecord *p, int *argcp, char ***argvp)
111{
112 KeyMap rmap;
113 unsigned char *map;
114 short item, type;
115 ControlHandle handle;
116 DialogPtr dialog;
117 Rect rect;
118 int old_argc = *argcp;
119 int i;
120
121 /*
122 ** If the preferences disallows interactive options we return,
123 ** similarly of <option> isn't pressed.
124 */
125 if (p->nointopt) return;
126
127 GetKeys(rmap);
128 map = (unsigned char *)rmap;
129 if ( ( map[0x3a>>3] & (1<<(0x3a&7)) ) == 0 ) /* option key is 3a */
130 return;
131
132 dialog = GetNewDialog(OPT_DIALOG, NULL, (WindowPtr)-1);
133 if ( dialog == NULL ) {
134 printf("Option dialog not found - cannot set options\n");
135 return;
136 }
137 SetDialogDefaultItem(dialog, OPT_OK);
138 SetDialogCancelItem(dialog, OPT_CANCEL);
139
140 /* Set default values */
141#define SET_OPT_ITEM(num, var) \
142 GetDialogItem(dialog, (num), &type, (Handle *)&handle, &rect); \
Jack Jansen08c3be31997-04-08 15:27:00 +0000143 SetControlValue(handle, (short)p->var);
Jack Jansen7d5f9e81996-09-07 17:09:31 +0000144
145 SET_OPT_ITEM(OPT_INSPECT, inspect);
146 SET_OPT_ITEM(OPT_VERBOSE, verbose);
Jack Jansen36b983c1997-09-09 13:53:21 +0000147 SET_OPT_ITEM(OPT_OPTIMIZE, optimize);
Jack Jansen7d5f9e81996-09-07 17:09:31 +0000148 SET_OPT_ITEM(OPT_UNBUFFERED, unbuffered);
149 SET_OPT_ITEM(OPT_DEBUGGING, debugging);
150 SET_OPT_ITEM(OPT_KEEPNORMAL, keep_normal);
151 SET_OPT_ITEM(OPT_KEEPERROR, keep_error);
Jack Jansen0c6d0372000-05-05 23:11:14 +0000152 SET_OPT_ITEM(OPT_TABWARN, tabwarn);
Jack Jansen36b983c1997-09-09 13:53:21 +0000153 SET_OPT_ITEM(OPT_NOSITE, nosite);
Jack Jansen0c6d0372000-05-05 23:11:14 +0000154 SET_OPT_ITEM(OPT_NONAVSERV, nonavservice);
Jack Jansen7d5f9e81996-09-07 17:09:31 +0000155 /* The rest are not settable interactively */
156
157#undef SET_OPT_ITEM
158
159 while (1) {
160 handle = NULL;
161 ModalDialog(NULL, &item);
162 if ( item == OPT_OK )
163 break;
164 if ( item == OPT_CANCEL ) {
Jack Jansen08c3be31997-04-08 15:27:00 +0000165 DisposeDialog(dialog);
Jack Jansen7d5f9e81996-09-07 17:09:31 +0000166 exit(0);
167 }
Jack Jansen36b983c1997-09-09 13:53:21 +0000168 if ( item == OPT_HELP ) {
169 HMSetBalloons(!HMGetBalloons());
170 }
Jack Jansen7d5f9e81996-09-07 17:09:31 +0000171 if ( item == OPT_CMDLINE ) {
172 int new_argc, newer_argc;
173 char **new_argv, **newer_argv;
174
175 new_argc = ccommand(&new_argv);
176 newer_argc = (new_argc-1) + old_argc;
177 newer_argv = malloc((newer_argc+1)*sizeof(char *));
178 if( !newer_argv )
179 Py_FatalError("Cannot malloc argv\n");
180 for(i=0; i<old_argc; i++)
181 newer_argv[i] = (*argvp)[i];
182 for(i=old_argc; i<=newer_argc; i++) /* Copy the NULL too */
183 newer_argv[i] = new_argv[i-old_argc+1];
184 *argvp = newer_argv;
185 *argcp = newer_argc;
186
187 /* XXXX Is it not safe to use free() here, apparently */
188 }
189#define OPT_ITEM(num, var) \
190 if ( item == (num) ) { \
191 p->var = !p->var; \
192 GetDialogItem(dialog, (num), &type, (Handle *)&handle, &rect); \
Jack Jansen08c3be31997-04-08 15:27:00 +0000193 SetControlValue(handle, (short)p->var); \
Jack Jansen7d5f9e81996-09-07 17:09:31 +0000194 }
195
196 OPT_ITEM(OPT_INSPECT, inspect);
197 OPT_ITEM(OPT_VERBOSE, verbose);
Jack Jansen36b983c1997-09-09 13:53:21 +0000198 OPT_ITEM(OPT_OPTIMIZE, optimize);
Jack Jansen7d5f9e81996-09-07 17:09:31 +0000199 OPT_ITEM(OPT_UNBUFFERED, unbuffered);
200 OPT_ITEM(OPT_DEBUGGING, debugging);
201 OPT_ITEM(OPT_KEEPNORMAL, keep_normal);
202 OPT_ITEM(OPT_KEEPERROR, keep_error);
Jack Jansen0c6d0372000-05-05 23:11:14 +0000203 OPT_ITEM(OPT_TABWARN, tabwarn);
Jack Jansen36b983c1997-09-09 13:53:21 +0000204 OPT_ITEM(OPT_NOSITE, nosite);
Jack Jansen0c6d0372000-05-05 23:11:14 +0000205 OPT_ITEM(OPT_NONAVSERV, nonavservice);
Jack Jansen7d5f9e81996-09-07 17:09:31 +0000206
207#undef OPT_ITEM
208 }
Jack Jansen08c3be31997-04-08 15:27:00 +0000209 DisposeDialog(dialog);
Jack Jansen7d5f9e81996-09-07 17:09:31 +0000210}
211
212/*
213** Initialization code, shared by interpreter and applets
214*/
215static void
Jack Jansen52ac0371997-01-15 15:49:08 +0000216init_common(int *argcp, char ***argvp, int embedded)
Jack Jansen01fbc681996-02-28 15:42:47 +0000217{
Jack Jansen3f7d2b41996-09-06 22:21:07 +0000218 /* Remember resource fork refnum, for later */
219 PyMac_AppRefNum = CurResFile();
220
Jack Jansen01fbc681996-02-28 15:42:47 +0000221 /* Initialize toolboxes */
222 init_mac_world();
223
224#ifdef USE_MAC_SHARED_LIBRARY
225 /* Add the shared library to the stack of resource files */
Jack Jansen87c485c1998-07-31 09:38:01 +0000226 (void)PyMac_init_process_location();
Jack Jansen01fbc681996-02-28 15:42:47 +0000227 PyMac_AddLibResources();
228#endif
229
Jack Jansen2d1306b2000-04-07 09:10:49 +0000230#if defined(USE_GUSI1)
Jack Jansen01fbc681996-02-28 15:42:47 +0000231 /* Setup GUSI */
232 GUSIDefaultSetup();
Jack Jansenf6865f71996-09-04 15:24:59 +0000233 PyMac_SetGUSISpin();
Jack Jansen3f7d2b41996-09-06 22:21:07 +0000234 PyMac_SetGUSIOptions();
Jack Jansen01fbc681996-02-28 15:42:47 +0000235#endif
Jack Jansen2d1306b2000-04-07 09:10:49 +0000236#if defined(USE_GUSI)
237 atexit(PyMac_StopGUSISpin);
238#endif
Jack Jansen01fbc681996-02-28 15:42:47 +0000239
240#ifdef USE_SIOUX
241 /* Set various SIOUX flags. Some are changed later based on options */
Jack Jansencaa7c461997-06-12 10:49:13 +0000242/* SIOUXSettings.standalone = 0; /* XXXX Attempting to keep sioux from eating events */
Jack Jansen01fbc681996-02-28 15:42:47 +0000243 SIOUXSettings.asktosaveonclose = 0;
244 SIOUXSettings.showstatusline = 0;
245 SIOUXSettings.tabspaces = 4;
246#endif
247
Jack Jansen7d5f9e81996-09-07 17:09:31 +0000248 /* Get options from preference file (or from applet resource fork) */
249 options.keep_error = 1; /* default-default */
250 PyMac_PreferenceOptions(&options);
251
Jack Jansen52ac0371997-01-15 15:49:08 +0000252 if ( embedded ) {
253 static char *emb_argv[] = {"embedded-python", 0};
254
255 *argcp = 1;
256 *argvp = emb_argv;
257 } else {
258 /* Create argc/argv. Do it before we go into the options event loop. */
259 *argcp = PyMac_GetArgv(argvp, options.noargs);
260
261 /* Do interactive option setting, if allowed and <option> depressed */
262 PyMac_InteractiveOptions(&options, argcp, argvp);
263 }
Jack Jansen7d5f9e81996-09-07 17:09:31 +0000264
265 /* Copy selected options to where the machine-independent stuff wants it */
266 Py_VerboseFlag = options.verbose;
Jack Jansen7330b391997-08-08 14:56:41 +0000267/* Py_SuppressPrintingFlag = options.suppress_print; */
Jack Jansen36b983c1997-09-09 13:53:21 +0000268 Py_OptimizeFlag = options.optimize;
Jack Jansen7d5f9e81996-09-07 17:09:31 +0000269 Py_DebugFlag = options.debugging;
Jack Jansena7a89eb1997-10-07 21:48:57 +0000270 Py_NoSiteFlag = options.nosite;
Jack Jansen0c6d0372000-05-05 23:11:14 +0000271 Py_TabcheckFlag = options.tabwarn;
Jack Jansene3ae0df1997-06-03 15:28:29 +0000272 if ( options.noargs ) {
273 /* don't process events at all without the scripts permission */
274 PyMacSchedParams scp;
275
276 PyMac_GetSchedParams(&scp);
277 scp.process_events = 0;
278 /* Should we disable command-dot as well? */
279 PyMac_SetSchedParams(&scp);
280 }
Jack Jansen36b983c1997-09-09 13:53:21 +0000281 /* XXXX dispatch oldexc and nosite */
Jack Jansen7d5f9e81996-09-07 17:09:31 +0000282
283 /* Set buffering */
284 if (options.unbuffered) {
285#ifndef MPW
286 setbuf(stdout, (char *)NULL);
287 setbuf(stderr, (char *)NULL);
288#else
289 /* On MPW (3.2) unbuffered seems to hang */
290 setvbuf(stdout, (char *)NULL, _IOLBF, BUFSIZ);
291 setvbuf(stderr, (char *)NULL, _IOLBF, BUFSIZ);
292#endif
293 }
Jack Jansen8c693211997-01-07 16:19:42 +0000294#if __profile__ == 1
295 /* collectSummary or collectDetailed, timebase, #routines, max stack depth */
Jack Jansene7424871999-09-30 11:20:11 +0000296 ProfilerInit(collectSummary, bestTimeBase, 8000, 250);
Jack Jansen8c693211997-01-07 16:19:42 +0000297#endif
Jack Jansen7330b391997-08-08 14:56:41 +0000298
299 /* Tell the rest of python about our argc/argv */
300 orig_argc = *argcp; /* For Py_GetArgcArgv() */
301 orig_argv = *argvp;
302 Py_SetProgramName((*argvp)[0]);
Jack Jansen01fbc681996-02-28 15:42:47 +0000303}
304
Jack Jansen7d5f9e81996-09-07 17:09:31 +0000305/*
306** Inspection mode after script/applet termination
307*/
308static int
309run_inspect()
310{
311 int sts = 0;
312
313 if (options.inspect && isatty((int)fileno(stdin)))
314 sts = PyRun_AnyFile(stdin, "<stdin>") != 0;
315 return sts;
316}
Jack Jansen01fbc681996-02-28 15:42:47 +0000317
Jack Jansen0c6d0372000-05-05 23:11:14 +0000318/*
319** Import the macfsn module, which will override the Standard File
320** calls in the macfs builtin module by Navigation Services versions,
321** if available on this machine.
322*/
323static void
324PyMac_InstallNavServicesForSF()
325{
326 if ( !options.nonavservice ) {
327 PyObject *m = PyImport_ImportModule("macfsn");
328
329 if ( m == NULL ) {
330 PySys_WriteStderr("'import macfsn' failed; ");
331 if (Py_VerboseFlag) {
332 PySys_WriteStderr("traceback:\n");
333 PyErr_Print();
334 }
335 else {
336 PySys_WriteStderr("use -v for traceback\n");
337 }
338 }
339 }
340}
341
Jack Jansen696c9581995-08-14 12:33:20 +0000342#ifdef USE_MAC_APPLET_SUPPORT
343/* Applet support */
344
345/* Run a compiled Python Python script from 'PYC ' resource __main__ */
346static int
347run_main_resource()
348{
349 Handle h;
350 long size;
351 PyObject *code;
352 PyObject *result;
353
354 h = GetNamedResource('PYC ', "\p__main__");
355 if (h == NULL) {
356 Alert(NOPYC_ALERT, NULL);
357 return 1;
358 }
359 size = GetResourceSizeOnDisk(h);
360 HLock(h);
361 code = PyMarshal_ReadObjectFromString(*h + 8, (int)(size - 8));
362 HUnlock(h);
363 ReleaseResource(h);
364 if (code == NULL) {
365 PyErr_Print();
366 return 1;
367 }
368 result = PyImport_ExecCodeModule("__main__", code);
369 Py_DECREF(code);
370 if (result == NULL) {
371 PyErr_Print();
372 return 1;
373 }
374 Py_DECREF(result);
375 return 0;
376}
377
378/* Initialization sequence for applets */
379void
380PyMac_InitApplet()
381{
Guido van Rossumb0f3c821994-08-23 13:34:25 +0000382 int argc;
383 char **argv;
Jack Jansen696c9581995-08-14 12:33:20 +0000384 int err;
385
Jack Jansen52ac0371997-01-15 15:49:08 +0000386 init_common(&argc, &argv, 0);
Jack Jansen7d5f9e81996-09-07 17:09:31 +0000387
Jack Jansen696c9581995-08-14 12:33:20 +0000388 Py_Initialize();
Jack Jansen0c6d0372000-05-05 23:11:14 +0000389 PyMac_InstallNavServicesForSF();
Jack Jansen696c9581995-08-14 12:33:20 +0000390 PySys_SetArgv(argc, argv);
Jack Jansen7d5f9e81996-09-07 17:09:31 +0000391
Jack Jansen696c9581995-08-14 12:33:20 +0000392 err = run_main_resource();
Jack Jansen7d5f9e81996-09-07 17:09:31 +0000393
394 err = (run_inspect() || err);
395
Jack Jansen696c9581995-08-14 12:33:20 +0000396 fflush(stderr);
397 fflush(stdout);
Jack Jansen0168f271995-10-27 13:32:30 +0000398 PyMac_Exit(err);
Jack Jansen696c9581995-08-14 12:33:20 +0000399 /* XXX Should we bother to Py_Exit(sts)? */
400}
401
Jack Jansen52ac0371997-01-15 15:49:08 +0000402/*
403** Hook for embedding python.
404*/
405void
406PyMac_Initialize()
407{
408 int argc;
409 char **argv;
410
411 init_common(&argc, &argv, 1);
412 Py_Initialize();
Jack Jansen0c6d0372000-05-05 23:11:14 +0000413 PyMac_InstallNavServicesForSF();
Jack Jansen52ac0371997-01-15 15:49:08 +0000414 PySys_SetArgv(argc, argv);
415}
416
Jack Jansen696c9581995-08-14 12:33:20 +0000417#endif /* USE_MAC_APPLET_SUPPORT */
418
419/* For normal application */
420void
421PyMac_InitApplication()
422{
423 int argc;
424 char **argv;
425
Jack Jansen52ac0371997-01-15 15:49:08 +0000426 init_common(&argc, &argv, 0);
Jack Jansen7d5f9e81996-09-07 17:09:31 +0000427
Jack Jansen696c9581995-08-14 12:33:20 +0000428 if ( argc > 1 ) {
429 /* We're running a script. Attempt to change current directory */
430 char curwd[256], *endp;
431
432 strcpy(curwd, argv[1]);
433 endp = strrchr(curwd, ':');
434 if ( endp && endp > curwd ) {
435 *endp = '\0';
436
437 chdir(curwd);
Jack Jansen2d1306b2000-04-07 09:10:49 +0000438#ifdef USE_GUSI1
Jack Jansen378815c1996-03-06 16:21:34 +0000439 /* Change MacOS's idea of wd too */
440 PyMac_FixGUSIcd();
441#endif
Jack Jansen696c9581995-08-14 12:33:20 +0000442 }
443 }
444 Py_Main(argc, argv);
445}
446
Jack Jansen696c9581995-08-14 12:33:20 +0000447/* Main program */
448
Jack Jansen76ceece1996-08-19 11:18:24 +0000449static void
Jack Jansen696c9581995-08-14 12:33:20 +0000450Py_Main(argc, argv)
451 int argc;
452 char **argv;
453{
Jack Jansen696c9581995-08-14 12:33:20 +0000454 int sts;
455 char *command = NULL;
456 char *filename = NULL;
457 FILE *fp = stdin;
Jack Jansen696c9581995-08-14 12:33:20 +0000458
Jack Jansen696c9581995-08-14 12:33:20 +0000459 filename = argv[1];
460
461 if (Py_VerboseFlag ||
462 command == NULL && filename == NULL && isatty((int)fileno(fp)))
463 fprintf(stderr, "Python %s\n%s\n",
Jack Jansena547dca1996-07-10 15:48:25 +0000464 Py_GetVersion(), Py_GetCopyright());
Jack Jansen696c9581995-08-14 12:33:20 +0000465
466 if (filename != NULL) {
467 if ((fp = fopen(filename, "r")) == NULL) {
468 fprintf(stderr, "%s: can't open file '%s'\n",
469 argv[0], filename);
Jack Jansen0168f271995-10-27 13:32:30 +0000470 PyMac_Exit(2);
Jack Jansen696c9581995-08-14 12:33:20 +0000471 }
472 }
473
Jack Jansen7d5f9e81996-09-07 17:09:31 +0000474 /* We initialize the menubar here, hoping SIOUX is initialized by now */
Jack Jansen3469e991996-09-06 00:30:45 +0000475 PyMac_InitMenuBar();
476
Jack Jansen696c9581995-08-14 12:33:20 +0000477 Py_Initialize();
478
Jack Jansen0c6d0372000-05-05 23:11:14 +0000479 PyMac_InstallNavServicesForSF();
480
Jack Jansen696c9581995-08-14 12:33:20 +0000481 PySys_SetArgv(argc-1, argv+1);
482
483 if (filename == NULL && isatty((int)fileno(fp))) {
484 FILE *fp = fopen(STARTUP, "r");
485 if (fp != NULL) {
486 (void) PyRun_SimpleFile(fp, STARTUP);
487 PyErr_Clear();
488 fclose(fp);
489 }
490 }
491 sts = PyRun_AnyFile(
492 fp, filename == NULL ? "<stdin>" : filename) != 0;
493 if (filename != NULL)
494 fclose(fp);
Jack Jansen7d5f9e81996-09-07 17:09:31 +0000495
496 if ( filename != NULL || command != NULL )
497 sts = (run_inspect() || sts);
Jack Jansen696c9581995-08-14 12:33:20 +0000498
499 Py_Exit(sts);
500 /*NOTREACHED*/
501}
502
Jack Jansen0168f271995-10-27 13:32:30 +0000503/*
504** Terminate application
505*/
Jack Jansen76ceece1996-08-19 11:18:24 +0000506void
Jack Jansen0168f271995-10-27 13:32:30 +0000507PyMac_Exit(status)
508 int status;
509{
510 int keep;
Jack Jansen8c693211997-01-07 16:19:42 +0000511
512#if __profile__ == 1
513 ProfilerDump("\pPython Profiler Results");
514 ProfilerTerm();
515#endif
Jack Jansen0168f271995-10-27 13:32:30 +0000516 if ( status )
Jack Jansen7d5f9e81996-09-07 17:09:31 +0000517 keep = options.keep_error;
Jack Jansen0168f271995-10-27 13:32:30 +0000518 else
Jack Jansen7d5f9e81996-09-07 17:09:31 +0000519 keep = options.keep_normal;
Jack Jansen0168f271995-10-27 13:32:30 +0000520
Jack Jansen1e8557a1995-11-10 14:51:26 +0000521#ifdef USE_SIOUX
522 if (keep) {
523 SIOUXSettings.standalone = 1;
524 SIOUXSettings.autocloseonquit = 0;
Jack Jansen415571c1996-03-25 15:46:03 +0000525 SIOUXSetTitle("\p\307terminated\310");
Jack Jansencaa7c461997-06-12 10:49:13 +0000526 PyMac_RestoreMenuBar();
Jack Jansene44545f1997-05-07 15:48:54 +0000527#ifdef USE_MSL
528 /*
529 ** Temporary workaround: autocloseonquit clearing does not
530 ** currently work for the MSL/GUSI combo.
531 */
532 while(getchar() > 0);
533#endif
Jack Jansen1e8557a1995-11-10 14:51:26 +0000534 }
Jack Jansen0168f271995-10-27 13:32:30 +0000535 else
536 SIOUXSettings.autocloseonquit = 1;
Jack Jansenf6865f71996-09-04 15:24:59 +0000537#endif /* USE_SIOUX */
Jack Jansen0168f271995-10-27 13:32:30 +0000538#ifdef THINK_C
539 console_options.pause_atexit = keep;
540#endif
541
542 exit(status);
543}
Jack Jansen696c9581995-08-14 12:33:20 +0000544
545/* Return the program name -- some code out there needs this. */
Jack Jansena39f1b01997-05-23 15:35:14 +0000546char *
547Py_GetProgramFullPath()
548{
Jack Jansen7330b391997-08-08 14:56:41 +0000549 return orig_argv[0];
Jack Jansena39f1b01997-05-23 15:35:14 +0000550}
551
Jack Jansen696c9581995-08-14 12:33:20 +0000552
553/* Make the *original* argc/argv available to other modules.
554 This is rare, but it is needed by the secureware extension. */
555
556void
Jack Jansen1d2f8631996-08-02 15:16:16 +0000557Py_GetArgcArgv(argc,argv)
Jack Jansen696c9581995-08-14 12:33:20 +0000558 int *argc;
559 char ***argv;
560{
561 *argc = orig_argc;
562 *argv = orig_argv;
Guido van Rossumb0f3c821994-08-23 13:34:25 +0000563}
Jack Jansen1d2f8631996-08-02 15:16:16 +0000564
565/* More cruft that shouldn't really be here, used in sysmodule.c */
566
567char *
568Py_GetPrefix()
569{
Jack Jansenac625691997-09-08 13:22:22 +0000570 return PyMac_GetPythonDir();
Jack Jansen1d2f8631996-08-02 15:16:16 +0000571}
572
573char *
574Py_GetExecPrefix()
575{
Jack Jansenac625691997-09-08 13:22:22 +0000576 return PyMac_GetPythonDir();
Jack Jansen1d2f8631996-08-02 15:16:16 +0000577}