blob: 17aebae3ecba63a20a990a0f6384f6b0bc859619 [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"
Guido van Rossum667d7041995-08-04 04:20:48 +00005
Antoine Pitrou5651eaa2008-09-06 20:46:58 +00006#include <locale.h>
7
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00008#ifdef __VMS
Martin v. Löwis7a924e62003-03-05 14:15:21 +00009#include <unixlib.h>
Martin v. Löwis79acb9e2002-12-06 12:48:53 +000010#endif
11
Sjoerd Mullender9cf424b2002-08-09 13:35:18 +000012#if defined(MS_WINDOWS) || defined(__CYGWIN__)
Martin v. Löwis945362c2007-08-30 14:57:25 +000013#include <windows.h>
Thomas Wouters477c8d52006-05-27 19:21:47 +000014#ifdef HAVE_FCNTL_H
Guido van Rossum3e7ae7a1997-01-17 22:05:38 +000015#include <fcntl.h>
Martin v. Löwis790465f2008-04-05 20:41:37 +000016#define PATH_MAX MAXPATHLEN
Guido van Rossum3e7ae7a1997-01-17 22:05:38 +000017#endif
Thomas Wouters477c8d52006-05-27 19:21:47 +000018#endif
Guido van Rossum3e7ae7a1997-01-17 22:05:38 +000019
Martin v. Löwis945362c2007-08-30 14:57:25 +000020#ifdef _MSC_VER
21#include <crtdbg.h>
22#endif
23
Andrew MacIntyre7bf68332002-03-03 02:59:16 +000024#if (defined(PYOS_OS2) && !defined(PYCC_GCC)) || defined(MS_WINDOWS)
Guido van Rossuma075ce11997-12-05 21:56:45 +000025#define PYTHONHOMEHELP "<prefix>\\lib"
26#else
Andrew MacIntyre7bf68332002-03-03 02:59:16 +000027#if defined(PYOS_OS2) && defined(PYCC_GCC)
28#define PYTHONHOMEHELP "<prefix>/Lib"
29#else
Marc-André Lemburgda4dbc32001-06-12 16:13:51 +000030#define PYTHONHOMEHELP "<prefix>/pythonX.X"
Guido van Rossuma075ce11997-12-05 21:56:45 +000031#endif
Andrew MacIntyre7bf68332002-03-03 02:59:16 +000032#endif
Guido van Rossuma075ce11997-12-05 21:56:45 +000033
Thomas Wouters2cffc7d2000-11-03 08:18:37 +000034#include "pygetopt.h"
35
Guido van Rossuma22865e2000-09-05 04:41:18 +000036#define COPYRIGHT \
Guido van Rossum36002d72001-07-18 16:59:46 +000037 "Type \"help\", \"copyright\", \"credits\" or \"license\" " \
38 "for more information."
Guido van Rossuma22865e2000-09-05 04:41:18 +000039
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000040#ifdef __cplusplus
41extern "C" {
42#endif
43
Guido van Rossumac56b031996-07-21 02:33:38 +000044/* For Py_GetArgcArgv(); set by main() */
Martin v. Löwis790465f2008-04-05 20:41:37 +000045static wchar_t **orig_argv;
Guido van Rossum667d7041995-08-04 04:20:48 +000046static int orig_argc;
47
Guido van Rossumbceccf52001-04-10 22:07:43 +000048/* command line options */
Georg Brandl09a7c722012-02-20 21:31:46 +010049#define BASE_OPTS L"bBc:dEhiJm:OqRsStuvVW:xX:?"
Guido van Rossumbceccf52001-04-10 22:07:43 +000050
Guido van Rossumbceccf52001-04-10 22:07:43 +000051#define PROGRAM_OPTS BASE_OPTS
Guido van Rossum3ed4c152001-03-02 06:18:03 +000052
Guido van Rossum667d7041995-08-04 04:20:48 +000053/* Short usage message (with %s for argv0) */
54static char *usage_line =
Martin v. Löwis790465f2008-04-05 20:41:37 +000055"usage: %ls [option] ... [-c cmd | -m mod | file | -] [arg] ...\n";
Guido van Rossum667d7041995-08-04 04:20:48 +000056
57/* Long usage message, split into parts < 512 bytes */
Guido van Rossum393661d2001-08-31 17:40:15 +000058static char *usage_1 = "\
Guido van Rossum667d7041995-08-04 04:20:48 +000059Options and arguments (and corresponding environment variables):\n\
Christian Heimes2ab34442008-09-03 20:31:07 +000060-b : issue warnings about str(bytes_instance), str(bytearray_instance)\n\
61 and comparing bytes/bytearray with str. (-bb: issue errors)\n\
Christian Heimes790c8232008-01-07 21:14:23 +000062-B : don't write .py[co] files on import; also PYTHONDONTWRITEBYTECODE=x\n\
Guido van Rossum393661d2001-08-31 17:40:15 +000063-c cmd : program passed in as string (terminates option list)\n\
Thomas Wouters89f507f2006-12-13 04:49:30 +000064-d : debug output from parser; also PYTHONDEBUG=x\n\
Christian Heimes790c8232008-01-07 21:14:23 +000065-E : ignore PYTHON* environment variables (such as PYTHONPATH)\n\
Thomas Wouters0e3f5912006-08-11 14:57:12 +000066-h : print this help message and exit (also --help)\n\
Guido van Rossum61c345f2001-09-04 03:26:15 +000067";
68static char *usage_2 = "\
Guido van Rossum98297ee2007-11-06 21:34:58 +000069-i : inspect interactively after running script; forces a prompt even\n\
70 if stdin does not appear to be a terminal; also PYTHONINSPECT=x\n\
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +000071-m mod : run library module as a script (terminates option list)\n\
Thomas Wouters89f507f2006-12-13 04:49:30 +000072-O : optimize generated bytecode slightly; also PYTHONOPTIMIZE=x\n\
Guido van Rossum6b86a421999-01-28 15:07:47 +000073-OO : remove doc-strings in addition to the -O optimizations\n\
Georg Brandl9d871192010-12-04 10:47:18 +000074-q : don't print version and copyright messages on interactive startup\n\
Georg Brandl2daf6ae2012-02-20 19:54:16 +010075-R : use a pseudo-random salt to make hash() values of various types be\n\
76 unpredictable between separate invocations of the interpreter, as\n\
77 a defence against denial-of-service attacks\n\
Christian Heimes8dc226f2008-05-06 23:45:46 +000078-s : don't add user site directory to sys.path; also PYTHONNOUSERSITE\n\
Guido van Rossum7922bd71997-08-29 22:34:47 +000079-S : don't imply 'import site' on initialization\n\
Guido van Rossum393661d2001-08-31 17:40:15 +000080";
81static char *usage_3 = "\
Guido van Rossum98297ee2007-11-06 21:34:58 +000082-u : unbuffered binary stdout and stderr; also PYTHONUNBUFFERED=x\n\
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +000083 see man page for details on internal buffering relating to '-u'\n\
Thomas Wouters89f507f2006-12-13 04:49:30 +000084-v : verbose (trace import statements); also PYTHONVERBOSE=x\n\
85 can be supplied multiple times to increase verbosity\n\
Thomas Wouters0e3f5912006-08-11 14:57:12 +000086-V : print the Python version number and exit (also --version)\n\
Thomas Wouters89f507f2006-12-13 04:49:30 +000087-W arg : warning control; arg is action:message:category:module:lineno\n\
Philip Jenvey0805ca32010-04-07 04:04:10 +000088 also PYTHONWARNINGS=arg\n\
Guido van Rossum393661d2001-08-31 17:40:15 +000089-x : skip first line of source, allowing use of non-Unix forms of #!cmd\n\
Antoine Pitrou9583cac2010-10-21 13:42:28 +000090-X opt : set implementation-specific option\n\
Guido van Rossum7922bd71997-08-29 22:34:47 +000091";
Guido van Rossum393661d2001-08-31 17:40:15 +000092static char *usage_4 = "\
Guido van Rossum98297ee2007-11-06 21:34:58 +000093file : program read from script file\n\
94- : program read from stdin (default; interactive mode if a tty)\n\
Thomas Wouters89f507f2006-12-13 04:49:30 +000095arg ...: arguments passed to program in sys.argv[1:]\n\n\
Guido van Rossum667d7041995-08-04 04:20:48 +000096Other environment variables:\n\
97PYTHONSTARTUP: file executed on interactive startup (no default)\n\
Guido van Rossuma075ce11997-12-05 21:56:45 +000098PYTHONPATH : '%c'-separated list of directories prefixed to the\n\
Guido van Rossum667d7041995-08-04 04:20:48 +000099 default module search path. The result is sys.path.\n\
Christian Heimes790c8232008-01-07 21:14:23 +0000100";
Victor Stinner9802b392010-08-19 11:36:43 +0000101static char *usage_5 =
102"PYTHONHOME : alternate <prefix> directory (or <prefix>%c<exec_prefix>).\n"
103" The default module search path uses %s.\n"
104"PYTHONCASEOK : ignore case in 'import' statements (Windows).\n"
Georg Brandl09a7c722012-02-20 21:31:46 +0100105"PYTHONIOENCODING: Encoding[:errors] used for stdin/stdout/stderr.\n\
Guido van Rossum667d7041995-08-04 04:20:48 +0000106";
Georg Brandl2daf6ae2012-02-20 19:54:16 +0100107static char *usage_6 = "\
Georg Brandlc9a42072012-02-21 22:36:27 +0100108PYTHONHASHSEED: if this variable is set to 'random', the effect is the same\n\
109 as specifying the -R option: a random value is used to seed the hashes of\n\
110 str, bytes and datetime objects. It can also be set to an integer\n\
Georg Brandl2daf6ae2012-02-20 19:54:16 +0100111 in the range [0,4294967295] to get hash values with a predictable seed.\n\
112";
Guido van Rossum667d7041995-08-04 04:20:48 +0000113
Martin v. Löwis852ba7e2003-03-30 17:09:58 +0000114static int
Martin v. Löwis790465f2008-04-05 20:41:37 +0000115usage(int exitcode, wchar_t* program)
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000116{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000117 FILE *f = exitcode ? stderr : stdout;
Guido van Rossum393661d2001-08-31 17:40:15 +0000118
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000119 fprintf(f, usage_line, program);
120 if (exitcode)
121 fprintf(f, "Try `python -h' for more information.\n");
122 else {
123 fputs(usage_1, f);
124 fputs(usage_2, f);
125 fputs(usage_3, f);
126 fprintf(f, usage_4, DELIM);
127 fprintf(f, usage_5, DELIM, PYTHONHOMEHELP);
Georg Brandl2daf6ae2012-02-20 19:54:16 +0100128 fputs(usage_6, f);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000129 }
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000130#if defined(__VMS)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000131 if (exitcode == 0) {
132 /* suppress 'error' message */
133 return 1;
134 }
135 else {
136 /* STS$M_INHIB_MSG + SS$_ABORT */
137 return 0x1000002c;
138 }
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000139#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000140 return exitcode;
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000141#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000142 /*NOTREACHED*/
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000143}
144
Martin v. Löwis6caea372003-11-18 19:46:25 +0000145static void RunStartupFile(PyCompilerFlags *cf)
146{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000147 char *startup = Py_GETENV("PYTHONSTARTUP");
148 if (startup != NULL && startup[0] != '\0') {
149 FILE *fp = fopen(startup, "r");
150 if (fp != NULL) {
151 (void) PyRun_SimpleFileExFlags(fp, startup, 0, cf);
152 PyErr_Clear();
153 fclose(fp);
154 } else {
155 int save_errno;
156
157 save_errno = errno;
158 PySys_WriteStderr("Could not open PYTHONSTARTUP\n");
159 errno = save_errno;
160 PyErr_SetFromErrnoWithFilename(PyExc_IOError,
161 startup);
162 PyErr_Print();
163 PyErr_Clear();
164 }
165 }
Martin v. Löwis6caea372003-11-18 19:46:25 +0000166}
167
Thomas Woutersa9773292006-04-21 09:43:23 +0000168
Antoine Pitrou5651eaa2008-09-06 20:46:58 +0000169static int RunModule(wchar_t *modname, int set_argv0)
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000170{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000171 PyObject *module, *runpy, *runmodule, *runargs, *result;
172 runpy = PyImport_ImportModule("runpy");
173 if (runpy == NULL) {
174 fprintf(stderr, "Could not import runpy module\n");
175 return -1;
176 }
177 runmodule = PyObject_GetAttrString(runpy, "_run_module_as_main");
178 if (runmodule == NULL) {
179 fprintf(stderr, "Could not access runpy._run_module_as_main\n");
180 Py_DECREF(runpy);
181 return -1;
182 }
183 module = PyUnicode_FromWideChar(modname, wcslen(modname));
184 if (module == NULL) {
185 fprintf(stderr, "Could not convert module name to unicode\n");
186 Py_DECREF(runpy);
187 Py_DECREF(runmodule);
188 return -1;
189 }
190 runargs = Py_BuildValue("(Oi)", module, set_argv0);
191 if (runargs == NULL) {
192 fprintf(stderr,
193 "Could not create arguments for runpy._run_module_as_main\n");
194 Py_DECREF(runpy);
195 Py_DECREF(runmodule);
196 Py_DECREF(module);
197 return -1;
198 }
199 result = PyObject_Call(runmodule, runargs, NULL);
200 if (result == NULL) {
201 PyErr_Print();
202 }
203 Py_DECREF(runpy);
204 Py_DECREF(runmodule);
205 Py_DECREF(module);
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
Victor Stinner4726e402010-10-06 23:24:57 +0000214static int
215RunMainFromImporter(wchar_t *filename)
Christian Heimes9cd17752007-11-18 19:35:23 +0000216{
Victor Stinner4726e402010-10-06 23:24:57 +0000217 PyObject *argv0 = NULL, *importer, *sys_path;
218 int sts;
Christian Heimes9cd17752007-11-18 19:35:23 +0000219
Victor Stinner4726e402010-10-06 23:24:57 +0000220 argv0 = PyUnicode_FromWideChar(filename, wcslen(filename));
221 if (argv0 == NULL)
222 goto error;
223
224 importer = PyImport_GetImporter(argv0);
225 if (importer == NULL)
226 goto error;
227
228 if (importer->ob_type == &PyNullImporter_Type) {
229 Py_DECREF(argv0);
230 Py_DECREF(importer);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000231 return -1;
232 }
Victor Stinner4726e402010-10-06 23:24:57 +0000233 Py_DECREF(importer);
234
235 /* argv0 is usable as an import source, so put it in sys.path[0]
236 and import __main__ */
237 sys_path = PySys_GetObject("path");
238 if (sys_path == NULL)
239 goto error;
240 if (PyList_SetItem(sys_path, 0, argv0)) {
241 argv0 = NULL;
242 goto error;
243 }
244 Py_INCREF(argv0);
245
246 sts = RunModule(L"__main__", 0);
247 return sts != 0;
248
249error:
250 Py_XDECREF(argv0);
251 PyErr_Print();
252 return 1;
Christian Heimes9cd17752007-11-18 19:35:23 +0000253}
254
Victor Stinnera62207c2010-08-07 10:57:17 +0000255static int
256run_command(wchar_t *command, PyCompilerFlags *cf)
257{
258 PyObject *unicode, *bytes;
259 int ret;
260
261 unicode = PyUnicode_FromWideChar(command, -1);
262 if (unicode == NULL)
263 goto error;
264 bytes = PyUnicode_AsUTF8String(unicode);
265 Py_DECREF(unicode);
266 if (bytes == NULL)
267 goto error;
268 ret = PyRun_SimpleStringFlags(PyBytes_AsString(bytes), cf);
269 Py_DECREF(bytes);
270 return ret != 0;
271
272error:
Victor Stinner398356b2010-08-18 22:23:22 +0000273 PySys_WriteStderr("Unable to decode the command from the command line:\n");
Victor Stinnera62207c2010-08-07 10:57:17 +0000274 PyErr_Print();
275 return 1;
276}
277
Victor Stinner0a3ddad2010-08-07 16:34:25 +0000278static int
279run_file(FILE *fp, const wchar_t *filename, PyCompilerFlags *p_cf)
280{
281 PyObject *unicode, *bytes = NULL;
282 char *filename_str;
283 int run;
284
285 /* call pending calls like signal handlers (SIGINT) */
286 if (Py_MakePendingCalls() == -1) {
287 PyErr_Print();
288 return 1;
289 }
290
291 if (filename) {
292 unicode = PyUnicode_FromWideChar(filename, wcslen(filename));
293 if (unicode != NULL) {
Victor Stinnere0f32682010-10-17 19:34:51 +0000294 bytes = PyUnicode_EncodeFSDefault(unicode);
Victor Stinner0a3ddad2010-08-07 16:34:25 +0000295 Py_DECREF(unicode);
296 }
297 if (bytes != NULL)
298 filename_str = PyBytes_AsString(bytes);
299 else {
300 PyErr_Clear();
Victor Stinnere0f32682010-10-17 19:34:51 +0000301 filename_str = "<encoding error>";
Victor Stinner0a3ddad2010-08-07 16:34:25 +0000302 }
303 }
304 else
305 filename_str = "<stdin>";
306
307 run = PyRun_AnyFileExFlags(fp, filename_str, filename != NULL, p_cf);
308 Py_XDECREF(bytes);
309 return run != 0;
310}
311
Christian Heimes9cd17752007-11-18 19:35:23 +0000312
Guido van Rossum667d7041995-08-04 04:20:48 +0000313/* Main program */
314
Mark Hammondfe51c6d2002-08-02 02:27:13 +0000315int
Martin v. Löwis790465f2008-04-05 20:41:37 +0000316Py_Main(int argc, wchar_t **argv)
Guido van Rossum667d7041995-08-04 04:20:48 +0000317{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000318 int c;
319 int sts;
320 wchar_t *command = NULL;
321 wchar_t *filename = NULL;
322 wchar_t *module = NULL;
323 FILE *fp = stdin;
324 char *p;
Philip Jenveye53de3d2010-04-14 03:01:39 +0000325#ifdef MS_WINDOWS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000326 wchar_t *wp;
Philip Jenveye53de3d2010-04-14 03:01:39 +0000327#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000328 int skipfirstline = 0;
329 int stdin_is_interactive = 0;
330 int help = 0;
331 int version = 0;
332 int saw_unbuffered_flag = 0;
333 PyCompilerFlags cf;
Guido van Rossum667d7041995-08-04 04:20:48 +0000334
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000335 cf.cf_flags = 0;
Guido van Rossum393661d2001-08-31 17:40:15 +0000336
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000337 orig_argc = argc; /* For Py_GetArgcArgv() */
338 orig_argv = argv;
Guido van Rossum667d7041995-08-04 04:20:48 +0000339
Antoine Pitrou86838b02012-02-21 19:03:47 +0100340 /* Hash randomization needed early for all string operations
341 (including -W and -X options). */
Ezio Melottia0dd22e2012-11-23 18:48:32 +0200342 _PyOS_opterr = 0; /* prevent printing the error in 1st pass */
Antoine Pitrou86838b02012-02-21 19:03:47 +0100343 while ((c = _PyOS_GetOpt(argc, argv, PROGRAM_OPTS)) != EOF) {
344 if (c == 'm' || c == 'c') {
345 /* -c / -m is the last option: following arguments are
346 not interpreter options. */
347 break;
348 }
349 switch (c) {
350 case 'E':
351 Py_IgnoreEnvironmentFlag++;
352 break;
353 case 'R':
354 Py_HashRandomizationFlag++;
355 break;
356 }
357 }
358 /* The variable is only tested for existence here; _PyRandom_Init will
359 check its value further. */
360 if (!Py_HashRandomizationFlag &&
361 (p = Py_GETENV("PYTHONHASHSEED")) && *p != '\0')
362 Py_HashRandomizationFlag = 1;
363
364 _PyRandom_Init();
365
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000366 PySys_ResetWarnOptions();
Antoine Pitrou86838b02012-02-21 19:03:47 +0100367 _PyOS_ResetGetOpt();
Guido van Rossum47f5fdc2000-12-15 22:00:54 +0000368
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000369 while ((c = _PyOS_GetOpt(argc, argv, PROGRAM_OPTS)) != EOF) {
370 if (c == 'c') {
371 size_t len;
372 /* -c is the last option; following arguments
373 that look like options are left for the
374 command to interpret. */
Amaury Forgeot d'Arc9a5499b2008-11-11 23:04:59 +0000375
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000376 len = wcslen(_PyOS_optarg) + 1 + 1;
377 command = (wchar_t *)malloc(sizeof(wchar_t) * len);
378 if (command == NULL)
379 Py_FatalError(
380 "not enough memory to copy -c argument");
381 wcscpy(command, _PyOS_optarg);
382 command[len - 2] = '\n';
383 command[len - 1] = 0;
384 break;
385 }
Guido van Rossum393661d2001-08-31 17:40:15 +0000386
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000387 if (c == 'm') {
388 /* -m is the last option; following arguments
389 that look like options are left for the
390 module to interpret. */
391 module = _PyOS_optarg;
392 break;
393 }
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000394
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000395 switch (c) {
396 case 'b':
397 Py_BytesWarningFlag++;
398 break;
Guido van Rossum667d7041995-08-04 04:20:48 +0000399
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000400 case 'd':
401 Py_DebugFlag++;
402 break;
Guido van Rossum667d7041995-08-04 04:20:48 +0000403
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000404 case 'i':
405 Py_InspectFlag++;
406 Py_InteractiveFlag++;
407 break;
Guido van Rossum667d7041995-08-04 04:20:48 +0000408
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000409 /* case 'J': reserved for Jython */
Christian Heimes33fe8092008-04-13 13:53:33 +0000410
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000411 case 'O':
412 Py_OptimizeFlag++;
413 break;
Guido van Rossum7614da61997-03-03 19:14:45 +0000414
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000415 case 'B':
416 Py_DontWriteBytecodeFlag++;
417 break;
Christian Heimes790c8232008-01-07 21:14:23 +0000418
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000419 case 's':
420 Py_NoUserSiteDirectory++;
421 break;
Christian Heimes8dc226f2008-05-06 23:45:46 +0000422
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000423 case 'S':
424 Py_NoSiteFlag++;
425 break;
Guido van Rossum7922bd71997-08-29 22:34:47 +0000426
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000427 case 'E':
Antoine Pitrou86838b02012-02-21 19:03:47 +0100428 /* Already handled above */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000429 break;
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000430
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000431 case 't':
432 /* ignored for backwards compatibility */
433 break;
Guido van Rossumbba92ca1998-04-10 19:39:15 +0000434
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000435 case 'u':
436 Py_UnbufferedStdioFlag = 1;
437 saw_unbuffered_flag = 1;
438 break;
Guido van Rossum667d7041995-08-04 04:20:48 +0000439
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000440 case 'v':
441 Py_VerboseFlag++;
442 break;
Guido van Rossum667d7041995-08-04 04:20:48 +0000443
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000444 case 'x':
445 skipfirstline = 1;
446 break;
Guido van Rossuma075ce11997-12-05 21:56:45 +0000447
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000448 case 'h':
449 case '?':
450 help++;
451 break;
Guido van Rossum45aecf42006-03-15 04:58:47 +0000452
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000453 case 'V':
454 version++;
455 break;
Guido van Rossumc15a9a12000-05-01 17:54:33 +0000456
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000457 case 'W':
458 PySys_AddWarnOption(_PyOS_optarg);
459 break;
Guido van Rossum47f5fdc2000-12-15 22:00:54 +0000460
Antoine Pitrou9583cac2010-10-21 13:42:28 +0000461 case 'X':
462 PySys_AddXOption(_PyOS_optarg);
463 break;
464
Georg Brandl9d871192010-12-04 10:47:18 +0000465 case 'q':
Georg Brandl8aa7e992010-12-28 18:30:18 +0000466 Py_QuietFlag++;
Georg Brandl9d871192010-12-04 10:47:18 +0000467 break;
468
Georg Brandl2daf6ae2012-02-20 19:54:16 +0100469 case 'R':
Antoine Pitrou86838b02012-02-21 19:03:47 +0100470 /* Already handled above */
Georg Brandl2daf6ae2012-02-20 19:54:16 +0100471 break;
472
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000473 /* This space reserved for other options */
Guido van Rossum667d7041995-08-04 04:20:48 +0000474
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000475 default:
476 return usage(2, argv[0]);
477 /*NOTREACHED*/
Guido van Rossum667d7041995-08-04 04:20:48 +0000478
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000479 }
480 }
Guido van Rossum667d7041995-08-04 04:20:48 +0000481
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000482 if (help)
483 return usage(0, argv[0]);
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000484
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000485 if (version) {
486 fprintf(stderr, "Python %s\n", PY_VERSION);
487 return 0;
488 }
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000489
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000490 if (!Py_InspectFlag &&
491 (p = Py_GETENV("PYTHONINSPECT")) && *p != '\0')
492 Py_InspectFlag = 1;
493 if (!saw_unbuffered_flag &&
494 (p = Py_GETENV("PYTHONUNBUFFERED")) && *p != '\0')
495 Py_UnbufferedStdioFlag = 1;
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000496
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000497 if (!Py_NoUserSiteDirectory &&
498 (p = Py_GETENV("PYTHONNOUSERSITE")) && *p != '\0')
499 Py_NoUserSiteDirectory = 1;
Christian Heimes8dc226f2008-05-06 23:45:46 +0000500
Philip Jenveye53de3d2010-04-14 03:01:39 +0000501#ifdef MS_WINDOWS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000502 if (!Py_IgnoreEnvironmentFlag && (wp = _wgetenv(L"PYTHONWARNINGS")) &&
503 *wp != L'\0') {
504 wchar_t *buf, *warning;
Philip Jenvey0805ca32010-04-07 04:04:10 +0000505
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000506 buf = (wchar_t *)malloc((wcslen(wp) + 1) * sizeof(wchar_t));
507 if (buf == NULL)
508 Py_FatalError(
509 "not enough memory to copy PYTHONWARNINGS");
510 wcscpy(buf, wp);
511 for (warning = wcstok(buf, L",");
512 warning != NULL;
513 warning = wcstok(NULL, L",")) {
514 PySys_AddWarnOption(warning);
515 }
516 free(buf);
517 }
Philip Jenveye53de3d2010-04-14 03:01:39 +0000518#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000519 if ((p = Py_GETENV("PYTHONWARNINGS")) && *p != '\0') {
520 char *buf, *oldloc;
Victor Stinnerc2d76fd2010-09-10 23:13:52 +0000521 PyObject *unicode;
Philip Jenveye53de3d2010-04-14 03:01:39 +0000522
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000523 /* settle for strtok here as there's no one standard
524 C89 wcstok */
525 buf = (char *)malloc(strlen(p) + 1);
526 if (buf == NULL)
527 Py_FatalError(
528 "not enough memory to copy PYTHONWARNINGS");
529 strcpy(buf, p);
530 oldloc = strdup(setlocale(LC_ALL, NULL));
531 setlocale(LC_ALL, "");
532 for (p = strtok(buf, ","); p != NULL; p = strtok(NULL, ",")) {
Victor Stinner5c848a82010-09-12 08:00:41 +0000533#ifdef __APPLE__
534 /* Use utf-8 on Mac OS X */
535 unicode = PyUnicode_FromString(p);
536#else
Victor Stinner168e1172010-10-16 23:16:16 +0000537 wchar_t *wchar;
538 size_t len;
539 wchar = _Py_char2wchar(p, &len);
Victor Stinnerc2d76fd2010-09-10 23:13:52 +0000540 if (wchar == NULL)
541 continue;
Victor Stinner168e1172010-10-16 23:16:16 +0000542 unicode = PyUnicode_FromWideChar(wchar, len);
Victor Stinnerc2d76fd2010-09-10 23:13:52 +0000543 PyMem_Free(wchar);
Victor Stinner5c848a82010-09-12 08:00:41 +0000544#endif
Victor Stinnerc2d76fd2010-09-10 23:13:52 +0000545 if (unicode == NULL)
546 continue;
547 PySys_AddWarnOptionUnicode(unicode);
548 Py_DECREF(unicode);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000549 }
550 setlocale(LC_ALL, oldloc);
551 free(oldloc);
552 free(buf);
553 }
Philip Jenveye53de3d2010-04-14 03:01:39 +0000554#endif
Philip Jenvey0805ca32010-04-07 04:04:10 +0000555
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000556 if (command == NULL && module == NULL && _PyOS_optind < argc &&
557 wcscmp(argv[_PyOS_optind], L"-") != 0)
558 {
Martin v. Löwis7a924e62003-03-05 14:15:21 +0000559#ifdef __VMS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000560 filename = decc$translate_vms(argv[_PyOS_optind]);
561 if (filename == (char *)0 || filename == (char *)-1)
562 filename = argv[_PyOS_optind];
Martin v. Löwis7a924e62003-03-05 14:15:21 +0000563
564#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000565 filename = argv[_PyOS_optind];
Martin v. Löwis7a924e62003-03-05 14:15:21 +0000566#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000567 }
Guido van Rossum775af911997-02-14 19:50:32 +0000568
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000569 stdin_is_interactive = Py_FdIsInteractive(stdin, (char *)0);
Guido van Rossum775af911997-02-14 19:50:32 +0000570
Sjoerd Mullender9cf424b2002-08-09 13:35:18 +0000571#if defined(MS_WINDOWS) || defined(__CYGWIN__)
Victor Stinner89e34362011-01-07 18:47:22 +0000572 /* don't translate newlines (\r\n <=> \n) */
573 _setmode(fileno(stdin), O_BINARY);
574 _setmode(fileno(stdout), O_BINARY);
575 _setmode(fileno(stderr), O_BINARY);
Guido van Rossumf22d7e21997-01-11 19:28:55 +0000576#endif
Victor Stinner89e34362011-01-07 18:47:22 +0000577
578 if (Py_UnbufferedStdioFlag) {
Guido van Rossum22ffac11998-03-06 15:30:39 +0000579#ifdef HAVE_SETVBUF
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000580 setvbuf(stdin, (char *)NULL, _IONBF, BUFSIZ);
581 setvbuf(stdout, (char *)NULL, _IONBF, BUFSIZ);
582 setvbuf(stderr, (char *)NULL, _IONBF, BUFSIZ);
Guido van Rossum22ffac11998-03-06 15:30:39 +0000583#else /* !HAVE_SETVBUF */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000584 setbuf(stdin, (char *)NULL);
585 setbuf(stdout, (char *)NULL);
586 setbuf(stderr, (char *)NULL);
Guido van Rossum22ffac11998-03-06 15:30:39 +0000587#endif /* !HAVE_SETVBUF */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000588 }
589 else if (Py_InteractiveFlag) {
Guido van Rossumb31c7dc1997-04-11 22:19:12 +0000590#ifdef MS_WINDOWS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000591 /* Doesn't have to have line-buffered -- use unbuffered */
592 /* Any set[v]buf(stdin, ...) screws up Tkinter :-( */
593 setvbuf(stdout, (char *)NULL, _IONBF, BUFSIZ);
Guido van Rossum22ffac11998-03-06 15:30:39 +0000594#else /* !MS_WINDOWS */
595#ifdef HAVE_SETVBUF
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000596 setvbuf(stdin, (char *)NULL, _IOLBF, BUFSIZ);
597 setvbuf(stdout, (char *)NULL, _IOLBF, BUFSIZ);
Guido van Rossum22ffac11998-03-06 15:30:39 +0000598#endif /* HAVE_SETVBUF */
599#endif /* !MS_WINDOWS */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000600 /* Leave stderr alone - it should be unbuffered anyway. */
601 }
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000602#ifdef __VMS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000603 else {
604 setvbuf (stdout, (char *)NULL, _IOLBF, BUFSIZ);
605 }
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000606#endif /* __VMS */
Guido van Rossum667d7041995-08-04 04:20:48 +0000607
Just van Rossum2ac79ef2003-03-05 15:46:54 +0000608#ifdef __APPLE__
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000609 /* On MacOS X, when the Python interpreter is embedded in an
610 application bundle, it gets executed by a bootstrapping script
611 that does os.execve() with an argv[0] that's different from the
612 actual Python executable. This is needed to keep the Finder happy,
613 or rather, to work around Apple's overly strict requirements of
614 the process name. However, we still need a usable sys.executable,
615 so the actual executable path is passed in an environment variable.
616 See Lib/plat-mac/bundlebuiler.py for details about the bootstrap
617 script. */
618 if ((p = Py_GETENV("PYTHONEXECUTABLE")) && *p != '\0') {
619 wchar_t* buffer;
Ronald Oussoreneb61f8b2012-08-22 14:24:14 +0200620 size_t len = strlen(p) + 1;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000621 size_t r;
Ronald Oussoren3e264e12009-02-12 15:55:38 +0000622
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000623 buffer = malloc(len * sizeof(wchar_t));
624 if (buffer == NULL) {
625 Py_FatalError(
626 "not enough memory to copy PYTHONEXECUTABLE");
627 }
Ronald Oussoren3e264e12009-02-12 15:55:38 +0000628
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000629 r = mbstowcs(buffer, p, len);
630 Py_SetProgramName(buffer);
631 /* buffer is now handed off - do not free */
632 } else {
633 Py_SetProgramName(argv[0]);
634 }
Just van Rossum2ac79ef2003-03-05 15:46:54 +0000635#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000636 Py_SetProgramName(argv[0]);
Jack Jansenfbd861b2003-03-05 16:00:15 +0000637#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000638 Py_Initialize();
Guido van Rossumed52aac1997-07-19 19:20:32 +0000639
Georg Brandl8aa7e992010-12-28 18:30:18 +0000640 if (!Py_QuietFlag && (Py_VerboseFlag ||
Georg Brandl9d871192010-12-04 10:47:18 +0000641 (command == NULL && filename == NULL &&
642 module == NULL && stdin_is_interactive))) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000643 fprintf(stderr, "Python %s on %s\n",
644 Py_GetVersion(), Py_GetPlatform());
645 if (!Py_NoSiteFlag)
646 fprintf(stderr, "%s\n", COPYRIGHT);
647 }
Guido van Rossum393661d2001-08-31 17:40:15 +0000648
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000649 if (command != NULL) {
650 /* Backup _PyOS_optind and force sys.argv[0] = '-c' */
651 _PyOS_optind--;
652 argv[_PyOS_optind] = L"-c";
653 }
Guido van Rossum667d7041995-08-04 04:20:48 +0000654
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000655 if (module != NULL) {
Nick Coghland26c18a2010-08-17 13:06:11 +0000656 /* Backup _PyOS_optind and force sys.argv[0] = '-m'*/
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000657 _PyOS_optind--;
Nick Coghland26c18a2010-08-17 13:06:11 +0000658 argv[_PyOS_optind] = L"-m";
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000659 }
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000660
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000661 PySys_SetArgv(argc-_PyOS_optind, argv+_PyOS_optind);
Guido van Rossum667d7041995-08-04 04:20:48 +0000662
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000663 if ((Py_InspectFlag || (command == NULL && filename == NULL && module == NULL)) &&
664 isatty(fileno(stdin))) {
665 PyObject *v;
666 v = PyImport_ImportModule("readline");
667 if (v == NULL)
668 PyErr_Clear();
669 else
670 Py_DECREF(v);
671 }
Guido van Rossum3d26cc91997-09-16 16:11:28 +0000672
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000673 if (command) {
Victor Stinnera62207c2010-08-07 10:57:17 +0000674 sts = run_command(command, &cf);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000675 free(command);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000676 } else if (module) {
Senthil Kumaranf01a3372012-07-04 19:28:16 -0700677 sts = (RunModule(module, 1) != 0);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000678 }
679 else {
Christian Heimes9cd17752007-11-18 19:35:23 +0000680
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000681 if (filename == NULL && stdin_is_interactive) {
682 Py_InspectFlag = 0; /* do exit on SystemExit */
683 RunStartupFile(&cf);
684 }
685 /* XXX */
Christian Heimes9cd17752007-11-18 19:35:23 +0000686
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000687 sts = -1; /* keep track of whether we've already run __main__ */
Christian Heimes9cd17752007-11-18 19:35:23 +0000688
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000689 if (filename != NULL) {
690 sts = RunMainFromImporter(filename);
691 }
Christian Heimes9cd17752007-11-18 19:35:23 +0000692
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000693 if (sts==-1 && filename!=NULL) {
Victor Stinner9a6692f2010-10-14 10:51:24 +0000694 fp = _Py_wfopen(filename, L"r");
695 if (fp == NULL) {
696 char *cfilename_buffer;
697 const char *cfilename;
Antoine Pitrouc345ce12011-12-16 12:28:32 +0100698 int err = errno;
Victor Stinner2f02a512010-11-08 22:43:46 +0000699 cfilename_buffer = _Py_wchar2char(filename, NULL);
Victor Stinner9a6692f2010-10-14 10:51:24 +0000700 if (cfilename_buffer != NULL)
701 cfilename = cfilename_buffer;
702 else
703 cfilename = "<unprintable file name>";
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000704 fprintf(stderr, "%ls: can't open file '%s': [Errno %d] %s\n",
Antoine Pitrouc345ce12011-12-16 12:28:32 +0100705 argv[0], cfilename, err, strerror(err));
Victor Stinner9a6692f2010-10-14 10:51:24 +0000706 if (cfilename_buffer)
707 PyMem_Free(cfilename_buffer);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000708 return 2;
709 }
710 else if (skipfirstline) {
711 int ch;
712 /* Push back first newline so line numbers
713 remain the same */
714 while ((ch = getc(fp)) != EOF) {
715 if (ch == '\n') {
716 (void)ungetc(ch, fp);
717 break;
718 }
719 }
720 }
721 {
722 /* XXX: does this work on Win/Win64? (see posix_fstat) */
723 struct stat sb;
724 if (fstat(fileno(fp), &sb) == 0 &&
725 S_ISDIR(sb.st_mode)) {
726 fprintf(stderr, "%ls: '%ls' is a directory, cannot continue\n", argv[0], filename);
727 fclose(fp);
728 return 1;
729 }
730 }
731 }
Christian Heimes9cd17752007-11-18 19:35:23 +0000732
Victor Stinner0a3ddad2010-08-07 16:34:25 +0000733 if (sts == -1)
734 sts = run_file(fp, filename, &cf);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000735 }
Barry Warsawd86dcd32003-06-29 17:07:06 +0000736
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000737 /* Check this environment variable at the end, to give programs the
738 * opportunity to set it from Python.
739 */
740 if (!Py_InspectFlag &&
741 (p = Py_GETENV("PYTHONINSPECT")) && *p != '\0')
742 {
743 Py_InspectFlag = 1;
744 }
Guido van Rossum667d7041995-08-04 04:20:48 +0000745
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000746 if (Py_InspectFlag && stdin_is_interactive &&
747 (filename != NULL || command != NULL || module != NULL)) {
748 Py_InspectFlag = 0;
749 /* XXX */
750 sts = PyRun_AnyFileFlags(stdin, "<stdin>", &cf) != 0;
751 }
752
753 Py_Finalize();
Barry Warsaw3e13b1e2001-02-23 16:46:39 +0000754
755#ifdef __INSURE__
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000756 /* Insure++ is a memory analysis tool that aids in discovering
757 * memory leaks and other memory problems. On Python exit, the
758 * interned string dictionaries are flagged as being in use at exit
759 * (which it is). Under normal circumstances, this is fine because
760 * the memory will be automatically reclaimed by the system. Under
761 * memory debugging, it's a huge source of useless noise, so we
762 * trade off slower shutdown for less distraction in the memory
763 * reports. -baw
764 */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000765 _Py_ReleaseInternedUnicodeStrings();
Barry Warsaw3e13b1e2001-02-23 16:46:39 +0000766#endif /* __INSURE__ */
767
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000768 return sts;
Guido van Rossum667d7041995-08-04 04:20:48 +0000769}
770
Skip Montanaro786ea6b2004-03-01 15:44:05 +0000771/* this is gonna seem *real weird*, but if you put some other code between
772 Py_Main() and Py_GetArgcArgv() you will need to adjust the test in the
773 while statement in Misc/gdbinit:ppystack */
Guido van Rossum667d7041995-08-04 04:20:48 +0000774
Guido van Rossum667d7041995-08-04 04:20:48 +0000775/* Make the *original* argc/argv available to other modules.
776 This is rare, but it is needed by the secureware extension. */
777
778void
Martin v. Löwis790465f2008-04-05 20:41:37 +0000779Py_GetArgcArgv(int *argc, wchar_t ***argv)
Guido van Rossum667d7041995-08-04 04:20:48 +0000780{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000781 *argc = orig_argc;
782 *argv = orig_argv;
Guido van Rossum667d7041995-08-04 04:20:48 +0000783}
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000784
785#ifdef __cplusplus
786}
787#endif