blob: 20dd4cb0cea7e2559370b0f20c12d4ffd1de508b [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 Jansenc76fd391995-02-02 14:27:31 +000053
Jack Jansen696c9581995-08-14 12:33:20 +000054#define STARTUP "PythonStartup"
Jack Jansenbac428d1994-12-14 13:47:30 +000055
Jack Jansen696c9581995-08-14 12:33:20 +000056extern int Py_DebugFlag; /* For parser.c, declared in pythonrun.c */
57extern int Py_VerboseFlag; /* For import.c, declared in pythonrun.c */
Jack Jansen3f7d2b41996-09-06 22:21:07 +000058short PyMac_AppRefNum; /* RefNum of application resource fork */
Jack Jansen696c9581995-08-14 12:33:20 +000059
Jack Jansen1d2f8631996-08-02 15:16:16 +000060/* For Py_GetArgcArgv(); set by main() */
Jack Jansen696c9581995-08-14 12:33:20 +000061static char **orig_argv;
62static int orig_argc;
63
Jack Jansen7d5f9e81996-09-07 17:09:31 +000064PyMac_PrefRecord options;
Jack Jansen0168f271995-10-27 13:32:30 +000065
Jack Jansend88296d2000-07-11 19:51:05 +000066static void Py_Main(int, char **); /* Forward */
67void PyMac_Exit(int); /* Forward */
Jack Jansen76ceece1996-08-19 11:18:24 +000068
Jack Jansen8f5725a1999-12-07 23:08:10 +000069static void init_appearance()
70{
71#ifdef USE_APPEARANCE
72 OSErr err;
73 SInt32 response;
74
75 err = Gestalt(gestaltAppearanceAttr,&response);
76 if ( err ) goto no_appearance;
77 if ( !(response&(1<<gestaltAppearanceExists)) ) goto no_appearance;
78 /* XXXX Should we check the version? Compat-mode? */
79 PyMac_AppearanceCompliant = 1;
80no_appearance:
81 return;
82#endif /* USE_APPEARANCE */
83}
Jack Jansen01fbc681996-02-28 15:42:47 +000084/* Initialize the Mac toolbox world */
85
86static void
87init_mac_world()
88{
Jack Jansen74a1e632000-07-14 22:37:27 +000089#if !TARGET_API_MAC_CARBON
Jack Jansenee6eeb12000-06-02 21:28:52 +000090 /* These aren't needed for carbon */
Jack Jansen01fbc681996-02-28 15:42:47 +000091 MaxApplZone();
92 InitGraf(&qd.thePort);
93 InitFonts();
94 InitWindows();
95 TEInit();
96 InitDialogs((long)0);
97 InitMenus();
Jack Jansenee6eeb12000-06-02 21:28:52 +000098#endif
Jack Jansen01fbc681996-02-28 15:42:47 +000099 InitCursor();
Jack Jansen8f5725a1999-12-07 23:08:10 +0000100 init_appearance();
Jack Jansen01fbc681996-02-28 15:42:47 +0000101}
102
Jack Jansen7d5f9e81996-09-07 17:09:31 +0000103/*
104** PyMac_InteractiveOptions - Allow user to set options if option key is pressed
105*/
Jack Jansen01fbc681996-02-28 15:42:47 +0000106static void
Jack Jansen7d5f9e81996-09-07 17:09:31 +0000107PyMac_InteractiveOptions(PyMac_PrefRecord *p, int *argcp, char ***argvp)
108{
109 KeyMap rmap;
110 unsigned char *map;
111 short item, type;
112 ControlHandle handle;
113 DialogPtr dialog;
114 Rect rect;
115 int old_argc = *argcp;
116 int i;
117
118 /*
119 ** If the preferences disallows interactive options we return,
120 ** similarly of <option> isn't pressed.
121 */
122 if (p->nointopt) return;
123
124 GetKeys(rmap);
125 map = (unsigned char *)rmap;
126 if ( ( map[0x3a>>3] & (1<<(0x3a&7)) ) == 0 ) /* option key is 3a */
127 return;
128
129 dialog = GetNewDialog(OPT_DIALOG, NULL, (WindowPtr)-1);
130 if ( dialog == NULL ) {
131 printf("Option dialog not found - cannot set options\n");
132 return;
133 }
134 SetDialogDefaultItem(dialog, OPT_OK);
135 SetDialogCancelItem(dialog, OPT_CANCEL);
136
137 /* Set default values */
138#define SET_OPT_ITEM(num, var) \
139 GetDialogItem(dialog, (num), &type, (Handle *)&handle, &rect); \
Jack Jansen08c3be31997-04-08 15:27:00 +0000140 SetControlValue(handle, (short)p->var);
Jack Jansen7d5f9e81996-09-07 17:09:31 +0000141
142 SET_OPT_ITEM(OPT_INSPECT, inspect);
143 SET_OPT_ITEM(OPT_VERBOSE, verbose);
Jack Jansen36b983c1997-09-09 13:53:21 +0000144 SET_OPT_ITEM(OPT_OPTIMIZE, optimize);
Jack Jansen7d5f9e81996-09-07 17:09:31 +0000145 SET_OPT_ITEM(OPT_UNBUFFERED, unbuffered);
146 SET_OPT_ITEM(OPT_DEBUGGING, debugging);
147 SET_OPT_ITEM(OPT_KEEPNORMAL, keep_normal);
148 SET_OPT_ITEM(OPT_KEEPERROR, keep_error);
Jack Jansen0c6d0372000-05-05 23:11:14 +0000149 SET_OPT_ITEM(OPT_TABWARN, tabwarn);
Jack Jansen36b983c1997-09-09 13:53:21 +0000150 SET_OPT_ITEM(OPT_NOSITE, nosite);
Jack Jansen0c6d0372000-05-05 23:11:14 +0000151 SET_OPT_ITEM(OPT_NONAVSERV, nonavservice);
Jack Jansen7d5f9e81996-09-07 17:09:31 +0000152 /* The rest are not settable interactively */
153
154#undef SET_OPT_ITEM
155
156 while (1) {
157 handle = NULL;
158 ModalDialog(NULL, &item);
159 if ( item == OPT_OK )
160 break;
161 if ( item == OPT_CANCEL ) {
Jack Jansen08c3be31997-04-08 15:27:00 +0000162 DisposeDialog(dialog);
Jack Jansen7d5f9e81996-09-07 17:09:31 +0000163 exit(0);
164 }
Jack Jansen74a1e632000-07-14 22:37:27 +0000165#if !TARGET_API_MAC_CARBON
Jack Jansen36b983c1997-09-09 13:53:21 +0000166 if ( item == OPT_HELP ) {
167 HMSetBalloons(!HMGetBalloons());
168 }
Jack Jansenee6eeb12000-06-02 21:28:52 +0000169#endif
Jack Jansen7d5f9e81996-09-07 17:09:31 +0000170 if ( item == OPT_CMDLINE ) {
171 int new_argc, newer_argc;
172 char **new_argv, **newer_argv;
173
174 new_argc = ccommand(&new_argv);
175 newer_argc = (new_argc-1) + old_argc;
176 newer_argv = malloc((newer_argc+1)*sizeof(char *));
177 if( !newer_argv )
178 Py_FatalError("Cannot malloc argv\n");
179 for(i=0; i<old_argc; i++)
180 newer_argv[i] = (*argvp)[i];
181 for(i=old_argc; i<=newer_argc; i++) /* Copy the NULL too */
182 newer_argv[i] = new_argv[i-old_argc+1];
183 *argvp = newer_argv;
184 *argcp = newer_argc;
185
186 /* XXXX Is it not safe to use free() here, apparently */
187 }
188#define OPT_ITEM(num, var) \
189 if ( item == (num) ) { \
190 p->var = !p->var; \
191 GetDialogItem(dialog, (num), &type, (Handle *)&handle, &rect); \
Jack Jansen08c3be31997-04-08 15:27:00 +0000192 SetControlValue(handle, (short)p->var); \
Jack Jansen7d5f9e81996-09-07 17:09:31 +0000193 }
194
195 OPT_ITEM(OPT_INSPECT, inspect);
196 OPT_ITEM(OPT_VERBOSE, verbose);
Jack Jansen36b983c1997-09-09 13:53:21 +0000197 OPT_ITEM(OPT_OPTIMIZE, optimize);
Jack Jansen7d5f9e81996-09-07 17:09:31 +0000198 OPT_ITEM(OPT_UNBUFFERED, unbuffered);
199 OPT_ITEM(OPT_DEBUGGING, debugging);
200 OPT_ITEM(OPT_KEEPNORMAL, keep_normal);
201 OPT_ITEM(OPT_KEEPERROR, keep_error);
Jack Jansen0c6d0372000-05-05 23:11:14 +0000202 OPT_ITEM(OPT_TABWARN, tabwarn);
Jack Jansen36b983c1997-09-09 13:53:21 +0000203 OPT_ITEM(OPT_NOSITE, nosite);
Jack Jansen0c6d0372000-05-05 23:11:14 +0000204 OPT_ITEM(OPT_NONAVSERV, nonavservice);
Jack Jansen7d5f9e81996-09-07 17:09:31 +0000205
206#undef OPT_ITEM
207 }
Jack Jansen08c3be31997-04-08 15:27:00 +0000208 DisposeDialog(dialog);
Jack Jansen7d5f9e81996-09-07 17:09:31 +0000209}
210
211/*
212** Initialization code, shared by interpreter and applets
213*/
214static void
Jack Jansen52ac0371997-01-15 15:49:08 +0000215init_common(int *argcp, char ***argvp, int embedded)
Jack Jansen01fbc681996-02-28 15:42:47 +0000216{
Jack Jansen3f7d2b41996-09-06 22:21:07 +0000217 /* Remember resource fork refnum, for later */
218 PyMac_AppRefNum = CurResFile();
219
Jack Jansen01fbc681996-02-28 15:42:47 +0000220 /* Initialize toolboxes */
221 init_mac_world();
222
223#ifdef USE_MAC_SHARED_LIBRARY
224 /* Add the shared library to the stack of resource files */
Jack Jansen87c485c1998-07-31 09:38:01 +0000225 (void)PyMac_init_process_location();
Jack Jansen01fbc681996-02-28 15:42:47 +0000226 PyMac_AddLibResources();
227#endif
228
Jack Jansen2d1306b2000-04-07 09:10:49 +0000229#if defined(USE_GUSI1)
Jack Jansen01fbc681996-02-28 15:42:47 +0000230 /* Setup GUSI */
231 GUSIDefaultSetup();
Jack Jansenf6865f71996-09-04 15:24:59 +0000232 PyMac_SetGUSISpin();
Jack Jansen3f7d2b41996-09-06 22:21:07 +0000233 PyMac_SetGUSIOptions();
Jack Jansen01fbc681996-02-28 15:42:47 +0000234#endif
Jack Jansen2d1306b2000-04-07 09:10:49 +0000235#if defined(USE_GUSI)
236 atexit(PyMac_StopGUSISpin);
237#endif
Jack Jansen01fbc681996-02-28 15:42:47 +0000238
239#ifdef USE_SIOUX
240 /* Set various SIOUX flags. Some are changed later based on options */
Jack Jansencaa7c461997-06-12 10:49:13 +0000241/* SIOUXSettings.standalone = 0; /* XXXX Attempting to keep sioux from eating events */
Jack Jansen01fbc681996-02-28 15:42:47 +0000242 SIOUXSettings.asktosaveonclose = 0;
243 SIOUXSettings.showstatusline = 0;
244 SIOUXSettings.tabspaces = 4;
245#endif
246
Jack Jansen7d5f9e81996-09-07 17:09:31 +0000247 /* Get options from preference file (or from applet resource fork) */
248 options.keep_error = 1; /* default-default */
249 PyMac_PreferenceOptions(&options);
250
Jack Jansen52ac0371997-01-15 15:49:08 +0000251 if ( embedded ) {
252 static char *emb_argv[] = {"embedded-python", 0};
253
254 *argcp = 1;
255 *argvp = emb_argv;
256 } else {
257 /* Create argc/argv. Do it before we go into the options event loop. */
258 *argcp = PyMac_GetArgv(argvp, options.noargs);
Jack Jansen660bb1d2000-07-18 09:40:39 +0000259#ifdef USE_ARGV0_CHDIR
260 printf("argc=%d, argv[0]=%x=%s\n", *argcp, (*argvp)[0], (*argvp)[0]);
261 if (*argcp >= 1 && (*argvp)[0] && (*argvp)[0][0]) {
262 /* Workaround for MacOS X, which currently (DP4) doesn't set
263 ** the working folder correctly
264 */
265 char app_wd[256], *p;
266
267 strncpy(app_wd, (*argvp)[0], 256);
268 printf("Modifying dir, argv[0]=%s\n", (*argvp)[0]);
269 p = strrchr(app_wd, ':');
270 if ( p ) *p = 0;
271 printf("app_wd=%s\n", app_wd);
272 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}