blob: 9137c85e227d1d6a69fc7dc506a0f6fb152551e9 [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 Brandl9d871192010-12-04 10:47:18 +000049#define BASE_OPTS L"bBc:dEhiJm:OqsStuvVW: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\
Christian Heimes8dc226f2008-05-06 23:45:46 +000075-s : don't add user site directory to sys.path; also PYTHONNOUSERSITE\n\
Guido van Rossum7922bd71997-08-29 22:34:47 +000076-S : don't imply 'import site' on initialization\n\
Guido van Rossum393661d2001-08-31 17:40:15 +000077";
78static char *usage_3 = "\
Guido van Rossum98297ee2007-11-06 21:34:58 +000079-u : unbuffered binary stdout and stderr; also PYTHONUNBUFFERED=x\n\
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +000080 see man page for details on internal buffering relating to '-u'\n\
Thomas Wouters89f507f2006-12-13 04:49:30 +000081-v : verbose (trace import statements); also PYTHONVERBOSE=x\n\
82 can be supplied multiple times to increase verbosity\n\
Thomas Wouters0e3f5912006-08-11 14:57:12 +000083-V : print the Python version number and exit (also --version)\n\
Thomas Wouters89f507f2006-12-13 04:49:30 +000084-W arg : warning control; arg is action:message:category:module:lineno\n\
Philip Jenvey0805ca32010-04-07 04:04:10 +000085 also PYTHONWARNINGS=arg\n\
Guido van Rossum393661d2001-08-31 17:40:15 +000086-x : skip first line of source, allowing use of non-Unix forms of #!cmd\n\
Antoine Pitrou9583cac2010-10-21 13:42:28 +000087-X opt : set implementation-specific option\n\
Guido van Rossum7922bd71997-08-29 22:34:47 +000088";
Guido van Rossum393661d2001-08-31 17:40:15 +000089static char *usage_4 = "\
Guido van Rossum98297ee2007-11-06 21:34:58 +000090file : program read from script file\n\
91- : program read from stdin (default; interactive mode if a tty)\n\
Thomas Wouters89f507f2006-12-13 04:49:30 +000092arg ...: arguments passed to program in sys.argv[1:]\n\n\
Guido van Rossum667d7041995-08-04 04:20:48 +000093Other environment variables:\n\
94PYTHONSTARTUP: file executed on interactive startup (no default)\n\
Guido van Rossuma075ce11997-12-05 21:56:45 +000095PYTHONPATH : '%c'-separated list of directories prefixed to the\n\
Guido van Rossum667d7041995-08-04 04:20:48 +000096 default module search path. The result is sys.path.\n\
Christian Heimes790c8232008-01-07 21:14:23 +000097";
Victor Stinner9802b392010-08-19 11:36:43 +000098static char *usage_5 =
99"PYTHONHOME : alternate <prefix> directory (or <prefix>%c<exec_prefix>).\n"
100" The default module search path uses %s.\n"
101"PYTHONCASEOK : ignore case in 'import' statements (Windows).\n"
102"PYTHONIOENCODING: Encoding[:errors] used for stdin/stdout/stderr.\n"
Victor Stinner024e37a2011-03-31 01:31:06 +0200103"PYTHONFAULTHANDLER: dump the Python traceback on fatal errors.\n"
Victor Stinner9802b392010-08-19 11:36:43 +0000104;
Guido van Rossum667d7041995-08-04 04:20:48 +0000105
Martin v. Löwis852ba7e2003-03-30 17:09:58 +0000106static int
Martin v. Löwis790465f2008-04-05 20:41:37 +0000107usage(int exitcode, wchar_t* program)
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000108{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000109 FILE *f = exitcode ? stderr : stdout;
Guido van Rossum393661d2001-08-31 17:40:15 +0000110
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000111 fprintf(f, usage_line, program);
112 if (exitcode)
113 fprintf(f, "Try `python -h' for more information.\n");
114 else {
115 fputs(usage_1, f);
116 fputs(usage_2, f);
117 fputs(usage_3, f);
118 fprintf(f, usage_4, DELIM);
119 fprintf(f, usage_5, DELIM, PYTHONHOMEHELP);
120 }
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000121#if defined(__VMS)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000122 if (exitcode == 0) {
123 /* suppress 'error' message */
124 return 1;
125 }
126 else {
127 /* STS$M_INHIB_MSG + SS$_ABORT */
128 return 0x1000002c;
129 }
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000130#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000131 return exitcode;
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000132#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000133 /*NOTREACHED*/
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000134}
135
Martin v. Löwis6caea372003-11-18 19:46:25 +0000136static void RunStartupFile(PyCompilerFlags *cf)
137{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000138 char *startup = Py_GETENV("PYTHONSTARTUP");
139 if (startup != NULL && startup[0] != '\0') {
140 FILE *fp = fopen(startup, "r");
141 if (fp != NULL) {
142 (void) PyRun_SimpleFileExFlags(fp, startup, 0, cf);
143 PyErr_Clear();
144 fclose(fp);
145 } else {
146 int save_errno;
147
148 save_errno = errno;
149 PySys_WriteStderr("Could not open PYTHONSTARTUP\n");
150 errno = save_errno;
151 PyErr_SetFromErrnoWithFilename(PyExc_IOError,
152 startup);
153 PyErr_Print();
154 PyErr_Clear();
155 }
156 }
Martin v. Löwis6caea372003-11-18 19:46:25 +0000157}
158
Thomas Woutersa9773292006-04-21 09:43:23 +0000159
Antoine Pitrou5651eaa2008-09-06 20:46:58 +0000160static int RunModule(wchar_t *modname, int set_argv0)
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000161{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000162 PyObject *module, *runpy, *runmodule, *runargs, *result;
163 runpy = PyImport_ImportModule("runpy");
164 if (runpy == NULL) {
165 fprintf(stderr, "Could not import runpy module\n");
166 return -1;
167 }
168 runmodule = PyObject_GetAttrString(runpy, "_run_module_as_main");
169 if (runmodule == NULL) {
170 fprintf(stderr, "Could not access runpy._run_module_as_main\n");
171 Py_DECREF(runpy);
172 return -1;
173 }
174 module = PyUnicode_FromWideChar(modname, wcslen(modname));
175 if (module == NULL) {
176 fprintf(stderr, "Could not convert module name to unicode\n");
177 Py_DECREF(runpy);
178 Py_DECREF(runmodule);
179 return -1;
180 }
181 runargs = Py_BuildValue("(Oi)", module, set_argv0);
182 if (runargs == NULL) {
183 fprintf(stderr,
184 "Could not create arguments for runpy._run_module_as_main\n");
185 Py_DECREF(runpy);
186 Py_DECREF(runmodule);
187 Py_DECREF(module);
188 return -1;
189 }
190 result = PyObject_Call(runmodule, runargs, NULL);
191 if (result == NULL) {
192 PyErr_Print();
193 }
194 Py_DECREF(runpy);
195 Py_DECREF(runmodule);
196 Py_DECREF(module);
197 Py_DECREF(runargs);
198 if (result == NULL) {
199 return -1;
200 }
201 Py_DECREF(result);
202 return 0;
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000203}
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000204
Victor Stinner4726e402010-10-06 23:24:57 +0000205static int
206RunMainFromImporter(wchar_t *filename)
Christian Heimes9cd17752007-11-18 19:35:23 +0000207{
Victor Stinner4726e402010-10-06 23:24:57 +0000208 PyObject *argv0 = NULL, *importer, *sys_path;
209 int sts;
Christian Heimes9cd17752007-11-18 19:35:23 +0000210
Victor Stinner4726e402010-10-06 23:24:57 +0000211 argv0 = PyUnicode_FromWideChar(filename, wcslen(filename));
212 if (argv0 == NULL)
213 goto error;
214
215 importer = PyImport_GetImporter(argv0);
216 if (importer == NULL)
217 goto error;
218
219 if (importer->ob_type == &PyNullImporter_Type) {
220 Py_DECREF(argv0);
221 Py_DECREF(importer);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000222 return -1;
223 }
Victor Stinner4726e402010-10-06 23:24:57 +0000224 Py_DECREF(importer);
225
226 /* argv0 is usable as an import source, so put it in sys.path[0]
227 and import __main__ */
228 sys_path = PySys_GetObject("path");
229 if (sys_path == NULL)
230 goto error;
231 if (PyList_SetItem(sys_path, 0, argv0)) {
232 argv0 = NULL;
233 goto error;
234 }
235 Py_INCREF(argv0);
236
237 sts = RunModule(L"__main__", 0);
238 return sts != 0;
239
240error:
241 Py_XDECREF(argv0);
242 PyErr_Print();
243 return 1;
Christian Heimes9cd17752007-11-18 19:35:23 +0000244}
245
Victor Stinnera62207c2010-08-07 10:57:17 +0000246static int
247run_command(wchar_t *command, PyCompilerFlags *cf)
248{
249 PyObject *unicode, *bytes;
250 int ret;
251
252 unicode = PyUnicode_FromWideChar(command, -1);
253 if (unicode == NULL)
254 goto error;
255 bytes = PyUnicode_AsUTF8String(unicode);
256 Py_DECREF(unicode);
257 if (bytes == NULL)
258 goto error;
259 ret = PyRun_SimpleStringFlags(PyBytes_AsString(bytes), cf);
260 Py_DECREF(bytes);
261 return ret != 0;
262
263error:
Victor Stinner398356b2010-08-18 22:23:22 +0000264 PySys_WriteStderr("Unable to decode the command from the command line:\n");
Victor Stinnera62207c2010-08-07 10:57:17 +0000265 PyErr_Print();
266 return 1;
267}
268
Victor Stinner0a3ddad2010-08-07 16:34:25 +0000269static int
270run_file(FILE *fp, const wchar_t *filename, PyCompilerFlags *p_cf)
271{
272 PyObject *unicode, *bytes = NULL;
273 char *filename_str;
274 int run;
275
276 /* call pending calls like signal handlers (SIGINT) */
277 if (Py_MakePendingCalls() == -1) {
278 PyErr_Print();
279 return 1;
280 }
281
282 if (filename) {
283 unicode = PyUnicode_FromWideChar(filename, wcslen(filename));
284 if (unicode != NULL) {
Victor Stinnere0f32682010-10-17 19:34:51 +0000285 bytes = PyUnicode_EncodeFSDefault(unicode);
Victor Stinner0a3ddad2010-08-07 16:34:25 +0000286 Py_DECREF(unicode);
287 }
288 if (bytes != NULL)
289 filename_str = PyBytes_AsString(bytes);
290 else {
291 PyErr_Clear();
Victor Stinnere0f32682010-10-17 19:34:51 +0000292 filename_str = "<encoding error>";
Victor Stinner0a3ddad2010-08-07 16:34:25 +0000293 }
294 }
295 else
296 filename_str = "<stdin>";
297
298 run = PyRun_AnyFileExFlags(fp, filename_str, filename != NULL, p_cf);
299 Py_XDECREF(bytes);
300 return run != 0;
301}
302
Christian Heimes9cd17752007-11-18 19:35:23 +0000303
Guido van Rossum667d7041995-08-04 04:20:48 +0000304/* Main program */
305
Mark Hammondfe51c6d2002-08-02 02:27:13 +0000306int
Martin v. Löwis790465f2008-04-05 20:41:37 +0000307Py_Main(int argc, wchar_t **argv)
Guido van Rossum667d7041995-08-04 04:20:48 +0000308{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000309 int c;
310 int sts;
311 wchar_t *command = NULL;
312 wchar_t *filename = NULL;
313 wchar_t *module = NULL;
314 FILE *fp = stdin;
315 char *p;
Philip Jenveye53de3d2010-04-14 03:01:39 +0000316#ifdef MS_WINDOWS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000317 wchar_t *wp;
Philip Jenveye53de3d2010-04-14 03:01:39 +0000318#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000319 int skipfirstline = 0;
320 int stdin_is_interactive = 0;
321 int help = 0;
322 int version = 0;
323 int saw_unbuffered_flag = 0;
324 PyCompilerFlags cf;
Guido van Rossum667d7041995-08-04 04:20:48 +0000325
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000326 cf.cf_flags = 0;
Guido van Rossum393661d2001-08-31 17:40:15 +0000327
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000328 orig_argc = argc; /* For Py_GetArgcArgv() */
329 orig_argv = argv;
Guido van Rossum667d7041995-08-04 04:20:48 +0000330
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000331 PySys_ResetWarnOptions();
Guido van Rossum47f5fdc2000-12-15 22:00:54 +0000332
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000333 while ((c = _PyOS_GetOpt(argc, argv, PROGRAM_OPTS)) != EOF) {
334 if (c == 'c') {
335 size_t len;
336 /* -c is the last option; following arguments
337 that look like options are left for the
338 command to interpret. */
Amaury Forgeot d'Arc9a5499b2008-11-11 23:04:59 +0000339
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000340 len = wcslen(_PyOS_optarg) + 1 + 1;
341 command = (wchar_t *)malloc(sizeof(wchar_t) * len);
342 if (command == NULL)
343 Py_FatalError(
344 "not enough memory to copy -c argument");
345 wcscpy(command, _PyOS_optarg);
346 command[len - 2] = '\n';
347 command[len - 1] = 0;
348 break;
349 }
Guido van Rossum393661d2001-08-31 17:40:15 +0000350
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000351 if (c == 'm') {
352 /* -m is the last option; following arguments
353 that look like options are left for the
354 module to interpret. */
355 module = _PyOS_optarg;
356 break;
357 }
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000358
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000359 switch (c) {
360 case 'b':
361 Py_BytesWarningFlag++;
362 break;
Guido van Rossum667d7041995-08-04 04:20:48 +0000363
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000364 case 'd':
365 Py_DebugFlag++;
366 break;
Guido van Rossum667d7041995-08-04 04:20:48 +0000367
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000368 case 'i':
369 Py_InspectFlag++;
370 Py_InteractiveFlag++;
371 break;
Guido van Rossum667d7041995-08-04 04:20:48 +0000372
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000373 /* case 'J': reserved for Jython */
Christian Heimes33fe8092008-04-13 13:53:33 +0000374
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000375 case 'O':
376 Py_OptimizeFlag++;
377 break;
Guido van Rossum7614da61997-03-03 19:14:45 +0000378
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000379 case 'B':
380 Py_DontWriteBytecodeFlag++;
381 break;
Christian Heimes790c8232008-01-07 21:14:23 +0000382
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000383 case 's':
384 Py_NoUserSiteDirectory++;
385 break;
Christian Heimes8dc226f2008-05-06 23:45:46 +0000386
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000387 case 'S':
388 Py_NoSiteFlag++;
389 break;
Guido van Rossum7922bd71997-08-29 22:34:47 +0000390
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000391 case 'E':
392 Py_IgnoreEnvironmentFlag++;
393 break;
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000394
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000395 case 't':
396 /* ignored for backwards compatibility */
397 break;
Guido van Rossumbba92ca1998-04-10 19:39:15 +0000398
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000399 case 'u':
400 Py_UnbufferedStdioFlag = 1;
401 saw_unbuffered_flag = 1;
402 break;
Guido van Rossum667d7041995-08-04 04:20:48 +0000403
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000404 case 'v':
405 Py_VerboseFlag++;
406 break;
Guido van Rossum667d7041995-08-04 04:20:48 +0000407
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000408 case 'x':
409 skipfirstline = 1;
410 break;
Guido van Rossuma075ce11997-12-05 21:56:45 +0000411
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000412 case 'h':
413 case '?':
414 help++;
415 break;
Guido van Rossum45aecf42006-03-15 04:58:47 +0000416
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000417 case 'V':
418 version++;
419 break;
Guido van Rossumc15a9a12000-05-01 17:54:33 +0000420
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000421 case 'W':
422 PySys_AddWarnOption(_PyOS_optarg);
423 break;
Guido van Rossum47f5fdc2000-12-15 22:00:54 +0000424
Antoine Pitrou9583cac2010-10-21 13:42:28 +0000425 case 'X':
426 PySys_AddXOption(_PyOS_optarg);
427 break;
428
Georg Brandl9d871192010-12-04 10:47:18 +0000429 case 'q':
Georg Brandl8aa7e992010-12-28 18:30:18 +0000430 Py_QuietFlag++;
Georg Brandl9d871192010-12-04 10:47:18 +0000431 break;
432
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000433 /* This space reserved for other options */
Guido van Rossum667d7041995-08-04 04:20:48 +0000434
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000435 default:
436 return usage(2, argv[0]);
437 /*NOTREACHED*/
Guido van Rossum667d7041995-08-04 04:20:48 +0000438
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000439 }
440 }
Guido van Rossum667d7041995-08-04 04:20:48 +0000441
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000442 if (help)
443 return usage(0, argv[0]);
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000444
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000445 if (version) {
446 fprintf(stderr, "Python %s\n", PY_VERSION);
447 return 0;
448 }
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000449
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000450 if (!Py_InspectFlag &&
451 (p = Py_GETENV("PYTHONINSPECT")) && *p != '\0')
452 Py_InspectFlag = 1;
453 if (!saw_unbuffered_flag &&
454 (p = Py_GETENV("PYTHONUNBUFFERED")) && *p != '\0')
455 Py_UnbufferedStdioFlag = 1;
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000456
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000457 if (!Py_NoUserSiteDirectory &&
458 (p = Py_GETENV("PYTHONNOUSERSITE")) && *p != '\0')
459 Py_NoUserSiteDirectory = 1;
Christian Heimes8dc226f2008-05-06 23:45:46 +0000460
Philip Jenveye53de3d2010-04-14 03:01:39 +0000461#ifdef MS_WINDOWS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000462 if (!Py_IgnoreEnvironmentFlag && (wp = _wgetenv(L"PYTHONWARNINGS")) &&
463 *wp != L'\0') {
464 wchar_t *buf, *warning;
Philip Jenvey0805ca32010-04-07 04:04:10 +0000465
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000466 buf = (wchar_t *)malloc((wcslen(wp) + 1) * sizeof(wchar_t));
467 if (buf == NULL)
468 Py_FatalError(
469 "not enough memory to copy PYTHONWARNINGS");
470 wcscpy(buf, wp);
471 for (warning = wcstok(buf, L",");
472 warning != NULL;
473 warning = wcstok(NULL, L",")) {
474 PySys_AddWarnOption(warning);
475 }
476 free(buf);
477 }
Philip Jenveye53de3d2010-04-14 03:01:39 +0000478#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000479 if ((p = Py_GETENV("PYTHONWARNINGS")) && *p != '\0') {
480 char *buf, *oldloc;
Victor Stinnerc2d76fd2010-09-10 23:13:52 +0000481 PyObject *unicode;
Philip Jenveye53de3d2010-04-14 03:01:39 +0000482
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000483 /* settle for strtok here as there's no one standard
484 C89 wcstok */
485 buf = (char *)malloc(strlen(p) + 1);
486 if (buf == NULL)
487 Py_FatalError(
488 "not enough memory to copy PYTHONWARNINGS");
489 strcpy(buf, p);
490 oldloc = strdup(setlocale(LC_ALL, NULL));
491 setlocale(LC_ALL, "");
492 for (p = strtok(buf, ","); p != NULL; p = strtok(NULL, ",")) {
Victor Stinner5c848a82010-09-12 08:00:41 +0000493#ifdef __APPLE__
494 /* Use utf-8 on Mac OS X */
495 unicode = PyUnicode_FromString(p);
496#else
Victor Stinner168e1172010-10-16 23:16:16 +0000497 wchar_t *wchar;
498 size_t len;
499 wchar = _Py_char2wchar(p, &len);
Victor Stinnerc2d76fd2010-09-10 23:13:52 +0000500 if (wchar == NULL)
501 continue;
Victor Stinner168e1172010-10-16 23:16:16 +0000502 unicode = PyUnicode_FromWideChar(wchar, len);
Victor Stinnerc2d76fd2010-09-10 23:13:52 +0000503 PyMem_Free(wchar);
Victor Stinner5c848a82010-09-12 08:00:41 +0000504#endif
Victor Stinnerc2d76fd2010-09-10 23:13:52 +0000505 if (unicode == NULL)
506 continue;
507 PySys_AddWarnOptionUnicode(unicode);
508 Py_DECREF(unicode);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000509 }
510 setlocale(LC_ALL, oldloc);
511 free(oldloc);
512 free(buf);
513 }
Philip Jenveye53de3d2010-04-14 03:01:39 +0000514#endif
Philip Jenvey0805ca32010-04-07 04:04:10 +0000515
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000516 if (command == NULL && module == NULL && _PyOS_optind < argc &&
517 wcscmp(argv[_PyOS_optind], L"-") != 0)
518 {
Martin v. Löwis7a924e62003-03-05 14:15:21 +0000519#ifdef __VMS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000520 filename = decc$translate_vms(argv[_PyOS_optind]);
521 if (filename == (char *)0 || filename == (char *)-1)
522 filename = argv[_PyOS_optind];
Martin v. Löwis7a924e62003-03-05 14:15:21 +0000523
524#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000525 filename = argv[_PyOS_optind];
Martin v. Löwis7a924e62003-03-05 14:15:21 +0000526#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000527 }
Guido van Rossum775af911997-02-14 19:50:32 +0000528
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000529 stdin_is_interactive = Py_FdIsInteractive(stdin, (char *)0);
Guido van Rossum775af911997-02-14 19:50:32 +0000530
Sjoerd Mullender9cf424b2002-08-09 13:35:18 +0000531#if defined(MS_WINDOWS) || defined(__CYGWIN__)
Victor Stinner89e34362011-01-07 18:47:22 +0000532 /* don't translate newlines (\r\n <=> \n) */
533 _setmode(fileno(stdin), O_BINARY);
534 _setmode(fileno(stdout), O_BINARY);
535 _setmode(fileno(stderr), O_BINARY);
Guido van Rossumf22d7e21997-01-11 19:28:55 +0000536#endif
Victor Stinner89e34362011-01-07 18:47:22 +0000537
538 if (Py_UnbufferedStdioFlag) {
Guido van Rossum22ffac11998-03-06 15:30:39 +0000539#ifdef HAVE_SETVBUF
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000540 setvbuf(stdin, (char *)NULL, _IONBF, BUFSIZ);
541 setvbuf(stdout, (char *)NULL, _IONBF, BUFSIZ);
542 setvbuf(stderr, (char *)NULL, _IONBF, BUFSIZ);
Guido van Rossum22ffac11998-03-06 15:30:39 +0000543#else /* !HAVE_SETVBUF */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000544 setbuf(stdin, (char *)NULL);
545 setbuf(stdout, (char *)NULL);
546 setbuf(stderr, (char *)NULL);
Guido van Rossum22ffac11998-03-06 15:30:39 +0000547#endif /* !HAVE_SETVBUF */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000548 }
549 else if (Py_InteractiveFlag) {
Guido van Rossumb31c7dc1997-04-11 22:19:12 +0000550#ifdef MS_WINDOWS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000551 /* Doesn't have to have line-buffered -- use unbuffered */
552 /* Any set[v]buf(stdin, ...) screws up Tkinter :-( */
553 setvbuf(stdout, (char *)NULL, _IONBF, BUFSIZ);
Guido van Rossum22ffac11998-03-06 15:30:39 +0000554#else /* !MS_WINDOWS */
555#ifdef HAVE_SETVBUF
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000556 setvbuf(stdin, (char *)NULL, _IOLBF, BUFSIZ);
557 setvbuf(stdout, (char *)NULL, _IOLBF, BUFSIZ);
Guido van Rossum22ffac11998-03-06 15:30:39 +0000558#endif /* HAVE_SETVBUF */
559#endif /* !MS_WINDOWS */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000560 /* Leave stderr alone - it should be unbuffered anyway. */
561 }
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000562#ifdef __VMS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000563 else {
564 setvbuf (stdout, (char *)NULL, _IOLBF, BUFSIZ);
565 }
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000566#endif /* __VMS */
Guido van Rossum667d7041995-08-04 04:20:48 +0000567
Just van Rossum2ac79ef2003-03-05 15:46:54 +0000568#ifdef __APPLE__
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000569 /* On MacOS X, when the Python interpreter is embedded in an
570 application bundle, it gets executed by a bootstrapping script
571 that does os.execve() with an argv[0] that's different from the
572 actual Python executable. This is needed to keep the Finder happy,
573 or rather, to work around Apple's overly strict requirements of
574 the process name. However, we still need a usable sys.executable,
575 so the actual executable path is passed in an environment variable.
576 See Lib/plat-mac/bundlebuiler.py for details about the bootstrap
577 script. */
578 if ((p = Py_GETENV("PYTHONEXECUTABLE")) && *p != '\0') {
579 wchar_t* buffer;
580 size_t len = strlen(p);
Ronald Oussoren3e264e12009-02-12 15:55:38 +0000581
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000582 buffer = malloc(len * sizeof(wchar_t));
583 if (buffer == NULL) {
584 Py_FatalError(
585 "not enough memory to copy PYTHONEXECUTABLE");
586 }
Ronald Oussoren3e264e12009-02-12 15:55:38 +0000587
Brett Cannonb94767f2011-02-22 20:15:44 +0000588 mbstowcs(buffer, p, len);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000589 Py_SetProgramName(buffer);
590 /* buffer is now handed off - do not free */
591 } else {
592 Py_SetProgramName(argv[0]);
593 }
Just van Rossum2ac79ef2003-03-05 15:46:54 +0000594#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000595 Py_SetProgramName(argv[0]);
Jack Jansenfbd861b2003-03-05 16:00:15 +0000596#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000597 Py_Initialize();
Guido van Rossumed52aac1997-07-19 19:20:32 +0000598
Georg Brandl8aa7e992010-12-28 18:30:18 +0000599 if (!Py_QuietFlag && (Py_VerboseFlag ||
Georg Brandl9d871192010-12-04 10:47:18 +0000600 (command == NULL && filename == NULL &&
601 module == NULL && stdin_is_interactive))) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000602 fprintf(stderr, "Python %s on %s\n",
603 Py_GetVersion(), Py_GetPlatform());
604 if (!Py_NoSiteFlag)
605 fprintf(stderr, "%s\n", COPYRIGHT);
606 }
Guido van Rossum393661d2001-08-31 17:40:15 +0000607
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000608 if (command != NULL) {
609 /* Backup _PyOS_optind and force sys.argv[0] = '-c' */
610 _PyOS_optind--;
611 argv[_PyOS_optind] = L"-c";
612 }
Guido van Rossum667d7041995-08-04 04:20:48 +0000613
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000614 if (module != NULL) {
Nick Coghland26c18a2010-08-17 13:06:11 +0000615 /* Backup _PyOS_optind and force sys.argv[0] = '-m'*/
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000616 _PyOS_optind--;
Nick Coghland26c18a2010-08-17 13:06:11 +0000617 argv[_PyOS_optind] = L"-m";
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000618 }
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000619
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000620 PySys_SetArgv(argc-_PyOS_optind, argv+_PyOS_optind);
Guido van Rossum667d7041995-08-04 04:20:48 +0000621
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000622 if ((Py_InspectFlag || (command == NULL && filename == NULL && module == NULL)) &&
623 isatty(fileno(stdin))) {
624 PyObject *v;
625 v = PyImport_ImportModule("readline");
626 if (v == NULL)
627 PyErr_Clear();
628 else
629 Py_DECREF(v);
630 }
Guido van Rossum3d26cc91997-09-16 16:11:28 +0000631
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000632 if (command) {
Victor Stinnera62207c2010-08-07 10:57:17 +0000633 sts = run_command(command, &cf);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000634 free(command);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000635 } else if (module) {
636 sts = RunModule(module, 1);
637 }
638 else {
Christian Heimes9cd17752007-11-18 19:35:23 +0000639
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000640 if (filename == NULL && stdin_is_interactive) {
641 Py_InspectFlag = 0; /* do exit on SystemExit */
642 RunStartupFile(&cf);
643 }
644 /* XXX */
Christian Heimes9cd17752007-11-18 19:35:23 +0000645
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000646 sts = -1; /* keep track of whether we've already run __main__ */
Christian Heimes9cd17752007-11-18 19:35:23 +0000647
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000648 if (filename != NULL) {
649 sts = RunMainFromImporter(filename);
650 }
Christian Heimes9cd17752007-11-18 19:35:23 +0000651
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000652 if (sts==-1 && filename!=NULL) {
Victor Stinner9a6692f2010-10-14 10:51:24 +0000653 fp = _Py_wfopen(filename, L"r");
654 if (fp == NULL) {
655 char *cfilename_buffer;
656 const char *cfilename;
Victor Stinner2f02a512010-11-08 22:43:46 +0000657 cfilename_buffer = _Py_wchar2char(filename, NULL);
Victor Stinner9a6692f2010-10-14 10:51:24 +0000658 if (cfilename_buffer != NULL)
659 cfilename = cfilename_buffer;
660 else
661 cfilename = "<unprintable file name>";
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000662 fprintf(stderr, "%ls: can't open file '%s': [Errno %d] %s\n",
663 argv[0], cfilename, errno, strerror(errno));
Victor Stinner9a6692f2010-10-14 10:51:24 +0000664 if (cfilename_buffer)
665 PyMem_Free(cfilename_buffer);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000666 return 2;
667 }
668 else if (skipfirstline) {
669 int ch;
670 /* Push back first newline so line numbers
671 remain the same */
672 while ((ch = getc(fp)) != EOF) {
673 if (ch == '\n') {
674 (void)ungetc(ch, fp);
675 break;
676 }
677 }
678 }
679 {
680 /* XXX: does this work on Win/Win64? (see posix_fstat) */
681 struct stat sb;
682 if (fstat(fileno(fp), &sb) == 0 &&
683 S_ISDIR(sb.st_mode)) {
684 fprintf(stderr, "%ls: '%ls' is a directory, cannot continue\n", argv[0], filename);
685 fclose(fp);
686 return 1;
687 }
688 }
689 }
Christian Heimes9cd17752007-11-18 19:35:23 +0000690
Victor Stinner0a3ddad2010-08-07 16:34:25 +0000691 if (sts == -1)
692 sts = run_file(fp, filename, &cf);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000693 }
Barry Warsawd86dcd32003-06-29 17:07:06 +0000694
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000695 /* Check this environment variable at the end, to give programs the
696 * opportunity to set it from Python.
697 */
698 if (!Py_InspectFlag &&
699 (p = Py_GETENV("PYTHONINSPECT")) && *p != '\0')
700 {
701 Py_InspectFlag = 1;
702 }
Guido van Rossum667d7041995-08-04 04:20:48 +0000703
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000704 if (Py_InspectFlag && stdin_is_interactive &&
705 (filename != NULL || command != NULL || module != NULL)) {
706 Py_InspectFlag = 0;
707 /* XXX */
708 sts = PyRun_AnyFileFlags(stdin, "<stdin>", &cf) != 0;
709 }
710
711 Py_Finalize();
Barry Warsaw3e13b1e2001-02-23 16:46:39 +0000712
713#ifdef __INSURE__
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000714 /* Insure++ is a memory analysis tool that aids in discovering
715 * memory leaks and other memory problems. On Python exit, the
716 * interned string dictionaries are flagged as being in use at exit
717 * (which it is). Under normal circumstances, this is fine because
718 * the memory will be automatically reclaimed by the system. Under
719 * memory debugging, it's a huge source of useless noise, so we
720 * trade off slower shutdown for less distraction in the memory
721 * reports. -baw
722 */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000723 _Py_ReleaseInternedUnicodeStrings();
Barry Warsaw3e13b1e2001-02-23 16:46:39 +0000724#endif /* __INSURE__ */
725
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000726 return sts;
Guido van Rossum667d7041995-08-04 04:20:48 +0000727}
728
Skip Montanaro786ea6b2004-03-01 15:44:05 +0000729/* this is gonna seem *real weird*, but if you put some other code between
730 Py_Main() and Py_GetArgcArgv() you will need to adjust the test in the
731 while statement in Misc/gdbinit:ppystack */
Guido van Rossum667d7041995-08-04 04:20:48 +0000732
Guido van Rossum667d7041995-08-04 04:20:48 +0000733/* Make the *original* argc/argv available to other modules.
734 This is rare, but it is needed by the secureware extension. */
735
736void
Martin v. Löwis790465f2008-04-05 20:41:37 +0000737Py_GetArgcArgv(int *argc, wchar_t ***argv)
Guido van Rossum667d7041995-08-04 04:20:48 +0000738{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000739 *argc = orig_argc;
740 *argv = orig_argv;
Guido van Rossum667d7041995-08-04 04:20:48 +0000741}
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000742
743#ifdef __cplusplus
744}
745#endif