blob: bebaab556cec750f16531520c4b173c08d698ddf [file] [log] [blame]
Guido van Rossum667d7041995-08-04 04:20:48 +00001/* Python interpreter main program */
2
3#include "Python.h"
Guido van Rossuma075ce11997-12-05 21:56:45 +00004#include "osdefs.h"
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +00005#include "import.h"
Guido van Rossum667d7041995-08-04 04:20:48 +00006
Antoine Pitrou5651eaa2008-09-06 20:46:58 +00007#include <locale.h>
8
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00009#ifdef __VMS
Martin v. Löwis7a924e62003-03-05 14:15:21 +000010#include <unixlib.h>
Martin v. Löwis79acb9e2002-12-06 12:48:53 +000011#endif
12
Sjoerd Mullender9cf424b2002-08-09 13:35:18 +000013#if defined(MS_WINDOWS) || defined(__CYGWIN__)
Martin v. Löwis945362c2007-08-30 14:57:25 +000014#include <windows.h>
Thomas Wouters477c8d52006-05-27 19:21:47 +000015#ifdef HAVE_FCNTL_H
Guido van Rossum3e7ae7a1997-01-17 22:05:38 +000016#include <fcntl.h>
Martin v. Löwis790465f2008-04-05 20:41:37 +000017#define PATH_MAX MAXPATHLEN
Guido van Rossum3e7ae7a1997-01-17 22:05:38 +000018#endif
Thomas Wouters477c8d52006-05-27 19:21:47 +000019#endif
Guido van Rossum3e7ae7a1997-01-17 22:05:38 +000020
Martin v. Löwis945362c2007-08-30 14:57:25 +000021#ifdef _MSC_VER
22#include <crtdbg.h>
23#endif
24
Andrew MacIntyre7bf68332002-03-03 02:59:16 +000025#if (defined(PYOS_OS2) && !defined(PYCC_GCC)) || defined(MS_WINDOWS)
Guido van Rossuma075ce11997-12-05 21:56:45 +000026#define PYTHONHOMEHELP "<prefix>\\lib"
27#else
Andrew MacIntyre7bf68332002-03-03 02:59:16 +000028#if defined(PYOS_OS2) && defined(PYCC_GCC)
29#define PYTHONHOMEHELP "<prefix>/Lib"
30#else
Marc-André Lemburgda4dbc32001-06-12 16:13:51 +000031#define PYTHONHOMEHELP "<prefix>/pythonX.X"
Guido van Rossuma075ce11997-12-05 21:56:45 +000032#endif
Andrew MacIntyre7bf68332002-03-03 02:59:16 +000033#endif
Guido van Rossuma075ce11997-12-05 21:56:45 +000034
Thomas Wouters2cffc7d2000-11-03 08:18:37 +000035#include "pygetopt.h"
36
Guido van Rossuma22865e2000-09-05 04:41:18 +000037#define COPYRIGHT \
Guido van Rossum36002d72001-07-18 16:59:46 +000038 "Type \"help\", \"copyright\", \"credits\" or \"license\" " \
39 "for more information."
Guido van Rossuma22865e2000-09-05 04:41:18 +000040
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000041#ifdef __cplusplus
42extern "C" {
43#endif
44
Guido van Rossumac56b031996-07-21 02:33:38 +000045/* For Py_GetArgcArgv(); set by main() */
Martin v. Löwis790465f2008-04-05 20:41:37 +000046static wchar_t **orig_argv;
Guido van Rossum667d7041995-08-04 04:20:48 +000047static int orig_argc;
48
Guido van Rossumbceccf52001-04-10 22:07:43 +000049/* command line options */
Christian Heimes8dc226f2008-05-06 23:45:46 +000050#define BASE_OPTS L"bBc:dEhiJm:OsStuvVW:xX?"
Guido van Rossumbceccf52001-04-10 22:07:43 +000051
Guido van Rossumbceccf52001-04-10 22:07:43 +000052#define PROGRAM_OPTS BASE_OPTS
Guido van Rossum3ed4c152001-03-02 06:18:03 +000053
Guido van Rossum667d7041995-08-04 04:20:48 +000054/* Short usage message (with %s for argv0) */
55static char *usage_line =
Martin v. Löwis790465f2008-04-05 20:41:37 +000056"usage: %ls [option] ... [-c cmd | -m mod | file | -] [arg] ...\n";
Guido van Rossum667d7041995-08-04 04:20:48 +000057
58/* Long usage message, split into parts < 512 bytes */
Guido van Rossum393661d2001-08-31 17:40:15 +000059static char *usage_1 = "\
Guido van Rossum667d7041995-08-04 04:20:48 +000060Options and arguments (and corresponding environment variables):\n\
Christian Heimes2ab34442008-09-03 20:31:07 +000061-b : issue warnings about str(bytes_instance), str(bytearray_instance)\n\
62 and comparing bytes/bytearray with str. (-bb: issue errors)\n\
Christian Heimes790c8232008-01-07 21:14:23 +000063-B : don't write .py[co] files on import; also PYTHONDONTWRITEBYTECODE=x\n\
Guido van Rossum393661d2001-08-31 17:40:15 +000064-c cmd : program passed in as string (terminates option list)\n\
Thomas Wouters89f507f2006-12-13 04:49:30 +000065-d : debug output from parser; also PYTHONDEBUG=x\n\
Christian Heimes790c8232008-01-07 21:14:23 +000066-E : ignore PYTHON* environment variables (such as PYTHONPATH)\n\
Thomas Wouters0e3f5912006-08-11 14:57:12 +000067-h : print this help message and exit (also --help)\n\
Guido van Rossum61c345f2001-09-04 03:26:15 +000068";
69static char *usage_2 = "\
Guido van Rossum98297ee2007-11-06 21:34:58 +000070-i : inspect interactively after running script; forces a prompt even\n\
71 if stdin does not appear to be a terminal; also PYTHONINSPECT=x\n\
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +000072-m mod : run library module as a script (terminates option list)\n\
Thomas Wouters89f507f2006-12-13 04:49:30 +000073-O : optimize generated bytecode slightly; also PYTHONOPTIMIZE=x\n\
Guido van Rossum6b86a421999-01-28 15:07:47 +000074-OO : remove doc-strings in addition to the -O optimizations\n\
Christian Heimes8dc226f2008-05-06 23:45:46 +000075-s : don't add user site directory to sys.path; also PYTHONNOUSERSITE\n\
Guido van Rossum7922bd71997-08-29 22:34:47 +000076-S : don't imply 'import site' on initialization\n\
Guido van Rossum393661d2001-08-31 17:40:15 +000077";
78static char *usage_3 = "\
Guido van Rossum98297ee2007-11-06 21:34:58 +000079-u : unbuffered binary stdout and stderr; also PYTHONUNBUFFERED=x\n\
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +000080 see man page for details on internal buffering relating to '-u'\n\
Thomas Wouters89f507f2006-12-13 04:49:30 +000081-v : verbose (trace import statements); also PYTHONVERBOSE=x\n\
82 can be supplied multiple times to increase verbosity\n\
Thomas Wouters0e3f5912006-08-11 14:57:12 +000083-V : print the Python version number and exit (also --version)\n\
Thomas Wouters89f507f2006-12-13 04:49:30 +000084-W arg : warning control; arg is action:message:category:module:lineno\n\
Philip Jenvey0805ca32010-04-07 04:04:10 +000085 also PYTHONWARNINGS=arg\n\
Guido van Rossum393661d2001-08-31 17:40:15 +000086-x : skip first line of source, allowing use of non-Unix forms of #!cmd\n\
Guido van Rossum7922bd71997-08-29 22:34:47 +000087";
Guido van Rossum393661d2001-08-31 17:40:15 +000088static char *usage_4 = "\
Guido van Rossum98297ee2007-11-06 21:34:58 +000089file : program read from script file\n\
90- : program read from stdin (default; interactive mode if a tty)\n\
Thomas Wouters89f507f2006-12-13 04:49:30 +000091arg ...: arguments passed to program in sys.argv[1:]\n\n\
Guido van Rossum667d7041995-08-04 04:20:48 +000092Other environment variables:\n\
93PYTHONSTARTUP: file executed on interactive startup (no default)\n\
Guido van Rossuma075ce11997-12-05 21:56:45 +000094PYTHONPATH : '%c'-separated list of directories prefixed to the\n\
Guido van Rossum667d7041995-08-04 04:20:48 +000095 default module search path. The result is sys.path.\n\
Christian Heimes790c8232008-01-07 21:14:23 +000096";
97static char *usage_5 = "\
Guido van Rossuma075ce11997-12-05 21:56:45 +000098PYTHONHOME : alternate <prefix> directory (or <prefix>%c<exec_prefix>).\n\
99 The default module search path uses %s.\n\
Tim Peters793de092001-02-22 00:39:47 +0000100PYTHONCASEOK : ignore case in 'import' statements (Windows).\n\
Martin v. Löwis0f599892008-06-02 11:13:03 +0000101PYTHONIOENCODING: Encoding[:errors] used for stdin/stdout/stderr.\n\
Guido van Rossum667d7041995-08-04 04:20:48 +0000102";
103
Martin v. Löwis790465f2008-04-05 20:41:37 +0000104#ifndef MS_WINDOWS
105static FILE*
106_wfopen(const wchar_t *path, const wchar_t *mode)
107{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000108 char cpath[PATH_MAX];
109 char cmode[10];
110 size_t r;
111 r = wcstombs(cpath, path, PATH_MAX);
112 if (r == (size_t)-1 || r >= PATH_MAX) {
113 errno = EINVAL;
114 return NULL;
115 }
116 r = wcstombs(cmode, mode, 10);
117 if (r == (size_t)-1 || r >= 10) {
118 errno = EINVAL;
119 return NULL;
120 }
121 return fopen(cpath, cmode);
Martin v. Löwis790465f2008-04-05 20:41:37 +0000122}
123#endif
124
Guido van Rossum667d7041995-08-04 04:20:48 +0000125
Martin v. Löwis852ba7e2003-03-30 17:09:58 +0000126static int
Martin v. Löwis790465f2008-04-05 20:41:37 +0000127usage(int exitcode, wchar_t* program)
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000128{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000129 FILE *f = exitcode ? stderr : stdout;
Guido van Rossum393661d2001-08-31 17:40:15 +0000130
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000131 fprintf(f, usage_line, program);
132 if (exitcode)
133 fprintf(f, "Try `python -h' for more information.\n");
134 else {
135 fputs(usage_1, f);
136 fputs(usage_2, f);
137 fputs(usage_3, f);
138 fprintf(f, usage_4, DELIM);
139 fprintf(f, usage_5, DELIM, PYTHONHOMEHELP);
140 }
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000141#if defined(__VMS)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000142 if (exitcode == 0) {
143 /* suppress 'error' message */
144 return 1;
145 }
146 else {
147 /* STS$M_INHIB_MSG + SS$_ABORT */
148 return 0x1000002c;
149 }
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000150#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000151 return exitcode;
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000152#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000153 /*NOTREACHED*/
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000154}
155
Martin v. Löwis6caea372003-11-18 19:46:25 +0000156static void RunStartupFile(PyCompilerFlags *cf)
157{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000158 char *startup = Py_GETENV("PYTHONSTARTUP");
159 if (startup != NULL && startup[0] != '\0') {
160 FILE *fp = fopen(startup, "r");
161 if (fp != NULL) {
162 (void) PyRun_SimpleFileExFlags(fp, startup, 0, cf);
163 PyErr_Clear();
164 fclose(fp);
165 } else {
166 int save_errno;
167
168 save_errno = errno;
169 PySys_WriteStderr("Could not open PYTHONSTARTUP\n");
170 errno = save_errno;
171 PyErr_SetFromErrnoWithFilename(PyExc_IOError,
172 startup);
173 PyErr_Print();
174 PyErr_Clear();
175 }
176 }
Martin v. Löwis6caea372003-11-18 19:46:25 +0000177}
178
Thomas Woutersa9773292006-04-21 09:43:23 +0000179
Antoine Pitrou5651eaa2008-09-06 20:46:58 +0000180static int RunModule(wchar_t *modname, int set_argv0)
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000181{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000182 PyObject *module, *runpy, *runmodule, *runargs, *result;
183 runpy = PyImport_ImportModule("runpy");
184 if (runpy == NULL) {
185 fprintf(stderr, "Could not import runpy module\n");
186 return -1;
187 }
188 runmodule = PyObject_GetAttrString(runpy, "_run_module_as_main");
189 if (runmodule == NULL) {
190 fprintf(stderr, "Could not access runpy._run_module_as_main\n");
191 Py_DECREF(runpy);
192 return -1;
193 }
194 module = PyUnicode_FromWideChar(modname, wcslen(modname));
195 if (module == NULL) {
196 fprintf(stderr, "Could not convert module name to unicode\n");
197 Py_DECREF(runpy);
198 Py_DECREF(runmodule);
199 return -1;
200 }
201 runargs = Py_BuildValue("(Oi)", module, set_argv0);
202 if (runargs == NULL) {
203 fprintf(stderr,
204 "Could not create arguments for runpy._run_module_as_main\n");
205 Py_DECREF(runpy);
206 Py_DECREF(runmodule);
207 Py_DECREF(module);
208 return -1;
209 }
210 result = PyObject_Call(runmodule, runargs, NULL);
211 if (result == NULL) {
212 PyErr_Print();
213 }
214 Py_DECREF(runpy);
215 Py_DECREF(runmodule);
216 Py_DECREF(module);
217 Py_DECREF(runargs);
218 if (result == NULL) {
219 return -1;
220 }
221 Py_DECREF(result);
222 return 0;
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000223}
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000224
Martin v. Löwis790465f2008-04-05 20:41:37 +0000225static int RunMainFromImporter(wchar_t *filename)
Christian Heimes9cd17752007-11-18 19:35:23 +0000226{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000227 PyObject *argv0 = NULL, *importer = NULL;
Christian Heimes9cd17752007-11-18 19:35:23 +0000228
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000229 if ((argv0 = PyUnicode_FromWideChar(filename,wcslen(filename))) &&
230 (importer = PyImport_GetImporter(argv0)) &&
231 (importer->ob_type != &PyNullImporter_Type))
232 {
233 /* argv0 is usable as an import source, so
234 put it in sys.path[0] and import __main__ */
235 PyObject *sys_path = NULL;
236 if ((sys_path = PySys_GetObject("path")) &&
237 !PyList_SetItem(sys_path, 0, argv0))
238 {
239 Py_INCREF(argv0);
240 Py_DECREF(importer);
241 sys_path = NULL;
242 return RunModule(L"__main__", 0) != 0;
Guido van Rossum74c29c72007-11-19 18:36:41 +0000243 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000244 }
245 Py_XDECREF(argv0);
246 Py_XDECREF(importer);
247 if (PyErr_Occurred()) {
248 PyErr_Print();
249 return 1;
250 }
251 else {
252 return -1;
253 }
Christian Heimes9cd17752007-11-18 19:35:23 +0000254}
255
Victor Stinnera62207c2010-08-07 10:57:17 +0000256static int
257run_command(wchar_t *command, PyCompilerFlags *cf)
258{
259 PyObject *unicode, *bytes;
260 int ret;
261
262 unicode = PyUnicode_FromWideChar(command, -1);
263 if (unicode == NULL)
264 goto error;
265 bytes = PyUnicode_AsUTF8String(unicode);
266 Py_DECREF(unicode);
267 if (bytes == NULL)
268 goto error;
269 ret = PyRun_SimpleStringFlags(PyBytes_AsString(bytes), cf);
270 Py_DECREF(bytes);
271 return ret != 0;
272
273error:
274 PyErr_Print();
275 return 1;
276}
277
Christian Heimes9cd17752007-11-18 19:35:23 +0000278
Guido van Rossum667d7041995-08-04 04:20:48 +0000279/* Main program */
280
Mark Hammondfe51c6d2002-08-02 02:27:13 +0000281int
Martin v. Löwis790465f2008-04-05 20:41:37 +0000282Py_Main(int argc, wchar_t **argv)
Guido van Rossum667d7041995-08-04 04:20:48 +0000283{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000284 int c;
285 int sts;
286 wchar_t *command = NULL;
287 wchar_t *filename = NULL;
288 wchar_t *module = NULL;
289 FILE *fp = stdin;
290 char *p;
Philip Jenveye53de3d2010-04-14 03:01:39 +0000291#ifdef MS_WINDOWS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000292 wchar_t *wp;
Philip Jenveye53de3d2010-04-14 03:01:39 +0000293#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000294 int skipfirstline = 0;
295 int stdin_is_interactive = 0;
296 int help = 0;
297 int version = 0;
298 int saw_unbuffered_flag = 0;
299 PyCompilerFlags cf;
Guido van Rossum667d7041995-08-04 04:20:48 +0000300
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000301 cf.cf_flags = 0;
Guido van Rossum393661d2001-08-31 17:40:15 +0000302
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000303 orig_argc = argc; /* For Py_GetArgcArgv() */
304 orig_argv = argv;
Guido van Rossum667d7041995-08-04 04:20:48 +0000305
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000306 PySys_ResetWarnOptions();
Guido van Rossum47f5fdc2000-12-15 22:00:54 +0000307
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000308 while ((c = _PyOS_GetOpt(argc, argv, PROGRAM_OPTS)) != EOF) {
309 if (c == 'c') {
310 size_t len;
311 /* -c is the last option; following arguments
312 that look like options are left for the
313 command to interpret. */
Amaury Forgeot d'Arc9a5499b2008-11-11 23:04:59 +0000314
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000315 len = wcslen(_PyOS_optarg) + 1 + 1;
316 command = (wchar_t *)malloc(sizeof(wchar_t) * len);
317 if (command == NULL)
318 Py_FatalError(
319 "not enough memory to copy -c argument");
320 wcscpy(command, _PyOS_optarg);
321 command[len - 2] = '\n';
322 command[len - 1] = 0;
323 break;
324 }
Guido van Rossum393661d2001-08-31 17:40:15 +0000325
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000326 if (c == 'm') {
327 /* -m is the last option; following arguments
328 that look like options are left for the
329 module to interpret. */
330 module = _PyOS_optarg;
331 break;
332 }
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000333
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000334 switch (c) {
335 case 'b':
336 Py_BytesWarningFlag++;
337 break;
Guido van Rossum667d7041995-08-04 04:20:48 +0000338
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000339 case 'd':
340 Py_DebugFlag++;
341 break;
Guido van Rossum667d7041995-08-04 04:20:48 +0000342
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000343 case 'i':
344 Py_InspectFlag++;
345 Py_InteractiveFlag++;
346 break;
Guido van Rossum667d7041995-08-04 04:20:48 +0000347
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000348 /* case 'J': reserved for Jython */
Christian Heimes33fe8092008-04-13 13:53:33 +0000349
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000350 case 'O':
351 Py_OptimizeFlag++;
352 break;
Guido van Rossum7614da61997-03-03 19:14:45 +0000353
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000354 case 'B':
355 Py_DontWriteBytecodeFlag++;
356 break;
Christian Heimes790c8232008-01-07 21:14:23 +0000357
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000358 case 's':
359 Py_NoUserSiteDirectory++;
360 break;
Christian Heimes8dc226f2008-05-06 23:45:46 +0000361
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000362 case 'S':
363 Py_NoSiteFlag++;
364 break;
Guido van Rossum7922bd71997-08-29 22:34:47 +0000365
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000366 case 'E':
367 Py_IgnoreEnvironmentFlag++;
368 break;
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000369
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000370 case 't':
371 /* ignored for backwards compatibility */
372 break;
Guido van Rossumbba92ca1998-04-10 19:39:15 +0000373
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000374 case 'u':
375 Py_UnbufferedStdioFlag = 1;
376 saw_unbuffered_flag = 1;
377 break;
Guido van Rossum667d7041995-08-04 04:20:48 +0000378
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000379 case 'v':
380 Py_VerboseFlag++;
381 break;
Guido van Rossum667d7041995-08-04 04:20:48 +0000382
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000383 case 'x':
384 skipfirstline = 1;
385 break;
Guido van Rossuma075ce11997-12-05 21:56:45 +0000386
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000387 /* case 'X': reserved for implementation-specific arguments */
Christian Heimes33fe8092008-04-13 13:53:33 +0000388
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000389 case 'h':
390 case '?':
391 help++;
392 break;
Guido van Rossum45aecf42006-03-15 04:58:47 +0000393
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000394 case 'V':
395 version++;
396 break;
Guido van Rossumc15a9a12000-05-01 17:54:33 +0000397
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000398 case 'W':
399 PySys_AddWarnOption(_PyOS_optarg);
400 break;
Guido van Rossum47f5fdc2000-12-15 22:00:54 +0000401
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000402 /* This space reserved for other options */
Guido van Rossum667d7041995-08-04 04:20:48 +0000403
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000404 default:
405 return usage(2, argv[0]);
406 /*NOTREACHED*/
Guido van Rossum667d7041995-08-04 04:20:48 +0000407
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000408 }
409 }
Guido van Rossum667d7041995-08-04 04:20:48 +0000410
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000411 if (help)
412 return usage(0, argv[0]);
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000413
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000414 if (version) {
415 fprintf(stderr, "Python %s\n", PY_VERSION);
416 return 0;
417 }
Barry Warsaw3b2aedb2000-09-15 18:40:42 +0000418
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000419 if (!Py_InspectFlag &&
420 (p = Py_GETENV("PYTHONINSPECT")) && *p != '\0')
421 Py_InspectFlag = 1;
422 if (!saw_unbuffered_flag &&
423 (p = Py_GETENV("PYTHONUNBUFFERED")) && *p != '\0')
424 Py_UnbufferedStdioFlag = 1;
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +0000425
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000426 if (!Py_NoUserSiteDirectory &&
427 (p = Py_GETENV("PYTHONNOUSERSITE")) && *p != '\0')
428 Py_NoUserSiteDirectory = 1;
Christian Heimes8dc226f2008-05-06 23:45:46 +0000429
Philip Jenveye53de3d2010-04-14 03:01:39 +0000430#ifdef MS_WINDOWS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000431 if (!Py_IgnoreEnvironmentFlag && (wp = _wgetenv(L"PYTHONWARNINGS")) &&
432 *wp != L'\0') {
433 wchar_t *buf, *warning;
Philip Jenvey0805ca32010-04-07 04:04:10 +0000434
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000435 buf = (wchar_t *)malloc((wcslen(wp) + 1) * sizeof(wchar_t));
436 if (buf == NULL)
437 Py_FatalError(
438 "not enough memory to copy PYTHONWARNINGS");
439 wcscpy(buf, wp);
440 for (warning = wcstok(buf, L",");
441 warning != NULL;
442 warning = wcstok(NULL, L",")) {
443 PySys_AddWarnOption(warning);
444 }
445 free(buf);
446 }
Philip Jenveye53de3d2010-04-14 03:01:39 +0000447#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000448 if ((p = Py_GETENV("PYTHONWARNINGS")) && *p != '\0') {
449 char *buf, *oldloc;
Victor Stinner9ca9c252010-05-19 16:53:30 +0000450 PyObject *warning;
Philip Jenveye53de3d2010-04-14 03:01:39 +0000451
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000452 /* settle for strtok here as there's no one standard
453 C89 wcstok */
454 buf = (char *)malloc(strlen(p) + 1);
455 if (buf == NULL)
456 Py_FatalError(
457 "not enough memory to copy PYTHONWARNINGS");
458 strcpy(buf, p);
459 oldloc = strdup(setlocale(LC_ALL, NULL));
460 setlocale(LC_ALL, "");
461 for (p = strtok(buf, ","); p != NULL; p = strtok(NULL, ",")) {
Victor Stinner9ca9c252010-05-19 16:53:30 +0000462 warning = PyUnicode_DecodeFSDefault(p);
463 if (warning != NULL) {
464 PySys_AddWarnOptionUnicode(warning);
465 Py_DECREF(warning);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000466 }
467 }
468 setlocale(LC_ALL, oldloc);
469 free(oldloc);
470 free(buf);
471 }
Philip Jenveye53de3d2010-04-14 03:01:39 +0000472#endif
Philip Jenvey0805ca32010-04-07 04:04:10 +0000473
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000474 if (command == NULL && module == NULL && _PyOS_optind < argc &&
475 wcscmp(argv[_PyOS_optind], L"-") != 0)
476 {
Martin v. Löwis7a924e62003-03-05 14:15:21 +0000477#ifdef __VMS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000478 filename = decc$translate_vms(argv[_PyOS_optind]);
479 if (filename == (char *)0 || filename == (char *)-1)
480 filename = argv[_PyOS_optind];
Martin v. Löwis7a924e62003-03-05 14:15:21 +0000481
482#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000483 filename = argv[_PyOS_optind];
Martin v. Löwis7a924e62003-03-05 14:15:21 +0000484#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000485 }
Guido van Rossum775af911997-02-14 19:50:32 +0000486
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000487 stdin_is_interactive = Py_FdIsInteractive(stdin, (char *)0);
Guido van Rossum775af911997-02-14 19:50:32 +0000488
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000489 if (Py_UnbufferedStdioFlag) {
Sjoerd Mullender9cf424b2002-08-09 13:35:18 +0000490#if defined(MS_WINDOWS) || defined(__CYGWIN__)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000491 _setmode(fileno(stdin), O_BINARY);
492 _setmode(fileno(stdout), O_BINARY);
Guido van Rossumf22d7e21997-01-11 19:28:55 +0000493#endif
Guido van Rossum22ffac11998-03-06 15:30:39 +0000494#ifdef HAVE_SETVBUF
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000495 setvbuf(stdin, (char *)NULL, _IONBF, BUFSIZ);
496 setvbuf(stdout, (char *)NULL, _IONBF, BUFSIZ);
497 setvbuf(stderr, (char *)NULL, _IONBF, BUFSIZ);
Guido van Rossum22ffac11998-03-06 15:30:39 +0000498#else /* !HAVE_SETVBUF */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000499 setbuf(stdin, (char *)NULL);
500 setbuf(stdout, (char *)NULL);
501 setbuf(stderr, (char *)NULL);
Guido van Rossum22ffac11998-03-06 15:30:39 +0000502#endif /* !HAVE_SETVBUF */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000503 }
504 else if (Py_InteractiveFlag) {
Guido van Rossumb31c7dc1997-04-11 22:19:12 +0000505#ifdef MS_WINDOWS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000506 /* Doesn't have to have line-buffered -- use unbuffered */
507 /* Any set[v]buf(stdin, ...) screws up Tkinter :-( */
508 setvbuf(stdout, (char *)NULL, _IONBF, BUFSIZ);
Guido van Rossum22ffac11998-03-06 15:30:39 +0000509#else /* !MS_WINDOWS */
510#ifdef HAVE_SETVBUF
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000511 setvbuf(stdin, (char *)NULL, _IOLBF, BUFSIZ);
512 setvbuf(stdout, (char *)NULL, _IOLBF, BUFSIZ);
Guido van Rossum22ffac11998-03-06 15:30:39 +0000513#endif /* HAVE_SETVBUF */
514#endif /* !MS_WINDOWS */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000515 /* Leave stderr alone - it should be unbuffered anyway. */
516 }
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000517#ifdef __VMS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000518 else {
519 setvbuf (stdout, (char *)NULL, _IOLBF, BUFSIZ);
520 }
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000521#endif /* __VMS */
Guido van Rossum667d7041995-08-04 04:20:48 +0000522
Just van Rossum2ac79ef2003-03-05 15:46:54 +0000523#ifdef __APPLE__
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000524 /* On MacOS X, when the Python interpreter is embedded in an
525 application bundle, it gets executed by a bootstrapping script
526 that does os.execve() with an argv[0] that's different from the
527 actual Python executable. This is needed to keep the Finder happy,
528 or rather, to work around Apple's overly strict requirements of
529 the process name. However, we still need a usable sys.executable,
530 so the actual executable path is passed in an environment variable.
531 See Lib/plat-mac/bundlebuiler.py for details about the bootstrap
532 script. */
533 if ((p = Py_GETENV("PYTHONEXECUTABLE")) && *p != '\0') {
534 wchar_t* buffer;
535 size_t len = strlen(p);
536 size_t r;
Ronald Oussoren3e264e12009-02-12 15:55:38 +0000537
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000538 buffer = malloc(len * sizeof(wchar_t));
539 if (buffer == NULL) {
540 Py_FatalError(
541 "not enough memory to copy PYTHONEXECUTABLE");
542 }
Ronald Oussoren3e264e12009-02-12 15:55:38 +0000543
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000544 r = mbstowcs(buffer, p, len);
545 Py_SetProgramName(buffer);
546 /* buffer is now handed off - do not free */
547 } else {
548 Py_SetProgramName(argv[0]);
549 }
Just van Rossum2ac79ef2003-03-05 15:46:54 +0000550#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000551 Py_SetProgramName(argv[0]);
Jack Jansenfbd861b2003-03-05 16:00:15 +0000552#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000553 Py_Initialize();
Guido van Rossumed52aac1997-07-19 19:20:32 +0000554
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000555 if (Py_VerboseFlag ||
556 (command == NULL && filename == NULL && module == NULL && stdin_is_interactive)) {
557 fprintf(stderr, "Python %s on %s\n",
558 Py_GetVersion(), Py_GetPlatform());
559 if (!Py_NoSiteFlag)
560 fprintf(stderr, "%s\n", COPYRIGHT);
561 }
Guido van Rossum393661d2001-08-31 17:40:15 +0000562
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000563 if (command != NULL) {
564 /* Backup _PyOS_optind and force sys.argv[0] = '-c' */
565 _PyOS_optind--;
566 argv[_PyOS_optind] = L"-c";
567 }
Guido van Rossum667d7041995-08-04 04:20:48 +0000568
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000569 if (module != NULL) {
570 /* Backup _PyOS_optind and force sys.argv[0] = '-c'
571 so that PySys_SetArgv correctly sets sys.path[0] to ''*/
572 _PyOS_optind--;
573 argv[_PyOS_optind] = L"-c";
574 }
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +0000575
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000576 PySys_SetArgv(argc-_PyOS_optind, argv+_PyOS_optind);
Guido van Rossum667d7041995-08-04 04:20:48 +0000577
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000578 if ((Py_InspectFlag || (command == NULL && filename == NULL && module == NULL)) &&
579 isatty(fileno(stdin))) {
580 PyObject *v;
581 v = PyImport_ImportModule("readline");
582 if (v == NULL)
583 PyErr_Clear();
584 else
585 Py_DECREF(v);
586 }
Guido van Rossum3d26cc91997-09-16 16:11:28 +0000587
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000588 if (command) {
Victor Stinnera62207c2010-08-07 10:57:17 +0000589 sts = run_command(command, &cf);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000590 free(command);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000591 } else if (module) {
592 sts = RunModule(module, 1);
593 }
594 else {
Christian Heimes9cd17752007-11-18 19:35:23 +0000595
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000596 if (filename == NULL && stdin_is_interactive) {
597 Py_InspectFlag = 0; /* do exit on SystemExit */
598 RunStartupFile(&cf);
599 }
600 /* XXX */
Christian Heimes9cd17752007-11-18 19:35:23 +0000601
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000602 sts = -1; /* keep track of whether we've already run __main__ */
Christian Heimes9cd17752007-11-18 19:35:23 +0000603
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000604 if (filename != NULL) {
605 sts = RunMainFromImporter(filename);
606 }
Christian Heimes9cd17752007-11-18 19:35:23 +0000607
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000608 if (sts==-1 && filename!=NULL) {
609 if ((fp = _wfopen(filename, L"r")) == NULL) {
610 char cfilename[PATH_MAX];
611 size_t r = wcstombs(cfilename, filename, PATH_MAX);
612 if (r == PATH_MAX)
613 /* cfilename is not null-terminated;
614 * forcefully null-terminating it
615 * might break the shift state */
616 strcpy(cfilename, "<file name too long>");
617 if (r == ((size_t)-1))
618 strcpy(cfilename, "<unprintable file name>");
619 fprintf(stderr, "%ls: can't open file '%s': [Errno %d] %s\n",
620 argv[0], cfilename, errno, strerror(errno));
Christian Heimesada8c3b2008-03-18 18:26:33 +0000621
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000622 return 2;
623 }
624 else if (skipfirstline) {
625 int ch;
626 /* Push back first newline so line numbers
627 remain the same */
628 while ((ch = getc(fp)) != EOF) {
629 if (ch == '\n') {
630 (void)ungetc(ch, fp);
631 break;
632 }
633 }
634 }
635 {
636 /* XXX: does this work on Win/Win64? (see posix_fstat) */
637 struct stat sb;
638 if (fstat(fileno(fp), &sb) == 0 &&
639 S_ISDIR(sb.st_mode)) {
640 fprintf(stderr, "%ls: '%ls' is a directory, cannot continue\n", argv[0], filename);
641 fclose(fp);
642 return 1;
643 }
644 }
645 }
Christian Heimes9cd17752007-11-18 19:35:23 +0000646
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000647 if (sts==-1) {
648 PyObject *filenameObj = NULL;
649 char *p_cfilename = "<stdin>";
650 if (filename) {
651 filenameObj = PyUnicode_FromWideChar(
652 filename, wcslen(filename));
653 if (filenameObj != NULL)
654 p_cfilename = _PyUnicode_AsString(filenameObj);
655 else
656 p_cfilename = "<decoding error>";
657 }
658 /* call pending calls like signal handlers (SIGINT) */
659 if (Py_MakePendingCalls() == -1) {
660 PyErr_Print();
661 sts = 1;
662 } else {
663 sts = PyRun_AnyFileExFlags(
664 fp,
665 p_cfilename,
666 filename != NULL, &cf) != 0;
667 }
668 Py_XDECREF(filenameObj);
669 }
Guido van Rossum667d7041995-08-04 04:20:48 +0000670
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000671 }
Barry Warsawd86dcd32003-06-29 17:07:06 +0000672
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000673 /* Check this environment variable at the end, to give programs the
674 * opportunity to set it from Python.
675 */
676 if (!Py_InspectFlag &&
677 (p = Py_GETENV("PYTHONINSPECT")) && *p != '\0')
678 {
679 Py_InspectFlag = 1;
680 }
Guido van Rossum667d7041995-08-04 04:20:48 +0000681
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000682 if (Py_InspectFlag && stdin_is_interactive &&
683 (filename != NULL || command != NULL || module != NULL)) {
684 Py_InspectFlag = 0;
685 /* XXX */
686 sts = PyRun_AnyFileFlags(stdin, "<stdin>", &cf) != 0;
687 }
688
689 Py_Finalize();
Barry Warsaw3e13b1e2001-02-23 16:46:39 +0000690
691#ifdef __INSURE__
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000692 /* Insure++ is a memory analysis tool that aids in discovering
693 * memory leaks and other memory problems. On Python exit, the
694 * interned string dictionaries are flagged as being in use at exit
695 * (which it is). Under normal circumstances, this is fine because
696 * the memory will be automatically reclaimed by the system. Under
697 * memory debugging, it's a huge source of useless noise, so we
698 * trade off slower shutdown for less distraction in the memory
699 * reports. -baw
700 */
701 _Py_ReleaseInternedStrings();
702 _Py_ReleaseInternedUnicodeStrings();
Barry Warsaw3e13b1e2001-02-23 16:46:39 +0000703#endif /* __INSURE__ */
704
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000705 return sts;
Guido van Rossum667d7041995-08-04 04:20:48 +0000706}
707
Skip Montanaro786ea6b2004-03-01 15:44:05 +0000708/* this is gonna seem *real weird*, but if you put some other code between
709 Py_Main() and Py_GetArgcArgv() you will need to adjust the test in the
710 while statement in Misc/gdbinit:ppystack */
Guido van Rossum667d7041995-08-04 04:20:48 +0000711
Guido van Rossum667d7041995-08-04 04:20:48 +0000712/* Make the *original* argc/argv available to other modules.
713 This is rare, but it is needed by the secureware extension. */
714
715void
Martin v. Löwis790465f2008-04-05 20:41:37 +0000716Py_GetArgcArgv(int *argc, wchar_t ***argv)
Guido van Rossum667d7041995-08-04 04:20:48 +0000717{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000718 *argc = orig_argc;
719 *argv = orig_argv;
Guido van Rossum667d7041995-08-04 04:20:48 +0000720}
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000721
Ronald Oussorend61deca2010-04-18 14:46:12 +0000722
723wchar_t*
724_Py_char2wchar(char* arg)
725{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000726 wchar_t *res;
Ronald Oussorend61deca2010-04-18 14:46:12 +0000727#ifdef HAVE_BROKEN_MBSTOWCS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000728 /* Some platforms have a broken implementation of
729 * mbstowcs which does not count the characters that
730 * would result from conversion. Use an upper bound.
731 */
732 size_t argsize = strlen(arg);
Ronald Oussorend61deca2010-04-18 14:46:12 +0000733#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000734 size_t argsize = mbstowcs(NULL, arg, 0);
Ronald Oussorend61deca2010-04-18 14:46:12 +0000735#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000736 size_t count;
737 unsigned char *in;
738 wchar_t *out;
Ronald Oussorend61deca2010-04-18 14:46:12 +0000739#ifdef HAVE_MBRTOWC
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000740 mbstate_t mbs;
Ronald Oussorend61deca2010-04-18 14:46:12 +0000741#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000742 if (argsize != (size_t)-1) {
743 res = (wchar_t *)PyMem_Malloc((argsize+1)*sizeof(wchar_t));
744 if (!res)
745 goto oom;
746 count = mbstowcs(res, arg, argsize+1);
747 if (count != (size_t)-1) {
748 wchar_t *tmp;
749 /* Only use the result if it contains no
750 surrogate characters. */
751 for (tmp = res; *tmp != 0 &&
752 (*tmp < 0xd800 || *tmp > 0xdfff); tmp++)
753 ;
754 if (*tmp == 0)
755 return res;
756 }
757 PyMem_Free(res);
758 }
759 /* Conversion failed. Fall back to escaping with surrogateescape. */
Ronald Oussorend61deca2010-04-18 14:46:12 +0000760#ifdef HAVE_MBRTOWC
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000761 /* Try conversion with mbrtwoc (C99), and escape non-decodable bytes. */
762
763 /* Overallocate; as multi-byte characters are in the argument, the
764 actual output could use less memory. */
765 argsize = strlen(arg) + 1;
766 res = (wchar_t*)PyMem_Malloc(argsize*sizeof(wchar_t));
767 if (!res) goto oom;
768 in = (unsigned char*)arg;
769 out = res;
770 memset(&mbs, 0, sizeof mbs);
771 while (argsize) {
772 size_t converted = mbrtowc(out, (char*)in, argsize, &mbs);
773 if (converted == 0)
774 /* Reached end of string; null char stored. */
775 break;
776 if (converted == (size_t)-2) {
777 /* Incomplete character. This should never happen,
778 since we provide everything that we have -
779 unless there is a bug in the C library, or I
780 misunderstood how mbrtowc works. */
781 fprintf(stderr, "unexpected mbrtowc result -2\n");
782 return NULL;
783 }
784 if (converted == (size_t)-1) {
785 /* Conversion error. Escape as UTF-8b, and start over
786 in the initial shift state. */
787 *out++ = 0xdc00 + *in++;
788 argsize--;
789 memset(&mbs, 0, sizeof mbs);
790 continue;
791 }
792 if (*out >= 0xd800 && *out <= 0xdfff) {
793 /* Surrogate character. Escape the original
794 byte sequence with surrogateescape. */
795 argsize -= converted;
796 while (converted--)
797 *out++ = 0xdc00 + *in++;
798 continue;
799 }
800 /* successfully converted some bytes */
801 in += converted;
802 argsize -= converted;
803 out++;
804 }
Ronald Oussorend61deca2010-04-18 14:46:12 +0000805#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000806 /* Cannot use C locale for escaping; manually escape as if charset
807 is ASCII (i.e. escape all bytes > 128. This will still roundtrip
808 correctly in the locale's charset, which must be an ASCII superset. */
809 res = PyMem_Malloc((strlen(arg)+1)*sizeof(wchar_t));
810 if (!res) goto oom;
811 in = (unsigned char*)arg;
812 out = res;
813 while(*in)
814 if(*in < 128)
815 *out++ = *in++;
816 else
817 *out++ = 0xdc00 + *in++;
818 *out = 0;
Ronald Oussorend61deca2010-04-18 14:46:12 +0000819#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000820 return res;
Ronald Oussorend61deca2010-04-18 14:46:12 +0000821oom:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000822 fprintf(stderr, "out of memory\n");
823 return NULL;
Ronald Oussorend61deca2010-04-18 14:46:12 +0000824}
825
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000826#ifdef __cplusplus
827}
828#endif