blob: 5a84cc22bcc5089a837ee8a7dc9d11a60c6b1ac5 [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\
Guido van Rossum393661d2001-08-31 17:40:15 +000085-x : skip first line of source, allowing use of non-Unix forms of #!cmd\n\
Guido van Rossum7922bd71997-08-29 22:34:47 +000086";
Guido van Rossum393661d2001-08-31 17:40:15 +000087static char *usage_4 = "\
Guido van Rossum98297ee2007-11-06 21:34:58 +000088file : program read from script file\n\
89- : program read from stdin (default; interactive mode if a tty)\n\
Thomas Wouters89f507f2006-12-13 04:49:30 +000090arg ...: arguments passed to program in sys.argv[1:]\n\n\
Guido van Rossum667d7041995-08-04 04:20:48 +000091Other environment variables:\n\
92PYTHONSTARTUP: file executed on interactive startup (no default)\n\
Guido van Rossuma075ce11997-12-05 21:56:45 +000093PYTHONPATH : '%c'-separated list of directories prefixed to the\n\
Guido van Rossum667d7041995-08-04 04:20:48 +000094 default module search path. The result is sys.path.\n\
Christian Heimes790c8232008-01-07 21:14:23 +000095";
96static char *usage_5 = "\
Guido van Rossuma075ce11997-12-05 21:56:45 +000097PYTHONHOME : alternate <prefix> directory (or <prefix>%c<exec_prefix>).\n\
98 The default module search path uses %s.\n\
Tim Peters793de092001-02-22 00:39:47 +000099PYTHONCASEOK : ignore case in 'import' statements (Windows).\n\
Martin v. Löwis0f599892008-06-02 11:13:03 +0000100PYTHONIOENCODING: Encoding[:errors] used for stdin/stdout/stderr.\n\
Guido van Rossum667d7041995-08-04 04:20:48 +0000101";
102
Martin v. Löwis790465f2008-04-05 20:41:37 +0000103#ifndef MS_WINDOWS
104static FILE*
105_wfopen(const wchar_t *path, const wchar_t *mode)
106{
107 char cpath[PATH_MAX];
108 char cmode[10];
109 size_t r;
110 r = wcstombs(cpath, path, PATH_MAX);
111 if (r == (size_t)-1 || r >= PATH_MAX) {
112 errno = EINVAL;
113 return NULL;
114 }
115 r = wcstombs(cmode, mode, 10);
116 if (r == (size_t)-1 || r >= 10) {
117 errno = EINVAL;
118 return NULL;
119 }
120 return fopen(cpath, cmode);
121}
122#endif
123
Guido van Rossum667d7041995-08-04 04:20:48 +0000124
Martin v. Löwis852ba7e2003-03-30 17:09:58 +0000125static int
Martin v. Löwis790465f2008-04-05 20:41:37 +0000126usage(int exitcode, wchar_t* program)
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000127{
Guido van Rossum393661d2001-08-31 17:40:15 +0000128 FILE *f = exitcode ? stderr : stdout;
129
130 fprintf(f, usage_line, program);
131 if (exitcode)
132 fprintf(f, "Try `python -h' for more information.\n");
133 else {
134 fprintf(f, usage_1);
135 fprintf(f, usage_2);
136 fprintf(f, usage_3);
Christian Heimes790c8232008-01-07 21:14:23 +0000137 fprintf(f, usage_4, DELIM);
138 fprintf(f, usage_5, DELIM, PYTHONHOMEHELP);
Guido van Rossum393661d2001-08-31 17:40:15 +0000139 }
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000140#if defined(__VMS)
141 if (exitcode == 0) {
142 /* suppress 'error' message */
Martin v. Löwis852ba7e2003-03-30 17:09:58 +0000143 return 1;
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000144 }
145 else {
146 /* STS$M_INHIB_MSG + SS$_ABORT */
Martin v. Löwis852ba7e2003-03-30 17:09:58 +0000147 return 0x1000002c;
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000148 }
149#else
Martin v. Löwis852ba7e2003-03-30 17:09:58 +0000150 return exitcode;
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000151#endif
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000152 /*NOTREACHED*/
153}
154
Martin v. Löwis6caea372003-11-18 19:46:25 +0000155static void RunStartupFile(PyCompilerFlags *cf)
156{
157 char *startup = Py_GETENV("PYTHONSTARTUP");
158 if (startup != NULL && startup[0] != '\0') {
159 FILE *fp = fopen(startup, "r");
160 if (fp != NULL) {
161 (void) PyRun_SimpleFileExFlags(fp, startup, 0, cf);
162 PyErr_Clear();
163 fclose(fp);
Christian Heimese69a08e2007-11-14 16:21:32 +0000164 } else {
165 int save_errno;
166
167 save_errno = errno;
168 PySys_WriteStderr("Could not open PYTHONSTARTUP\n");
169 errno = save_errno;
170 PyErr_SetFromErrnoWithFilename(PyExc_IOError,
171 startup);
172 PyErr_Print();
173 PyErr_Clear();
Martin v. Löwis6caea372003-11-18 19:46:25 +0000174 }
175 }
176}
177
Thomas Woutersa9773292006-04-21 09:43:23 +0000178
Antoine Pitrou5651eaa2008-09-06 20:46:58 +0000179static int RunModule(wchar_t *modname, int set_argv0)
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000180{
Antoine Pitrou5651eaa2008-09-06 20:46:58 +0000181 PyObject *module, *runpy, *runmodule, *runargs, *result;
Thomas Woutersa9773292006-04-21 09:43:23 +0000182 runpy = PyImport_ImportModule("runpy");
183 if (runpy == NULL) {
184 fprintf(stderr, "Could not import runpy module\n");
185 return -1;
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000186 }
Thomas Woutersed03b412007-08-28 21:37:11 +0000187 runmodule = PyObject_GetAttrString(runpy, "_run_module_as_main");
Thomas Woutersa9773292006-04-21 09:43:23 +0000188 if (runmodule == NULL) {
Thomas Woutersed03b412007-08-28 21:37:11 +0000189 fprintf(stderr, "Could not access runpy._run_module_as_main\n");
Thomas Woutersa9773292006-04-21 09:43:23 +0000190 Py_DECREF(runpy);
191 return -1;
192 }
Antoine Pitrou5651eaa2008-09-06 20:46:58 +0000193 module = PyUnicode_FromWideChar(modname, wcslen(modname));
194 if (module == NULL) {
195 fprintf(stderr, "Could not convert module name to unicode\n");
196 Py_DECREF(runpy);
197 Py_DECREF(runmodule);
198 return -1;
199 }
200 runargs = Py_BuildValue("(Oi)", module, set_argv0);
Thomas Woutersa9773292006-04-21 09:43:23 +0000201 if (runargs == NULL) {
202 fprintf(stderr,
Thomas Woutersed03b412007-08-28 21:37:11 +0000203 "Could not create arguments for runpy._run_module_as_main\n");
Thomas Woutersa9773292006-04-21 09:43:23 +0000204 Py_DECREF(runpy);
205 Py_DECREF(runmodule);
Antoine Pitrou5651eaa2008-09-06 20:46:58 +0000206 Py_DECREF(module);
Thomas Woutersa9773292006-04-21 09:43:23 +0000207 return -1;
208 }
209 result = PyObject_Call(runmodule, runargs, NULL);
210 if (result == NULL) {
211 PyErr_Print();
212 }
213 Py_DECREF(runpy);
214 Py_DECREF(runmodule);
Antoine Pitrou5651eaa2008-09-06 20:46:58 +0000215 Py_DECREF(module);
Thomas Woutersa9773292006-04-21 09:43:23 +0000216 Py_DECREF(runargs);
217 if (result == NULL) {
218 return -1;
219 }
220 Py_DECREF(result);
221 return 0;
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000222}
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000223
Martin v. Löwis790465f2008-04-05 20:41:37 +0000224static int RunMainFromImporter(wchar_t *filename)
Christian Heimes9cd17752007-11-18 19:35:23 +0000225{
226 PyObject *argv0 = NULL, *importer = NULL;
227
Martin v. Löwis790465f2008-04-05 20:41:37 +0000228 if ((argv0 = PyUnicode_FromWideChar(filename,wcslen(filename))) &&
Guido van Rossum74c29c72007-11-19 18:36:41 +0000229 (importer = PyImport_GetImporter(argv0)) &&
230 (importer->ob_type != &PyNullImporter_Type))
Christian Heimes9cd17752007-11-18 19:35:23 +0000231 {
232 /* argv0 is usable as an import source, so
233 put it in sys.path[0] and import __main__ */
234 PyObject *sys_path = NULL;
Guido van Rossum74c29c72007-11-19 18:36:41 +0000235 if ((sys_path = PySys_GetObject("path")) &&
236 !PyList_SetItem(sys_path, 0, argv0))
237 {
Christian Heimes9cd17752007-11-18 19:35:23 +0000238 Py_INCREF(argv0);
Guido van Rossum74c29c72007-11-19 18:36:41 +0000239 Py_DECREF(importer);
Christian Heimes9cd17752007-11-18 19:35:23 +0000240 sys_path = NULL;
Antoine Pitrou5651eaa2008-09-06 20:46:58 +0000241 return RunModule(L"__main__", 0) != 0;
Christian Heimes9cd17752007-11-18 19:35:23 +0000242 }
243 }
Guido van Rossum74c29c72007-11-19 18:36:41 +0000244 Py_XDECREF(argv0);
245 Py_XDECREF(importer);
246 if (PyErr_Occurred()) {
247 PyErr_Print();
248 return 1;
249 }
250 else {
251 return -1;
252 }
Christian Heimes9cd17752007-11-18 19:35:23 +0000253}
254
255
Thomas Wouters902d6eb2007-01-09 23:18:33 +0000256/* Wait until threading._shutdown completes, provided
257 the threading module was imported in the first place.
258 The shutdown routine will wait until all non-daemon
259 "threading" threads have completed. */
260#include "abstract.h"
261static void
262WaitForThreadShutdown(void)
263{
264#ifdef WITH_THREAD
265 PyObject *result;
266 PyThreadState *tstate = PyThreadState_GET();
267 PyObject *threading = PyMapping_GetItemString(tstate->interp->modules,
268 "threading");
269 if (threading == NULL) {
270 /* threading not imported */
271 PyErr_Clear();
272 return;
273 }
274 result = PyObject_CallMethod(threading, "_shutdown", "");
275 if (result == NULL)
276 PyErr_WriteUnraisable(threading);
277 else
278 Py_DECREF(result);
279 Py_DECREF(threading);
280#endif
281}
282
Guido van Rossum667d7041995-08-04 04:20:48 +0000283/* Main program */
284
Mark Hammondfe51c6d2002-08-02 02:27:13 +0000285int
Martin v. Löwis790465f2008-04-05 20:41:37 +0000286Py_Main(int argc, wchar_t **argv)
Guido van Rossum667d7041995-08-04 04:20:48 +0000287{
288 int c;
289 int sts;
290 char *command = NULL;
Martin v. Löwis790465f2008-04-05 20:41:37 +0000291 wchar_t *filename = NULL;
Antoine Pitrou5651eaa2008-09-06 20:46:58 +0000292 wchar_t *module = NULL;
Guido van Rossum667d7041995-08-04 04:20:48 +0000293 FILE *fp = stdin;
294 char *p;
Guido van Rossum667d7041995-08-04 04:20:48 +0000295 int unbuffered = 0;
Guido van Rossuma075ce11997-12-05 21:56:45 +0000296 int skipfirstline = 0;
Guido van Rossum775af911997-02-14 19:50:32 +0000297 int stdin_is_interactive = 0;
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000298 int help = 0;
299 int version = 0;
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000300 int saw_unbuffered_flag = 0;
Jeremy Hyltonbc320242001-03-22 02:47:58 +0000301 PyCompilerFlags cf;
Antoine Pitrou5651eaa2008-09-06 20:46:58 +0000302 char *oldloc;
Guido van Rossum667d7041995-08-04 04:20:48 +0000303
Guido van Rossum393661d2001-08-31 17:40:15 +0000304 cf.cf_flags = 0;
305
Guido van Rossumac56b031996-07-21 02:33:38 +0000306 orig_argc = argc; /* For Py_GetArgcArgv() */
Guido van Rossum667d7041995-08-04 04:20:48 +0000307 orig_argv = argv;
Guido van Rossum667d7041995-08-04 04:20:48 +0000308
Guido van Rossum47f5fdc2000-12-15 22:00:54 +0000309 PySys_ResetWarnOptions();
310
Guido van Rossumbceccf52001-04-10 22:07:43 +0000311 while ((c = _PyOS_GetOpt(argc, argv, PROGRAM_OPTS)) != EOF) {
Guido van Rossum667d7041995-08-04 04:20:48 +0000312 if (c == 'c') {
Antoine Pitrou5651eaa2008-09-06 20:46:58 +0000313 size_t r1, r2;
314 oldloc = setlocale(LC_ALL, NULL);
315 setlocale(LC_ALL, "");
316 r1 = wcslen(_PyOS_optarg);
317 r2 = wcstombs(NULL, _PyOS_optarg, r1);
318 if (r2 == (size_t) -1)
319 Py_FatalError(
320 "cannot convert character encoding of -c argument");
321 if (r2 > r1)
322 r1 = r2;
323 r1 += 2;
Guido van Rossum667d7041995-08-04 04:20:48 +0000324 /* -c is the last option; following arguments
325 that look like options are left for the
Walter Dörwaldf0dfc7a2003-10-20 14:01:56 +0000326 command to interpret. */
Martin v. Löwis790465f2008-04-05 20:41:37 +0000327 command = (char *)malloc(r1);
Guido van Rossum667d7041995-08-04 04:20:48 +0000328 if (command == NULL)
329 Py_FatalError(
330 "not enough memory to copy -c argument");
Martin v. Löwis790465f2008-04-05 20:41:37 +0000331 r2 = wcstombs(command, _PyOS_optarg, r1);
Antoine Pitrou5651eaa2008-09-06 20:46:58 +0000332 if (r2 > r1-1)
Martin v. Löwis790465f2008-04-05 20:41:37 +0000333 Py_FatalError(
334 "not enough memory to copy -c argument");
Guido van Rossum667d7041995-08-04 04:20:48 +0000335 strcat(command, "\n");
Antoine Pitrou5651eaa2008-09-06 20:46:58 +0000336 setlocale(LC_ALL, oldloc);
Guido van Rossum667d7041995-08-04 04:20:48 +0000337 break;
338 }
Guido van Rossum393661d2001-08-31 17:40:15 +0000339
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000340 if (c == 'm') {
341 /* -m is the last option; following arguments
342 that look like options are left for the
343 module to interpret. */
Antoine Pitrou5651eaa2008-09-06 20:46:58 +0000344 module = _PyOS_optarg;
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000345 break;
346 }
347
Guido van Rossum667d7041995-08-04 04:20:48 +0000348 switch (c) {
Guido van Rossum98297ee2007-11-06 21:34:58 +0000349 case 'b':
350 Py_BytesWarningFlag++;
351 break;
Guido van Rossum667d7041995-08-04 04:20:48 +0000352
353 case 'd':
354 Py_DebugFlag++;
355 break;
356
357 case 'i':
Guido van Rossumd8faa362007-04-27 19:54:29 +0000358 Py_InspectFlag++;
Guido van Rossum775af911997-02-14 19:50:32 +0000359 Py_InteractiveFlag++;
Guido van Rossum667d7041995-08-04 04:20:48 +0000360 break;
361
Christian Heimes33fe8092008-04-13 13:53:33 +0000362 /* case 'J': reserved for Jython */
363
Guido van Rossum7614da61997-03-03 19:14:45 +0000364 case 'O':
365 Py_OptimizeFlag++;
366 break;
367
Christian Heimes790c8232008-01-07 21:14:23 +0000368 case 'B':
369 Py_DontWriteBytecodeFlag++;
370 break;
371
Christian Heimes8dc226f2008-05-06 23:45:46 +0000372 case 's':
373 Py_NoUserSiteDirectory++;
374 break;
375
Guido van Rossum7922bd71997-08-29 22:34:47 +0000376 case 'S':
377 Py_NoSiteFlag++;
378 break;
379
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000380 case 'E':
381 Py_IgnoreEnvironmentFlag++;
382 break;
383
Guido van Rossumbba92ca1998-04-10 19:39:15 +0000384 case 't':
Georg Brandle1b5ac62008-06-04 13:06:58 +0000385 /* ignored for backwards compatibility */
Guido van Rossumbba92ca1998-04-10 19:39:15 +0000386 break;
387
Guido van Rossum667d7041995-08-04 04:20:48 +0000388 case 'u':
389 unbuffered++;
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000390 saw_unbuffered_flag = 1;
Guido van Rossum667d7041995-08-04 04:20:48 +0000391 break;
392
393 case 'v':
394 Py_VerboseFlag++;
395 break;
396
Guido van Rossuma075ce11997-12-05 21:56:45 +0000397 case 'x':
398 skipfirstline = 1;
399 break;
400
Neal Norwitz32dde222008-04-15 06:43:13 +0000401 /* case 'X': reserved for implementation-specific arguments */
Christian Heimes33fe8092008-04-13 13:53:33 +0000402
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000403 case 'h':
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000404 case '?':
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000405 help++;
406 break;
Guido van Rossum45aecf42006-03-15 04:58:47 +0000407
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000408 case 'V':
409 version++;
410 break;
Guido van Rossumc15a9a12000-05-01 17:54:33 +0000411
Martin v. Löwis790465f2008-04-05 20:41:37 +0000412 case 'W':
Guido van Rossum47f5fdc2000-12-15 22:00:54 +0000413 PySys_AddWarnOption(_PyOS_optarg);
414 break;
415
Guido van Rossum667d7041995-08-04 04:20:48 +0000416 /* This space reserved for other options */
417
418 default:
Martin v. Löwis852ba7e2003-03-30 17:09:58 +0000419 return usage(2, argv[0]);
Guido van Rossum667d7041995-08-04 04:20:48 +0000420 /*NOTREACHED*/
421
422 }
423 }
424
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000425 if (help)
Martin v. Löwis852ba7e2003-03-30 17:09:58 +0000426 return usage(0, argv[0]);
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000427
428 if (version) {
429 fprintf(stderr, "Python %s\n", PY_VERSION);
Martin v. Löwis852ba7e2003-03-30 17:09:58 +0000430 return 0;
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000431 }
432
Guido van Rossumd8faa362007-04-27 19:54:29 +0000433 if (!Py_InspectFlag &&
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000434 (p = Py_GETENV("PYTHONINSPECT")) && *p != '\0')
Guido van Rossumd8faa362007-04-27 19:54:29 +0000435 Py_InspectFlag = 1;
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000436 if (!saw_unbuffered_flag &&
437 (p = Py_GETENV("PYTHONUNBUFFERED")) && *p != '\0')
438 unbuffered = 1;
439
Christian Heimes8dc226f2008-05-06 23:45:46 +0000440 if (!Py_NoUserSiteDirectory &&
441 (p = Py_GETENV("PYTHONNOUSERSITE")) && *p != '\0')
442 Py_NoUserSiteDirectory = 1;
443
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000444 if (command == NULL && module == NULL && _PyOS_optind < argc &&
Martin v. Löwis790465f2008-04-05 20:41:37 +0000445 wcscmp(argv[_PyOS_optind], L"-") != 0)
Guido van Rossum775af911997-02-14 19:50:32 +0000446 {
Martin v. Löwis7a924e62003-03-05 14:15:21 +0000447#ifdef __VMS
448 filename = decc$translate_vms(argv[_PyOS_optind]);
449 if (filename == (char *)0 || filename == (char *)-1)
450 filename = argv[_PyOS_optind];
451
452#else
Thomas Wouters2cffc7d2000-11-03 08:18:37 +0000453 filename = argv[_PyOS_optind];
Martin v. Löwis7a924e62003-03-05 14:15:21 +0000454#endif
Guido van Rossum775af911997-02-14 19:50:32 +0000455 }
456
457 stdin_is_interactive = Py_FdIsInteractive(stdin, (char *)0);
458
Guido van Rossum667d7041995-08-04 04:20:48 +0000459 if (unbuffered) {
Sjoerd Mullender9cf424b2002-08-09 13:35:18 +0000460#if defined(MS_WINDOWS) || defined(__CYGWIN__)
Guido van Rossum3e7ae7a1997-01-17 22:05:38 +0000461 _setmode(fileno(stdin), O_BINARY);
462 _setmode(fileno(stdout), O_BINARY);
Guido van Rossumf22d7e21997-01-11 19:28:55 +0000463#endif
Guido van Rossum22ffac11998-03-06 15:30:39 +0000464#ifdef HAVE_SETVBUF
Guido van Rossum775af911997-02-14 19:50:32 +0000465 setvbuf(stdin, (char *)NULL, _IONBF, BUFSIZ);
466 setvbuf(stdout, (char *)NULL, _IONBF, BUFSIZ);
467 setvbuf(stderr, (char *)NULL, _IONBF, BUFSIZ);
Guido van Rossum22ffac11998-03-06 15:30:39 +0000468#else /* !HAVE_SETVBUF */
469 setbuf(stdin, (char *)NULL);
470 setbuf(stdout, (char *)NULL);
471 setbuf(stderr, (char *)NULL);
472#endif /* !HAVE_SETVBUF */
Guido van Rossum667d7041995-08-04 04:20:48 +0000473 }
Guido van Rossum2a212191997-04-11 21:57:53 +0000474 else if (Py_InteractiveFlag) {
Guido van Rossumb31c7dc1997-04-11 22:19:12 +0000475#ifdef MS_WINDOWS
476 /* Doesn't have to have line-buffered -- use unbuffered */
Guido van Rossum01b7ced1999-02-09 18:36:51 +0000477 /* Any set[v]buf(stdin, ...) screws up Tkinter :-( */
Guido van Rossumb31c7dc1997-04-11 22:19:12 +0000478 setvbuf(stdout, (char *)NULL, _IONBF, BUFSIZ);
Guido van Rossum22ffac11998-03-06 15:30:39 +0000479#else /* !MS_WINDOWS */
480#ifdef HAVE_SETVBUF
Guido van Rossumb31c7dc1997-04-11 22:19:12 +0000481 setvbuf(stdin, (char *)NULL, _IOLBF, BUFSIZ);
482 setvbuf(stdout, (char *)NULL, _IOLBF, BUFSIZ);
Guido van Rossum22ffac11998-03-06 15:30:39 +0000483#endif /* HAVE_SETVBUF */
484#endif /* !MS_WINDOWS */
Guido van Rossum775af911997-02-14 19:50:32 +0000485 /* Leave stderr alone - it should be unbuffered anyway. */
486 }
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000487#ifdef __VMS
488 else {
489 setvbuf (stdout, (char *)NULL, _IOLBF, BUFSIZ);
490 }
491#endif /* __VMS */
Guido van Rossum667d7041995-08-04 04:20:48 +0000492
Just van Rossum2ac79ef2003-03-05 15:46:54 +0000493#ifdef __APPLE__
494 /* On MacOS X, when the Python interpreter is embedded in an
495 application bundle, it gets executed by a bootstrapping script
496 that does os.execve() with an argv[0] that's different from the
497 actual Python executable. This is needed to keep the Finder happy,
498 or rather, to work around Apple's overly strict requirements of
499 the process name. However, we still need a usable sys.executable,
500 so the actual executable path is passed in an environment variable.
501 See Lib/plat-mac/bundlebuiler.py for details about the bootstrap
502 script. */
503 if ((p = Py_GETENV("PYTHONEXECUTABLE")) && *p != '\0')
504 Py_SetProgramName(p);
505 else
506 Py_SetProgramName(argv[0]);
507#else
Guido van Rossumed52aac1997-07-19 19:20:32 +0000508 Py_SetProgramName(argv[0]);
Jack Jansenfbd861b2003-03-05 16:00:15 +0000509#endif
Guido van Rossumed52aac1997-07-19 19:20:32 +0000510 Py_Initialize();
511
Guido van Rossum667d7041995-08-04 04:20:48 +0000512 if (Py_VerboseFlag ||
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000513 (command == NULL && filename == NULL && module == NULL && stdin_is_interactive)) {
Martin v. Löwise98922f2003-03-30 17:00:39 +0000514 fprintf(stderr, "Python %s on %s\n",
515 Py_GetVersion(), Py_GetPlatform());
516 if (!Py_NoSiteFlag)
517 fprintf(stderr, "%s\n", COPYRIGHT);
518 }
Guido van Rossum393661d2001-08-31 17:40:15 +0000519
Guido van Rossum667d7041995-08-04 04:20:48 +0000520 if (command != NULL) {
Thomas Wouters2cffc7d2000-11-03 08:18:37 +0000521 /* Backup _PyOS_optind and force sys.argv[0] = '-c' */
522 _PyOS_optind--;
Martin v. Löwis790465f2008-04-05 20:41:37 +0000523 argv[_PyOS_optind] = L"-c";
Guido van Rossum667d7041995-08-04 04:20:48 +0000524 }
525
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000526 if (module != NULL) {
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000527 /* Backup _PyOS_optind and force sys.argv[0] = '-c'
528 so that PySys_SetArgv correctly sets sys.path[0] to ''*/
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000529 _PyOS_optind--;
Martin v. Löwis790465f2008-04-05 20:41:37 +0000530 argv[_PyOS_optind] = L"-c";
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000531 }
532
Thomas Wouters2cffc7d2000-11-03 08:18:37 +0000533 PySys_SetArgv(argc-_PyOS_optind, argv+_PyOS_optind);
Guido van Rossum667d7041995-08-04 04:20:48 +0000534
Guido van Rossumd8faa362007-04-27 19:54:29 +0000535 if ((Py_InspectFlag || (command == NULL && filename == NULL && module == NULL)) &&
Guido van Rossum3d26cc91997-09-16 16:11:28 +0000536 isatty(fileno(stdin))) {
537 PyObject *v;
538 v = PyImport_ImportModule("readline");
539 if (v == NULL)
540 PyErr_Clear();
541 else
542 Py_DECREF(v);
543 }
544
Guido van Rossum667d7041995-08-04 04:20:48 +0000545 if (command) {
Guido van Rossum393661d2001-08-31 17:40:15 +0000546 sts = PyRun_SimpleStringFlags(command, &cf) != 0;
Guido van Rossum05f7c501997-08-02 03:00:42 +0000547 free(command);
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000548 } else if (module) {
Christian Heimes9cd17752007-11-18 19:35:23 +0000549 sts = RunModule(module, 1);
Guido van Rossum667d7041995-08-04 04:20:48 +0000550 }
551 else {
Christian Heimes9cd17752007-11-18 19:35:23 +0000552
Guido van Rossum775af911997-02-14 19:50:32 +0000553 if (filename == NULL && stdin_is_interactive) {
Guido van Rossumd8faa362007-04-27 19:54:29 +0000554 Py_InspectFlag = 0; /* do exit on SystemExit */
Martin v. Löwis6caea372003-11-18 19:46:25 +0000555 RunStartupFile(&cf);
Guido van Rossum667d7041995-08-04 04:20:48 +0000556 }
Jeremy Hyltonbc320242001-03-22 02:47:58 +0000557 /* XXX */
Christian Heimes9cd17752007-11-18 19:35:23 +0000558
559 sts = -1; /* keep track of whether we've already run __main__ */
560
561 if (filename != NULL) {
562 sts = RunMainFromImporter(filename);
563 }
564
565 if (sts==-1 && filename!=NULL) {
Martin v. Löwis790465f2008-04-05 20:41:37 +0000566 if ((fp = _wfopen(filename, L"r")) == NULL) {
Martin v. Löwis99ddc8c2008-04-06 17:57:16 +0000567 fprintf(stderr, "%ls: can't open file '%ls': [Errno %d] %s\n",
Christian Heimes9cd17752007-11-18 19:35:23 +0000568 argv[0], filename, errno, strerror(errno));
Christian Heimesada8c3b2008-03-18 18:26:33 +0000569
Christian Heimes9cd17752007-11-18 19:35:23 +0000570 return 2;
571 }
572 else if (skipfirstline) {
573 int ch;
574 /* Push back first newline so line numbers
575 remain the same */
576 while ((ch = getc(fp)) != EOF) {
577 if (ch == '\n') {
578 (void)ungetc(ch, fp);
579 break;
580 }
581 }
582 }
583 {
584 /* XXX: does this work on Win/Win64? (see posix_fstat) */
585 struct stat sb;
586 if (fstat(fileno(fp), &sb) == 0 &&
587 S_ISDIR(sb.st_mode)) {
Martin v. Löwis790465f2008-04-05 20:41:37 +0000588 fprintf(stderr, "%ls: '%ls' is a directory, cannot continue\n", argv[0], filename);
Christian Heimes679db4a2008-01-18 09:56:22 +0000589 fclose(fp);
Christian Heimes9cd17752007-11-18 19:35:23 +0000590 return 1;
591 }
592 }
593 }
594
595 if (sts==-1) {
Martin v. Löwis790465f2008-04-05 20:41:37 +0000596 char cfilename[PATH_MAX];
597 char *p_cfilename = "<stdin>";
598 if (filename) {
599 size_t r = wcstombs(cfilename, filename, PATH_MAX);
600 p_cfilename = cfilename;
601 if (r == (size_t)-1 || r >= PATH_MAX)
602 p_cfilename = "<decoding error>";
603 }
Christian Heimes9cd17752007-11-18 19:35:23 +0000604 sts = PyRun_AnyFileExFlags(
605 fp,
Martin v. Löwis790465f2008-04-05 20:41:37 +0000606 p_cfilename,
Christian Heimes9cd17752007-11-18 19:35:23 +0000607 filename != NULL, &cf) != 0;
608 }
609
Guido van Rossum667d7041995-08-04 04:20:48 +0000610 }
611
Barry Warsawd86dcd32003-06-29 17:07:06 +0000612 /* Check this environment variable at the end, to give programs the
613 * opportunity to set it from Python.
614 */
Guido van Rossumd8faa362007-04-27 19:54:29 +0000615 if (!Py_InspectFlag &&
Barry Warsawd86dcd32003-06-29 17:07:06 +0000616 (p = Py_GETENV("PYTHONINSPECT")) && *p != '\0')
617 {
Guido van Rossumd8faa362007-04-27 19:54:29 +0000618 Py_InspectFlag = 1;
Barry Warsawd86dcd32003-06-29 17:07:06 +0000619 }
620
Guido van Rossumd8faa362007-04-27 19:54:29 +0000621 if (Py_InspectFlag && stdin_is_interactive &&
622 (filename != NULL || command != NULL || module != NULL)) {
623 Py_InspectFlag = 0;
Jeremy Hyltonbc320242001-03-22 02:47:58 +0000624 /* XXX */
625 sts = PyRun_AnyFileFlags(stdin, "<stdin>", &cf) != 0;
Guido van Rossumd8faa362007-04-27 19:54:29 +0000626 }
Guido van Rossum667d7041995-08-04 04:20:48 +0000627
Thomas Wouters902d6eb2007-01-09 23:18:33 +0000628 WaitForThreadShutdown();
629
Guido van Rossum5d1770e1997-08-05 02:23:48 +0000630 Py_Finalize();
Barry Warsaw3e13b1e2001-02-23 16:46:39 +0000631
632#ifdef __INSURE__
633 /* Insure++ is a memory analysis tool that aids in discovering
634 * memory leaks and other memory problems. On Python exit, the
Walter Dörwald16807132007-05-25 13:52:07 +0000635 * interned string dictionaries are flagged as being in use at exit
Barry Warsaw3e13b1e2001-02-23 16:46:39 +0000636 * (which it is). Under normal circumstances, this is fine because
637 * the memory will be automatically reclaimed by the system. Under
638 * memory debugging, it's a huge source of useless noise, so we
639 * trade off slower shutdown for less distraction in the memory
640 * reports. -baw
641 */
642 _Py_ReleaseInternedStrings();
Walter Dörwald16807132007-05-25 13:52:07 +0000643 _Py_ReleaseInternedUnicodeStrings();
Barry Warsaw3e13b1e2001-02-23 16:46:39 +0000644#endif /* __INSURE__ */
645
Guido van Rossum05f7c501997-08-02 03:00:42 +0000646 return sts;
Guido van Rossum667d7041995-08-04 04:20:48 +0000647}
648
Skip Montanaro786ea6b2004-03-01 15:44:05 +0000649/* this is gonna seem *real weird*, but if you put some other code between
650 Py_Main() and Py_GetArgcArgv() you will need to adjust the test in the
651 while statement in Misc/gdbinit:ppystack */
Guido van Rossum667d7041995-08-04 04:20:48 +0000652
Guido van Rossum667d7041995-08-04 04:20:48 +0000653/* Make the *original* argc/argv available to other modules.
654 This is rare, but it is needed by the secureware extension. */
655
656void
Martin v. Löwis790465f2008-04-05 20:41:37 +0000657Py_GetArgcArgv(int *argc, wchar_t ***argv)
Guido van Rossum667d7041995-08-04 04:20:48 +0000658{
659 *argc = orig_argc;
660 *argv = orig_argv;
661}
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000662
663#ifdef __cplusplus
664}
665#endif