blob: d0260334ae60dc248211c0809290903f8dc0e574 [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
Victor Stinnerb90db4c2011-04-26 22:48:24 +02009#error "PEP 11: VMS is now unsupported, code will be removed in Python 3.4"
Martin v. Löwis7a924e62003-03-05 14:15:21 +000010#include <unixlib.h>
Martin v. Löwis79acb9e2002-12-06 12:48:53 +000011#endif
12
Sjoerd Mullender9cf424b2002-08-09 13:35:18 +000013#if defined(MS_WINDOWS) || defined(__CYGWIN__)
Martin v. Löwis945362c2007-08-30 14:57:25 +000014#include <windows.h>
Thomas Wouters477c8d52006-05-27 19:21:47 +000015#ifdef HAVE_FCNTL_H
Guido van Rossum3e7ae7a1997-01-17 22:05:38 +000016#include <fcntl.h>
Martin v. Löwis790465f2008-04-05 20:41:37 +000017#define PATH_MAX MAXPATHLEN
Guido van Rossum3e7ae7a1997-01-17 22:05:38 +000018#endif
Thomas Wouters477c8d52006-05-27 19:21:47 +000019#endif
Guido van Rossum3e7ae7a1997-01-17 22:05:38 +000020
Martin v. Löwis945362c2007-08-30 14:57:25 +000021#ifdef _MSC_VER
22#include <crtdbg.h>
23#endif
24
Andrew MacIntyre7bf68332002-03-03 02:59:16 +000025#if (defined(PYOS_OS2) && !defined(PYCC_GCC)) || defined(MS_WINDOWS)
Guido van Rossuma075ce11997-12-05 21:56:45 +000026#define PYTHONHOMEHELP "<prefix>\\lib"
27#else
Andrew MacIntyre7bf68332002-03-03 02:59:16 +000028#if defined(PYOS_OS2) && defined(PYCC_GCC)
29#define PYTHONHOMEHELP "<prefix>/Lib"
30#else
Marc-André Lemburgda4dbc32001-06-12 16:13:51 +000031#define PYTHONHOMEHELP "<prefix>/pythonX.X"
Guido van Rossuma075ce11997-12-05 21:56:45 +000032#endif
Andrew MacIntyre7bf68332002-03-03 02:59:16 +000033#endif
Guido van Rossuma075ce11997-12-05 21:56:45 +000034
Thomas Wouters2cffc7d2000-11-03 08:18:37 +000035#include "pygetopt.h"
36
Guido van Rossuma22865e2000-09-05 04:41:18 +000037#define COPYRIGHT \
Guido van Rossum36002d72001-07-18 16:59:46 +000038 "Type \"help\", \"copyright\", \"credits\" or \"license\" " \
39 "for more information."
Guido van Rossuma22865e2000-09-05 04:41:18 +000040
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000041#ifdef __cplusplus
42extern "C" {
43#endif
44
Guido van Rossumac56b031996-07-21 02:33:38 +000045/* For Py_GetArgcArgv(); set by main() */
Martin v. Löwis790465f2008-04-05 20:41:37 +000046static wchar_t **orig_argv;
Guido van Rossum667d7041995-08-04 04:20:48 +000047static int orig_argc;
48
Guido van Rossumbceccf52001-04-10 22:07:43 +000049/* command line options */
Georg Brandl09a7c722012-02-20 21:31:46 +010050#define BASE_OPTS L"bBc:dEhiJm:OqRsStuvVW:xX:?"
Guido van Rossumbceccf52001-04-10 22:07:43 +000051
Guido van Rossumbceccf52001-04-10 22:07:43 +000052#define PROGRAM_OPTS BASE_OPTS
Guido van Rossum3ed4c152001-03-02 06:18:03 +000053
Guido van Rossum667d7041995-08-04 04:20:48 +000054/* Short usage message (with %s for argv0) */
55static char *usage_line =
Martin v. Löwis790465f2008-04-05 20:41:37 +000056"usage: %ls [option] ... [-c cmd | -m mod | file | -] [arg] ...\n";
Guido van Rossum667d7041995-08-04 04:20:48 +000057
58/* Long usage message, split into parts < 512 bytes */
Guido van Rossum393661d2001-08-31 17:40:15 +000059static char *usage_1 = "\
Guido van Rossum667d7041995-08-04 04:20:48 +000060Options and arguments (and corresponding environment variables):\n\
Christian Heimes2ab34442008-09-03 20:31:07 +000061-b : issue warnings about str(bytes_instance), str(bytearray_instance)\n\
62 and comparing bytes/bytearray with str. (-bb: issue errors)\n\
Christian Heimes790c8232008-01-07 21:14:23 +000063-B : don't write .py[co] files on import; also PYTHONDONTWRITEBYTECODE=x\n\
Guido van Rossum393661d2001-08-31 17:40:15 +000064-c cmd : program passed in as string (terminates option list)\n\
Thomas Wouters89f507f2006-12-13 04:49:30 +000065-d : debug output from parser; also PYTHONDEBUG=x\n\
Christian Heimes790c8232008-01-07 21:14:23 +000066-E : ignore PYTHON* environment variables (such as PYTHONPATH)\n\
Thomas Wouters0e3f5912006-08-11 14:57:12 +000067-h : print this help message and exit (also --help)\n\
Guido van Rossum61c345f2001-09-04 03:26:15 +000068";
69static char *usage_2 = "\
Guido van Rossum98297ee2007-11-06 21:34:58 +000070-i : inspect interactively after running script; forces a prompt even\n\
71 if stdin does not appear to be a terminal; also PYTHONINSPECT=x\n\
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +000072-m mod : run library module as a script (terminates option list)\n\
Thomas Wouters89f507f2006-12-13 04:49:30 +000073-O : optimize generated bytecode slightly; also PYTHONOPTIMIZE=x\n\
Guido van Rossum6b86a421999-01-28 15:07:47 +000074-OO : remove doc-strings in addition to the -O optimizations\n\
Georg Brandl9d871192010-12-04 10:47:18 +000075-q : don't print version and copyright messages on interactive startup\n\
Georg Brandl2daf6ae2012-02-20 19:54:16 +010076-R : use a pseudo-random salt to make hash() values of various types be\n\
77 unpredictable between separate invocations of the interpreter, as\n\
78 a defence against denial-of-service attacks\n\
Christian Heimes8dc226f2008-05-06 23:45:46 +000079-s : don't add user site directory to sys.path; also PYTHONNOUSERSITE\n\
Guido van Rossum7922bd71997-08-29 22:34:47 +000080-S : don't imply 'import site' on initialization\n\
Guido van Rossum393661d2001-08-31 17:40:15 +000081";
82static char *usage_3 = "\
Guido van Rossum98297ee2007-11-06 21:34:58 +000083-u : unbuffered binary stdout and stderr; also PYTHONUNBUFFERED=x\n\
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +000084 see man page for details on internal buffering relating to '-u'\n\
Thomas Wouters89f507f2006-12-13 04:49:30 +000085-v : verbose (trace import statements); also PYTHONVERBOSE=x\n\
86 can be supplied multiple times to increase verbosity\n\
Thomas Wouters0e3f5912006-08-11 14:57:12 +000087-V : print the Python version number and exit (also --version)\n\
Thomas Wouters89f507f2006-12-13 04:49:30 +000088-W arg : warning control; arg is action:message:category:module:lineno\n\
Philip Jenvey0805ca32010-04-07 04:04:10 +000089 also PYTHONWARNINGS=arg\n\
Guido van Rossum393661d2001-08-31 17:40:15 +000090-x : skip first line of source, allowing use of non-Unix forms of #!cmd\n\
Antoine Pitrou9583cac2010-10-21 13:42:28 +000091-X opt : set implementation-specific option\n\
Guido van Rossum7922bd71997-08-29 22:34:47 +000092";
Guido van Rossum393661d2001-08-31 17:40:15 +000093static char *usage_4 = "\
Guido van Rossum98297ee2007-11-06 21:34:58 +000094file : program read from script file\n\
95- : program read from stdin (default; interactive mode if a tty)\n\
Thomas Wouters89f507f2006-12-13 04:49:30 +000096arg ...: arguments passed to program in sys.argv[1:]\n\n\
Guido van Rossum667d7041995-08-04 04:20:48 +000097Other environment variables:\n\
98PYTHONSTARTUP: file executed on interactive startup (no default)\n\
Guido van Rossuma075ce11997-12-05 21:56:45 +000099PYTHONPATH : '%c'-separated list of directories prefixed to the\n\
Guido van Rossum667d7041995-08-04 04:20:48 +0000100 default module search path. The result is sys.path.\n\
Christian Heimes790c8232008-01-07 21:14:23 +0000101";
Victor Stinner9802b392010-08-19 11:36:43 +0000102static char *usage_5 =
103"PYTHONHOME : alternate <prefix> directory (or <prefix>%c<exec_prefix>).\n"
104" The default module search path uses %s.\n"
105"PYTHONCASEOK : ignore case in 'import' statements (Windows).\n"
106"PYTHONIOENCODING: Encoding[:errors] used for stdin/stdout/stderr.\n"
Georg Brandl2fb477c2012-02-21 00:33:36 +0100107"PYTHONFAULTHANDLER: dump the Python traceback on fatal errors.\n\
Guido van Rossum667d7041995-08-04 04:20:48 +0000108";
Georg Brandl2daf6ae2012-02-20 19:54:16 +0100109static char *usage_6 = "\
110PYTHONHASHSEED: if this variable is set to ``random``, the effect is the same \n\
111 as specifying the :option:`-R` option: a random value is used to seed the\n\
112 hashes of str, bytes and datetime objects. It can also be set to an integer\n\
113 in the range [0,4294967295] to get hash values with a predictable seed.\n\
114";
Guido van Rossum667d7041995-08-04 04:20:48 +0000115
Martin v. Löwis852ba7e2003-03-30 17:09:58 +0000116static int
Martin v. Löwis790465f2008-04-05 20:41:37 +0000117usage(int exitcode, wchar_t* program)
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000118{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000119 FILE *f = exitcode ? stderr : stdout;
Guido van Rossum393661d2001-08-31 17:40:15 +0000120
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000121 fprintf(f, usage_line, program);
122 if (exitcode)
123 fprintf(f, "Try `python -h' for more information.\n");
124 else {
125 fputs(usage_1, f);
126 fputs(usage_2, f);
127 fputs(usage_3, f);
128 fprintf(f, usage_4, DELIM);
129 fprintf(f, usage_5, DELIM, PYTHONHOMEHELP);
Georg Brandl2daf6ae2012-02-20 19:54:16 +0100130 fputs(usage_6, f);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000131 }
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000132#if defined(__VMS)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000133 if (exitcode == 0) {
134 /* suppress 'error' message */
135 return 1;
136 }
137 else {
138 /* STS$M_INHIB_MSG + SS$_ABORT */
139 return 0x1000002c;
140 }
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000141#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000142 return exitcode;
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000143#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000144 /*NOTREACHED*/
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000145}
146
Martin v. Löwis6caea372003-11-18 19:46:25 +0000147static void RunStartupFile(PyCompilerFlags *cf)
148{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000149 char *startup = Py_GETENV("PYTHONSTARTUP");
150 if (startup != NULL && startup[0] != '\0') {
151 FILE *fp = fopen(startup, "r");
152 if (fp != NULL) {
153 (void) PyRun_SimpleFileExFlags(fp, startup, 0, cf);
154 PyErr_Clear();
155 fclose(fp);
156 } else {
157 int save_errno;
158
159 save_errno = errno;
160 PySys_WriteStderr("Could not open PYTHONSTARTUP\n");
161 errno = save_errno;
162 PyErr_SetFromErrnoWithFilename(PyExc_IOError,
163 startup);
164 PyErr_Print();
165 PyErr_Clear();
166 }
167 }
Martin v. Löwis6caea372003-11-18 19:46:25 +0000168}
169
Thomas Woutersa9773292006-04-21 09:43:23 +0000170
Antoine Pitrou5651eaa2008-09-06 20:46:58 +0000171static int RunModule(wchar_t *modname, int set_argv0)
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000172{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000173 PyObject *module, *runpy, *runmodule, *runargs, *result;
174 runpy = PyImport_ImportModule("runpy");
175 if (runpy == NULL) {
176 fprintf(stderr, "Could not import runpy module\n");
177 return -1;
178 }
179 runmodule = PyObject_GetAttrString(runpy, "_run_module_as_main");
180 if (runmodule == NULL) {
181 fprintf(stderr, "Could not access runpy._run_module_as_main\n");
182 Py_DECREF(runpy);
183 return -1;
184 }
185 module = PyUnicode_FromWideChar(modname, wcslen(modname));
186 if (module == NULL) {
187 fprintf(stderr, "Could not convert module name to unicode\n");
188 Py_DECREF(runpy);
189 Py_DECREF(runmodule);
190 return -1;
191 }
192 runargs = Py_BuildValue("(Oi)", module, set_argv0);
193 if (runargs == NULL) {
194 fprintf(stderr,
195 "Could not create arguments for runpy._run_module_as_main\n");
196 Py_DECREF(runpy);
197 Py_DECREF(runmodule);
198 Py_DECREF(module);
199 return -1;
200 }
201 result = PyObject_Call(runmodule, runargs, NULL);
202 if (result == NULL) {
203 PyErr_Print();
204 }
205 Py_DECREF(runpy);
206 Py_DECREF(runmodule);
207 Py_DECREF(module);
208 Py_DECREF(runargs);
209 if (result == NULL) {
210 return -1;
211 }
212 Py_DECREF(result);
213 return 0;
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000214}
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000215
Victor Stinner4726e402010-10-06 23:24:57 +0000216static int
217RunMainFromImporter(wchar_t *filename)
Christian Heimes9cd17752007-11-18 19:35:23 +0000218{
Victor Stinner4726e402010-10-06 23:24:57 +0000219 PyObject *argv0 = NULL, *importer, *sys_path;
220 int sts;
Christian Heimes9cd17752007-11-18 19:35:23 +0000221
Victor Stinner4726e402010-10-06 23:24:57 +0000222 argv0 = PyUnicode_FromWideChar(filename, wcslen(filename));
223 if (argv0 == NULL)
224 goto error;
225
226 importer = PyImport_GetImporter(argv0);
227 if (importer == NULL)
228 goto error;
229
230 if (importer->ob_type == &PyNullImporter_Type) {
231 Py_DECREF(argv0);
232 Py_DECREF(importer);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000233 return -1;
234 }
Victor Stinner4726e402010-10-06 23:24:57 +0000235 Py_DECREF(importer);
236
237 /* argv0 is usable as an import source, so put it in sys.path[0]
238 and import __main__ */
239 sys_path = PySys_GetObject("path");
240 if (sys_path == NULL)
241 goto error;
242 if (PyList_SetItem(sys_path, 0, argv0)) {
243 argv0 = NULL;
244 goto error;
245 }
246 Py_INCREF(argv0);
247
248 sts = RunModule(L"__main__", 0);
249 return sts != 0;
250
251error:
252 Py_XDECREF(argv0);
253 PyErr_Print();
254 return 1;
Christian Heimes9cd17752007-11-18 19:35:23 +0000255}
256
Victor Stinnera62207c2010-08-07 10:57:17 +0000257static int
258run_command(wchar_t *command, PyCompilerFlags *cf)
259{
260 PyObject *unicode, *bytes;
261 int ret;
262
263 unicode = PyUnicode_FromWideChar(command, -1);
264 if (unicode == NULL)
265 goto error;
266 bytes = PyUnicode_AsUTF8String(unicode);
267 Py_DECREF(unicode);
268 if (bytes == NULL)
269 goto error;
270 ret = PyRun_SimpleStringFlags(PyBytes_AsString(bytes), cf);
271 Py_DECREF(bytes);
272 return ret != 0;
273
274error:
Victor Stinner398356b2010-08-18 22:23:22 +0000275 PySys_WriteStderr("Unable to decode the command from the command line:\n");
Victor Stinnera62207c2010-08-07 10:57:17 +0000276 PyErr_Print();
277 return 1;
278}
279
Victor Stinner0a3ddad2010-08-07 16:34:25 +0000280static int
281run_file(FILE *fp, const wchar_t *filename, PyCompilerFlags *p_cf)
282{
283 PyObject *unicode, *bytes = NULL;
284 char *filename_str;
285 int run;
286
287 /* call pending calls like signal handlers (SIGINT) */
288 if (Py_MakePendingCalls() == -1) {
289 PyErr_Print();
290 return 1;
291 }
292
293 if (filename) {
294 unicode = PyUnicode_FromWideChar(filename, wcslen(filename));
295 if (unicode != NULL) {
Victor Stinnere0f32682010-10-17 19:34:51 +0000296 bytes = PyUnicode_EncodeFSDefault(unicode);
Victor Stinner0a3ddad2010-08-07 16:34:25 +0000297 Py_DECREF(unicode);
298 }
299 if (bytes != NULL)
300 filename_str = PyBytes_AsString(bytes);
301 else {
302 PyErr_Clear();
Victor Stinnere0f32682010-10-17 19:34:51 +0000303 filename_str = "<encoding error>";
Victor Stinner0a3ddad2010-08-07 16:34:25 +0000304 }
305 }
306 else
307 filename_str = "<stdin>";
308
309 run = PyRun_AnyFileExFlags(fp, filename_str, filename != NULL, p_cf);
310 Py_XDECREF(bytes);
311 return run != 0;
312}
313
Christian Heimes9cd17752007-11-18 19:35:23 +0000314
Guido van Rossum667d7041995-08-04 04:20:48 +0000315/* Main program */
316
Mark Hammondfe51c6d2002-08-02 02:27:13 +0000317int
Martin v. Löwis790465f2008-04-05 20:41:37 +0000318Py_Main(int argc, wchar_t **argv)
Guido van Rossum667d7041995-08-04 04:20:48 +0000319{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000320 int c;
321 int sts;
322 wchar_t *command = NULL;
323 wchar_t *filename = NULL;
324 wchar_t *module = NULL;
325 FILE *fp = stdin;
326 char *p;
Philip Jenveye53de3d2010-04-14 03:01:39 +0000327#ifdef MS_WINDOWS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000328 wchar_t *wp;
Philip Jenveye53de3d2010-04-14 03:01:39 +0000329#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000330 int skipfirstline = 0;
331 int stdin_is_interactive = 0;
332 int help = 0;
333 int version = 0;
334 int saw_unbuffered_flag = 0;
335 PyCompilerFlags cf;
Guido van Rossum667d7041995-08-04 04:20:48 +0000336
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000337 cf.cf_flags = 0;
Guido van Rossum393661d2001-08-31 17:40:15 +0000338
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000339 orig_argc = argc; /* For Py_GetArgcArgv() */
340 orig_argv = argv;
Guido van Rossum667d7041995-08-04 04:20:48 +0000341
Antoine Pitrou86838b02012-02-21 19:03:47 +0100342 /* Hash randomization needed early for all string operations
343 (including -W and -X options). */
344 while ((c = _PyOS_GetOpt(argc, argv, PROGRAM_OPTS)) != EOF) {
345 if (c == 'm' || c == 'c') {
346 /* -c / -m is the last option: following arguments are
347 not interpreter options. */
348 break;
349 }
350 switch (c) {
351 case 'E':
352 Py_IgnoreEnvironmentFlag++;
353 break;
354 case 'R':
355 Py_HashRandomizationFlag++;
356 break;
357 }
358 }
359 /* The variable is only tested for existence here; _PyRandom_Init will
360 check its value further. */
361 if (!Py_HashRandomizationFlag &&
362 (p = Py_GETENV("PYTHONHASHSEED")) && *p != '\0')
363 Py_HashRandomizationFlag = 1;
364
365 _PyRandom_Init();
366
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000367 PySys_ResetWarnOptions();
Antoine Pitrou86838b02012-02-21 19:03:47 +0100368 _PyOS_ResetGetOpt();
Guido van Rossum47f5fdc2000-12-15 22:00:54 +0000369
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000370 while ((c = _PyOS_GetOpt(argc, argv, PROGRAM_OPTS)) != EOF) {
371 if (c == 'c') {
372 size_t len;
373 /* -c is the last option; following arguments
374 that look like options are left for the
375 command to interpret. */
Amaury Forgeot d'Arc9a5499b2008-11-11 23:04:59 +0000376
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000377 len = wcslen(_PyOS_optarg) + 1 + 1;
378 command = (wchar_t *)malloc(sizeof(wchar_t) * len);
379 if (command == NULL)
380 Py_FatalError(
381 "not enough memory to copy -c argument");
382 wcscpy(command, _PyOS_optarg);
383 command[len - 2] = '\n';
384 command[len - 1] = 0;
385 break;
386 }
Guido van Rossum393661d2001-08-31 17:40:15 +0000387
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000388 if (c == 'm') {
389 /* -m is the last option; following arguments
390 that look like options are left for the
391 module to interpret. */
392 module = _PyOS_optarg;
393 break;
394 }
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000395
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000396 switch (c) {
397 case 'b':
398 Py_BytesWarningFlag++;
399 break;
Guido van Rossum667d7041995-08-04 04:20:48 +0000400
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000401 case 'd':
402 Py_DebugFlag++;
403 break;
Guido van Rossum667d7041995-08-04 04:20:48 +0000404
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000405 case 'i':
406 Py_InspectFlag++;
407 Py_InteractiveFlag++;
408 break;
Guido van Rossum667d7041995-08-04 04:20:48 +0000409
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000410 /* case 'J': reserved for Jython */
Christian Heimes33fe8092008-04-13 13:53:33 +0000411
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000412 case 'O':
413 Py_OptimizeFlag++;
414 break;
Guido van Rossum7614da61997-03-03 19:14:45 +0000415
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000416 case 'B':
417 Py_DontWriteBytecodeFlag++;
418 break;
Christian Heimes790c8232008-01-07 21:14:23 +0000419
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000420 case 's':
421 Py_NoUserSiteDirectory++;
422 break;
Christian Heimes8dc226f2008-05-06 23:45:46 +0000423
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000424 case 'S':
425 Py_NoSiteFlag++;
426 break;
Guido van Rossum7922bd71997-08-29 22:34:47 +0000427
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000428 case 'E':
Antoine Pitrou86838b02012-02-21 19:03:47 +0100429 /* Already handled above */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000430 break;
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000431
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000432 case 't':
433 /* ignored for backwards compatibility */
434 break;
Guido van Rossumbba92ca1998-04-10 19:39:15 +0000435
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000436 case 'u':
437 Py_UnbufferedStdioFlag = 1;
438 saw_unbuffered_flag = 1;
439 break;
Guido van Rossum667d7041995-08-04 04:20:48 +0000440
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000441 case 'v':
442 Py_VerboseFlag++;
443 break;
Guido van Rossum667d7041995-08-04 04:20:48 +0000444
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000445 case 'x':
446 skipfirstline = 1;
447 break;
Guido van Rossuma075ce11997-12-05 21:56:45 +0000448
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000449 case 'h':
450 case '?':
451 help++;
452 break;
Guido van Rossum45aecf42006-03-15 04:58:47 +0000453
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000454 case 'V':
455 version++;
456 break;
Guido van Rossumc15a9a12000-05-01 17:54:33 +0000457
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000458 case 'W':
459 PySys_AddWarnOption(_PyOS_optarg);
460 break;
Guido van Rossum47f5fdc2000-12-15 22:00:54 +0000461
Antoine Pitrou9583cac2010-10-21 13:42:28 +0000462 case 'X':
463 PySys_AddXOption(_PyOS_optarg);
464 break;
465
Georg Brandl9d871192010-12-04 10:47:18 +0000466 case 'q':
Georg Brandl8aa7e992010-12-28 18:30:18 +0000467 Py_QuietFlag++;
Georg Brandl9d871192010-12-04 10:47:18 +0000468 break;
469
Georg Brandl2daf6ae2012-02-20 19:54:16 +0100470 case 'R':
Antoine Pitrou86838b02012-02-21 19:03:47 +0100471 /* Already handled above */
Georg Brandl2daf6ae2012-02-20 19:54:16 +0100472 break;
473
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000474 /* This space reserved for other options */
Guido van Rossum667d7041995-08-04 04:20:48 +0000475
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000476 default:
477 return usage(2, argv[0]);
478 /*NOTREACHED*/
Guido van Rossum667d7041995-08-04 04:20:48 +0000479
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000480 }
481 }
Guido van Rossum667d7041995-08-04 04:20:48 +0000482
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000483 if (help)
484 return usage(0, argv[0]);
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000485
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000486 if (version) {
487 fprintf(stderr, "Python %s\n", PY_VERSION);
488 return 0;
489 }
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000490
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000491 if (!Py_InspectFlag &&
492 (p = Py_GETENV("PYTHONINSPECT")) && *p != '\0')
493 Py_InspectFlag = 1;
494 if (!saw_unbuffered_flag &&
495 (p = Py_GETENV("PYTHONUNBUFFERED")) && *p != '\0')
496 Py_UnbufferedStdioFlag = 1;
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000497
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000498 if (!Py_NoUserSiteDirectory &&
499 (p = Py_GETENV("PYTHONNOUSERSITE")) && *p != '\0')
500 Py_NoUserSiteDirectory = 1;
Christian Heimes8dc226f2008-05-06 23:45:46 +0000501
Philip Jenveye53de3d2010-04-14 03:01:39 +0000502#ifdef MS_WINDOWS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000503 if (!Py_IgnoreEnvironmentFlag && (wp = _wgetenv(L"PYTHONWARNINGS")) &&
504 *wp != L'\0') {
505 wchar_t *buf, *warning;
Philip Jenvey0805ca32010-04-07 04:04:10 +0000506
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000507 buf = (wchar_t *)malloc((wcslen(wp) + 1) * sizeof(wchar_t));
508 if (buf == NULL)
509 Py_FatalError(
510 "not enough memory to copy PYTHONWARNINGS");
511 wcscpy(buf, wp);
512 for (warning = wcstok(buf, L",");
513 warning != NULL;
514 warning = wcstok(NULL, L",")) {
515 PySys_AddWarnOption(warning);
516 }
517 free(buf);
518 }
Philip Jenveye53de3d2010-04-14 03:01:39 +0000519#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000520 if ((p = Py_GETENV("PYTHONWARNINGS")) && *p != '\0') {
521 char *buf, *oldloc;
Victor Stinnerc2d76fd2010-09-10 23:13:52 +0000522 PyObject *unicode;
Philip Jenveye53de3d2010-04-14 03:01:39 +0000523
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000524 /* settle for strtok here as there's no one standard
525 C89 wcstok */
526 buf = (char *)malloc(strlen(p) + 1);
527 if (buf == NULL)
528 Py_FatalError(
529 "not enough memory to copy PYTHONWARNINGS");
530 strcpy(buf, p);
531 oldloc = strdup(setlocale(LC_ALL, NULL));
532 setlocale(LC_ALL, "");
533 for (p = strtok(buf, ","); p != NULL; p = strtok(NULL, ",")) {
Victor Stinner5c848a82010-09-12 08:00:41 +0000534#ifdef __APPLE__
535 /* Use utf-8 on Mac OS X */
536 unicode = PyUnicode_FromString(p);
537#else
Victor Stinner1b579672011-12-17 05:47:23 +0100538 unicode = PyUnicode_DecodeLocale(p, "surrogateescape");
Victor Stinner5c848a82010-09-12 08:00:41 +0000539#endif
Victor Stinneraf02e1c2011-12-16 23:56:01 +0100540 if (unicode == NULL) {
541 /* ignore errors */
542 PyErr_Clear();
Victor Stinnerc2d76fd2010-09-10 23:13:52 +0000543 continue;
Victor Stinneraf02e1c2011-12-16 23:56:01 +0100544 }
Victor Stinnerc2d76fd2010-09-10 23:13:52 +0000545 PySys_AddWarnOptionUnicode(unicode);
546 Py_DECREF(unicode);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000547 }
548 setlocale(LC_ALL, oldloc);
549 free(oldloc);
550 free(buf);
551 }
Philip Jenveye53de3d2010-04-14 03:01:39 +0000552#endif
Philip Jenvey0805ca32010-04-07 04:04:10 +0000553
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000554 if (command == NULL && module == NULL && _PyOS_optind < argc &&
555 wcscmp(argv[_PyOS_optind], L"-") != 0)
556 {
Martin v. Löwis7a924e62003-03-05 14:15:21 +0000557#ifdef __VMS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000558 filename = decc$translate_vms(argv[_PyOS_optind]);
559 if (filename == (char *)0 || filename == (char *)-1)
560 filename = argv[_PyOS_optind];
Martin v. Löwis7a924e62003-03-05 14:15:21 +0000561
562#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000563 filename = argv[_PyOS_optind];
Martin v. Löwis7a924e62003-03-05 14:15:21 +0000564#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000565 }
Guido van Rossum775af911997-02-14 19:50:32 +0000566
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000567 stdin_is_interactive = Py_FdIsInteractive(stdin, (char *)0);
Guido van Rossum775af911997-02-14 19:50:32 +0000568
Sjoerd Mullender9cf424b2002-08-09 13:35:18 +0000569#if defined(MS_WINDOWS) || defined(__CYGWIN__)
Victor Stinner89e34362011-01-07 18:47:22 +0000570 /* don't translate newlines (\r\n <=> \n) */
571 _setmode(fileno(stdin), O_BINARY);
572 _setmode(fileno(stdout), O_BINARY);
573 _setmode(fileno(stderr), O_BINARY);
Guido van Rossumf22d7e21997-01-11 19:28:55 +0000574#endif
Victor Stinner89e34362011-01-07 18:47:22 +0000575
576 if (Py_UnbufferedStdioFlag) {
Guido van Rossum22ffac11998-03-06 15:30:39 +0000577#ifdef HAVE_SETVBUF
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000578 setvbuf(stdin, (char *)NULL, _IONBF, BUFSIZ);
579 setvbuf(stdout, (char *)NULL, _IONBF, BUFSIZ);
580 setvbuf(stderr, (char *)NULL, _IONBF, BUFSIZ);
Guido van Rossum22ffac11998-03-06 15:30:39 +0000581#else /* !HAVE_SETVBUF */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000582 setbuf(stdin, (char *)NULL);
583 setbuf(stdout, (char *)NULL);
584 setbuf(stderr, (char *)NULL);
Guido van Rossum22ffac11998-03-06 15:30:39 +0000585#endif /* !HAVE_SETVBUF */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000586 }
587 else if (Py_InteractiveFlag) {
Guido van Rossumb31c7dc1997-04-11 22:19:12 +0000588#ifdef MS_WINDOWS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000589 /* Doesn't have to have line-buffered -- use unbuffered */
590 /* Any set[v]buf(stdin, ...) screws up Tkinter :-( */
591 setvbuf(stdout, (char *)NULL, _IONBF, BUFSIZ);
Guido van Rossum22ffac11998-03-06 15:30:39 +0000592#else /* !MS_WINDOWS */
593#ifdef HAVE_SETVBUF
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000594 setvbuf(stdin, (char *)NULL, _IOLBF, BUFSIZ);
595 setvbuf(stdout, (char *)NULL, _IOLBF, BUFSIZ);
Guido van Rossum22ffac11998-03-06 15:30:39 +0000596#endif /* HAVE_SETVBUF */
597#endif /* !MS_WINDOWS */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000598 /* Leave stderr alone - it should be unbuffered anyway. */
599 }
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000600#ifdef __VMS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000601 else {
602 setvbuf (stdout, (char *)NULL, _IOLBF, BUFSIZ);
603 }
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000604#endif /* __VMS */
Guido van Rossum667d7041995-08-04 04:20:48 +0000605
Just van Rossum2ac79ef2003-03-05 15:46:54 +0000606#ifdef __APPLE__
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000607 /* On MacOS X, when the Python interpreter is embedded in an
608 application bundle, it gets executed by a bootstrapping script
609 that does os.execve() with an argv[0] that's different from the
610 actual Python executable. This is needed to keep the Finder happy,
611 or rather, to work around Apple's overly strict requirements of
612 the process name. However, we still need a usable sys.executable,
613 so the actual executable path is passed in an environment variable.
614 See Lib/plat-mac/bundlebuiler.py for details about the bootstrap
615 script. */
616 if ((p = Py_GETENV("PYTHONEXECUTABLE")) && *p != '\0') {
617 wchar_t* buffer;
618 size_t len = strlen(p);
Ronald Oussoren3e264e12009-02-12 15:55:38 +0000619
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000620 buffer = malloc(len * sizeof(wchar_t));
621 if (buffer == NULL) {
622 Py_FatalError(
623 "not enough memory to copy PYTHONEXECUTABLE");
624 }
Ronald Oussoren3e264e12009-02-12 15:55:38 +0000625
Brett Cannonb94767f2011-02-22 20:15:44 +0000626 mbstowcs(buffer, p, len);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000627 Py_SetProgramName(buffer);
628 /* buffer is now handed off - do not free */
629 } else {
630 Py_SetProgramName(argv[0]);
631 }
Just van Rossum2ac79ef2003-03-05 15:46:54 +0000632#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000633 Py_SetProgramName(argv[0]);
Jack Jansenfbd861b2003-03-05 16:00:15 +0000634#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000635 Py_Initialize();
Guido van Rossumed52aac1997-07-19 19:20:32 +0000636
Georg Brandl8aa7e992010-12-28 18:30:18 +0000637 if (!Py_QuietFlag && (Py_VerboseFlag ||
Georg Brandl9d871192010-12-04 10:47:18 +0000638 (command == NULL && filename == NULL &&
639 module == NULL && stdin_is_interactive))) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000640 fprintf(stderr, "Python %s on %s\n",
641 Py_GetVersion(), Py_GetPlatform());
642 if (!Py_NoSiteFlag)
643 fprintf(stderr, "%s\n", COPYRIGHT);
644 }
Guido van Rossum393661d2001-08-31 17:40:15 +0000645
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000646 if (command != NULL) {
647 /* Backup _PyOS_optind and force sys.argv[0] = '-c' */
648 _PyOS_optind--;
649 argv[_PyOS_optind] = L"-c";
650 }
Guido van Rossum667d7041995-08-04 04:20:48 +0000651
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000652 if (module != NULL) {
Nick Coghland26c18a2010-08-17 13:06:11 +0000653 /* Backup _PyOS_optind and force sys.argv[0] = '-m'*/
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000654 _PyOS_optind--;
Nick Coghland26c18a2010-08-17 13:06:11 +0000655 argv[_PyOS_optind] = L"-m";
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000656 }
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000657
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000658 PySys_SetArgv(argc-_PyOS_optind, argv+_PyOS_optind);
Guido van Rossum667d7041995-08-04 04:20:48 +0000659
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000660 if ((Py_InspectFlag || (command == NULL && filename == NULL && module == NULL)) &&
661 isatty(fileno(stdin))) {
662 PyObject *v;
663 v = PyImport_ImportModule("readline");
664 if (v == NULL)
665 PyErr_Clear();
666 else
667 Py_DECREF(v);
668 }
Guido van Rossum3d26cc91997-09-16 16:11:28 +0000669
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000670 if (command) {
Victor Stinnera62207c2010-08-07 10:57:17 +0000671 sts = run_command(command, &cf);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000672 free(command);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000673 } else if (module) {
674 sts = RunModule(module, 1);
675 }
676 else {
Christian Heimes9cd17752007-11-18 19:35:23 +0000677
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000678 if (filename == NULL && stdin_is_interactive) {
679 Py_InspectFlag = 0; /* do exit on SystemExit */
680 RunStartupFile(&cf);
681 }
682 /* XXX */
Christian Heimes9cd17752007-11-18 19:35:23 +0000683
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000684 sts = -1; /* keep track of whether we've already run __main__ */
Christian Heimes9cd17752007-11-18 19:35:23 +0000685
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000686 if (filename != NULL) {
687 sts = RunMainFromImporter(filename);
688 }
Christian Heimes9cd17752007-11-18 19:35:23 +0000689
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000690 if (sts==-1 && filename!=NULL) {
Victor Stinner9a6692f2010-10-14 10:51:24 +0000691 fp = _Py_wfopen(filename, L"r");
692 if (fp == NULL) {
693 char *cfilename_buffer;
694 const char *cfilename;
Antoine Pitrouc345ce12011-12-16 12:28:32 +0100695 int err = errno;
Victor Stinner2f02a512010-11-08 22:43:46 +0000696 cfilename_buffer = _Py_wchar2char(filename, NULL);
Victor Stinner9a6692f2010-10-14 10:51:24 +0000697 if (cfilename_buffer != NULL)
698 cfilename = cfilename_buffer;
699 else
700 cfilename = "<unprintable file name>";
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000701 fprintf(stderr, "%ls: can't open file '%s': [Errno %d] %s\n",
Antoine Pitrouc345ce12011-12-16 12:28:32 +0100702 argv[0], cfilename, err, strerror(err));
Victor Stinner9a6692f2010-10-14 10:51:24 +0000703 if (cfilename_buffer)
704 PyMem_Free(cfilename_buffer);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000705 return 2;
706 }
707 else if (skipfirstline) {
708 int ch;
709 /* Push back first newline so line numbers
710 remain the same */
711 while ((ch = getc(fp)) != EOF) {
712 if (ch == '\n') {
713 (void)ungetc(ch, fp);
714 break;
715 }
716 }
717 }
718 {
719 /* XXX: does this work on Win/Win64? (see posix_fstat) */
720 struct stat sb;
721 if (fstat(fileno(fp), &sb) == 0 &&
722 S_ISDIR(sb.st_mode)) {
723 fprintf(stderr, "%ls: '%ls' is a directory, cannot continue\n", argv[0], filename);
724 fclose(fp);
725 return 1;
726 }
727 }
728 }
Christian Heimes9cd17752007-11-18 19:35:23 +0000729
Victor Stinner0a3ddad2010-08-07 16:34:25 +0000730 if (sts == -1)
731 sts = run_file(fp, filename, &cf);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000732 }
Barry Warsawd86dcd32003-06-29 17:07:06 +0000733
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000734 /* Check this environment variable at the end, to give programs the
735 * opportunity to set it from Python.
736 */
737 if (!Py_InspectFlag &&
738 (p = Py_GETENV("PYTHONINSPECT")) && *p != '\0')
739 {
740 Py_InspectFlag = 1;
741 }
Guido van Rossum667d7041995-08-04 04:20:48 +0000742
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000743 if (Py_InspectFlag && stdin_is_interactive &&
744 (filename != NULL || command != NULL || module != NULL)) {
745 Py_InspectFlag = 0;
746 /* XXX */
747 sts = PyRun_AnyFileFlags(stdin, "<stdin>", &cf) != 0;
748 }
749
750 Py_Finalize();
Barry Warsaw3e13b1e2001-02-23 16:46:39 +0000751
752#ifdef __INSURE__
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000753 /* Insure++ is a memory analysis tool that aids in discovering
754 * memory leaks and other memory problems. On Python exit, the
755 * interned string dictionaries are flagged as being in use at exit
756 * (which it is). Under normal circumstances, this is fine because
757 * the memory will be automatically reclaimed by the system. Under
758 * memory debugging, it's a huge source of useless noise, so we
759 * trade off slower shutdown for less distraction in the memory
760 * reports. -baw
761 */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000762 _Py_ReleaseInternedUnicodeStrings();
Barry Warsaw3e13b1e2001-02-23 16:46:39 +0000763#endif /* __INSURE__ */
764
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000765 return sts;
Guido van Rossum667d7041995-08-04 04:20:48 +0000766}
767
Skip Montanaro786ea6b2004-03-01 15:44:05 +0000768/* this is gonna seem *real weird*, but if you put some other code between
769 Py_Main() and Py_GetArgcArgv() you will need to adjust the test in the
770 while statement in Misc/gdbinit:ppystack */
Guido van Rossum667d7041995-08-04 04:20:48 +0000771
Guido van Rossum667d7041995-08-04 04:20:48 +0000772/* Make the *original* argc/argv available to other modules.
773 This is rare, but it is needed by the secureware extension. */
774
775void
Martin v. Löwis790465f2008-04-05 20:41:37 +0000776Py_GetArgcArgv(int *argc, wchar_t ***argv)
Guido van Rossum667d7041995-08-04 04:20:48 +0000777{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000778 *argc = orig_argc;
779 *argv = orig_argv;
Guido van Rossum667d7041995-08-04 04:20:48 +0000780}
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000781
782#ifdef __cplusplus
783}
784#endif