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.
5 * More recently, it was largely rewritten by Guido van Rossum who is
9 /* Standard definitions */
16 #include <unistd.h> /* For isatty() */
19 /* GNU readline definitions */
20 /* If you have string.h, you might need to add yourself to this #if... [cjh] */
23 /* At max warnings, we need protos for everything. [cjh] */
24 #include <readline/readline.h>
25 #include <readline/history.h>
28 #include <readline/readline.h> /* You may need to add an -I option to Setup */
30 extern int rl_parse_and_bind();
31 extern int rl_read_init_file();
32 extern int rl_insert_text();
33 extern int rl_bind_key();
34 extern int rl_bind_key_in_map();
35 extern int rl_initialize();
36 extern int add_history();
37 extern Function
*rl_event_hook
;
40 /* Pointers needed from outside (but not declared in a header file). */
41 extern int (*PyOS_InputHook
)();
42 extern char *(*PyOS_ReadlineFunctionPointer
) Py_PROTO((char *));
45 /* Exported function to send one line to readline's init file parser */
48 parse_and_bind(self
, args
)
53 if (!PyArg_ParseTuple(args
, "s", &s
))
55 /* Make a copy -- rl_parse_and_bind() modifies its argument */
57 copy
= malloc(1 + strlen(s
));
59 return PyErr_NoMemory();
61 rl_parse_and_bind(copy
);
62 free(copy
); /* Free the copy */
67 static char doc_parse_and_bind
[] = "\
68 parse_and_bind(string) -> None\n\
69 Parse and execute single line of a readline init file.\
73 /* Exported function to parse a readline init file */
76 read_init_file(self
, args
)
81 if (!PyArg_ParseTuple(args
, "|z", &s
))
83 errno
= rl_read_init_file(s
);
85 return PyErr_SetFromErrno(PyExc_IOError
);
90 static char doc_read_init_file
[] = "\
91 read_init_file([filename]) -> None\n\
92 Parse a readline initialization file.\n\
93 The default filename is the last filename used.\
97 /* Exported function to specify a word completer in Python */
99 static PyObject
*completer
= NULL
;
100 static PyThreadState
*tstate
= NULL
;
103 set_completer(self
, args
)
107 PyObject
*function
= Py_None
;
108 if (!PyArg_ParseTuple(args
, "|O", &function
))
110 if (function
== Py_None
) {
111 Py_XDECREF(completer
);
115 else if (PyCallable_Check(function
)) {
116 PyObject
*tmp
= completer
;
118 completer
= function
;
120 tstate
= PyThreadState_Get();
123 PyErr_SetString(PyExc_TypeError
,
124 "set_completer(func): argument not callable");
131 static char doc_set_completer
[] = "\
132 set_completer([function]) -> None\n\
133 Set or remove the completer function.\n\
134 The function is called as function(text, state),\n\
135 for i in [0, 1, 2, ...] until it returns a non-string.\n\
136 It should return the next possible completion starting with 'text'.\
139 /* Exported function to read the current line buffer */
142 get_line_buffer(self
, args
)
146 if (PyArg_NoArgs(args
))
148 return PyString_FromString(rl_line_buffer
);
151 static char doc_get_line_buffer
[] = "\
152 get_line_buffer() -> string\n\
153 return the current contents of the line buffer.\
156 /* Exported function to insert text into the line buffer */
159 insert_text(self
, args
)
164 if (!PyArg_ParseTuple(args
, "s", &s
))
172 static char doc_insert_text
[] = "\
173 insert_text(string) -> None\n\
174 Insert text into the command line.\
178 /* Table of functions exported by the module */
180 static struct PyMethodDef readline_methods
[] =
182 {"parse_and_bind", parse_and_bind
, 1, doc_parse_and_bind
},
183 {"get_line_buffer", get_line_buffer
, 1, doc_get_line_buffer
},
184 {"insert_text", insert_text
, 1, doc_insert_text
},
185 {"read_init_file", read_init_file
, 1, doc_read_init_file
},
186 {"set_completer", set_completer
, 1, doc_set_completer
},
190 /* C function to call the Python completer. */
193 on_completion(text
, state
)
198 if (completer
!= NULL
) {
200 PyThreadState
*save_tstate
;
201 /* Note that readline is called with the interpreter
203 save_tstate
= PyThreadState_Swap(NULL
);
204 PyEval_RestoreThread(tstate
);
205 r
= PyObject_CallFunction(completer
, "si", text
, state
);
212 char *s
= PyString_AsString(r
);
224 PyThreadState_Swap(save_tstate
);
230 /* Helper to initialize GNU readline properly. */
235 rl_readline_name
= "python";
236 /* Force rebind of TAB to insert-tab */
237 rl_bind_key('\t', rl_insert
);
238 /* Bind both ESC-TAB and ESC-ESC to the completion function */
239 rl_bind_key_in_map ('\t', rl_complete
, emacs_meta_keymap
);
240 rl_bind_key_in_map ('\033', rl_complete
, emacs_meta_keymap
);
241 /* Set our completion function */
242 rl_completion_entry_function
= (Function
*) on_completion
;
243 /* Set Python word break characters */
244 rl_completer_word_break_characters
=
245 " \t\n`~!@#$%^&*()-=+[{]}\\|;:'\",<>/?";
246 /* All nonalphanums except '.' */
247 /* Initialize (allows .inputrc to override)
249 * XXX: A bug in the readline-2.2 library causes a memory leak
250 * inside this function. Nothing we can do about it.
256 /* Interrupt handler */
269 /* Wrapper around GNU readline that handles signals differently. */
272 call_readline(prompt
)
277 RETSIGTYPE (*old_inthandler
)();
278 old_inthandler
= signal(SIGINT
, onintr
);
281 /* This seems necessary on SunOS 4.1 (Rasmus Hahn) */
284 signal(SIGINT
, old_inthandler
);
287 rl_event_hook
= PyOS_InputHook
;
288 p
= readline(prompt
);
289 signal(SIGINT
, old_inthandler
);
299 if ((p
= realloc(p
, n
+2)) != NULL
) {
307 /* Initialize the module */
309 static char doc_module
[] =
310 "Importing this module enables command line editing using GNU readline.";
317 m
= Py_InitModule4("readline", readline_methods
, doc_module
,
318 (PyObject
*)NULL
, PYTHON_API_VERSION
);
319 if (isatty(fileno(stdin
))) {
320 PyOS_ReadlineFunctionPointer
= call_readline
;