1993-12-24 06:36:57 -04:00
|
|
|
|
1997-02-18 17:53:32 -04:00
|
|
|
/* Readline interface for tokenizer.c and [raw_]input() in bltinmodule.c.
|
|
|
|
By default, or when stdin is not a tty device, we have a super
|
|
|
|
simple my_readline function using fgets.
|
|
|
|
Optionally, we can use the GNU readline library.
|
1993-12-24 06:36:57 -04:00
|
|
|
my_readline() has a different return value from GNU readline():
|
|
|
|
- NULL if an interrupt occurred or if an error occurred
|
|
|
|
- a malloc'ed empty string if EOF was read
|
|
|
|
- a malloc'ed string ending in \n normally
|
|
|
|
*/
|
|
|
|
|
1998-08-27 16:43:43 -03:00
|
|
|
#include "Python.h"
|
1993-12-24 06:36:57 -04:00
|
|
|
|
2000-07-22 16:20:54 -03:00
|
|
|
int (*PyOS_InputHook)(void) = NULL;
|
1997-02-18 17:53:32 -04:00
|
|
|
|
2001-03-02 02:34:14 -04:00
|
|
|
#ifdef RISCOS
|
|
|
|
int Py_RISCOSWimpFlag;
|
|
|
|
#endif
|
|
|
|
|
1997-02-18 17:53:32 -04:00
|
|
|
/* This function restarts a fgets() after an EINTR error occurred
|
|
|
|
except if PyOS_InterruptOccurred() returns true. */
|
|
|
|
|
|
|
|
static int
|
2000-07-22 16:20:54 -03:00
|
|
|
my_fgets(char *buf, int len, FILE *fp)
|
1997-02-18 17:53:32 -04:00
|
|
|
{
|
|
|
|
char *p;
|
|
|
|
for (;;) {
|
1997-08-11 15:57:29 -03:00
|
|
|
if (PyOS_InputHook != NULL)
|
|
|
|
(void)(PyOS_InputHook)();
|
1997-02-18 17:53:32 -04:00
|
|
|
errno = 0;
|
|
|
|
p = fgets(buf, len, fp);
|
|
|
|
if (p != NULL)
|
|
|
|
return 0; /* No error */
|
|
|
|
if (feof(fp)) {
|
|
|
|
return -1; /* EOF */
|
|
|
|
}
|
|
|
|
#ifdef EINTR
|
|
|
|
if (errno == EINTR) {
|
|
|
|
if (PyOS_InterruptOccurred()) {
|
|
|
|
return 1; /* Interrupt */
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
if (PyOS_InterruptOccurred()) {
|
|
|
|
return 1; /* Interrupt */
|
|
|
|
}
|
|
|
|
return -2; /* Error */
|
|
|
|
}
|
|
|
|
/* NOTREACHED */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Readline implementation using fgets() */
|
|
|
|
|
|
|
|
char *
|
2000-07-22 16:20:54 -03:00
|
|
|
PyOS_StdioReadline(char *prompt)
|
1997-02-18 17:53:32 -04:00
|
|
|
{
|
2000-06-28 19:00:02 -03:00
|
|
|
size_t n;
|
1997-02-18 17:53:32 -04:00
|
|
|
char *p;
|
1993-12-24 06:36:57 -04:00
|
|
|
n = 100;
|
2000-05-03 20:44:39 -03:00
|
|
|
if ((p = PyMem_MALLOC(n)) == NULL)
|
1993-12-24 06:36:57 -04:00
|
|
|
return NULL;
|
1996-01-11 21:30:55 -04:00
|
|
|
fflush(stdout);
|
2001-03-02 02:34:14 -04:00
|
|
|
#ifndef RISCOS
|
1993-12-24 06:36:57 -04:00
|
|
|
if (prompt)
|
|
|
|
fprintf(stderr, "%s", prompt);
|
2001-03-02 02:34:14 -04:00
|
|
|
#else
|
|
|
|
if (prompt) {
|
|
|
|
if(Py_RISCOSWimpFlag)
|
|
|
|
fprintf(stderr, "\x0cr%s\x0c", prompt);
|
|
|
|
else
|
|
|
|
fprintf(stderr, "%s", prompt);
|
|
|
|
}
|
|
|
|
#endif
|
1996-01-11 21:30:55 -04:00
|
|
|
fflush(stderr);
|
2000-06-28 19:00:02 -03:00
|
|
|
switch (my_fgets(p, (int)n, stdin)) {
|
1994-08-01 08:34:53 -03:00
|
|
|
case 0: /* Normal case */
|
|
|
|
break;
|
|
|
|
case 1: /* Interrupt */
|
2000-05-03 20:44:39 -03:00
|
|
|
PyMem_FREE(p);
|
1993-12-24 06:36:57 -04:00
|
|
|
return NULL;
|
1994-08-01 08:34:53 -03:00
|
|
|
case -1: /* EOF */
|
|
|
|
case -2: /* Error */
|
|
|
|
default: /* Shouldn't happen */
|
|
|
|
*p = '\0';
|
|
|
|
break;
|
1993-12-24 06:36:57 -04:00
|
|
|
}
|
1994-08-01 08:34:53 -03:00
|
|
|
#ifdef MPW
|
|
|
|
/* Hack for MPW C where the prompt comes right back in the input */
|
|
|
|
/* XXX (Actually this would be rather nice on most systems...) */
|
|
|
|
n = strlen(prompt);
|
|
|
|
if (strncmp(p, prompt, n) == 0)
|
|
|
|
memmove(p, p + n, strlen(p) - n + 1);
|
|
|
|
#endif
|
1993-12-24 06:36:57 -04:00
|
|
|
n = strlen(p);
|
|
|
|
while (n > 0 && p[n-1] != '\n') {
|
2000-06-28 19:00:02 -03:00
|
|
|
size_t incr = n+2;
|
2000-05-03 20:44:39 -03:00
|
|
|
p = PyMem_REALLOC(p, n + incr);
|
1993-12-24 06:36:57 -04:00
|
|
|
if (p == NULL)
|
|
|
|
return NULL;
|
2000-06-28 19:00:02 -03:00
|
|
|
if (incr > INT_MAX) {
|
|
|
|
PyErr_SetString(PyExc_OverflowError, "input line too long");
|
|
|
|
}
|
|
|
|
if (my_fgets(p+n, (int)incr, stdin) != 0)
|
1993-12-24 06:36:57 -04:00
|
|
|
break;
|
|
|
|
n += strlen(p+n);
|
|
|
|
}
|
2000-05-03 20:44:39 -03:00
|
|
|
return PyMem_REALLOC(p, n+1);
|
1997-02-18 17:53:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* By initializing this function pointer, systems embedding Python can
|
2000-05-03 20:44:39 -03:00
|
|
|
override the readline function.
|
|
|
|
|
|
|
|
Note: Python expects in return a buffer allocated with PyMem_Malloc. */
|
1997-02-18 17:53:32 -04:00
|
|
|
|
2000-07-09 00:09:57 -03:00
|
|
|
char *(*PyOS_ReadlineFunctionPointer)(char *);
|
1997-02-18 17:53:32 -04:00
|
|
|
|
|
|
|
|
|
|
|
/* Interface used by tokenizer.c and bltinmodule.c */
|
|
|
|
|
|
|
|
char *
|
2000-07-22 16:20:54 -03:00
|
|
|
PyOS_Readline(char *prompt)
|
1997-02-18 17:53:32 -04:00
|
|
|
{
|
1998-08-29 13:03:27 -03:00
|
|
|
char *rv;
|
1997-02-18 17:53:32 -04:00
|
|
|
if (PyOS_ReadlineFunctionPointer == NULL) {
|
|
|
|
PyOS_ReadlineFunctionPointer = PyOS_StdioReadline;
|
|
|
|
}
|
1998-08-27 16:43:43 -03:00
|
|
|
Py_BEGIN_ALLOW_THREADS
|
1998-08-29 13:03:27 -03:00
|
|
|
rv = (*PyOS_ReadlineFunctionPointer)(prompt);
|
1998-08-27 16:43:43 -03:00
|
|
|
Py_END_ALLOW_THREADS
|
1998-08-29 13:03:27 -03:00
|
|
|
return rv;
|
1993-12-24 06:36:57 -04:00
|
|
|
}
|