blob: 4a10d939c0458446084b3081099d4b5ebfab0386 [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";
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"
102#if !(defined(MS_WINDOWS) && defined(HAVE_USABLE_WCHAR_T)) && !defined(__APPLE__)
103"PYTHONFSENCODING: Encoding used for the filesystem.\n"
104#endif
105;
Guido van Rossum667d7041995-08-04 04:20:48 +0000106
Martin v. Löwis852ba7e2003-03-30 17:09:58 +0000107static int
Martin v. Löwis790465f2008-04-05 20:41:37 +0000108usage(int exitcode, wchar_t* program)
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000109{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000110 FILE *f = exitcode ? stderr : stdout;
Guido van Rossum393661d2001-08-31 17:40:15 +0000111
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000112 fprintf(f, usage_line, program);
113 if (exitcode)
114 fprintf(f, "Try `python -h' for more information.\n");
115 else {
116 fputs(usage_1, f);
117 fputs(usage_2, f);
118 fputs(usage_3, f);
119 fprintf(f, usage_4, DELIM);
120 fprintf(f, usage_5, DELIM, PYTHONHOMEHELP);
121 }
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000122#if defined(__VMS)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000123 if (exitcode == 0) {
124 /* suppress 'error' message */
125 return 1;
126 }
127 else {
128 /* STS$M_INHIB_MSG + SS$_ABORT */
129 return 0x1000002c;
130 }
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000131#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000132 return exitcode;
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000133#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000134 /*NOTREACHED*/
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000135}
136
Martin v. Löwis6caea372003-11-18 19:46:25 +0000137static void RunStartupFile(PyCompilerFlags *cf)
138{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000139 char *startup = Py_GETENV("PYTHONSTARTUP");
140 if (startup != NULL && startup[0] != '\0') {
141 FILE *fp = fopen(startup, "r");
142 if (fp != NULL) {
143 (void) PyRun_SimpleFileExFlags(fp, startup, 0, cf);
144 PyErr_Clear();
145 fclose(fp);
146 } else {
147 int save_errno;
148
149 save_errno = errno;
150 PySys_WriteStderr("Could not open PYTHONSTARTUP\n");
151 errno = save_errno;
152 PyErr_SetFromErrnoWithFilename(PyExc_IOError,
153 startup);
154 PyErr_Print();
155 PyErr_Clear();
156 }
157 }
Martin v. Löwis6caea372003-11-18 19:46:25 +0000158}
159
Thomas Woutersa9773292006-04-21 09:43:23 +0000160
Antoine Pitrou5651eaa2008-09-06 20:46:58 +0000161static int RunModule(wchar_t *modname, int set_argv0)
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000162{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000163 PyObject *module, *runpy, *runmodule, *runargs, *result;
164 runpy = PyImport_ImportModule("runpy");
165 if (runpy == NULL) {
166 fprintf(stderr, "Could not import runpy module\n");
167 return -1;
168 }
169 runmodule = PyObject_GetAttrString(runpy, "_run_module_as_main");
170 if (runmodule == NULL) {
171 fprintf(stderr, "Could not access runpy._run_module_as_main\n");
172 Py_DECREF(runpy);
173 return -1;
174 }
175 module = PyUnicode_FromWideChar(modname, wcslen(modname));
176 if (module == NULL) {
177 fprintf(stderr, "Could not convert module name to unicode\n");
178 Py_DECREF(runpy);
179 Py_DECREF(runmodule);
180 return -1;
181 }
182 runargs = Py_BuildValue("(Oi)", module, set_argv0);
183 if (runargs == NULL) {
184 fprintf(stderr,
185 "Could not create arguments for runpy._run_module_as_main\n");
186 Py_DECREF(runpy);
187 Py_DECREF(runmodule);
188 Py_DECREF(module);
189 return -1;
190 }
191 result = PyObject_Call(runmodule, runargs, NULL);
192 if (result == NULL) {
193 PyErr_Print();
194 }
195 Py_DECREF(runpy);
196 Py_DECREF(runmodule);
197 Py_DECREF(module);
198 Py_DECREF(runargs);
199 if (result == NULL) {
200 return -1;
201 }
202 Py_DECREF(result);
203 return 0;
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000204}
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000205
Victor Stinner4726e402010-10-06 23:24:57 +0000206static int
207RunMainFromImporter(wchar_t *filename)
Christian Heimes9cd17752007-11-18 19:35:23 +0000208{
Victor Stinner4726e402010-10-06 23:24:57 +0000209 PyObject *argv0 = NULL, *importer, *sys_path;
210 int sts;
Christian Heimes9cd17752007-11-18 19:35:23 +0000211
Victor Stinner4726e402010-10-06 23:24:57 +0000212 argv0 = PyUnicode_FromWideChar(filename, wcslen(filename));
213 if (argv0 == NULL)
214 goto error;
215
216 importer = PyImport_GetImporter(argv0);
217 if (importer == NULL)
218 goto error;
219
220 if (importer->ob_type == &PyNullImporter_Type) {
221 Py_DECREF(argv0);
222 Py_DECREF(importer);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000223 return -1;
224 }
Victor Stinner4726e402010-10-06 23:24:57 +0000225 Py_DECREF(importer);
226
227 /* argv0 is usable as an import source, so put it in sys.path[0]
228 and import __main__ */
229 sys_path = PySys_GetObject("path");
230 if (sys_path == NULL)
231 goto error;
232 if (PyList_SetItem(sys_path, 0, argv0)) {
233 argv0 = NULL;
234 goto error;
235 }
236 Py_INCREF(argv0);
237
238 sts = RunModule(L"__main__", 0);
239 return sts != 0;
240
241error:
242 Py_XDECREF(argv0);
243 PyErr_Print();
244 return 1;
Christian Heimes9cd17752007-11-18 19:35:23 +0000245}
246
Victor Stinnera62207c2010-08-07 10:57:17 +0000247static int
248run_command(wchar_t *command, PyCompilerFlags *cf)
249{
250 PyObject *unicode, *bytes;
251 int ret;
252
253 unicode = PyUnicode_FromWideChar(command, -1);
254 if (unicode == NULL)
255 goto error;
256 bytes = PyUnicode_AsUTF8String(unicode);
257 Py_DECREF(unicode);
258 if (bytes == NULL)
259 goto error;
260 ret = PyRun_SimpleStringFlags(PyBytes_AsString(bytes), cf);
261 Py_DECREF(bytes);
262 return ret != 0;
263
264error:
Victor Stinner398356b2010-08-18 22:23:22 +0000265 PySys_WriteStderr("Unable to decode the command from the command line:\n");
Victor Stinnera62207c2010-08-07 10:57:17 +0000266 PyErr_Print();
267 return 1;
268}
269
Victor Stinner0a3ddad2010-08-07 16:34:25 +0000270static int
271run_file(FILE *fp, const wchar_t *filename, PyCompilerFlags *p_cf)
272{
273 PyObject *unicode, *bytes = NULL;
274 char *filename_str;
275 int run;
276
277 /* call pending calls like signal handlers (SIGINT) */
278 if (Py_MakePendingCalls() == -1) {
279 PyErr_Print();
280 return 1;
281 }
282
283 if (filename) {
284 unicode = PyUnicode_FromWideChar(filename, wcslen(filename));
285 if (unicode != NULL) {
286 bytes = PyUnicode_AsUTF8String(unicode);
287 Py_DECREF(unicode);
288 }
289 if (bytes != NULL)
290 filename_str = PyBytes_AsString(bytes);
291 else {
292 PyErr_Clear();
293 filename_str = "<decoding error>";
294 }
295 }
296 else
297 filename_str = "<stdin>";
298
299 run = PyRun_AnyFileExFlags(fp, filename_str, filename != NULL, p_cf);
300 Py_XDECREF(bytes);
301 return run != 0;
302}
303
Christian Heimes9cd17752007-11-18 19:35:23 +0000304
Guido van Rossum667d7041995-08-04 04:20:48 +0000305/* Main program */
306
Mark Hammondfe51c6d2002-08-02 02:27:13 +0000307int
Martin v. Löwis790465f2008-04-05 20:41:37 +0000308Py_Main(int argc, wchar_t **argv)
Guido van Rossum667d7041995-08-04 04:20:48 +0000309{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000310 int c;
311 int sts;
312 wchar_t *command = NULL;
313 wchar_t *filename = NULL;
314 wchar_t *module = NULL;
315 FILE *fp = stdin;
316 char *p;
Philip Jenveye53de3d2010-04-14 03:01:39 +0000317#ifdef MS_WINDOWS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000318 wchar_t *wp;
Philip Jenveye53de3d2010-04-14 03:01:39 +0000319#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000320 int skipfirstline = 0;
321 int stdin_is_interactive = 0;
322 int help = 0;
323 int version = 0;
324 int saw_unbuffered_flag = 0;
325 PyCompilerFlags cf;
Guido van Rossum667d7041995-08-04 04:20:48 +0000326
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000327 cf.cf_flags = 0;
Guido van Rossum393661d2001-08-31 17:40:15 +0000328
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000329 orig_argc = argc; /* For Py_GetArgcArgv() */
330 orig_argv = argv;
Guido van Rossum667d7041995-08-04 04:20:48 +0000331
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000332 PySys_ResetWarnOptions();
Guido van Rossum47f5fdc2000-12-15 22:00:54 +0000333
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000334 while ((c = _PyOS_GetOpt(argc, argv, PROGRAM_OPTS)) != EOF) {
335 if (c == 'c') {
336 size_t len;
337 /* -c is the last option; following arguments
338 that look like options are left for the
339 command to interpret. */
Amaury Forgeot d'Arc9a5499b2008-11-11 23:04:59 +0000340
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000341 len = wcslen(_PyOS_optarg) + 1 + 1;
342 command = (wchar_t *)malloc(sizeof(wchar_t) * len);
343 if (command == NULL)
344 Py_FatalError(
345 "not enough memory to copy -c argument");
346 wcscpy(command, _PyOS_optarg);
347 command[len - 2] = '\n';
348 command[len - 1] = 0;
349 break;
350 }
Guido van Rossum393661d2001-08-31 17:40:15 +0000351
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000352 if (c == 'm') {
353 /* -m is the last option; following arguments
354 that look like options are left for the
355 module to interpret. */
356 module = _PyOS_optarg;
357 break;
358 }
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000359
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000360 switch (c) {
361 case 'b':
362 Py_BytesWarningFlag++;
363 break;
Guido van Rossum667d7041995-08-04 04:20:48 +0000364
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000365 case 'd':
366 Py_DebugFlag++;
367 break;
Guido van Rossum667d7041995-08-04 04:20:48 +0000368
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000369 case 'i':
370 Py_InspectFlag++;
371 Py_InteractiveFlag++;
372 break;
Guido van Rossum667d7041995-08-04 04:20:48 +0000373
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000374 /* case 'J': reserved for Jython */
Christian Heimes33fe8092008-04-13 13:53:33 +0000375
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000376 case 'O':
377 Py_OptimizeFlag++;
378 break;
Guido van Rossum7614da61997-03-03 19:14:45 +0000379
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000380 case 'B':
381 Py_DontWriteBytecodeFlag++;
382 break;
Christian Heimes790c8232008-01-07 21:14:23 +0000383
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000384 case 's':
385 Py_NoUserSiteDirectory++;
386 break;
Christian Heimes8dc226f2008-05-06 23:45:46 +0000387
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000388 case 'S':
389 Py_NoSiteFlag++;
390 break;
Guido van Rossum7922bd71997-08-29 22:34:47 +0000391
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000392 case 'E':
393 Py_IgnoreEnvironmentFlag++;
394 break;
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000395
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000396 case 't':
397 /* ignored for backwards compatibility */
398 break;
Guido van Rossumbba92ca1998-04-10 19:39:15 +0000399
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000400 case 'u':
401 Py_UnbufferedStdioFlag = 1;
402 saw_unbuffered_flag = 1;
403 break;
Guido van Rossum667d7041995-08-04 04:20:48 +0000404
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000405 case 'v':
406 Py_VerboseFlag++;
407 break;
Guido van Rossum667d7041995-08-04 04:20:48 +0000408
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000409 case 'x':
410 skipfirstline = 1;
411 break;
Guido van Rossuma075ce11997-12-05 21:56:45 +0000412
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000413 /* case 'X': reserved for implementation-specific arguments */
Christian Heimes33fe8092008-04-13 13:53:33 +0000414
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000415 case 'h':
416 case '?':
417 help++;
418 break;
Guido van Rossum45aecf42006-03-15 04:58:47 +0000419
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000420 case 'V':
421 version++;
422 break;
Guido van Rossumc15a9a12000-05-01 17:54:33 +0000423
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000424 case 'W':
425 PySys_AddWarnOption(_PyOS_optarg);
426 break;
Guido van Rossum47f5fdc2000-12-15 22:00:54 +0000427
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000428 /* This space reserved for other options */
Guido van Rossum667d7041995-08-04 04:20:48 +0000429
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000430 default:
431 return usage(2, argv[0]);
432 /*NOTREACHED*/
Guido van Rossum667d7041995-08-04 04:20:48 +0000433
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000434 }
435 }
Guido van Rossum667d7041995-08-04 04:20:48 +0000436
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000437 if (help)
438 return usage(0, argv[0]);
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000439
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000440 if (version) {
441 fprintf(stderr, "Python %s\n", PY_VERSION);
442 return 0;
443 }
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000444
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000445 if (!Py_InspectFlag &&
446 (p = Py_GETENV("PYTHONINSPECT")) && *p != '\0')
447 Py_InspectFlag = 1;
448 if (!saw_unbuffered_flag &&
449 (p = Py_GETENV("PYTHONUNBUFFERED")) && *p != '\0')
450 Py_UnbufferedStdioFlag = 1;
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000451
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000452 if (!Py_NoUserSiteDirectory &&
453 (p = Py_GETENV("PYTHONNOUSERSITE")) && *p != '\0')
454 Py_NoUserSiteDirectory = 1;
Christian Heimes8dc226f2008-05-06 23:45:46 +0000455
Philip Jenveye53de3d2010-04-14 03:01:39 +0000456#ifdef MS_WINDOWS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000457 if (!Py_IgnoreEnvironmentFlag && (wp = _wgetenv(L"PYTHONWARNINGS")) &&
458 *wp != L'\0') {
459 wchar_t *buf, *warning;
Philip Jenvey0805ca32010-04-07 04:04:10 +0000460
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000461 buf = (wchar_t *)malloc((wcslen(wp) + 1) * sizeof(wchar_t));
462 if (buf == NULL)
463 Py_FatalError(
464 "not enough memory to copy PYTHONWARNINGS");
465 wcscpy(buf, wp);
466 for (warning = wcstok(buf, L",");
467 warning != NULL;
468 warning = wcstok(NULL, L",")) {
469 PySys_AddWarnOption(warning);
470 }
471 free(buf);
472 }
Philip Jenveye53de3d2010-04-14 03:01:39 +0000473#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000474 if ((p = Py_GETENV("PYTHONWARNINGS")) && *p != '\0') {
475 char *buf, *oldloc;
Victor Stinnerc2d76fd2010-09-10 23:13:52 +0000476 PyObject *unicode;
Philip Jenveye53de3d2010-04-14 03:01:39 +0000477
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000478 /* settle for strtok here as there's no one standard
479 C89 wcstok */
480 buf = (char *)malloc(strlen(p) + 1);
481 if (buf == NULL)
482 Py_FatalError(
483 "not enough memory to copy PYTHONWARNINGS");
484 strcpy(buf, p);
485 oldloc = strdup(setlocale(LC_ALL, NULL));
486 setlocale(LC_ALL, "");
487 for (p = strtok(buf, ","); p != NULL; p = strtok(NULL, ",")) {
Victor Stinner5c848a82010-09-12 08:00:41 +0000488#ifdef __APPLE__
489 /* Use utf-8 on Mac OS X */
490 unicode = PyUnicode_FromString(p);
491#else
492 wchar_t *wchar = _Py_char2wchar(p);
Victor Stinnerc2d76fd2010-09-10 23:13:52 +0000493 if (wchar == NULL)
494 continue;
495 unicode = PyUnicode_FromWideChar(wchar, wcslen(wchar));
496 PyMem_Free(wchar);
Victor Stinner5c848a82010-09-12 08:00:41 +0000497#endif
Victor Stinnerc2d76fd2010-09-10 23:13:52 +0000498 if (unicode == NULL)
499 continue;
500 PySys_AddWarnOptionUnicode(unicode);
501 Py_DECREF(unicode);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000502 }
503 setlocale(LC_ALL, oldloc);
504 free(oldloc);
505 free(buf);
506 }
Philip Jenveye53de3d2010-04-14 03:01:39 +0000507#endif
Philip Jenvey0805ca32010-04-07 04:04:10 +0000508
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000509 if (command == NULL && module == NULL && _PyOS_optind < argc &&
510 wcscmp(argv[_PyOS_optind], L"-") != 0)
511 {
Martin v. Löwis7a924e62003-03-05 14:15:21 +0000512#ifdef __VMS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000513 filename = decc$translate_vms(argv[_PyOS_optind]);
514 if (filename == (char *)0 || filename == (char *)-1)
515 filename = argv[_PyOS_optind];
Martin v. Löwis7a924e62003-03-05 14:15:21 +0000516
517#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000518 filename = argv[_PyOS_optind];
Martin v. Löwis7a924e62003-03-05 14:15:21 +0000519#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000520 }
Guido van Rossum775af911997-02-14 19:50:32 +0000521
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000522 stdin_is_interactive = Py_FdIsInteractive(stdin, (char *)0);
Guido van Rossum775af911997-02-14 19:50:32 +0000523
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000524 if (Py_UnbufferedStdioFlag) {
Sjoerd Mullender9cf424b2002-08-09 13:35:18 +0000525#if defined(MS_WINDOWS) || defined(__CYGWIN__)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000526 _setmode(fileno(stdin), O_BINARY);
527 _setmode(fileno(stdout), O_BINARY);
Guido van Rossumf22d7e21997-01-11 19:28:55 +0000528#endif
Guido van Rossum22ffac11998-03-06 15:30:39 +0000529#ifdef HAVE_SETVBUF
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000530 setvbuf(stdin, (char *)NULL, _IONBF, BUFSIZ);
531 setvbuf(stdout, (char *)NULL, _IONBF, BUFSIZ);
532 setvbuf(stderr, (char *)NULL, _IONBF, BUFSIZ);
Guido van Rossum22ffac11998-03-06 15:30:39 +0000533#else /* !HAVE_SETVBUF */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000534 setbuf(stdin, (char *)NULL);
535 setbuf(stdout, (char *)NULL);
536 setbuf(stderr, (char *)NULL);
Guido van Rossum22ffac11998-03-06 15:30:39 +0000537#endif /* !HAVE_SETVBUF */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000538 }
539 else if (Py_InteractiveFlag) {
Guido van Rossumb31c7dc1997-04-11 22:19:12 +0000540#ifdef MS_WINDOWS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000541 /* Doesn't have to have line-buffered -- use unbuffered */
542 /* Any set[v]buf(stdin, ...) screws up Tkinter :-( */
543 setvbuf(stdout, (char *)NULL, _IONBF, BUFSIZ);
Guido van Rossum22ffac11998-03-06 15:30:39 +0000544#else /* !MS_WINDOWS */
545#ifdef HAVE_SETVBUF
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000546 setvbuf(stdin, (char *)NULL, _IOLBF, BUFSIZ);
547 setvbuf(stdout, (char *)NULL, _IOLBF, BUFSIZ);
Guido van Rossum22ffac11998-03-06 15:30:39 +0000548#endif /* HAVE_SETVBUF */
549#endif /* !MS_WINDOWS */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000550 /* Leave stderr alone - it should be unbuffered anyway. */
551 }
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000552#ifdef __VMS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000553 else {
554 setvbuf (stdout, (char *)NULL, _IOLBF, BUFSIZ);
555 }
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000556#endif /* __VMS */
Guido van Rossum667d7041995-08-04 04:20:48 +0000557
Just van Rossum2ac79ef2003-03-05 15:46:54 +0000558#ifdef __APPLE__
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000559 /* On MacOS X, when the Python interpreter is embedded in an
560 application bundle, it gets executed by a bootstrapping script
561 that does os.execve() with an argv[0] that's different from the
562 actual Python executable. This is needed to keep the Finder happy,
563 or rather, to work around Apple's overly strict requirements of
564 the process name. However, we still need a usable sys.executable,
565 so the actual executable path is passed in an environment variable.
566 See Lib/plat-mac/bundlebuiler.py for details about the bootstrap
567 script. */
568 if ((p = Py_GETENV("PYTHONEXECUTABLE")) && *p != '\0') {
569 wchar_t* buffer;
570 size_t len = strlen(p);
571 size_t r;
Ronald Oussoren3e264e12009-02-12 15:55:38 +0000572
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000573 buffer = malloc(len * sizeof(wchar_t));
574 if (buffer == NULL) {
575 Py_FatalError(
576 "not enough memory to copy PYTHONEXECUTABLE");
577 }
Ronald Oussoren3e264e12009-02-12 15:55:38 +0000578
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000579 r = mbstowcs(buffer, p, len);
580 Py_SetProgramName(buffer);
581 /* buffer is now handed off - do not free */
582 } else {
583 Py_SetProgramName(argv[0]);
584 }
Just van Rossum2ac79ef2003-03-05 15:46:54 +0000585#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000586 Py_SetProgramName(argv[0]);
Jack Jansenfbd861b2003-03-05 16:00:15 +0000587#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000588 Py_Initialize();
Guido van Rossumed52aac1997-07-19 19:20:32 +0000589
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000590 if (Py_VerboseFlag ||
591 (command == NULL && filename == NULL && module == NULL && stdin_is_interactive)) {
592 fprintf(stderr, "Python %s on %s\n",
593 Py_GetVersion(), Py_GetPlatform());
594 if (!Py_NoSiteFlag)
595 fprintf(stderr, "%s\n", COPYRIGHT);
596 }
Guido van Rossum393661d2001-08-31 17:40:15 +0000597
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000598 if (command != NULL) {
599 /* Backup _PyOS_optind and force sys.argv[0] = '-c' */
600 _PyOS_optind--;
601 argv[_PyOS_optind] = L"-c";
602 }
Guido van Rossum667d7041995-08-04 04:20:48 +0000603
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000604 if (module != NULL) {
Nick Coghland26c18a2010-08-17 13:06:11 +0000605 /* Backup _PyOS_optind and force sys.argv[0] = '-m'*/
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000606 _PyOS_optind--;
Nick Coghland26c18a2010-08-17 13:06:11 +0000607 argv[_PyOS_optind] = L"-m";
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000608 }
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000609
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000610 PySys_SetArgv(argc-_PyOS_optind, argv+_PyOS_optind);
Guido van Rossum667d7041995-08-04 04:20:48 +0000611
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000612 if ((Py_InspectFlag || (command == NULL && filename == NULL && module == NULL)) &&
613 isatty(fileno(stdin))) {
614 PyObject *v;
615 v = PyImport_ImportModule("readline");
616 if (v == NULL)
617 PyErr_Clear();
618 else
619 Py_DECREF(v);
620 }
Guido van Rossum3d26cc91997-09-16 16:11:28 +0000621
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000622 if (command) {
Victor Stinnera62207c2010-08-07 10:57:17 +0000623 sts = run_command(command, &cf);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000624 free(command);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000625 } else if (module) {
626 sts = RunModule(module, 1);
627 }
628 else {
Christian Heimes9cd17752007-11-18 19:35:23 +0000629
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000630 if (filename == NULL && stdin_is_interactive) {
631 Py_InspectFlag = 0; /* do exit on SystemExit */
632 RunStartupFile(&cf);
633 }
634 /* XXX */
Christian Heimes9cd17752007-11-18 19:35:23 +0000635
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000636 sts = -1; /* keep track of whether we've already run __main__ */
Christian Heimes9cd17752007-11-18 19:35:23 +0000637
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000638 if (filename != NULL) {
639 sts = RunMainFromImporter(filename);
640 }
Christian Heimes9cd17752007-11-18 19:35:23 +0000641
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000642 if (sts==-1 && filename!=NULL) {
Antoine Pitroue9b428f2010-08-13 22:25:01 +0000643 if ((fp = _Py_wfopen(filename, L"r")) == NULL) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000644 char cfilename[PATH_MAX];
645 size_t r = wcstombs(cfilename, filename, PATH_MAX);
646 if (r == PATH_MAX)
647 /* cfilename is not null-terminated;
648 * forcefully null-terminating it
649 * might break the shift state */
650 strcpy(cfilename, "<file name too long>");
651 if (r == ((size_t)-1))
652 strcpy(cfilename, "<unprintable file name>");
653 fprintf(stderr, "%ls: can't open file '%s': [Errno %d] %s\n",
654 argv[0], cfilename, errno, strerror(errno));
Christian Heimesada8c3b2008-03-18 18:26:33 +0000655
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000656 return 2;
657 }
658 else if (skipfirstline) {
659 int ch;
660 /* Push back first newline so line numbers
661 remain the same */
662 while ((ch = getc(fp)) != EOF) {
663 if (ch == '\n') {
664 (void)ungetc(ch, fp);
665 break;
666 }
667 }
668 }
669 {
670 /* XXX: does this work on Win/Win64? (see posix_fstat) */
671 struct stat sb;
672 if (fstat(fileno(fp), &sb) == 0 &&
673 S_ISDIR(sb.st_mode)) {
674 fprintf(stderr, "%ls: '%ls' is a directory, cannot continue\n", argv[0], filename);
675 fclose(fp);
676 return 1;
677 }
678 }
679 }
Christian Heimes9cd17752007-11-18 19:35:23 +0000680
Victor Stinner0a3ddad2010-08-07 16:34:25 +0000681 if (sts == -1)
682 sts = run_file(fp, filename, &cf);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000683 }
Barry Warsawd86dcd32003-06-29 17:07:06 +0000684
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000685 /* Check this environment variable at the end, to give programs the
686 * opportunity to set it from Python.
687 */
688 if (!Py_InspectFlag &&
689 (p = Py_GETENV("PYTHONINSPECT")) && *p != '\0')
690 {
691 Py_InspectFlag = 1;
692 }
Guido van Rossum667d7041995-08-04 04:20:48 +0000693
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000694 if (Py_InspectFlag && stdin_is_interactive &&
695 (filename != NULL || command != NULL || module != NULL)) {
696 Py_InspectFlag = 0;
697 /* XXX */
698 sts = PyRun_AnyFileFlags(stdin, "<stdin>", &cf) != 0;
699 }
700
701 Py_Finalize();
Barry Warsaw3e13b1e2001-02-23 16:46:39 +0000702
703#ifdef __INSURE__
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000704 /* Insure++ is a memory analysis tool that aids in discovering
705 * memory leaks and other memory problems. On Python exit, the
706 * interned string dictionaries are flagged as being in use at exit
707 * (which it is). Under normal circumstances, this is fine because
708 * the memory will be automatically reclaimed by the system. Under
709 * memory debugging, it's a huge source of useless noise, so we
710 * trade off slower shutdown for less distraction in the memory
711 * reports. -baw
712 */
713 _Py_ReleaseInternedStrings();
714 _Py_ReleaseInternedUnicodeStrings();
Barry Warsaw3e13b1e2001-02-23 16:46:39 +0000715#endif /* __INSURE__ */
716
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000717 return sts;
Guido van Rossum667d7041995-08-04 04:20:48 +0000718}
719
Skip Montanaro786ea6b2004-03-01 15:44:05 +0000720/* this is gonna seem *real weird*, but if you put some other code between
721 Py_Main() and Py_GetArgcArgv() you will need to adjust the test in the
722 while statement in Misc/gdbinit:ppystack */
Guido van Rossum667d7041995-08-04 04:20:48 +0000723
Guido van Rossum667d7041995-08-04 04:20:48 +0000724/* Make the *original* argc/argv available to other modules.
725 This is rare, but it is needed by the secureware extension. */
726
727void
Martin v. Löwis790465f2008-04-05 20:41:37 +0000728Py_GetArgcArgv(int *argc, wchar_t ***argv)
Guido van Rossum667d7041995-08-04 04:20:48 +0000729{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000730 *argc = orig_argc;
731 *argv = orig_argv;
Guido van Rossum667d7041995-08-04 04:20:48 +0000732}
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000733
734#ifdef __cplusplus
735}
736#endif