blob: 899a2232b6104465110482f006ada703f56fa7e8 [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 Rossumbcc20741998-08-04 22:53:56 +000020/* If you have string.h, you might need to add yourself to this #if... [cjh] */
21#if defined(__BEOS__)
22#undef HAVE_CONFIG_H
23/* At max warnings, we need protos for everything. [cjh] */
24#include <readline/readline.h>
25#include <readline/history.h>
26#include <unistd.h>
27#else
Guido van Rossum290900a1997-09-26 21:51:21 +000028#include <readline/readline.h> /* You may need to add an -I option to Setup */
29
Guido van Rossum730806d1998-04-10 22:27:42 +000030extern int rl_parse_and_bind();
31extern int rl_read_init_file();
32extern int rl_insert_text();
33extern int rl_bind_key();
34extern int rl_bind_key_in_map();
35extern int rl_initialize();
36extern int add_history();
Guido van Rossumbcc20741998-08-04 22:53:56 +000037#endif
Guido van Rossum730806d1998-04-10 22:27:42 +000038
Guido van Rossum290900a1997-09-26 21:51:21 +000039/* Pointers needed from outside (but not declared in a header file). */
Guido van Rossum44620641997-08-11 18:57:29 +000040extern int (*PyOS_InputHook)();
Guido van Rossum0969d361997-08-05 21:27:50 +000041extern char *(*PyOS_ReadlineFunctionPointer) Py_PROTO((char *));
42
Guido van Rossum0969d361997-08-05 21:27:50 +000043
Guido van Rossum290900a1997-09-26 21:51:21 +000044/* Exported function to send one line to readline's init file parser */
45
46static PyObject *
47parse_and_bind(self, args)
48 PyObject *self;
49 PyObject *args;
50{
51 char *s;
52 if (!PyArg_ParseTuple(args, "s", &s))
53 return NULL;
54 rl_parse_and_bind(s);
55 Py_INCREF(Py_None);
56 return Py_None;
57}
58
59static char doc_parse_and_bind[] = "\
60parse_and_bind(string) -> None\n\
61Parse and execute single line of a readline init file.\
62";
63
64
65/* Exported function to parse a readline init file */
66
67static PyObject *
68read_init_file(self, args)
69 PyObject *self;
70 PyObject *args;
71{
72 char *s = NULL;
73 if (!PyArg_ParseTuple(args, "|z", &s))
74 return NULL;
75 errno = rl_read_init_file(s);
76 if (errno)
77 return PyErr_SetFromErrno(PyExc_IOError);
78 Py_INCREF(Py_None);
79 return Py_None;
80}
81
82static char doc_read_init_file[] = "\
83read_init_file([filename]) -> None\n\
84Parse a readline initialization file.\n\
85The default filename is the last filename used.\
86";
87
88
89/* Exported function to specify a word completer in Python */
90
91static PyObject *completer = NULL;
92static PyThreadState *tstate = NULL;
93
94static PyObject *
95set_completer(self, args)
96 PyObject *self;
97 PyObject *args;
98{
99 PyObject *function = Py_None;
100 if (!PyArg_ParseTuple(args, "|O", &function))
101 return NULL;
102 if (function == Py_None) {
103 Py_XDECREF(completer);
104 completer = NULL;
105 tstate = NULL;
106 }
107 else if (PyCallable_Check(function)) {
108 PyObject *tmp = completer;
109 Py_INCREF(function);
110 completer = function;
111 Py_XDECREF(tmp);
112 tstate = PyThreadState_Get();
113 }
114 else {
115 PyErr_SetString(PyExc_TypeError,
116 "set_completer(func): argument not callable");
117 return NULL;
118 }
119 Py_INCREF(Py_None);
120 return Py_None;
121}
122
123static char doc_set_completer[] = "\
124set_completer([function]) -> None\n\
125Set or remove the completer function.\n\
126The function is called as function(text, state),\n\
127for i in [0, 1, 2, ...] until it returns a non-string.\n\
128It should return the next possible completion starting with 'text'.\
129";
130
Guido van Rossum79378ff1997-10-07 14:53:21 +0000131/* Exported function to read the current line buffer */
132
133static PyObject *
134get_line_buffer(self, args)
135 PyObject *self;
136 PyObject *args;
137{
138 if (PyArg_NoArgs(args))
139 return NULL;
140 return PyString_FromString(rl_line_buffer);
141}
142
143static char doc_get_line_buffer[] = "\
Guido van Rossuma88c5f31998-05-20 15:50:56 +0000144get_line_buffer() -> string\n\
Guido van Rossum79378ff1997-10-07 14:53:21 +0000145return the current contents of the line buffer.\
146";
147
148/* Exported function to insert text into the line buffer */
149
150static PyObject *
151insert_text(self, args)
152 PyObject *self;
153 PyObject *args;
154{
155 char *s;
156 if (!PyArg_ParseTuple(args, "s", &s))
157 return NULL;
158 rl_insert_text(s);
159 Py_INCREF(Py_None);
160 return Py_None;
161}
162
163
164static char doc_insert_text[] = "\
165insert_text(string) -> None\n\
166Insert text into the command line.\
167";
168
Guido van Rossum290900a1997-09-26 21:51:21 +0000169
170/* Table of functions exported by the module */
Guido van Rossum0969d361997-08-05 21:27:50 +0000171
172static struct PyMethodDef readline_methods[] =
Guido van Rossum290900a1997-09-26 21:51:21 +0000173{
174 {"parse_and_bind", parse_and_bind, 1, doc_parse_and_bind},
Guido van Rossum79378ff1997-10-07 14:53:21 +0000175 {"get_line_buffer", get_line_buffer, 1, doc_get_line_buffer},
176 {"insert_text", insert_text, 1, doc_insert_text},
Guido van Rossum290900a1997-09-26 21:51:21 +0000177 {"read_init_file", read_init_file, 1, doc_read_init_file},
178 {"set_completer", set_completer, 1, doc_set_completer},
179 {0, 0}
Guido van Rossum0969d361997-08-05 21:27:50 +0000180};
181
Guido van Rossum290900a1997-09-26 21:51:21 +0000182/* C function to call the Python completer. */
Guido van Rossum0969d361997-08-05 21:27:50 +0000183
Guido van Rossum290900a1997-09-26 21:51:21 +0000184static char *
185on_completion(text, state)
186 char *text;
187 int state;
Guido van Rossum0969d361997-08-05 21:27:50 +0000188{
Guido van Rossum290900a1997-09-26 21:51:21 +0000189 char *result = NULL;
190 if (completer != NULL) {
191 PyObject *r;
Guido van Rossuma59406a1997-10-10 17:39:19 +0000192 PyThreadState *save_tstate;
Guido van Rossum290900a1997-09-26 21:51:21 +0000193 /* Note that readline is called with the interpreter
194 lock released! */
Guido van Rossuma59406a1997-10-10 17:39:19 +0000195 save_tstate = PyThreadState_Swap(NULL);
Guido van Rossum290900a1997-09-26 21:51:21 +0000196 PyEval_RestoreThread(tstate);
197 r = PyObject_CallFunction(completer, "si", text, state);
198 if (r == NULL)
199 goto error;
200 if (r == Py_None) {
201 result = NULL;
202 }
203 else {
204 char *s = PyString_AsString(r);
205 if (s == NULL)
206 goto error;
207 result = strdup(s);
208 }
209 Py_DECREF(r);
210 goto done;
211 error:
212 PyErr_Clear();
213 Py_XDECREF(r);
214 done:
215 PyEval_SaveThread();
Guido van Rossuma59406a1997-10-10 17:39:19 +0000216 PyThreadState_Swap(save_tstate);
Guido van Rossum290900a1997-09-26 21:51:21 +0000217 }
218 return result;
Guido van Rossum0969d361997-08-05 21:27:50 +0000219}
220
Guido van Rossum290900a1997-09-26 21:51:21 +0000221
222/* Helper to initialize GNU readline properly. */
223
224static void
225setup_readline()
226{
227 rl_readline_name = "python";
228 /* Force rebind of TAB to insert-tab */
229 rl_bind_key('\t', rl_insert);
230 /* Bind both ESC-TAB and ESC-ESC to the completion function */
231 rl_bind_key_in_map ('\t', rl_complete, emacs_meta_keymap);
232 rl_bind_key_in_map ('\033', rl_complete, emacs_meta_keymap);
233 /* Set our completion function */
234 rl_completion_entry_function = (Function *) on_completion;
Guido van Rossumb6c935a1997-09-26 23:00:37 +0000235 /* Set Python word break characters */
236 rl_completer_word_break_characters =
237 " \t\n`~!@#$%^&*()-=+[{]}\\|;:'\",<>/?";
238 /* All nonalphanums except '.' */
Guido van Rossum290900a1997-09-26 21:51:21 +0000239 /* Initialize (allows .inputrc to override) */
240 rl_initialize();
241}
242
243
244/* Interrupt handler */
245
246static jmp_buf jbuf;
247
Guido van Rossum0969d361997-08-05 21:27:50 +0000248/* ARGSUSED */
249static RETSIGTYPE
250onintr(sig)
Guido van Rossum290900a1997-09-26 21:51:21 +0000251 int sig;
Guido van Rossum0969d361997-08-05 21:27:50 +0000252{
Guido van Rossum290900a1997-09-26 21:51:21 +0000253 longjmp(jbuf, 1);
Guido van Rossum0969d361997-08-05 21:27:50 +0000254}
255
Guido van Rossum290900a1997-09-26 21:51:21 +0000256
257/* Wrapper around GNU readline that handles signals differently. */
Guido van Rossum0969d361997-08-05 21:27:50 +0000258
259static char *
Guido van Rossum290900a1997-09-26 21:51:21 +0000260call_readline(prompt)
Guido van Rossum0969d361997-08-05 21:27:50 +0000261 char *prompt;
262{
263 int n;
264 char *p;
265 RETSIGTYPE (*old_inthandler)();
266 old_inthandler = signal(SIGINT, onintr);
267 if (setjmp(jbuf)) {
268#ifdef HAVE_SIGRELSE
269 /* This seems necessary on SunOS 4.1 (Rasmus Hahn) */
270 sigrelse(SIGINT);
271#endif
272 signal(SIGINT, old_inthandler);
273 return NULL;
274 }
Guido van Rossum44620641997-08-11 18:57:29 +0000275 rl_event_hook = PyOS_InputHook;
Guido van Rossum0969d361997-08-05 21:27:50 +0000276 p = readline(prompt);
277 signal(SIGINT, old_inthandler);
278 if (p == NULL) {
279 p = malloc(1);
280 if (p != NULL)
281 *p = '\0';
282 return p;
283 }
284 n = strlen(p);
285 if (n > 0)
286 add_history(p);
287 if ((p = realloc(p, n+2)) != NULL) {
288 p[n] = '\n';
289 p[n+1] = '\0';
290 }
291 return p;
292}
293
Guido van Rossum290900a1997-09-26 21:51:21 +0000294
295/* Initialize the module */
296
297static char doc_module[] =
298"Importing this module enables command line editing using GNU readline.";
299
300void
301initreadline()
302{
303 PyObject *m;
304
305 m = Py_InitModule4("readline", readline_methods, doc_module,
306 (PyObject *)NULL, PYTHON_API_VERSION);
307 if (isatty(fileno(stdin))) {
308 PyOS_ReadlineFunctionPointer = call_readline;
309 setup_readline();
310 }
Guido van Rossum0969d361997-08-05 21:27:50 +0000311}