| Guido van Rossum | 290900a | 1997-09-26 21:51:21 +0000 | [diff] [blame] | 1 | /* This module makes GNU readline available to Python.  It has ideas | 
|  | 2 | * contributed by Lee Busby, LLNL, and William Magro, Cornell Theory | 
|  | 3 | * Center.  The completer interface was inspired by Lele Gaifax. | 
|  | 4 | * | 
|  | 5 | * More recently, it was largely rewritten by Guido van Rossum who is | 
|  | 6 | * now maintaining it. | 
| Guido van Rossum | 0969d36 | 1997-08-05 21:27:50 +0000 | [diff] [blame] | 7 | */ | 
|  | 8 |  | 
| Guido van Rossum | 290900a | 1997-09-26 21:51:21 +0000 | [diff] [blame] | 9 | /* Standard definitions */ | 
| Guido van Rossum | 0969d36 | 1997-08-05 21:27:50 +0000 | [diff] [blame] | 10 | #include "Python.h" | 
|  | 11 | #include <setjmp.h> | 
|  | 12 | #include <signal.h> | 
| Guido van Rossum | 290900a | 1997-09-26 21:51:21 +0000 | [diff] [blame] | 13 | #include <errno.h> | 
| Guido van Rossum | 0969d36 | 1997-08-05 21:27:50 +0000 | [diff] [blame] | 14 |  | 
| Guido van Rossum | 73bacfc | 1998-01-19 22:05:22 +0000 | [diff] [blame] | 15 | #ifdef HAVE_UNISTD_H | 
|  | 16 | #include <unistd.h> /* For isatty() */ | 
|  | 17 | #endif | 
|  | 18 |  | 
| Guido van Rossum | 290900a | 1997-09-26 21:51:21 +0000 | [diff] [blame] | 19 | /* GNU readline definitions */ | 
| Guido van Rossum | b0e51b2 | 2001-04-13 18:14:27 +0000 | [diff] [blame] | 20 | #undef HAVE_CONFIG_H /* Else readline/chardefs.h includes strings.h */ | 
| Guido van Rossum | bcc2074 | 1998-08-04 22:53:56 +0000 | [diff] [blame] | 21 | #include <readline/readline.h> | 
|  | 22 | #include <readline/history.h> | 
| Guido van Rossum | 730806d | 1998-04-10 22:27:42 +0000 | [diff] [blame] | 23 |  | 
| Guido van Rossum | 353ae58 | 2001-07-10 16:45:32 +0000 | [diff] [blame] | 24 | #ifdef HAVE_RL_COMPLETION_MATCHES | 
|  | 25 | #define completion_matches(x, y) rl_completion_matches((x), ((rl_compentry_func_t *)(y))) | 
|  | 26 | #endif | 
|  | 27 |  | 
| Guido van Rossum | 290900a | 1997-09-26 21:51:21 +0000 | [diff] [blame] | 28 | /* Pointers needed from outside (but not declared in a header file). */ | 
| Guido van Rossum | 5a53019 | 2001-01-10 21:03:32 +0000 | [diff] [blame] | 29 | extern DL_IMPORT(int) (*PyOS_InputHook)(void); | 
|  | 30 | extern DL_IMPORT(char) *(*PyOS_ReadlineFunctionPointer)(char *); | 
| Guido van Rossum | 0969d36 | 1997-08-05 21:27:50 +0000 | [diff] [blame] | 31 |  | 
| Guido van Rossum | 0969d36 | 1997-08-05 21:27:50 +0000 | [diff] [blame] | 32 |  | 
| Guido van Rossum | 290900a | 1997-09-26 21:51:21 +0000 | [diff] [blame] | 33 | /* Exported function to send one line to readline's init file parser */ | 
|  | 34 |  | 
|  | 35 | static PyObject * | 
| Peter Schneider-Kamp | a788a7f | 2000-07-10 09:57:19 +0000 | [diff] [blame] | 36 | parse_and_bind(PyObject *self, PyObject *args) | 
| Guido van Rossum | 290900a | 1997-09-26 21:51:21 +0000 | [diff] [blame] | 37 | { | 
| Guido van Rossum | 3b5330e | 1998-12-04 15:34:39 +0000 | [diff] [blame] | 38 | char *s, *copy; | 
| Guido van Rossum | 43713e5 | 2000-02-29 13:59:29 +0000 | [diff] [blame] | 39 | if (!PyArg_ParseTuple(args, "s:parse_and_bind", &s)) | 
| Guido van Rossum | 290900a | 1997-09-26 21:51:21 +0000 | [diff] [blame] | 40 | return NULL; | 
| Guido van Rossum | 3b5330e | 1998-12-04 15:34:39 +0000 | [diff] [blame] | 41 | /* Make a copy -- rl_parse_and_bind() modifies its argument */ | 
|  | 42 | /* Bernard Herzog */ | 
|  | 43 | copy = malloc(1 + strlen(s)); | 
|  | 44 | if (copy == NULL) | 
|  | 45 | return PyErr_NoMemory(); | 
|  | 46 | strcpy(copy, s); | 
|  | 47 | rl_parse_and_bind(copy); | 
|  | 48 | free(copy); /* Free the copy */ | 
| Guido van Rossum | 290900a | 1997-09-26 21:51:21 +0000 | [diff] [blame] | 49 | Py_INCREF(Py_None); | 
|  | 50 | return Py_None; | 
|  | 51 | } | 
|  | 52 |  | 
|  | 53 | static char doc_parse_and_bind[] = "\ | 
|  | 54 | parse_and_bind(string) -> None\n\ | 
|  | 55 | Parse and execute single line of a readline init file.\ | 
|  | 56 | "; | 
|  | 57 |  | 
|  | 58 |  | 
|  | 59 | /* Exported function to parse a readline init file */ | 
|  | 60 |  | 
|  | 61 | static PyObject * | 
| Peter Schneider-Kamp | a788a7f | 2000-07-10 09:57:19 +0000 | [diff] [blame] | 62 | read_init_file(PyObject *self, PyObject *args) | 
| Guido van Rossum | 290900a | 1997-09-26 21:51:21 +0000 | [diff] [blame] | 63 | { | 
|  | 64 | char *s = NULL; | 
| Guido van Rossum | 43713e5 | 2000-02-29 13:59:29 +0000 | [diff] [blame] | 65 | if (!PyArg_ParseTuple(args, "|z:read_init_file", &s)) | 
| Guido van Rossum | 290900a | 1997-09-26 21:51:21 +0000 | [diff] [blame] | 66 | return NULL; | 
|  | 67 | errno = rl_read_init_file(s); | 
|  | 68 | if (errno) | 
|  | 69 | return PyErr_SetFromErrno(PyExc_IOError); | 
|  | 70 | Py_INCREF(Py_None); | 
|  | 71 | return Py_None; | 
|  | 72 | } | 
|  | 73 |  | 
|  | 74 | static char doc_read_init_file[] = "\ | 
|  | 75 | read_init_file([filename]) -> None\n\ | 
|  | 76 | Parse a readline initialization file.\n\ | 
|  | 77 | The default filename is the last filename used.\ | 
|  | 78 | "; | 
|  | 79 |  | 
|  | 80 |  | 
| Skip Montanaro | 2806782 | 2000-07-06 18:55:12 +0000 | [diff] [blame] | 81 | /* Exported function to load a readline history file */ | 
|  | 82 |  | 
|  | 83 | static PyObject * | 
| Peter Schneider-Kamp | a788a7f | 2000-07-10 09:57:19 +0000 | [diff] [blame] | 84 | read_history_file(PyObject *self, PyObject *args) | 
| Skip Montanaro | 2806782 | 2000-07-06 18:55:12 +0000 | [diff] [blame] | 85 | { | 
|  | 86 | char *s = NULL; | 
|  | 87 | if (!PyArg_ParseTuple(args, "|z:read_history_file", &s)) | 
|  | 88 | return NULL; | 
|  | 89 | errno = read_history(s); | 
|  | 90 | if (errno) | 
|  | 91 | return PyErr_SetFromErrno(PyExc_IOError); | 
|  | 92 | Py_INCREF(Py_None); | 
|  | 93 | return Py_None; | 
|  | 94 | } | 
|  | 95 |  | 
| Skip Montanaro | 49bd24d | 2000-07-19 16:54:53 +0000 | [diff] [blame] | 96 | static int history_length = -1; /* do not truncate history by default */ | 
| Skip Montanaro | 2806782 | 2000-07-06 18:55:12 +0000 | [diff] [blame] | 97 | static char doc_read_history_file[] = "\ | 
|  | 98 | read_history_file([filename]) -> None\n\ | 
|  | 99 | Load a readline history file.\n\ | 
|  | 100 | The default filename is ~/.history.\ | 
|  | 101 | "; | 
|  | 102 |  | 
|  | 103 |  | 
|  | 104 | /* Exported function to save a readline history file */ | 
|  | 105 |  | 
|  | 106 | static PyObject * | 
| Peter Schneider-Kamp | a788a7f | 2000-07-10 09:57:19 +0000 | [diff] [blame] | 107 | write_history_file(PyObject *self, PyObject *args) | 
| Skip Montanaro | 2806782 | 2000-07-06 18:55:12 +0000 | [diff] [blame] | 108 | { | 
|  | 109 | char *s = NULL; | 
|  | 110 | if (!PyArg_ParseTuple(args, "|z:write_history_file", &s)) | 
|  | 111 | return NULL; | 
|  | 112 | errno = write_history(s); | 
| Skip Montanaro | 49bd24d | 2000-07-19 16:54:53 +0000 | [diff] [blame] | 113 | if (!errno && history_length >= 0) | 
|  | 114 | history_truncate_file(s, history_length); | 
| Skip Montanaro | 2806782 | 2000-07-06 18:55:12 +0000 | [diff] [blame] | 115 | if (errno) | 
|  | 116 | return PyErr_SetFromErrno(PyExc_IOError); | 
|  | 117 | Py_INCREF(Py_None); | 
|  | 118 | return Py_None; | 
|  | 119 | } | 
|  | 120 |  | 
|  | 121 | static char doc_write_history_file[] = "\ | 
|  | 122 | write_history_file([filename]) -> None\n\ | 
|  | 123 | Save a readline history file.\n\ | 
|  | 124 | The default filename is ~/.history.\ | 
|  | 125 | "; | 
|  | 126 |  | 
|  | 127 |  | 
| Skip Montanaro | 49bd24d | 2000-07-19 16:54:53 +0000 | [diff] [blame] | 128 | static char set_history_length_doc[] = "\ | 
|  | 129 | set_history_length(length) -> None\n\ | 
|  | 130 | set the maximal number of items which will be written to\n\ | 
|  | 131 | the history file. A negative length is used to inhibit\n\ | 
|  | 132 | history truncation.\n\ | 
|  | 133 | "; | 
|  | 134 |  | 
|  | 135 | static PyObject* | 
|  | 136 | set_history_length(PyObject *self, PyObject *args) | 
|  | 137 | { | 
|  | 138 | int length = history_length; | 
| Skip Montanaro | 49bd24d | 2000-07-19 16:54:53 +0000 | [diff] [blame] | 139 | if (!PyArg_ParseTuple(args, "i:set_history_length", &length)) | 
|  | 140 | return NULL; | 
|  | 141 | history_length = length; | 
|  | 142 | Py_INCREF(Py_None); | 
|  | 143 | return Py_None; | 
|  | 144 | } | 
|  | 145 |  | 
|  | 146 |  | 
|  | 147 |  | 
|  | 148 | static char get_history_length_doc[] = "\ | 
|  | 149 | get_history_length() -> int\n\ | 
|  | 150 | return the current history length value.\n\ | 
|  | 151 | "; | 
|  | 152 |  | 
|  | 153 | static PyObject* | 
|  | 154 | get_history_length(PyObject *self, PyObject *args) | 
|  | 155 | { | 
| Skip Montanaro | 49bd24d | 2000-07-19 16:54:53 +0000 | [diff] [blame] | 156 | if (!PyArg_ParseTuple(args, ":get_history_length")) | 
|  | 157 | return NULL; | 
|  | 158 | return Py_BuildValue("i", history_length); | 
|  | 159 | } | 
|  | 160 |  | 
|  | 161 |  | 
|  | 162 |  | 
| Guido van Rossum | 290900a | 1997-09-26 21:51:21 +0000 | [diff] [blame] | 163 | /* Exported function to specify a word completer in Python */ | 
|  | 164 |  | 
|  | 165 | static PyObject *completer = NULL; | 
|  | 166 | static PyThreadState *tstate = NULL; | 
|  | 167 |  | 
| Guido van Rossum | b960e7a | 1999-11-18 17:51:02 +0000 | [diff] [blame] | 168 | static PyObject *begidx = NULL; | 
|  | 169 | static PyObject *endidx = NULL; | 
|  | 170 |  | 
|  | 171 | /* get the beginning index for the scope of the tab-completion */ | 
|  | 172 | static PyObject * | 
| Peter Schneider-Kamp | a788a7f | 2000-07-10 09:57:19 +0000 | [diff] [blame] | 173 | get_begidx(PyObject *self, PyObject *args) | 
| Guido van Rossum | b960e7a | 1999-11-18 17:51:02 +0000 | [diff] [blame] | 174 | { | 
|  | 175 | if(!PyArg_NoArgs(args)) { | 
|  | 176 | return NULL; | 
|  | 177 | } | 
|  | 178 | Py_INCREF(begidx); | 
|  | 179 | return begidx; | 
|  | 180 | } | 
|  | 181 |  | 
|  | 182 | static char doc_get_begidx[] = "\ | 
|  | 183 | get_begidx() -> int\n\ | 
|  | 184 | get the beginning index of the readline tab-completion scope"; | 
|  | 185 |  | 
|  | 186 | /* get the ending index for the scope of the tab-completion */ | 
|  | 187 | static PyObject * | 
| Peter Schneider-Kamp | a788a7f | 2000-07-10 09:57:19 +0000 | [diff] [blame] | 188 | get_endidx(PyObject *self, PyObject *args) | 
| Guido van Rossum | b960e7a | 1999-11-18 17:51:02 +0000 | [diff] [blame] | 189 | { | 
|  | 190 | if(!PyArg_NoArgs(args)) { | 
|  | 191 | return NULL; | 
|  | 192 | } | 
|  | 193 | Py_INCREF(endidx); | 
|  | 194 | return endidx; | 
|  | 195 | } | 
|  | 196 |  | 
|  | 197 | static char doc_get_endidx[] = "\ | 
|  | 198 | get_endidx() -> int\n\ | 
|  | 199 | get the ending index of the readline tab-completion scope"; | 
|  | 200 |  | 
|  | 201 |  | 
|  | 202 | /* set the tab-completion word-delimiters that readline uses */ | 
|  | 203 |  | 
|  | 204 | static PyObject * | 
| Peter Schneider-Kamp | a788a7f | 2000-07-10 09:57:19 +0000 | [diff] [blame] | 205 | set_completer_delims(PyObject *self, PyObject *args) | 
| Guido van Rossum | b960e7a | 1999-11-18 17:51:02 +0000 | [diff] [blame] | 206 | { | 
|  | 207 | char *break_chars; | 
|  | 208 |  | 
| Guido van Rossum | 43713e5 | 2000-02-29 13:59:29 +0000 | [diff] [blame] | 209 | if(!PyArg_ParseTuple(args, "s:set_completer_delims", &break_chars)) { | 
| Guido van Rossum | b960e7a | 1999-11-18 17:51:02 +0000 | [diff] [blame] | 210 | return NULL; | 
|  | 211 | } | 
|  | 212 | free(rl_completer_word_break_characters); | 
|  | 213 | rl_completer_word_break_characters = strdup(break_chars); | 
|  | 214 | Py_INCREF(Py_None); | 
|  | 215 | return Py_None; | 
|  | 216 | } | 
|  | 217 |  | 
|  | 218 | static char doc_set_completer_delims[] = "\ | 
|  | 219 | set_completer_delims(string) -> None\n\ | 
|  | 220 | set the readline word delimiters for tab-completion"; | 
|  | 221 |  | 
|  | 222 |  | 
|  | 223 | /* get the tab-completion word-delimiters that readline uses */ | 
|  | 224 |  | 
|  | 225 | static PyObject * | 
| Peter Schneider-Kamp | a788a7f | 2000-07-10 09:57:19 +0000 | [diff] [blame] | 226 | get_completer_delims(PyObject *self, PyObject *args) | 
| Guido van Rossum | b960e7a | 1999-11-18 17:51:02 +0000 | [diff] [blame] | 227 | { | 
|  | 228 | if(!PyArg_NoArgs(args)) { | 
|  | 229 | return NULL; | 
|  | 230 | } | 
|  | 231 | return PyString_FromString(rl_completer_word_break_characters); | 
|  | 232 | } | 
|  | 233 |  | 
|  | 234 | static char doc_get_completer_delims[] = "\ | 
|  | 235 | get_completer_delims() -> string\n\ | 
|  | 236 | get the readline word delimiters for tab-completion"; | 
|  | 237 |  | 
| Guido van Rossum | 290900a | 1997-09-26 21:51:21 +0000 | [diff] [blame] | 238 | static PyObject * | 
| Peter Schneider-Kamp | a788a7f | 2000-07-10 09:57:19 +0000 | [diff] [blame] | 239 | set_completer(PyObject *self, PyObject *args) | 
| Guido van Rossum | 290900a | 1997-09-26 21:51:21 +0000 | [diff] [blame] | 240 | { | 
|  | 241 | PyObject *function = Py_None; | 
| Guido van Rossum | 43713e5 | 2000-02-29 13:59:29 +0000 | [diff] [blame] | 242 | if (!PyArg_ParseTuple(args, "|O:set_completer", &function)) | 
| Guido van Rossum | 290900a | 1997-09-26 21:51:21 +0000 | [diff] [blame] | 243 | return NULL; | 
|  | 244 | if (function == Py_None) { | 
|  | 245 | Py_XDECREF(completer); | 
|  | 246 | completer = NULL; | 
|  | 247 | tstate = NULL; | 
|  | 248 | } | 
|  | 249 | else if (PyCallable_Check(function)) { | 
|  | 250 | PyObject *tmp = completer; | 
|  | 251 | Py_INCREF(function); | 
|  | 252 | completer = function; | 
|  | 253 | Py_XDECREF(tmp); | 
|  | 254 | tstate = PyThreadState_Get(); | 
|  | 255 | } | 
|  | 256 | else { | 
|  | 257 | PyErr_SetString(PyExc_TypeError, | 
|  | 258 | "set_completer(func): argument not callable"); | 
|  | 259 | return NULL; | 
|  | 260 | } | 
|  | 261 | Py_INCREF(Py_None); | 
|  | 262 | return Py_None; | 
|  | 263 | } | 
|  | 264 |  | 
|  | 265 | static char doc_set_completer[] = "\ | 
|  | 266 | set_completer([function]) -> None\n\ | 
|  | 267 | Set or remove the completer function.\n\ | 
|  | 268 | The function is called as function(text, state),\n\ | 
| Fred Drake | 52d55a3 | 2001-08-01 21:44:14 +0000 | [diff] [blame] | 269 | for state in 0, 1, 2, ..., until it returns a non-string.\n\ | 
| Guido van Rossum | 290900a | 1997-09-26 21:51:21 +0000 | [diff] [blame] | 270 | It should return the next possible completion starting with 'text'.\ | 
|  | 271 | "; | 
|  | 272 |  | 
| Guido van Rossum | 79378ff | 1997-10-07 14:53:21 +0000 | [diff] [blame] | 273 | /* Exported function to read the current line buffer */ | 
|  | 274 |  | 
|  | 275 | static PyObject * | 
| Peter Schneider-Kamp | a788a7f | 2000-07-10 09:57:19 +0000 | [diff] [blame] | 276 | get_line_buffer(PyObject *self, PyObject *args) | 
| Guido van Rossum | 79378ff | 1997-10-07 14:53:21 +0000 | [diff] [blame] | 277 | { | 
| Guido van Rossum | b960e7a | 1999-11-18 17:51:02 +0000 | [diff] [blame] | 278 | if (!PyArg_NoArgs(args)) | 
| Guido van Rossum | 79378ff | 1997-10-07 14:53:21 +0000 | [diff] [blame] | 279 | return NULL; | 
|  | 280 | return PyString_FromString(rl_line_buffer); | 
|  | 281 | } | 
|  | 282 |  | 
|  | 283 | static char doc_get_line_buffer[] = "\ | 
| Guido van Rossum | a88c5f3 | 1998-05-20 15:50:56 +0000 | [diff] [blame] | 284 | get_line_buffer() -> string\n\ | 
| Guido van Rossum | 79378ff | 1997-10-07 14:53:21 +0000 | [diff] [blame] | 285 | return the current contents of the line buffer.\ | 
|  | 286 | "; | 
|  | 287 |  | 
|  | 288 | /* Exported function to insert text into the line buffer */ | 
|  | 289 |  | 
|  | 290 | static PyObject * | 
| Peter Schneider-Kamp | a788a7f | 2000-07-10 09:57:19 +0000 | [diff] [blame] | 291 | insert_text(PyObject *self, PyObject *args) | 
| Guido van Rossum | 79378ff | 1997-10-07 14:53:21 +0000 | [diff] [blame] | 292 | { | 
|  | 293 | char *s; | 
| Guido van Rossum | 43713e5 | 2000-02-29 13:59:29 +0000 | [diff] [blame] | 294 | if (!PyArg_ParseTuple(args, "s:insert_text", &s)) | 
| Guido van Rossum | 79378ff | 1997-10-07 14:53:21 +0000 | [diff] [blame] | 295 | return NULL; | 
|  | 296 | rl_insert_text(s); | 
|  | 297 | Py_INCREF(Py_None); | 
|  | 298 | return Py_None; | 
|  | 299 | } | 
|  | 300 |  | 
|  | 301 |  | 
|  | 302 | static char doc_insert_text[] = "\ | 
|  | 303 | insert_text(string) -> None\n\ | 
|  | 304 | Insert text into the command line.\ | 
|  | 305 | "; | 
|  | 306 |  | 
| Guido van Rossum | 290900a | 1997-09-26 21:51:21 +0000 | [diff] [blame] | 307 |  | 
|  | 308 | /* Table of functions exported by the module */ | 
| Guido van Rossum | 0969d36 | 1997-08-05 21:27:50 +0000 | [diff] [blame] | 309 |  | 
|  | 310 | static struct PyMethodDef readline_methods[] = | 
| Guido van Rossum | 290900a | 1997-09-26 21:51:21 +0000 | [diff] [blame] | 311 | { | 
| Andrew M. Kuchling | e365fb8 | 2000-08-03 02:06:16 +0000 | [diff] [blame] | 312 | {"parse_and_bind", parse_and_bind, METH_VARARGS, doc_parse_and_bind}, | 
| Andrew M. Kuchling | a1abb72 | 2000-08-03 02:34:44 +0000 | [diff] [blame] | 313 | {"get_line_buffer", get_line_buffer, | 
|  | 314 | METH_OLDARGS, doc_get_line_buffer}, | 
| Andrew M. Kuchling | e365fb8 | 2000-08-03 02:06:16 +0000 | [diff] [blame] | 315 | {"insert_text", insert_text, METH_VARARGS, doc_insert_text}, | 
|  | 316 | {"read_init_file", read_init_file, METH_VARARGS, doc_read_init_file}, | 
|  | 317 | {"read_history_file", read_history_file, | 
|  | 318 | METH_VARARGS, doc_read_history_file}, | 
|  | 319 | {"write_history_file", write_history_file, | 
|  | 320 | METH_VARARGS, doc_write_history_file}, | 
|  | 321 | {"set_history_length", set_history_length, | 
|  | 322 | METH_VARARGS, set_history_length_doc}, | 
|  | 323 | {"get_history_length", get_history_length, | 
|  | 324 | METH_VARARGS, get_history_length_doc}, | 
|  | 325 | {"set_completer", set_completer, METH_VARARGS, doc_set_completer}, | 
| Andrew M. Kuchling | a1abb72 | 2000-08-03 02:34:44 +0000 | [diff] [blame] | 326 | {"get_begidx", get_begidx, METH_OLDARGS, doc_get_begidx}, | 
|  | 327 | {"get_endidx", get_endidx, METH_OLDARGS, doc_get_endidx}, | 
| Guido van Rossum | b960e7a | 1999-11-18 17:51:02 +0000 | [diff] [blame] | 328 |  | 
| Andrew M. Kuchling | a1abb72 | 2000-08-03 02:34:44 +0000 | [diff] [blame] | 329 | {"set_completer_delims", set_completer_delims, | 
|  | 330 | METH_VARARGS, doc_set_completer_delims}, | 
|  | 331 | {"get_completer_delims", get_completer_delims, | 
|  | 332 | METH_OLDARGS, doc_get_completer_delims}, | 
| Guido van Rossum | 290900a | 1997-09-26 21:51:21 +0000 | [diff] [blame] | 333 | {0, 0} | 
| Guido van Rossum | 0969d36 | 1997-08-05 21:27:50 +0000 | [diff] [blame] | 334 | }; | 
|  | 335 |  | 
| Guido van Rossum | 290900a | 1997-09-26 21:51:21 +0000 | [diff] [blame] | 336 | /* C function to call the Python completer. */ | 
| Guido van Rossum | 0969d36 | 1997-08-05 21:27:50 +0000 | [diff] [blame] | 337 |  | 
| Guido van Rossum | 290900a | 1997-09-26 21:51:21 +0000 | [diff] [blame] | 338 | static char * | 
| Peter Schneider-Kamp | a788a7f | 2000-07-10 09:57:19 +0000 | [diff] [blame] | 339 | on_completion(char *text, int state) | 
| Guido van Rossum | 0969d36 | 1997-08-05 21:27:50 +0000 | [diff] [blame] | 340 | { | 
| Guido van Rossum | 290900a | 1997-09-26 21:51:21 +0000 | [diff] [blame] | 341 | char *result = NULL; | 
|  | 342 | if (completer != NULL) { | 
|  | 343 | PyObject *r; | 
| Guido van Rossum | a59406a | 1997-10-10 17:39:19 +0000 | [diff] [blame] | 344 | PyThreadState *save_tstate; | 
| Guido van Rossum | 290900a | 1997-09-26 21:51:21 +0000 | [diff] [blame] | 345 | /* Note that readline is called with the interpreter | 
|  | 346 | lock released! */ | 
| Guido van Rossum | a59406a | 1997-10-10 17:39:19 +0000 | [diff] [blame] | 347 | save_tstate = PyThreadState_Swap(NULL); | 
| Guido van Rossum | 290900a | 1997-09-26 21:51:21 +0000 | [diff] [blame] | 348 | PyEval_RestoreThread(tstate); | 
|  | 349 | r = PyObject_CallFunction(completer, "si", text, state); | 
|  | 350 | if (r == NULL) | 
|  | 351 | goto error; | 
|  | 352 | if (r == Py_None) { | 
|  | 353 | result = NULL; | 
|  | 354 | } | 
|  | 355 | else { | 
|  | 356 | char *s = PyString_AsString(r); | 
|  | 357 | if (s == NULL) | 
|  | 358 | goto error; | 
|  | 359 | result = strdup(s); | 
|  | 360 | } | 
|  | 361 | Py_DECREF(r); | 
|  | 362 | goto done; | 
|  | 363 | error: | 
|  | 364 | PyErr_Clear(); | 
|  | 365 | Py_XDECREF(r); | 
|  | 366 | done: | 
|  | 367 | PyEval_SaveThread(); | 
| Guido van Rossum | a59406a | 1997-10-10 17:39:19 +0000 | [diff] [blame] | 368 | PyThreadState_Swap(save_tstate); | 
| Guido van Rossum | 290900a | 1997-09-26 21:51:21 +0000 | [diff] [blame] | 369 | } | 
|  | 370 | return result; | 
| Guido van Rossum | 0969d36 | 1997-08-05 21:27:50 +0000 | [diff] [blame] | 371 | } | 
|  | 372 |  | 
| Guido van Rossum | 290900a | 1997-09-26 21:51:21 +0000 | [diff] [blame] | 373 |  | 
| Guido van Rossum | b960e7a | 1999-11-18 17:51:02 +0000 | [diff] [blame] | 374 | /* a more flexible constructor that saves the "begidx" and "endidx" | 
|  | 375 | * before calling the normal completer */ | 
|  | 376 |  | 
|  | 377 | char ** | 
| Peter Schneider-Kamp | a788a7f | 2000-07-10 09:57:19 +0000 | [diff] [blame] | 378 | flex_complete(char *text, int start, int end) | 
| Guido van Rossum | b960e7a | 1999-11-18 17:51:02 +0000 | [diff] [blame] | 379 | { | 
|  | 380 | Py_XDECREF(begidx); | 
|  | 381 | Py_XDECREF(endidx); | 
|  | 382 | begidx = PyInt_FromLong((long) start); | 
|  | 383 | endidx = PyInt_FromLong((long) end); | 
|  | 384 | return completion_matches(text, *on_completion); | 
|  | 385 | } | 
|  | 386 |  | 
| Guido van Rossum | 290900a | 1997-09-26 21:51:21 +0000 | [diff] [blame] | 387 | /* Helper to initialize GNU readline properly. */ | 
|  | 388 |  | 
|  | 389 | static void | 
| Thomas Wouters | f3f33dc | 2000-07-21 06:00:07 +0000 | [diff] [blame] | 390 | setup_readline(void) | 
| Guido van Rossum | 290900a | 1997-09-26 21:51:21 +0000 | [diff] [blame] | 391 | { | 
|  | 392 | rl_readline_name = "python"; | 
|  | 393 | /* Force rebind of TAB to insert-tab */ | 
|  | 394 | rl_bind_key('\t', rl_insert); | 
|  | 395 | /* Bind both ESC-TAB and ESC-ESC to the completion function */ | 
|  | 396 | rl_bind_key_in_map ('\t', rl_complete, emacs_meta_keymap); | 
|  | 397 | rl_bind_key_in_map ('\033', rl_complete, emacs_meta_keymap); | 
|  | 398 | /* Set our completion function */ | 
| Guido van Rossum | b960e7a | 1999-11-18 17:51:02 +0000 | [diff] [blame] | 399 | rl_attempted_completion_function = (CPPFunction *)flex_complete; | 
| Guido van Rossum | b6c935a | 1997-09-26 23:00:37 +0000 | [diff] [blame] | 400 | /* Set Python word break characters */ | 
|  | 401 | rl_completer_word_break_characters = | 
| Guido van Rossum | b960e7a | 1999-11-18 17:51:02 +0000 | [diff] [blame] | 402 | strdup(" \t\n`~!@#$%^&*()-=+[{]}\\|;:'\",<>/?"); | 
| Guido van Rossum | b6c935a | 1997-09-26 23:00:37 +0000 | [diff] [blame] | 403 | /* All nonalphanums except '.' */ | 
| Guido van Rossum | b960e7a | 1999-11-18 17:51:02 +0000 | [diff] [blame] | 404 |  | 
|  | 405 | begidx = PyInt_FromLong(0L); | 
|  | 406 | endidx = PyInt_FromLong(0L); | 
| Barry Warsaw | f761287 | 1999-01-29 21:55:03 +0000 | [diff] [blame] | 407 | /* Initialize (allows .inputrc to override) | 
|  | 408 | * | 
|  | 409 | * XXX: A bug in the readline-2.2 library causes a memory leak | 
|  | 410 | * inside this function.  Nothing we can do about it. | 
|  | 411 | */ | 
| Guido van Rossum | 290900a | 1997-09-26 21:51:21 +0000 | [diff] [blame] | 412 | rl_initialize(); | 
|  | 413 | } | 
|  | 414 |  | 
|  | 415 |  | 
|  | 416 | /* Interrupt handler */ | 
|  | 417 |  | 
|  | 418 | static jmp_buf jbuf; | 
|  | 419 |  | 
| Guido van Rossum | 0969d36 | 1997-08-05 21:27:50 +0000 | [diff] [blame] | 420 | /* ARGSUSED */ | 
| Tim Peters | 4f1b208 | 2000-07-23 21:18:09 +0000 | [diff] [blame] | 421 | static void | 
| Peter Schneider-Kamp | a788a7f | 2000-07-10 09:57:19 +0000 | [diff] [blame] | 422 | onintr(int sig) | 
| Guido van Rossum | 0969d36 | 1997-08-05 21:27:50 +0000 | [diff] [blame] | 423 | { | 
| Guido van Rossum | 290900a | 1997-09-26 21:51:21 +0000 | [diff] [blame] | 424 | longjmp(jbuf, 1); | 
| Guido van Rossum | 0969d36 | 1997-08-05 21:27:50 +0000 | [diff] [blame] | 425 | } | 
|  | 426 |  | 
| Guido van Rossum | 290900a | 1997-09-26 21:51:21 +0000 | [diff] [blame] | 427 |  | 
|  | 428 | /* Wrapper around GNU readline that handles signals differently. */ | 
| Guido van Rossum | 0969d36 | 1997-08-05 21:27:50 +0000 | [diff] [blame] | 429 |  | 
|  | 430 | static char * | 
| Peter Schneider-Kamp | a788a7f | 2000-07-10 09:57:19 +0000 | [diff] [blame] | 431 | call_readline(char *prompt) | 
| Guido van Rossum | 0969d36 | 1997-08-05 21:27:50 +0000 | [diff] [blame] | 432 | { | 
| Guido van Rossum | 26418a9 | 2000-06-28 21:30:31 +0000 | [diff] [blame] | 433 | size_t n; | 
| Guido van Rossum | b18618d | 2000-05-03 23:44:39 +0000 | [diff] [blame] | 434 | char *p, *q; | 
| Guido van Rossum | 174efc9 | 2000-09-16 16:37:53 +0000 | [diff] [blame] | 435 | PyOS_sighandler_t old_inthandler; | 
|  | 436 |  | 
|  | 437 | old_inthandler = PyOS_setsig(SIGINT, onintr); | 
| Guido van Rossum | 0969d36 | 1997-08-05 21:27:50 +0000 | [diff] [blame] | 438 | if (setjmp(jbuf)) { | 
|  | 439 | #ifdef HAVE_SIGRELSE | 
|  | 440 | /* This seems necessary on SunOS 4.1 (Rasmus Hahn) */ | 
|  | 441 | sigrelse(SIGINT); | 
|  | 442 | #endif | 
| Guido van Rossum | 174efc9 | 2000-09-16 16:37:53 +0000 | [diff] [blame] | 443 | PyOS_setsig(SIGINT, old_inthandler); | 
| Guido van Rossum | 0969d36 | 1997-08-05 21:27:50 +0000 | [diff] [blame] | 444 | return NULL; | 
|  | 445 | } | 
| Guido van Rossum | 4462064 | 1997-08-11 18:57:29 +0000 | [diff] [blame] | 446 | rl_event_hook = PyOS_InputHook; | 
| Guido van Rossum | 0969d36 | 1997-08-05 21:27:50 +0000 | [diff] [blame] | 447 | p = readline(prompt); | 
| Guido van Rossum | 174efc9 | 2000-09-16 16:37:53 +0000 | [diff] [blame] | 448 | PyOS_setsig(SIGINT, old_inthandler); | 
| Guido van Rossum | b18618d | 2000-05-03 23:44:39 +0000 | [diff] [blame] | 449 |  | 
|  | 450 | /* We must return a buffer allocated with PyMem_Malloc. */ | 
| Guido van Rossum | 0969d36 | 1997-08-05 21:27:50 +0000 | [diff] [blame] | 451 | if (p == NULL) { | 
| Guido van Rossum | b18618d | 2000-05-03 23:44:39 +0000 | [diff] [blame] | 452 | p = PyMem_Malloc(1); | 
| Guido van Rossum | 0969d36 | 1997-08-05 21:27:50 +0000 | [diff] [blame] | 453 | if (p != NULL) | 
|  | 454 | *p = '\0'; | 
|  | 455 | return p; | 
|  | 456 | } | 
|  | 457 | n = strlen(p); | 
|  | 458 | if (n > 0) | 
|  | 459 | add_history(p); | 
| Guido van Rossum | b18618d | 2000-05-03 23:44:39 +0000 | [diff] [blame] | 460 | /* Copy the malloc'ed buffer into a PyMem_Malloc'ed one and | 
|  | 461 | release the original. */ | 
|  | 462 | q = p; | 
|  | 463 | p = PyMem_Malloc(n+2); | 
|  | 464 | if (p != NULL) { | 
|  | 465 | strncpy(p, q, n); | 
| Guido van Rossum | 0969d36 | 1997-08-05 21:27:50 +0000 | [diff] [blame] | 466 | p[n] = '\n'; | 
|  | 467 | p[n+1] = '\0'; | 
|  | 468 | } | 
| Guido van Rossum | b18618d | 2000-05-03 23:44:39 +0000 | [diff] [blame] | 469 | free(q); | 
| Guido van Rossum | 0969d36 | 1997-08-05 21:27:50 +0000 | [diff] [blame] | 470 | return p; | 
|  | 471 | } | 
|  | 472 |  | 
| Guido van Rossum | 290900a | 1997-09-26 21:51:21 +0000 | [diff] [blame] | 473 |  | 
|  | 474 | /* Initialize the module */ | 
|  | 475 |  | 
|  | 476 | static char doc_module[] = | 
|  | 477 | "Importing this module enables command line editing using GNU readline."; | 
|  | 478 |  | 
| Guido van Rossum | 3886bb6 | 1998-12-04 18:50:17 +0000 | [diff] [blame] | 479 | DL_EXPORT(void) | 
| Thomas Wouters | f3f33dc | 2000-07-21 06:00:07 +0000 | [diff] [blame] | 480 | initreadline(void) | 
| Guido van Rossum | 290900a | 1997-09-26 21:51:21 +0000 | [diff] [blame] | 481 | { | 
| Guido van Rossum | 1ea64ea | 2000-10-02 15:53:08 +0000 | [diff] [blame] | 482 | PyObject *m; | 
| Guido van Rossum | 290900a | 1997-09-26 21:51:21 +0000 | [diff] [blame] | 483 |  | 
|  | 484 | m = Py_InitModule4("readline", readline_methods, doc_module, | 
|  | 485 | (PyObject *)NULL, PYTHON_API_VERSION); | 
|  | 486 | if (isatty(fileno(stdin))) { | 
|  | 487 | PyOS_ReadlineFunctionPointer = call_readline; | 
|  | 488 | setup_readline(); | 
|  | 489 | } | 
| Guido van Rossum | 0969d36 | 1997-08-05 21:27:50 +0000 | [diff] [blame] | 490 | } |