blob: b762b0f2963c7e2db3be7ade2ddf18d8c9b29fcc [file] [log] [blame]
Guido van Rossum667d7041995-08-04 04:20:48 +00001/* Python interpreter main program */
2
3#include "Python.h"
Guido van Rossuma075ce11997-12-05 21:56:45 +00004#include "osdefs.h"
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +00005#include "import.h"
Guido van Rossum667d7041995-08-04 04:20:48 +00006
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00007#ifdef __VMS
Martin v. Löwis7a924e62003-03-05 14:15:21 +00008#include <unixlib.h>
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00009#endif
10
Sjoerd Mullender9cf424b2002-08-09 13:35:18 +000011#if defined(MS_WINDOWS) || defined(__CYGWIN__)
Martin v. Löwis945362c2007-08-30 14:57:25 +000012#include <windows.h>
Thomas Wouters477c8d52006-05-27 19:21:47 +000013#ifdef HAVE_FCNTL_H
Guido van Rossum3e7ae7a1997-01-17 22:05:38 +000014#include <fcntl.h>
Martin v. Löwis790465f2008-04-05 20:41:37 +000015#define PATH_MAX MAXPATHLEN
Guido van Rossum3e7ae7a1997-01-17 22:05:38 +000016#endif
Thomas Wouters477c8d52006-05-27 19:21:47 +000017#endif
Guido van Rossum3e7ae7a1997-01-17 22:05:38 +000018
Martin v. Löwis945362c2007-08-30 14:57:25 +000019#ifdef _MSC_VER
20#include <crtdbg.h>
21#endif
22
Andrew MacIntyre7bf68332002-03-03 02:59:16 +000023#if (defined(PYOS_OS2) && !defined(PYCC_GCC)) || defined(MS_WINDOWS)
Guido van Rossuma075ce11997-12-05 21:56:45 +000024#define PYTHONHOMEHELP "<prefix>\\lib"
25#else
Andrew MacIntyre7bf68332002-03-03 02:59:16 +000026#if defined(PYOS_OS2) && defined(PYCC_GCC)
27#define PYTHONHOMEHELP "<prefix>/Lib"
28#else
Marc-André Lemburgda4dbc32001-06-12 16:13:51 +000029#define PYTHONHOMEHELP "<prefix>/pythonX.X"
Guido van Rossuma075ce11997-12-05 21:56:45 +000030#endif
Andrew MacIntyre7bf68332002-03-03 02:59:16 +000031#endif
Guido van Rossuma075ce11997-12-05 21:56:45 +000032
Thomas Wouters2cffc7d2000-11-03 08:18:37 +000033#include "pygetopt.h"
34
Guido van Rossuma22865e2000-09-05 04:41:18 +000035#define COPYRIGHT \
Guido van Rossum36002d72001-07-18 16:59:46 +000036 "Type \"help\", \"copyright\", \"credits\" or \"license\" " \
37 "for more information."
Guido van Rossuma22865e2000-09-05 04:41:18 +000038
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000039#ifdef __cplusplus
40extern "C" {
41#endif
42
Guido van Rossumac56b031996-07-21 02:33:38 +000043/* For Py_GetArgcArgv(); set by main() */
Martin v. Löwis790465f2008-04-05 20:41:37 +000044static wchar_t **orig_argv;
Guido van Rossum667d7041995-08-04 04:20:48 +000045static int orig_argc;
46
Guido van Rossumbceccf52001-04-10 22:07:43 +000047/* command line options */
Christian Heimes8dc226f2008-05-06 23:45:46 +000048#define BASE_OPTS L"bBc:dEhiJm:OsStuvVW:xX?"
Guido van Rossumbceccf52001-04-10 22:07:43 +000049
Guido van Rossumbceccf52001-04-10 22:07:43 +000050#define PROGRAM_OPTS BASE_OPTS
Guido van Rossum3ed4c152001-03-02 06:18:03 +000051
Guido van Rossum667d7041995-08-04 04:20:48 +000052/* Short usage message (with %s for argv0) */
53static char *usage_line =
Martin v. Löwis790465f2008-04-05 20:41:37 +000054"usage: %ls [option] ... [-c cmd | -m mod | file | -] [arg] ...\n";
Guido van Rossum667d7041995-08-04 04:20:48 +000055
56/* Long usage message, split into parts < 512 bytes */
Guido van Rossum393661d2001-08-31 17:40:15 +000057static char *usage_1 = "\
Guido van Rossum667d7041995-08-04 04:20:48 +000058Options and arguments (and corresponding environment variables):\n\
Guido van Rossum98297ee2007-11-06 21:34:58 +000059-b : issue warnings about str(bytes_instance), str(buffer_instance)\n\
60 and comparing bytes/buffer with str. (-bb: issue errors)\n\
Christian Heimes790c8232008-01-07 21:14:23 +000061-B : don't write .py[co] files on import; also PYTHONDONTWRITEBYTECODE=x\n\
Guido van Rossum393661d2001-08-31 17:40:15 +000062-c cmd : program passed in as string (terminates option list)\n\
Thomas Wouters89f507f2006-12-13 04:49:30 +000063-d : debug output from parser; also PYTHONDEBUG=x\n\
Christian Heimes790c8232008-01-07 21:14:23 +000064-E : ignore PYTHON* environment variables (such as PYTHONPATH)\n\
Thomas Wouters0e3f5912006-08-11 14:57:12 +000065-h : print this help message and exit (also --help)\n\
Guido van Rossum61c345f2001-09-04 03:26:15 +000066";
67static char *usage_2 = "\
Guido van Rossum98297ee2007-11-06 21:34:58 +000068-i : inspect interactively after running script; forces a prompt even\n\
69 if stdin does not appear to be a terminal; also PYTHONINSPECT=x\n\
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +000070-m mod : run library module as a script (terminates option list)\n\
Thomas Wouters89f507f2006-12-13 04:49:30 +000071-O : optimize generated bytecode slightly; also PYTHONOPTIMIZE=x\n\
Guido van Rossum6b86a421999-01-28 15:07:47 +000072-OO : remove doc-strings in addition to the -O optimizations\n\
Christian Heimes8dc226f2008-05-06 23:45:46 +000073-s : don't add user site directory to sys.path; also PYTHONNOUSERSITE\n\
Guido van Rossum7922bd71997-08-29 22:34:47 +000074-S : don't imply 'import site' on initialization\n\
Georg Brandla26f8ca2008-06-04 13:01:30 +000075-t : issue warnings about inconsistent tab usage (-tt: issue errors)\n\
Guido van Rossum393661d2001-08-31 17:40:15 +000076";
77static char *usage_3 = "\
Guido van Rossum98297ee2007-11-06 21:34:58 +000078-u : unbuffered binary stdout and stderr; also PYTHONUNBUFFERED=x\n\
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +000079 see man page for details on internal buffering relating to '-u'\n\
Thomas Wouters89f507f2006-12-13 04:49:30 +000080-v : verbose (trace import statements); also PYTHONVERBOSE=x\n\
81 can be supplied multiple times to increase verbosity\n\
Thomas Wouters0e3f5912006-08-11 14:57:12 +000082-V : print the Python version number and exit (also --version)\n\
Thomas Wouters89f507f2006-12-13 04:49:30 +000083-W arg : warning control; arg is action:message:category:module:lineno\n\
Guido van Rossum393661d2001-08-31 17:40:15 +000084-x : skip first line of source, allowing use of non-Unix forms of #!cmd\n\
Guido van Rossum7922bd71997-08-29 22:34:47 +000085";
Guido van Rossum393661d2001-08-31 17:40:15 +000086static char *usage_4 = "\
Guido van Rossum98297ee2007-11-06 21:34:58 +000087file : program read from script file\n\
88- : program read from stdin (default; interactive mode if a tty)\n\
Thomas Wouters89f507f2006-12-13 04:49:30 +000089arg ...: arguments passed to program in sys.argv[1:]\n\n\
Guido van Rossum667d7041995-08-04 04:20:48 +000090Other environment variables:\n\
91PYTHONSTARTUP: file executed on interactive startup (no default)\n\
Guido van Rossuma075ce11997-12-05 21:56:45 +000092PYTHONPATH : '%c'-separated list of directories prefixed to the\n\
Guido van Rossum667d7041995-08-04 04:20:48 +000093 default module search path. The result is sys.path.\n\
Christian Heimes790c8232008-01-07 21:14:23 +000094";
95static char *usage_5 = "\
Guido van Rossuma075ce11997-12-05 21:56:45 +000096PYTHONHOME : alternate <prefix> directory (or <prefix>%c<exec_prefix>).\n\
97 The default module search path uses %s.\n\
Tim Peters793de092001-02-22 00:39:47 +000098PYTHONCASEOK : ignore case in 'import' statements (Windows).\n\
Martin v. Löwis0f599892008-06-02 11:13:03 +000099PYTHONIOENCODING: Encoding[:errors] used for stdin/stdout/stderr.\n\
Guido van Rossum667d7041995-08-04 04:20:48 +0000100";
101
Martin v. Löwis790465f2008-04-05 20:41:37 +0000102#ifndef MS_WINDOWS
103static FILE*
104_wfopen(const wchar_t *path, const wchar_t *mode)
105{
106 char cpath[PATH_MAX];
107 char cmode[10];
108 size_t r;
109 r = wcstombs(cpath, path, PATH_MAX);
110 if (r == (size_t)-1 || r >= PATH_MAX) {
111 errno = EINVAL;
112 return NULL;
113 }
114 r = wcstombs(cmode, mode, 10);
115 if (r == (size_t)-1 || r >= 10) {
116 errno = EINVAL;
117 return NULL;
118 }
119 return fopen(cpath, cmode);
120}
121#endif
122
Guido van Rossum667d7041995-08-04 04:20:48 +0000123
Martin v. Löwis852ba7e2003-03-30 17:09:58 +0000124static int
Martin v. Löwis790465f2008-04-05 20:41:37 +0000125usage(int exitcode, wchar_t* program)
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000126{
Guido van Rossum393661d2001-08-31 17:40:15 +0000127 FILE *f = exitcode ? stderr : stdout;
128
129 fprintf(f, usage_line, program);
130 if (exitcode)
131 fprintf(f, "Try `python -h' for more information.\n");
132 else {
133 fprintf(f, usage_1);
134 fprintf(f, usage_2);
135 fprintf(f, usage_3);
Christian Heimes790c8232008-01-07 21:14:23 +0000136 fprintf(f, usage_4, DELIM);
137 fprintf(f, usage_5, DELIM, PYTHONHOMEHELP);
Guido van Rossum393661d2001-08-31 17:40:15 +0000138 }
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000139#if defined(__VMS)
140 if (exitcode == 0) {
141 /* suppress 'error' message */
Martin v. Löwis852ba7e2003-03-30 17:09:58 +0000142 return 1;
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000143 }
144 else {
145 /* STS$M_INHIB_MSG + SS$_ABORT */
Martin v. Löwis852ba7e2003-03-30 17:09:58 +0000146 return 0x1000002c;
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000147 }
148#else
Martin v. Löwis852ba7e2003-03-30 17:09:58 +0000149 return exitcode;
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000150#endif
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000151 /*NOTREACHED*/
152}
153
Martin v. Löwis6caea372003-11-18 19:46:25 +0000154static void RunStartupFile(PyCompilerFlags *cf)
155{
156 char *startup = Py_GETENV("PYTHONSTARTUP");
157 if (startup != NULL && startup[0] != '\0') {
158 FILE *fp = fopen(startup, "r");
159 if (fp != NULL) {
160 (void) PyRun_SimpleFileExFlags(fp, startup, 0, cf);
161 PyErr_Clear();
162 fclose(fp);
Christian Heimese69a08e2007-11-14 16:21:32 +0000163 } else {
164 int save_errno;
165
166 save_errno = errno;
167 PySys_WriteStderr("Could not open PYTHONSTARTUP\n");
168 errno = save_errno;
169 PyErr_SetFromErrnoWithFilename(PyExc_IOError,
170 startup);
171 PyErr_Print();
172 PyErr_Clear();
Martin v. Löwis6caea372003-11-18 19:46:25 +0000173 }
174 }
175}
176
Thomas Woutersa9773292006-04-21 09:43:23 +0000177
Christian Heimes9cd17752007-11-18 19:35:23 +0000178static int RunModule(char *module, int set_argv0)
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000179{
Thomas Woutersa9773292006-04-21 09:43:23 +0000180 PyObject *runpy, *runmodule, *runargs, *result;
181 runpy = PyImport_ImportModule("runpy");
182 if (runpy == NULL) {
183 fprintf(stderr, "Could not import runpy module\n");
184 return -1;
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000185 }
Thomas Woutersed03b412007-08-28 21:37:11 +0000186 runmodule = PyObject_GetAttrString(runpy, "_run_module_as_main");
Thomas Woutersa9773292006-04-21 09:43:23 +0000187 if (runmodule == NULL) {
Thomas Woutersed03b412007-08-28 21:37:11 +0000188 fprintf(stderr, "Could not access runpy._run_module_as_main\n");
Thomas Woutersa9773292006-04-21 09:43:23 +0000189 Py_DECREF(runpy);
190 return -1;
191 }
Christian Heimes9cd17752007-11-18 19:35:23 +0000192 runargs = Py_BuildValue("(si)", module, set_argv0);
Thomas Woutersa9773292006-04-21 09:43:23 +0000193 if (runargs == NULL) {
194 fprintf(stderr,
Thomas Woutersed03b412007-08-28 21:37:11 +0000195 "Could not create arguments for runpy._run_module_as_main\n");
Thomas Woutersa9773292006-04-21 09:43:23 +0000196 Py_DECREF(runpy);
197 Py_DECREF(runmodule);
198 return -1;
199 }
200 result = PyObject_Call(runmodule, runargs, NULL);
201 if (result == NULL) {
202 PyErr_Print();
203 }
204 Py_DECREF(runpy);
205 Py_DECREF(runmodule);
206 Py_DECREF(runargs);
207 if (result == NULL) {
208 return -1;
209 }
210 Py_DECREF(result);
211 return 0;
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000212}
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000213
Martin v. Löwis790465f2008-04-05 20:41:37 +0000214static int RunMainFromImporter(wchar_t *filename)
Christian Heimes9cd17752007-11-18 19:35:23 +0000215{
216 PyObject *argv0 = NULL, *importer = NULL;
217
Martin v. Löwis790465f2008-04-05 20:41:37 +0000218 if ((argv0 = PyUnicode_FromWideChar(filename,wcslen(filename))) &&
Guido van Rossum74c29c72007-11-19 18:36:41 +0000219 (importer = PyImport_GetImporter(argv0)) &&
220 (importer->ob_type != &PyNullImporter_Type))
Christian Heimes9cd17752007-11-18 19:35:23 +0000221 {
222 /* argv0 is usable as an import source, so
223 put it in sys.path[0] and import __main__ */
224 PyObject *sys_path = NULL;
Guido van Rossum74c29c72007-11-19 18:36:41 +0000225 if ((sys_path = PySys_GetObject("path")) &&
226 !PyList_SetItem(sys_path, 0, argv0))
227 {
Christian Heimes9cd17752007-11-18 19:35:23 +0000228 Py_INCREF(argv0);
Guido van Rossum74c29c72007-11-19 18:36:41 +0000229 Py_DECREF(importer);
Christian Heimes9cd17752007-11-18 19:35:23 +0000230 sys_path = NULL;
231 return RunModule("__main__", 0) != 0;
232 }
233 }
Guido van Rossum74c29c72007-11-19 18:36:41 +0000234 Py_XDECREF(argv0);
235 Py_XDECREF(importer);
236 if (PyErr_Occurred()) {
237 PyErr_Print();
238 return 1;
239 }
240 else {
241 return -1;
242 }
Christian Heimes9cd17752007-11-18 19:35:23 +0000243}
244
245
Thomas Wouters902d6eb2007-01-09 23:18:33 +0000246/* Wait until threading._shutdown completes, provided
247 the threading module was imported in the first place.
248 The shutdown routine will wait until all non-daemon
249 "threading" threads have completed. */
250#include "abstract.h"
251static void
252WaitForThreadShutdown(void)
253{
254#ifdef WITH_THREAD
255 PyObject *result;
256 PyThreadState *tstate = PyThreadState_GET();
257 PyObject *threading = PyMapping_GetItemString(tstate->interp->modules,
258 "threading");
259 if (threading == NULL) {
260 /* threading not imported */
261 PyErr_Clear();
262 return;
263 }
264 result = PyObject_CallMethod(threading, "_shutdown", "");
265 if (result == NULL)
266 PyErr_WriteUnraisable(threading);
267 else
268 Py_DECREF(result);
269 Py_DECREF(threading);
270#endif
271}
272
Guido van Rossum667d7041995-08-04 04:20:48 +0000273/* Main program */
274
Mark Hammondfe51c6d2002-08-02 02:27:13 +0000275int
Martin v. Löwis790465f2008-04-05 20:41:37 +0000276Py_Main(int argc, wchar_t **argv)
Guido van Rossum667d7041995-08-04 04:20:48 +0000277{
278 int c;
279 int sts;
280 char *command = NULL;
Martin v. Löwis790465f2008-04-05 20:41:37 +0000281 wchar_t *filename = NULL;
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000282 char *module = NULL;
Guido van Rossum667d7041995-08-04 04:20:48 +0000283 FILE *fp = stdin;
284 char *p;
Guido van Rossum667d7041995-08-04 04:20:48 +0000285 int unbuffered = 0;
Guido van Rossuma075ce11997-12-05 21:56:45 +0000286 int skipfirstline = 0;
Guido van Rossum775af911997-02-14 19:50:32 +0000287 int stdin_is_interactive = 0;
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000288 int help = 0;
289 int version = 0;
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000290 int saw_unbuffered_flag = 0;
Jeremy Hyltonbc320242001-03-22 02:47:58 +0000291 PyCompilerFlags cf;
Guido van Rossum667d7041995-08-04 04:20:48 +0000292
Guido van Rossum393661d2001-08-31 17:40:15 +0000293 cf.cf_flags = 0;
294
Guido van Rossumac56b031996-07-21 02:33:38 +0000295 orig_argc = argc; /* For Py_GetArgcArgv() */
Guido van Rossum667d7041995-08-04 04:20:48 +0000296 orig_argv = argv;
Guido van Rossum667d7041995-08-04 04:20:48 +0000297
Guido van Rossum47f5fdc2000-12-15 22:00:54 +0000298 PySys_ResetWarnOptions();
299
Guido van Rossumbceccf52001-04-10 22:07:43 +0000300 while ((c = _PyOS_GetOpt(argc, argv, PROGRAM_OPTS)) != EOF) {
Guido van Rossum667d7041995-08-04 04:20:48 +0000301 if (c == 'c') {
Martin v. Löwis790465f2008-04-05 20:41:37 +0000302 size_t r1 = wcslen(_PyOS_optarg) + 2;
303 size_t r2;
Guido van Rossum667d7041995-08-04 04:20:48 +0000304 /* -c is the last option; following arguments
305 that look like options are left for the
Walter Dörwaldf0dfc7a2003-10-20 14:01:56 +0000306 command to interpret. */
Martin v. Löwis790465f2008-04-05 20:41:37 +0000307 command = (char *)malloc(r1);
Guido van Rossum667d7041995-08-04 04:20:48 +0000308 if (command == NULL)
309 Py_FatalError(
310 "not enough memory to copy -c argument");
Martin v. Löwis790465f2008-04-05 20:41:37 +0000311 r2 = wcstombs(command, _PyOS_optarg, r1);
312 if (r2 > r1-2)
313 Py_FatalError(
314 "not enough memory to copy -c argument");
Guido van Rossum667d7041995-08-04 04:20:48 +0000315 strcat(command, "\n");
316 break;
317 }
Guido van Rossum393661d2001-08-31 17:40:15 +0000318
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000319 if (c == 'm') {
320 /* -m is the last option; following arguments
321 that look like options are left for the
322 module to interpret. */
Martin v. Löwis790465f2008-04-05 20:41:37 +0000323 size_t r1 = wcslen(_PyOS_optarg) + 1;
324 size_t r2;
325 module = (char *)malloc(r1);
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000326 if (module == NULL)
327 Py_FatalError(
328 "not enough memory to copy -m argument");
Martin v. Löwis790465f2008-04-05 20:41:37 +0000329 r2 = wcstombs(module, _PyOS_optarg, r1);
330 if (r2 >= r1)
331 Py_FatalError(
332 "not enough memory to copy -m argument");
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000333 break;
334 }
335
Guido van Rossum667d7041995-08-04 04:20:48 +0000336 switch (c) {
Guido van Rossum98297ee2007-11-06 21:34:58 +0000337 case 'b':
338 Py_BytesWarningFlag++;
339 break;
Guido van Rossum667d7041995-08-04 04:20:48 +0000340
341 case 'd':
342 Py_DebugFlag++;
343 break;
344
345 case 'i':
Guido van Rossumd8faa362007-04-27 19:54:29 +0000346 Py_InspectFlag++;
Guido van Rossum775af911997-02-14 19:50:32 +0000347 Py_InteractiveFlag++;
Guido van Rossum667d7041995-08-04 04:20:48 +0000348 break;
349
Christian Heimes33fe8092008-04-13 13:53:33 +0000350 /* case 'J': reserved for Jython */
351
Guido van Rossum7614da61997-03-03 19:14:45 +0000352 case 'O':
353 Py_OptimizeFlag++;
354 break;
355
Christian Heimes790c8232008-01-07 21:14:23 +0000356 case 'B':
357 Py_DontWriteBytecodeFlag++;
358 break;
359
Christian Heimes8dc226f2008-05-06 23:45:46 +0000360 case 's':
361 Py_NoUserSiteDirectory++;
362 break;
363
Guido van Rossum7922bd71997-08-29 22:34:47 +0000364 case 'S':
365 Py_NoSiteFlag++;
366 break;
367
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000368 case 'E':
369 Py_IgnoreEnvironmentFlag++;
370 break;
371
Guido van Rossumbba92ca1998-04-10 19:39:15 +0000372 case 't':
Georg Brandla26f8ca2008-06-04 13:01:30 +0000373 Py_TabcheckFlag++;
Guido van Rossumbba92ca1998-04-10 19:39:15 +0000374 break;
375
Guido van Rossum667d7041995-08-04 04:20:48 +0000376 case 'u':
377 unbuffered++;
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000378 saw_unbuffered_flag = 1;
Guido van Rossum667d7041995-08-04 04:20:48 +0000379 break;
380
381 case 'v':
382 Py_VerboseFlag++;
383 break;
384
Guido van Rossuma075ce11997-12-05 21:56:45 +0000385 case 'x':
386 skipfirstline = 1;
387 break;
388
Neal Norwitz32dde222008-04-15 06:43:13 +0000389 /* case 'X': reserved for implementation-specific arguments */
Christian Heimes33fe8092008-04-13 13:53:33 +0000390
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000391 case 'h':
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000392 case '?':
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000393 help++;
394 break;
Guido van Rossum45aecf42006-03-15 04:58:47 +0000395
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000396 case 'V':
397 version++;
398 break;
Guido van Rossumc15a9a12000-05-01 17:54:33 +0000399
Martin v. Löwis790465f2008-04-05 20:41:37 +0000400 case 'W':
Guido van Rossum47f5fdc2000-12-15 22:00:54 +0000401 PySys_AddWarnOption(_PyOS_optarg);
402 break;
403
Guido van Rossum667d7041995-08-04 04:20:48 +0000404 /* This space reserved for other options */
405
406 default:
Martin v. Löwis852ba7e2003-03-30 17:09:58 +0000407 return usage(2, argv[0]);
Guido van Rossum667d7041995-08-04 04:20:48 +0000408 /*NOTREACHED*/
409
410 }
411 }
412
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000413 if (help)
Martin v. Löwis852ba7e2003-03-30 17:09:58 +0000414 return usage(0, argv[0]);
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000415
416 if (version) {
417 fprintf(stderr, "Python %s\n", PY_VERSION);
Martin v. Löwis852ba7e2003-03-30 17:09:58 +0000418 return 0;
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000419 }
420
Guido van Rossumd8faa362007-04-27 19:54:29 +0000421 if (!Py_InspectFlag &&
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000422 (p = Py_GETENV("PYTHONINSPECT")) && *p != '\0')
Guido van Rossumd8faa362007-04-27 19:54:29 +0000423 Py_InspectFlag = 1;
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000424 if (!saw_unbuffered_flag &&
425 (p = Py_GETENV("PYTHONUNBUFFERED")) && *p != '\0')
426 unbuffered = 1;
427
Christian Heimes8dc226f2008-05-06 23:45:46 +0000428 if (!Py_NoUserSiteDirectory &&
429 (p = Py_GETENV("PYTHONNOUSERSITE")) && *p != '\0')
430 Py_NoUserSiteDirectory = 1;
431
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000432 if (command == NULL && module == NULL && _PyOS_optind < argc &&
Martin v. Löwis790465f2008-04-05 20:41:37 +0000433 wcscmp(argv[_PyOS_optind], L"-") != 0)
Guido van Rossum775af911997-02-14 19:50:32 +0000434 {
Martin v. Löwis7a924e62003-03-05 14:15:21 +0000435#ifdef __VMS
436 filename = decc$translate_vms(argv[_PyOS_optind]);
437 if (filename == (char *)0 || filename == (char *)-1)
438 filename = argv[_PyOS_optind];
439
440#else
Thomas Wouters2cffc7d2000-11-03 08:18:37 +0000441 filename = argv[_PyOS_optind];
Martin v. Löwis7a924e62003-03-05 14:15:21 +0000442#endif
Guido van Rossum775af911997-02-14 19:50:32 +0000443 }
444
445 stdin_is_interactive = Py_FdIsInteractive(stdin, (char *)0);
446
Guido van Rossum667d7041995-08-04 04:20:48 +0000447 if (unbuffered) {
Sjoerd Mullender9cf424b2002-08-09 13:35:18 +0000448#if defined(MS_WINDOWS) || defined(__CYGWIN__)
Guido van Rossum3e7ae7a1997-01-17 22:05:38 +0000449 _setmode(fileno(stdin), O_BINARY);
450 _setmode(fileno(stdout), O_BINARY);
Guido van Rossumf22d7e21997-01-11 19:28:55 +0000451#endif
Guido van Rossum22ffac11998-03-06 15:30:39 +0000452#ifdef HAVE_SETVBUF
Guido van Rossum775af911997-02-14 19:50:32 +0000453 setvbuf(stdin, (char *)NULL, _IONBF, BUFSIZ);
454 setvbuf(stdout, (char *)NULL, _IONBF, BUFSIZ);
455 setvbuf(stderr, (char *)NULL, _IONBF, BUFSIZ);
Guido van Rossum22ffac11998-03-06 15:30:39 +0000456#else /* !HAVE_SETVBUF */
457 setbuf(stdin, (char *)NULL);
458 setbuf(stdout, (char *)NULL);
459 setbuf(stderr, (char *)NULL);
460#endif /* !HAVE_SETVBUF */
Guido van Rossum667d7041995-08-04 04:20:48 +0000461 }
Guido van Rossum2a212191997-04-11 21:57:53 +0000462 else if (Py_InteractiveFlag) {
Guido van Rossumb31c7dc1997-04-11 22:19:12 +0000463#ifdef MS_WINDOWS
464 /* Doesn't have to have line-buffered -- use unbuffered */
Guido van Rossum01b7ced1999-02-09 18:36:51 +0000465 /* Any set[v]buf(stdin, ...) screws up Tkinter :-( */
Guido van Rossumb31c7dc1997-04-11 22:19:12 +0000466 setvbuf(stdout, (char *)NULL, _IONBF, BUFSIZ);
Guido van Rossum22ffac11998-03-06 15:30:39 +0000467#else /* !MS_WINDOWS */
468#ifdef HAVE_SETVBUF
Guido van Rossumb31c7dc1997-04-11 22:19:12 +0000469 setvbuf(stdin, (char *)NULL, _IOLBF, BUFSIZ);
470 setvbuf(stdout, (char *)NULL, _IOLBF, BUFSIZ);
Guido van Rossum22ffac11998-03-06 15:30:39 +0000471#endif /* HAVE_SETVBUF */
472#endif /* !MS_WINDOWS */
Guido van Rossum775af911997-02-14 19:50:32 +0000473 /* Leave stderr alone - it should be unbuffered anyway. */
474 }
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000475#ifdef __VMS
476 else {
477 setvbuf (stdout, (char *)NULL, _IOLBF, BUFSIZ);
478 }
479#endif /* __VMS */
Guido van Rossum667d7041995-08-04 04:20:48 +0000480
Just van Rossum2ac79ef2003-03-05 15:46:54 +0000481#ifdef __APPLE__
482 /* On MacOS X, when the Python interpreter is embedded in an
483 application bundle, it gets executed by a bootstrapping script
484 that does os.execve() with an argv[0] that's different from the
485 actual Python executable. This is needed to keep the Finder happy,
486 or rather, to work around Apple's overly strict requirements of
487 the process name. However, we still need a usable sys.executable,
488 so the actual executable path is passed in an environment variable.
489 See Lib/plat-mac/bundlebuiler.py for details about the bootstrap
490 script. */
491 if ((p = Py_GETENV("PYTHONEXECUTABLE")) && *p != '\0')
492 Py_SetProgramName(p);
493 else
494 Py_SetProgramName(argv[0]);
495#else
Guido van Rossumed52aac1997-07-19 19:20:32 +0000496 Py_SetProgramName(argv[0]);
Jack Jansenfbd861b2003-03-05 16:00:15 +0000497#endif
Guido van Rossumed52aac1997-07-19 19:20:32 +0000498 Py_Initialize();
499
Guido van Rossum667d7041995-08-04 04:20:48 +0000500 if (Py_VerboseFlag ||
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000501 (command == NULL && filename == NULL && module == NULL && stdin_is_interactive)) {
Martin v. Löwise98922f2003-03-30 17:00:39 +0000502 fprintf(stderr, "Python %s on %s\n",
503 Py_GetVersion(), Py_GetPlatform());
504 if (!Py_NoSiteFlag)
505 fprintf(stderr, "%s\n", COPYRIGHT);
506 }
Guido van Rossum393661d2001-08-31 17:40:15 +0000507
Guido van Rossum667d7041995-08-04 04:20:48 +0000508 if (command != NULL) {
Thomas Wouters2cffc7d2000-11-03 08:18:37 +0000509 /* Backup _PyOS_optind and force sys.argv[0] = '-c' */
510 _PyOS_optind--;
Martin v. Löwis790465f2008-04-05 20:41:37 +0000511 argv[_PyOS_optind] = L"-c";
Guido van Rossum667d7041995-08-04 04:20:48 +0000512 }
513
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000514 if (module != NULL) {
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000515 /* Backup _PyOS_optind and force sys.argv[0] = '-c'
516 so that PySys_SetArgv correctly sets sys.path[0] to ''*/
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000517 _PyOS_optind--;
Martin v. Löwis790465f2008-04-05 20:41:37 +0000518 argv[_PyOS_optind] = L"-c";
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000519 }
520
Thomas Wouters2cffc7d2000-11-03 08:18:37 +0000521 PySys_SetArgv(argc-_PyOS_optind, argv+_PyOS_optind);
Guido van Rossum667d7041995-08-04 04:20:48 +0000522
Guido van Rossumd8faa362007-04-27 19:54:29 +0000523 if ((Py_InspectFlag || (command == NULL && filename == NULL && module == NULL)) &&
Guido van Rossum3d26cc91997-09-16 16:11:28 +0000524 isatty(fileno(stdin))) {
525 PyObject *v;
526 v = PyImport_ImportModule("readline");
527 if (v == NULL)
528 PyErr_Clear();
529 else
530 Py_DECREF(v);
531 }
532
Guido van Rossum667d7041995-08-04 04:20:48 +0000533 if (command) {
Guido van Rossum393661d2001-08-31 17:40:15 +0000534 sts = PyRun_SimpleStringFlags(command, &cf) != 0;
Guido van Rossum05f7c501997-08-02 03:00:42 +0000535 free(command);
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000536 } else if (module) {
Christian Heimes9cd17752007-11-18 19:35:23 +0000537 sts = RunModule(module, 1);
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000538 free(module);
Guido van Rossum667d7041995-08-04 04:20:48 +0000539 }
540 else {
Christian Heimes9cd17752007-11-18 19:35:23 +0000541
Guido van Rossum775af911997-02-14 19:50:32 +0000542 if (filename == NULL && stdin_is_interactive) {
Guido van Rossumd8faa362007-04-27 19:54:29 +0000543 Py_InspectFlag = 0; /* do exit on SystemExit */
Martin v. Löwis6caea372003-11-18 19:46:25 +0000544 RunStartupFile(&cf);
Guido van Rossum667d7041995-08-04 04:20:48 +0000545 }
Jeremy Hyltonbc320242001-03-22 02:47:58 +0000546 /* XXX */
Christian Heimes9cd17752007-11-18 19:35:23 +0000547
548 sts = -1; /* keep track of whether we've already run __main__ */
549
550 if (filename != NULL) {
551 sts = RunMainFromImporter(filename);
552 }
553
554 if (sts==-1 && filename!=NULL) {
Martin v. Löwis790465f2008-04-05 20:41:37 +0000555 if ((fp = _wfopen(filename, L"r")) == NULL) {
Martin v. Löwis99ddc8c2008-04-06 17:57:16 +0000556 fprintf(stderr, "%ls: can't open file '%ls': [Errno %d] %s\n",
Christian Heimes9cd17752007-11-18 19:35:23 +0000557 argv[0], filename, errno, strerror(errno));
Christian Heimesada8c3b2008-03-18 18:26:33 +0000558
Christian Heimes9cd17752007-11-18 19:35:23 +0000559 return 2;
560 }
561 else if (skipfirstline) {
562 int ch;
563 /* Push back first newline so line numbers
564 remain the same */
565 while ((ch = getc(fp)) != EOF) {
566 if (ch == '\n') {
567 (void)ungetc(ch, fp);
568 break;
569 }
570 }
571 }
572 {
573 /* XXX: does this work on Win/Win64? (see posix_fstat) */
574 struct stat sb;
575 if (fstat(fileno(fp), &sb) == 0 &&
576 S_ISDIR(sb.st_mode)) {
Martin v. Löwis790465f2008-04-05 20:41:37 +0000577 fprintf(stderr, "%ls: '%ls' is a directory, cannot continue\n", argv[0], filename);
Christian Heimes679db4a2008-01-18 09:56:22 +0000578 fclose(fp);
Christian Heimes9cd17752007-11-18 19:35:23 +0000579 return 1;
580 }
581 }
582 }
583
584 if (sts==-1) {
Martin v. Löwis790465f2008-04-05 20:41:37 +0000585 char cfilename[PATH_MAX];
586 char *p_cfilename = "<stdin>";
587 if (filename) {
588 size_t r = wcstombs(cfilename, filename, PATH_MAX);
589 p_cfilename = cfilename;
590 if (r == (size_t)-1 || r >= PATH_MAX)
591 p_cfilename = "<decoding error>";
592 }
Christian Heimes9cd17752007-11-18 19:35:23 +0000593 sts = PyRun_AnyFileExFlags(
594 fp,
Martin v. Löwis790465f2008-04-05 20:41:37 +0000595 p_cfilename,
Christian Heimes9cd17752007-11-18 19:35:23 +0000596 filename != NULL, &cf) != 0;
597 }
598
Guido van Rossum667d7041995-08-04 04:20:48 +0000599 }
600
Barry Warsawd86dcd32003-06-29 17:07:06 +0000601 /* Check this environment variable at the end, to give programs the
602 * opportunity to set it from Python.
603 */
Guido van Rossumd8faa362007-04-27 19:54:29 +0000604 if (!Py_InspectFlag &&
Barry Warsawd86dcd32003-06-29 17:07:06 +0000605 (p = Py_GETENV("PYTHONINSPECT")) && *p != '\0')
606 {
Guido van Rossumd8faa362007-04-27 19:54:29 +0000607 Py_InspectFlag = 1;
Barry Warsawd86dcd32003-06-29 17:07:06 +0000608 }
609
Guido van Rossumd8faa362007-04-27 19:54:29 +0000610 if (Py_InspectFlag && stdin_is_interactive &&
611 (filename != NULL || command != NULL || module != NULL)) {
612 Py_InspectFlag = 0;
Jeremy Hyltonbc320242001-03-22 02:47:58 +0000613 /* XXX */
614 sts = PyRun_AnyFileFlags(stdin, "<stdin>", &cf) != 0;
Guido van Rossumd8faa362007-04-27 19:54:29 +0000615 }
Guido van Rossum667d7041995-08-04 04:20:48 +0000616
Thomas Wouters902d6eb2007-01-09 23:18:33 +0000617 WaitForThreadShutdown();
618
Guido van Rossum5d1770e1997-08-05 02:23:48 +0000619 Py_Finalize();
Barry Warsaw3e13b1e2001-02-23 16:46:39 +0000620
621#ifdef __INSURE__
622 /* Insure++ is a memory analysis tool that aids in discovering
623 * memory leaks and other memory problems. On Python exit, the
Walter Dörwald16807132007-05-25 13:52:07 +0000624 * interned string dictionaries are flagged as being in use at exit
Barry Warsaw3e13b1e2001-02-23 16:46:39 +0000625 * (which it is). Under normal circumstances, this is fine because
626 * the memory will be automatically reclaimed by the system. Under
627 * memory debugging, it's a huge source of useless noise, so we
628 * trade off slower shutdown for less distraction in the memory
629 * reports. -baw
630 */
631 _Py_ReleaseInternedStrings();
Walter Dörwald16807132007-05-25 13:52:07 +0000632 _Py_ReleaseInternedUnicodeStrings();
Barry Warsaw3e13b1e2001-02-23 16:46:39 +0000633#endif /* __INSURE__ */
634
Guido van Rossum05f7c501997-08-02 03:00:42 +0000635 return sts;
Guido van Rossum667d7041995-08-04 04:20:48 +0000636}
637
Skip Montanaro786ea6b2004-03-01 15:44:05 +0000638/* this is gonna seem *real weird*, but if you put some other code between
639 Py_Main() and Py_GetArgcArgv() you will need to adjust the test in the
640 while statement in Misc/gdbinit:ppystack */
Guido van Rossum667d7041995-08-04 04:20:48 +0000641
Guido van Rossum667d7041995-08-04 04:20:48 +0000642/* Make the *original* argc/argv available to other modules.
643 This is rare, but it is needed by the secureware extension. */
644
645void
Martin v. Löwis790465f2008-04-05 20:41:37 +0000646Py_GetArgcArgv(int *argc, wchar_t ***argv)
Guido van Rossum667d7041995-08-04 04:20:48 +0000647{
648 *argc = orig_argc;
649 *argv = orig_argv;
650}
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000651
652#ifdef __cplusplus
653}
654#endif