blob: a62e208a72c12b885bdf0483f29ec7983e815bc5 [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 Pitrou7f14f0d2010-05-09 16:14:21 +000038 char *p;
39 for (;;) {
40 if (PyOS_InputHook != NULL)
41 (void)(PyOS_InputHook)();
42 errno = 0;
43 p = fgets(buf, len, fp);
44 if (p != NULL)
45 return 0; /* No error */
Mark Hammond2f10cb82002-07-14 23:12:29 +000046#ifdef MS_WINDOWS
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +000047 /* In the case of a Ctrl+C or some other external event
48 interrupting the operation:
49 Win2k/NT: ERROR_OPERATION_ABORTED is the most recent Win32
50 error code (and feof() returns TRUE).
51 Win9x: Ctrl+C seems to have no effect on fgets() returning
52 early - the signal handler is called, but the fgets()
53 only returns "normally" (ie, when Enter hit or feof())
54 */
55 if (GetLastError()==ERROR_OPERATION_ABORTED) {
56 /* Signals come asynchronously, so we sleep a brief
57 moment before checking if the handler has been
58 triggered (we cant just return 1 before the
59 signal handler has been called, as the later
60 signal may be treated as a separate interrupt).
61 */
62 Sleep(1);
63 if (PyOS_InterruptOccurred()) {
64 return 1; /* Interrupt */
65 }
66 /* Either the sleep wasn't long enough (need a
67 short loop retrying?) or not interrupted at all
68 (in which case we should revisit the whole thing!)
69 Logging some warning would be nice. assert is not
70 viable as under the debugger, the various dialogs
71 mean the condition is not true.
72 */
73 }
Mark Hammond2f10cb82002-07-14 23:12:29 +000074#endif /* MS_WINDOWS */
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +000075 if (feof(fp)) {
76 return -1; /* EOF */
77 }
Guido van Rossumfbd64c81997-02-18 21:53:32 +000078#ifdef EINTR
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +000079 if (errno == EINTR) {
80 int s;
Michael W. Hudsone3afc592005-04-07 10:11:19 +000081#ifdef WITH_THREAD
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +000082 PyEval_RestoreThread(_PyOS_ReadlineTState);
Michael W. Hudsone3afc592005-04-07 10:11:19 +000083#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +000084 s = PyErr_CheckSignals();
Michael W. Hudsone3afc592005-04-07 10:11:19 +000085#ifdef WITH_THREAD
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +000086 PyEval_SaveThread();
Michael W. Hudsone3afc592005-04-07 10:11:19 +000087#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +000088 if (s < 0) {
89 return 1;
90 }
91 }
Guido van Rossumfbd64c81997-02-18 21:53:32 +000092#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +000093 if (PyOS_InterruptOccurred()) {
94 return 1; /* Interrupt */
95 }
96 return -2; /* Error */
97 }
98 /* NOTREACHED */
Guido van Rossumfbd64c81997-02-18 21:53:32 +000099}
100
101
102/* Readline implementation using fgets() */
103
104char *
Martin v. Löwis566f6af2002-10-26 14:39:10 +0000105PyOS_StdioReadline(FILE *sys_stdin, FILE *sys_stdout, char *prompt)
Guido van Rossumfbd64c81997-02-18 21:53:32 +0000106{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000107 size_t n;
108 char *p;
109 n = 100;
110 if ((p = (char *)PyMem_MALLOC(n)) == NULL)
111 return NULL;
112 fflush(sys_stdout);
113 if (prompt)
114 fprintf(stderr, "%s", prompt);
115 fflush(stderr);
116 switch (my_fgets(p, (int)n, sys_stdin)) {
117 case 0: /* Normal case */
118 break;
119 case 1: /* Interrupt */
120 PyMem_FREE(p);
121 return NULL;
122 case -1: /* EOF */
123 case -2: /* Error */
124 default: /* Shouldn't happen */
125 *p = '\0';
126 break;
127 }
128 n = strlen(p);
129 while (n > 0 && p[n-1] != '\n') {
130 size_t incr = n+2;
131 p = (char *)PyMem_REALLOC(p, n + incr);
132 if (p == NULL)
133 return NULL;
134 if (incr > INT_MAX) {
135 PyErr_SetString(PyExc_OverflowError, "input line too long");
136 }
137 if (my_fgets(p+n, (int)incr, sys_stdin) != 0)
138 break;
139 n += strlen(p+n);
140 }
141 return (char *)PyMem_REALLOC(p, n+1);
Guido van Rossumfbd64c81997-02-18 21:53:32 +0000142}
143
144
145/* By initializing this function pointer, systems embedding Python can
Guido van Rossumb18618d2000-05-03 23:44:39 +0000146 override the readline function.
147
148 Note: Python expects in return a buffer allocated with PyMem_Malloc. */
Guido van Rossumfbd64c81997-02-18 21:53:32 +0000149
Martin v. Löwis566f6af2002-10-26 14:39:10 +0000150char *(*PyOS_ReadlineFunctionPointer)(FILE *, FILE *, char *);
Guido van Rossumfbd64c81997-02-18 21:53:32 +0000151
152
153/* Interface used by tokenizer.c and bltinmodule.c */
154
155char *
Martin v. Löwis566f6af2002-10-26 14:39:10 +0000156PyOS_Readline(FILE *sys_stdin, FILE *sys_stdout, char *prompt)
Guido van Rossumfbd64c81997-02-18 21:53:32 +0000157{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000158 char *rv;
Martin v. Löwis566f6af2002-10-26 14:39:10 +0000159
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000160 if (_PyOS_ReadlineTState == PyThreadState_GET()) {
161 PyErr_SetString(PyExc_RuntimeError,
162 "can't re-enter readline");
163 return NULL;
164 }
Michael W. Hudson30ea2f22004-07-07 17:44:12 +0000165
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000166
167 if (PyOS_ReadlineFunctionPointer == NULL) {
Martin v. Löwisc16f3bd2003-05-03 09:14:54 +0000168#ifdef __VMS
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000169 PyOS_ReadlineFunctionPointer = vms__StdioReadline;
Martin v. Löwisc16f3bd2003-05-03 09:14:54 +0000170#else
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000171 PyOS_ReadlineFunctionPointer = PyOS_StdioReadline;
Martin v. Löwisc16f3bd2003-05-03 09:14:54 +0000172#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000173 }
Michael W. Hudson30ea2f22004-07-07 17:44:12 +0000174
Tim Petersb7e898a2004-07-07 20:42:07 +0000175#ifdef WITH_THREAD
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000176 if (_PyOS_ReadlineLock == NULL) {
177 _PyOS_ReadlineLock = PyThread_allocate_lock();
178 }
Michael W. Hudson30ea2f22004-07-07 17:44:12 +0000179#endif
180
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000181 _PyOS_ReadlineTState = PyThreadState_GET();
182 Py_BEGIN_ALLOW_THREADS
183#ifdef WITH_THREAD
184 PyThread_acquire_lock(_PyOS_ReadlineLock, 1);
185#endif
Michael W. Hudson30ea2f22004-07-07 17:44:12 +0000186
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000187 /* This is needed to handle the unlikely case that the
188 * interpreter is in interactive mode *and* stdin/out are not
189 * a tty. This can happen, for example if python is run like
190 * this: python -i < test1.py
191 */
192 if (!isatty (fileno (sys_stdin)) || !isatty (fileno (sys_stdout)))
193 rv = PyOS_StdioReadline (sys_stdin, sys_stdout, prompt);
194 else
195 rv = (*PyOS_ReadlineFunctionPointer)(sys_stdin, sys_stdout,
196 prompt);
197 Py_END_ALLOW_THREADS
198
199#ifdef WITH_THREAD
200 PyThread_release_lock(_PyOS_ReadlineLock);
201#endif
202
203 _PyOS_ReadlineTState = NULL;
204
205 return rv;
Guido van Rossum6fa63431993-12-24 10:36:57 +0000206}