blob: b49d4acc7271762f2bcd00605c4d205ae8c70882 [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 Jansen9ae898b2000-07-11 21:16:03 +000047extern int ccommand(char ***);
Jack Jansen8c693211997-01-07 16:19:42 +000048#if __profile__ == 1
49#include <profiler.h>
50#endif
Jack Jansenc76fd391995-02-02 14:27:31 +000051#endif
Jack Jansenee6eeb12000-06-02 21:28:52 +000052#include <unistd.h>
Jack Jansen5bdbabd2000-07-24 19:52:52 +000053#ifdef USE_MAC_SHARED_LIBRARY
54extern PyMac_AddLibResources(void);
55#endif
Jack Jansenc76fd391995-02-02 14:27:31 +000056
Jack Jansen696c9581995-08-14 12:33:20 +000057#define STARTUP "PythonStartup"
Jack Jansenbac428d1994-12-14 13:47:30 +000058
Jack Jansen696c9581995-08-14 12:33:20 +000059extern int Py_DebugFlag; /* For parser.c, declared in pythonrun.c */
60extern int Py_VerboseFlag; /* For import.c, declared in pythonrun.c */
Jack Jansen3f7d2b41996-09-06 22:21:07 +000061short PyMac_AppRefNum; /* RefNum of application resource fork */
Jack Jansen696c9581995-08-14 12:33:20 +000062
Jack Jansen1d2f8631996-08-02 15:16:16 +000063/* For Py_GetArgcArgv(); set by main() */
Jack Jansen696c9581995-08-14 12:33:20 +000064static char **orig_argv;
65static int orig_argc;
66
Jack Jansen7d5f9e81996-09-07 17:09:31 +000067PyMac_PrefRecord options;
Jack Jansen0168f271995-10-27 13:32:30 +000068
Jack Jansend88296d2000-07-11 19:51:05 +000069static void Py_Main(int, char **); /* Forward */
70void PyMac_Exit(int); /* Forward */
Jack Jansen76ceece1996-08-19 11:18:24 +000071
Jack Jansen8f5725a1999-12-07 23:08:10 +000072static void init_appearance()
73{
74#ifdef USE_APPEARANCE
75 OSErr err;
76 SInt32 response;
77
78 err = Gestalt(gestaltAppearanceAttr,&response);
79 if ( err ) goto no_appearance;
80 if ( !(response&(1<<gestaltAppearanceExists)) ) goto no_appearance;
81 /* XXXX Should we check the version? Compat-mode? */
82 PyMac_AppearanceCompliant = 1;
83no_appearance:
84 return;
85#endif /* USE_APPEARANCE */
86}
Jack Jansen01fbc681996-02-28 15:42:47 +000087/* Initialize the Mac toolbox world */
88
89static void
90init_mac_world()
91{
Jack Jansen74a1e632000-07-14 22:37:27 +000092#if !TARGET_API_MAC_CARBON
Jack Jansenee6eeb12000-06-02 21:28:52 +000093 /* These aren't needed for carbon */
Jack Jansen01fbc681996-02-28 15:42:47 +000094 MaxApplZone();
95 InitGraf(&qd.thePort);
96 InitFonts();
97 InitWindows();
98 TEInit();
99 InitDialogs((long)0);
100 InitMenus();
Jack Jansenee6eeb12000-06-02 21:28:52 +0000101#endif
Jack Jansen01fbc681996-02-28 15:42:47 +0000102 InitCursor();
Jack Jansen8f5725a1999-12-07 23:08:10 +0000103 init_appearance();
Jack Jansen01fbc681996-02-28 15:42:47 +0000104}
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 Jansen74a1e632000-07-14 22:37:27 +0000168#if !TARGET_API_MAC_CARBON
Jack Jansen36b983c1997-09-09 13:53:21 +0000169 if ( item == OPT_HELP ) {
170 HMSetBalloons(!HMGetBalloons());
171 }
Jack Jansenee6eeb12000-06-02 21:28:52 +0000172#endif
Jack Jansen7d5f9e81996-09-07 17:09:31 +0000173 if ( item == OPT_CMDLINE ) {
174 int new_argc, newer_argc;
175 char **new_argv, **newer_argv;
176
177 new_argc = ccommand(&new_argv);
178 newer_argc = (new_argc-1) + old_argc;
179 newer_argv = malloc((newer_argc+1)*sizeof(char *));
180 if( !newer_argv )
181 Py_FatalError("Cannot malloc argv\n");
182 for(i=0; i<old_argc; i++)
183 newer_argv[i] = (*argvp)[i];
184 for(i=old_argc; i<=newer_argc; i++) /* Copy the NULL too */
185 newer_argv[i] = new_argv[i-old_argc+1];
186 *argvp = newer_argv;
187 *argcp = newer_argc;
188
189 /* XXXX Is it not safe to use free() here, apparently */
190 }
191#define OPT_ITEM(num, var) \
192 if ( item == (num) ) { \
193 p->var = !p->var; \
194 GetDialogItem(dialog, (num), &type, (Handle *)&handle, &rect); \
Jack Jansen08c3be31997-04-08 15:27:00 +0000195 SetControlValue(handle, (short)p->var); \
Jack Jansen7d5f9e81996-09-07 17:09:31 +0000196 }
197
198 OPT_ITEM(OPT_INSPECT, inspect);
199 OPT_ITEM(OPT_VERBOSE, verbose);
Jack Jansen36b983c1997-09-09 13:53:21 +0000200 OPT_ITEM(OPT_OPTIMIZE, optimize);
Jack Jansen7d5f9e81996-09-07 17:09:31 +0000201 OPT_ITEM(OPT_UNBUFFERED, unbuffered);
202 OPT_ITEM(OPT_DEBUGGING, debugging);
203 OPT_ITEM(OPT_KEEPNORMAL, keep_normal);
204 OPT_ITEM(OPT_KEEPERROR, keep_error);
Jack Jansen0c6d0372000-05-05 23:11:14 +0000205 OPT_ITEM(OPT_TABWARN, tabwarn);
Jack Jansen36b983c1997-09-09 13:53:21 +0000206 OPT_ITEM(OPT_NOSITE, nosite);
Jack Jansen0c6d0372000-05-05 23:11:14 +0000207 OPT_ITEM(OPT_NONAVSERV, nonavservice);
Jack Jansen7d5f9e81996-09-07 17:09:31 +0000208
209#undef OPT_ITEM
210 }
Jack Jansen08c3be31997-04-08 15:27:00 +0000211 DisposeDialog(dialog);
Jack Jansen7d5f9e81996-09-07 17:09:31 +0000212}
213
214/*
215** Initialization code, shared by interpreter and applets
216*/
217static void
Jack Jansen52ac0371997-01-15 15:49:08 +0000218init_common(int *argcp, char ***argvp, int embedded)
Jack Jansen01fbc681996-02-28 15:42:47 +0000219{
Jack Jansen3f7d2b41996-09-06 22:21:07 +0000220 /* Remember resource fork refnum, for later */
221 PyMac_AppRefNum = CurResFile();
222
Jack Jansen01fbc681996-02-28 15:42:47 +0000223 /* Initialize toolboxes */
224 init_mac_world();
225
226#ifdef USE_MAC_SHARED_LIBRARY
227 /* Add the shared library to the stack of resource files */
Jack Jansen87c485c1998-07-31 09:38:01 +0000228 (void)PyMac_init_process_location();
Jack Jansen01fbc681996-02-28 15:42:47 +0000229 PyMac_AddLibResources();
230#endif
231
Jack Jansen2d1306b2000-04-07 09:10:49 +0000232#if defined(USE_GUSI1)
Jack Jansen01fbc681996-02-28 15:42:47 +0000233 /* Setup GUSI */
234 GUSIDefaultSetup();
Jack Jansenf6865f71996-09-04 15:24:59 +0000235 PyMac_SetGUSISpin();
Jack Jansen3f7d2b41996-09-06 22:21:07 +0000236 PyMac_SetGUSIOptions();
Jack Jansen01fbc681996-02-28 15:42:47 +0000237#endif
Jack Jansen2d1306b2000-04-07 09:10:49 +0000238#if defined(USE_GUSI)
239 atexit(PyMac_StopGUSISpin);
240#endif
Jack Jansen01fbc681996-02-28 15:42:47 +0000241
242#ifdef USE_SIOUX
243 /* Set various SIOUX flags. Some are changed later based on options */
Jack Jansencaa7c461997-06-12 10:49:13 +0000244/* SIOUXSettings.standalone = 0; /* XXXX Attempting to keep sioux from eating events */
Jack Jansen01fbc681996-02-28 15:42:47 +0000245 SIOUXSettings.asktosaveonclose = 0;
246 SIOUXSettings.showstatusline = 0;
247 SIOUXSettings.tabspaces = 4;
248#endif
249
Jack Jansen7d5f9e81996-09-07 17:09:31 +0000250 /* Get options from preference file (or from applet resource fork) */
251 options.keep_error = 1; /* default-default */
252 PyMac_PreferenceOptions(&options);
253
Jack Jansen52ac0371997-01-15 15:49:08 +0000254 if ( embedded ) {
255 static char *emb_argv[] = {"embedded-python", 0};
256
257 *argcp = 1;
258 *argvp = emb_argv;
259 } else {
260 /* Create argc/argv. Do it before we go into the options event loop. */
261 *argcp = PyMac_GetArgv(argvp, options.noargs);
Jack Jansen660bb1d2000-07-18 09:40:39 +0000262#ifdef USE_ARGV0_CHDIR
Jack Jansen660bb1d2000-07-18 09:40:39 +0000263 if (*argcp >= 1 && (*argvp)[0] && (*argvp)[0][0]) {
264 /* Workaround for MacOS X, which currently (DP4) doesn't set
265 ** the working folder correctly
266 */
267 char app_wd[256], *p;
268
269 strncpy(app_wd, (*argvp)[0], 256);
Jack Jansen660bb1d2000-07-18 09:40:39 +0000270 p = strrchr(app_wd, ':');
271 if ( p ) *p = 0;
Jack Jansen660bb1d2000-07-18 09:40:39 +0000272 chdir(app_wd);
273 }
274#endif
Jack Jansen52ac0371997-01-15 15:49:08 +0000275 /* Do interactive option setting, if allowed and <option> depressed */
276 PyMac_InteractiveOptions(&options, argcp, argvp);
277 }
Jack Jansen7d5f9e81996-09-07 17:09:31 +0000278
279 /* Copy selected options to where the machine-independent stuff wants it */
280 Py_VerboseFlag = options.verbose;
Jack Jansen7330b391997-08-08 14:56:41 +0000281/* Py_SuppressPrintingFlag = options.suppress_print; */
Jack Jansen36b983c1997-09-09 13:53:21 +0000282 Py_OptimizeFlag = options.optimize;
Jack Jansen7d5f9e81996-09-07 17:09:31 +0000283 Py_DebugFlag = options.debugging;
Jack Jansena7a89eb1997-10-07 21:48:57 +0000284 Py_NoSiteFlag = options.nosite;
Jack Jansen0c6d0372000-05-05 23:11:14 +0000285 Py_TabcheckFlag = options.tabwarn;
Jack Jansene3ae0df1997-06-03 15:28:29 +0000286 if ( options.noargs ) {
287 /* don't process events at all without the scripts permission */
288 PyMacSchedParams scp;
289
290 PyMac_GetSchedParams(&scp);
291 scp.process_events = 0;
292 /* Should we disable command-dot as well? */
293 PyMac_SetSchedParams(&scp);
294 }
Jack Jansen36b983c1997-09-09 13:53:21 +0000295 /* XXXX dispatch oldexc and nosite */
Jack Jansen7d5f9e81996-09-07 17:09:31 +0000296
297 /* Set buffering */
298 if (options.unbuffered) {
299#ifndef MPW
300 setbuf(stdout, (char *)NULL);
301 setbuf(stderr, (char *)NULL);
302#else
303 /* On MPW (3.2) unbuffered seems to hang */
304 setvbuf(stdout, (char *)NULL, _IOLBF, BUFSIZ);
305 setvbuf(stderr, (char *)NULL, _IOLBF, BUFSIZ);
306#endif
307 }
Jack Jansen8c693211997-01-07 16:19:42 +0000308#if __profile__ == 1
309 /* collectSummary or collectDetailed, timebase, #routines, max stack depth */
Jack Jansene7424871999-09-30 11:20:11 +0000310 ProfilerInit(collectSummary, bestTimeBase, 8000, 250);
Jack Jansen8c693211997-01-07 16:19:42 +0000311#endif
Jack Jansen7330b391997-08-08 14:56:41 +0000312
313 /* Tell the rest of python about our argc/argv */
314 orig_argc = *argcp; /* For Py_GetArgcArgv() */
315 orig_argv = *argvp;
316 Py_SetProgramName((*argvp)[0]);
Jack Jansen01fbc681996-02-28 15:42:47 +0000317}
318
Jack Jansen7d5f9e81996-09-07 17:09:31 +0000319/*
320** Inspection mode after script/applet termination
321*/
322static int
323run_inspect()
324{
325 int sts = 0;
326
327 if (options.inspect && isatty((int)fileno(stdin)))
328 sts = PyRun_AnyFile(stdin, "<stdin>") != 0;
329 return sts;
330}
Jack Jansen01fbc681996-02-28 15:42:47 +0000331
Jack Jansen0c6d0372000-05-05 23:11:14 +0000332/*
333** Import the macfsn module, which will override the Standard File
334** calls in the macfs builtin module by Navigation Services versions,
335** if available on this machine.
336*/
337static void
338PyMac_InstallNavServicesForSF()
339{
340 if ( !options.nonavservice ) {
341 PyObject *m = PyImport_ImportModule("macfsn");
342
343 if ( m == NULL ) {
344 PySys_WriteStderr("'import macfsn' failed; ");
345 if (Py_VerboseFlag) {
346 PySys_WriteStderr("traceback:\n");
347 PyErr_Print();
348 }
349 else {
350 PySys_WriteStderr("use -v for traceback\n");
351 }
352 }
353 }
354}
355
Jack Jansen696c9581995-08-14 12:33:20 +0000356#ifdef USE_MAC_APPLET_SUPPORT
357/* Applet support */
358
359/* Run a compiled Python Python script from 'PYC ' resource __main__ */
360static int
361run_main_resource()
362{
363 Handle h;
364 long size;
365 PyObject *code;
366 PyObject *result;
367
368 h = GetNamedResource('PYC ', "\p__main__");
369 if (h == NULL) {
370 Alert(NOPYC_ALERT, NULL);
371 return 1;
372 }
373 size = GetResourceSizeOnDisk(h);
374 HLock(h);
375 code = PyMarshal_ReadObjectFromString(*h + 8, (int)(size - 8));
376 HUnlock(h);
377 ReleaseResource(h);
378 if (code == NULL) {
379 PyErr_Print();
380 return 1;
381 }
382 result = PyImport_ExecCodeModule("__main__", code);
383 Py_DECREF(code);
384 if (result == NULL) {
385 PyErr_Print();
386 return 1;
387 }
388 Py_DECREF(result);
389 return 0;
390}
391
392/* Initialization sequence for applets */
393void
394PyMac_InitApplet()
395{
Guido van Rossumb0f3c821994-08-23 13:34:25 +0000396 int argc;
397 char **argv;
Jack Jansen696c9581995-08-14 12:33:20 +0000398 int err;
399
Jack Jansen52ac0371997-01-15 15:49:08 +0000400 init_common(&argc, &argv, 0);
Jack Jansen7d5f9e81996-09-07 17:09:31 +0000401
Jack Jansen696c9581995-08-14 12:33:20 +0000402 Py_Initialize();
Jack Jansen0c6d0372000-05-05 23:11:14 +0000403 PyMac_InstallNavServicesForSF();
Jack Jansen696c9581995-08-14 12:33:20 +0000404 PySys_SetArgv(argc, argv);
Jack Jansen7d5f9e81996-09-07 17:09:31 +0000405
Jack Jansen696c9581995-08-14 12:33:20 +0000406 err = run_main_resource();
Jack Jansen7d5f9e81996-09-07 17:09:31 +0000407
408 err = (run_inspect() || err);
409
Jack Jansen696c9581995-08-14 12:33:20 +0000410 fflush(stderr);
411 fflush(stdout);
Jack Jansen0168f271995-10-27 13:32:30 +0000412 PyMac_Exit(err);
Jack Jansen696c9581995-08-14 12:33:20 +0000413 /* XXX Should we bother to Py_Exit(sts)? */
414}
415
Jack Jansen52ac0371997-01-15 15:49:08 +0000416/*
417** Hook for embedding python.
418*/
419void
420PyMac_Initialize()
421{
422 int argc;
423 char **argv;
424
425 init_common(&argc, &argv, 1);
426 Py_Initialize();
Jack Jansen0c6d0372000-05-05 23:11:14 +0000427 PyMac_InstallNavServicesForSF();
Jack Jansen52ac0371997-01-15 15:49:08 +0000428 PySys_SetArgv(argc, argv);
429}
430
Jack Jansen696c9581995-08-14 12:33:20 +0000431#endif /* USE_MAC_APPLET_SUPPORT */
432
433/* For normal application */
434void
435PyMac_InitApplication()
436{
437 int argc;
438 char **argv;
439
Jack Jansen52ac0371997-01-15 15:49:08 +0000440 init_common(&argc, &argv, 0);
Jack Jansen7d5f9e81996-09-07 17:09:31 +0000441
Jack Jansen696c9581995-08-14 12:33:20 +0000442 if ( argc > 1 ) {
443 /* We're running a script. Attempt to change current directory */
444 char curwd[256], *endp;
445
446 strcpy(curwd, argv[1]);
447 endp = strrchr(curwd, ':');
448 if ( endp && endp > curwd ) {
449 *endp = '\0';
450
451 chdir(curwd);
Jack Jansen2d1306b2000-04-07 09:10:49 +0000452#ifdef USE_GUSI1
Jack Jansen378815c1996-03-06 16:21:34 +0000453 /* Change MacOS's idea of wd too */
454 PyMac_FixGUSIcd();
455#endif
Jack Jansen696c9581995-08-14 12:33:20 +0000456 }
457 }
458 Py_Main(argc, argv);
459}
460
Jack Jansen696c9581995-08-14 12:33:20 +0000461/* Main program */
462
Jack Jansen76ceece1996-08-19 11:18:24 +0000463static void
Jack Jansen696c9581995-08-14 12:33:20 +0000464Py_Main(argc, argv)
465 int argc;
466 char **argv;
467{
Jack Jansen696c9581995-08-14 12:33:20 +0000468 int sts;
469 char *command = NULL;
470 char *filename = NULL;
471 FILE *fp = stdin;
Jack Jansen696c9581995-08-14 12:33:20 +0000472
Jack Jansen696c9581995-08-14 12:33:20 +0000473 filename = argv[1];
474
475 if (Py_VerboseFlag ||
476 command == NULL && filename == NULL && isatty((int)fileno(fp)))
477 fprintf(stderr, "Python %s\n%s\n",
Jack Jansena547dca1996-07-10 15:48:25 +0000478 Py_GetVersion(), Py_GetCopyright());
Jack Jansen696c9581995-08-14 12:33:20 +0000479
480 if (filename != NULL) {
481 if ((fp = fopen(filename, "r")) == NULL) {
482 fprintf(stderr, "%s: can't open file '%s'\n",
483 argv[0], filename);
Jack Jansen0168f271995-10-27 13:32:30 +0000484 PyMac_Exit(2);
Jack Jansen696c9581995-08-14 12:33:20 +0000485 }
486 }
487
Jack Jansen7d5f9e81996-09-07 17:09:31 +0000488 /* We initialize the menubar here, hoping SIOUX is initialized by now */
Jack Jansen3469e991996-09-06 00:30:45 +0000489 PyMac_InitMenuBar();
490
Jack Jansen696c9581995-08-14 12:33:20 +0000491 Py_Initialize();
492
Jack Jansen0c6d0372000-05-05 23:11:14 +0000493 PyMac_InstallNavServicesForSF();
494
Jack Jansen696c9581995-08-14 12:33:20 +0000495 PySys_SetArgv(argc-1, argv+1);
496
497 if (filename == NULL && isatty((int)fileno(fp))) {
498 FILE *fp = fopen(STARTUP, "r");
499 if (fp != NULL) {
500 (void) PyRun_SimpleFile(fp, STARTUP);
501 PyErr_Clear();
502 fclose(fp);
503 }
504 }
505 sts = PyRun_AnyFile(
506 fp, filename == NULL ? "<stdin>" : filename) != 0;
507 if (filename != NULL)
508 fclose(fp);
Jack Jansen7d5f9e81996-09-07 17:09:31 +0000509
510 if ( filename != NULL || command != NULL )
511 sts = (run_inspect() || sts);
Jack Jansen696c9581995-08-14 12:33:20 +0000512
513 Py_Exit(sts);
514 /*NOTREACHED*/
515}
516
Jack Jansen0168f271995-10-27 13:32:30 +0000517/*
518** Terminate application
519*/
Jack Jansen76ceece1996-08-19 11:18:24 +0000520void
Jack Jansen0168f271995-10-27 13:32:30 +0000521PyMac_Exit(status)
522 int status;
523{
524 int keep;
Jack Jansen8c693211997-01-07 16:19:42 +0000525
526#if __profile__ == 1
527 ProfilerDump("\pPython Profiler Results");
528 ProfilerTerm();
529#endif
Jack Jansen0168f271995-10-27 13:32:30 +0000530 if ( status )
Jack Jansen7d5f9e81996-09-07 17:09:31 +0000531 keep = options.keep_error;
Jack Jansen0168f271995-10-27 13:32:30 +0000532 else
Jack Jansen7d5f9e81996-09-07 17:09:31 +0000533 keep = options.keep_normal;
Jack Jansen0168f271995-10-27 13:32:30 +0000534
Jack Jansen1e8557a1995-11-10 14:51:26 +0000535#ifdef USE_SIOUX
536 if (keep) {
537 SIOUXSettings.standalone = 1;
538 SIOUXSettings.autocloseonquit = 0;
Jack Jansen415571c1996-03-25 15:46:03 +0000539 SIOUXSetTitle("\p\307terminated\310");
Jack Jansencaa7c461997-06-12 10:49:13 +0000540 PyMac_RestoreMenuBar();
Jack Jansene44545f1997-05-07 15:48:54 +0000541#ifdef USE_MSL
542 /*
543 ** Temporary workaround: autocloseonquit clearing does not
544 ** currently work for the MSL/GUSI combo.
545 */
546 while(getchar() > 0);
547#endif
Jack Jansen1e8557a1995-11-10 14:51:26 +0000548 }
Jack Jansen0168f271995-10-27 13:32:30 +0000549 else
550 SIOUXSettings.autocloseonquit = 1;
Jack Jansenf6865f71996-09-04 15:24:59 +0000551#endif /* USE_SIOUX */
Jack Jansen0168f271995-10-27 13:32:30 +0000552
553 exit(status);
554}
Jack Jansen696c9581995-08-14 12:33:20 +0000555
556/* Return the program name -- some code out there needs this. */
Jack Jansena39f1b01997-05-23 15:35:14 +0000557char *
558Py_GetProgramFullPath()
559{
Jack Jansen7330b391997-08-08 14:56:41 +0000560 return orig_argv[0];
Jack Jansena39f1b01997-05-23 15:35:14 +0000561}
562
Jack Jansen696c9581995-08-14 12:33:20 +0000563
564/* Make the *original* argc/argv available to other modules.
565 This is rare, but it is needed by the secureware extension. */
566
567void
Jack Jansen9ae898b2000-07-11 21:16:03 +0000568Py_GetArgcArgv(int *argc,char ***argv)
Jack Jansen696c9581995-08-14 12:33:20 +0000569{
570 *argc = orig_argc;
571 *argv = orig_argv;
Guido van Rossumb0f3c821994-08-23 13:34:25 +0000572}
Jack Jansen1d2f8631996-08-02 15:16:16 +0000573
574/* More cruft that shouldn't really be here, used in sysmodule.c */
575
576char *
577Py_GetPrefix()
578{
Jack Jansenac625691997-09-08 13:22:22 +0000579 return PyMac_GetPythonDir();
Jack Jansen1d2f8631996-08-02 15:16:16 +0000580}
581
582char *
583Py_GetExecPrefix()
584{
Jack Jansenac625691997-09-08 13:22:22 +0000585 return PyMac_GetPythonDir();
Jack Jansen1d2f8631996-08-02 15:16:16 +0000586}