| 
									
										
										
										
											1993-12-24 10:36:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-02-18 21:53:32 +00: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 10:36:57 +00: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 19:43:43 +00:00
										 |  |  | #include "Python.h"
 | 
					
						
							| 
									
										
										
										
											2002-07-14 23:12:29 +00:00
										 |  |  | #ifdef MS_WINDOWS
 | 
					
						
							|  |  |  | #define WIN32_LEAN_AND_MEAN
 | 
					
						
							|  |  |  | #include "windows.h"
 | 
					
						
							|  |  |  | #endif /* MS_WINDOWS */
 | 
					
						
							| 
									
										
										
										
											1993-12-24 10:36:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-05-03 09:14:54 +00:00
										 |  |  | #ifdef __VMS
 | 
					
						
							|  |  |  | extern char* vms__StdioReadline(FILE *sys_stdin, FILE *sys_stdout, char *prompt); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-07-07 17:44:12 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | PyThreadState* _PyOS_ReadlineTState; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-07-07 20:42:07 +00:00
										 |  |  | #ifdef WITH_THREAD
 | 
					
						
							| 
									
										
										
										
											2004-07-07 17:44:12 +00:00
										 |  |  | #include "pythread.h"
 | 
					
						
							|  |  |  | static PyThread_type_lock _PyOS_ReadlineLock = NULL; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-22 19:20:54 +00:00
										 |  |  | int (*PyOS_InputHook)(void) = NULL; | 
					
						
							| 
									
										
										
										
											1997-02-18 21:53:32 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* This function restarts a fgets() after an EINTR error occurred
 | 
					
						
							|  |  |  |    except if PyOS_InterruptOccurred() returns true. */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int | 
					
						
							| 
									
										
										
										
											2000-07-22 19:20:54 +00:00
										 |  |  | my_fgets(char *buf, int len, FILE *fp) | 
					
						
							| 
									
										
										
										
											1997-02-18 21:53:32 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-06-29 18:39:26 +01:00
										 |  |  | #ifdef MS_WINDOWS
 | 
					
						
							|  |  |  |     HANDLE hInterruptEvent; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     char *p; | 
					
						
							| 
									
										
										
										
											2011-12-16 12:28:32 +01:00
										 |  |  |     int err; | 
					
						
							| 
									
										
										
										
											2011-04-09 15:55:44 +02:00
										 |  |  |     while (1) { | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  |         if (PyOS_InputHook != NULL) | 
					
						
							|  |  |  |             (void)(PyOS_InputHook)(); | 
					
						
							|  |  |  |         errno = 0; | 
					
						
							| 
									
										
										
										
											2011-05-30 23:46:00 +02:00
										 |  |  |         clearerr(fp); | 
					
						
							| 
									
										
										
										
											2012-04-30 06:10:41 +02:00
										 |  |  |         if (_PyVerify_fd(fileno(fp))) | 
					
						
							|  |  |  |             p = fgets(buf, len, fp); | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |             p = NULL; | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  |         if (p != NULL) | 
					
						
							|  |  |  |             return 0; /* No error */ | 
					
						
							| 
									
										
										
										
											2011-12-16 12:28:32 +01:00
										 |  |  |         err = errno; | 
					
						
							| 
									
										
										
										
											2002-07-14 23:12:29 +00:00
										 |  |  | #ifdef MS_WINDOWS
 | 
					
						
							| 
									
										
										
										
											2012-06-29 18:39:26 +01:00
										 |  |  |         /* Ctrl-C anywhere on the line or Ctrl-Z if the only character
 | 
					
						
							|  |  |  |            on a line will set ERROR_OPERATION_ABORTED. Under normal | 
					
						
							|  |  |  |            circumstances Ctrl-C will also have caused the SIGINT handler | 
					
						
							|  |  |  |            to fire which will have set the event object returned by | 
					
						
							|  |  |  |            _PyOS_SigintEvent. This signal fires in another thread and | 
					
						
							|  |  |  |            is not guaranteed to have occurred before this point in the | 
					
						
							|  |  |  |            code. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            Therefore: check whether the event is set with a small timeout. | 
					
						
							|  |  |  |            If it is, assume this is a Ctrl-C and reset the event. If it | 
					
						
							|  |  |  |            isn't set assume that this is a Ctrl-Z on its own and drop | 
					
						
							|  |  |  |            through to check for EOF. | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |         */ | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  |         if (GetLastError()==ERROR_OPERATION_ABORTED) { | 
					
						
							| 
									
										
										
										
											2012-06-29 18:39:26 +01:00
										 |  |  |             hInterruptEvent = _PyOS_SigintEvent(); | 
					
						
							|  |  |  |             switch (WaitForSingleObject(hInterruptEvent, 10)) { | 
					
						
							|  |  |  |             case WAIT_OBJECT_0: | 
					
						
							|  |  |  |                 ResetEvent(hInterruptEvent); | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  |                 return 1; /* Interrupt */ | 
					
						
							| 
									
										
										
										
											2012-06-29 18:39:26 +01:00
										 |  |  |             case WAIT_FAILED: | 
					
						
							|  |  |  |                 return -2; /* Error */ | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2002-07-14 23:12:29 +00:00
										 |  |  | #endif /* MS_WINDOWS */
 | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  |         if (feof(fp)) { | 
					
						
							| 
									
										
										
										
											2011-05-10 00:19:53 +02:00
										 |  |  |             clearerr(fp); | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  |             return -1; /* EOF */ | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											1997-02-18 21:53:32 +00:00
										 |  |  | #ifdef EINTR
 | 
					
						
							| 
									
										
										
										
											2011-12-16 12:28:32 +01:00
										 |  |  |         if (err == EINTR) { | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  |             int s; | 
					
						
							| 
									
										
										
										
											2005-04-07 10:11:19 +00:00
										 |  |  | #ifdef WITH_THREAD
 | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  |             PyEval_RestoreThread(_PyOS_ReadlineTState); | 
					
						
							| 
									
										
										
										
											2005-04-07 10:11:19 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  |             s = PyErr_CheckSignals(); | 
					
						
							| 
									
										
										
										
											2005-04-07 10:11:19 +00:00
										 |  |  | #ifdef WITH_THREAD
 | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  |             PyEval_SaveThread(); | 
					
						
							| 
									
										
										
										
											2005-04-07 10:11:19 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2011-04-09 15:55:44 +02:00
										 |  |  |             if (s < 0) | 
					
						
							|  |  |  |                     return 1; | 
					
						
							| 
									
										
										
										
											2012-06-29 18:39:26 +01:00
										 |  |  |         /* try again */ | 
					
						
							| 
									
										
										
										
											2011-04-09 15:55:44 +02:00
										 |  |  |             continue; | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											1997-02-18 21:53:32 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  |         if (PyOS_InterruptOccurred()) { | 
					
						
							|  |  |  |             return 1; /* Interrupt */ | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         return -2; /* Error */ | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  |     /* NOTREACHED */ | 
					
						
							| 
									
										
										
										
											1997-02-18 21:53:32 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Readline implementation using fgets() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | char * | 
					
						
							| 
									
										
										
										
											2002-10-26 14:39:10 +00:00
										 |  |  | PyOS_StdioReadline(FILE *sys_stdin, FILE *sys_stdout, char *prompt) | 
					
						
							| 
									
										
										
										
											1997-02-18 21:53:32 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     size_t n; | 
					
						
							|  |  |  |     char *p; | 
					
						
							|  |  |  |     n = 100; | 
					
						
							|  |  |  |     if ((p = (char *)PyMem_MALLOC(n)) == NULL) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     fflush(sys_stdout); | 
					
						
							|  |  |  |     if (prompt) | 
					
						
							|  |  |  |         fprintf(stderr, "%s", prompt); | 
					
						
							|  |  |  |     fflush(stderr); | 
					
						
							|  |  |  |     switch (my_fgets(p, (int)n, sys_stdin)) { | 
					
						
							|  |  |  |     case 0: /* Normal case */ | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case 1: /* Interrupt */ | 
					
						
							|  |  |  |         PyMem_FREE(p); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     case -1: /* EOF */ | 
					
						
							|  |  |  |     case -2: /* Error */ | 
					
						
							|  |  |  |     default: /* Shouldn't happen */ | 
					
						
							|  |  |  |         *p = '\0'; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     n = strlen(p); | 
					
						
							|  |  |  |     while (n > 0 && p[n-1] != '\n') { | 
					
						
							|  |  |  |         size_t incr = n+2; | 
					
						
							|  |  |  |         p = (char *)PyMem_REALLOC(p, n + incr); | 
					
						
							|  |  |  |         if (p == NULL) | 
					
						
							|  |  |  |             return NULL; | 
					
						
							|  |  |  |         if (incr > INT_MAX) { | 
					
						
							|  |  |  |             PyErr_SetString(PyExc_OverflowError, "input line too long"); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (my_fgets(p+n, (int)incr, sys_stdin) != 0) | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         n += strlen(p+n); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return (char *)PyMem_REALLOC(p, n+1); | 
					
						
							| 
									
										
										
										
											1997-02-18 21:53:32 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* By initializing this function pointer, systems embedding Python can
 | 
					
						
							| 
									
										
										
										
											2000-05-03 23:44:39 +00:00
										 |  |  |    override the readline function. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    Note: Python expects in return a buffer allocated with PyMem_Malloc. */ | 
					
						
							| 
									
										
										
										
											1997-02-18 21:53:32 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-10-26 14:39:10 +00:00
										 |  |  | char *(*PyOS_ReadlineFunctionPointer)(FILE *, FILE *, char *); | 
					
						
							| 
									
										
										
										
											1997-02-18 21:53:32 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Interface used by tokenizer.c and bltinmodule.c */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | char * | 
					
						
							| 
									
										
										
										
											2002-10-26 14:39:10 +00:00
										 |  |  | PyOS_Readline(FILE *sys_stdin, FILE *sys_stdout, char *prompt) | 
					
						
							| 
									
										
										
										
											1997-02-18 21:53:32 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     char *rv; | 
					
						
							| 
									
										
										
										
											2002-10-26 14:39:10 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     if (_PyOS_ReadlineTState == PyThreadState_GET()) { | 
					
						
							|  |  |  |         PyErr_SetString(PyExc_RuntimeError, | 
					
						
							|  |  |  |                         "can't re-enter readline"); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2004-07-07 17:44:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (PyOS_ReadlineFunctionPointer == NULL) { | 
					
						
							| 
									
										
										
										
											2003-05-03 09:14:54 +00:00
										 |  |  | #ifdef __VMS
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |         PyOS_ReadlineFunctionPointer = vms__StdioReadline; | 
					
						
							| 
									
										
										
										
											2003-05-03 09:14:54 +00:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |         PyOS_ReadlineFunctionPointer = PyOS_StdioReadline; | 
					
						
							| 
									
										
										
										
											2003-05-03 09:14:54 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-07-07 20:42:07 +00:00
										 |  |  | #ifdef WITH_THREAD
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     if (_PyOS_ReadlineLock == NULL) { | 
					
						
							|  |  |  |         _PyOS_ReadlineLock = PyThread_allocate_lock(); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2004-07-07 17:44:12 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2002-10-26 14:39:10 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     _PyOS_ReadlineTState = PyThreadState_GET(); | 
					
						
							|  |  |  |     Py_BEGIN_ALLOW_THREADS | 
					
						
							| 
									
										
										
										
											2004-07-07 20:42:07 +00:00
										 |  |  | #ifdef WITH_THREAD
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     PyThread_acquire_lock(_PyOS_ReadlineLock, 1); | 
					
						
							| 
									
										
										
										
											2004-07-07 17:44:12 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2002-10-26 14:39:10 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     /* This is needed to handle the unlikely case that the
 | 
					
						
							|  |  |  |      * interpreter is in interactive mode *and* stdin/out are not | 
					
						
							|  |  |  |      * a tty.  This can happen, for example if python is run like | 
					
						
							|  |  |  |      * this: python -i < test1.py | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     if (!isatty (fileno (sys_stdin)) || !isatty (fileno (sys_stdout))) | 
					
						
							|  |  |  |         rv = PyOS_StdioReadline (sys_stdin, sys_stdout, prompt); | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         rv = (*PyOS_ReadlineFunctionPointer)(sys_stdin, sys_stdout, | 
					
						
							|  |  |  |                                              prompt); | 
					
						
							|  |  |  |     Py_END_ALLOW_THREADS | 
					
						
							| 
									
										
										
										
											2004-07-07 17:44:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-07-07 20:42:07 +00:00
										 |  |  | #ifdef WITH_THREAD
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     PyThread_release_lock(_PyOS_ReadlineLock); | 
					
						
							| 
									
										
										
										
											2004-07-07 17:44:12 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     _PyOS_ReadlineTState = NULL; | 
					
						
							| 
									
										
										
										
											2004-07-07 17:44:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     return rv; | 
					
						
							| 
									
										
										
										
											1993-12-24 10:36:57 +00:00
										 |  |  | } |