1 /* callback.c -- functions to use readline as an X `callback' mechanism. */
3 /* Copyright (C) 1987, 1989, 1992 Free Software Foundation, Inc.
5 This file is part of the GNU Readline Library, a library for
6 reading lines of text with interactive input and history editing.
8 The GNU Readline Library is free software; you can redistribute it
9 and/or modify it under the terms of the GNU General Public License
10 as published by the Free Software Foundation; either version 2, or
11 (at your option) any later version.
13 The GNU Readline Library is distributed in the hope that it will be
14 useful, but WITHOUT ANY WARRANTY; without even the implied warranty
15 of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 The GNU General Public License is often shipped with GNU software, and
19 is generally kept in a file called COPYING or LICENSE. If you do not
20 have a copy of the license, write to the Free Software Foundation,
21 59 Temple Place, Suite 330, Boston, MA 02111 USA. */
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"
47 /* **************************************************************** */
49 /* Callback Readline Functions */
51 /* **************************************************************** */
53 /* Allow using readline in situations where a program may have multiple
54 things to handle at once, and dispatches them via select(). Call
55 rl_callback_handler_install() with the prompt and a function to call
56 whenever a complete line of input is ready. The user must then
57 call rl_callback_read_char() every time some input is available, and
58 rl_callback_read_char() will call the user's function with the complete
59 text read in at each end of line. The terminal is kept prepped and
60 signals handled all the time, except during calls to the user's function. */
62 rl_vcpfunc_t *rl_linefunc; /* user callback function */
63 static int in_handler; /* terminal_prepped and signals set? */
65 /* Make sure the terminal is set up, initialize readline, and prompt. */
67 _rl_callback_newline ()
75 (*rl_prep_term_function) (_rl_meta_flag);
77 #if defined (HANDLE_SIGNALS)
82 readline_internal_setup ();
85 /* Install a readline handler, set up the terminal, and issue the prompt. */
87 rl_callback_handler_install (prompt, linefunc)
89 rl_vcpfunc_t *linefunc;
91 rl_set_prompt (prompt);
92 rl_linefunc = linefunc;
93 _rl_callback_newline ();
96 /* Read one character, and dispatch to the handler if it ends the line. */
98 rl_callback_read_char ()
103 if (rl_linefunc == NULL)
105 fprintf (stderr, "readline: readline_callback_read_char() called with no handler!\r\n");
109 eof = readline_internal_char ();
111 /* We loop in case some function has pushed input back with rl_execute_next. */
116 line = readline_internal_teardown (eof);
118 (*rl_deprep_term_function) ();
119 #if defined (HANDLE_SIGNALS)
123 (*rl_linefunc) (line);
125 /* If the user did not clear out the line, do it for him. */
126 if (rl_line_buffer[0])
127 _rl_init_line_state ();
129 /* Redisplay the prompt if readline_handler_{install,remove}
131 if (in_handler == 0 && rl_linefunc)
132 _rl_callback_newline ();
134 if (rl_pending_input || _rl_pushed_input_available ())
135 eof = readline_internal_char ();
141 /* Remove the handler, and make sure the terminal is in its normal state. */
143 rl_callback_handler_remove ()
149 (*rl_deprep_term_function) ();
150 #if defined (HANDLE_SIGNALS)