Guido van Rossum | 6fa6343 | 1993-12-24 10:36:57 +0000 | [diff] [blame] | 1 | |
Guido van Rossum | fbd64c8 | 1997-02-18 21:53:32 +0000 | [diff] [blame] | 2 | /* Readline interface for tokenizer.c and [raw_]input() in bltinmodule.c. |
| 3 | By default, or when stdin is not a tty device, we have a super |
| 4 | simple my_readline function using fgets. |
| 5 | Optionally, we can use the GNU readline library. |
Guido van Rossum | 6fa6343 | 1993-12-24 10:36:57 +0000 | [diff] [blame] | 6 | my_readline() has a different return value from GNU readline(): |
| 7 | - NULL if an interrupt occurred or if an error occurred |
| 8 | - a malloc'ed empty string if EOF was read |
| 9 | - a malloc'ed string ending in \n normally |
| 10 | */ |
| 11 | |
Guido van Rossum | 8efa47b | 1998-08-27 19:43:43 +0000 | [diff] [blame] | 12 | #include "Python.h" |
Mark Hammond | 2f10cb8 | 2002-07-14 23:12:29 +0000 | [diff] [blame] | 13 | #ifdef MS_WINDOWS |
| 14 | #define WIN32_LEAN_AND_MEAN |
| 15 | #include "windows.h" |
| 16 | #endif /* MS_WINDOWS */ |
Guido van Rossum | 6fa6343 | 1993-12-24 10:36:57 +0000 | [diff] [blame] | 17 | |
Martin v. Löwis | c16f3bd | 2003-05-03 09:14:54 +0000 | [diff] [blame] | 18 | #ifdef __VMS |
| 19 | extern char* vms__StdioReadline(FILE *sys_stdin, FILE *sys_stdout, char *prompt); |
| 20 | #endif |
| 21 | |
Michael W. Hudson | 30ea2f2 | 2004-07-07 17:44:12 +0000 | [diff] [blame] | 22 | |
| 23 | PyThreadState* _PyOS_ReadlineTState; |
| 24 | |
Tim Peters | b7e898a | 2004-07-07 20:42:07 +0000 | [diff] [blame] | 25 | #ifdef WITH_THREAD |
Michael W. Hudson | 30ea2f2 | 2004-07-07 17:44:12 +0000 | [diff] [blame] | 26 | #include "pythread.h" |
| 27 | static PyThread_type_lock _PyOS_ReadlineLock = NULL; |
| 28 | #endif |
| 29 | |
Thomas Wouters | 23c9e00 | 2000-07-22 19:20:54 +0000 | [diff] [blame] | 30 | int (*PyOS_InputHook)(void) = NULL; |
Guido van Rossum | fbd64c8 | 1997-02-18 21:53:32 +0000 | [diff] [blame] | 31 | |
Guido van Rossum | 48a680c | 2001-03-02 06:34:14 +0000 | [diff] [blame] | 32 | #ifdef RISCOS |
| 33 | int Py_RISCOSWimpFlag; |
| 34 | #endif |
| 35 | |
Guido van Rossum | fbd64c8 | 1997-02-18 21:53:32 +0000 | [diff] [blame] | 36 | /* This function restarts a fgets() after an EINTR error occurred |
| 37 | except if PyOS_InterruptOccurred() returns true. */ |
| 38 | |
| 39 | static int |
Thomas Wouters | 23c9e00 | 2000-07-22 19:20:54 +0000 | [diff] [blame] | 40 | my_fgets(char *buf, int len, FILE *fp) |
Guido van Rossum | fbd64c8 | 1997-02-18 21:53:32 +0000 | [diff] [blame] | 41 | { |
| 42 | char *p; |
| 43 | for (;;) { |
Guido van Rossum | 4462064 | 1997-08-11 18:57:29 +0000 | [diff] [blame] | 44 | if (PyOS_InputHook != NULL) |
| 45 | (void)(PyOS_InputHook)(); |
Guido van Rossum | fbd64c8 | 1997-02-18 21:53:32 +0000 | [diff] [blame] | 46 | errno = 0; |
| 47 | p = fgets(buf, len, fp); |
| 48 | if (p != NULL) |
| 49 | return 0; /* No error */ |
Mark Hammond | 2f10cb8 | 2002-07-14 23:12:29 +0000 | [diff] [blame] | 50 | #ifdef MS_WINDOWS |
| 51 | /* In the case of a Ctrl+C or some other external event |
| 52 | interrupting the operation: |
| 53 | Win2k/NT: ERROR_OPERATION_ABORTED is the most recent Win32 |
| 54 | error code (and feof() returns TRUE). |
| 55 | Win9x: Ctrl+C seems to have no effect on fgets() returning |
| 56 | early - the signal handler is called, but the fgets() |
| 57 | only returns "normally" (ie, when Enter hit or feof()) |
| 58 | */ |
| 59 | if (GetLastError()==ERROR_OPERATION_ABORTED) { |
| 60 | /* Signals come asynchronously, so we sleep a brief |
| 61 | moment before checking if the handler has been |
| 62 | triggered (we cant just return 1 before the |
| 63 | signal handler has been called, as the later |
| 64 | signal may be treated as a separate interrupt). |
| 65 | */ |
| 66 | Sleep(1); |
| 67 | if (PyOS_InterruptOccurred()) { |
| 68 | return 1; /* Interrupt */ |
| 69 | } |
| 70 | /* Either the sleep wasn't long enough (need a |
| 71 | short loop retrying?) or not interrupted at all |
| 72 | (in which case we should revisit the whole thing!) |
| 73 | Logging some warning would be nice. assert is not |
| 74 | viable as under the debugger, the various dialogs |
| 75 | mean the condition is not true. |
| 76 | */ |
| 77 | } |
| 78 | #endif /* MS_WINDOWS */ |
Guido van Rossum | fbd64c8 | 1997-02-18 21:53:32 +0000 | [diff] [blame] | 79 | if (feof(fp)) { |
| 80 | return -1; /* EOF */ |
| 81 | } |
| 82 | #ifdef EINTR |
| 83 | if (errno == EINTR) { |
Michael W. Hudson | 30ea2f2 | 2004-07-07 17:44:12 +0000 | [diff] [blame] | 84 | int s; |
Michael W. Hudson | e3afc59 | 2005-04-07 10:11:19 +0000 | [diff] [blame] | 85 | #ifdef WITH_THREAD |
Michael W. Hudson | 30ea2f2 | 2004-07-07 17:44:12 +0000 | [diff] [blame] | 86 | PyEval_RestoreThread(_PyOS_ReadlineTState); |
Michael W. Hudson | e3afc59 | 2005-04-07 10:11:19 +0000 | [diff] [blame] | 87 | #endif |
Michael W. Hudson | 30ea2f2 | 2004-07-07 17:44:12 +0000 | [diff] [blame] | 88 | s = PyErr_CheckSignals(); |
Michael W. Hudson | e3afc59 | 2005-04-07 10:11:19 +0000 | [diff] [blame] | 89 | #ifdef WITH_THREAD |
Michael W. Hudson | 2384990 | 2004-07-08 15:28:26 +0000 | [diff] [blame] | 90 | PyEval_SaveThread(); |
Michael W. Hudson | e3afc59 | 2005-04-07 10:11:19 +0000 | [diff] [blame] | 91 | #endif |
Michael W. Hudson | 30ea2f2 | 2004-07-07 17:44:12 +0000 | [diff] [blame] | 92 | if (s < 0) { |
| 93 | return 1; |
Guido van Rossum | fbd64c8 | 1997-02-18 21:53:32 +0000 | [diff] [blame] | 94 | } |
Guido van Rossum | fbd64c8 | 1997-02-18 21:53:32 +0000 | [diff] [blame] | 95 | } |
| 96 | #endif |
| 97 | if (PyOS_InterruptOccurred()) { |
| 98 | return 1; /* Interrupt */ |
| 99 | } |
| 100 | return -2; /* Error */ |
| 101 | } |
| 102 | /* NOTREACHED */ |
| 103 | } |
| 104 | |
| 105 | |
| 106 | /* Readline implementation using fgets() */ |
| 107 | |
| 108 | char * |
Martin v. Löwis | 566f6af | 2002-10-26 14:39:10 +0000 | [diff] [blame] | 109 | PyOS_StdioReadline(FILE *sys_stdin, FILE *sys_stdout, char *prompt) |
Guido van Rossum | fbd64c8 | 1997-02-18 21:53:32 +0000 | [diff] [blame] | 110 | { |
Guido van Rossum | 6da3434 | 2000-06-28 22:00:02 +0000 | [diff] [blame] | 111 | size_t n; |
Guido van Rossum | fbd64c8 | 1997-02-18 21:53:32 +0000 | [diff] [blame] | 112 | char *p; |
Guido van Rossum | 6fa6343 | 1993-12-24 10:36:57 +0000 | [diff] [blame] | 113 | n = 100; |
Neal Norwitz | 08062d6 | 2006-04-11 08:19:15 +0000 | [diff] [blame] | 114 | if ((p = (char *)PyMem_MALLOC(n)) == NULL) |
Guido van Rossum | 6fa6343 | 1993-12-24 10:36:57 +0000 | [diff] [blame] | 115 | return NULL; |
Martin v. Löwis | 566f6af | 2002-10-26 14:39:10 +0000 | [diff] [blame] | 116 | fflush(sys_stdout); |
Guido van Rossum | 48a680c | 2001-03-02 06:34:14 +0000 | [diff] [blame] | 117 | #ifndef RISCOS |
Guido van Rossum | 6fa6343 | 1993-12-24 10:36:57 +0000 | [diff] [blame] | 118 | if (prompt) |
| 119 | fprintf(stderr, "%s", prompt); |
Guido van Rossum | 48a680c | 2001-03-02 06:34:14 +0000 | [diff] [blame] | 120 | #else |
| 121 | if (prompt) { |
| 122 | if(Py_RISCOSWimpFlag) |
| 123 | fprintf(stderr, "\x0cr%s\x0c", prompt); |
| 124 | else |
| 125 | fprintf(stderr, "%s", prompt); |
| 126 | } |
| 127 | #endif |
Guido van Rossum | c7fea2f | 1996-01-12 01:30:55 +0000 | [diff] [blame] | 128 | fflush(stderr); |
Martin v. Löwis | 566f6af | 2002-10-26 14:39:10 +0000 | [diff] [blame] | 129 | switch (my_fgets(p, (int)n, sys_stdin)) { |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 130 | case 0: /* Normal case */ |
| 131 | break; |
| 132 | case 1: /* Interrupt */ |
Neal Norwitz | 08062d6 | 2006-04-11 08:19:15 +0000 | [diff] [blame] | 133 | PyMem_FREE(p); |
Guido van Rossum | 6fa6343 | 1993-12-24 10:36:57 +0000 | [diff] [blame] | 134 | return NULL; |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 135 | case -1: /* EOF */ |
| 136 | case -2: /* Error */ |
| 137 | default: /* Shouldn't happen */ |
| 138 | *p = '\0'; |
| 139 | break; |
Guido van Rossum | 6fa6343 | 1993-12-24 10:36:57 +0000 | [diff] [blame] | 140 | } |
| 141 | n = strlen(p); |
| 142 | while (n > 0 && p[n-1] != '\n') { |
Guido van Rossum | 6da3434 | 2000-06-28 22:00:02 +0000 | [diff] [blame] | 143 | size_t incr = n+2; |
Neal Norwitz | 08062d6 | 2006-04-11 08:19:15 +0000 | [diff] [blame] | 144 | p = (char *)PyMem_REALLOC(p, n + incr); |
Guido van Rossum | 6fa6343 | 1993-12-24 10:36:57 +0000 | [diff] [blame] | 145 | if (p == NULL) |
| 146 | return NULL; |
Guido van Rossum | 6da3434 | 2000-06-28 22:00:02 +0000 | [diff] [blame] | 147 | if (incr > INT_MAX) { |
| 148 | PyErr_SetString(PyExc_OverflowError, "input line too long"); |
| 149 | } |
Martin v. Löwis | 566f6af | 2002-10-26 14:39:10 +0000 | [diff] [blame] | 150 | if (my_fgets(p+n, (int)incr, sys_stdin) != 0) |
Guido van Rossum | 6fa6343 | 1993-12-24 10:36:57 +0000 | [diff] [blame] | 151 | break; |
| 152 | n += strlen(p+n); |
| 153 | } |
Neal Norwitz | 08062d6 | 2006-04-11 08:19:15 +0000 | [diff] [blame] | 154 | return (char *)PyMem_REALLOC(p, n+1); |
Guido van Rossum | fbd64c8 | 1997-02-18 21:53:32 +0000 | [diff] [blame] | 155 | } |
| 156 | |
| 157 | |
| 158 | /* By initializing this function pointer, systems embedding Python can |
Guido van Rossum | b18618d | 2000-05-03 23:44:39 +0000 | [diff] [blame] | 159 | override the readline function. |
| 160 | |
Neal Norwitz | 08062d6 | 2006-04-11 08:19:15 +0000 | [diff] [blame] | 161 | Note: Python expects in return a buffer allocated with PyMem_Malloc. */ |
Guido van Rossum | fbd64c8 | 1997-02-18 21:53:32 +0000 | [diff] [blame] | 162 | |
Martin v. Löwis | 566f6af | 2002-10-26 14:39:10 +0000 | [diff] [blame] | 163 | char *(*PyOS_ReadlineFunctionPointer)(FILE *, FILE *, char *); |
Guido van Rossum | fbd64c8 | 1997-02-18 21:53:32 +0000 | [diff] [blame] | 164 | |
| 165 | |
| 166 | /* Interface used by tokenizer.c and bltinmodule.c */ |
| 167 | |
| 168 | char * |
Martin v. Löwis | 566f6af | 2002-10-26 14:39:10 +0000 | [diff] [blame] | 169 | PyOS_Readline(FILE *sys_stdin, FILE *sys_stdout, char *prompt) |
Guido van Rossum | fbd64c8 | 1997-02-18 21:53:32 +0000 | [diff] [blame] | 170 | { |
Guido van Rossum | 80c7bcf | 1998-08-29 16:03:27 +0000 | [diff] [blame] | 171 | char *rv; |
Martin v. Löwis | 566f6af | 2002-10-26 14:39:10 +0000 | [diff] [blame] | 172 | |
Michael W. Hudson | 30ea2f2 | 2004-07-07 17:44:12 +0000 | [diff] [blame] | 173 | if (_PyOS_ReadlineTState == PyThreadState_GET()) { |
| 174 | PyErr_SetString(PyExc_RuntimeError, |
| 175 | "can't re-enter readline"); |
| 176 | return NULL; |
| 177 | } |
| 178 | |
| 179 | |
Guido van Rossum | fbd64c8 | 1997-02-18 21:53:32 +0000 | [diff] [blame] | 180 | if (PyOS_ReadlineFunctionPointer == NULL) { |
Martin v. Löwis | c16f3bd | 2003-05-03 09:14:54 +0000 | [diff] [blame] | 181 | #ifdef __VMS |
| 182 | PyOS_ReadlineFunctionPointer = vms__StdioReadline; |
| 183 | #else |
Martin v. Löwis | 566f6af | 2002-10-26 14:39:10 +0000 | [diff] [blame] | 184 | PyOS_ReadlineFunctionPointer = PyOS_StdioReadline; |
Martin v. Löwis | c16f3bd | 2003-05-03 09:14:54 +0000 | [diff] [blame] | 185 | #endif |
Guido van Rossum | fbd64c8 | 1997-02-18 21:53:32 +0000 | [diff] [blame] | 186 | } |
Michael W. Hudson | 30ea2f2 | 2004-07-07 17:44:12 +0000 | [diff] [blame] | 187 | |
Tim Peters | b7e898a | 2004-07-07 20:42:07 +0000 | [diff] [blame] | 188 | #ifdef WITH_THREAD |
Michael W. Hudson | 30ea2f2 | 2004-07-07 17:44:12 +0000 | [diff] [blame] | 189 | if (_PyOS_ReadlineLock == NULL) { |
| 190 | _PyOS_ReadlineLock = PyThread_allocate_lock(); |
| 191 | } |
| 192 | #endif |
Martin v. Löwis | 566f6af | 2002-10-26 14:39:10 +0000 | [diff] [blame] | 193 | |
Michael W. Hudson | 30ea2f2 | 2004-07-07 17:44:12 +0000 | [diff] [blame] | 194 | _PyOS_ReadlineTState = PyThreadState_GET(); |
Guido van Rossum | 8efa47b | 1998-08-27 19:43:43 +0000 | [diff] [blame] | 195 | Py_BEGIN_ALLOW_THREADS |
Tim Peters | b7e898a | 2004-07-07 20:42:07 +0000 | [diff] [blame] | 196 | #ifdef WITH_THREAD |
Michael W. Hudson | 30ea2f2 | 2004-07-07 17:44:12 +0000 | [diff] [blame] | 197 | PyThread_acquire_lock(_PyOS_ReadlineLock, 1); |
| 198 | #endif |
Martin v. Löwis | 566f6af | 2002-10-26 14:39:10 +0000 | [diff] [blame] | 199 | |
| 200 | /* This is needed to handle the unlikely case that the |
| 201 | * interpreter is in interactive mode *and* stdin/out are not |
| 202 | * a tty. This can happen, for example if python is run like |
| 203 | * this: python -i < test1.py |
| 204 | */ |
| 205 | if (!isatty (fileno (sys_stdin)) || !isatty (fileno (sys_stdout))) |
| 206 | rv = PyOS_StdioReadline (sys_stdin, sys_stdout, prompt); |
| 207 | else |
| 208 | rv = (*PyOS_ReadlineFunctionPointer)(sys_stdin, sys_stdout, |
| 209 | prompt); |
Guido van Rossum | 8efa47b | 1998-08-27 19:43:43 +0000 | [diff] [blame] | 210 | Py_END_ALLOW_THREADS |
Michael W. Hudson | 30ea2f2 | 2004-07-07 17:44:12 +0000 | [diff] [blame] | 211 | |
Tim Peters | b7e898a | 2004-07-07 20:42:07 +0000 | [diff] [blame] | 212 | #ifdef WITH_THREAD |
Michael W. Hudson | 30ea2f2 | 2004-07-07 17:44:12 +0000 | [diff] [blame] | 213 | PyThread_release_lock(_PyOS_ReadlineLock); |
| 214 | #endif |
| 215 | |
| 216 | _PyOS_ReadlineTState = NULL; |
| 217 | |
Guido van Rossum | 80c7bcf | 1998-08-29 16:03:27 +0000 | [diff] [blame] | 218 | return rv; |
Guido van Rossum | 6fa6343 | 1993-12-24 10:36:57 +0000 | [diff] [blame] | 219 | } |