blob: eeb94c8ea4e94a0fe2ff05134d28debb0a1d43f1 [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 */
Antoine Pitrou9583cac2010-10-21 13:42:28 +000049#define BASE_OPTS L"bBc:dEhiJm:OsStuvVW: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\
Christian Heimes8dc226f2008-05-06 23:45:46 +000074-s : don't add user site directory to sys.path; also PYTHONNOUSERSITE\n\
Guido van Rossum7922bd71997-08-29 22:34:47 +000075-S : don't imply 'import site' on initialization\n\
Guido van Rossum393661d2001-08-31 17:40:15 +000076";
77static char *usage_3 = "\
Guido van Rossum98297ee2007-11-06 21:34:58 +000078-u : unbuffered binary stdout and stderr; also PYTHONUNBUFFERED=x\n\
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +000079 see man page for details on internal buffering relating to '-u'\n\
Thomas Wouters89f507f2006-12-13 04:49:30 +000080-v : verbose (trace import statements); also PYTHONVERBOSE=x\n\
81 can be supplied multiple times to increase verbosity\n\
Thomas Wouters0e3f5912006-08-11 14:57:12 +000082-V : print the Python version number and exit (also --version)\n\
Thomas Wouters89f507f2006-12-13 04:49:30 +000083-W arg : warning control; arg is action:message:category:module:lineno\n\
Philip Jenvey0805ca32010-04-07 04:04:10 +000084 also PYTHONWARNINGS=arg\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\
Antoine Pitrou9583cac2010-10-21 13:42:28 +000086-X opt : set implementation-specific option\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";
Victor Stinner9802b392010-08-19 11:36:43 +000097static char *usage_5 =
98"PYTHONHOME : alternate <prefix> directory (or <prefix>%c<exec_prefix>).\n"
99" The default module search path uses %s.\n"
100"PYTHONCASEOK : ignore case in 'import' statements (Windows).\n"
101"PYTHONIOENCODING: Encoding[:errors] used for stdin/stdout/stderr.\n"
Victor Stinner9802b392010-08-19 11:36:43 +0000102;
Guido van Rossum667d7041995-08-04 04:20:48 +0000103
Martin v. Löwis852ba7e2003-03-30 17:09:58 +0000104static int
Martin v. Löwis790465f2008-04-05 20:41:37 +0000105usage(int exitcode, wchar_t* program)
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000106{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000107 FILE *f = exitcode ? stderr : stdout;
Guido van Rossum393661d2001-08-31 17:40:15 +0000108
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000109 fprintf(f, usage_line, program);
110 if (exitcode)
111 fprintf(f, "Try `python -h' for more information.\n");
112 else {
113 fputs(usage_1, f);
114 fputs(usage_2, f);
115 fputs(usage_3, f);
116 fprintf(f, usage_4, DELIM);
117 fprintf(f, usage_5, DELIM, PYTHONHOMEHELP);
118 }
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000119#if defined(__VMS)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000120 if (exitcode == 0) {
121 /* suppress 'error' message */
122 return 1;
123 }
124 else {
125 /* STS$M_INHIB_MSG + SS$_ABORT */
126 return 0x1000002c;
127 }
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000128#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000129 return exitcode;
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000130#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000131 /*NOTREACHED*/
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000132}
133
Martin v. Löwis6caea372003-11-18 19:46:25 +0000134static void RunStartupFile(PyCompilerFlags *cf)
135{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000136 char *startup = Py_GETENV("PYTHONSTARTUP");
137 if (startup != NULL && startup[0] != '\0') {
138 FILE *fp = fopen(startup, "r");
139 if (fp != NULL) {
140 (void) PyRun_SimpleFileExFlags(fp, startup, 0, cf);
141 PyErr_Clear();
142 fclose(fp);
143 } else {
144 int save_errno;
145
146 save_errno = errno;
147 PySys_WriteStderr("Could not open PYTHONSTARTUP\n");
148 errno = save_errno;
149 PyErr_SetFromErrnoWithFilename(PyExc_IOError,
150 startup);
151 PyErr_Print();
152 PyErr_Clear();
153 }
154 }
Martin v. Löwis6caea372003-11-18 19:46:25 +0000155}
156
Thomas Woutersa9773292006-04-21 09:43:23 +0000157
Antoine Pitrou5651eaa2008-09-06 20:46:58 +0000158static int RunModule(wchar_t *modname, int set_argv0)
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000159{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000160 PyObject *module, *runpy, *runmodule, *runargs, *result;
161 runpy = PyImport_ImportModule("runpy");
162 if (runpy == NULL) {
163 fprintf(stderr, "Could not import runpy module\n");
164 return -1;
165 }
166 runmodule = PyObject_GetAttrString(runpy, "_run_module_as_main");
167 if (runmodule == NULL) {
168 fprintf(stderr, "Could not access runpy._run_module_as_main\n");
169 Py_DECREF(runpy);
170 return -1;
171 }
172 module = PyUnicode_FromWideChar(modname, wcslen(modname));
173 if (module == NULL) {
174 fprintf(stderr, "Could not convert module name to unicode\n");
175 Py_DECREF(runpy);
176 Py_DECREF(runmodule);
177 return -1;
178 }
179 runargs = Py_BuildValue("(Oi)", module, set_argv0);
180 if (runargs == NULL) {
181 fprintf(stderr,
182 "Could not create arguments for runpy._run_module_as_main\n");
183 Py_DECREF(runpy);
184 Py_DECREF(runmodule);
185 Py_DECREF(module);
186 return -1;
187 }
188 result = PyObject_Call(runmodule, runargs, NULL);
189 if (result == NULL) {
190 PyErr_Print();
191 }
192 Py_DECREF(runpy);
193 Py_DECREF(runmodule);
194 Py_DECREF(module);
195 Py_DECREF(runargs);
196 if (result == NULL) {
197 return -1;
198 }
199 Py_DECREF(result);
200 return 0;
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000201}
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000202
Victor Stinner4726e402010-10-06 23:24:57 +0000203static int
204RunMainFromImporter(wchar_t *filename)
Christian Heimes9cd17752007-11-18 19:35:23 +0000205{
Victor Stinner4726e402010-10-06 23:24:57 +0000206 PyObject *argv0 = NULL, *importer, *sys_path;
207 int sts;
Christian Heimes9cd17752007-11-18 19:35:23 +0000208
Victor Stinner4726e402010-10-06 23:24:57 +0000209 argv0 = PyUnicode_FromWideChar(filename, wcslen(filename));
210 if (argv0 == NULL)
211 goto error;
212
213 importer = PyImport_GetImporter(argv0);
214 if (importer == NULL)
215 goto error;
216
217 if (importer->ob_type == &PyNullImporter_Type) {
218 Py_DECREF(argv0);
219 Py_DECREF(importer);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000220 return -1;
221 }
Victor Stinner4726e402010-10-06 23:24:57 +0000222 Py_DECREF(importer);
223
224 /* argv0 is usable as an import source, so put it in sys.path[0]
225 and import __main__ */
226 sys_path = PySys_GetObject("path");
227 if (sys_path == NULL)
228 goto error;
229 if (PyList_SetItem(sys_path, 0, argv0)) {
230 argv0 = NULL;
231 goto error;
232 }
233 Py_INCREF(argv0);
234
235 sts = RunModule(L"__main__", 0);
236 return sts != 0;
237
238error:
239 Py_XDECREF(argv0);
240 PyErr_Print();
241 return 1;
Christian Heimes9cd17752007-11-18 19:35:23 +0000242}
243
Victor Stinnera62207c2010-08-07 10:57:17 +0000244static int
245run_command(wchar_t *command, PyCompilerFlags *cf)
246{
247 PyObject *unicode, *bytes;
248 int ret;
249
250 unicode = PyUnicode_FromWideChar(command, -1);
251 if (unicode == NULL)
252 goto error;
253 bytes = PyUnicode_AsUTF8String(unicode);
254 Py_DECREF(unicode);
255 if (bytes == NULL)
256 goto error;
257 ret = PyRun_SimpleStringFlags(PyBytes_AsString(bytes), cf);
258 Py_DECREF(bytes);
259 return ret != 0;
260
261error:
Victor Stinner398356b2010-08-18 22:23:22 +0000262 PySys_WriteStderr("Unable to decode the command from the command line:\n");
Victor Stinnera62207c2010-08-07 10:57:17 +0000263 PyErr_Print();
264 return 1;
265}
266
Victor Stinner0a3ddad2010-08-07 16:34:25 +0000267static int
268run_file(FILE *fp, const wchar_t *filename, PyCompilerFlags *p_cf)
269{
270 PyObject *unicode, *bytes = NULL;
271 char *filename_str;
272 int run;
273
274 /* call pending calls like signal handlers (SIGINT) */
275 if (Py_MakePendingCalls() == -1) {
276 PyErr_Print();
277 return 1;
278 }
279
280 if (filename) {
281 unicode = PyUnicode_FromWideChar(filename, wcslen(filename));
282 if (unicode != NULL) {
Victor Stinnere0f32682010-10-17 19:34:51 +0000283 bytes = PyUnicode_EncodeFSDefault(unicode);
Victor Stinner0a3ddad2010-08-07 16:34:25 +0000284 Py_DECREF(unicode);
285 }
286 if (bytes != NULL)
287 filename_str = PyBytes_AsString(bytes);
288 else {
289 PyErr_Clear();
Victor Stinnere0f32682010-10-17 19:34:51 +0000290 filename_str = "<encoding error>";
Victor Stinner0a3ddad2010-08-07 16:34:25 +0000291 }
292 }
293 else
294 filename_str = "<stdin>";
295
296 run = PyRun_AnyFileExFlags(fp, filename_str, filename != NULL, p_cf);
297 Py_XDECREF(bytes);
298 return run != 0;
299}
300
Christian Heimes9cd17752007-11-18 19:35:23 +0000301
Guido van Rossum667d7041995-08-04 04:20:48 +0000302/* Main program */
303
Mark Hammondfe51c6d2002-08-02 02:27:13 +0000304int
Martin v. Löwis790465f2008-04-05 20:41:37 +0000305Py_Main(int argc, wchar_t **argv)
Guido van Rossum667d7041995-08-04 04:20:48 +0000306{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000307 int c;
308 int sts;
309 wchar_t *command = NULL;
310 wchar_t *filename = NULL;
311 wchar_t *module = NULL;
312 FILE *fp = stdin;
313 char *p;
Philip Jenveye53de3d2010-04-14 03:01:39 +0000314#ifdef MS_WINDOWS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000315 wchar_t *wp;
Philip Jenveye53de3d2010-04-14 03:01:39 +0000316#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000317 int skipfirstline = 0;
318 int stdin_is_interactive = 0;
319 int help = 0;
320 int version = 0;
321 int saw_unbuffered_flag = 0;
322 PyCompilerFlags cf;
Guido van Rossum667d7041995-08-04 04:20:48 +0000323
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000324 cf.cf_flags = 0;
Guido van Rossum393661d2001-08-31 17:40:15 +0000325
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000326 orig_argc = argc; /* For Py_GetArgcArgv() */
327 orig_argv = argv;
Guido van Rossum667d7041995-08-04 04:20:48 +0000328
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000329 PySys_ResetWarnOptions();
Guido van Rossum47f5fdc2000-12-15 22:00:54 +0000330
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000331 while ((c = _PyOS_GetOpt(argc, argv, PROGRAM_OPTS)) != EOF) {
332 if (c == 'c') {
333 size_t len;
334 /* -c is the last option; following arguments
335 that look like options are left for the
336 command to interpret. */
Amaury Forgeot d'Arc9a5499b2008-11-11 23:04:59 +0000337
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000338 len = wcslen(_PyOS_optarg) + 1 + 1;
339 command = (wchar_t *)malloc(sizeof(wchar_t) * len);
340 if (command == NULL)
341 Py_FatalError(
342 "not enough memory to copy -c argument");
343 wcscpy(command, _PyOS_optarg);
344 command[len - 2] = '\n';
345 command[len - 1] = 0;
346 break;
347 }
Guido van Rossum393661d2001-08-31 17:40:15 +0000348
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000349 if (c == 'm') {
350 /* -m is the last option; following arguments
351 that look like options are left for the
352 module to interpret. */
353 module = _PyOS_optarg;
354 break;
355 }
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000356
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000357 switch (c) {
358 case 'b':
359 Py_BytesWarningFlag++;
360 break;
Guido van Rossum667d7041995-08-04 04:20:48 +0000361
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000362 case 'd':
363 Py_DebugFlag++;
364 break;
Guido van Rossum667d7041995-08-04 04:20:48 +0000365
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000366 case 'i':
367 Py_InspectFlag++;
368 Py_InteractiveFlag++;
369 break;
Guido van Rossum667d7041995-08-04 04:20:48 +0000370
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000371 /* case 'J': reserved for Jython */
Christian Heimes33fe8092008-04-13 13:53:33 +0000372
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000373 case 'O':
374 Py_OptimizeFlag++;
375 break;
Guido van Rossum7614da61997-03-03 19:14:45 +0000376
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000377 case 'B':
378 Py_DontWriteBytecodeFlag++;
379 break;
Christian Heimes790c8232008-01-07 21:14:23 +0000380
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000381 case 's':
382 Py_NoUserSiteDirectory++;
383 break;
Christian Heimes8dc226f2008-05-06 23:45:46 +0000384
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000385 case 'S':
386 Py_NoSiteFlag++;
387 break;
Guido van Rossum7922bd71997-08-29 22:34:47 +0000388
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000389 case 'E':
390 Py_IgnoreEnvironmentFlag++;
391 break;
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000392
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000393 case 't':
394 /* ignored for backwards compatibility */
395 break;
Guido van Rossumbba92ca1998-04-10 19:39:15 +0000396
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000397 case 'u':
398 Py_UnbufferedStdioFlag = 1;
399 saw_unbuffered_flag = 1;
400 break;
Guido van Rossum667d7041995-08-04 04:20:48 +0000401
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000402 case 'v':
403 Py_VerboseFlag++;
404 break;
Guido van Rossum667d7041995-08-04 04:20:48 +0000405
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000406 case 'x':
407 skipfirstline = 1;
408 break;
Guido van Rossuma075ce11997-12-05 21:56:45 +0000409
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000410 case 'h':
411 case '?':
412 help++;
413 break;
Guido van Rossum45aecf42006-03-15 04:58:47 +0000414
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000415 case 'V':
416 version++;
417 break;
Guido van Rossumc15a9a12000-05-01 17:54:33 +0000418
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000419 case 'W':
420 PySys_AddWarnOption(_PyOS_optarg);
421 break;
Guido van Rossum47f5fdc2000-12-15 22:00:54 +0000422
Antoine Pitrou9583cac2010-10-21 13:42:28 +0000423 case 'X':
424 PySys_AddXOption(_PyOS_optarg);
425 break;
426
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000427 /* This space reserved for other options */
Guido van Rossum667d7041995-08-04 04:20:48 +0000428
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000429 default:
430 return usage(2, argv[0]);
431 /*NOTREACHED*/
Guido van Rossum667d7041995-08-04 04:20:48 +0000432
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000433 }
434 }
Guido van Rossum667d7041995-08-04 04:20:48 +0000435
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000436 if (help)
437 return usage(0, argv[0]);
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000438
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000439 if (version) {
440 fprintf(stderr, "Python %s\n", PY_VERSION);
441 return 0;
442 }
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000443
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000444 if (!Py_InspectFlag &&
445 (p = Py_GETENV("PYTHONINSPECT")) && *p != '\0')
446 Py_InspectFlag = 1;
447 if (!saw_unbuffered_flag &&
448 (p = Py_GETENV("PYTHONUNBUFFERED")) && *p != '\0')
449 Py_UnbufferedStdioFlag = 1;
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000450
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000451 if (!Py_NoUserSiteDirectory &&
452 (p = Py_GETENV("PYTHONNOUSERSITE")) && *p != '\0')
453 Py_NoUserSiteDirectory = 1;
Christian Heimes8dc226f2008-05-06 23:45:46 +0000454
Philip Jenveye53de3d2010-04-14 03:01:39 +0000455#ifdef MS_WINDOWS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000456 if (!Py_IgnoreEnvironmentFlag && (wp = _wgetenv(L"PYTHONWARNINGS")) &&
457 *wp != L'\0') {
458 wchar_t *buf, *warning;
Philip Jenvey0805ca32010-04-07 04:04:10 +0000459
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000460 buf = (wchar_t *)malloc((wcslen(wp) + 1) * sizeof(wchar_t));
461 if (buf == NULL)
462 Py_FatalError(
463 "not enough memory to copy PYTHONWARNINGS");
464 wcscpy(buf, wp);
465 for (warning = wcstok(buf, L",");
466 warning != NULL;
467 warning = wcstok(NULL, L",")) {
468 PySys_AddWarnOption(warning);
469 }
470 free(buf);
471 }
Philip Jenveye53de3d2010-04-14 03:01:39 +0000472#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000473 if ((p = Py_GETENV("PYTHONWARNINGS")) && *p != '\0') {
474 char *buf, *oldloc;
Victor Stinnerc2d76fd2010-09-10 23:13:52 +0000475 PyObject *unicode;
Philip Jenveye53de3d2010-04-14 03:01:39 +0000476
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000477 /* settle for strtok here as there's no one standard
478 C89 wcstok */
479 buf = (char *)malloc(strlen(p) + 1);
480 if (buf == NULL)
481 Py_FatalError(
482 "not enough memory to copy PYTHONWARNINGS");
483 strcpy(buf, p);
484 oldloc = strdup(setlocale(LC_ALL, NULL));
485 setlocale(LC_ALL, "");
486 for (p = strtok(buf, ","); p != NULL; p = strtok(NULL, ",")) {
Victor Stinner5c848a82010-09-12 08:00:41 +0000487#ifdef __APPLE__
488 /* Use utf-8 on Mac OS X */
489 unicode = PyUnicode_FromString(p);
490#else
Victor Stinner168e1172010-10-16 23:16:16 +0000491 wchar_t *wchar;
492 size_t len;
493 wchar = _Py_char2wchar(p, &len);
Victor Stinnerc2d76fd2010-09-10 23:13:52 +0000494 if (wchar == NULL)
495 continue;
Victor Stinner168e1172010-10-16 23:16:16 +0000496 unicode = PyUnicode_FromWideChar(wchar, len);
Victor Stinnerc2d76fd2010-09-10 23:13:52 +0000497 PyMem_Free(wchar);
Victor Stinner5c848a82010-09-12 08:00:41 +0000498#endif
Victor Stinnerc2d76fd2010-09-10 23:13:52 +0000499 if (unicode == NULL)
500 continue;
501 PySys_AddWarnOptionUnicode(unicode);
502 Py_DECREF(unicode);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000503 }
504 setlocale(LC_ALL, oldloc);
505 free(oldloc);
506 free(buf);
507 }
Philip Jenveye53de3d2010-04-14 03:01:39 +0000508#endif
Philip Jenvey0805ca32010-04-07 04:04:10 +0000509
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000510 if (command == NULL && module == NULL && _PyOS_optind < argc &&
511 wcscmp(argv[_PyOS_optind], L"-") != 0)
512 {
Martin v. Löwis7a924e62003-03-05 14:15:21 +0000513#ifdef __VMS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000514 filename = decc$translate_vms(argv[_PyOS_optind]);
515 if (filename == (char *)0 || filename == (char *)-1)
516 filename = argv[_PyOS_optind];
Martin v. Löwis7a924e62003-03-05 14:15:21 +0000517
518#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000519 filename = argv[_PyOS_optind];
Martin v. Löwis7a924e62003-03-05 14:15:21 +0000520#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000521 }
Guido van Rossum775af911997-02-14 19:50:32 +0000522
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000523 stdin_is_interactive = Py_FdIsInteractive(stdin, (char *)0);
Guido van Rossum775af911997-02-14 19:50:32 +0000524
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000525 if (Py_UnbufferedStdioFlag) {
Sjoerd Mullender9cf424b2002-08-09 13:35:18 +0000526#if defined(MS_WINDOWS) || defined(__CYGWIN__)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000527 _setmode(fileno(stdin), O_BINARY);
528 _setmode(fileno(stdout), O_BINARY);
Guido van Rossumf22d7e21997-01-11 19:28:55 +0000529#endif
Guido van Rossum22ffac11998-03-06 15:30:39 +0000530#ifdef HAVE_SETVBUF
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000531 setvbuf(stdin, (char *)NULL, _IONBF, BUFSIZ);
532 setvbuf(stdout, (char *)NULL, _IONBF, BUFSIZ);
533 setvbuf(stderr, (char *)NULL, _IONBF, BUFSIZ);
Guido van Rossum22ffac11998-03-06 15:30:39 +0000534#else /* !HAVE_SETVBUF */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000535 setbuf(stdin, (char *)NULL);
536 setbuf(stdout, (char *)NULL);
537 setbuf(stderr, (char *)NULL);
Guido van Rossum22ffac11998-03-06 15:30:39 +0000538#endif /* !HAVE_SETVBUF */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000539 }
540 else if (Py_InteractiveFlag) {
Guido van Rossumb31c7dc1997-04-11 22:19:12 +0000541#ifdef MS_WINDOWS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000542 /* Doesn't have to have line-buffered -- use unbuffered */
543 /* Any set[v]buf(stdin, ...) screws up Tkinter :-( */
544 setvbuf(stdout, (char *)NULL, _IONBF, BUFSIZ);
Guido van Rossum22ffac11998-03-06 15:30:39 +0000545#else /* !MS_WINDOWS */
546#ifdef HAVE_SETVBUF
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000547 setvbuf(stdin, (char *)NULL, _IOLBF, BUFSIZ);
548 setvbuf(stdout, (char *)NULL, _IOLBF, BUFSIZ);
Guido van Rossum22ffac11998-03-06 15:30:39 +0000549#endif /* HAVE_SETVBUF */
550#endif /* !MS_WINDOWS */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000551 /* Leave stderr alone - it should be unbuffered anyway. */
552 }
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000553#ifdef __VMS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000554 else {
555 setvbuf (stdout, (char *)NULL, _IOLBF, BUFSIZ);
556 }
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000557#endif /* __VMS */
Guido van Rossum667d7041995-08-04 04:20:48 +0000558
Just van Rossum2ac79ef2003-03-05 15:46:54 +0000559#ifdef __APPLE__
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000560 /* On MacOS X, when the Python interpreter is embedded in an
561 application bundle, it gets executed by a bootstrapping script
562 that does os.execve() with an argv[0] that's different from the
563 actual Python executable. This is needed to keep the Finder happy,
564 or rather, to work around Apple's overly strict requirements of
565 the process name. However, we still need a usable sys.executable,
566 so the actual executable path is passed in an environment variable.
567 See Lib/plat-mac/bundlebuiler.py for details about the bootstrap
568 script. */
569 if ((p = Py_GETENV("PYTHONEXECUTABLE")) && *p != '\0') {
570 wchar_t* buffer;
571 size_t len = strlen(p);
572 size_t r;
Ronald Oussoren3e264e12009-02-12 15:55:38 +0000573
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000574 buffer = malloc(len * sizeof(wchar_t));
575 if (buffer == NULL) {
576 Py_FatalError(
577 "not enough memory to copy PYTHONEXECUTABLE");
578 }
Ronald Oussoren3e264e12009-02-12 15:55:38 +0000579
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000580 r = mbstowcs(buffer, p, len);
581 Py_SetProgramName(buffer);
582 /* buffer is now handed off - do not free */
583 } else {
584 Py_SetProgramName(argv[0]);
585 }
Just van Rossum2ac79ef2003-03-05 15:46:54 +0000586#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000587 Py_SetProgramName(argv[0]);
Jack Jansenfbd861b2003-03-05 16:00:15 +0000588#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000589 Py_Initialize();
Guido van Rossumed52aac1997-07-19 19:20:32 +0000590
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000591 if (Py_VerboseFlag ||
592 (command == NULL && filename == NULL && module == NULL && stdin_is_interactive)) {
593 fprintf(stderr, "Python %s on %s\n",
594 Py_GetVersion(), Py_GetPlatform());
595 if (!Py_NoSiteFlag)
596 fprintf(stderr, "%s\n", COPYRIGHT);
597 }
Guido van Rossum393661d2001-08-31 17:40:15 +0000598
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000599 if (command != NULL) {
600 /* Backup _PyOS_optind and force sys.argv[0] = '-c' */
601 _PyOS_optind--;
602 argv[_PyOS_optind] = L"-c";
603 }
Guido van Rossum667d7041995-08-04 04:20:48 +0000604
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000605 if (module != NULL) {
Nick Coghland26c18a2010-08-17 13:06:11 +0000606 /* Backup _PyOS_optind and force sys.argv[0] = '-m'*/
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000607 _PyOS_optind--;
Nick Coghland26c18a2010-08-17 13:06:11 +0000608 argv[_PyOS_optind] = L"-m";
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000609 }
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000610
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000611 PySys_SetArgv(argc-_PyOS_optind, argv+_PyOS_optind);
Guido van Rossum667d7041995-08-04 04:20:48 +0000612
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000613 if ((Py_InspectFlag || (command == NULL && filename == NULL && module == NULL)) &&
614 isatty(fileno(stdin))) {
615 PyObject *v;
616 v = PyImport_ImportModule("readline");
617 if (v == NULL)
618 PyErr_Clear();
619 else
620 Py_DECREF(v);
621 }
Guido van Rossum3d26cc91997-09-16 16:11:28 +0000622
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000623 if (command) {
Victor Stinnera62207c2010-08-07 10:57:17 +0000624 sts = run_command(command, &cf);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000625 free(command);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000626 } else if (module) {
627 sts = RunModule(module, 1);
628 }
629 else {
Christian Heimes9cd17752007-11-18 19:35:23 +0000630
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000631 if (filename == NULL && stdin_is_interactive) {
632 Py_InspectFlag = 0; /* do exit on SystemExit */
633 RunStartupFile(&cf);
634 }
635 /* XXX */
Christian Heimes9cd17752007-11-18 19:35:23 +0000636
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000637 sts = -1; /* keep track of whether we've already run __main__ */
Christian Heimes9cd17752007-11-18 19:35:23 +0000638
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000639 if (filename != NULL) {
640 sts = RunMainFromImporter(filename);
641 }
Christian Heimes9cd17752007-11-18 19:35:23 +0000642
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000643 if (sts==-1 && filename!=NULL) {
Victor Stinner9a6692f2010-10-14 10:51:24 +0000644 fp = _Py_wfopen(filename, L"r");
645 if (fp == NULL) {
646 char *cfilename_buffer;
647 const char *cfilename;
Victor Stinner2f02a512010-11-08 22:43:46 +0000648 cfilename_buffer = _Py_wchar2char(filename, NULL);
Victor Stinner9a6692f2010-10-14 10:51:24 +0000649 if (cfilename_buffer != NULL)
650 cfilename = cfilename_buffer;
651 else
652 cfilename = "<unprintable file name>";
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000653 fprintf(stderr, "%ls: can't open file '%s': [Errno %d] %s\n",
654 argv[0], cfilename, errno, strerror(errno));
Victor Stinner9a6692f2010-10-14 10:51:24 +0000655 if (cfilename_buffer)
656 PyMem_Free(cfilename_buffer);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000657 return 2;
658 }
659 else if (skipfirstline) {
660 int ch;
661 /* Push back first newline so line numbers
662 remain the same */
663 while ((ch = getc(fp)) != EOF) {
664 if (ch == '\n') {
665 (void)ungetc(ch, fp);
666 break;
667 }
668 }
669 }
670 {
671 /* XXX: does this work on Win/Win64? (see posix_fstat) */
672 struct stat sb;
673 if (fstat(fileno(fp), &sb) == 0 &&
674 S_ISDIR(sb.st_mode)) {
675 fprintf(stderr, "%ls: '%ls' is a directory, cannot continue\n", argv[0], filename);
676 fclose(fp);
677 return 1;
678 }
679 }
680 }
Christian Heimes9cd17752007-11-18 19:35:23 +0000681
Victor Stinner0a3ddad2010-08-07 16:34:25 +0000682 if (sts == -1)
683 sts = run_file(fp, filename, &cf);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000684 }
Barry Warsawd86dcd32003-06-29 17:07:06 +0000685
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000686 /* Check this environment variable at the end, to give programs the
687 * opportunity to set it from Python.
688 */
689 if (!Py_InspectFlag &&
690 (p = Py_GETENV("PYTHONINSPECT")) && *p != '\0')
691 {
692 Py_InspectFlag = 1;
693 }
Guido van Rossum667d7041995-08-04 04:20:48 +0000694
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000695 if (Py_InspectFlag && stdin_is_interactive &&
696 (filename != NULL || command != NULL || module != NULL)) {
697 Py_InspectFlag = 0;
698 /* XXX */
699 sts = PyRun_AnyFileFlags(stdin, "<stdin>", &cf) != 0;
700 }
701
702 Py_Finalize();
Barry Warsaw3e13b1e2001-02-23 16:46:39 +0000703
704#ifdef __INSURE__
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000705 /* Insure++ is a memory analysis tool that aids in discovering
706 * memory leaks and other memory problems. On Python exit, the
707 * interned string dictionaries are flagged as being in use at exit
708 * (which it is). Under normal circumstances, this is fine because
709 * the memory will be automatically reclaimed by the system. Under
710 * memory debugging, it's a huge source of useless noise, so we
711 * trade off slower shutdown for less distraction in the memory
712 * reports. -baw
713 */
714 _Py_ReleaseInternedStrings();
715 _Py_ReleaseInternedUnicodeStrings();
Barry Warsaw3e13b1e2001-02-23 16:46:39 +0000716#endif /* __INSURE__ */
717
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000718 return sts;
Guido van Rossum667d7041995-08-04 04:20:48 +0000719}
720
Skip Montanaro786ea6b2004-03-01 15:44:05 +0000721/* this is gonna seem *real weird*, but if you put some other code between
722 Py_Main() and Py_GetArgcArgv() you will need to adjust the test in the
723 while statement in Misc/gdbinit:ppystack */
Guido van Rossum667d7041995-08-04 04:20:48 +0000724
Guido van Rossum667d7041995-08-04 04:20:48 +0000725/* Make the *original* argc/argv available to other modules.
726 This is rare, but it is needed by the secureware extension. */
727
728void
Martin v. Löwis790465f2008-04-05 20:41:37 +0000729Py_GetArgcArgv(int *argc, wchar_t ***argv)
Guido van Rossum667d7041995-08-04 04:20:48 +0000730{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000731 *argc = orig_argc;
732 *argv = orig_argv;
Guido van Rossum667d7041995-08-04 04:20:48 +0000733}
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000734
735#ifdef __cplusplus
736}
737#endif