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" |
Raymond Hettinger | db29e0f | 2004-10-07 06:46:25 +0000 | [diff] [blame] | 5 | #include "import.h" |
Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 6 | |
Antoine Pitrou | 5651eaa | 2008-09-06 20:46:58 +0000 | [diff] [blame] | 7 | #include <locale.h> |
| 8 | |
Martin v. Löwis | 79acb9e | 2002-12-06 12:48:53 +0000 | [diff] [blame] | 9 | #ifdef __VMS |
Martin v. Löwis | 7a924e6 | 2003-03-05 14:15:21 +0000 | [diff] [blame] | 10 | #include <unixlib.h> |
Martin v. Löwis | 79acb9e | 2002-12-06 12:48:53 +0000 | [diff] [blame] | 11 | #endif |
| 12 | |
Sjoerd Mullender | 9cf424b | 2002-08-09 13:35:18 +0000 | [diff] [blame] | 13 | #if defined(MS_WINDOWS) || defined(__CYGWIN__) |
Martin v. Löwis | 945362c | 2007-08-30 14:57:25 +0000 | [diff] [blame] | 14 | #include <windows.h> |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 15 | #ifdef HAVE_FCNTL_H |
Guido van Rossum | 3e7ae7a | 1997-01-17 22:05:38 +0000 | [diff] [blame] | 16 | #include <fcntl.h> |
Martin v. Löwis | 790465f | 2008-04-05 20:41:37 +0000 | [diff] [blame] | 17 | #define PATH_MAX MAXPATHLEN |
Guido van Rossum | 3e7ae7a | 1997-01-17 22:05:38 +0000 | [diff] [blame] | 18 | #endif |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 19 | #endif |
Guido van Rossum | 3e7ae7a | 1997-01-17 22:05:38 +0000 | [diff] [blame] | 20 | |
Martin v. Löwis | 945362c | 2007-08-30 14:57:25 +0000 | [diff] [blame] | 21 | #ifdef _MSC_VER |
| 22 | #include <crtdbg.h> |
| 23 | #endif |
| 24 | |
Andrew MacIntyre | 7bf6833 | 2002-03-03 02:59:16 +0000 | [diff] [blame] | 25 | #if (defined(PYOS_OS2) && !defined(PYCC_GCC)) || defined(MS_WINDOWS) |
Guido van Rossum | a075ce1 | 1997-12-05 21:56:45 +0000 | [diff] [blame] | 26 | #define PYTHONHOMEHELP "<prefix>\\lib" |
| 27 | #else |
Andrew MacIntyre | 7bf6833 | 2002-03-03 02:59:16 +0000 | [diff] [blame] | 28 | #if defined(PYOS_OS2) && defined(PYCC_GCC) |
| 29 | #define PYTHONHOMEHELP "<prefix>/Lib" |
| 30 | #else |
Marc-André Lemburg | da4dbc3 | 2001-06-12 16:13:51 +0000 | [diff] [blame] | 31 | #define PYTHONHOMEHELP "<prefix>/pythonX.X" |
Guido van Rossum | a075ce1 | 1997-12-05 21:56:45 +0000 | [diff] [blame] | 32 | #endif |
Andrew MacIntyre | 7bf6833 | 2002-03-03 02:59:16 +0000 | [diff] [blame] | 33 | #endif |
Guido van Rossum | a075ce1 | 1997-12-05 21:56:45 +0000 | [diff] [blame] | 34 | |
Thomas Wouters | 2cffc7d | 2000-11-03 08:18:37 +0000 | [diff] [blame] | 35 | #include "pygetopt.h" |
| 36 | |
Guido van Rossum | a22865e | 2000-09-05 04:41:18 +0000 | [diff] [blame] | 37 | #define COPYRIGHT \ |
Guido van Rossum | 36002d7 | 2001-07-18 16:59:46 +0000 | [diff] [blame] | 38 | "Type \"help\", \"copyright\", \"credits\" or \"license\" " \ |
| 39 | "for more information." |
Guido van Rossum | a22865e | 2000-09-05 04:41:18 +0000 | [diff] [blame] | 40 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 41 | #ifdef __cplusplus |
| 42 | extern "C" { |
| 43 | #endif |
| 44 | |
Guido van Rossum | ac56b03 | 1996-07-21 02:33:38 +0000 | [diff] [blame] | 45 | /* For Py_GetArgcArgv(); set by main() */ |
Martin v. Löwis | 790465f | 2008-04-05 20:41:37 +0000 | [diff] [blame] | 46 | static wchar_t **orig_argv; |
Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 47 | static int orig_argc; |
| 48 | |
Guido van Rossum | bceccf5 | 2001-04-10 22:07:43 +0000 | [diff] [blame] | 49 | /* command line options */ |
Christian Heimes | 8dc226f | 2008-05-06 23:45:46 +0000 | [diff] [blame] | 50 | #define BASE_OPTS L"bBc:dEhiJm:OsStuvVW:xX?" |
Guido van Rossum | bceccf5 | 2001-04-10 22:07:43 +0000 | [diff] [blame] | 51 | |
Guido van Rossum | bceccf5 | 2001-04-10 22:07:43 +0000 | [diff] [blame] | 52 | #define PROGRAM_OPTS BASE_OPTS |
Guido van Rossum | 3ed4c15 | 2001-03-02 06:18:03 +0000 | [diff] [blame] | 53 | |
Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 54 | /* Short usage message (with %s for argv0) */ |
| 55 | static char *usage_line = |
Martin v. Löwis | 790465f | 2008-04-05 20:41:37 +0000 | [diff] [blame] | 56 | "usage: %ls [option] ... [-c cmd | -m mod | file | -] [arg] ...\n"; |
Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 57 | |
| 58 | /* Long usage message, split into parts < 512 bytes */ |
Guido van Rossum | 393661d | 2001-08-31 17:40:15 +0000 | [diff] [blame] | 59 | static char *usage_1 = "\ |
Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 60 | Options and arguments (and corresponding environment variables):\n\ |
Christian Heimes | 2ab3444 | 2008-09-03 20:31:07 +0000 | [diff] [blame] | 61 | -b : issue warnings about str(bytes_instance), str(bytearray_instance)\n\ |
| 62 | and comparing bytes/bytearray with str. (-bb: issue errors)\n\ |
Christian Heimes | 790c823 | 2008-01-07 21:14:23 +0000 | [diff] [blame] | 63 | -B : don't write .py[co] files on import; also PYTHONDONTWRITEBYTECODE=x\n\ |
Guido van Rossum | 393661d | 2001-08-31 17:40:15 +0000 | [diff] [blame] | 64 | -c cmd : program passed in as string (terminates option list)\n\ |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 65 | -d : debug output from parser; also PYTHONDEBUG=x\n\ |
Christian Heimes | 790c823 | 2008-01-07 21:14:23 +0000 | [diff] [blame] | 66 | -E : ignore PYTHON* environment variables (such as PYTHONPATH)\n\ |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 67 | -h : print this help message and exit (also --help)\n\ |
Guido van Rossum | 61c345f | 2001-09-04 03:26:15 +0000 | [diff] [blame] | 68 | "; |
| 69 | static char *usage_2 = "\ |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 70 | -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 Hettinger | db29e0f | 2004-10-07 06:46:25 +0000 | [diff] [blame] | 72 | -m mod : run library module as a script (terminates option list)\n\ |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 73 | -O : optimize generated bytecode slightly; also PYTHONOPTIMIZE=x\n\ |
Guido van Rossum | 6b86a42 | 1999-01-28 15:07:47 +0000 | [diff] [blame] | 74 | -OO : remove doc-strings in addition to the -O optimizations\n\ |
Christian Heimes | 8dc226f | 2008-05-06 23:45:46 +0000 | [diff] [blame] | 75 | -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] | 76 | -S : don't imply 'import site' on initialization\n\ |
Guido van Rossum | 393661d | 2001-08-31 17:40:15 +0000 | [diff] [blame] | 77 | "; |
| 78 | static char *usage_3 = "\ |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 79 | -u : unbuffered binary stdout and stderr; also PYTHONUNBUFFERED=x\n\ |
Raymond Hettinger | db29e0f | 2004-10-07 06:46:25 +0000 | [diff] [blame] | 80 | see man page for details on internal buffering relating to '-u'\n\ |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 81 | -v : verbose (trace import statements); also PYTHONVERBOSE=x\n\ |
| 82 | can be supplied multiple times to increase verbosity\n\ |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 83 | -V : print the Python version number and exit (also --version)\n\ |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 84 | -W arg : warning control; arg is action:message:category:module:lineno\n\ |
Philip Jenvey | 0805ca3 | 2010-04-07 04:04:10 +0000 | [diff] [blame] | 85 | also PYTHONWARNINGS=arg\n\ |
Guido van Rossum | 393661d | 2001-08-31 17:40:15 +0000 | [diff] [blame] | 86 | -x : skip first line of source, allowing use of non-Unix forms of #!cmd\n\ |
Guido van Rossum | 7922bd7 | 1997-08-29 22:34:47 +0000 | [diff] [blame] | 87 | "; |
Guido van Rossum | 393661d | 2001-08-31 17:40:15 +0000 | [diff] [blame] | 88 | static char *usage_4 = "\ |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 89 | file : program read from script file\n\ |
| 90 | - : program read from stdin (default; interactive mode if a tty)\n\ |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 91 | arg ...: arguments passed to program in sys.argv[1:]\n\n\ |
Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 92 | Other environment variables:\n\ |
| 93 | PYTHONSTARTUP: file executed on interactive startup (no default)\n\ |
Guido van Rossum | a075ce1 | 1997-12-05 21:56:45 +0000 | [diff] [blame] | 94 | PYTHONPATH : '%c'-separated list of directories prefixed to the\n\ |
Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 95 | default module search path. The result is sys.path.\n\ |
Christian Heimes | 790c823 | 2008-01-07 21:14:23 +0000 | [diff] [blame] | 96 | "; |
Victor Stinner | 9802b39 | 2010-08-19 11:36:43 +0000 | [diff] [blame^] | 97 | static char *usage_5 = |
| 98 | "PYTHONHOME : alternate <prefix> directory (or <prefix>%c<exec_prefix>).\n" |
| 99 | " The default module search path uses %s.\n" |
| 100 | "PYTHONCASEOK : ignore case in 'import' statements (Windows).\n" |
| 101 | "PYTHONIOENCODING: Encoding[:errors] used for stdin/stdout/stderr.\n" |
| 102 | #if !(defined(MS_WINDOWS) && defined(HAVE_USABLE_WCHAR_T)) && !defined(__APPLE__) |
| 103 | "PYTHONFSENCODING: Encoding used for the filesystem.\n" |
| 104 | #endif |
| 105 | ; |
Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 106 | |
Antoine Pitrou | e9b428f | 2010-08-13 22:25:01 +0000 | [diff] [blame] | 107 | FILE * |
| 108 | _Py_wfopen(const wchar_t *path, const wchar_t *mode) |
Martin v. Löwis | 790465f | 2008-04-05 20:41:37 +0000 | [diff] [blame] | 109 | { |
Antoine Pitrou | e9b428f | 2010-08-13 22:25:01 +0000 | [diff] [blame] | 110 | #ifndef MS_WINDOWS |
Victor Stinner | f2e08b3 | 2010-08-13 23:29:08 +0000 | [diff] [blame] | 111 | FILE *f; |
| 112 | char *cpath; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 113 | char cmode[10]; |
| 114 | size_t r; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 115 | r = wcstombs(cmode, mode, 10); |
| 116 | if (r == (size_t)-1 || r >= 10) { |
| 117 | errno = EINVAL; |
| 118 | return NULL; |
| 119 | } |
Victor Stinner | f2e08b3 | 2010-08-13 23:29:08 +0000 | [diff] [blame] | 120 | cpath = _Py_wchar2char(path); |
| 121 | if (cpath == NULL) |
| 122 | return NULL; |
| 123 | f = fopen(cpath, cmode); |
| 124 | PyMem_Free(cpath); |
| 125 | return f; |
Antoine Pitrou | e9b428f | 2010-08-13 22:25:01 +0000 | [diff] [blame] | 126 | #else |
| 127 | return _wfopen(path, mode); |
Martin v. Löwis | 790465f | 2008-04-05 20:41:37 +0000 | [diff] [blame] | 128 | #endif |
Antoine Pitrou | e9b428f | 2010-08-13 22:25:01 +0000 | [diff] [blame] | 129 | } |
Martin v. Löwis | 790465f | 2008-04-05 20:41:37 +0000 | [diff] [blame] | 130 | |
Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 131 | |
Martin v. Löwis | 852ba7e | 2003-03-30 17:09:58 +0000 | [diff] [blame] | 132 | static int |
Martin v. Löwis | 790465f | 2008-04-05 20:41:37 +0000 | [diff] [blame] | 133 | usage(int exitcode, wchar_t* program) |
Barry Warsaw | 3b2aedb | 2000-09-15 18:40:42 +0000 | [diff] [blame] | 134 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 135 | FILE *f = exitcode ? stderr : stdout; |
Guido van Rossum | 393661d | 2001-08-31 17:40:15 +0000 | [diff] [blame] | 136 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 137 | fprintf(f, usage_line, program); |
| 138 | if (exitcode) |
| 139 | fprintf(f, "Try `python -h' for more information.\n"); |
| 140 | else { |
| 141 | fputs(usage_1, f); |
| 142 | fputs(usage_2, f); |
| 143 | fputs(usage_3, f); |
| 144 | fprintf(f, usage_4, DELIM); |
| 145 | fprintf(f, usage_5, DELIM, PYTHONHOMEHELP); |
| 146 | } |
Martin v. Löwis | 79acb9e | 2002-12-06 12:48:53 +0000 | [diff] [blame] | 147 | #if defined(__VMS) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 148 | if (exitcode == 0) { |
| 149 | /* suppress 'error' message */ |
| 150 | return 1; |
| 151 | } |
| 152 | else { |
| 153 | /* STS$M_INHIB_MSG + SS$_ABORT */ |
| 154 | return 0x1000002c; |
| 155 | } |
Martin v. Löwis | 79acb9e | 2002-12-06 12:48:53 +0000 | [diff] [blame] | 156 | #else |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 157 | return exitcode; |
Martin v. Löwis | 79acb9e | 2002-12-06 12:48:53 +0000 | [diff] [blame] | 158 | #endif |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 159 | /*NOTREACHED*/ |
Barry Warsaw | 3b2aedb | 2000-09-15 18:40:42 +0000 | [diff] [blame] | 160 | } |
| 161 | |
Martin v. Löwis | 6caea37 | 2003-11-18 19:46:25 +0000 | [diff] [blame] | 162 | static void RunStartupFile(PyCompilerFlags *cf) |
| 163 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 164 | char *startup = Py_GETENV("PYTHONSTARTUP"); |
| 165 | if (startup != NULL && startup[0] != '\0') { |
| 166 | FILE *fp = fopen(startup, "r"); |
| 167 | if (fp != NULL) { |
| 168 | (void) PyRun_SimpleFileExFlags(fp, startup, 0, cf); |
| 169 | PyErr_Clear(); |
| 170 | fclose(fp); |
| 171 | } else { |
| 172 | int save_errno; |
| 173 | |
| 174 | save_errno = errno; |
| 175 | PySys_WriteStderr("Could not open PYTHONSTARTUP\n"); |
| 176 | errno = save_errno; |
| 177 | PyErr_SetFromErrnoWithFilename(PyExc_IOError, |
| 178 | startup); |
| 179 | PyErr_Print(); |
| 180 | PyErr_Clear(); |
| 181 | } |
| 182 | } |
Martin v. Löwis | 6caea37 | 2003-11-18 19:46:25 +0000 | [diff] [blame] | 183 | } |
| 184 | |
Thomas Wouters | a977329 | 2006-04-21 09:43:23 +0000 | [diff] [blame] | 185 | |
Antoine Pitrou | 5651eaa | 2008-09-06 20:46:58 +0000 | [diff] [blame] | 186 | static int RunModule(wchar_t *modname, int set_argv0) |
Raymond Hettinger | db29e0f | 2004-10-07 06:46:25 +0000 | [diff] [blame] | 187 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 188 | PyObject *module, *runpy, *runmodule, *runargs, *result; |
| 189 | runpy = PyImport_ImportModule("runpy"); |
| 190 | if (runpy == NULL) { |
| 191 | fprintf(stderr, "Could not import runpy module\n"); |
| 192 | return -1; |
| 193 | } |
| 194 | runmodule = PyObject_GetAttrString(runpy, "_run_module_as_main"); |
| 195 | if (runmodule == NULL) { |
| 196 | fprintf(stderr, "Could not access runpy._run_module_as_main\n"); |
| 197 | Py_DECREF(runpy); |
| 198 | return -1; |
| 199 | } |
| 200 | module = PyUnicode_FromWideChar(modname, wcslen(modname)); |
| 201 | if (module == NULL) { |
| 202 | fprintf(stderr, "Could not convert module name to unicode\n"); |
| 203 | Py_DECREF(runpy); |
| 204 | Py_DECREF(runmodule); |
| 205 | return -1; |
| 206 | } |
| 207 | runargs = Py_BuildValue("(Oi)", module, set_argv0); |
| 208 | if (runargs == NULL) { |
| 209 | fprintf(stderr, |
| 210 | "Could not create arguments for runpy._run_module_as_main\n"); |
| 211 | Py_DECREF(runpy); |
| 212 | Py_DECREF(runmodule); |
| 213 | Py_DECREF(module); |
| 214 | return -1; |
| 215 | } |
| 216 | result = PyObject_Call(runmodule, runargs, NULL); |
| 217 | if (result == NULL) { |
| 218 | PyErr_Print(); |
| 219 | } |
| 220 | Py_DECREF(runpy); |
| 221 | Py_DECREF(runmodule); |
| 222 | Py_DECREF(module); |
| 223 | Py_DECREF(runargs); |
| 224 | if (result == NULL) { |
| 225 | return -1; |
| 226 | } |
| 227 | Py_DECREF(result); |
| 228 | return 0; |
Raymond Hettinger | db29e0f | 2004-10-07 06:46:25 +0000 | [diff] [blame] | 229 | } |
Barry Warsaw | 3b2aedb | 2000-09-15 18:40:42 +0000 | [diff] [blame] | 230 | |
Martin v. Löwis | 790465f | 2008-04-05 20:41:37 +0000 | [diff] [blame] | 231 | static int RunMainFromImporter(wchar_t *filename) |
Christian Heimes | 9cd1775 | 2007-11-18 19:35:23 +0000 | [diff] [blame] | 232 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 233 | PyObject *argv0 = NULL, *importer = NULL; |
Christian Heimes | 9cd1775 | 2007-11-18 19:35:23 +0000 | [diff] [blame] | 234 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 235 | if ((argv0 = PyUnicode_FromWideChar(filename,wcslen(filename))) && |
| 236 | (importer = PyImport_GetImporter(argv0)) && |
| 237 | (importer->ob_type != &PyNullImporter_Type)) |
| 238 | { |
| 239 | /* argv0 is usable as an import source, so |
| 240 | put it in sys.path[0] and import __main__ */ |
| 241 | PyObject *sys_path = NULL; |
| 242 | if ((sys_path = PySys_GetObject("path")) && |
| 243 | !PyList_SetItem(sys_path, 0, argv0)) |
| 244 | { |
| 245 | Py_INCREF(argv0); |
| 246 | Py_DECREF(importer); |
| 247 | sys_path = NULL; |
| 248 | return RunModule(L"__main__", 0) != 0; |
Guido van Rossum | 74c29c7 | 2007-11-19 18:36:41 +0000 | [diff] [blame] | 249 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 250 | } |
| 251 | Py_XDECREF(argv0); |
| 252 | Py_XDECREF(importer); |
| 253 | if (PyErr_Occurred()) { |
| 254 | PyErr_Print(); |
| 255 | return 1; |
| 256 | } |
| 257 | else { |
| 258 | return -1; |
| 259 | } |
Christian Heimes | 9cd1775 | 2007-11-18 19:35:23 +0000 | [diff] [blame] | 260 | } |
| 261 | |
Victor Stinner | a62207c | 2010-08-07 10:57:17 +0000 | [diff] [blame] | 262 | static int |
| 263 | run_command(wchar_t *command, PyCompilerFlags *cf) |
| 264 | { |
| 265 | PyObject *unicode, *bytes; |
| 266 | int ret; |
| 267 | |
| 268 | unicode = PyUnicode_FromWideChar(command, -1); |
| 269 | if (unicode == NULL) |
| 270 | goto error; |
| 271 | bytes = PyUnicode_AsUTF8String(unicode); |
| 272 | Py_DECREF(unicode); |
| 273 | if (bytes == NULL) |
| 274 | goto error; |
| 275 | ret = PyRun_SimpleStringFlags(PyBytes_AsString(bytes), cf); |
| 276 | Py_DECREF(bytes); |
| 277 | return ret != 0; |
| 278 | |
| 279 | error: |
Victor Stinner | 398356b | 2010-08-18 22:23:22 +0000 | [diff] [blame] | 280 | PySys_WriteStderr("Unable to decode the command from the command line:\n"); |
Victor Stinner | a62207c | 2010-08-07 10:57:17 +0000 | [diff] [blame] | 281 | PyErr_Print(); |
| 282 | return 1; |
| 283 | } |
| 284 | |
Victor Stinner | 0a3ddad | 2010-08-07 16:34:25 +0000 | [diff] [blame] | 285 | static int |
| 286 | run_file(FILE *fp, const wchar_t *filename, PyCompilerFlags *p_cf) |
| 287 | { |
| 288 | PyObject *unicode, *bytes = NULL; |
| 289 | char *filename_str; |
| 290 | int run; |
| 291 | |
| 292 | /* call pending calls like signal handlers (SIGINT) */ |
| 293 | if (Py_MakePendingCalls() == -1) { |
| 294 | PyErr_Print(); |
| 295 | return 1; |
| 296 | } |
| 297 | |
| 298 | if (filename) { |
| 299 | unicode = PyUnicode_FromWideChar(filename, wcslen(filename)); |
| 300 | if (unicode != NULL) { |
| 301 | bytes = PyUnicode_AsUTF8String(unicode); |
| 302 | Py_DECREF(unicode); |
| 303 | } |
| 304 | if (bytes != NULL) |
| 305 | filename_str = PyBytes_AsString(bytes); |
| 306 | else { |
| 307 | PyErr_Clear(); |
| 308 | filename_str = "<decoding error>"; |
| 309 | } |
| 310 | } |
| 311 | else |
| 312 | filename_str = "<stdin>"; |
| 313 | |
| 314 | run = PyRun_AnyFileExFlags(fp, filename_str, filename != NULL, p_cf); |
| 315 | Py_XDECREF(bytes); |
| 316 | return run != 0; |
| 317 | } |
| 318 | |
Christian Heimes | 9cd1775 | 2007-11-18 19:35:23 +0000 | [diff] [blame] | 319 | |
Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 320 | /* Main program */ |
| 321 | |
Mark Hammond | fe51c6d | 2002-08-02 02:27:13 +0000 | [diff] [blame] | 322 | int |
Martin v. Löwis | 790465f | 2008-04-05 20:41:37 +0000 | [diff] [blame] | 323 | Py_Main(int argc, wchar_t **argv) |
Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 324 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 325 | int c; |
| 326 | int sts; |
| 327 | wchar_t *command = NULL; |
| 328 | wchar_t *filename = NULL; |
| 329 | wchar_t *module = NULL; |
| 330 | FILE *fp = stdin; |
| 331 | char *p; |
Philip Jenvey | e53de3d | 2010-04-14 03:01:39 +0000 | [diff] [blame] | 332 | #ifdef MS_WINDOWS |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 333 | wchar_t *wp; |
Philip Jenvey | e53de3d | 2010-04-14 03:01:39 +0000 | [diff] [blame] | 334 | #endif |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 335 | int skipfirstline = 0; |
| 336 | int stdin_is_interactive = 0; |
| 337 | int help = 0; |
| 338 | int version = 0; |
| 339 | int saw_unbuffered_flag = 0; |
| 340 | PyCompilerFlags cf; |
Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 341 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 342 | cf.cf_flags = 0; |
Guido van Rossum | 393661d | 2001-08-31 17:40:15 +0000 | [diff] [blame] | 343 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 344 | orig_argc = argc; /* For Py_GetArgcArgv() */ |
| 345 | orig_argv = argv; |
Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 346 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 347 | PySys_ResetWarnOptions(); |
Guido van Rossum | 47f5fdc | 2000-12-15 22:00:54 +0000 | [diff] [blame] | 348 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 349 | while ((c = _PyOS_GetOpt(argc, argv, PROGRAM_OPTS)) != EOF) { |
| 350 | if (c == 'c') { |
| 351 | size_t len; |
| 352 | /* -c is the last option; following arguments |
| 353 | that look like options are left for the |
| 354 | command to interpret. */ |
Amaury Forgeot d'Arc | 9a5499b | 2008-11-11 23:04:59 +0000 | [diff] [blame] | 355 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 356 | len = wcslen(_PyOS_optarg) + 1 + 1; |
| 357 | command = (wchar_t *)malloc(sizeof(wchar_t) * len); |
| 358 | if (command == NULL) |
| 359 | Py_FatalError( |
| 360 | "not enough memory to copy -c argument"); |
| 361 | wcscpy(command, _PyOS_optarg); |
| 362 | command[len - 2] = '\n'; |
| 363 | command[len - 1] = 0; |
| 364 | break; |
| 365 | } |
Guido van Rossum | 393661d | 2001-08-31 17:40:15 +0000 | [diff] [blame] | 366 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 367 | if (c == 'm') { |
| 368 | /* -m is the last option; following arguments |
| 369 | that look like options are left for the |
| 370 | module to interpret. */ |
| 371 | module = _PyOS_optarg; |
| 372 | break; |
| 373 | } |
Raymond Hettinger | db29e0f | 2004-10-07 06:46:25 +0000 | [diff] [blame] | 374 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 375 | switch (c) { |
| 376 | case 'b': |
| 377 | Py_BytesWarningFlag++; |
| 378 | break; |
Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 379 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 380 | case 'd': |
| 381 | Py_DebugFlag++; |
| 382 | break; |
Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 383 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 384 | case 'i': |
| 385 | Py_InspectFlag++; |
| 386 | Py_InteractiveFlag++; |
| 387 | break; |
Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 388 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 389 | /* case 'J': reserved for Jython */ |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 390 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 391 | case 'O': |
| 392 | Py_OptimizeFlag++; |
| 393 | break; |
Guido van Rossum | 7614da6 | 1997-03-03 19:14:45 +0000 | [diff] [blame] | 394 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 395 | case 'B': |
| 396 | Py_DontWriteBytecodeFlag++; |
| 397 | break; |
Christian Heimes | 790c823 | 2008-01-07 21:14:23 +0000 | [diff] [blame] | 398 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 399 | case 's': |
| 400 | Py_NoUserSiteDirectory++; |
| 401 | break; |
Christian Heimes | 8dc226f | 2008-05-06 23:45:46 +0000 | [diff] [blame] | 402 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 403 | case 'S': |
| 404 | Py_NoSiteFlag++; |
| 405 | break; |
Guido van Rossum | 7922bd7 | 1997-08-29 22:34:47 +0000 | [diff] [blame] | 406 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 407 | case 'E': |
| 408 | Py_IgnoreEnvironmentFlag++; |
| 409 | break; |
Neil Schemenauer | 7d4bb9f | 2001-07-23 16:30:27 +0000 | [diff] [blame] | 410 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 411 | case 't': |
| 412 | /* ignored for backwards compatibility */ |
| 413 | break; |
Guido van Rossum | bba92ca | 1998-04-10 19:39:15 +0000 | [diff] [blame] | 414 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 415 | case 'u': |
| 416 | Py_UnbufferedStdioFlag = 1; |
| 417 | saw_unbuffered_flag = 1; |
| 418 | break; |
Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 419 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 420 | case 'v': |
| 421 | Py_VerboseFlag++; |
| 422 | break; |
Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 423 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 424 | case 'x': |
| 425 | skipfirstline = 1; |
| 426 | break; |
Guido van Rossum | a075ce1 | 1997-12-05 21:56:45 +0000 | [diff] [blame] | 427 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 428 | /* case 'X': reserved for implementation-specific arguments */ |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 429 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 430 | case 'h': |
| 431 | case '?': |
| 432 | help++; |
| 433 | break; |
Guido van Rossum | 45aecf4 | 2006-03-15 04:58:47 +0000 | [diff] [blame] | 434 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 435 | case 'V': |
| 436 | version++; |
| 437 | break; |
Guido van Rossum | c15a9a1 | 2000-05-01 17:54:33 +0000 | [diff] [blame] | 438 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 439 | case 'W': |
| 440 | PySys_AddWarnOption(_PyOS_optarg); |
| 441 | break; |
Guido van Rossum | 47f5fdc | 2000-12-15 22:00:54 +0000 | [diff] [blame] | 442 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 443 | /* This space reserved for other options */ |
Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 444 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 445 | default: |
| 446 | return usage(2, argv[0]); |
| 447 | /*NOTREACHED*/ |
Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 448 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 449 | } |
| 450 | } |
Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 451 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 452 | if (help) |
| 453 | return usage(0, argv[0]); |
Barry Warsaw | 3b2aedb | 2000-09-15 18:40:42 +0000 | [diff] [blame] | 454 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 455 | if (version) { |
| 456 | fprintf(stderr, "Python %s\n", PY_VERSION); |
| 457 | return 0; |
| 458 | } |
Barry Warsaw | 3b2aedb | 2000-09-15 18:40:42 +0000 | [diff] [blame] | 459 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 460 | if (!Py_InspectFlag && |
| 461 | (p = Py_GETENV("PYTHONINSPECT")) && *p != '\0') |
| 462 | Py_InspectFlag = 1; |
| 463 | if (!saw_unbuffered_flag && |
| 464 | (p = Py_GETENV("PYTHONUNBUFFERED")) && *p != '\0') |
| 465 | Py_UnbufferedStdioFlag = 1; |
Neil Schemenauer | 7d4bb9f | 2001-07-23 16:30:27 +0000 | [diff] [blame] | 466 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 467 | if (!Py_NoUserSiteDirectory && |
| 468 | (p = Py_GETENV("PYTHONNOUSERSITE")) && *p != '\0') |
| 469 | Py_NoUserSiteDirectory = 1; |
Christian Heimes | 8dc226f | 2008-05-06 23:45:46 +0000 | [diff] [blame] | 470 | |
Philip Jenvey | e53de3d | 2010-04-14 03:01:39 +0000 | [diff] [blame] | 471 | #ifdef MS_WINDOWS |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 472 | if (!Py_IgnoreEnvironmentFlag && (wp = _wgetenv(L"PYTHONWARNINGS")) && |
| 473 | *wp != L'\0') { |
| 474 | wchar_t *buf, *warning; |
Philip Jenvey | 0805ca3 | 2010-04-07 04:04:10 +0000 | [diff] [blame] | 475 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 476 | buf = (wchar_t *)malloc((wcslen(wp) + 1) * sizeof(wchar_t)); |
| 477 | if (buf == NULL) |
| 478 | Py_FatalError( |
| 479 | "not enough memory to copy PYTHONWARNINGS"); |
| 480 | wcscpy(buf, wp); |
| 481 | for (warning = wcstok(buf, L","); |
| 482 | warning != NULL; |
| 483 | warning = wcstok(NULL, L",")) { |
| 484 | PySys_AddWarnOption(warning); |
| 485 | } |
| 486 | free(buf); |
| 487 | } |
Philip Jenvey | e53de3d | 2010-04-14 03:01:39 +0000 | [diff] [blame] | 488 | #else |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 489 | if ((p = Py_GETENV("PYTHONWARNINGS")) && *p != '\0') { |
| 490 | char *buf, *oldloc; |
Victor Stinner | 9ca9c25 | 2010-05-19 16:53:30 +0000 | [diff] [blame] | 491 | PyObject *warning; |
Philip Jenvey | e53de3d | 2010-04-14 03:01:39 +0000 | [diff] [blame] | 492 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 493 | /* settle for strtok here as there's no one standard |
| 494 | C89 wcstok */ |
| 495 | buf = (char *)malloc(strlen(p) + 1); |
| 496 | if (buf == NULL) |
| 497 | Py_FatalError( |
| 498 | "not enough memory to copy PYTHONWARNINGS"); |
| 499 | strcpy(buf, p); |
| 500 | oldloc = strdup(setlocale(LC_ALL, NULL)); |
| 501 | setlocale(LC_ALL, ""); |
| 502 | for (p = strtok(buf, ","); p != NULL; p = strtok(NULL, ",")) { |
Victor Stinner | 9ca9c25 | 2010-05-19 16:53:30 +0000 | [diff] [blame] | 503 | warning = PyUnicode_DecodeFSDefault(p); |
| 504 | if (warning != NULL) { |
| 505 | PySys_AddWarnOptionUnicode(warning); |
| 506 | Py_DECREF(warning); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 507 | } |
| 508 | } |
| 509 | setlocale(LC_ALL, oldloc); |
| 510 | free(oldloc); |
| 511 | free(buf); |
| 512 | } |
Philip Jenvey | e53de3d | 2010-04-14 03:01:39 +0000 | [diff] [blame] | 513 | #endif |
Philip Jenvey | 0805ca3 | 2010-04-07 04:04:10 +0000 | [diff] [blame] | 514 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 515 | if (command == NULL && module == NULL && _PyOS_optind < argc && |
| 516 | wcscmp(argv[_PyOS_optind], L"-") != 0) |
| 517 | { |
Martin v. Löwis | 7a924e6 | 2003-03-05 14:15:21 +0000 | [diff] [blame] | 518 | #ifdef __VMS |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 519 | filename = decc$translate_vms(argv[_PyOS_optind]); |
| 520 | if (filename == (char *)0 || filename == (char *)-1) |
| 521 | filename = argv[_PyOS_optind]; |
Martin v. Löwis | 7a924e6 | 2003-03-05 14:15:21 +0000 | [diff] [blame] | 522 | |
| 523 | #else |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 524 | filename = argv[_PyOS_optind]; |
Martin v. Löwis | 7a924e6 | 2003-03-05 14:15:21 +0000 | [diff] [blame] | 525 | #endif |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 526 | } |
Guido van Rossum | 775af91 | 1997-02-14 19:50:32 +0000 | [diff] [blame] | 527 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 528 | stdin_is_interactive = Py_FdIsInteractive(stdin, (char *)0); |
Guido van Rossum | 775af91 | 1997-02-14 19:50:32 +0000 | [diff] [blame] | 529 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 530 | if (Py_UnbufferedStdioFlag) { |
Sjoerd Mullender | 9cf424b | 2002-08-09 13:35:18 +0000 | [diff] [blame] | 531 | #if defined(MS_WINDOWS) || defined(__CYGWIN__) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 532 | _setmode(fileno(stdin), O_BINARY); |
| 533 | _setmode(fileno(stdout), O_BINARY); |
Guido van Rossum | f22d7e2 | 1997-01-11 19:28:55 +0000 | [diff] [blame] | 534 | #endif |
Guido van Rossum | 22ffac1 | 1998-03-06 15:30:39 +0000 | [diff] [blame] | 535 | #ifdef HAVE_SETVBUF |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 536 | setvbuf(stdin, (char *)NULL, _IONBF, BUFSIZ); |
| 537 | setvbuf(stdout, (char *)NULL, _IONBF, BUFSIZ); |
| 538 | setvbuf(stderr, (char *)NULL, _IONBF, BUFSIZ); |
Guido van Rossum | 22ffac1 | 1998-03-06 15:30:39 +0000 | [diff] [blame] | 539 | #else /* !HAVE_SETVBUF */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 540 | setbuf(stdin, (char *)NULL); |
| 541 | setbuf(stdout, (char *)NULL); |
| 542 | setbuf(stderr, (char *)NULL); |
Guido van Rossum | 22ffac1 | 1998-03-06 15:30:39 +0000 | [diff] [blame] | 543 | #endif /* !HAVE_SETVBUF */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 544 | } |
| 545 | else if (Py_InteractiveFlag) { |
Guido van Rossum | b31c7dc | 1997-04-11 22:19:12 +0000 | [diff] [blame] | 546 | #ifdef MS_WINDOWS |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 547 | /* Doesn't have to have line-buffered -- use unbuffered */ |
| 548 | /* Any set[v]buf(stdin, ...) screws up Tkinter :-( */ |
| 549 | setvbuf(stdout, (char *)NULL, _IONBF, BUFSIZ); |
Guido van Rossum | 22ffac1 | 1998-03-06 15:30:39 +0000 | [diff] [blame] | 550 | #else /* !MS_WINDOWS */ |
| 551 | #ifdef HAVE_SETVBUF |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 552 | setvbuf(stdin, (char *)NULL, _IOLBF, BUFSIZ); |
| 553 | setvbuf(stdout, (char *)NULL, _IOLBF, BUFSIZ); |
Guido van Rossum | 22ffac1 | 1998-03-06 15:30:39 +0000 | [diff] [blame] | 554 | #endif /* HAVE_SETVBUF */ |
| 555 | #endif /* !MS_WINDOWS */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 556 | /* Leave stderr alone - it should be unbuffered anyway. */ |
| 557 | } |
Martin v. Löwis | 79acb9e | 2002-12-06 12:48:53 +0000 | [diff] [blame] | 558 | #ifdef __VMS |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 559 | else { |
| 560 | setvbuf (stdout, (char *)NULL, _IOLBF, BUFSIZ); |
| 561 | } |
Martin v. Löwis | 79acb9e | 2002-12-06 12:48:53 +0000 | [diff] [blame] | 562 | #endif /* __VMS */ |
Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 563 | |
Just van Rossum | 2ac79ef | 2003-03-05 15:46:54 +0000 | [diff] [blame] | 564 | #ifdef __APPLE__ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 565 | /* On MacOS X, when the Python interpreter is embedded in an |
| 566 | application bundle, it gets executed by a bootstrapping script |
| 567 | that does os.execve() with an argv[0] that's different from the |
| 568 | actual Python executable. This is needed to keep the Finder happy, |
| 569 | or rather, to work around Apple's overly strict requirements of |
| 570 | the process name. However, we still need a usable sys.executable, |
| 571 | so the actual executable path is passed in an environment variable. |
| 572 | See Lib/plat-mac/bundlebuiler.py for details about the bootstrap |
| 573 | script. */ |
| 574 | if ((p = Py_GETENV("PYTHONEXECUTABLE")) && *p != '\0') { |
| 575 | wchar_t* buffer; |
| 576 | size_t len = strlen(p); |
| 577 | size_t r; |
Ronald Oussoren | 3e264e1 | 2009-02-12 15:55:38 +0000 | [diff] [blame] | 578 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 579 | buffer = malloc(len * sizeof(wchar_t)); |
| 580 | if (buffer == NULL) { |
| 581 | Py_FatalError( |
| 582 | "not enough memory to copy PYTHONEXECUTABLE"); |
| 583 | } |
Ronald Oussoren | 3e264e1 | 2009-02-12 15:55:38 +0000 | [diff] [blame] | 584 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 585 | r = mbstowcs(buffer, p, len); |
| 586 | Py_SetProgramName(buffer); |
| 587 | /* buffer is now handed off - do not free */ |
| 588 | } else { |
| 589 | Py_SetProgramName(argv[0]); |
| 590 | } |
Just van Rossum | 2ac79ef | 2003-03-05 15:46:54 +0000 | [diff] [blame] | 591 | #else |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 592 | Py_SetProgramName(argv[0]); |
Jack Jansen | fbd861b | 2003-03-05 16:00:15 +0000 | [diff] [blame] | 593 | #endif |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 594 | Py_Initialize(); |
Guido van Rossum | ed52aac | 1997-07-19 19:20:32 +0000 | [diff] [blame] | 595 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 596 | if (Py_VerboseFlag || |
| 597 | (command == NULL && filename == NULL && module == NULL && stdin_is_interactive)) { |
| 598 | fprintf(stderr, "Python %s on %s\n", |
| 599 | Py_GetVersion(), Py_GetPlatform()); |
| 600 | if (!Py_NoSiteFlag) |
| 601 | fprintf(stderr, "%s\n", COPYRIGHT); |
| 602 | } |
Guido van Rossum | 393661d | 2001-08-31 17:40:15 +0000 | [diff] [blame] | 603 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 604 | if (command != NULL) { |
| 605 | /* Backup _PyOS_optind and force sys.argv[0] = '-c' */ |
| 606 | _PyOS_optind--; |
| 607 | argv[_PyOS_optind] = L"-c"; |
| 608 | } |
Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 609 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 610 | if (module != NULL) { |
Nick Coghlan | d26c18a | 2010-08-17 13:06:11 +0000 | [diff] [blame] | 611 | /* Backup _PyOS_optind and force sys.argv[0] = '-m'*/ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 612 | _PyOS_optind--; |
Nick Coghlan | d26c18a | 2010-08-17 13:06:11 +0000 | [diff] [blame] | 613 | argv[_PyOS_optind] = L"-m"; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 614 | } |
Raymond Hettinger | db29e0f | 2004-10-07 06:46:25 +0000 | [diff] [blame] | 615 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 616 | PySys_SetArgv(argc-_PyOS_optind, argv+_PyOS_optind); |
Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 617 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 618 | if ((Py_InspectFlag || (command == NULL && filename == NULL && module == NULL)) && |
| 619 | isatty(fileno(stdin))) { |
| 620 | PyObject *v; |
| 621 | v = PyImport_ImportModule("readline"); |
| 622 | if (v == NULL) |
| 623 | PyErr_Clear(); |
| 624 | else |
| 625 | Py_DECREF(v); |
| 626 | } |
Guido van Rossum | 3d26cc9 | 1997-09-16 16:11:28 +0000 | [diff] [blame] | 627 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 628 | if (command) { |
Victor Stinner | a62207c | 2010-08-07 10:57:17 +0000 | [diff] [blame] | 629 | sts = run_command(command, &cf); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 630 | free(command); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 631 | } else if (module) { |
| 632 | sts = RunModule(module, 1); |
| 633 | } |
| 634 | else { |
Christian Heimes | 9cd1775 | 2007-11-18 19:35:23 +0000 | [diff] [blame] | 635 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 636 | if (filename == NULL && stdin_is_interactive) { |
| 637 | Py_InspectFlag = 0; /* do exit on SystemExit */ |
| 638 | RunStartupFile(&cf); |
| 639 | } |
| 640 | /* XXX */ |
Christian Heimes | 9cd1775 | 2007-11-18 19:35:23 +0000 | [diff] [blame] | 641 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 642 | sts = -1; /* keep track of whether we've already run __main__ */ |
Christian Heimes | 9cd1775 | 2007-11-18 19:35:23 +0000 | [diff] [blame] | 643 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 644 | if (filename != NULL) { |
| 645 | sts = RunMainFromImporter(filename); |
| 646 | } |
Christian Heimes | 9cd1775 | 2007-11-18 19:35:23 +0000 | [diff] [blame] | 647 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 648 | if (sts==-1 && filename!=NULL) { |
Antoine Pitrou | e9b428f | 2010-08-13 22:25:01 +0000 | [diff] [blame] | 649 | if ((fp = _Py_wfopen(filename, L"r")) == NULL) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 650 | char cfilename[PATH_MAX]; |
| 651 | size_t r = wcstombs(cfilename, filename, PATH_MAX); |
| 652 | if (r == PATH_MAX) |
| 653 | /* cfilename is not null-terminated; |
| 654 | * forcefully null-terminating it |
| 655 | * might break the shift state */ |
| 656 | strcpy(cfilename, "<file name too long>"); |
| 657 | if (r == ((size_t)-1)) |
| 658 | strcpy(cfilename, "<unprintable file name>"); |
| 659 | fprintf(stderr, "%ls: can't open file '%s': [Errno %d] %s\n", |
| 660 | argv[0], cfilename, errno, strerror(errno)); |
Christian Heimes | ada8c3b | 2008-03-18 18:26:33 +0000 | [diff] [blame] | 661 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 662 | return 2; |
| 663 | } |
| 664 | else if (skipfirstline) { |
| 665 | int ch; |
| 666 | /* Push back first newline so line numbers |
| 667 | remain the same */ |
| 668 | while ((ch = getc(fp)) != EOF) { |
| 669 | if (ch == '\n') { |
| 670 | (void)ungetc(ch, fp); |
| 671 | break; |
| 672 | } |
| 673 | } |
| 674 | } |
| 675 | { |
| 676 | /* XXX: does this work on Win/Win64? (see posix_fstat) */ |
| 677 | struct stat sb; |
| 678 | if (fstat(fileno(fp), &sb) == 0 && |
| 679 | S_ISDIR(sb.st_mode)) { |
| 680 | fprintf(stderr, "%ls: '%ls' is a directory, cannot continue\n", argv[0], filename); |
| 681 | fclose(fp); |
| 682 | return 1; |
| 683 | } |
| 684 | } |
| 685 | } |
Christian Heimes | 9cd1775 | 2007-11-18 19:35:23 +0000 | [diff] [blame] | 686 | |
Victor Stinner | 0a3ddad | 2010-08-07 16:34:25 +0000 | [diff] [blame] | 687 | if (sts == -1) |
| 688 | sts = run_file(fp, filename, &cf); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 689 | } |
Barry Warsaw | d86dcd3 | 2003-06-29 17:07:06 +0000 | [diff] [blame] | 690 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 691 | /* Check this environment variable at the end, to give programs the |
| 692 | * opportunity to set it from Python. |
| 693 | */ |
| 694 | if (!Py_InspectFlag && |
| 695 | (p = Py_GETENV("PYTHONINSPECT")) && *p != '\0') |
| 696 | { |
| 697 | Py_InspectFlag = 1; |
| 698 | } |
Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 699 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 700 | if (Py_InspectFlag && stdin_is_interactive && |
| 701 | (filename != NULL || command != NULL || module != NULL)) { |
| 702 | Py_InspectFlag = 0; |
| 703 | /* XXX */ |
| 704 | sts = PyRun_AnyFileFlags(stdin, "<stdin>", &cf) != 0; |
| 705 | } |
| 706 | |
| 707 | Py_Finalize(); |
Barry Warsaw | 3e13b1e | 2001-02-23 16:46:39 +0000 | [diff] [blame] | 708 | |
| 709 | #ifdef __INSURE__ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 710 | /* Insure++ is a memory analysis tool that aids in discovering |
| 711 | * memory leaks and other memory problems. On Python exit, the |
| 712 | * interned string dictionaries are flagged as being in use at exit |
| 713 | * (which it is). Under normal circumstances, this is fine because |
| 714 | * the memory will be automatically reclaimed by the system. Under |
| 715 | * memory debugging, it's a huge source of useless noise, so we |
| 716 | * trade off slower shutdown for less distraction in the memory |
| 717 | * reports. -baw |
| 718 | */ |
| 719 | _Py_ReleaseInternedStrings(); |
| 720 | _Py_ReleaseInternedUnicodeStrings(); |
Barry Warsaw | 3e13b1e | 2001-02-23 16:46:39 +0000 | [diff] [blame] | 721 | #endif /* __INSURE__ */ |
| 722 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 723 | return sts; |
Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 724 | } |
| 725 | |
Skip Montanaro | 786ea6b | 2004-03-01 15:44:05 +0000 | [diff] [blame] | 726 | /* this is gonna seem *real weird*, but if you put some other code between |
| 727 | Py_Main() and Py_GetArgcArgv() you will need to adjust the test in the |
| 728 | while statement in Misc/gdbinit:ppystack */ |
Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 729 | |
Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 730 | /* Make the *original* argc/argv available to other modules. |
| 731 | This is rare, but it is needed by the secureware extension. */ |
| 732 | |
| 733 | void |
Martin v. Löwis | 790465f | 2008-04-05 20:41:37 +0000 | [diff] [blame] | 734 | Py_GetArgcArgv(int *argc, wchar_t ***argv) |
Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 735 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 736 | *argc = orig_argc; |
| 737 | *argv = orig_argv; |
Guido van Rossum | 667d704 | 1995-08-04 04:20:48 +0000 | [diff] [blame] | 738 | } |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 739 | |
Ronald Oussoren | d61deca | 2010-04-18 14:46:12 +0000 | [diff] [blame] | 740 | |
Victor Stinner | f2e08b3 | 2010-08-13 23:29:08 +0000 | [diff] [blame] | 741 | /* Encode a (wide) character string to the locale encoding with the |
| 742 | surrogateescape error handler (characters in range U+DC80..U+DCFF are |
| 743 | converted to bytes 0x80..0xFF). |
| 744 | |
| 745 | This function is the reverse of _Py_char2wchar(). |
| 746 | |
| 747 | Return a pointer to a newly allocated byte string (use PyMem_Free() to free |
| 748 | the memory), or NULL on error (conversion error or memory error). */ |
| 749 | char* |
| 750 | _Py_wchar2char(const wchar_t *text) |
| 751 | { |
| 752 | const size_t len = wcslen(text); |
| 753 | char *result = NULL, *bytes = NULL; |
| 754 | size_t i, size, converted; |
| 755 | wchar_t c, buf[2]; |
| 756 | |
| 757 | /* The function works in two steps: |
| 758 | 1. compute the length of the output buffer in bytes (size) |
| 759 | 2. outputs the bytes */ |
| 760 | size = 0; |
| 761 | buf[1] = 0; |
| 762 | while (1) { |
| 763 | for (i=0; i < len; i++) { |
| 764 | c = text[i]; |
| 765 | if (c >= 0xdc80 && c <= 0xdcff) { |
| 766 | /* UTF-8b surrogate */ |
| 767 | if (bytes != NULL) { |
| 768 | *bytes++ = c - 0xdc00; |
| 769 | size--; |
| 770 | } |
| 771 | else |
| 772 | size++; |
| 773 | continue; |
| 774 | } |
| 775 | else { |
| 776 | buf[0] = c; |
| 777 | if (bytes != NULL) |
| 778 | converted = wcstombs(bytes, buf, size); |
| 779 | else |
| 780 | converted = wcstombs(NULL, buf, 0); |
| 781 | if (converted == (size_t)-1) { |
| 782 | if (result != NULL) |
| 783 | PyMem_Free(result); |
| 784 | return NULL; |
| 785 | } |
| 786 | if (bytes != NULL) { |
| 787 | bytes += converted; |
| 788 | size -= converted; |
| 789 | } |
| 790 | else |
| 791 | size += converted; |
| 792 | } |
| 793 | } |
| 794 | if (result != NULL) { |
| 795 | *bytes = 0; |
| 796 | break; |
| 797 | } |
| 798 | |
| 799 | size += 1; /* nul byte at the end */ |
| 800 | result = PyMem_Malloc(size); |
| 801 | if (result == NULL) |
| 802 | return NULL; |
| 803 | bytes = result; |
| 804 | } |
| 805 | return result; |
| 806 | } |
| 807 | |
| 808 | |
| 809 | /* Decode a byte string from the locale encoding with the |
| 810 | surrogateescape error handler (undecodable bytes are decoded as characters |
| 811 | in range U+DC80..U+DCFF). If a byte sequence can be decoded as a surrogate |
| 812 | character, escape the bytes using the surrogateescape error handler instead |
| 813 | of decoding them. |
| 814 | |
| 815 | Use _Py_wchar2char() to encode the character string back to a byte string. |
| 816 | |
| 817 | Return a pointer to a newly allocated (wide) character string (use |
| 818 | PyMem_Free() to free the memory), or NULL on error (conversion error or |
| 819 | memory error). */ |
Ronald Oussoren | d61deca | 2010-04-18 14:46:12 +0000 | [diff] [blame] | 820 | wchar_t* |
| 821 | _Py_char2wchar(char* arg) |
| 822 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 823 | wchar_t *res; |
Ronald Oussoren | d61deca | 2010-04-18 14:46:12 +0000 | [diff] [blame] | 824 | #ifdef HAVE_BROKEN_MBSTOWCS |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 825 | /* Some platforms have a broken implementation of |
| 826 | * mbstowcs which does not count the characters that |
| 827 | * would result from conversion. Use an upper bound. |
| 828 | */ |
| 829 | size_t argsize = strlen(arg); |
Ronald Oussoren | d61deca | 2010-04-18 14:46:12 +0000 | [diff] [blame] | 830 | #else |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 831 | size_t argsize = mbstowcs(NULL, arg, 0); |
Ronald Oussoren | d61deca | 2010-04-18 14:46:12 +0000 | [diff] [blame] | 832 | #endif |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 833 | size_t count; |
| 834 | unsigned char *in; |
| 835 | wchar_t *out; |
Ronald Oussoren | d61deca | 2010-04-18 14:46:12 +0000 | [diff] [blame] | 836 | #ifdef HAVE_MBRTOWC |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 837 | mbstate_t mbs; |
Ronald Oussoren | d61deca | 2010-04-18 14:46:12 +0000 | [diff] [blame] | 838 | #endif |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 839 | if (argsize != (size_t)-1) { |
| 840 | res = (wchar_t *)PyMem_Malloc((argsize+1)*sizeof(wchar_t)); |
| 841 | if (!res) |
| 842 | goto oom; |
| 843 | count = mbstowcs(res, arg, argsize+1); |
| 844 | if (count != (size_t)-1) { |
| 845 | wchar_t *tmp; |
| 846 | /* Only use the result if it contains no |
| 847 | surrogate characters. */ |
| 848 | for (tmp = res; *tmp != 0 && |
| 849 | (*tmp < 0xd800 || *tmp > 0xdfff); tmp++) |
| 850 | ; |
| 851 | if (*tmp == 0) |
| 852 | return res; |
| 853 | } |
| 854 | PyMem_Free(res); |
| 855 | } |
| 856 | /* Conversion failed. Fall back to escaping with surrogateescape. */ |
Ronald Oussoren | d61deca | 2010-04-18 14:46:12 +0000 | [diff] [blame] | 857 | #ifdef HAVE_MBRTOWC |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 858 | /* Try conversion with mbrtwoc (C99), and escape non-decodable bytes. */ |
| 859 | |
| 860 | /* Overallocate; as multi-byte characters are in the argument, the |
| 861 | actual output could use less memory. */ |
| 862 | argsize = strlen(arg) + 1; |
| 863 | res = (wchar_t*)PyMem_Malloc(argsize*sizeof(wchar_t)); |
| 864 | if (!res) goto oom; |
| 865 | in = (unsigned char*)arg; |
| 866 | out = res; |
| 867 | memset(&mbs, 0, sizeof mbs); |
| 868 | while (argsize) { |
| 869 | size_t converted = mbrtowc(out, (char*)in, argsize, &mbs); |
| 870 | if (converted == 0) |
| 871 | /* Reached end of string; null char stored. */ |
| 872 | break; |
| 873 | if (converted == (size_t)-2) { |
| 874 | /* Incomplete character. This should never happen, |
| 875 | since we provide everything that we have - |
| 876 | unless there is a bug in the C library, or I |
| 877 | misunderstood how mbrtowc works. */ |
| 878 | fprintf(stderr, "unexpected mbrtowc result -2\n"); |
| 879 | return NULL; |
| 880 | } |
| 881 | if (converted == (size_t)-1) { |
| 882 | /* Conversion error. Escape as UTF-8b, and start over |
| 883 | in the initial shift state. */ |
| 884 | *out++ = 0xdc00 + *in++; |
| 885 | argsize--; |
| 886 | memset(&mbs, 0, sizeof mbs); |
| 887 | continue; |
| 888 | } |
| 889 | if (*out >= 0xd800 && *out <= 0xdfff) { |
| 890 | /* Surrogate character. Escape the original |
| 891 | byte sequence with surrogateescape. */ |
| 892 | argsize -= converted; |
| 893 | while (converted--) |
| 894 | *out++ = 0xdc00 + *in++; |
| 895 | continue; |
| 896 | } |
| 897 | /* successfully converted some bytes */ |
| 898 | in += converted; |
| 899 | argsize -= converted; |
| 900 | out++; |
| 901 | } |
Ronald Oussoren | d61deca | 2010-04-18 14:46:12 +0000 | [diff] [blame] | 902 | #else |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 903 | /* Cannot use C locale for escaping; manually escape as if charset |
| 904 | is ASCII (i.e. escape all bytes > 128. This will still roundtrip |
| 905 | correctly in the locale's charset, which must be an ASCII superset. */ |
| 906 | res = PyMem_Malloc((strlen(arg)+1)*sizeof(wchar_t)); |
| 907 | if (!res) goto oom; |
| 908 | in = (unsigned char*)arg; |
| 909 | out = res; |
| 910 | while(*in) |
| 911 | if(*in < 128) |
| 912 | *out++ = *in++; |
| 913 | else |
| 914 | *out++ = 0xdc00 + *in++; |
| 915 | *out = 0; |
Ronald Oussoren | d61deca | 2010-04-18 14:46:12 +0000 | [diff] [blame] | 916 | #endif |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 917 | return res; |
Ronald Oussoren | d61deca | 2010-04-18 14:46:12 +0000 | [diff] [blame] | 918 | oom: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 919 | fprintf(stderr, "out of memory\n"); |
| 920 | return NULL; |
Ronald Oussoren | d61deca | 2010-04-18 14:46:12 +0000 | [diff] [blame] | 921 | } |
| 922 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 923 | #ifdef __cplusplus |
| 924 | } |
| 925 | #endif |