blob: 49839c4c2b2716efc654ac9c1a7602e7cc11a27d [file] [log] [blame]
Guido van Rossum290900a1997-09-26 21:51:21 +00001/* 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 Rossum0969d361997-08-05 21:27:50 +00007 */
8
Guido van Rossum290900a1997-09-26 21:51:21 +00009/* Standard definitions */
Guido van Rossum0969d361997-08-05 21:27:50 +000010#include "Python.h"
11#include <setjmp.h>
12#include <signal.h>
Guido van Rossum290900a1997-09-26 21:51:21 +000013#include <errno.h>
Guido van Rossum0969d361997-08-05 21:27:50 +000014
Guido van Rossum73bacfc1998-01-19 22:05:22 +000015#ifdef HAVE_UNISTD_H
16#include <unistd.h> /* For isatty() */
17#endif
18
Guido van Rossum290900a1997-09-26 21:51:21 +000019/* GNU readline definitions */
Guido van Rossumb0e51b22001-04-13 18:14:27 +000020#undef HAVE_CONFIG_H /* Else readline/chardefs.h includes strings.h */
Guido van Rossumbcc20741998-08-04 22:53:56 +000021#include <readline/readline.h>
22#include <readline/history.h>
Guido van Rossum730806d1998-04-10 22:27:42 +000023
Guido van Rossum353ae582001-07-10 16:45:32 +000024#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 Rossum290900a1997-09-26 21:51:21 +000028/* Pointers needed from outside (but not declared in a header file). */
Guido van Rossum5a530192001-01-10 21:03:32 +000029extern DL_IMPORT(int) (*PyOS_InputHook)(void);
30extern DL_IMPORT(char) *(*PyOS_ReadlineFunctionPointer)(char *);
Guido van Rossum0969d361997-08-05 21:27:50 +000031
Guido van Rossum0969d361997-08-05 21:27:50 +000032
Guido van Rossum290900a1997-09-26 21:51:21 +000033/* Exported function to send one line to readline's init file parser */
34
35static PyObject *
Peter Schneider-Kampa788a7f2000-07-10 09:57:19 +000036parse_and_bind(PyObject *self, PyObject *args)
Guido van Rossum290900a1997-09-26 21:51:21 +000037{
Guido van Rossum3b5330e1998-12-04 15:34:39 +000038 char *s, *copy;
Guido van Rossum43713e52000-02-29 13:59:29 +000039 if (!PyArg_ParseTuple(args, "s:parse_and_bind", &s))
Guido van Rossum290900a1997-09-26 21:51:21 +000040 return NULL;
Guido van Rossum3b5330e1998-12-04 15:34:39 +000041 /* 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 Rossum290900a1997-09-26 21:51:21 +000049 Py_INCREF(Py_None);
50 return Py_None;
51}
52
53static char doc_parse_and_bind[] = "\
54parse_and_bind(string) -> None\n\
55Parse and execute single line of a readline init file.\
56";
57
58
59/* Exported function to parse a readline init file */
60
61static PyObject *
Peter Schneider-Kampa788a7f2000-07-10 09:57:19 +000062read_init_file(PyObject *self, PyObject *args)
Guido van Rossum290900a1997-09-26 21:51:21 +000063{
64 char *s = NULL;
Guido van Rossum43713e52000-02-29 13:59:29 +000065 if (!PyArg_ParseTuple(args, "|z:read_init_file", &s))
Guido van Rossum290900a1997-09-26 21:51:21 +000066 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
74static char doc_read_init_file[] = "\
75read_init_file([filename]) -> None\n\
76Parse a readline initialization file.\n\
77The default filename is the last filename used.\
78";
79
80
Skip Montanaro28067822000-07-06 18:55:12 +000081/* Exported function to load a readline history file */
82
83static PyObject *
Peter Schneider-Kampa788a7f2000-07-10 09:57:19 +000084read_history_file(PyObject *self, PyObject *args)
Skip Montanaro28067822000-07-06 18:55:12 +000085{
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 Montanaro49bd24d2000-07-19 16:54:53 +000096static int history_length = -1; /* do not truncate history by default */
Skip Montanaro28067822000-07-06 18:55:12 +000097static char doc_read_history_file[] = "\
98read_history_file([filename]) -> None\n\
99Load a readline history file.\n\
100The default filename is ~/.history.\
101";
102
103
104/* Exported function to save a readline history file */
105
106static PyObject *
Peter Schneider-Kampa788a7f2000-07-10 09:57:19 +0000107write_history_file(PyObject *self, PyObject *args)
Skip Montanaro28067822000-07-06 18:55:12 +0000108{
109 char *s = NULL;
110 if (!PyArg_ParseTuple(args, "|z:write_history_file", &s))
111 return NULL;
112 errno = write_history(s);
Skip Montanaro49bd24d2000-07-19 16:54:53 +0000113 if (!errno && history_length >= 0)
114 history_truncate_file(s, history_length);
Skip Montanaro28067822000-07-06 18:55:12 +0000115 if (errno)
116 return PyErr_SetFromErrno(PyExc_IOError);
117 Py_INCREF(Py_None);
118 return Py_None;
119}
120
121static char doc_write_history_file[] = "\
122write_history_file([filename]) -> None\n\
123Save a readline history file.\n\
124The default filename is ~/.history.\
125";
126
127
Skip Montanaro49bd24d2000-07-19 16:54:53 +0000128static char set_history_length_doc[] = "\
129set_history_length(length) -> None\n\
130set the maximal number of items which will be written to\n\
131the history file. A negative length is used to inhibit\n\
132history truncation.\n\
133";
134
135static PyObject*
136set_history_length(PyObject *self, PyObject *args)
137{
138 int length = history_length;
Skip Montanaro49bd24d2000-07-19 16:54:53 +0000139 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
148static char get_history_length_doc[] = "\
149get_history_length() -> int\n\
150return the current history length value.\n\
151";
152
153static PyObject*
154get_history_length(PyObject *self, PyObject *args)
155{
Skip Montanaro49bd24d2000-07-19 16:54:53 +0000156 if (!PyArg_ParseTuple(args, ":get_history_length"))
157 return NULL;
158 return Py_BuildValue("i", history_length);
159}
160
Martin v. Löwis0daad592001-09-30 21:09:59 +0000161/* Generic hook function setter */
Skip Montanaro49bd24d2000-07-19 16:54:53 +0000162
Martin v. Löwis0daad592001-09-30 21:09:59 +0000163static PyObject *
164set_hook(const char * funcname, PyObject **hook_var, PyThreadState **tstate, PyObject *args)
165{
166 PyObject *function = Py_None;
167 char buf[80];
168 sprintf(buf, "|O:set_%s", funcname);
169 if (!PyArg_ParseTuple(args, buf, &function))
170 return NULL;
171 if (function == Py_None) {
172 Py_XDECREF(*hook_var);
173 *hook_var = NULL;
174 *tstate = NULL;
175 }
176 else if (PyCallable_Check(function)) {
177 PyObject *tmp = *hook_var;
178 Py_INCREF(function);
179 *hook_var = function;
180 Py_XDECREF(tmp);
181 *tstate = PyThreadState_Get();
182 }
183 else {
184 sprintf(buf, "set_%s(func): argument not callable", funcname);
185 PyErr_SetString(PyExc_TypeError, buf);
186 return NULL;
187 }
188 Py_INCREF(Py_None);
189 return Py_None;
190}
191
192/* Exported functions to specify hook functions in Python */
193
194static PyObject *startup_hook = NULL;
195static PyThreadState *startup_hook_tstate = NULL;
196
197#ifdef HAVE_RL_PRE_INPUT_HOOK
198static PyObject *pre_input_hook = NULL;
199static PyThreadState *pre_input_hook_tstate = NULL;
200#endif
201
202static PyObject *
203set_startup_hook(PyObject *self, PyObject *args)
204{
205 return set_hook("startup_hook", &startup_hook, &startup_hook_tstate, args);
206}
207
208static char doc_set_startup_hook[] = "\
209set_startup_hook([function]) -> None\n\
210Set or remove the startup_hook function.\n\
211The function is called with no arguments just\n\
212before readline prints the first prompt.\n\
213";
214
215#ifdef HAVE_RL_PRE_INPUT_HOOK
216static PyObject *
217set_pre_input_hook(PyObject *self, PyObject *args)
218{
219 return set_hook("pre_input_hook", &pre_input_hook, &pre_input_hook_tstate, args);
220}
221
222static char doc_set_pre_input_hook[] = "\
223set_pre_input_hook([function]) -> None\n\
224Set or remove the pre_input_hook function.\n\
225The function is called with no arguments after the first prompt\n\
226has been printed and just before readline starts reading input\n\
227characters.\n\
228";
229#endif
Skip Montanaro49bd24d2000-07-19 16:54:53 +0000230
Guido van Rossum290900a1997-09-26 21:51:21 +0000231/* Exported function to specify a word completer in Python */
232
233static PyObject *completer = NULL;
Martin v. Löwis0daad592001-09-30 21:09:59 +0000234static PyThreadState *completer_tstate = NULL;
Guido van Rossum290900a1997-09-26 21:51:21 +0000235
Guido van Rossumb960e7a1999-11-18 17:51:02 +0000236static PyObject *begidx = NULL;
237static PyObject *endidx = NULL;
238
239/* get the beginning index for the scope of the tab-completion */
240static PyObject *
Peter Schneider-Kampa788a7f2000-07-10 09:57:19 +0000241get_begidx(PyObject *self, PyObject *args)
Guido van Rossumb960e7a1999-11-18 17:51:02 +0000242{
243 if(!PyArg_NoArgs(args)) {
244 return NULL;
245 }
246 Py_INCREF(begidx);
247 return begidx;
248}
249
250static char doc_get_begidx[] = "\
251get_begidx() -> int\n\
252get the beginning index of the readline tab-completion scope";
253
254/* get the ending index for the scope of the tab-completion */
255static PyObject *
Peter Schneider-Kampa788a7f2000-07-10 09:57:19 +0000256get_endidx(PyObject *self, PyObject *args)
Guido van Rossumb960e7a1999-11-18 17:51:02 +0000257{
258 if(!PyArg_NoArgs(args)) {
259 return NULL;
260 }
261 Py_INCREF(endidx);
262 return endidx;
263}
264
265static char doc_get_endidx[] = "\
266get_endidx() -> int\n\
267get the ending index of the readline tab-completion scope";
268
269
270/* set the tab-completion word-delimiters that readline uses */
271
272static PyObject *
Peter Schneider-Kampa788a7f2000-07-10 09:57:19 +0000273set_completer_delims(PyObject *self, PyObject *args)
Guido van Rossumb960e7a1999-11-18 17:51:02 +0000274{
275 char *break_chars;
276
Guido van Rossum43713e52000-02-29 13:59:29 +0000277 if(!PyArg_ParseTuple(args, "s:set_completer_delims", &break_chars)) {
Guido van Rossumb960e7a1999-11-18 17:51:02 +0000278 return NULL;
279 }
280 free(rl_completer_word_break_characters);
281 rl_completer_word_break_characters = strdup(break_chars);
282 Py_INCREF(Py_None);
283 return Py_None;
284}
285
286static char doc_set_completer_delims[] = "\
287set_completer_delims(string) -> None\n\
288set the readline word delimiters for tab-completion";
289
290
291/* get the tab-completion word-delimiters that readline uses */
292
293static PyObject *
Peter Schneider-Kampa788a7f2000-07-10 09:57:19 +0000294get_completer_delims(PyObject *self, PyObject *args)
Guido van Rossumb960e7a1999-11-18 17:51:02 +0000295{
296 if(!PyArg_NoArgs(args)) {
297 return NULL;
298 }
299 return PyString_FromString(rl_completer_word_break_characters);
300}
301
302static char doc_get_completer_delims[] = "\
303get_completer_delims() -> string\n\
304get the readline word delimiters for tab-completion";
305
Guido van Rossum290900a1997-09-26 21:51:21 +0000306static PyObject *
Peter Schneider-Kampa788a7f2000-07-10 09:57:19 +0000307set_completer(PyObject *self, PyObject *args)
Guido van Rossum290900a1997-09-26 21:51:21 +0000308{
Martin v. Löwis0daad592001-09-30 21:09:59 +0000309 return set_hook("completer", &completer, &completer_tstate, args);
Guido van Rossum290900a1997-09-26 21:51:21 +0000310}
311
312static char doc_set_completer[] = "\
313set_completer([function]) -> None\n\
314Set or remove the completer function.\n\
315The function is called as function(text, state),\n\
Fred Drake52d55a32001-08-01 21:44:14 +0000316for state in 0, 1, 2, ..., until it returns a non-string.\n\
Guido van Rossum290900a1997-09-26 21:51:21 +0000317It should return the next possible completion starting with 'text'.\
318";
319
Guido van Rossum79378ff1997-10-07 14:53:21 +0000320/* Exported function to read the current line buffer */
321
322static PyObject *
Peter Schneider-Kampa788a7f2000-07-10 09:57:19 +0000323get_line_buffer(PyObject *self, PyObject *args)
Guido van Rossum79378ff1997-10-07 14:53:21 +0000324{
Guido van Rossumb960e7a1999-11-18 17:51:02 +0000325 if (!PyArg_NoArgs(args))
Guido van Rossum79378ff1997-10-07 14:53:21 +0000326 return NULL;
327 return PyString_FromString(rl_line_buffer);
328}
329
330static char doc_get_line_buffer[] = "\
Guido van Rossuma88c5f31998-05-20 15:50:56 +0000331get_line_buffer() -> string\n\
Guido van Rossum79378ff1997-10-07 14:53:21 +0000332return the current contents of the line buffer.\
333";
334
335/* Exported function to insert text into the line buffer */
336
337static PyObject *
Peter Schneider-Kampa788a7f2000-07-10 09:57:19 +0000338insert_text(PyObject *self, PyObject *args)
Guido van Rossum79378ff1997-10-07 14:53:21 +0000339{
340 char *s;
Guido van Rossum43713e52000-02-29 13:59:29 +0000341 if (!PyArg_ParseTuple(args, "s:insert_text", &s))
Guido van Rossum79378ff1997-10-07 14:53:21 +0000342 return NULL;
343 rl_insert_text(s);
344 Py_INCREF(Py_None);
345 return Py_None;
346}
347
348
349static char doc_insert_text[] = "\
350insert_text(string) -> None\n\
351Insert text into the command line.\
352";
353
Guido van Rossum290900a1997-09-26 21:51:21 +0000354
355/* Table of functions exported by the module */
Guido van Rossum0969d361997-08-05 21:27:50 +0000356
357static struct PyMethodDef readline_methods[] =
Guido van Rossum290900a1997-09-26 21:51:21 +0000358{
Andrew M. Kuchlinge365fb82000-08-03 02:06:16 +0000359 {"parse_and_bind", parse_and_bind, METH_VARARGS, doc_parse_and_bind},
Andrew M. Kuchlinga1abb722000-08-03 02:34:44 +0000360 {"get_line_buffer", get_line_buffer,
361 METH_OLDARGS, doc_get_line_buffer},
Andrew M. Kuchlinge365fb82000-08-03 02:06:16 +0000362 {"insert_text", insert_text, METH_VARARGS, doc_insert_text},
363 {"read_init_file", read_init_file, METH_VARARGS, doc_read_init_file},
364 {"read_history_file", read_history_file,
365 METH_VARARGS, doc_read_history_file},
366 {"write_history_file", write_history_file,
367 METH_VARARGS, doc_write_history_file},
368 {"set_history_length", set_history_length,
369 METH_VARARGS, set_history_length_doc},
370 {"get_history_length", get_history_length,
371 METH_VARARGS, get_history_length_doc},
372 {"set_completer", set_completer, METH_VARARGS, doc_set_completer},
Andrew M. Kuchlinga1abb722000-08-03 02:34:44 +0000373 {"get_begidx", get_begidx, METH_OLDARGS, doc_get_begidx},
374 {"get_endidx", get_endidx, METH_OLDARGS, doc_get_endidx},
Guido van Rossumb960e7a1999-11-18 17:51:02 +0000375
Andrew M. Kuchlinga1abb722000-08-03 02:34:44 +0000376 {"set_completer_delims", set_completer_delims,
377 METH_VARARGS, doc_set_completer_delims},
378 {"get_completer_delims", get_completer_delims,
379 METH_OLDARGS, doc_get_completer_delims},
Martin v. Löwis0daad592001-09-30 21:09:59 +0000380
381 {"set_startup_hook", set_startup_hook, METH_VARARGS, doc_set_startup_hook},
382#ifdef HAVE_RL_PRE_INPUT_HOOK
383 {"set_pre_input_hook", set_pre_input_hook, METH_VARARGS, doc_set_pre_input_hook},
384#endif
Guido van Rossum290900a1997-09-26 21:51:21 +0000385 {0, 0}
Guido van Rossum0969d361997-08-05 21:27:50 +0000386};
387
Martin v. Löwis0daad592001-09-30 21:09:59 +0000388/* C function to call the Python hooks. */
389
390static int
391on_hook(PyObject *func, PyThreadState *tstate)
392{
393 int result = 0;
394 if (func != NULL) {
395 PyObject *r;
396 PyThreadState *save_tstate;
397 /* Note that readline is called with the interpreter
398 lock released! */
399 save_tstate = PyThreadState_Swap(NULL);
400 PyEval_RestoreThread(tstate);
401 r = PyObject_CallFunction(func, NULL);
402 if (r == NULL)
403 goto error;
404 if (r == Py_None)
405 result = 0;
406 else
407 result = PyInt_AsLong(r);
408 Py_DECREF(r);
409 goto done;
410 error:
411 PyErr_Clear();
412 Py_XDECREF(r);
413 done:
414 PyEval_SaveThread();
415 PyThreadState_Swap(save_tstate);
416 }
417 return result;
418}
419
420static int
421on_startup_hook(void)
422{
423 return on_hook(startup_hook, startup_hook_tstate);
424}
425
426#ifdef HAVE_RL_PRE_INPUT_HOOK
427static int
428on_pre_input_hook(void)
429{
430 return on_hook(pre_input_hook, pre_input_hook_tstate);
431}
432#endif
433
Guido van Rossum290900a1997-09-26 21:51:21 +0000434/* C function to call the Python completer. */
Guido van Rossum0969d361997-08-05 21:27:50 +0000435
Guido van Rossum290900a1997-09-26 21:51:21 +0000436static char *
Peter Schneider-Kampa788a7f2000-07-10 09:57:19 +0000437on_completion(char *text, int state)
Guido van Rossum0969d361997-08-05 21:27:50 +0000438{
Guido van Rossum290900a1997-09-26 21:51:21 +0000439 char *result = NULL;
440 if (completer != NULL) {
441 PyObject *r;
Guido van Rossuma59406a1997-10-10 17:39:19 +0000442 PyThreadState *save_tstate;
Guido van Rossum290900a1997-09-26 21:51:21 +0000443 /* Note that readline is called with the interpreter
444 lock released! */
Guido van Rossuma59406a1997-10-10 17:39:19 +0000445 save_tstate = PyThreadState_Swap(NULL);
Martin v. Löwis0daad592001-09-30 21:09:59 +0000446 PyEval_RestoreThread(completer_tstate);
Guido van Rossum290900a1997-09-26 21:51:21 +0000447 r = PyObject_CallFunction(completer, "si", text, state);
448 if (r == NULL)
449 goto error;
450 if (r == Py_None) {
451 result = NULL;
452 }
453 else {
454 char *s = PyString_AsString(r);
455 if (s == NULL)
456 goto error;
457 result = strdup(s);
458 }
459 Py_DECREF(r);
460 goto done;
461 error:
462 PyErr_Clear();
463 Py_XDECREF(r);
464 done:
465 PyEval_SaveThread();
Guido van Rossuma59406a1997-10-10 17:39:19 +0000466 PyThreadState_Swap(save_tstate);
Guido van Rossum290900a1997-09-26 21:51:21 +0000467 }
468 return result;
Guido van Rossum0969d361997-08-05 21:27:50 +0000469}
470
Guido van Rossum290900a1997-09-26 21:51:21 +0000471
Guido van Rossumb960e7a1999-11-18 17:51:02 +0000472/* a more flexible constructor that saves the "begidx" and "endidx"
473 * before calling the normal completer */
474
475char **
Peter Schneider-Kampa788a7f2000-07-10 09:57:19 +0000476flex_complete(char *text, int start, int end)
Guido van Rossumb960e7a1999-11-18 17:51:02 +0000477{
478 Py_XDECREF(begidx);
479 Py_XDECREF(endidx);
480 begidx = PyInt_FromLong((long) start);
481 endidx = PyInt_FromLong((long) end);
482 return completion_matches(text, *on_completion);
483}
484
Guido van Rossum290900a1997-09-26 21:51:21 +0000485/* Helper to initialize GNU readline properly. */
486
487static void
Thomas Woutersf3f33dc2000-07-21 06:00:07 +0000488setup_readline(void)
Guido van Rossum290900a1997-09-26 21:51:21 +0000489{
490 rl_readline_name = "python";
491 /* Force rebind of TAB to insert-tab */
492 rl_bind_key('\t', rl_insert);
493 /* Bind both ESC-TAB and ESC-ESC to the completion function */
494 rl_bind_key_in_map ('\t', rl_complete, emacs_meta_keymap);
495 rl_bind_key_in_map ('\033', rl_complete, emacs_meta_keymap);
Martin v. Löwis0daad592001-09-30 21:09:59 +0000496 /* Set our hook functions */
497 rl_startup_hook = (Function *)on_startup_hook;
498#ifdef HAVE_RL_PRE_INPUT_HOOK
499 rl_pre_input_hook = (Function *)on_pre_input_hook;
500#endif
Guido van Rossum290900a1997-09-26 21:51:21 +0000501 /* Set our completion function */
Guido van Rossumb960e7a1999-11-18 17:51:02 +0000502 rl_attempted_completion_function = (CPPFunction *)flex_complete;
Guido van Rossumb6c935a1997-09-26 23:00:37 +0000503 /* Set Python word break characters */
504 rl_completer_word_break_characters =
Guido van Rossumb960e7a1999-11-18 17:51:02 +0000505 strdup(" \t\n`~!@#$%^&*()-=+[{]}\\|;:'\",<>/?");
Guido van Rossumb6c935a1997-09-26 23:00:37 +0000506 /* All nonalphanums except '.' */
Guido van Rossumb960e7a1999-11-18 17:51:02 +0000507
508 begidx = PyInt_FromLong(0L);
509 endidx = PyInt_FromLong(0L);
Barry Warsawf7612871999-01-29 21:55:03 +0000510 /* Initialize (allows .inputrc to override)
511 *
512 * XXX: A bug in the readline-2.2 library causes a memory leak
513 * inside this function. Nothing we can do about it.
514 */
Guido van Rossum290900a1997-09-26 21:51:21 +0000515 rl_initialize();
516}
517
518
519/* Interrupt handler */
520
521static jmp_buf jbuf;
522
Guido van Rossum0969d361997-08-05 21:27:50 +0000523/* ARGSUSED */
Tim Peters4f1b2082000-07-23 21:18:09 +0000524static void
Peter Schneider-Kampa788a7f2000-07-10 09:57:19 +0000525onintr(int sig)
Guido van Rossum0969d361997-08-05 21:27:50 +0000526{
Guido van Rossum290900a1997-09-26 21:51:21 +0000527 longjmp(jbuf, 1);
Guido van Rossum0969d361997-08-05 21:27:50 +0000528}
529
Guido van Rossum290900a1997-09-26 21:51:21 +0000530
531/* Wrapper around GNU readline that handles signals differently. */
Guido van Rossum0969d361997-08-05 21:27:50 +0000532
533static char *
Peter Schneider-Kampa788a7f2000-07-10 09:57:19 +0000534call_readline(char *prompt)
Guido van Rossum0969d361997-08-05 21:27:50 +0000535{
Guido van Rossum26418a92000-06-28 21:30:31 +0000536 size_t n;
Guido van Rossumb18618d2000-05-03 23:44:39 +0000537 char *p, *q;
Guido van Rossum174efc92000-09-16 16:37:53 +0000538 PyOS_sighandler_t old_inthandler;
539
540 old_inthandler = PyOS_setsig(SIGINT, onintr);
Guido van Rossum0969d361997-08-05 21:27:50 +0000541 if (setjmp(jbuf)) {
542#ifdef HAVE_SIGRELSE
543 /* This seems necessary on SunOS 4.1 (Rasmus Hahn) */
544 sigrelse(SIGINT);
545#endif
Guido van Rossum174efc92000-09-16 16:37:53 +0000546 PyOS_setsig(SIGINT, old_inthandler);
Guido van Rossum0969d361997-08-05 21:27:50 +0000547 return NULL;
548 }
Guido van Rossum44620641997-08-11 18:57:29 +0000549 rl_event_hook = PyOS_InputHook;
Guido van Rossum0969d361997-08-05 21:27:50 +0000550 p = readline(prompt);
Guido van Rossum174efc92000-09-16 16:37:53 +0000551 PyOS_setsig(SIGINT, old_inthandler);
Guido van Rossumb18618d2000-05-03 23:44:39 +0000552
553 /* We must return a buffer allocated with PyMem_Malloc. */
Guido van Rossum0969d361997-08-05 21:27:50 +0000554 if (p == NULL) {
Guido van Rossumb18618d2000-05-03 23:44:39 +0000555 p = PyMem_Malloc(1);
Guido van Rossum0969d361997-08-05 21:27:50 +0000556 if (p != NULL)
557 *p = '\0';
558 return p;
559 }
560 n = strlen(p);
561 if (n > 0)
562 add_history(p);
Guido van Rossumb18618d2000-05-03 23:44:39 +0000563 /* Copy the malloc'ed buffer into a PyMem_Malloc'ed one and
564 release the original. */
565 q = p;
566 p = PyMem_Malloc(n+2);
567 if (p != NULL) {
568 strncpy(p, q, n);
Guido van Rossum0969d361997-08-05 21:27:50 +0000569 p[n] = '\n';
570 p[n+1] = '\0';
571 }
Guido van Rossumb18618d2000-05-03 23:44:39 +0000572 free(q);
Guido van Rossum0969d361997-08-05 21:27:50 +0000573 return p;
574}
575
Guido van Rossum290900a1997-09-26 21:51:21 +0000576
577/* Initialize the module */
578
579static char doc_module[] =
580"Importing this module enables command line editing using GNU readline.";
581
Guido van Rossum3886bb61998-12-04 18:50:17 +0000582DL_EXPORT(void)
Thomas Woutersf3f33dc2000-07-21 06:00:07 +0000583initreadline(void)
Guido van Rossum290900a1997-09-26 21:51:21 +0000584{
Guido van Rossum1ea64ea2000-10-02 15:53:08 +0000585 PyObject *m;
Guido van Rossum290900a1997-09-26 21:51:21 +0000586
587 m = Py_InitModule4("readline", readline_methods, doc_module,
588 (PyObject *)NULL, PYTHON_API_VERSION);
589 if (isatty(fileno(stdin))) {
590 PyOS_ReadlineFunctionPointer = call_readline;
591 setup_readline();
592 }
Guido van Rossum0969d361997-08-05 21:27:50 +0000593}