blob: 93edd7fbc4c96a5e1c8088d346ba913c11936dc5 [file] [log] [blame]
Guido van Rossum6fa63431993-12-24 10:36:57 +00001
Guido van Rossumfbd64c81997-02-18 21:53:32 +00002/* 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 Rossum6fa63431993-12-24 10:36:57 +00006 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 Rossum8efa47b1998-08-27 19:43:43 +000012#include "Python.h"
Mark Hammond2f10cb82002-07-14 23:12:29 +000013#ifdef MS_WINDOWS
14#define WIN32_LEAN_AND_MEAN
15#include "windows.h"
16#endif /* MS_WINDOWS */
Guido van Rossum6fa63431993-12-24 10:36:57 +000017
Martin v. Löwisc16f3bd2003-05-03 09:14:54 +000018#ifdef __VMS
19extern char* vms__StdioReadline(FILE *sys_stdin, FILE *sys_stdout, char *prompt);
20#endif
21
Michael W. Hudson30ea2f22004-07-07 17:44:12 +000022
23PyThreadState* _PyOS_ReadlineTState;
24
Tim Petersb7e898a2004-07-07 20:42:07 +000025#ifdef WITH_THREAD
Michael W. Hudson30ea2f22004-07-07 17:44:12 +000026#include "pythread.h"
27static PyThread_type_lock _PyOS_ReadlineLock = NULL;
28#endif
29
Thomas Wouters23c9e002000-07-22 19:20:54 +000030int (*PyOS_InputHook)(void) = NULL;
Guido van Rossumfbd64c81997-02-18 21:53:32 +000031
32/* This function restarts a fgets() after an EINTR error occurred
33 except if PyOS_InterruptOccurred() returns true. */
34
35static int
Thomas Wouters23c9e002000-07-22 19:20:54 +000036my_fgets(char *buf, int len, FILE *fp)
Guido van Rossumfbd64c81997-02-18 21:53:32 +000037{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000038 char *p;
Antoine Pitrouc345ce12011-12-16 12:28:32 +010039 int err;
Jesus Cea035997f2012-07-03 13:15:03 +020040#ifdef MS_WINDOWS
41 int i;
42#endif
43
Victor Stinner52c950f2011-04-09 15:55:44 +020044 while (1) {
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +000045 if (PyOS_InputHook != NULL)
46 (void)(PyOS_InputHook)();
47 errno = 0;
Victor Stinner4f711012011-05-30 23:46:00 +020048 clearerr(fp);
Martin v. Löwise654c112012-04-30 06:10:41 +020049 if (_PyVerify_fd(fileno(fp)))
50 p = fgets(buf, len, fp);
51 else
52 p = NULL;
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +000053 if (p != NULL)
54 return 0; /* No error */
Antoine Pitrouc345ce12011-12-16 12:28:32 +010055 err = errno;
Mark Hammond2f10cb82002-07-14 23:12:29 +000056#ifdef MS_WINDOWS
Tim Goldenb92b7572012-06-29 18:27:08 +010057 /* Ctrl-C anywhere on the line or Ctrl-Z if the only character
58 on a line will set ERROR_OPERATION_ABORTED. Under normal
59 circumstances Ctrl-C will also have caused the SIGINT handler
60 to fire. This signal fires in another thread and is not
61 guaranteed to have occurred before this point in the code.
62
63 Therefore: check in a small loop to see if the trigger has
64 fired, in which case assume this is a Ctrl-C event. If it
65 hasn't fired within 10ms assume that this is a Ctrl-Z on its
66 own or that the signal isn't going to fire for some other
67 reason and drop through to check for EOF.
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000068 */
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +000069 if (GetLastError()==ERROR_OPERATION_ABORTED) {
Tim Goldenb92b7572012-06-29 18:27:08 +010070 for (i = 0; i < 10; i++) {
71 if (PyOS_InterruptOccurred())
72 return 1;
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +000073 Sleep(1);
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +000074 }
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +000075 }
Mark Hammond2f10cb82002-07-14 23:12:29 +000076#endif /* MS_WINDOWS */
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +000077 if (feof(fp)) {
Victor Stinner4755ab02011-05-10 00:19:53 +020078 clearerr(fp);
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +000079 return -1; /* EOF */
80 }
Guido van Rossumfbd64c81997-02-18 21:53:32 +000081#ifdef EINTR
Antoine Pitrouc345ce12011-12-16 12:28:32 +010082 if (err == EINTR) {
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +000083 int s;
Michael W. Hudsone3afc592005-04-07 10:11:19 +000084#ifdef WITH_THREAD
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +000085 PyEval_RestoreThread(_PyOS_ReadlineTState);
Michael W. Hudsone3afc592005-04-07 10:11:19 +000086#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +000087 s = PyErr_CheckSignals();
Michael W. Hudsone3afc592005-04-07 10:11:19 +000088#ifdef WITH_THREAD
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +000089 PyEval_SaveThread();
Michael W. Hudsone3afc592005-04-07 10:11:19 +000090#endif
Victor Stinner52c950f2011-04-09 15:55:44 +020091 if (s < 0)
92 return 1;
Victor Stinnera870e352011-04-09 15:59:25 +020093 /* try again */
Victor Stinner52c950f2011-04-09 15:55:44 +020094 continue;
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +000095 }
Guido van Rossumfbd64c81997-02-18 21:53:32 +000096#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000097 if (PyOS_InterruptOccurred()) {
98 return 1; /* Interrupt */
99 }
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000100 return -2; /* Error */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000101 }
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000102 /* NOTREACHED */
Guido van Rossumfbd64c81997-02-18 21:53:32 +0000103}
104
105
106/* Readline implementation using fgets() */
107
108char *
Martin v. Löwis566f6af2002-10-26 14:39:10 +0000109PyOS_StdioReadline(FILE *sys_stdin, FILE *sys_stdout, char *prompt)
Guido van Rossumfbd64c81997-02-18 21:53:32 +0000110{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000111 size_t n;
112 char *p;
113 n = 100;
114 if ((p = (char *)PyMem_MALLOC(n)) == NULL)
115 return NULL;
116 fflush(sys_stdout);
117 if (prompt)
118 fprintf(stderr, "%s", prompt);
119 fflush(stderr);
120 switch (my_fgets(p, (int)n, sys_stdin)) {
121 case 0: /* Normal case */
122 break;
123 case 1: /* Interrupt */
124 PyMem_FREE(p);
125 return NULL;
126 case -1: /* EOF */
127 case -2: /* Error */
128 default: /* Shouldn't happen */
129 *p = '\0';
130 break;
131 }
132 n = strlen(p);
133 while (n > 0 && p[n-1] != '\n') {
134 size_t incr = n+2;
135 p = (char *)PyMem_REALLOC(p, n + incr);
136 if (p == NULL)
137 return NULL;
138 if (incr > INT_MAX) {
139 PyErr_SetString(PyExc_OverflowError, "input line too long");
140 }
141 if (my_fgets(p+n, (int)incr, sys_stdin) != 0)
142 break;
143 n += strlen(p+n);
144 }
145 return (char *)PyMem_REALLOC(p, n+1);
Guido van Rossumfbd64c81997-02-18 21:53:32 +0000146}
147
148
149/* By initializing this function pointer, systems embedding Python can
Guido van Rossumb18618d2000-05-03 23:44:39 +0000150 override the readline function.
151
152 Note: Python expects in return a buffer allocated with PyMem_Malloc. */
Guido van Rossumfbd64c81997-02-18 21:53:32 +0000153
Martin v. Löwis566f6af2002-10-26 14:39:10 +0000154char *(*PyOS_ReadlineFunctionPointer)(FILE *, FILE *, char *);
Guido van Rossumfbd64c81997-02-18 21:53:32 +0000155
156
157/* Interface used by tokenizer.c and bltinmodule.c */
158
159char *
Martin v. Löwis566f6af2002-10-26 14:39:10 +0000160PyOS_Readline(FILE *sys_stdin, FILE *sys_stdout, char *prompt)
Guido van Rossumfbd64c81997-02-18 21:53:32 +0000161{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000162 char *rv;
Martin v. Löwis566f6af2002-10-26 14:39:10 +0000163
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000164 if (_PyOS_ReadlineTState == PyThreadState_GET()) {
165 PyErr_SetString(PyExc_RuntimeError,
166 "can't re-enter readline");
167 return NULL;
168 }
Michael W. Hudson30ea2f22004-07-07 17:44:12 +0000169
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000170
171 if (PyOS_ReadlineFunctionPointer == NULL) {
Martin v. Löwisc16f3bd2003-05-03 09:14:54 +0000172#ifdef __VMS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000173 PyOS_ReadlineFunctionPointer = vms__StdioReadline;
Martin v. Löwisc16f3bd2003-05-03 09:14:54 +0000174#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000175 PyOS_ReadlineFunctionPointer = PyOS_StdioReadline;
Martin v. Löwisc16f3bd2003-05-03 09:14:54 +0000176#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000177 }
Michael W. Hudson30ea2f22004-07-07 17:44:12 +0000178
Tim Petersb7e898a2004-07-07 20:42:07 +0000179#ifdef WITH_THREAD
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000180 if (_PyOS_ReadlineLock == NULL) {
181 _PyOS_ReadlineLock = PyThread_allocate_lock();
182 }
Michael W. Hudson30ea2f22004-07-07 17:44:12 +0000183#endif
184
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000185 _PyOS_ReadlineTState = PyThreadState_GET();
186 Py_BEGIN_ALLOW_THREADS
187#ifdef WITH_THREAD
188 PyThread_acquire_lock(_PyOS_ReadlineLock, 1);
189#endif
Michael W. Hudson30ea2f22004-07-07 17:44:12 +0000190
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000191 /* This is needed to handle the unlikely case that the
192 * interpreter is in interactive mode *and* stdin/out are not
193 * a tty. This can happen, for example if python is run like
194 * this: python -i < test1.py
195 */
196 if (!isatty (fileno (sys_stdin)) || !isatty (fileno (sys_stdout)))
197 rv = PyOS_StdioReadline (sys_stdin, sys_stdout, prompt);
198 else
199 rv = (*PyOS_ReadlineFunctionPointer)(sys_stdin, sys_stdout,
200 prompt);
201 Py_END_ALLOW_THREADS
202
203#ifdef WITH_THREAD
204 PyThread_release_lock(_PyOS_ReadlineLock);
205#endif
206
207 _PyOS_ReadlineTState = NULL;
208
209 return rv;
Guido van Rossum6fa63431993-12-24 10:36:57 +0000210}