blob: 8313e3d916f16bbb3e80187ed8f40af4e3905b11 [file] [log] [blame]
Guido van Rossum667d7041995-08-04 04:20:48 +00001/* Python interpreter main program */
2
3#include "Python.h"
Guido van Rossuma075ce11997-12-05 21:56:45 +00004#include "osdefs.h"
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +00005#include "import.h"
Guido van Rossum667d7041995-08-04 04:20:48 +00006
Antoine Pitrou5651eaa2008-09-06 20:46:58 +00007#include <locale.h>
8
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00009#ifdef __VMS
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 */
Christian Heimes8dc226f2008-05-06 23:45:46 +000050#define BASE_OPTS L"bBc:dEhiJm:OsStuvVW: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\
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\
Guido van Rossum7922bd71997-08-29 22:34:47 +000087";
Guido van Rossum393661d2001-08-31 17:40:15 +000088static char *usage_4 = "\
Guido van Rossum98297ee2007-11-06 21:34:58 +000089file : program read from script file\n\
90- : program read from stdin (default; interactive mode if a tty)\n\
Thomas Wouters89f507f2006-12-13 04:49:30 +000091arg ...: arguments passed to program in sys.argv[1:]\n\n\
Guido van Rossum667d7041995-08-04 04:20:48 +000092Other environment variables:\n\
93PYTHONSTARTUP: file executed on interactive startup (no default)\n\
Guido van Rossuma075ce11997-12-05 21:56:45 +000094PYTHONPATH : '%c'-separated list of directories prefixed to the\n\
Guido van Rossum667d7041995-08-04 04:20:48 +000095 default module search path. The result is sys.path.\n\
Christian Heimes790c8232008-01-07 21:14:23 +000096";
97static char *usage_5 = "\
Guido van Rossuma075ce11997-12-05 21:56:45 +000098PYTHONHOME : alternate <prefix> directory (or <prefix>%c<exec_prefix>).\n\
99 The default module search path uses %s.\n\
Tim Peters793de092001-02-22 00:39:47 +0000100PYTHONCASEOK : ignore case in 'import' statements (Windows).\n\
Martin v. Löwis0f599892008-06-02 11:13:03 +0000101PYTHONIOENCODING: Encoding[:errors] used for stdin/stdout/stderr.\n\
Guido van Rossum667d7041995-08-04 04:20:48 +0000102";
103
Martin v. Löwis790465f2008-04-05 20:41:37 +0000104#ifndef MS_WINDOWS
105static FILE*
106_wfopen(const wchar_t *path, const wchar_t *mode)
107{
108 char cpath[PATH_MAX];
109 char cmode[10];
110 size_t r;
111 r = wcstombs(cpath, path, PATH_MAX);
112 if (r == (size_t)-1 || r >= PATH_MAX) {
113 errno = EINVAL;
114 return NULL;
115 }
116 r = wcstombs(cmode, mode, 10);
117 if (r == (size_t)-1 || r >= 10) {
118 errno = EINVAL;
119 return NULL;
120 }
121 return fopen(cpath, cmode);
122}
123#endif
124
Guido van Rossum667d7041995-08-04 04:20:48 +0000125
Martin v. Löwis852ba7e2003-03-30 17:09:58 +0000126static int
Martin v. Löwis790465f2008-04-05 20:41:37 +0000127usage(int exitcode, wchar_t* program)
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000128{
Guido van Rossum393661d2001-08-31 17:40:15 +0000129 FILE *f = exitcode ? stderr : stdout;
130
131 fprintf(f, usage_line, program);
132 if (exitcode)
133 fprintf(f, "Try `python -h' for more information.\n");
134 else {
Alexandre Vassalotticf7128c2009-07-17 08:31:44 +0000135 fputs(usage_1, f);
136 fputs(usage_2, f);
137 fputs(usage_3, f);
Christian Heimes790c8232008-01-07 21:14:23 +0000138 fprintf(f, usage_4, DELIM);
139 fprintf(f, usage_5, DELIM, PYTHONHOMEHELP);
Guido van Rossum393661d2001-08-31 17:40:15 +0000140 }
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000141#if defined(__VMS)
142 if (exitcode == 0) {
143 /* suppress 'error' message */
Martin v. Löwis852ba7e2003-03-30 17:09:58 +0000144 return 1;
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000145 }
146 else {
147 /* STS$M_INHIB_MSG + SS$_ABORT */
Martin v. Löwis852ba7e2003-03-30 17:09:58 +0000148 return 0x1000002c;
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000149 }
150#else
Martin v. Löwis852ba7e2003-03-30 17:09:58 +0000151 return exitcode;
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000152#endif
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000153 /*NOTREACHED*/
154}
155
Martin v. Löwis6caea372003-11-18 19:46:25 +0000156static void RunStartupFile(PyCompilerFlags *cf)
157{
158 char *startup = Py_GETENV("PYTHONSTARTUP");
159 if (startup != NULL && startup[0] != '\0') {
160 FILE *fp = fopen(startup, "r");
161 if (fp != NULL) {
162 (void) PyRun_SimpleFileExFlags(fp, startup, 0, cf);
163 PyErr_Clear();
164 fclose(fp);
Christian Heimese69a08e2007-11-14 16:21:32 +0000165 } else {
166 int save_errno;
167
168 save_errno = errno;
169 PySys_WriteStderr("Could not open PYTHONSTARTUP\n");
170 errno = save_errno;
171 PyErr_SetFromErrnoWithFilename(PyExc_IOError,
172 startup);
173 PyErr_Print();
174 PyErr_Clear();
Martin v. Löwis6caea372003-11-18 19:46:25 +0000175 }
176 }
177}
178
Thomas Woutersa9773292006-04-21 09:43:23 +0000179
Antoine Pitrou5651eaa2008-09-06 20:46:58 +0000180static int RunModule(wchar_t *modname, int set_argv0)
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000181{
Antoine Pitrou5651eaa2008-09-06 20:46:58 +0000182 PyObject *module, *runpy, *runmodule, *runargs, *result;
Thomas Woutersa9773292006-04-21 09:43:23 +0000183 runpy = PyImport_ImportModule("runpy");
184 if (runpy == NULL) {
185 fprintf(stderr, "Could not import runpy module\n");
186 return -1;
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000187 }
Thomas Woutersed03b412007-08-28 21:37:11 +0000188 runmodule = PyObject_GetAttrString(runpy, "_run_module_as_main");
Thomas Woutersa9773292006-04-21 09:43:23 +0000189 if (runmodule == NULL) {
Thomas Woutersed03b412007-08-28 21:37:11 +0000190 fprintf(stderr, "Could not access runpy._run_module_as_main\n");
Thomas Woutersa9773292006-04-21 09:43:23 +0000191 Py_DECREF(runpy);
192 return -1;
193 }
Antoine Pitrou5651eaa2008-09-06 20:46:58 +0000194 module = PyUnicode_FromWideChar(modname, wcslen(modname));
195 if (module == NULL) {
196 fprintf(stderr, "Could not convert module name to unicode\n");
197 Py_DECREF(runpy);
198 Py_DECREF(runmodule);
199 return -1;
200 }
201 runargs = Py_BuildValue("(Oi)", module, set_argv0);
Thomas Woutersa9773292006-04-21 09:43:23 +0000202 if (runargs == NULL) {
203 fprintf(stderr,
Thomas Woutersed03b412007-08-28 21:37:11 +0000204 "Could not create arguments for runpy._run_module_as_main\n");
Thomas Woutersa9773292006-04-21 09:43:23 +0000205 Py_DECREF(runpy);
206 Py_DECREF(runmodule);
Antoine Pitrou5651eaa2008-09-06 20:46:58 +0000207 Py_DECREF(module);
Thomas Woutersa9773292006-04-21 09:43:23 +0000208 return -1;
209 }
210 result = PyObject_Call(runmodule, runargs, NULL);
211 if (result == NULL) {
212 PyErr_Print();
213 }
214 Py_DECREF(runpy);
215 Py_DECREF(runmodule);
Antoine Pitrou5651eaa2008-09-06 20:46:58 +0000216 Py_DECREF(module);
Thomas Woutersa9773292006-04-21 09:43:23 +0000217 Py_DECREF(runargs);
218 if (result == NULL) {
219 return -1;
220 }
221 Py_DECREF(result);
222 return 0;
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000223}
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000224
Martin v. Löwis790465f2008-04-05 20:41:37 +0000225static int RunMainFromImporter(wchar_t *filename)
Christian Heimes9cd17752007-11-18 19:35:23 +0000226{
227 PyObject *argv0 = NULL, *importer = NULL;
228
Martin v. Löwis790465f2008-04-05 20:41:37 +0000229 if ((argv0 = PyUnicode_FromWideChar(filename,wcslen(filename))) &&
Guido van Rossum74c29c72007-11-19 18:36:41 +0000230 (importer = PyImport_GetImporter(argv0)) &&
231 (importer->ob_type != &PyNullImporter_Type))
Christian Heimes9cd17752007-11-18 19:35:23 +0000232 {
233 /* argv0 is usable as an import source, so
234 put it in sys.path[0] and import __main__ */
235 PyObject *sys_path = NULL;
Guido van Rossum74c29c72007-11-19 18:36:41 +0000236 if ((sys_path = PySys_GetObject("path")) &&
237 !PyList_SetItem(sys_path, 0, argv0))
238 {
Christian Heimes9cd17752007-11-18 19:35:23 +0000239 Py_INCREF(argv0);
Guido van Rossum74c29c72007-11-19 18:36:41 +0000240 Py_DECREF(importer);
Christian Heimes9cd17752007-11-18 19:35:23 +0000241 sys_path = NULL;
Antoine Pitrou5651eaa2008-09-06 20:46:58 +0000242 return RunModule(L"__main__", 0) != 0;
Christian Heimes9cd17752007-11-18 19:35:23 +0000243 }
244 }
Guido van Rossum74c29c72007-11-19 18:36:41 +0000245 Py_XDECREF(argv0);
246 Py_XDECREF(importer);
247 if (PyErr_Occurred()) {
248 PyErr_Print();
249 return 1;
250 }
251 else {
252 return -1;
253 }
Christian Heimes9cd17752007-11-18 19:35:23 +0000254}
255
256
Guido van Rossum667d7041995-08-04 04:20:48 +0000257/* Main program */
258
Mark Hammondfe51c6d2002-08-02 02:27:13 +0000259int
Martin v. Löwis790465f2008-04-05 20:41:37 +0000260Py_Main(int argc, wchar_t **argv)
Guido van Rossum667d7041995-08-04 04:20:48 +0000261{
262 int c;
263 int sts;
Amaury Forgeot d'Arc9a5499b2008-11-11 23:04:59 +0000264 wchar_t *command = NULL;
Martin v. Löwis790465f2008-04-05 20:41:37 +0000265 wchar_t *filename = NULL;
Antoine Pitrou5651eaa2008-09-06 20:46:58 +0000266 wchar_t *module = NULL;
Guido van Rossum667d7041995-08-04 04:20:48 +0000267 FILE *fp = stdin;
268 char *p;
Philip Jenveye53de3d2010-04-14 03:01:39 +0000269#ifdef MS_WINDOWS
270 wchar_t *wp;
271#endif
Guido van Rossuma075ce11997-12-05 21:56:45 +0000272 int skipfirstline = 0;
Guido van Rossum775af911997-02-14 19:50:32 +0000273 int stdin_is_interactive = 0;
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000274 int help = 0;
275 int version = 0;
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000276 int saw_unbuffered_flag = 0;
Jeremy Hyltonbc320242001-03-22 02:47:58 +0000277 PyCompilerFlags cf;
Guido van Rossum667d7041995-08-04 04:20:48 +0000278
Guido van Rossum393661d2001-08-31 17:40:15 +0000279 cf.cf_flags = 0;
280
Guido van Rossumac56b031996-07-21 02:33:38 +0000281 orig_argc = argc; /* For Py_GetArgcArgv() */
Guido van Rossum667d7041995-08-04 04:20:48 +0000282 orig_argv = argv;
Guido van Rossum667d7041995-08-04 04:20:48 +0000283
Guido van Rossum47f5fdc2000-12-15 22:00:54 +0000284 PySys_ResetWarnOptions();
285
Guido van Rossumbceccf52001-04-10 22:07:43 +0000286 while ((c = _PyOS_GetOpt(argc, argv, PROGRAM_OPTS)) != EOF) {
Guido van Rossum667d7041995-08-04 04:20:48 +0000287 if (c == 'c') {
Amaury Forgeot d'Arc9a5499b2008-11-11 23:04:59 +0000288 size_t len;
Guido van Rossum667d7041995-08-04 04:20:48 +0000289 /* -c is the last option; following arguments
290 that look like options are left for the
Walter Dörwaldf0dfc7a2003-10-20 14:01:56 +0000291 command to interpret. */
Amaury Forgeot d'Arc9a5499b2008-11-11 23:04:59 +0000292
293 len = wcslen(_PyOS_optarg) + 1 + 1;
294 command = (wchar_t *)malloc(sizeof(wchar_t) * len);
Guido van Rossum667d7041995-08-04 04:20:48 +0000295 if (command == NULL)
296 Py_FatalError(
297 "not enough memory to copy -c argument");
Amaury Forgeot d'Arc9a5499b2008-11-11 23:04:59 +0000298 wcscpy(command, _PyOS_optarg);
299 command[len - 2] = '\n';
300 command[len - 1] = 0;
Guido van Rossum667d7041995-08-04 04:20:48 +0000301 break;
302 }
Guido van Rossum393661d2001-08-31 17:40:15 +0000303
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000304 if (c == 'm') {
305 /* -m is the last option; following arguments
306 that look like options are left for the
307 module to interpret. */
Antoine Pitrou5651eaa2008-09-06 20:46:58 +0000308 module = _PyOS_optarg;
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000309 break;
310 }
311
Guido van Rossum667d7041995-08-04 04:20:48 +0000312 switch (c) {
Guido van Rossum98297ee2007-11-06 21:34:58 +0000313 case 'b':
314 Py_BytesWarningFlag++;
315 break;
Guido van Rossum667d7041995-08-04 04:20:48 +0000316
317 case 'd':
318 Py_DebugFlag++;
319 break;
320
321 case 'i':
Guido van Rossumd8faa362007-04-27 19:54:29 +0000322 Py_InspectFlag++;
Guido van Rossum775af911997-02-14 19:50:32 +0000323 Py_InteractiveFlag++;
Guido van Rossum667d7041995-08-04 04:20:48 +0000324 break;
325
Christian Heimes33fe8092008-04-13 13:53:33 +0000326 /* case 'J': reserved for Jython */
327
Guido van Rossum7614da61997-03-03 19:14:45 +0000328 case 'O':
329 Py_OptimizeFlag++;
330 break;
331
Christian Heimes790c8232008-01-07 21:14:23 +0000332 case 'B':
333 Py_DontWriteBytecodeFlag++;
334 break;
335
Christian Heimes8dc226f2008-05-06 23:45:46 +0000336 case 's':
337 Py_NoUserSiteDirectory++;
338 break;
339
Guido van Rossum7922bd71997-08-29 22:34:47 +0000340 case 'S':
341 Py_NoSiteFlag++;
342 break;
343
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000344 case 'E':
345 Py_IgnoreEnvironmentFlag++;
346 break;
347
Guido van Rossumbba92ca1998-04-10 19:39:15 +0000348 case 't':
Georg Brandle1b5ac62008-06-04 13:06:58 +0000349 /* ignored for backwards compatibility */
Guido van Rossumbba92ca1998-04-10 19:39:15 +0000350 break;
351
Guido van Rossum667d7041995-08-04 04:20:48 +0000352 case 'u':
Antoine Pitrou05608432009-01-09 18:53:14 +0000353 Py_UnbufferedStdioFlag = 1;
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000354 saw_unbuffered_flag = 1;
Guido van Rossum667d7041995-08-04 04:20:48 +0000355 break;
356
357 case 'v':
358 Py_VerboseFlag++;
359 break;
360
Guido van Rossuma075ce11997-12-05 21:56:45 +0000361 case 'x':
362 skipfirstline = 1;
363 break;
364
Neal Norwitz32dde222008-04-15 06:43:13 +0000365 /* case 'X': reserved for implementation-specific arguments */
Christian Heimes33fe8092008-04-13 13:53:33 +0000366
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000367 case 'h':
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000368 case '?':
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000369 help++;
370 break;
Guido van Rossum45aecf42006-03-15 04:58:47 +0000371
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000372 case 'V':
373 version++;
374 break;
Guido van Rossumc15a9a12000-05-01 17:54:33 +0000375
Martin v. Löwis790465f2008-04-05 20:41:37 +0000376 case 'W':
Guido van Rossum47f5fdc2000-12-15 22:00:54 +0000377 PySys_AddWarnOption(_PyOS_optarg);
378 break;
379
Guido van Rossum667d7041995-08-04 04:20:48 +0000380 /* This space reserved for other options */
381
382 default:
Martin v. Löwis852ba7e2003-03-30 17:09:58 +0000383 return usage(2, argv[0]);
Guido van Rossum667d7041995-08-04 04:20:48 +0000384 /*NOTREACHED*/
385
386 }
387 }
388
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000389 if (help)
Martin v. Löwis852ba7e2003-03-30 17:09:58 +0000390 return usage(0, argv[0]);
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000391
392 if (version) {
393 fprintf(stderr, "Python %s\n", PY_VERSION);
Martin v. Löwis852ba7e2003-03-30 17:09:58 +0000394 return 0;
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000395 }
396
Guido van Rossumd8faa362007-04-27 19:54:29 +0000397 if (!Py_InspectFlag &&
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000398 (p = Py_GETENV("PYTHONINSPECT")) && *p != '\0')
Guido van Rossumd8faa362007-04-27 19:54:29 +0000399 Py_InspectFlag = 1;
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000400 if (!saw_unbuffered_flag &&
401 (p = Py_GETENV("PYTHONUNBUFFERED")) && *p != '\0')
Antoine Pitrou05608432009-01-09 18:53:14 +0000402 Py_UnbufferedStdioFlag = 1;
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000403
Christian Heimes8dc226f2008-05-06 23:45:46 +0000404 if (!Py_NoUserSiteDirectory &&
405 (p = Py_GETENV("PYTHONNOUSERSITE")) && *p != '\0')
406 Py_NoUserSiteDirectory = 1;
407
Philip Jenveye53de3d2010-04-14 03:01:39 +0000408#ifdef MS_WINDOWS
409 if (!Py_IgnoreEnvironmentFlag && (wp = _wgetenv(L"PYTHONWARNINGS")) &&
410 *wp != L'\0') {
411 wchar_t *buf, *warning;
Philip Jenvey0805ca32010-04-07 04:04:10 +0000412
Philip Jenveye53de3d2010-04-14 03:01:39 +0000413 buf = (wchar_t *)malloc((wcslen(wp) + 1) * sizeof(wchar_t));
414 if (buf == NULL)
415 Py_FatalError(
416 "not enough memory to copy PYTHONWARNINGS");
417 wcscpy(buf, wp);
418 for (warning = wcstok(buf, L",");
419 warning != NULL;
420 warning = wcstok(NULL, L",")) {
421 PySys_AddWarnOption(warning);
422 }
423 free(buf);
424 }
425#else
426 if ((p = Py_GETENV("PYTHONWARNINGS")) && *p != '\0') {
427 char *buf, *oldloc;
428 wchar_t *warning;
429
430 /* settle for strtok here as there's no one standard
431 C89 wcstok */
Benjamin Petersonad6139a2010-04-11 21:16:33 +0000432 buf = (char *)malloc(strlen(p) + 1);
433 if (buf == NULL)
434 Py_FatalError(
435 "not enough memory to copy PYTHONWARNINGS");
436 strcpy(buf, p);
Philip Jenveye53de3d2010-04-14 03:01:39 +0000437 oldloc = strdup(setlocale(LC_ALL, NULL));
438 setlocale(LC_ALL, "");
439 for (p = strtok(buf, ","); p != NULL; p = strtok(NULL, ",")) {
440 if ((warning = _Py_char2wchar(p)) != NULL) {
441 PySys_AddWarnOption(warning);
442 free(warning);
443 }
Philip Jenvey0805ca32010-04-07 04:04:10 +0000444 }
Philip Jenveye53de3d2010-04-14 03:01:39 +0000445 setlocale(LC_ALL, oldloc);
446 free(oldloc);
Benjamin Petersonad6139a2010-04-11 21:16:33 +0000447 free(buf);
Philip Jenvey0805ca32010-04-07 04:04:10 +0000448 }
Philip Jenveye53de3d2010-04-14 03:01:39 +0000449#endif
Philip Jenvey0805ca32010-04-07 04:04:10 +0000450
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000451 if (command == NULL && module == NULL && _PyOS_optind < argc &&
Martin v. Löwis790465f2008-04-05 20:41:37 +0000452 wcscmp(argv[_PyOS_optind], L"-") != 0)
Guido van Rossum775af911997-02-14 19:50:32 +0000453 {
Martin v. Löwis7a924e62003-03-05 14:15:21 +0000454#ifdef __VMS
455 filename = decc$translate_vms(argv[_PyOS_optind]);
456 if (filename == (char *)0 || filename == (char *)-1)
457 filename = argv[_PyOS_optind];
458
459#else
Thomas Wouters2cffc7d2000-11-03 08:18:37 +0000460 filename = argv[_PyOS_optind];
Martin v. Löwis7a924e62003-03-05 14:15:21 +0000461#endif
Guido van Rossum775af911997-02-14 19:50:32 +0000462 }
463
464 stdin_is_interactive = Py_FdIsInteractive(stdin, (char *)0);
465
Antoine Pitrou05608432009-01-09 18:53:14 +0000466 if (Py_UnbufferedStdioFlag) {
Sjoerd Mullender9cf424b2002-08-09 13:35:18 +0000467#if defined(MS_WINDOWS) || defined(__CYGWIN__)
Guido van Rossum3e7ae7a1997-01-17 22:05:38 +0000468 _setmode(fileno(stdin), O_BINARY);
469 _setmode(fileno(stdout), O_BINARY);
Guido van Rossumf22d7e21997-01-11 19:28:55 +0000470#endif
Guido van Rossum22ffac11998-03-06 15:30:39 +0000471#ifdef HAVE_SETVBUF
Guido van Rossum775af911997-02-14 19:50:32 +0000472 setvbuf(stdin, (char *)NULL, _IONBF, BUFSIZ);
473 setvbuf(stdout, (char *)NULL, _IONBF, BUFSIZ);
474 setvbuf(stderr, (char *)NULL, _IONBF, BUFSIZ);
Guido van Rossum22ffac11998-03-06 15:30:39 +0000475#else /* !HAVE_SETVBUF */
476 setbuf(stdin, (char *)NULL);
477 setbuf(stdout, (char *)NULL);
478 setbuf(stderr, (char *)NULL);
479#endif /* !HAVE_SETVBUF */
Guido van Rossum667d7041995-08-04 04:20:48 +0000480 }
Guido van Rossum2a212191997-04-11 21:57:53 +0000481 else if (Py_InteractiveFlag) {
Guido van Rossumb31c7dc1997-04-11 22:19:12 +0000482#ifdef MS_WINDOWS
483 /* Doesn't have to have line-buffered -- use unbuffered */
Guido van Rossum01b7ced1999-02-09 18:36:51 +0000484 /* Any set[v]buf(stdin, ...) screws up Tkinter :-( */
Guido van Rossumb31c7dc1997-04-11 22:19:12 +0000485 setvbuf(stdout, (char *)NULL, _IONBF, BUFSIZ);
Guido van Rossum22ffac11998-03-06 15:30:39 +0000486#else /* !MS_WINDOWS */
487#ifdef HAVE_SETVBUF
Guido van Rossumb31c7dc1997-04-11 22:19:12 +0000488 setvbuf(stdin, (char *)NULL, _IOLBF, BUFSIZ);
489 setvbuf(stdout, (char *)NULL, _IOLBF, BUFSIZ);
Guido van Rossum22ffac11998-03-06 15:30:39 +0000490#endif /* HAVE_SETVBUF */
491#endif /* !MS_WINDOWS */
Guido van Rossum775af911997-02-14 19:50:32 +0000492 /* Leave stderr alone - it should be unbuffered anyway. */
493 }
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000494#ifdef __VMS
495 else {
496 setvbuf (stdout, (char *)NULL, _IOLBF, BUFSIZ);
497 }
498#endif /* __VMS */
Guido van Rossum667d7041995-08-04 04:20:48 +0000499
Just van Rossum2ac79ef2003-03-05 15:46:54 +0000500#ifdef __APPLE__
501 /* On MacOS X, when the Python interpreter is embedded in an
502 application bundle, it gets executed by a bootstrapping script
503 that does os.execve() with an argv[0] that's different from the
504 actual Python executable. This is needed to keep the Finder happy,
505 or rather, to work around Apple's overly strict requirements of
506 the process name. However, we still need a usable sys.executable,
507 so the actual executable path is passed in an environment variable.
508 See Lib/plat-mac/bundlebuiler.py for details about the bootstrap
509 script. */
Ronald Oussoren3e264e12009-02-12 15:55:38 +0000510 if ((p = Py_GETENV("PYTHONEXECUTABLE")) && *p != '\0') {
511 wchar_t* buffer;
512 size_t len = strlen(p);
513 size_t r;
514
515 buffer = malloc(len * sizeof(wchar_t));
516 if (buffer == NULL) {
517 Py_FatalError(
518 "not enough memory to copy PYTHONEXECUTABLE");
519 }
520
521 r = mbstowcs(buffer, p, len);
522 Py_SetProgramName(buffer);
523 /* buffer is now handed off - do not free */
524 } else {
Just van Rossum2ac79ef2003-03-05 15:46:54 +0000525 Py_SetProgramName(argv[0]);
Ronald Oussoren3e264e12009-02-12 15:55:38 +0000526 }
Just van Rossum2ac79ef2003-03-05 15:46:54 +0000527#else
Guido van Rossumed52aac1997-07-19 19:20:32 +0000528 Py_SetProgramName(argv[0]);
Jack Jansenfbd861b2003-03-05 16:00:15 +0000529#endif
Guido van Rossumed52aac1997-07-19 19:20:32 +0000530 Py_Initialize();
531
Guido van Rossum667d7041995-08-04 04:20:48 +0000532 if (Py_VerboseFlag ||
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000533 (command == NULL && filename == NULL && module == NULL && stdin_is_interactive)) {
Martin v. Löwise98922f2003-03-30 17:00:39 +0000534 fprintf(stderr, "Python %s on %s\n",
535 Py_GetVersion(), Py_GetPlatform());
536 if (!Py_NoSiteFlag)
537 fprintf(stderr, "%s\n", COPYRIGHT);
538 }
Guido van Rossum393661d2001-08-31 17:40:15 +0000539
Guido van Rossum667d7041995-08-04 04:20:48 +0000540 if (command != NULL) {
Thomas Wouters2cffc7d2000-11-03 08:18:37 +0000541 /* Backup _PyOS_optind and force sys.argv[0] = '-c' */
542 _PyOS_optind--;
Martin v. Löwis790465f2008-04-05 20:41:37 +0000543 argv[_PyOS_optind] = L"-c";
Guido van Rossum667d7041995-08-04 04:20:48 +0000544 }
545
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000546 if (module != NULL) {
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000547 /* Backup _PyOS_optind and force sys.argv[0] = '-c'
548 so that PySys_SetArgv correctly sets sys.path[0] to ''*/
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000549 _PyOS_optind--;
Martin v. Löwis790465f2008-04-05 20:41:37 +0000550 argv[_PyOS_optind] = L"-c";
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000551 }
552
Thomas Wouters2cffc7d2000-11-03 08:18:37 +0000553 PySys_SetArgv(argc-_PyOS_optind, argv+_PyOS_optind);
Guido van Rossum667d7041995-08-04 04:20:48 +0000554
Guido van Rossumd8faa362007-04-27 19:54:29 +0000555 if ((Py_InspectFlag || (command == NULL && filename == NULL && module == NULL)) &&
Guido van Rossum3d26cc91997-09-16 16:11:28 +0000556 isatty(fileno(stdin))) {
557 PyObject *v;
558 v = PyImport_ImportModule("readline");
559 if (v == NULL)
560 PyErr_Clear();
561 else
562 Py_DECREF(v);
563 }
564
Guido van Rossum667d7041995-08-04 04:20:48 +0000565 if (command) {
Amaury Forgeot d'Arc9a5499b2008-11-11 23:04:59 +0000566 PyObject *commandObj = PyUnicode_FromWideChar(
567 command, wcslen(command));
Guido van Rossum05f7c501997-08-02 03:00:42 +0000568 free(command);
Amaury Forgeot d'Arc9a5499b2008-11-11 23:04:59 +0000569 if (commandObj != NULL) {
570 sts = PyRun_SimpleStringFlags(
571 _PyUnicode_AsString(commandObj), &cf) != 0;
572 }
573 else {
574 PyErr_Print();
575 sts = 1;
576 }
577 Py_DECREF(commandObj);
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000578 } else if (module) {
Christian Heimes9cd17752007-11-18 19:35:23 +0000579 sts = RunModule(module, 1);
Guido van Rossum667d7041995-08-04 04:20:48 +0000580 }
581 else {
Christian Heimes9cd17752007-11-18 19:35:23 +0000582
Guido van Rossum775af911997-02-14 19:50:32 +0000583 if (filename == NULL && stdin_is_interactive) {
Guido van Rossumd8faa362007-04-27 19:54:29 +0000584 Py_InspectFlag = 0; /* do exit on SystemExit */
Martin v. Löwis6caea372003-11-18 19:46:25 +0000585 RunStartupFile(&cf);
Guido van Rossum667d7041995-08-04 04:20:48 +0000586 }
Jeremy Hyltonbc320242001-03-22 02:47:58 +0000587 /* XXX */
Christian Heimes9cd17752007-11-18 19:35:23 +0000588
589 sts = -1; /* keep track of whether we've already run __main__ */
590
591 if (filename != NULL) {
592 sts = RunMainFromImporter(filename);
593 }
594
595 if (sts==-1 && filename!=NULL) {
Martin v. Löwis790465f2008-04-05 20:41:37 +0000596 if ((fp = _wfopen(filename, L"r")) == NULL) {
Amaury Forgeot d'Arcdd8059f2008-10-30 23:03:32 +0000597 char cfilename[PATH_MAX];
598 size_t r = wcstombs(cfilename, filename, PATH_MAX);
599 if (r == PATH_MAX)
600 /* cfilename is not null-terminated;
601 * forcefully null-terminating it
602 * might break the shift state */
603 strcpy(cfilename, "<file name too long>");
604 if (r == ((size_t)-1))
605 strcpy(cfilename, "<unprintable file name>");
606 fprintf(stderr, "%ls: can't open file '%s': [Errno %d] %s\n",
607 argv[0], cfilename, errno, strerror(errno));
Christian Heimesada8c3b2008-03-18 18:26:33 +0000608
Christian Heimes9cd17752007-11-18 19:35:23 +0000609 return 2;
610 }
611 else if (skipfirstline) {
612 int ch;
613 /* Push back first newline so line numbers
614 remain the same */
615 while ((ch = getc(fp)) != EOF) {
616 if (ch == '\n') {
617 (void)ungetc(ch, fp);
618 break;
619 }
620 }
621 }
622 {
623 /* XXX: does this work on Win/Win64? (see posix_fstat) */
624 struct stat sb;
625 if (fstat(fileno(fp), &sb) == 0 &&
626 S_ISDIR(sb.st_mode)) {
Martin v. Löwis790465f2008-04-05 20:41:37 +0000627 fprintf(stderr, "%ls: '%ls' is a directory, cannot continue\n", argv[0], filename);
Christian Heimes679db4a2008-01-18 09:56:22 +0000628 fclose(fp);
Christian Heimes9cd17752007-11-18 19:35:23 +0000629 return 1;
630 }
631 }
632 }
633
634 if (sts==-1) {
Amaury Forgeot d'Arc374e2202009-01-01 23:05:36 +0000635 PyObject *filenameObj = NULL;
Martin v. Löwis790465f2008-04-05 20:41:37 +0000636 char *p_cfilename = "<stdin>";
637 if (filename) {
Amaury Forgeot d'Arc374e2202009-01-01 23:05:36 +0000638 filenameObj = PyUnicode_FromWideChar(
639 filename, wcslen(filename));
640 if (filenameObj != NULL)
641 p_cfilename = _PyUnicode_AsString(filenameObj);
642 else
Martin v. Löwis790465f2008-04-05 20:41:37 +0000643 p_cfilename = "<decoding error>";
644 }
Victor Stinner52f6dd72010-03-12 14:45:56 +0000645 /* call pending calls like signal handlers (SIGINT) */
646 if (Py_MakePendingCalls() == -1) {
647 PyErr_Print();
648 sts = 1;
649 } else {
650 sts = PyRun_AnyFileExFlags(
651 fp,
652 p_cfilename,
653 filename != NULL, &cf) != 0;
654 }
Amaury Forgeot d'Arc374e2202009-01-01 23:05:36 +0000655 Py_XDECREF(filenameObj);
Christian Heimes9cd17752007-11-18 19:35:23 +0000656 }
657
Guido van Rossum667d7041995-08-04 04:20:48 +0000658 }
659
Barry Warsawd86dcd32003-06-29 17:07:06 +0000660 /* Check this environment variable at the end, to give programs the
661 * opportunity to set it from Python.
662 */
Guido van Rossumd8faa362007-04-27 19:54:29 +0000663 if (!Py_InspectFlag &&
Barry Warsawd86dcd32003-06-29 17:07:06 +0000664 (p = Py_GETENV("PYTHONINSPECT")) && *p != '\0')
665 {
Guido van Rossumd8faa362007-04-27 19:54:29 +0000666 Py_InspectFlag = 1;
Barry Warsawd86dcd32003-06-29 17:07:06 +0000667 }
668
Guido van Rossumd8faa362007-04-27 19:54:29 +0000669 if (Py_InspectFlag && stdin_is_interactive &&
670 (filename != NULL || command != NULL || module != NULL)) {
671 Py_InspectFlag = 0;
Jeremy Hyltonbc320242001-03-22 02:47:58 +0000672 /* XXX */
673 sts = PyRun_AnyFileFlags(stdin, "<stdin>", &cf) != 0;
Guido van Rossumd8faa362007-04-27 19:54:29 +0000674 }
Guido van Rossum667d7041995-08-04 04:20:48 +0000675
Guido van Rossum5d1770e1997-08-05 02:23:48 +0000676 Py_Finalize();
Barry Warsaw3e13b1e2001-02-23 16:46:39 +0000677
678#ifdef __INSURE__
679 /* Insure++ is a memory analysis tool that aids in discovering
680 * memory leaks and other memory problems. On Python exit, the
Walter Dörwald16807132007-05-25 13:52:07 +0000681 * interned string dictionaries are flagged as being in use at exit
Barry Warsaw3e13b1e2001-02-23 16:46:39 +0000682 * (which it is). Under normal circumstances, this is fine because
683 * the memory will be automatically reclaimed by the system. Under
684 * memory debugging, it's a huge source of useless noise, so we
685 * trade off slower shutdown for less distraction in the memory
686 * reports. -baw
687 */
688 _Py_ReleaseInternedStrings();
Walter Dörwald16807132007-05-25 13:52:07 +0000689 _Py_ReleaseInternedUnicodeStrings();
Barry Warsaw3e13b1e2001-02-23 16:46:39 +0000690#endif /* __INSURE__ */
691
Guido van Rossum05f7c501997-08-02 03:00:42 +0000692 return sts;
Guido van Rossum667d7041995-08-04 04:20:48 +0000693}
694
Skip Montanaro786ea6b2004-03-01 15:44:05 +0000695/* this is gonna seem *real weird*, but if you put some other code between
696 Py_Main() and Py_GetArgcArgv() you will need to adjust the test in the
697 while statement in Misc/gdbinit:ppystack */
Guido van Rossum667d7041995-08-04 04:20:48 +0000698
Guido van Rossum667d7041995-08-04 04:20:48 +0000699/* Make the *original* argc/argv available to other modules.
700 This is rare, but it is needed by the secureware extension. */
701
702void
Martin v. Löwis790465f2008-04-05 20:41:37 +0000703Py_GetArgcArgv(int *argc, wchar_t ***argv)
Guido van Rossum667d7041995-08-04 04:20:48 +0000704{
705 *argc = orig_argc;
706 *argv = orig_argv;
707}
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000708
709#ifdef __cplusplus
710}
711#endif