1 /* callback.c -- functions to use readline as an X `callback' mechanism. */
3 /* Copyright (C) 1987-2017 Free Software Foundation, Inc.
5 This file is part of the GNU Readline Library (Readline), a library
6 for reading lines of text with interactive input and history editing.
8 Readline is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
13 Readline is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with Readline. If not, see <http://www.gnu.org/licenses/>.
22 #define READLINE_LIBRARY
24 #if defined (HAVE_CONFIG_H)
30 #if defined (READLINE_CALLBACKS)
32 #include <sys/types.h>
37 # include "ansi_stdlib.h"
42 /* System-specific feature definitions and include files. */
45 #include "rlprivate.h"
48 /* Private data for callback registration functions. See comments in
49 rl_callback_read_char for more details. */
50 _rl_callback_func_t *_rl_callback_func = 0;
51 _rl_callback_generic_arg *_rl_callback_data = 0;
53 /* Applications can set this to non-zero to have readline's signal handlers
54 installed during the entire duration of reading a complete line, as in
55 readline-6.2. This should be used with care, because it can result in
56 readline receiving signals and not handling them until it's called again
57 via rl_callback_read_char, thereby stealing them from the application.
58 By default, signal handlers are only active while readline is active. */
59 int rl_persistent_signal_handlers = 0;
61 /* **************************************************************** */
63 /* Callback Readline Functions */
65 /* **************************************************************** */
67 /* Allow using readline in situations where a program may have multiple
68 things to handle at once, and dispatches them via select(). Call
69 rl_callback_handler_install() with the prompt and a function to call
70 whenever a complete line of input is ready. The user must then
71 call rl_callback_read_char() every time some input is available, and
72 rl_callback_read_char() will call the user's function with the complete
73 text read in at each end of line. The terminal is kept prepped
74 all the time, except during calls to the user's function. Signal
75 handlers are only installed when the application calls back into
76 readline, so readline doesn't `steal' signals from the application. */
78 rl_vcpfunc_t *rl_linefunc; /* user callback function */
79 static int in_handler; /* terminal_prepped and signals set? */
81 /* Make sure the terminal is set up, initialize readline, and prompt. */
83 _rl_callback_newline (void)
91 if (rl_prep_term_function)
92 (*rl_prep_term_function) (_rl_meta_flag);
94 #if defined (HANDLE_SIGNALS)
95 if (rl_persistent_signal_handlers)
100 readline_internal_setup ();
104 /* Install a readline handler, set up the terminal, and issue the prompt. */
106 rl_callback_handler_install (const char *prompt, rl_vcpfunc_t *linefunc)
108 rl_set_prompt (prompt);
109 RL_SETSTATE (RL_STATE_CALLBACK);
110 rl_linefunc = linefunc;
111 _rl_callback_newline ();
114 #if defined (HANDLE_SIGNALS)
115 #define CALLBACK_READ_RETURN() \
117 if (rl_persistent_signal_handlers == 0) \
118 rl_clear_signals (); \
122 #define CALLBACK_READ_RETURN() return
125 /* Read one character, and dispatch to the handler if it ends the line. */
127 rl_callback_read_char (void)
131 static procenv_t olevel;
133 if (rl_linefunc == NULL)
135 _rl_errmsg ("readline_callback_read_char() called with no handler!");
139 memcpy ((void *)olevel, (void *)_rl_top_level, sizeof (procenv_t));
140 #if defined (HAVE_POSIX_SIGSETJMP)
141 jcode = sigsetjmp (_rl_top_level, 0);
143 jcode = setjmp (_rl_top_level);
147 (*rl_redisplay_function) ();
148 _rl_want_redisplay = 0;
149 memcpy ((void *)_rl_top_level, (void *)olevel, sizeof (procenv_t));
150 CALLBACK_READ_RETURN ();
153 #if defined (HANDLE_SIGNALS)
154 /* Install signal handlers only when readline has control. */
155 if (rl_persistent_signal_handlers == 0)
162 if (RL_ISSTATE (RL_STATE_ISEARCH))
164 eof = _rl_isearch_callback (_rl_iscxt);
165 if (eof == 0 && (RL_ISSTATE (RL_STATE_ISEARCH) == 0) && RL_ISSTATE (RL_STATE_INPUTPENDING))
166 rl_callback_read_char ();
168 CALLBACK_READ_RETURN ();
170 else if (RL_ISSTATE (RL_STATE_NSEARCH))
172 eof = _rl_nsearch_callback (_rl_nscxt);
174 CALLBACK_READ_RETURN ();
176 #if defined (VI_MODE)
177 /* States that can occur while in state VIMOTION have to be checked
178 before RL_STATE_VIMOTION */
179 else if (RL_ISSTATE (RL_STATE_CHARSEARCH))
183 k = _rl_callback_data->i2;
185 eof = (*_rl_callback_func) (_rl_callback_data);
186 /* If the function `deregisters' itself, make sure the data is
188 if (_rl_callback_func == 0) /* XXX - just sanity check */
190 if (_rl_callback_data)
192 _rl_callback_data_dispose (_rl_callback_data);
193 _rl_callback_data = 0;
197 /* Messy case where vi motion command can be char search */
198 if (RL_ISSTATE (RL_STATE_VIMOTION))
200 _rl_vi_domove_motion_cleanup (k, _rl_vimvcxt);
201 _rl_internal_char_cleanup ();
202 CALLBACK_READ_RETURN ();
205 _rl_internal_char_cleanup ();
207 else if (RL_ISSTATE (RL_STATE_VIMOTION))
209 eof = _rl_vi_domove_callback (_rl_vimvcxt);
210 /* Should handle everything, including cleanup, numeric arguments,
211 and turning off RL_STATE_VIMOTION */
212 if (RL_ISSTATE (RL_STATE_NUMERICARG) == 0)
213 _rl_internal_char_cleanup ();
215 CALLBACK_READ_RETURN ();
218 else if (RL_ISSTATE (RL_STATE_NUMERICARG))
220 eof = _rl_arg_callback (_rl_argcxt);
221 if (eof == 0 && (RL_ISSTATE (RL_STATE_NUMERICARG) == 0) && RL_ISSTATE (RL_STATE_INPUTPENDING))
222 rl_callback_read_char ();
223 /* XXX - this should handle _rl_last_command_was_kill better */
224 else if (RL_ISSTATE (RL_STATE_NUMERICARG) == 0)
225 _rl_internal_char_cleanup ();
227 CALLBACK_READ_RETURN ();
229 else if (RL_ISSTATE (RL_STATE_MULTIKEY))
231 eof = _rl_dispatch_callback (_rl_kscxt); /* For now */
232 while ((eof == -1 || eof == -2) && RL_ISSTATE (RL_STATE_MULTIKEY) && _rl_kscxt && (_rl_kscxt->flags & KSEQ_DISPATCHED))
233 eof = _rl_dispatch_callback (_rl_kscxt);
234 if (RL_ISSTATE (RL_STATE_MULTIKEY) == 0)
236 _rl_internal_char_cleanup ();
237 _rl_want_redisplay = 1;
240 else if (_rl_callback_func)
242 /* This allows functions that simply need to read an additional
243 character (like quoted-insert) to register a function to be
244 called when input is available. _rl_callback_data is a
245 pointer to a struct that has the argument count originally
246 passed to the registering function and space for any additional
248 eof = (*_rl_callback_func) (_rl_callback_data);
249 /* If the function `deregisters' itself, make sure the data is
251 if (_rl_callback_func == 0)
253 if (_rl_callback_data)
255 _rl_callback_data_dispose (_rl_callback_data);
256 _rl_callback_data = 0;
258 _rl_internal_char_cleanup ();
262 eof = readline_internal_char ();
265 if (rl_done == 0 && _rl_want_redisplay)
267 (*rl_redisplay_function) ();
268 _rl_want_redisplay = 0;
273 line = readline_internal_teardown (eof);
275 if (rl_deprep_term_function)
276 (*rl_deprep_term_function) ();
277 #if defined (HANDLE_SIGNALS)
281 (*rl_linefunc) (line);
283 /* If the user did not clear out the line, do it for him. */
284 if (rl_line_buffer[0])
285 _rl_init_line_state ();
287 /* Redisplay the prompt if readline_handler_{install,remove}
289 if (in_handler == 0 && rl_linefunc)
290 _rl_callback_newline ();
293 while (rl_pending_input || _rl_pushed_input_available () || RL_ISSTATE (RL_STATE_MACROINPUT));
295 CALLBACK_READ_RETURN ();
298 /* Remove the handler, and make sure the terminal is in its normal state. */
300 rl_callback_handler_remove (void)
303 RL_UNSETSTATE (RL_STATE_CALLBACK);
308 if (rl_deprep_term_function)
309 (*rl_deprep_term_function) ();
310 #if defined (HANDLE_SIGNALS)
316 _rl_callback_generic_arg *
317 _rl_callback_data_alloc (int count)
319 _rl_callback_generic_arg *arg;
321 arg = (_rl_callback_generic_arg *)xmalloc (sizeof (_rl_callback_generic_arg));
324 arg->i1 = arg->i2 = 0;
330 _rl_callback_data_dispose (_rl_callback_generic_arg *arg)
335 /* Make sure that this agrees with cases in rl_callback_read_char */
337 rl_callback_sigcleanup (void)
339 if (RL_ISSTATE (RL_STATE_CALLBACK) == 0)
342 if (RL_ISSTATE (RL_STATE_ISEARCH))
343 _rl_isearch_cleanup (_rl_iscxt, 0);
344 else if (RL_ISSTATE (RL_STATE_NSEARCH))
345 _rl_nsearch_cleanup (_rl_nscxt, 0);
346 else if (RL_ISSTATE (RL_STATE_VIMOTION))
347 RL_UNSETSTATE (RL_STATE_VIMOTION);
348 else if (RL_ISSTATE (RL_STATE_NUMERICARG))
351 RL_UNSETSTATE (RL_STATE_NUMERICARG);
353 else if (RL_ISSTATE (RL_STATE_MULTIKEY))
354 RL_UNSETSTATE (RL_STATE_MULTIKEY);
355 if (RL_ISSTATE (RL_STATE_CHARSEARCH))
356 RL_UNSETSTATE (RL_STATE_CHARSEARCH);
358 _rl_callback_func = 0;