Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 1 | /* Python interpreter main program */ |
| 2 | |
| 3 | #include "Python.h" |
Guido van Rossum | a075ce1 | 1997-12-05 21:56:45 +0000 | [diff] [blame] | 4 | #include "osdefs.h" |
Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 5 | |
Antoine Pitrou | 5651eaa | 2008-09-06 20:46:58 +0000 | [diff] [blame] | 6 | #include <locale.h> |
| 7 | |
Sjoerd Mullender | 9cf424b | 2002-08-09 13:35:18 +0000 | [diff] [blame] | 8 | #if defined(MS_WINDOWS) || defined(__CYGWIN__) |
Martin v. Löwis | 945362c | 2007-08-30 14:57:25 +0000 | [diff] [blame] | 9 | #include <windows.h> |
Steve Dower | bfce0f9 | 2016-12-28 15:41:09 -0800 | [diff] [blame] | 10 | #ifdef HAVE_IO_H |
| 11 | #include <io.h> |
| 12 | #endif |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 13 | #ifdef HAVE_FCNTL_H |
Guido van Rossum | 3e7ae7a | 1997-01-17 22:05:38 +0000 | [diff] [blame] | 14 | #include <fcntl.h> |
| 15 | #endif |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 16 | #endif |
Guido van Rossum | 3e7ae7a | 1997-01-17 22:05:38 +0000 | [diff] [blame] | 17 | |
Martin v. Löwis | 945362c | 2007-08-30 14:57:25 +0000 | [diff] [blame] | 18 | #ifdef _MSC_VER |
| 19 | #include <crtdbg.h> |
| 20 | #endif |
| 21 | |
Jesus Cea | ab70e2a | 2012-10-05 01:48:08 +0200 | [diff] [blame] | 22 | #if defined(MS_WINDOWS) |
Guido van Rossum | a075ce1 | 1997-12-05 21:56:45 +0000 | [diff] [blame] | 23 | #define PYTHONHOMEHELP "<prefix>\\lib" |
| 24 | #else |
Marc-André Lemburg | da4dbc3 | 2001-06-12 16:13:51 +0000 | [diff] [blame] | 25 | #define PYTHONHOMEHELP "<prefix>/pythonX.X" |
Guido van Rossum | a075ce1 | 1997-12-05 21:56:45 +0000 | [diff] [blame] | 26 | #endif |
| 27 | |
Thomas Wouters | 2cffc7d | 2000-11-03 08:18:37 +0000 | [diff] [blame] | 28 | #include "pygetopt.h" |
| 29 | |
Guido van Rossum | a22865e | 2000-09-05 04:41:18 +0000 | [diff] [blame] | 30 | #define COPYRIGHT \ |
Guido van Rossum | 36002d7 | 2001-07-18 16:59:46 +0000 | [diff] [blame] | 31 | "Type \"help\", \"copyright\", \"credits\" or \"license\" " \ |
| 32 | "for more information." |
Guido van Rossum | a22865e | 2000-09-05 04:41:18 +0000 | [diff] [blame] | 33 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 34 | #ifdef __cplusplus |
| 35 | extern "C" { |
| 36 | #endif |
| 37 | |
Guido van Rossum | ac56b03 | 1996-07-21 02:33:38 +0000 | [diff] [blame] | 38 | /* For Py_GetArgcArgv(); set by main() */ |
Martin v. Löwis | 790465f | 2008-04-05 20:41:37 +0000 | [diff] [blame] | 39 | static wchar_t **orig_argv; |
Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 40 | static int orig_argc; |
| 41 | |
Guido van Rossum | bceccf5 | 2001-04-10 22:07:43 +0000 | [diff] [blame] | 42 | /* command line options */ |
Christian Heimes | ad73a9c | 2013-08-10 16:36:18 +0200 | [diff] [blame] | 43 | #define BASE_OPTS L"bBc:dEhiIJm:OqRsStuvVW:xX:?" |
Guido van Rossum | bceccf5 | 2001-04-10 22:07:43 +0000 | [diff] [blame] | 44 | |
Guido van Rossum | bceccf5 | 2001-04-10 22:07:43 +0000 | [diff] [blame] | 45 | #define PROGRAM_OPTS BASE_OPTS |
Guido van Rossum | 3ed4c15 | 2001-03-02 06:18:03 +0000 | [diff] [blame] | 46 | |
Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 47 | /* Short usage message (with %s for argv0) */ |
Serhiy Storchaka | 2d06e84 | 2015-12-25 19:53:18 +0200 | [diff] [blame] | 48 | static const char usage_line[] = |
Martin v. Löwis | 790465f | 2008-04-05 20:41:37 +0000 | [diff] [blame] | 49 | "usage: %ls [option] ... [-c cmd | -m mod | file | -] [arg] ...\n"; |
Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 50 | |
| 51 | /* Long usage message, split into parts < 512 bytes */ |
Serhiy Storchaka | 2d06e84 | 2015-12-25 19:53:18 +0200 | [diff] [blame] | 52 | static const char usage_1[] = "\ |
Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 53 | Options and arguments (and corresponding environment variables):\n\ |
Christian Heimes | 2ab3444 | 2008-09-03 20:31:07 +0000 | [diff] [blame] | 54 | -b : issue warnings about str(bytes_instance), str(bytearray_instance)\n\ |
| 55 | and comparing bytes/bytearray with str. (-bb: issue errors)\n\ |
Xiang Zhang | 0710d75 | 2017-03-11 13:02:52 +0800 | [diff] [blame] | 56 | -B : don't write .pyc files on import; also PYTHONDONTWRITEBYTECODE=x\n\ |
Guido van Rossum | 393661d | 2001-08-31 17:40:15 +0000 | [diff] [blame] | 57 | -c cmd : program passed in as string (terminates option list)\n\ |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 58 | -d : debug output from parser; also PYTHONDEBUG=x\n\ |
Christian Heimes | 790c823 | 2008-01-07 21:14:23 +0000 | [diff] [blame] | 59 | -E : ignore PYTHON* environment variables (such as PYTHONPATH)\n\ |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 60 | -h : print this help message and exit (also --help)\n\ |
Guido van Rossum | 61c345f | 2001-09-04 03:26:15 +0000 | [diff] [blame] | 61 | "; |
Serhiy Storchaka | 2d06e84 | 2015-12-25 19:53:18 +0200 | [diff] [blame] | 62 | static const char usage_2[] = "\ |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 63 | -i : inspect interactively after running script; forces a prompt even\n\ |
| 64 | if stdin does not appear to be a terminal; also PYTHONINSPECT=x\n\ |
Christian Heimes | ad73a9c | 2013-08-10 16:36:18 +0200 | [diff] [blame] | 65 | -I : isolate Python from the user's environment (implies -E and -s)\n\ |
Raymond Hettinger | db29e0f | 2004-10-07 06:46:25 +0000 | [diff] [blame] | 66 | -m mod : run library module as a script (terminates option list)\n\ |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 67 | -O : optimize generated bytecode slightly; also PYTHONOPTIMIZE=x\n\ |
Guido van Rossum | 6b86a42 | 1999-01-28 15:07:47 +0000 | [diff] [blame] | 68 | -OO : remove doc-strings in addition to the -O optimizations\n\ |
Georg Brandl | 9d87119 | 2010-12-04 10:47:18 +0000 | [diff] [blame] | 69 | -q : don't print version and copyright messages on interactive startup\n\ |
Christian Heimes | 8dc226f | 2008-05-06 23:45:46 +0000 | [diff] [blame] | 70 | -s : don't add user site directory to sys.path; also PYTHONNOUSERSITE\n\ |
Guido van Rossum | 7922bd7 | 1997-08-29 22:34:47 +0000 | [diff] [blame] | 71 | -S : don't imply 'import site' on initialization\n\ |
Guido van Rossum | 393661d | 2001-08-31 17:40:15 +0000 | [diff] [blame] | 72 | "; |
Serhiy Storchaka | 2d06e84 | 2015-12-25 19:53:18 +0200 | [diff] [blame] | 73 | static const char usage_3[] = "\ |
Berker Peksag | 7f58097 | 2017-10-13 15:16:31 +0300 | [diff] [blame] | 74 | -u : force the stdout and stderr streams to be unbuffered;\n\ |
| 75 | this option has no effect on stdin; also PYTHONUNBUFFERED=x\n\ |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 76 | -v : verbose (trace import statements); also PYTHONVERBOSE=x\n\ |
| 77 | can be supplied multiple times to increase verbosity\n\ |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 78 | -V : print the Python version number and exit (also --version)\n\ |
INADA Naoki | 0e175a6 | 2016-11-21 20:57:14 +0900 | [diff] [blame] | 79 | when given twice, print more information about the build\n\ |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 80 | -W arg : warning control; arg is action:message:category:module:lineno\n\ |
Philip Jenvey | 0805ca3 | 2010-04-07 04:04:10 +0000 | [diff] [blame] | 81 | also PYTHONWARNINGS=arg\n\ |
Guido van Rossum | 393661d | 2001-08-31 17:40:15 +0000 | [diff] [blame] | 82 | -x : skip first line of source, allowing use of non-Unix forms of #!cmd\n\ |
Antoine Pitrou | 9583cac | 2010-10-21 13:42:28 +0000 | [diff] [blame] | 83 | -X opt : set implementation-specific option\n\ |
Guido van Rossum | 7922bd7 | 1997-08-29 22:34:47 +0000 | [diff] [blame] | 84 | "; |
Serhiy Storchaka | 2d06e84 | 2015-12-25 19:53:18 +0200 | [diff] [blame] | 85 | static const char usage_4[] = "\ |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 86 | file : program read from script file\n\ |
| 87 | - : program read from stdin (default; interactive mode if a tty)\n\ |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 88 | arg ...: arguments passed to program in sys.argv[1:]\n\n\ |
Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 89 | Other environment variables:\n\ |
| 90 | PYTHONSTARTUP: file executed on interactive startup (no default)\n\ |
Serhiy Storchaka | 1ba0161 | 2015-12-30 09:28:19 +0200 | [diff] [blame] | 91 | PYTHONPATH : '%lc'-separated list of directories prefixed to the\n\ |
Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 92 | default module search path. The result is sys.path.\n\ |
Christian Heimes | 790c823 | 2008-01-07 21:14:23 +0000 | [diff] [blame] | 93 | "; |
Serhiy Storchaka | 2d06e84 | 2015-12-25 19:53:18 +0200 | [diff] [blame] | 94 | static const char usage_5[] = |
Serhiy Storchaka | 1ba0161 | 2015-12-30 09:28:19 +0200 | [diff] [blame] | 95 | "PYTHONHOME : alternate <prefix> directory (or <prefix>%lc<exec_prefix>).\n" |
Victor Stinner | 9802b39 | 2010-08-19 11:36:43 +0000 | [diff] [blame] | 96 | " The default module search path uses %s.\n" |
| 97 | "PYTHONCASEOK : ignore case in 'import' statements (Windows).\n" |
| 98 | "PYTHONIOENCODING: Encoding[:errors] used for stdin/stdout/stderr.\n" |
Victor Stinner | 34be807c | 2016-03-14 12:04:26 +0100 | [diff] [blame] | 99 | "PYTHONFAULTHANDLER: dump the Python traceback on fatal errors.\n"; |
| 100 | static const char usage_6[] = |
| 101 | "PYTHONHASHSEED: if this variable is set to 'random', a random value is used\n" |
| 102 | " to seed the hashes of str, bytes and datetime objects. It can also be\n" |
| 103 | " set to an integer in the range [0,4294967295] to get hash values with a\n" |
| 104 | " predictable seed.\n" |
| 105 | "PYTHONMALLOC: set the Python memory allocators and/or install debug hooks\n" |
| 106 | " on Python memory allocators. Use PYTHONMALLOC=debug to install debug\n" |
Nick Coghlan | eb81795 | 2017-06-18 12:29:42 +1000 | [diff] [blame] | 107 | " hooks.\n" |
Stéphane Wirtel | 7d1017d | 2017-06-12 13:30:33 +0200 | [diff] [blame] | 108 | "PYTHONCOERCECLOCALE: if this variable is set to 0, it disables the locale\n" |
Nick Coghlan | eb81795 | 2017-06-18 12:29:42 +1000 | [diff] [blame] | 109 | " coercion behavior. Use PYTHONCOERCECLOCALE=warn to request display of\n" |
| 110 | " locale coercion and locale compatibility warnings on stderr.\n"; |
Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 111 | |
Martin v. Löwis | 852ba7e | 2003-03-30 17:09:58 +0000 | [diff] [blame] | 112 | static int |
Serhiy Storchaka | ef1585e | 2015-12-25 20:01:53 +0200 | [diff] [blame] | 113 | usage(int exitcode, const wchar_t* program) |
Barry Warsaw | 3b2aedb | 2000-09-15 18:40:42 +0000 | [diff] [blame] | 114 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 115 | FILE *f = exitcode ? stderr : stdout; |
Guido van Rossum | 393661d | 2001-08-31 17:40:15 +0000 | [diff] [blame] | 116 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 117 | fprintf(f, usage_line, program); |
| 118 | if (exitcode) |
| 119 | fprintf(f, "Try `python -h' for more information.\n"); |
| 120 | else { |
| 121 | fputs(usage_1, f); |
| 122 | fputs(usage_2, f); |
| 123 | fputs(usage_3, f); |
Serhiy Storchaka | 1ba0161 | 2015-12-30 09:28:19 +0200 | [diff] [blame] | 124 | fprintf(f, usage_4, (wint_t)DELIM); |
| 125 | fprintf(f, usage_5, (wint_t)DELIM, PYTHONHOMEHELP); |
Georg Brandl | 2daf6ae | 2012-02-20 19:54:16 +0100 | [diff] [blame] | 126 | fputs(usage_6, f); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 127 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 128 | return exitcode; |
Barry Warsaw | 3b2aedb | 2000-09-15 18:40:42 +0000 | [diff] [blame] | 129 | } |
| 130 | |
Martin v. Löwis | 6caea37 | 2003-11-18 19:46:25 +0000 | [diff] [blame] | 131 | static void RunStartupFile(PyCompilerFlags *cf) |
| 132 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 133 | char *startup = Py_GETENV("PYTHONSTARTUP"); |
| 134 | if (startup != NULL && startup[0] != '\0') { |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 135 | FILE *fp = _Py_fopen(startup, "r"); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 136 | if (fp != NULL) { |
| 137 | (void) PyRun_SimpleFileExFlags(fp, startup, 0, cf); |
| 138 | PyErr_Clear(); |
| 139 | fclose(fp); |
| 140 | } else { |
| 141 | int save_errno; |
| 142 | |
| 143 | save_errno = errno; |
| 144 | PySys_WriteStderr("Could not open PYTHONSTARTUP\n"); |
| 145 | errno = save_errno; |
Serhiy Storchaka | 55fe1ae | 2017-04-16 10:46:38 +0300 | [diff] [blame] | 146 | PyErr_SetFromErrnoWithFilename(PyExc_OSError, |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 147 | startup); |
| 148 | PyErr_Print(); |
| 149 | PyErr_Clear(); |
| 150 | } |
| 151 | } |
Martin v. Löwis | 6caea37 | 2003-11-18 19:46:25 +0000 | [diff] [blame] | 152 | } |
| 153 | |
Antoine Pitrou | 1a6cb30 | 2013-05-04 20:08:35 +0200 | [diff] [blame] | 154 | static void RunInteractiveHook(void) |
| 155 | { |
| 156 | PyObject *sys, *hook, *result; |
| 157 | sys = PyImport_ImportModule("sys"); |
| 158 | if (sys == NULL) |
| 159 | goto error; |
| 160 | hook = PyObject_GetAttrString(sys, "__interactivehook__"); |
| 161 | Py_DECREF(sys); |
| 162 | if (hook == NULL) |
| 163 | PyErr_Clear(); |
| 164 | else { |
Victor Stinner | a5ed5f0 | 2016-12-06 18:45:50 +0100 | [diff] [blame] | 165 | result = _PyObject_CallNoArg(hook); |
Antoine Pitrou | 1a6cb30 | 2013-05-04 20:08:35 +0200 | [diff] [blame] | 166 | Py_DECREF(hook); |
| 167 | if (result == NULL) |
| 168 | goto error; |
| 169 | else |
| 170 | Py_DECREF(result); |
| 171 | } |
| 172 | return; |
| 173 | |
| 174 | error: |
| 175 | PySys_WriteStderr("Failed calling sys.__interactivehook__\n"); |
| 176 | PyErr_Print(); |
| 177 | PyErr_Clear(); |
| 178 | } |
| 179 | |
Thomas Wouters | a977329 | 2006-04-21 09:43:23 +0000 | [diff] [blame] | 180 | |
Antoine Pitrou | 5651eaa | 2008-09-06 20:46:58 +0000 | [diff] [blame] | 181 | static int RunModule(wchar_t *modname, int set_argv0) |
Raymond Hettinger | db29e0f | 2004-10-07 06:46:25 +0000 | [diff] [blame] | 182 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 183 | PyObject *module, *runpy, *runmodule, *runargs, *result; |
| 184 | runpy = PyImport_ImportModule("runpy"); |
| 185 | if (runpy == NULL) { |
| 186 | fprintf(stderr, "Could not import runpy module\n"); |
Victor Stinner | 7d36e4f | 2013-04-10 00:27:23 +0200 | [diff] [blame] | 187 | PyErr_Print(); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 188 | return -1; |
| 189 | } |
| 190 | runmodule = PyObject_GetAttrString(runpy, "_run_module_as_main"); |
| 191 | if (runmodule == NULL) { |
| 192 | fprintf(stderr, "Could not access runpy._run_module_as_main\n"); |
Victor Stinner | 7d36e4f | 2013-04-10 00:27:23 +0200 | [diff] [blame] | 193 | PyErr_Print(); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 194 | Py_DECREF(runpy); |
| 195 | return -1; |
| 196 | } |
| 197 | module = PyUnicode_FromWideChar(modname, wcslen(modname)); |
| 198 | if (module == NULL) { |
| 199 | fprintf(stderr, "Could not convert module name to unicode\n"); |
Victor Stinner | 7d36e4f | 2013-04-10 00:27:23 +0200 | [diff] [blame] | 200 | PyErr_Print(); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 201 | Py_DECREF(runpy); |
| 202 | Py_DECREF(runmodule); |
| 203 | return -1; |
| 204 | } |
| 205 | runargs = Py_BuildValue("(Oi)", module, set_argv0); |
| 206 | if (runargs == NULL) { |
| 207 | fprintf(stderr, |
| 208 | "Could not create arguments for runpy._run_module_as_main\n"); |
Victor Stinner | 7d36e4f | 2013-04-10 00:27:23 +0200 | [diff] [blame] | 209 | PyErr_Print(); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 210 | Py_DECREF(runpy); |
| 211 | Py_DECREF(runmodule); |
| 212 | Py_DECREF(module); |
| 213 | return -1; |
| 214 | } |
| 215 | result = PyObject_Call(runmodule, runargs, NULL); |
| 216 | if (result == NULL) { |
| 217 | PyErr_Print(); |
| 218 | } |
| 219 | Py_DECREF(runpy); |
| 220 | Py_DECREF(runmodule); |
| 221 | Py_DECREF(module); |
| 222 | Py_DECREF(runargs); |
| 223 | if (result == NULL) { |
| 224 | return -1; |
| 225 | } |
| 226 | Py_DECREF(result); |
| 227 | return 0; |
Raymond Hettinger | db29e0f | 2004-10-07 06:46:25 +0000 | [diff] [blame] | 228 | } |
Barry Warsaw | 3b2aedb | 2000-09-15 18:40:42 +0000 | [diff] [blame] | 229 | |
Nick Coghlan | d2977a3 | 2017-03-12 20:38:32 +1000 | [diff] [blame] | 230 | static PyObject * |
| 231 | AsImportPathEntry(wchar_t *filename) |
Christian Heimes | 9cd1775 | 2007-11-18 19:35:23 +0000 | [diff] [blame] | 232 | { |
Nick Coghlan | d2977a3 | 2017-03-12 20:38:32 +1000 | [diff] [blame] | 233 | PyObject *sys_path0 = NULL, *importer; |
Christian Heimes | 9cd1775 | 2007-11-18 19:35:23 +0000 | [diff] [blame] | 234 | |
Nick Coghlan | d2977a3 | 2017-03-12 20:38:32 +1000 | [diff] [blame] | 235 | sys_path0 = PyUnicode_FromWideChar(filename, wcslen(filename)); |
| 236 | if (sys_path0 == NULL) |
Victor Stinner | 4726e40 | 2010-10-06 23:24:57 +0000 | [diff] [blame] | 237 | goto error; |
| 238 | |
Nick Coghlan | d2977a3 | 2017-03-12 20:38:32 +1000 | [diff] [blame] | 239 | importer = PyImport_GetImporter(sys_path0); |
Victor Stinner | 4726e40 | 2010-10-06 23:24:57 +0000 | [diff] [blame] | 240 | if (importer == NULL) |
| 241 | goto error; |
| 242 | |
Brett Cannon | aa93642 | 2012-04-27 15:30:58 -0400 | [diff] [blame] | 243 | if (importer == Py_None) { |
Nick Coghlan | d2977a3 | 2017-03-12 20:38:32 +1000 | [diff] [blame] | 244 | Py_DECREF(sys_path0); |
Victor Stinner | 4726e40 | 2010-10-06 23:24:57 +0000 | [diff] [blame] | 245 | Py_DECREF(importer); |
Nick Coghlan | d2977a3 | 2017-03-12 20:38:32 +1000 | [diff] [blame] | 246 | return NULL; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 247 | } |
Victor Stinner | 4726e40 | 2010-10-06 23:24:57 +0000 | [diff] [blame] | 248 | Py_DECREF(importer); |
Nick Coghlan | d2977a3 | 2017-03-12 20:38:32 +1000 | [diff] [blame] | 249 | return sys_path0; |
Victor Stinner | 4726e40 | 2010-10-06 23:24:57 +0000 | [diff] [blame] | 250 | |
Nick Coghlan | d2977a3 | 2017-03-12 20:38:32 +1000 | [diff] [blame] | 251 | error: |
| 252 | Py_XDECREF(sys_path0); |
| 253 | PySys_WriteStderr("Failed checking if argv[0] is an import path entry\n"); |
| 254 | PyErr_Print(); |
| 255 | PyErr_Clear(); |
| 256 | return NULL; |
| 257 | } |
| 258 | |
| 259 | |
| 260 | static int |
| 261 | RunMainFromImporter(PyObject *sys_path0) |
| 262 | { |
| 263 | PyObject *sys_path; |
| 264 | int sts; |
| 265 | |
| 266 | /* Assume sys_path0 has already been checked by AsImportPathEntry, |
| 267 | * so put it in sys.path[0] and import __main__ */ |
Victor Stinner | bd303c1 | 2013-11-07 23:07:29 +0100 | [diff] [blame] | 268 | sys_path = PySys_GetObject("path"); |
Victor Stinner | 1e53bba | 2013-07-16 22:26:05 +0200 | [diff] [blame] | 269 | if (sys_path == NULL) { |
| 270 | PyErr_SetString(PyExc_RuntimeError, "unable to get sys.path"); |
Victor Stinner | 4726e40 | 2010-10-06 23:24:57 +0000 | [diff] [blame] | 271 | goto error; |
Victor Stinner | 1e53bba | 2013-07-16 22:26:05 +0200 | [diff] [blame] | 272 | } |
Nick Coghlan | d2977a3 | 2017-03-12 20:38:32 +1000 | [diff] [blame] | 273 | sts = PyList_Insert(sys_path, 0, sys_path0); |
Steve Dower | 6d46ae7 | 2017-02-04 15:39:21 -0800 | [diff] [blame] | 274 | if (sts) { |
Nick Coghlan | d2977a3 | 2017-03-12 20:38:32 +1000 | [diff] [blame] | 275 | sys_path0 = NULL; |
Victor Stinner | 4726e40 | 2010-10-06 23:24:57 +0000 | [diff] [blame] | 276 | goto error; |
| 277 | } |
Victor Stinner | 4726e40 | 2010-10-06 23:24:57 +0000 | [diff] [blame] | 278 | |
| 279 | sts = RunModule(L"__main__", 0); |
| 280 | return sts != 0; |
| 281 | |
| 282 | error: |
Nick Coghlan | d2977a3 | 2017-03-12 20:38:32 +1000 | [diff] [blame] | 283 | Py_XDECREF(sys_path0); |
Victor Stinner | 4726e40 | 2010-10-06 23:24:57 +0000 | [diff] [blame] | 284 | PyErr_Print(); |
| 285 | return 1; |
Christian Heimes | 9cd1775 | 2007-11-18 19:35:23 +0000 | [diff] [blame] | 286 | } |
| 287 | |
Victor Stinner | a62207c | 2010-08-07 10:57:17 +0000 | [diff] [blame] | 288 | static int |
| 289 | run_command(wchar_t *command, PyCompilerFlags *cf) |
| 290 | { |
| 291 | PyObject *unicode, *bytes; |
| 292 | int ret; |
| 293 | |
| 294 | unicode = PyUnicode_FromWideChar(command, -1); |
| 295 | if (unicode == NULL) |
| 296 | goto error; |
| 297 | bytes = PyUnicode_AsUTF8String(unicode); |
| 298 | Py_DECREF(unicode); |
| 299 | if (bytes == NULL) |
| 300 | goto error; |
| 301 | ret = PyRun_SimpleStringFlags(PyBytes_AsString(bytes), cf); |
| 302 | Py_DECREF(bytes); |
| 303 | return ret != 0; |
| 304 | |
| 305 | error: |
Victor Stinner | 398356b | 2010-08-18 22:23:22 +0000 | [diff] [blame] | 306 | PySys_WriteStderr("Unable to decode the command from the command line:\n"); |
Victor Stinner | a62207c | 2010-08-07 10:57:17 +0000 | [diff] [blame] | 307 | PyErr_Print(); |
| 308 | return 1; |
| 309 | } |
| 310 | |
Victor Stinner | 0a3ddad | 2010-08-07 16:34:25 +0000 | [diff] [blame] | 311 | static int |
| 312 | run_file(FILE *fp, const wchar_t *filename, PyCompilerFlags *p_cf) |
| 313 | { |
| 314 | PyObject *unicode, *bytes = NULL; |
| 315 | char *filename_str; |
| 316 | int run; |
| 317 | |
| 318 | /* call pending calls like signal handlers (SIGINT) */ |
| 319 | if (Py_MakePendingCalls() == -1) { |
| 320 | PyErr_Print(); |
| 321 | return 1; |
| 322 | } |
| 323 | |
| 324 | if (filename) { |
| 325 | unicode = PyUnicode_FromWideChar(filename, wcslen(filename)); |
| 326 | if (unicode != NULL) { |
Victor Stinner | e0f3268 | 2010-10-17 19:34:51 +0000 | [diff] [blame] | 327 | bytes = PyUnicode_EncodeFSDefault(unicode); |
Victor Stinner | 0a3ddad | 2010-08-07 16:34:25 +0000 | [diff] [blame] | 328 | Py_DECREF(unicode); |
| 329 | } |
| 330 | if (bytes != NULL) |
| 331 | filename_str = PyBytes_AsString(bytes); |
| 332 | else { |
| 333 | PyErr_Clear(); |
Victor Stinner | e0f3268 | 2010-10-17 19:34:51 +0000 | [diff] [blame] | 334 | filename_str = "<encoding error>"; |
Victor Stinner | 0a3ddad | 2010-08-07 16:34:25 +0000 | [diff] [blame] | 335 | } |
| 336 | } |
| 337 | else |
| 338 | filename_str = "<stdin>"; |
| 339 | |
| 340 | run = PyRun_AnyFileExFlags(fp, filename_str, filename != NULL, p_cf); |
| 341 | Py_XDECREF(bytes); |
| 342 | return run != 0; |
| 343 | } |
| 344 | |
Christian Heimes | 9cd1775 | 2007-11-18 19:35:23 +0000 | [diff] [blame] | 345 | |
Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 346 | /* Main program */ |
| 347 | |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 348 | /*TODO: Add arg processing to PEP 432 as a new configuration setup API |
| 349 | */ |
| 350 | typedef struct { |
| 351 | wchar_t *filename; /* Trailing arg without -c or -m */ |
| 352 | wchar_t *command; /* -c argument */ |
| 353 | wchar_t *module; /* -m argument */ |
| 354 | PyObject *warning_options; /* -W options */ |
| 355 | PyObject *extra_options; /* -X options */ |
| 356 | int print_help; /* -h, -? options */ |
| 357 | int print_version; /* -V option */ |
| 358 | int bytes_warning; /* Py_BytesWarningFlag */ |
| 359 | int debug; /* Py_DebugFlag */ |
| 360 | int inspect; /* Py_InspectFlag */ |
| 361 | int interactive; /* Py_InteractiveFlag */ |
| 362 | int isolated; /* Py_IsolatedFlag */ |
| 363 | int optimization_level; /* Py_OptimizeFlag */ |
| 364 | int dont_write_bytecode; /* Py_DontWriteBytecodeFlag */ |
| 365 | int no_user_site_directory; /* Py_NoUserSiteDirectory */ |
| 366 | int no_site_import; /* Py_NoSiteFlag */ |
| 367 | int use_unbuffered_io; /* Py_UnbufferedStdioFlag */ |
| 368 | int verbosity; /* Py_VerboseFlag */ |
| 369 | int quiet_flag; /* Py_QuietFlag */ |
| 370 | int skip_first_line; /* -x option */ |
| 371 | } _Py_CommandLineDetails; |
| 372 | |
| 373 | #define _Py_CommandLineDetails_INIT \ |
| 374 | {NULL, NULL, NULL, NULL, NULL, \ |
| 375 | 0, 0, 0, 0, 0, 0, 0, 0, \ |
| 376 | 0, 0, 0, 0, 0, 0, 0} |
| 377 | |
| 378 | static int |
| 379 | read_command_line(int argc, wchar_t **argv, _Py_CommandLineDetails *cmdline) |
Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 380 | { |
Antoine Pitrou | 6999441 | 2014-04-29 00:56:08 +0200 | [diff] [blame] | 381 | PyObject *warning_option = NULL; |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 382 | wchar_t *command = NULL; |
| 383 | wchar_t *module = NULL; |
Eric Snow | e0918ec | 2017-05-23 12:26:17 -0700 | [diff] [blame] | 384 | int c; |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 385 | |
Antoine Pitrou | 86838b0 | 2012-02-21 19:03:47 +0100 | [diff] [blame] | 386 | _PyOS_ResetGetOpt(); |
Guido van Rossum | 47f5fdc | 2000-12-15 22:00:54 +0000 | [diff] [blame] | 387 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 388 | while ((c = _PyOS_GetOpt(argc, argv, PROGRAM_OPTS)) != EOF) { |
| 389 | if (c == 'c') { |
| 390 | size_t len; |
| 391 | /* -c is the last option; following arguments |
| 392 | that look like options are left for the |
| 393 | command to interpret. */ |
Amaury Forgeot d'Arc | 9a5499b | 2008-11-11 23:04:59 +0000 | [diff] [blame] | 394 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 395 | len = wcslen(_PyOS_optarg) + 1 + 1; |
Victor Stinner | 1a7425f | 2013-07-07 16:25:15 +0200 | [diff] [blame] | 396 | command = (wchar_t *)PyMem_RawMalloc(sizeof(wchar_t) * len); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 397 | if (command == NULL) |
| 398 | Py_FatalError( |
| 399 | "not enough memory to copy -c argument"); |
| 400 | wcscpy(command, _PyOS_optarg); |
| 401 | command[len - 2] = '\n'; |
| 402 | command[len - 1] = 0; |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 403 | cmdline->command = command; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 404 | break; |
| 405 | } |
Guido van Rossum | 393661d | 2001-08-31 17:40:15 +0000 | [diff] [blame] | 406 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 407 | if (c == 'm') { |
| 408 | /* -m is the last option; following arguments |
| 409 | that look like options are left for the |
| 410 | module to interpret. */ |
| 411 | module = _PyOS_optarg; |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 412 | cmdline->module = module; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 413 | break; |
| 414 | } |
Raymond Hettinger | db29e0f | 2004-10-07 06:46:25 +0000 | [diff] [blame] | 415 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 416 | switch (c) { |
| 417 | case 'b': |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 418 | cmdline->bytes_warning++; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 419 | break; |
Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 420 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 421 | case 'd': |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 422 | cmdline->debug++; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 423 | break; |
Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 424 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 425 | case 'i': |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 426 | cmdline->inspect++; |
| 427 | cmdline->interactive++; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 428 | break; |
Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 429 | |
Christian Heimes | ad73a9c | 2013-08-10 16:36:18 +0200 | [diff] [blame] | 430 | case 'I': |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 431 | cmdline->isolated++; |
| 432 | cmdline->no_user_site_directory++; |
Christian Heimes | ad73a9c | 2013-08-10 16:36:18 +0200 | [diff] [blame] | 433 | break; |
| 434 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 435 | /* case 'J': reserved for Jython */ |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 436 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 437 | case 'O': |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 438 | cmdline->optimization_level++; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 439 | break; |
Guido van Rossum | 7614da6 | 1997-03-03 19:14:45 +0000 | [diff] [blame] | 440 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 441 | case 'B': |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 442 | cmdline->dont_write_bytecode++; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 443 | break; |
Christian Heimes | 790c823 | 2008-01-07 21:14:23 +0000 | [diff] [blame] | 444 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 445 | case 's': |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 446 | cmdline->no_user_site_directory++; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 447 | break; |
Christian Heimes | 8dc226f | 2008-05-06 23:45:46 +0000 | [diff] [blame] | 448 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 449 | case 'S': |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 450 | cmdline->no_site_import++; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 451 | break; |
Guido van Rossum | 7922bd7 | 1997-08-29 22:34:47 +0000 | [diff] [blame] | 452 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 453 | case 'E': |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 454 | /* Handled prior to core initialization */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 455 | break; |
Neil Schemenauer | 7d4bb9f | 2001-07-23 16:30:27 +0000 | [diff] [blame] | 456 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 457 | case 't': |
| 458 | /* ignored for backwards compatibility */ |
| 459 | break; |
Guido van Rossum | bba92ca | 1998-04-10 19:39:15 +0000 | [diff] [blame] | 460 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 461 | case 'u': |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 462 | cmdline->use_unbuffered_io = 1; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 463 | break; |
Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 464 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 465 | case 'v': |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 466 | cmdline->verbosity++; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 467 | break; |
Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 468 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 469 | case 'x': |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 470 | cmdline->skip_first_line = 1; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 471 | break; |
Guido van Rossum | a075ce1 | 1997-12-05 21:56:45 +0000 | [diff] [blame] | 472 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 473 | case 'h': |
| 474 | case '?': |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 475 | cmdline->print_help++; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 476 | break; |
Guido van Rossum | 45aecf4 | 2006-03-15 04:58:47 +0000 | [diff] [blame] | 477 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 478 | case 'V': |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 479 | cmdline->print_version++; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 480 | break; |
Guido van Rossum | c15a9a1 | 2000-05-01 17:54:33 +0000 | [diff] [blame] | 481 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 482 | case 'W': |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 483 | if (cmdline->warning_options == NULL) |
| 484 | cmdline->warning_options = PyList_New(0); |
| 485 | if (cmdline->warning_options == NULL) |
Antoine Pitrou | 6999441 | 2014-04-29 00:56:08 +0200 | [diff] [blame] | 486 | Py_FatalError("failure in handling of -W argument"); |
| 487 | warning_option = PyUnicode_FromWideChar(_PyOS_optarg, -1); |
| 488 | if (warning_option == NULL) |
| 489 | Py_FatalError("failure in handling of -W argument"); |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 490 | if (PyList_Append(cmdline->warning_options, warning_option) == -1) |
Christian Heimes | 2752707 | 2016-09-09 00:08:35 +0200 | [diff] [blame] | 491 | Py_FatalError("failure in handling of -W argument"); |
Antoine Pitrou | 6999441 | 2014-04-29 00:56:08 +0200 | [diff] [blame] | 492 | Py_DECREF(warning_option); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 493 | break; |
Guido van Rossum | 47f5fdc | 2000-12-15 22:00:54 +0000 | [diff] [blame] | 494 | |
Antoine Pitrou | 9583cac | 2010-10-21 13:42:28 +0000 | [diff] [blame] | 495 | case 'X': |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 496 | /* TODO: Delay addition of X options to sys module */ |
Antoine Pitrou | 9583cac | 2010-10-21 13:42:28 +0000 | [diff] [blame] | 497 | PySys_AddXOption(_PyOS_optarg); |
| 498 | break; |
| 499 | |
Georg Brandl | 9d87119 | 2010-12-04 10:47:18 +0000 | [diff] [blame] | 500 | case 'q': |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 501 | cmdline->quiet_flag++; |
Georg Brandl | 9d87119 | 2010-12-04 10:47:18 +0000 | [diff] [blame] | 502 | break; |
| 503 | |
Georg Brandl | 2daf6ae | 2012-02-20 19:54:16 +0100 | [diff] [blame] | 504 | case 'R': |
Benjamin Peterson | c9f54cf | 2012-02-21 16:08:05 -0500 | [diff] [blame] | 505 | /* Ignored */ |
Georg Brandl | 2daf6ae | 2012-02-20 19:54:16 +0100 | [diff] [blame] | 506 | break; |
| 507 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 508 | /* This space reserved for other options */ |
Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 509 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 510 | default: |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 511 | return -1; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 512 | /*NOTREACHED*/ |
Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 513 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 514 | } |
| 515 | } |
Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 516 | |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 517 | if (command == NULL && module == NULL && _PyOS_optind < argc && |
| 518 | wcscmp(argv[_PyOS_optind], L"-") != 0) |
| 519 | { |
| 520 | cmdline->filename = argv[_PyOS_optind]; |
| 521 | } |
| 522 | return 0; |
| 523 | } |
Barry Warsaw | 3b2aedb | 2000-09-15 18:40:42 +0000 | [diff] [blame] | 524 | |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 525 | static int |
| 526 | apply_command_line_and_environment(_Py_CommandLineDetails *cmdline) |
| 527 | { |
| 528 | char *p; |
| 529 | Py_BytesWarningFlag = cmdline->bytes_warning; |
| 530 | Py_DebugFlag = cmdline->debug; |
| 531 | Py_InspectFlag = cmdline->inspect; |
| 532 | Py_InteractiveFlag = cmdline->interactive; |
| 533 | Py_IsolatedFlag = cmdline->isolated; |
| 534 | Py_OptimizeFlag = cmdline->optimization_level; |
| 535 | Py_DontWriteBytecodeFlag = cmdline->dont_write_bytecode; |
| 536 | Py_NoUserSiteDirectory = cmdline->no_user_site_directory; |
| 537 | Py_NoSiteFlag = cmdline->no_site_import; |
| 538 | Py_UnbufferedStdioFlag = cmdline->use_unbuffered_io; |
| 539 | Py_VerboseFlag = cmdline->verbosity; |
| 540 | Py_QuietFlag = cmdline->quiet_flag; |
| 541 | |
| 542 | if (!Py_InspectFlag && |
| 543 | (p = Py_GETENV("PYTHONINSPECT")) && *p != '\0') { |
| 544 | Py_InspectFlag = 1; |
| 545 | cmdline->inspect = 1; |
| 546 | } |
| 547 | if (!cmdline->use_unbuffered_io && |
| 548 | (p = Py_GETENV("PYTHONUNBUFFERED")) && *p != '\0') { |
| 549 | Py_UnbufferedStdioFlag = 1; |
| 550 | cmdline->use_unbuffered_io = 1; |
| 551 | } |
| 552 | |
| 553 | if (!Py_NoUserSiteDirectory && |
| 554 | (p = Py_GETENV("PYTHONNOUSERSITE")) && *p != '\0') { |
| 555 | Py_NoUserSiteDirectory = 1; |
| 556 | cmdline->no_user_site_directory = 1; |
| 557 | } |
| 558 | |
| 559 | /* TODO: Apply PYTHONWARNINGS & -W options to sys module here */ |
| 560 | /* TODO: Apply -X options to sys module here */ |
| 561 | return 0; |
| 562 | } |
| 563 | |
| 564 | int |
| 565 | Py_Main(int argc, wchar_t **argv) |
| 566 | { |
| 567 | int c; |
| 568 | int sts; |
| 569 | FILE *fp = stdin; |
| 570 | char *p; |
| 571 | #ifdef MS_WINDOWS |
| 572 | wchar_t *wp; |
| 573 | #endif |
| 574 | int stdin_is_interactive = 0; |
| 575 | _Py_CommandLineDetails cmdline = _Py_CommandLineDetails_INIT; |
Eric Snow | 1abcf67 | 2017-05-23 21:46:51 -0700 | [diff] [blame] | 576 | _PyCoreConfig core_config = _PyCoreConfig_INIT; |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 577 | PyCompilerFlags cf; |
| 578 | PyObject *main_importer_path = NULL; |
| 579 | |
| 580 | cf.cf_flags = 0; |
| 581 | |
| 582 | orig_argc = argc; /* For Py_GetArgcArgv() */ |
| 583 | orig_argv = argv; |
| 584 | |
| 585 | /* Hash randomization needed early for all string operations |
| 586 | (including -W and -X options). */ |
| 587 | _PyOS_opterr = 0; /* prevent printing the error in 1st pass */ |
| 588 | while ((c = _PyOS_GetOpt(argc, argv, PROGRAM_OPTS)) != EOF) { |
| 589 | if (c == 'm' || c == 'c') { |
| 590 | /* -c / -m is the last option: following arguments are |
| 591 | not interpreter options. */ |
| 592 | break; |
| 593 | } |
| 594 | if (c == 'E' || c == 'I') { |
Eric Snow | 1abcf67 | 2017-05-23 21:46:51 -0700 | [diff] [blame] | 595 | core_config.ignore_environment++; |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 596 | break; |
| 597 | } |
| 598 | } |
| 599 | |
Eric Snow | 1abcf67 | 2017-05-23 21:46:51 -0700 | [diff] [blame] | 600 | /* Initialize the core language runtime */ |
| 601 | Py_IgnoreEnvironmentFlag = core_config.ignore_environment; |
| 602 | core_config._disable_importlib = 0; |
Eric Snow | 2ebc5ce | 2017-09-07 23:51:28 -0600 | [diff] [blame] | 603 | core_config.allocator = Py_GETENV("PYTHONMALLOC"); |
Eric Snow | 1abcf67 | 2017-05-23 21:46:51 -0700 | [diff] [blame] | 604 | _Py_InitializeCore(&core_config); |
| 605 | |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 606 | /* Reprocess the command line with the language runtime available */ |
| 607 | if (read_command_line(argc, argv, &cmdline)) { |
| 608 | return usage(2, argv[0]); |
| 609 | } |
| 610 | |
| 611 | if (cmdline.print_help) { |
| 612 | return usage(0, argv[0]); |
| 613 | } |
| 614 | |
| 615 | if (cmdline.print_version) { |
| 616 | printf("Python %s\n", cmdline.print_version >= 2 ? Py_GetVersion() : PY_VERSION); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 617 | return 0; |
| 618 | } |
Barry Warsaw | 3b2aedb | 2000-09-15 18:40:42 +0000 | [diff] [blame] | 619 | |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 620 | PySys_ResetWarnOptions(); |
| 621 | apply_command_line_and_environment(&cmdline); |
Christian Heimes | 8dc226f | 2008-05-06 23:45:46 +0000 | [diff] [blame] | 622 | |
Philip Jenvey | e53de3d | 2010-04-14 03:01:39 +0000 | [diff] [blame] | 623 | #ifdef MS_WINDOWS |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 624 | if (!Py_IgnoreEnvironmentFlag && (wp = _wgetenv(L"PYTHONWARNINGS")) && |
| 625 | *wp != L'\0') { |
Steve Dower | f63dab5 | 2015-02-25 20:48:01 -0800 | [diff] [blame] | 626 | wchar_t *buf, *warning, *context = NULL; |
Philip Jenvey | 0805ca3 | 2010-04-07 04:04:10 +0000 | [diff] [blame] | 627 | |
Victor Stinner | 1a7425f | 2013-07-07 16:25:15 +0200 | [diff] [blame] | 628 | buf = (wchar_t *)PyMem_RawMalloc((wcslen(wp) + 1) * sizeof(wchar_t)); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 629 | if (buf == NULL) |
| 630 | Py_FatalError( |
| 631 | "not enough memory to copy PYTHONWARNINGS"); |
| 632 | wcscpy(buf, wp); |
Steve Dower | f63dab5 | 2015-02-25 20:48:01 -0800 | [diff] [blame] | 633 | for (warning = wcstok_s(buf, L",", &context); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 634 | warning != NULL; |
Steve Dower | f63dab5 | 2015-02-25 20:48:01 -0800 | [diff] [blame] | 635 | warning = wcstok_s(NULL, L",", &context)) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 636 | PySys_AddWarnOption(warning); |
| 637 | } |
Victor Stinner | 1a7425f | 2013-07-07 16:25:15 +0200 | [diff] [blame] | 638 | PyMem_RawFree(buf); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 639 | } |
Philip Jenvey | e53de3d | 2010-04-14 03:01:39 +0000 | [diff] [blame] | 640 | #else |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 641 | if ((p = Py_GETENV("PYTHONWARNINGS")) && *p != '\0') { |
| 642 | char *buf, *oldloc; |
Victor Stinner | c2d76fd | 2010-09-10 23:13:52 +0000 | [diff] [blame] | 643 | PyObject *unicode; |
Philip Jenvey | e53de3d | 2010-04-14 03:01:39 +0000 | [diff] [blame] | 644 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 645 | /* settle for strtok here as there's no one standard |
| 646 | C89 wcstok */ |
Victor Stinner | 1a7425f | 2013-07-07 16:25:15 +0200 | [diff] [blame] | 647 | buf = (char *)PyMem_RawMalloc(strlen(p) + 1); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 648 | if (buf == NULL) |
| 649 | Py_FatalError( |
| 650 | "not enough memory to copy PYTHONWARNINGS"); |
| 651 | strcpy(buf, p); |
Victor Stinner | 49fc8ec | 2013-07-07 23:30:24 +0200 | [diff] [blame] | 652 | oldloc = _PyMem_RawStrdup(setlocale(LC_ALL, NULL)); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 653 | setlocale(LC_ALL, ""); |
| 654 | for (p = strtok(buf, ","); p != NULL; p = strtok(NULL, ",")) { |
Victor Stinner | 5c848a8 | 2010-09-12 08:00:41 +0000 | [diff] [blame] | 655 | #ifdef __APPLE__ |
| 656 | /* Use utf-8 on Mac OS X */ |
| 657 | unicode = PyUnicode_FromString(p); |
| 658 | #else |
Victor Stinner | 1b57967 | 2011-12-17 05:47:23 +0100 | [diff] [blame] | 659 | unicode = PyUnicode_DecodeLocale(p, "surrogateescape"); |
Victor Stinner | 5c848a8 | 2010-09-12 08:00:41 +0000 | [diff] [blame] | 660 | #endif |
Victor Stinner | af02e1c | 2011-12-16 23:56:01 +0100 | [diff] [blame] | 661 | if (unicode == NULL) { |
| 662 | /* ignore errors */ |
| 663 | PyErr_Clear(); |
Victor Stinner | c2d76fd | 2010-09-10 23:13:52 +0000 | [diff] [blame] | 664 | continue; |
Victor Stinner | af02e1c | 2011-12-16 23:56:01 +0100 | [diff] [blame] | 665 | } |
Victor Stinner | c2d76fd | 2010-09-10 23:13:52 +0000 | [diff] [blame] | 666 | PySys_AddWarnOptionUnicode(unicode); |
| 667 | Py_DECREF(unicode); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 668 | } |
| 669 | setlocale(LC_ALL, oldloc); |
Victor Stinner | 49fc8ec | 2013-07-07 23:30:24 +0200 | [diff] [blame] | 670 | PyMem_RawFree(oldloc); |
Victor Stinner | 1a7425f | 2013-07-07 16:25:15 +0200 | [diff] [blame] | 671 | PyMem_RawFree(buf); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 672 | } |
Philip Jenvey | e53de3d | 2010-04-14 03:01:39 +0000 | [diff] [blame] | 673 | #endif |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 674 | if (cmdline.warning_options != NULL) { |
Antoine Pitrou | 6999441 | 2014-04-29 00:56:08 +0200 | [diff] [blame] | 675 | Py_ssize_t i; |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 676 | for (i = 0; i < PyList_GET_SIZE(cmdline.warning_options); i++) { |
| 677 | PySys_AddWarnOptionUnicode(PyList_GET_ITEM(cmdline.warning_options, i)); |
Antoine Pitrou | 6999441 | 2014-04-29 00:56:08 +0200 | [diff] [blame] | 678 | } |
Eric Snow | 1abcf67 | 2017-05-23 21:46:51 -0700 | [diff] [blame] | 679 | Py_DECREF(cmdline.warning_options); |
Antoine Pitrou | 6999441 | 2014-04-29 00:56:08 +0200 | [diff] [blame] | 680 | } |
Philip Jenvey | 0805ca3 | 2010-04-07 04:04:10 +0000 | [diff] [blame] | 681 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 682 | stdin_is_interactive = Py_FdIsInteractive(stdin, (char *)0); |
Guido van Rossum | 775af91 | 1997-02-14 19:50:32 +0000 | [diff] [blame] | 683 | |
Sjoerd Mullender | 9cf424b | 2002-08-09 13:35:18 +0000 | [diff] [blame] | 684 | #if defined(MS_WINDOWS) || defined(__CYGWIN__) |
Victor Stinner | 89e3436 | 2011-01-07 18:47:22 +0000 | [diff] [blame] | 685 | /* don't translate newlines (\r\n <=> \n) */ |
| 686 | _setmode(fileno(stdin), O_BINARY); |
| 687 | _setmode(fileno(stdout), O_BINARY); |
| 688 | _setmode(fileno(stderr), O_BINARY); |
Guido van Rossum | f22d7e2 | 1997-01-11 19:28:55 +0000 | [diff] [blame] | 689 | #endif |
Victor Stinner | 89e3436 | 2011-01-07 18:47:22 +0000 | [diff] [blame] | 690 | |
| 691 | if (Py_UnbufferedStdioFlag) { |
Guido van Rossum | 22ffac1 | 1998-03-06 15:30:39 +0000 | [diff] [blame] | 692 | #ifdef HAVE_SETVBUF |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 693 | setvbuf(stdin, (char *)NULL, _IONBF, BUFSIZ); |
| 694 | setvbuf(stdout, (char *)NULL, _IONBF, BUFSIZ); |
| 695 | setvbuf(stderr, (char *)NULL, _IONBF, BUFSIZ); |
Guido van Rossum | 22ffac1 | 1998-03-06 15:30:39 +0000 | [diff] [blame] | 696 | #else /* !HAVE_SETVBUF */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 697 | setbuf(stdin, (char *)NULL); |
| 698 | setbuf(stdout, (char *)NULL); |
| 699 | setbuf(stderr, (char *)NULL); |
Guido van Rossum | 22ffac1 | 1998-03-06 15:30:39 +0000 | [diff] [blame] | 700 | #endif /* !HAVE_SETVBUF */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 701 | } |
| 702 | else if (Py_InteractiveFlag) { |
Guido van Rossum | b31c7dc | 1997-04-11 22:19:12 +0000 | [diff] [blame] | 703 | #ifdef MS_WINDOWS |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 704 | /* Doesn't have to have line-buffered -- use unbuffered */ |
| 705 | /* Any set[v]buf(stdin, ...) screws up Tkinter :-( */ |
| 706 | setvbuf(stdout, (char *)NULL, _IONBF, BUFSIZ); |
Guido van Rossum | 22ffac1 | 1998-03-06 15:30:39 +0000 | [diff] [blame] | 707 | #else /* !MS_WINDOWS */ |
| 708 | #ifdef HAVE_SETVBUF |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 709 | setvbuf(stdin, (char *)NULL, _IOLBF, BUFSIZ); |
| 710 | setvbuf(stdout, (char *)NULL, _IOLBF, BUFSIZ); |
Guido van Rossum | 22ffac1 | 1998-03-06 15:30:39 +0000 | [diff] [blame] | 711 | #endif /* HAVE_SETVBUF */ |
| 712 | #endif /* !MS_WINDOWS */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 713 | /* Leave stderr alone - it should be unbuffered anyway. */ |
| 714 | } |
Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 715 | |
Just van Rossum | 2ac79ef | 2003-03-05 15:46:54 +0000 | [diff] [blame] | 716 | #ifdef __APPLE__ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 717 | /* On MacOS X, when the Python interpreter is embedded in an |
| 718 | application bundle, it gets executed by a bootstrapping script |
| 719 | that does os.execve() with an argv[0] that's different from the |
| 720 | actual Python executable. This is needed to keep the Finder happy, |
| 721 | or rather, to work around Apple's overly strict requirements of |
| 722 | the process name. However, we still need a usable sys.executable, |
| 723 | so the actual executable path is passed in an environment variable. |
| 724 | See Lib/plat-mac/bundlebuiler.py for details about the bootstrap |
| 725 | script. */ |
| 726 | if ((p = Py_GETENV("PYTHONEXECUTABLE")) && *p != '\0') { |
| 727 | wchar_t* buffer; |
Ronald Oussoren | eb61f8b | 2012-08-22 14:24:14 +0200 | [diff] [blame] | 728 | size_t len = strlen(p) + 1; |
Ronald Oussoren | 3e264e1 | 2009-02-12 15:55:38 +0000 | [diff] [blame] | 729 | |
Victor Stinner | 1a7425f | 2013-07-07 16:25:15 +0200 | [diff] [blame] | 730 | buffer = PyMem_RawMalloc(len * sizeof(wchar_t)); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 731 | if (buffer == NULL) { |
| 732 | Py_FatalError( |
| 733 | "not enough memory to copy PYTHONEXECUTABLE"); |
| 734 | } |
Ronald Oussoren | 3e264e1 | 2009-02-12 15:55:38 +0000 | [diff] [blame] | 735 | |
Brett Cannon | b94767f | 2011-02-22 20:15:44 +0000 | [diff] [blame] | 736 | mbstowcs(buffer, p, len); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 737 | Py_SetProgramName(buffer); |
| 738 | /* buffer is now handed off - do not free */ |
| 739 | } else { |
Vinay Sajip | 90db661 | 2012-07-17 17:33:46 +0100 | [diff] [blame] | 740 | #ifdef WITH_NEXT_FRAMEWORK |
| 741 | char* pyvenv_launcher = getenv("__PYVENV_LAUNCHER__"); |
| 742 | |
| 743 | if (pyvenv_launcher && *pyvenv_launcher) { |
| 744 | /* Used by Mac/Tools/pythonw.c to forward |
| 745 | * the argv0 of the stub executable |
| 746 | */ |
Victor Stinner | f6a271a | 2014-08-01 12:28:48 +0200 | [diff] [blame] | 747 | wchar_t* wbuf = Py_DecodeLocale(pyvenv_launcher, NULL); |
Vinay Sajip | 90db661 | 2012-07-17 17:33:46 +0100 | [diff] [blame] | 748 | |
| 749 | if (wbuf == NULL) { |
| 750 | Py_FatalError("Cannot decode __PYVENV_LAUNCHER__"); |
| 751 | } |
| 752 | Py_SetProgramName(wbuf); |
| 753 | |
| 754 | /* Don't free wbuf, the argument to Py_SetProgramName |
Martin Panter | b4ce1fc | 2015-11-30 03:18:29 +0000 | [diff] [blame] | 755 | * must remain valid until Py_FinalizeEx is called. |
Vinay Sajip | 90db661 | 2012-07-17 17:33:46 +0100 | [diff] [blame] | 756 | */ |
| 757 | } else { |
| 758 | Py_SetProgramName(argv[0]); |
| 759 | } |
| 760 | #else |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 761 | Py_SetProgramName(argv[0]); |
Vinay Sajip | 90db661 | 2012-07-17 17:33:46 +0100 | [diff] [blame] | 762 | #endif |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 763 | } |
Just van Rossum | 2ac79ef | 2003-03-05 15:46:54 +0000 | [diff] [blame] | 764 | #else |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 765 | Py_SetProgramName(argv[0]); |
Jack Jansen | fbd861b | 2003-03-05 16:00:15 +0000 | [diff] [blame] | 766 | #endif |
Eric Snow | c7ec998 | 2017-05-23 23:00:52 -0700 | [diff] [blame] | 767 | /* Replaces previous call to Py_Initialize() |
| 768 | * |
| 769 | * TODO: Move environment queries (etc) into Py_ReadConfig |
| 770 | */ |
| 771 | { |
| 772 | _PyMainInterpreterConfig config = _PyMainInterpreterConfig_INIT; |
| 773 | |
| 774 | /* TODO: Moar config options! */ |
| 775 | config.install_signal_handlers = 1; |
| 776 | /* TODO: Print any exceptions raised by these operations */ |
| 777 | if (_Py_ReadMainInterpreterConfig(&config)) |
| 778 | Py_FatalError("Py_Main: Py_ReadMainInterpreterConfig failed"); |
| 779 | if (_Py_InitializeMainInterpreter(&config)) |
| 780 | Py_FatalError("Py_Main: Py_InitializeMainInterpreter failed"); |
| 781 | } |
Guido van Rossum | ed52aac | 1997-07-19 19:20:32 +0000 | [diff] [blame] | 782 | |
Eric Snow | 1abcf67 | 2017-05-23 21:46:51 -0700 | [diff] [blame] | 783 | /* TODO: Move this to _PyRun_PrepareMain */ |
Georg Brandl | 8aa7e99 | 2010-12-28 18:30:18 +0000 | [diff] [blame] | 784 | if (!Py_QuietFlag && (Py_VerboseFlag || |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 785 | (cmdline.command == NULL && cmdline.filename == NULL && |
| 786 | cmdline.module == NULL && stdin_is_interactive))) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 787 | fprintf(stderr, "Python %s on %s\n", |
| 788 | Py_GetVersion(), Py_GetPlatform()); |
| 789 | if (!Py_NoSiteFlag) |
| 790 | fprintf(stderr, "%s\n", COPYRIGHT); |
| 791 | } |
Guido van Rossum | 393661d | 2001-08-31 17:40:15 +0000 | [diff] [blame] | 792 | |
Eric Snow | 1abcf67 | 2017-05-23 21:46:51 -0700 | [diff] [blame] | 793 | /* TODO: Move this to _Py_InitializeMainInterpreter */ |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 794 | if (cmdline.command != NULL) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 795 | /* Backup _PyOS_optind and force sys.argv[0] = '-c' */ |
| 796 | _PyOS_optind--; |
| 797 | argv[_PyOS_optind] = L"-c"; |
| 798 | } |
Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 799 | |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 800 | if (cmdline.module != NULL) { |
Nick Coghlan | d26c18a | 2010-08-17 13:06:11 +0000 | [diff] [blame] | 801 | /* Backup _PyOS_optind and force sys.argv[0] = '-m'*/ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 802 | _PyOS_optind--; |
Nick Coghlan | d26c18a | 2010-08-17 13:06:11 +0000 | [diff] [blame] | 803 | argv[_PyOS_optind] = L"-m"; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 804 | } |
Raymond Hettinger | db29e0f | 2004-10-07 06:46:25 +0000 | [diff] [blame] | 805 | |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 806 | if (cmdline.filename != NULL) { |
| 807 | main_importer_path = AsImportPathEntry(cmdline.filename); |
Nick Coghlan | d2977a3 | 2017-03-12 20:38:32 +1000 | [diff] [blame] | 808 | } |
| 809 | |
| 810 | if (main_importer_path != NULL) { |
| 811 | /* Let RunMainFromImporter adjust sys.path[0] later */ |
| 812 | PySys_SetArgvEx(argc-_PyOS_optind, argv+_PyOS_optind, 0); |
| 813 | } else { |
| 814 | /* Use config settings to decide whether or not to update sys.path[0] */ |
| 815 | PySys_SetArgv(argc-_PyOS_optind, argv+_PyOS_optind); |
| 816 | } |
Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 817 | |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 818 | if ((Py_InspectFlag || (cmdline.command == NULL && |
| 819 | cmdline.filename == NULL && |
| 820 | cmdline.module == NULL)) && |
| 821 | isatty(fileno(stdin)) && |
| 822 | !Py_IsolatedFlag) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 823 | PyObject *v; |
| 824 | v = PyImport_ImportModule("readline"); |
| 825 | if (v == NULL) |
| 826 | PyErr_Clear(); |
| 827 | else |
| 828 | Py_DECREF(v); |
| 829 | } |
Guido van Rossum | 3d26cc9 | 1997-09-16 16:11:28 +0000 | [diff] [blame] | 830 | |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 831 | if (cmdline.command) { |
| 832 | sts = run_command(cmdline.command, &cf); |
| 833 | PyMem_RawFree(cmdline.command); |
| 834 | } else if (cmdline.module) { |
| 835 | sts = (RunModule(cmdline.module, 1) != 0); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 836 | } |
| 837 | else { |
Christian Heimes | 9cd1775 | 2007-11-18 19:35:23 +0000 | [diff] [blame] | 838 | |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 839 | if (cmdline.filename == NULL && stdin_is_interactive) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 840 | Py_InspectFlag = 0; /* do exit on SystemExit */ |
| 841 | RunStartupFile(&cf); |
Antoine Pitrou | 1a6cb30 | 2013-05-04 20:08:35 +0200 | [diff] [blame] | 842 | RunInteractiveHook(); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 843 | } |
| 844 | /* XXX */ |
Christian Heimes | 9cd1775 | 2007-11-18 19:35:23 +0000 | [diff] [blame] | 845 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 846 | sts = -1; /* keep track of whether we've already run __main__ */ |
Christian Heimes | 9cd1775 | 2007-11-18 19:35:23 +0000 | [diff] [blame] | 847 | |
Nick Coghlan | d2977a3 | 2017-03-12 20:38:32 +1000 | [diff] [blame] | 848 | if (main_importer_path != NULL) { |
| 849 | sts = RunMainFromImporter(main_importer_path); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 850 | } |
Christian Heimes | 9cd1775 | 2007-11-18 19:35:23 +0000 | [diff] [blame] | 851 | |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 852 | if (sts==-1 && cmdline.filename != NULL) { |
| 853 | fp = _Py_wfopen(cmdline.filename, L"r"); |
Victor Stinner | 9a6692f | 2010-10-14 10:51:24 +0000 | [diff] [blame] | 854 | if (fp == NULL) { |
| 855 | char *cfilename_buffer; |
| 856 | const char *cfilename; |
Antoine Pitrou | c345ce1 | 2011-12-16 12:28:32 +0100 | [diff] [blame] | 857 | int err = errno; |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 858 | cfilename_buffer = Py_EncodeLocale(cmdline.filename, NULL); |
Victor Stinner | 9a6692f | 2010-10-14 10:51:24 +0000 | [diff] [blame] | 859 | if (cfilename_buffer != NULL) |
| 860 | cfilename = cfilename_buffer; |
| 861 | else |
| 862 | cfilename = "<unprintable file name>"; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 863 | fprintf(stderr, "%ls: can't open file '%s': [Errno %d] %s\n", |
Antoine Pitrou | c345ce1 | 2011-12-16 12:28:32 +0100 | [diff] [blame] | 864 | argv[0], cfilename, err, strerror(err)); |
Victor Stinner | 9a6692f | 2010-10-14 10:51:24 +0000 | [diff] [blame] | 865 | if (cfilename_buffer) |
| 866 | PyMem_Free(cfilename_buffer); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 867 | return 2; |
| 868 | } |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 869 | else if (cmdline.skip_first_line) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 870 | int ch; |
| 871 | /* Push back first newline so line numbers |
| 872 | remain the same */ |
| 873 | while ((ch = getc(fp)) != EOF) { |
| 874 | if (ch == '\n') { |
| 875 | (void)ungetc(ch, fp); |
| 876 | break; |
| 877 | } |
| 878 | } |
| 879 | } |
| 880 | { |
Steve Dower | f2f373f | 2015-02-21 08:44:05 -0800 | [diff] [blame] | 881 | struct _Py_stat_struct sb; |
Victor Stinner | e134a7f | 2015-03-30 10:09:31 +0200 | [diff] [blame] | 882 | if (_Py_fstat_noraise(fileno(fp), &sb) == 0 && |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 883 | S_ISDIR(sb.st_mode)) { |
Victor Stinner | e134a7f | 2015-03-30 10:09:31 +0200 | [diff] [blame] | 884 | fprintf(stderr, |
| 885 | "%ls: '%ls' is a directory, cannot continue\n", |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 886 | argv[0], cmdline.filename); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 887 | fclose(fp); |
| 888 | return 1; |
| 889 | } |
| 890 | } |
| 891 | } |
Christian Heimes | 9cd1775 | 2007-11-18 19:35:23 +0000 | [diff] [blame] | 892 | |
Victor Stinner | 0a3ddad | 2010-08-07 16:34:25 +0000 | [diff] [blame] | 893 | if (sts == -1) |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 894 | sts = run_file(fp, cmdline.filename, &cf); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 895 | } |
Barry Warsaw | d86dcd3 | 2003-06-29 17:07:06 +0000 | [diff] [blame] | 896 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 897 | /* Check this environment variable at the end, to give programs the |
| 898 | * opportunity to set it from Python. |
| 899 | */ |
| 900 | if (!Py_InspectFlag && |
| 901 | (p = Py_GETENV("PYTHONINSPECT")) && *p != '\0') |
| 902 | { |
| 903 | Py_InspectFlag = 1; |
| 904 | } |
Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 905 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 906 | if (Py_InspectFlag && stdin_is_interactive && |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 907 | (cmdline.filename != NULL || cmdline.command != NULL || cmdline.module != NULL)) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 908 | Py_InspectFlag = 0; |
Antoine Pitrou | 1a6cb30 | 2013-05-04 20:08:35 +0200 | [diff] [blame] | 909 | RunInteractiveHook(); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 910 | /* XXX */ |
| 911 | sts = PyRun_AnyFileFlags(stdin, "<stdin>", &cf) != 0; |
| 912 | } |
| 913 | |
Martin Panter | b4ce1fc | 2015-11-30 03:18:29 +0000 | [diff] [blame] | 914 | if (Py_FinalizeEx() < 0) { |
| 915 | /* Value unlikely to be confused with a non-error exit status or |
| 916 | other special meaning */ |
| 917 | sts = 120; |
| 918 | } |
Barry Warsaw | 3e13b1e | 2001-02-23 16:46:39 +0000 | [diff] [blame] | 919 | |
| 920 | #ifdef __INSURE__ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 921 | /* Insure++ is a memory analysis tool that aids in discovering |
| 922 | * memory leaks and other memory problems. On Python exit, the |
| 923 | * interned string dictionaries are flagged as being in use at exit |
| 924 | * (which it is). Under normal circumstances, this is fine because |
| 925 | * the memory will be automatically reclaimed by the system. Under |
| 926 | * memory debugging, it's a huge source of useless noise, so we |
| 927 | * trade off slower shutdown for less distraction in the memory |
| 928 | * reports. -baw |
| 929 | */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 930 | _Py_ReleaseInternedUnicodeStrings(); |
Barry Warsaw | 3e13b1e | 2001-02-23 16:46:39 +0000 | [diff] [blame] | 931 | #endif /* __INSURE__ */ |
| 932 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 933 | return sts; |
Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 934 | } |
| 935 | |
Skip Montanaro | 786ea6b | 2004-03-01 15:44:05 +0000 | [diff] [blame] | 936 | /* this is gonna seem *real weird*, but if you put some other code between |
| 937 | Py_Main() and Py_GetArgcArgv() you will need to adjust the test in the |
| 938 | while statement in Misc/gdbinit:ppystack */ |
Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 939 | |
Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 940 | /* Make the *original* argc/argv available to other modules. |
| 941 | This is rare, but it is needed by the secureware extension. */ |
| 942 | |
| 943 | void |
Martin v. Löwis | 790465f | 2008-04-05 20:41:37 +0000 | [diff] [blame] | 944 | Py_GetArgcArgv(int *argc, wchar_t ***argv) |
Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 945 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 946 | *argc = orig_argc; |
| 947 | *argv = orig_argv; |
Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 948 | } |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 949 | |
| 950 | #ifdef __cplusplus |
| 951 | } |
| 952 | #endif |