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.
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
14 #define WIN32_LEAN_AND_MEAN
16 #endif /* MS_WINDOWS */
19 extern char* vms__StdioReadline(FILE *sys_stdin
, FILE *sys_stdout
, char *prompt
);
23 PyThreadState
* _PyOS_ReadlineTState
;
27 static PyThread_type_lock _PyOS_ReadlineLock
= NULL
;
30 int (*PyOS_InputHook
)(void) = NULL
;
33 int Py_RISCOSWimpFlag
;
36 /* This function restarts a fgets() after an EINTR error occurred
37 except if PyOS_InterruptOccurred() returns true. */
40 my_fgets(char *buf
, int len
, FILE *fp
)
43 if (PyOS_InputHook
!= NULL
)
44 (void)(PyOS_InputHook
)();
46 p
= fgets(buf
, len
, fp
);
48 return 0; /* No error */
50 /* In the case of a Ctrl+C or some other external event
51 interrupting the operation:
52 Win2k/NT: ERROR_OPERATION_ABORTED is the most recent Win32
53 error code (and feof() returns TRUE).
54 Win9x: Ctrl+C seems to have no effect on fgets() returning
55 early - the signal handler is called, but the fgets()
56 only returns "normally" (ie, when Enter hit or feof())
58 if (GetLastError()==ERROR_OPERATION_ABORTED
) {
59 /* Signals come asynchronously, so we sleep a brief
60 moment before checking if the handler has been
61 triggered (we cant just return 1 before the
62 signal handler has been called, as the later
63 signal may be treated as a separate interrupt).
66 if (PyOS_InterruptOccurred()) {
67 return 1; /* Interrupt */
69 /* Either the sleep wasn't long enough (need a
70 short loop retrying?) or not interrupted at all
71 (in which case we should revisit the whole thing!)
72 Logging some warning would be nice. assert is not
73 viable as under the debugger, the various dialogs
74 mean the condition is not true.
77 #endif /* MS_WINDOWS */
85 PyEval_RestoreThread(_PyOS_ReadlineTState
);
87 s
= PyErr_CheckSignals();
96 if (PyOS_InterruptOccurred()) {
97 return 1; /* Interrupt */
99 return -2; /* Error */
103 /* Readline implementation using fgets() */
106 PyOS_StdioReadline(FILE *sys_stdin
, FILE *sys_stdout
, char *prompt
)
111 if ((p
= (char *)PyMem_MALLOC(n
)) == NULL
)
116 fprintf(stderr
, "%s", prompt
);
119 if(Py_RISCOSWimpFlag
)
120 fprintf(stderr
, "\x0cr%s\x0c", prompt
);
122 fprintf(stderr
, "%s", prompt
);
126 switch (my_fgets(p
, (int)n
, sys_stdin
)) {
127 case 0: /* Normal case */
129 case 1: /* Interrupt */
134 default: /* Shouldn't happen */
139 while (n
> 0 && p
[n
-1] != '\n') {
141 p
= (char *)PyMem_REALLOC(p
, n
+ incr
);
144 if (incr
> INT_MAX
) {
145 PyErr_SetString(PyExc_OverflowError
, "input line too long");
147 if (my_fgets(p
+n
, (int)incr
, sys_stdin
) != 0)
151 return (char *)PyMem_REALLOC(p
, n
+1);
155 /* By initializing this function pointer, systems embedding Python can
156 override the readline function.
158 Note: Python expects in return a buffer allocated with PyMem_Malloc. */
160 char *(*PyOS_ReadlineFunctionPointer
)(FILE *, FILE *, char *);
163 /* Interface used by tokenizer.c and bltinmodule.c */
166 PyOS_Readline(FILE *sys_stdin
, FILE *sys_stdout
, char *prompt
)
170 if (_PyOS_ReadlineTState
== PyThreadState_GET()) {
171 PyErr_SetString(PyExc_RuntimeError
,
172 "can't re-enter readline");
177 if (PyOS_ReadlineFunctionPointer
== NULL
) {
179 PyOS_ReadlineFunctionPointer
= vms__StdioReadline
;
181 PyOS_ReadlineFunctionPointer
= PyOS_StdioReadline
;
186 if (_PyOS_ReadlineLock
== NULL
) {
187 _PyOS_ReadlineLock
= PyThread_allocate_lock();
191 _PyOS_ReadlineTState
= PyThreadState_GET();
192 Py_BEGIN_ALLOW_THREADS
194 PyThread_acquire_lock(_PyOS_ReadlineLock
, 1);
197 /* This is needed to handle the unlikely case that the
198 * interpreter is in interactive mode *and* stdin/out are not
199 * a tty. This can happen, for example if python is run like
200 * this: python -i < test1.py
202 if (!isatty (fileno (sys_stdin
)) || !isatty (fileno (sys_stdout
)))
203 rv
= PyOS_StdioReadline (sys_stdin
, sys_stdout
, prompt
);
205 rv
= (*PyOS_ReadlineFunctionPointer
)(sys_stdin
, sys_stdout
,
210 PyThread_release_lock(_PyOS_ReadlineLock
);
213 _PyOS_ReadlineTState
= NULL
;