]> git.ipfire.org Git - thirdparty/bash.git/blob - lib/readline/doc/rltech.texi
commit bash-20040107 snapshot
[thirdparty/bash.git] / lib / readline / doc / rltech.texi
1 @comment %**start of header (This is for running Texinfo on a region.)
2 @setfilename rltech.info
3 @comment %**end of header (This is for running Texinfo on a region.)
4 @setchapternewpage odd
5
6 @ifinfo
7 This document describes the GNU Readline Library, a utility for aiding
8 in the consitency of user interface across discrete programs that need
9 to provide a command line interface.
10
11 Copyright (C) 1988-2002 Free Software Foundation, Inc.
12
13 Permission is granted to make and distribute verbatim copies of
14 this manual provided the copyright notice and this permission notice
15 pare preserved on all copies.
16
17 @ignore
18 Permission is granted to process this file through TeX and print the
19 results, provided the printed document carries copying permission
20 notice identical to this one except for the removal of this paragraph
21 (this paragraph not being relevant to the printed manual).
22 @end ignore
23
24 Permission is granted to copy and distribute modified versions of this
25 manual under the conditions for verbatim copying, provided that the entire
26 resulting derived work is distributed under the terms of a permission
27 notice identical to this one.
28
29 Permission is granted to copy and distribute translations of this manual
30 into another language, under the above conditions for modified versions,
31 except that this permission notice may be stated in a translation approved
32 by the Foundation.
33 @end ifinfo
34
35 @node Programming with GNU Readline
36 @chapter Programming with GNU Readline
37
38 This chapter describes the interface between the @sc{gnu} Readline Library and
39 other programs. If you are a programmer, and you wish to include the
40 features found in @sc{gnu} Readline
41 such as completion, line editing, and interactive history manipulation
42 in your own programs, this section is for you.
43
44 @menu
45 * Basic Behavior:: Using the default behavior of Readline.
46 * Custom Functions:: Adding your own functions to Readline.
47 * Readline Variables:: Variables accessible to custom
48 functions.
49 * Readline Convenience Functions:: Functions which Readline supplies to
50 aid in writing your own custom
51 functions.
52 * Readline Signal Handling:: How Readline behaves when it receives signals.
53 * Custom Completers:: Supplanting or supplementing Readline's
54 completion functions.
55 @end menu
56
57 @node Basic Behavior
58 @section Basic Behavior
59
60 Many programs provide a command line interface, such as @code{mail},
61 @code{ftp}, and @code{sh}. For such programs, the default behaviour of
62 Readline is sufficient. This section describes how to use Readline in
63 the simplest way possible, perhaps to replace calls in your code to
64 @code{gets()} or @code{fgets()}.
65
66 @findex readline
67 @cindex readline, function
68
69 The function @code{readline()} prints a prompt @var{prompt}
70 and then reads and returns a single line of text from the user.
71 If @var{prompt} is @code{NULL} or the empty string, no prompt is displayed.
72 The line @code{readline} returns is allocated with @code{malloc()};
73 the caller should @code{free()} the line when it has finished with it.
74 The declaration for @code{readline} in ANSI C is
75
76 @example
77 @code{char *readline (const char *@var{prompt});}
78 @end example
79
80 @noindent
81 So, one might say
82 @example
83 @code{char *line = readline ("Enter a line: ");}
84 @end example
85 @noindent
86 in order to read a line of text from the user.
87 The line returned has the final newline removed, so only the
88 text remains.
89
90 If @code{readline} encounters an @code{EOF} while reading the line, and the
91 line is empty at that point, then @code{(char *)NULL} is returned.
92 Otherwise, the line is ended just as if a newline had been typed.
93
94 If you want the user to be able to get at the line later, (with
95 @key{C-p} for example), you must call @code{add_history()} to save the
96 line away in a @dfn{history} list of such lines.
97
98 @example
99 @code{add_history (line)};
100 @end example
101
102 @noindent
103 For full details on the GNU History Library, see the associated manual.
104
105 It is preferable to avoid saving empty lines on the history list, since
106 users rarely have a burning need to reuse a blank line. Here is
107 a function which usefully replaces the standard @code{gets()} library
108 function, and has the advantage of no static buffer to overflow:
109
110 @example
111 /* A static variable for holding the line. */
112 static char *line_read = (char *)NULL;
113
114 /* Read a string, and return a pointer to it.
115 Returns NULL on EOF. */
116 char *
117 rl_gets ()
118 @{
119 /* If the buffer has already been allocated,
120 return the memory to the free pool. */
121 if (line_read)
122 @{
123 free (line_read);
124 line_read = (char *)NULL;
125 @}
126
127 /* Get a line from the user. */
128 line_read = readline ("");
129
130 /* If the line has any text in it,
131 save it on the history. */
132 if (line_read && *line_read)
133 add_history (line_read);
134
135 return (line_read);
136 @}
137 @end example
138
139 This function gives the user the default behaviour of @key{TAB}
140 completion: completion on file names. If you do not want Readline to
141 complete on filenames, you can change the binding of the @key{TAB} key
142 with @code{rl_bind_key()}.
143
144 @example
145 @code{int rl_bind_key (int @var{key}, rl_command_func_t *@var{function});}
146 @end example
147
148 @code{rl_bind_key()} takes two arguments: @var{key} is the character that
149 you want to bind, and @var{function} is the address of the function to
150 call when @var{key} is pressed. Binding @key{TAB} to @code{rl_insert()}
151 makes @key{TAB} insert itself.
152 @code{rl_bind_key()} returns non-zero if @var{key} is not a valid
153 ASCII character code (between 0 and 255).
154
155 Thus, to disable the default @key{TAB} behavior, the following suffices:
156 @example
157 @code{rl_bind_key ('\t', rl_insert);}
158 @end example
159
160 This code should be executed once at the start of your program; you
161 might write a function called @code{initialize_readline()} which
162 performs this and other desired initializations, such as installing
163 custom completers (@pxref{Custom Completers}).
164
165 @node Custom Functions
166 @section Custom Functions
167
168 Readline provides many functions for manipulating the text of
169 the line, but it isn't possible to anticipate the needs of all
170 programs. This section describes the various functions and variables
171 defined within the Readline library which allow a user program to add
172 customized functionality to Readline.
173
174 Before declaring any functions that customize Readline's behavior, or
175 using any functionality Readline provides in other code, an
176 application writer should include the file @code{<readline/readline.h>}
177 in any file that uses Readline's features. Since some of the definitions
178 in @code{readline.h} use the @code{stdio} library, the file
179 @code{<stdio.h>} should be included before @code{readline.h}.
180
181 @code{readline.h} defines a C preprocessor variable that should
182 be treated as an integer, @code{RL_READLINE_VERSION}, which may
183 be used to conditionally compile application code depending on
184 the installed Readline version. The value is a hexadecimal
185 encoding of the major and minor version numbers of the library,
186 of the form 0x@var{MMmm}. @var{MM} is the two-digit major
187 version number; @var{mm} is the two-digit minor version number.
188 For Readline 4.2, for example, the value of
189 @code{RL_READLINE_VERSION} would be @code{0x0402}.
190
191 @menu
192 * Readline Typedefs:: C declarations to make code readable.
193 * Function Writing:: Variables and calling conventions.
194 @end menu
195
196 @node Readline Typedefs
197 @subsection Readline Typedefs
198
199 For readabilty, we declare a number of new object types, all pointers
200 to functions.
201
202 The reason for declaring these new types is to make it easier to write
203 code describing pointers to C functions with appropriately prototyped
204 arguments and return values.
205
206 For instance, say we want to declare a variable @var{func} as a pointer
207 to a function which takes two @code{int} arguments and returns an
208 @code{int} (this is the type of all of the Readline bindable functions).
209 Instead of the classic C declaration
210
211 @code{int (*func)();}
212
213 @noindent
214 or the ANSI-C style declaration
215
216 @code{int (*func)(int, int);}
217
218 @noindent
219 we may write
220
221 @code{rl_command_func_t *func;}
222
223 The full list of function pointer types available is
224
225 @table @code
226 @item typedef int rl_command_func_t (int, int);
227
228 @item typedef char *rl_compentry_func_t (const char *, int);
229
230 @item typedef char **rl_completion_func_t (const char *, int, int);
231
232 @item typedef char *rl_quote_func_t (char *, int, char *);
233
234 @item typedef char *rl_dequote_func_t (char *, int);
235
236 @item typedef int rl_compignore_func_t (char **);
237
238 @item typedef void rl_compdisp_func_t (char **, int, int);
239
240 @item typedef int rl_hook_func_t (void);
241
242 @item typedef int rl_getc_func_t (FILE *);
243
244 @item typedef int rl_linebuf_func_t (char *, int);
245
246 @item typedef int rl_intfunc_t (int);
247 @item #define rl_ivoidfunc_t rl_hook_func_t
248 @item typedef int rl_icpfunc_t (char *);
249 @item typedef int rl_icppfunc_t (char **);
250
251 @item typedef void rl_voidfunc_t (void);
252 @item typedef void rl_vintfunc_t (int);
253 @item typedef void rl_vcpfunc_t (char *);
254 @item typedef void rl_vcppfunc_t (char **);
255
256 @end table
257
258 @node Function Writing
259 @subsection Writing a New Function
260
261 In order to write new functions for Readline, you need to know the
262 calling conventions for keyboard-invoked functions, and the names of the
263 variables that describe the current state of the line read so far.
264
265 The calling sequence for a command @code{foo} looks like
266
267 @example
268 @code{int foo (int count, int key)}
269 @end example
270
271 @noindent
272 where @var{count} is the numeric argument (or 1 if defaulted) and
273 @var{key} is the key that invoked this function.
274
275 It is completely up to the function as to what should be done with the
276 numeric argument. Some functions use it as a repeat count, some
277 as a flag, and others to choose alternate behavior (refreshing the current
278 line as opposed to refreshing the screen, for example). Some choose to
279 ignore it. In general, if a
280 function uses the numeric argument as a repeat count, it should be able
281 to do something useful with both negative and positive arguments.
282 At the very least, it should be aware that it can be passed a
283 negative argument.
284
285 A command function should return 0 if its action completes successfully,
286 and a non-zero value if some error occurs.
287
288 @node Readline Variables
289 @section Readline Variables
290
291 These variables are available to function writers.
292
293 @deftypevar {char *} rl_line_buffer
294 This is the line gathered so far. You are welcome to modify the
295 contents of the line, but see @ref{Allowing Undoing}. The
296 function @code{rl_extend_line_buffer} is available to increase
297 the memory allocated to @code{rl_line_buffer}.
298 @end deftypevar
299
300 @deftypevar int rl_point
301 The offset of the current cursor position in @code{rl_line_buffer}
302 (the @emph{point}).
303 @end deftypevar
304
305 @deftypevar int rl_end
306 The number of characters present in @code{rl_line_buffer}. When
307 @code{rl_point} is at the end of the line, @code{rl_point} and
308 @code{rl_end} are equal.
309 @end deftypevar
310
311 @deftypevar int rl_mark
312 The @var{mark} (saved position) in the current line. If set, the mark
313 and point define a @emph{region}.
314 @end deftypevar
315
316 @deftypevar int rl_done
317 Setting this to a non-zero value causes Readline to return the current
318 line immediately.
319 @end deftypevar
320
321 @deftypevar int rl_num_chars_to_read
322 Setting this to a positive value before calling @code{readline()} causes
323 Readline to return after accepting that many characters, rather
324 than reading up to a character bound to @code{accept-line}.
325 @end deftypevar
326
327 @deftypevar int rl_pending_input
328 Setting this to a value makes it the next keystroke read. This is a
329 way to stuff a single character into the input stream.
330 @end deftypevar
331
332 @deftypevar int rl_dispatching
333 Set to a non-zero value if a function is being called from a key binding;
334 zero otherwise. Application functions can test this to discover whether
335 they were called directly or by Readline's dispatching mechanism.
336 @end deftypevar
337
338 @deftypevar int rl_erase_empty_line
339 Setting this to a non-zero value causes Readline to completely erase
340 the current line, including any prompt, any time a newline is typed as
341 the only character on an otherwise-empty line. The cursor is moved to
342 the beginning of the newly-blank line.
343 @end deftypevar
344
345 @deftypevar {char *} rl_prompt
346 The prompt Readline uses. This is set from the argument to
347 @code{readline()}, and should not be assigned to directly.
348 The @code{rl_set_prompt()} function (@pxref{Redisplay}) may
349 be used to modify the prompt string after calling @code{readline()}.
350 @end deftypevar
351
352 @deftypevar int rl_already_prompted
353 If an application wishes to display the prompt itself, rather than have
354 Readline do it the first time @code{readline()} is called, it should set
355 this variable to a non-zero value after displaying the prompt.
356 The prompt must also be passed as the argument to @code{readline()} so
357 the redisplay functions can update the display properly.
358 The calling application is responsible for managing the value; Readline
359 never sets it.
360 @end deftypevar
361
362 @deftypevar {const char *} rl_library_version
363 The version number of this revision of the library.
364 @end deftypevar
365
366 @deftypevar int rl_readline_version
367 An integer encoding the current version of the library. The encoding is
368 of the form 0x@var{MMmm}, where @var{MM} is the two-digit major version
369 number, and @var{mm} is the two-digit minor version number.
370 For example, for Readline-4.2, @code{rl_readline_version} would have the
371 value 0x0402.
372 @end deftypevar
373
374 @deftypevar {int} rl_gnu_readline_p
375 Always set to 1, denoting that this is @sc{gnu} readline rather than some
376 emulation.
377 @end deftypevar
378
379 @deftypevar {const char *} rl_terminal_name
380 The terminal type, used for initialization. If not set by the application,
381 Readline sets this to the value of the @env{TERM} environment variable
382 the first time it is called.
383 @end deftypevar
384
385 @deftypevar {const char *} rl_readline_name
386 This variable is set to a unique name by each application using Readline.
387 The value allows conditional parsing of the inputrc file
388 (@pxref{Conditional Init Constructs}).
389 @end deftypevar
390
391 @deftypevar {FILE *} rl_instream
392 The stdio stream from which Readline reads input.
393 If @code{NULL}, Readline defaults to @var{stdin}.
394 @end deftypevar
395
396 @deftypevar {FILE *} rl_outstream
397 The stdio stream to which Readline performs output.
398 If @code{NULL}, Readline defaults to @var{stdout}.
399 @end deftypevar
400
401 @deftypevar {rl_command_func_t *} rl_last_func
402 The address of the last command function Readline executed. May be used to
403 test whether or not a function is being executed twice in succession, for
404 example.
405 @end deftypevar
406
407 @deftypevar {rl_hook_func_t *} rl_startup_hook
408 If non-zero, this is the address of a function to call just
409 before @code{readline} prints the first prompt.
410 @end deftypevar
411
412 @deftypevar {rl_hook_func_t *} rl_pre_input_hook
413 If non-zero, this is the address of a function to call after
414 the first prompt has been printed and just before @code{readline}
415 starts reading input characters.
416 @end deftypevar
417
418 @deftypevar {rl_hook_func_t *} rl_event_hook
419 If non-zero, this is the address of a function to call periodically
420 when Readline is waiting for terminal input.
421 By default, this will be called at most ten times a second if there
422 is no keyboard input.
423 @end deftypevar
424
425 @deftypevar {rl_getc_func_t *} rl_getc_function
426 If non-zero, Readline will call indirectly through this pointer
427 to get a character from the input stream. By default, it is set to
428 @code{rl_getc}, the default Readline character input function
429 (@pxref{Character Input}).
430 @end deftypevar
431
432 @deftypevar {rl_voidfunc_t *} rl_redisplay_function
433 If non-zero, Readline will call indirectly through this pointer
434 to update the display with the current contents of the editing buffer.
435 By default, it is set to @code{rl_redisplay}, the default Readline
436 redisplay function (@pxref{Redisplay}).
437 @end deftypevar
438
439 @deftypevar {rl_vintfunc_t *} rl_prep_term_function
440 If non-zero, Readline will call indirectly through this pointer
441 to initialize the terminal. The function takes a single argument, an
442 @code{int} flag that says whether or not to use eight-bit characters.
443 By default, this is set to @code{rl_prep_terminal}
444 (@pxref{Terminal Management}).
445 @end deftypevar
446
447 @deftypevar {rl_voidfunc_t *} rl_deprep_term_function
448 If non-zero, Readline will call indirectly through this pointer
449 to reset the terminal. This function should undo the effects of
450 @code{rl_prep_term_function}.
451 By default, this is set to @code{rl_deprep_terminal}
452 (@pxref{Terminal Management}).
453 @end deftypevar
454
455 @deftypevar {Keymap} rl_executing_keymap
456 This variable is set to the keymap (@pxref{Keymaps}) in which the
457 currently executing readline function was found.
458 @end deftypevar
459
460 @deftypevar {Keymap} rl_binding_keymap
461 This variable is set to the keymap (@pxref{Keymaps}) in which the
462 last key binding occurred.
463 @end deftypevar
464
465 @deftypevar {char *} rl_executing_macro
466 This variable is set to the text of any currently-executing macro.
467 @end deftypevar
468
469 @deftypevar {int} rl_readline_state
470 A variable with bit values that encapsulate the current Readline state.
471 A bit is set with the @code{RL_SETSTATE} macro, and unset with the
472 @code{RL_UNSETSTATE} macro. Use the @code{RL_ISSTATE} macro to test
473 whether a particular state bit is set. Current state bits include:
474
475 @table @code
476 @item RL_STATE_NONE
477 Readline has not yet been called, nor has it begun to intialize.
478 @item RL_STATE_INITIALIZING
479 Readline is initializing its internal data structures.
480 @item RL_STATE_INITIALIZED
481 Readline has completed its initialization.
482 @item RL_STATE_TERMPREPPED
483 Readline has modified the terminal modes to do its own input and redisplay.
484 @item RL_STATE_READCMD
485 Readline is reading a command from the keyboard.
486 @item RL_STATE_METANEXT
487 Readline is reading more input after reading the meta-prefix character.
488 @item RL_STATE_DISPATCHING
489 Readline is dispatching to a command.
490 @item RL_STATE_MOREINPUT
491 Readline is reading more input while executing an editing command.
492 @item RL_STATE_ISEARCH
493 Readline is performing an incremental history search.
494 @item RL_STATE_NSEARCH
495 Readline is performing a non-incremental history search.
496 @item RL_STATE_SEARCH
497 Readline is searching backward or forward through the history for a string.
498 @item RL_STATE_NUMERICARG
499 Readline is reading a numeric argument.
500 @item RL_STATE_MACROINPUT
501 Readline is currently getting its input from a previously-defined keyboard
502 macro.
503 @item RL_STATE_MACRODEF
504 Readline is currently reading characters defining a keyboard macro.
505 @item RL_STATE_OVERWRITE
506 Readline is in overwrite mode.
507 @item RL_STATE_COMPLETING
508 Readline is performing word completion.
509 @item RL_STATE_SIGHANDLER
510 Readline is currently executing the readline signal handler.
511 @item RL_STATE_UNDOING
512 Readline is performing an undo.
513 @item RL_STATE_DONE
514 Readline has read a key sequence bound to @code{accept-line}
515 and is about to return the line to the caller.
516 @end table
517
518 @end deftypevar
519
520 @deftypevar {int} rl_explicit_arg
521 Set to a non-zero value if an explicit numeric argument was specified by
522 the user. Only valid in a bindable command function.
523 @end deftypevar
524
525 @deftypevar {int} rl_numeric_arg
526 Set to the value of any numeric argument explicitly specified by the user
527 before executing the current Readline function. Only valid in a bindable
528 command function.
529 @end deftypevar
530
531 @deftypevar {int} rl_editing_mode
532 Set to a value denoting Readline's current editing mode. A value of
533 @var{1} means Readline is currently in emacs mode; @var{0}
534 means that vi mode is active.
535 @end deftypevar
536
537
538 @node Readline Convenience Functions
539 @section Readline Convenience Functions
540
541 @menu
542 * Function Naming:: How to give a function you write a name.
543 * Keymaps:: Making keymaps.
544 * Binding Keys:: Changing Keymaps.
545 * Associating Function Names and Bindings:: Translate function names to
546 key sequences.
547 * Allowing Undoing:: How to make your functions undoable.
548 * Redisplay:: Functions to control line display.
549 * Modifying Text:: Functions to modify @code{rl_line_buffer}.
550 * Character Input:: Functions to read keyboard input.
551 * Terminal Management:: Functions to manage terminal settings.
552 * Utility Functions:: Generally useful functions and hooks.
553 * Miscellaneous Functions:: Functions that don't fall into any category.
554 * Alternate Interface:: Using Readline in a `callback' fashion.
555 * A Readline Example:: An example Readline function.
556 @end menu
557
558 @node Function Naming
559 @subsection Naming a Function
560
561 The user can dynamically change the bindings of keys while using
562 Readline. This is done by representing the function with a descriptive
563 name. The user is able to type the descriptive name when referring to
564 the function. Thus, in an init file, one might find
565
566 @example
567 Meta-Rubout: backward-kill-word
568 @end example
569
570 This binds the keystroke @key{Meta-Rubout} to the function
571 @emph{descriptively} named @code{backward-kill-word}. You, as the
572 programmer, should bind the functions you write to descriptive names as
573 well. Readline provides a function for doing that:
574
575 @deftypefun int rl_add_defun (const char *name, rl_command_func_t *function, int key)
576 Add @var{name} to the list of named functions. Make @var{function} be
577 the function that gets called. If @var{key} is not -1, then bind it to
578 @var{function} using @code{rl_bind_key()}.
579 @end deftypefun
580
581 Using this function alone is sufficient for most applications.
582 It is the recommended way to add a few functions to the default
583 functions that Readline has built in.
584 If you need to do something other than adding a function to Readline,
585 you may need to use the underlying functions described below.
586
587 @node Keymaps
588 @subsection Selecting a Keymap
589
590 Key bindings take place on a @dfn{keymap}. The keymap is the
591 association between the keys that the user types and the functions that
592 get run. You can make your own keymaps, copy existing keymaps, and tell
593 Readline which keymap to use.
594
595 @deftypefun Keymap rl_make_bare_keymap (void)
596 Returns a new, empty keymap. The space for the keymap is allocated with
597 @code{malloc()}; the caller should free it by calling
598 @code{rl_discard_keymap()} when done.
599 @end deftypefun
600
601 @deftypefun Keymap rl_copy_keymap (Keymap map)
602 Return a new keymap which is a copy of @var{map}.
603 @end deftypefun
604
605 @deftypefun Keymap rl_make_keymap (void)
606 Return a new keymap with the printing characters bound to rl_insert,
607 the lowercase Meta characters bound to run their equivalents, and
608 the Meta digits bound to produce numeric arguments.
609 @end deftypefun
610
611 @deftypefun void rl_discard_keymap (Keymap keymap)
612 Free the storage associated with @var{keymap}.
613 @end deftypefun
614
615 Readline has several internal keymaps. These functions allow you to
616 change which keymap is active.
617
618 @deftypefun Keymap rl_get_keymap (void)
619 Returns the currently active keymap.
620 @end deftypefun
621
622 @deftypefun void rl_set_keymap (Keymap keymap)
623 Makes @var{keymap} the currently active keymap.
624 @end deftypefun
625
626 @deftypefun Keymap rl_get_keymap_by_name (const char *name)
627 Return the keymap matching @var{name}. @var{name} is one which would
628 be supplied in a @code{set keymap} inputrc line (@pxref{Readline Init File}).
629 @end deftypefun
630
631 @deftypefun {char *} rl_get_keymap_name (Keymap keymap)
632 Return the name matching @var{keymap}. @var{name} is one which would
633 be supplied in a @code{set keymap} inputrc line (@pxref{Readline Init File}).
634 @end deftypefun
635
636 @node Binding Keys
637 @subsection Binding Keys
638
639 Key sequences are associate with functions through the keymap.
640 Readline has several internal keymaps: @code{emacs_standard_keymap},
641 @code{emacs_meta_keymap}, @code{emacs_ctlx_keymap},
642 @code{vi_movement_keymap}, and @code{vi_insertion_keymap}.
643 @code{emacs_standard_keymap} is the default, and the examples in
644 this manual assume that.
645
646 Since @code{readline()} installs a set of default key bindings the first
647 time it is called, there is always the danger that a custom binding
648 installed before the first call to @code{readline()} will be overridden.
649 An alternate mechanism is to install custom key bindings in an
650 initialization function assigned to the @code{rl_startup_hook} variable
651 (@pxref{Readline Variables}).
652
653 These functions manage key bindings.
654
655 @deftypefun int rl_bind_key (int key, rl_command_func_t *function)
656 Binds @var{key} to @var{function} in the currently active keymap.
657 Returns non-zero in the case of an invalid @var{key}.
658 @end deftypefun
659
660 @deftypefun int rl_bind_key_in_map (int key, rl_command_func_t *function, Keymap map)
661 Bind @var{key} to @var{function} in @var{map}.
662 Returns non-zero in the case of an invalid @var{key}.
663 @end deftypefun
664
665 @deftypefun int rl_bind_key_if_unbound (int key, rl_command_func_t *function)
666 Binds @var{key} to @var{function} if it is not already bound in the
667 currently active keymap.
668 Returns non-zero in the case of an invalid @var{key} or if @var{key} is
669 already bound.
670 @end deftypefun
671
672 @deftypefun int rl_bind_key_if_unbound_in_map (int key, rl_command_func_t *function, Keymap map)
673 Binds @var{key} to @var{function} if it is not already bound in @var{map}.
674 Returns non-zero in the case of an invalid @var{key} or if @var{key} is
675 already bound.
676 @end deftypefun
677
678 @deftypefun int rl_unbind_key (int key)
679 Bind @var{key} to the null function in the currently active keymap.
680 Returns non-zero in case of error.
681 @end deftypefun
682
683 @deftypefun int rl_unbind_key_in_map (int key, Keymap map)
684 Bind @var{key} to the null function in @var{map}.
685 Returns non-zero in case of error.
686 @end deftypefun
687
688 @deftypefun int rl_unbind_function_in_map (rl_command_func_t *function, Keymap map)
689 Unbind all keys that execute @var{function} in @var{map}.
690 @end deftypefun
691
692 @deftypefun int rl_unbind_command_in_map (const char *command, Keymap map)
693 Unbind all keys that are bound to @var{command} in @var{map}.
694 @end deftypefun
695
696 @deftypefun int rl_bind_keyseq (const char *keyseq, rl_command_func_t *function)
697 Bind the key sequence represented by the string @var{keyseq} to the function
698 @var{function}, beginning in the current keymap.
699 This makes new keymaps as necessary.
700 The return value is non-zero if @var{keyseq} is invalid.
701 @end deftypefun
702
703 @deftypefun int rl_bind_keyseq_in_map (const char *keyseq, rl_command_func_t *function, Keymap map)
704 Bind the key sequence represented by the string @var{keyseq} to the function
705 @var{function}. This makes new keymaps as necessary.
706 Initial bindings are performed in @var{map}.
707 The return value is non-zero if @var{keyseq} is invalid.
708 @end deftypefun
709
710 @deftypefun int rl_set_key (const char *keyseq, rl_command_func_t *function, Keymap map)
711 Equivalent to @code{rl_bind_keyseq_in_map}.
712 @end deftypefun
713
714 @deftypefun int rl_bind_keyseq_if_unbound (const char *keyseq, rl_command_func_t *function)
715 Binds @var{keyseq} to @var{function} if it is not already bound in the
716 currently active keymap.
717 Returns non-zero in the case of an invalid @var{keyseq} or if @var{keyseq} is
718 already bound.
719 @end deftypefun
720
721 @deftypefun int rl_bind_keyseq_if_unbound_in_map (const char *keyseq, rl_command_func_t *function, Keymap map)
722 Binds @var{keyseq} to @var{function} if it is not already bound in @var{map}.
723 Returns non-zero in the case of an invalid @var{keyseq} or if @var{keyseq} is
724 already bound.
725 @end deftypefun
726
727 @deftypefun int rl_generic_bind (int type, const char *keyseq, char *data, Keymap map)
728 Bind the key sequence represented by the string @var{keyseq} to the arbitrary
729 pointer @var{data}. @var{type} says what kind of data is pointed to by
730 @var{data}; this can be a function (@code{ISFUNC}), a macro
731 (@code{ISMACR}), or a keymap (@code{ISKMAP}). This makes new keymaps as
732 necessary. The initial keymap in which to do bindings is @var{map}.
733 @end deftypefun
734
735 @deftypefun int rl_parse_and_bind (char *line)
736 Parse @var{line} as if it had been read from the @code{inputrc} file and
737 perform any key bindings and variable assignments found
738 (@pxref{Readline Init File}).
739 @end deftypefun
740
741 @deftypefun int rl_read_init_file (const char *filename)
742 Read keybindings and variable assignments from @var{filename}
743 (@pxref{Readline Init File}).
744 @end deftypefun
745
746 @node Associating Function Names and Bindings
747 @subsection Associating Function Names and Bindings
748
749 These functions allow you to find out what keys invoke named functions
750 and the functions invoked by a particular key sequence. You may also
751 associate a new function name with an arbitrary function.
752
753 @deftypefun {rl_command_func_t *} rl_named_function (const char *name)
754 Return the function with name @var{name}.
755 @end deftypefun
756
757 @deftypefun {rl_command_func_t *} rl_function_of_keyseq (const char *keyseq, Keymap map, int *type)
758 Return the function invoked by @var{keyseq} in keymap @var{map}.
759 If @var{map} is @code{NULL}, the current keymap is used. If @var{type} is
760 not @code{NULL}, the type of the object is returned in the @code{int} variable
761 it points to (one of @code{ISFUNC}, @code{ISKMAP}, or @code{ISMACR}).
762 @end deftypefun
763
764 @deftypefun {char **} rl_invoking_keyseqs (rl_command_func_t *function)
765 Return an array of strings representing the key sequences used to
766 invoke @var{function} in the current keymap.
767 @end deftypefun
768
769 @deftypefun {char **} rl_invoking_keyseqs_in_map (rl_command_func_t *function, Keymap map)
770 Return an array of strings representing the key sequences used to
771 invoke @var{function} in the keymap @var{map}.
772 @end deftypefun
773
774 @deftypefun void rl_function_dumper (int readable)
775 Print the readline function names and the key sequences currently
776 bound to them to @code{rl_outstream}. If @var{readable} is non-zero,
777 the list is formatted in such a way that it can be made part of an
778 @code{inputrc} file and re-read.
779 @end deftypefun
780
781 @deftypefun void rl_list_funmap_names (void)
782 Print the names of all bindable Readline functions to @code{rl_outstream}.
783 @end deftypefun
784
785 @deftypefun {const char **} rl_funmap_names (void)
786 Return a NULL terminated array of known function names. The array is
787 sorted. The array itself is allocated, but not the strings inside. You
788 should @code{free()} the array when you are done, but not the pointers.
789 @end deftypefun
790
791 @deftypefun int rl_add_funmap_entry (const char *name, rl_command_func_t *function)
792 Add @var{name} to the list of bindable Readline command names, and make
793 @var{function} the function to be called when @var{name} is invoked.
794 @end deftypefun
795
796 @node Allowing Undoing
797 @subsection Allowing Undoing
798
799 Supporting the undo command is a painless thing, and makes your
800 functions much more useful. It is certainly easy to try
801 something if you know you can undo it.
802
803 If your function simply inserts text once, or deletes text once, and
804 uses @code{rl_insert_text()} or @code{rl_delete_text()} to do it, then
805 undoing is already done for you automatically.
806
807 If you do multiple insertions or multiple deletions, or any combination
808 of these operations, you should group them together into one operation.
809 This is done with @code{rl_begin_undo_group()} and
810 @code{rl_end_undo_group()}.
811
812 The types of events that can be undone are:
813
814 @smallexample
815 enum undo_code @{ UNDO_DELETE, UNDO_INSERT, UNDO_BEGIN, UNDO_END @};
816 @end smallexample
817
818 Notice that @code{UNDO_DELETE} means to insert some text, and
819 @code{UNDO_INSERT} means to delete some text. That is, the undo code
820 tells what to undo, not how to undo it. @code{UNDO_BEGIN} and
821 @code{UNDO_END} are tags added by @code{rl_begin_undo_group()} and
822 @code{rl_end_undo_group()}.
823
824 @deftypefun int rl_begin_undo_group (void)
825 Begins saving undo information in a group construct. The undo
826 information usually comes from calls to @code{rl_insert_text()} and
827 @code{rl_delete_text()}, but could be the result of calls to
828 @code{rl_add_undo()}.
829 @end deftypefun
830
831 @deftypefun int rl_end_undo_group (void)
832 Closes the current undo group started with @code{rl_begin_undo_group
833 ()}. There should be one call to @code{rl_end_undo_group()}
834 for each call to @code{rl_begin_undo_group()}.
835 @end deftypefun
836
837 @deftypefun void rl_add_undo (enum undo_code what, int start, int end, char *text)
838 Remember how to undo an event (according to @var{what}). The affected
839 text runs from @var{start} to @var{end}, and encompasses @var{text}.
840 @end deftypefun
841
842 @deftypefun void rl_free_undo_list (void)
843 Free the existing undo list.
844 @end deftypefun
845
846 @deftypefun int rl_do_undo (void)
847 Undo the first thing on the undo list. Returns @code{0} if there was
848 nothing to undo, non-zero if something was undone.
849 @end deftypefun
850
851 Finally, if you neither insert nor delete text, but directly modify the
852 existing text (e.g., change its case), call @code{rl_modifying()}
853 once, just before you modify the text. You must supply the indices of
854 the text range that you are going to modify.
855
856 @deftypefun int rl_modifying (int start, int end)
857 Tell Readline to save the text between @var{start} and @var{end} as a
858 single undo unit. It is assumed that you will subsequently modify
859 that text.
860 @end deftypefun
861
862 @node Redisplay
863 @subsection Redisplay
864
865 @deftypefun void rl_redisplay (void)
866 Change what's displayed on the screen to reflect the current contents
867 of @code{rl_line_buffer}.
868 @end deftypefun
869
870 @deftypefun int rl_forced_update_display (void)
871 Force the line to be updated and redisplayed, whether or not
872 Readline thinks the screen display is correct.
873 @end deftypefun
874
875 @deftypefun int rl_on_new_line (void)
876 Tell the update functions that we have moved onto a new (empty) line,
877 usually after ouputting a newline.
878 @end deftypefun
879
880 @deftypefun int rl_on_new_line_with_prompt (void)
881 Tell the update functions that we have moved onto a new line, with
882 @var{rl_prompt} already displayed.
883 This could be used by applications that want to output the prompt string
884 themselves, but still need Readline to know the prompt string length for
885 redisplay.
886 It should be used after setting @var{rl_already_prompted}.
887 @end deftypefun
888
889 @deftypefun int rl_reset_line_state (void)
890 Reset the display state to a clean state and redisplay the current line
891 starting on a new line.
892 @end deftypefun
893
894 @deftypefun int rl_crlf (void)
895 Move the cursor to the start of the next screen line.
896 @end deftypefun
897
898 @deftypefun int rl_show_char (int c)
899 Display character @var{c} on @code{rl_outstream}.
900 If Readline has not been set to display meta characters directly, this
901 will convert meta characters to a meta-prefixed key sequence.
902 This is intended for use by applications which wish to do their own
903 redisplay.
904 @end deftypefun
905
906 @deftypefun int rl_message (const char *, @dots{})
907 The arguments are a format string as would be supplied to @code{printf},
908 possibly containing conversion specifications such as @samp{%d}, and
909 any additional arguments necessary to satisfy the conversion specifications.
910 The resulting string is displayed in the @dfn{echo area}. The echo area
911 is also used to display numeric arguments and search strings.
912 @end deftypefun
913
914 @deftypefun int rl_clear_message (void)
915 Clear the message in the echo area.
916 @end deftypefun
917
918 @deftypefun void rl_save_prompt (void)
919 Save the local Readline prompt display state in preparation for
920 displaying a new message in the message area with @code{rl_message()}.
921 @end deftypefun
922
923 @deftypefun void rl_restore_prompt (void)
924 Restore the local Readline prompt display state saved by the most
925 recent call to @code{rl_save_prompt}.
926 @end deftypefun
927
928 @deftypefun int rl_expand_prompt (char *prompt)
929 Expand any special character sequences in @var{prompt} and set up the
930 local Readline prompt redisplay variables.
931 This function is called by @code{readline()}. It may also be called to
932 expand the primary prompt if the @code{rl_on_new_line_with_prompt()}
933 function or @code{rl_already_prompted} variable is used.
934 It returns the number of visible characters on the last line of the
935 (possibly multi-line) prompt.
936 @end deftypefun
937
938 @deftypefun int rl_set_prompt (const char *prompt)
939 Make Readline use @var{prompt} for subsequent redisplay. This calls
940 @code{rl_expand_prompt()} to expand the prompt and sets @code{rl_prompt}
941 to the result.
942 @end deftypefun
943
944 @node Modifying Text
945 @subsection Modifying Text
946
947 @deftypefun int rl_insert_text (const char *text)
948 Insert @var{text} into the line at the current cursor position.
949 Returns the number of characters inserted.
950 @end deftypefun
951
952 @deftypefun int rl_delete_text (int start, int end)
953 Delete the text between @var{start} and @var{end} in the current line.
954 Returns the number of characters deleted.
955 @end deftypefun
956
957 @deftypefun {char *} rl_copy_text (int start, int end)
958 Return a copy of the text between @var{start} and @var{end} in
959 the current line.
960 @end deftypefun
961
962 @deftypefun int rl_kill_text (int start, int end)
963 Copy the text between @var{start} and @var{end} in the current line
964 to the kill ring, appending or prepending to the last kill if the
965 last command was a kill command. The text is deleted.
966 If @var{start} is less than @var{end},
967 the text is appended, otherwise prepended. If the last command was
968 not a kill, a new kill ring slot is used.
969 @end deftypefun
970
971 @deftypefun int rl_push_macro_input (char *macro)
972 Cause @var{macro} to be inserted into the line, as if it had been invoked
973 by a key bound to a macro. Not especially useful; use
974 @code{rl_insert_text()} instead.
975 @end deftypefun
976
977 @node Character Input
978 @subsection Character Input
979
980 @deftypefun int rl_read_key (void)
981 Return the next character available from Readline's current input stream.
982 This handles input inserted into
983 the input stream via @var{rl_pending_input} (@pxref{Readline Variables})
984 and @code{rl_stuff_char()}, macros, and characters read from the keyboard.
985 While waiting for input, this function will call any function assigned to
986 the @code{rl_event_hook} variable.
987 @end deftypefun
988
989 @deftypefun int rl_getc (FILE *stream)
990 Return the next character available from @var{stream}, which is assumed to
991 be the keyboard.
992 @end deftypefun
993
994 @deftypefun int rl_stuff_char (int c)
995 Insert @var{c} into the Readline input stream. It will be "read"
996 before Readline attempts to read characters from the terminal with
997 @code{rl_read_key()}. Up to 512 characters may be pushed back.
998 @code{rl_stuff_char} returns 1 if the character was successfully inserted;
999 0 otherwise.
1000 @end deftypefun
1001
1002 @deftypefun int rl_execute_next (int c)
1003 Make @var{c} be the next command to be executed when @code{rl_read_key()}
1004 is called. This sets @var{rl_pending_input}.
1005 @end deftypefun
1006
1007 @deftypefun int rl_clear_pending_input (void)
1008 Unset @var{rl_pending_input}, effectively negating the effect of any
1009 previous call to @code{rl_execute_next()}. This works only if the
1010 pending input has not already been read with @code{rl_read_key()}.
1011 @end deftypefun
1012
1013 @deftypefun int rl_set_keyboard_input_timeout (int u)
1014 While waiting for keyboard input in @code{rl_read_key()}, Readline will
1015 wait for @var{u} microseconds for input before calling any function
1016 assigned to @code{rl_event_hook}. The default waiting period is
1017 one-tenth of a second. Returns the old timeout value.
1018 @end deftypefun
1019
1020 @node Terminal Management
1021 @subsection Terminal Management
1022
1023 @deftypefun void rl_prep_terminal (int meta_flag)
1024 Modify the terminal settings for Readline's use, so @code{readline()}
1025 can read a single character at a time from the keyboard.
1026 The @var{meta_flag} argument should be non-zero if Readline should
1027 read eight-bit input.
1028 @end deftypefun
1029
1030 @deftypefun void rl_deprep_terminal (void)
1031 Undo the effects of @code{rl_prep_terminal()}, leaving the terminal in
1032 the state in which it was before the most recent call to
1033 @code{rl_prep_terminal()}.
1034 @end deftypefun
1035
1036 @deftypefun void rl_tty_set_default_bindings (Keymap kmap)
1037 Read the operating system's terminal editing characters (as would be
1038 displayed by @code{stty}) to their Readline equivalents.
1039 The bindings are performed in @var{kmap}.
1040 @end deftypefun
1041
1042 @deftypefun void rl_tty_unset_default_bindings (Keymap kmap)
1043 Reset the bindings manipulated by @code{rl_tty_set_default_bindings} so
1044 that the terminal editing characters are bound to @code{rl_insert}.
1045 The bindings are performed in @var{kmap}.
1046 @end deftypefun
1047
1048 @deftypefun int rl_reset_terminal (const char *terminal_name)
1049 Reinitialize Readline's idea of the terminal settings using
1050 @var{terminal_name} as the terminal type (e.g., @code{vt100}).
1051 If @var{terminal_name} is @code{NULL}, the value of the @code{TERM}
1052 environment variable is used.
1053 @end deftypefun
1054
1055 @node Utility Functions
1056 @subsection Utility Functions
1057
1058 @deftypefun void rl_replace_line (const char *text, int clear_undo)
1059 Replace the contents of @code{rl_line_buffer} with @var{text}.
1060 The point and mark are preserved, if possible.
1061 If @var{clear_undo} is non-zero, the undo list associated with the
1062 current line is cleared.
1063 @end deftypefun
1064
1065 @deftypefun int rl_extend_line_buffer (int len)
1066 Ensure that @code{rl_line_buffer} has enough space to hold @var{len}
1067 characters, possibly reallocating it if necessary.
1068 @end deftypefun
1069
1070 @deftypefun int rl_initialize (void)
1071 Initialize or re-initialize Readline's internal state.
1072 It's not strictly necessary to call this; @code{readline()} calls it before
1073 reading any input.
1074 @end deftypefun
1075
1076 @deftypefun int rl_ding (void)
1077 Ring the terminal bell, obeying the setting of @code{bell-style}.
1078 @end deftypefun
1079
1080 @deftypefun int rl_alphabetic (int c)
1081 Return 1 if @var{c} is an alphabetic character.
1082 @end deftypefun
1083
1084 @deftypefun void rl_display_match_list (char **matches, int len, int max)
1085 A convenience function for displaying a list of strings in
1086 columnar format on Readline's output stream. @code{matches} is the list
1087 of strings, in argv format, such as a list of completion matches.
1088 @code{len} is the number of strings in @code{matches}, and @code{max}
1089 is the length of the longest string in @code{matches}. This function uses
1090 the setting of @code{print-completions-horizontally} to select how the
1091 matches are displayed (@pxref{Readline Init File Syntax}).
1092 @end deftypefun
1093
1094 The following are implemented as macros, defined in @code{chardefs.h}.
1095 Applications should refrain from using them.
1096
1097 @deftypefun int _rl_uppercase_p (int c)
1098 Return 1 if @var{c} is an uppercase alphabetic character.
1099 @end deftypefun
1100
1101 @deftypefun int _rl_lowercase_p (int c)
1102 Return 1 if @var{c} is a lowercase alphabetic character.
1103 @end deftypefun
1104
1105 @deftypefun int _rl_digit_p (int c)
1106 Return 1 if @var{c} is a numeric character.
1107 @end deftypefun
1108
1109 @deftypefun int _rl_to_upper (int c)
1110 If @var{c} is a lowercase alphabetic character, return the corresponding
1111 uppercase character.
1112 @end deftypefun
1113
1114 @deftypefun int _rl_to_lower (int c)
1115 If @var{c} is an uppercase alphabetic character, return the corresponding
1116 lowercase character.
1117 @end deftypefun
1118
1119 @deftypefun int _rl_digit_value (int c)
1120 If @var{c} is a number, return the value it represents.
1121 @end deftypefun
1122
1123 @node Miscellaneous Functions
1124 @subsection Miscellaneous Functions
1125
1126 @deftypefun int rl_macro_bind (const char *keyseq, const char *macro, Keymap map)
1127 Bind the key sequence @var{keyseq} to invoke the macro @var{macro}.
1128 The binding is performed in @var{map}. When @var{keyseq} is invoked, the
1129 @var{macro} will be inserted into the line. This function is deprecated;
1130 use @code{rl_generic_bind()} instead.
1131 @end deftypefun
1132
1133 @deftypefun void rl_macro_dumper (int readable)
1134 Print the key sequences bound to macros and their values, using
1135 the current keymap, to @code{rl_outstream}.
1136 If @var{readable} is non-zero, the list is formatted in such a way
1137 that it can be made part of an @code{inputrc} file and re-read.
1138 @end deftypefun
1139
1140 @deftypefun int rl_variable_bind (const char *variable, const char *value)
1141 Make the Readline variable @var{variable} have @var{value}.
1142 This behaves as if the readline command
1143 @samp{set @var{variable} @var{value}} had been executed in an @code{inputrc}
1144 file (@pxref{Readline Init File Syntax}).
1145 @end deftypefun
1146
1147 @deftypefun void rl_variable_dumper (int readable)
1148 Print the readline variable names and their current values
1149 to @code{rl_outstream}.
1150 If @var{readable} is non-zero, the list is formatted in such a way
1151 that it can be made part of an @code{inputrc} file and re-read.
1152 @end deftypefun
1153
1154 @deftypefun int rl_set_paren_blink_timeout (int u)
1155 Set the time interval (in microseconds) that Readline waits when showing
1156 a balancing character when @code{blink-matching-paren} has been enabled.
1157 @end deftypefun
1158
1159 @deftypefun {char *} rl_get_termcap (const char *cap)
1160 Retrieve the string value of the termcap capability @var{cap}.
1161 Readline fetches the termcap entry for the current terminal name and
1162 uses those capabilities to move around the screen line and perform other
1163 terminal-specific operations, like erasing a line. Readline does not
1164 use all of a terminal's capabilities, and this function will return
1165 values for only those capabilities Readline uses.
1166 @end deftypefun
1167
1168 @node Alternate Interface
1169 @subsection Alternate Interface
1170
1171 An alternate interface is available to plain @code{readline()}. Some
1172 applications need to interleave keyboard I/O with file, device, or
1173 window system I/O, typically by using a main loop to @code{select()}
1174 on various file descriptors. To accomodate this need, readline can
1175 also be invoked as a `callback' function from an event loop. There
1176 are functions available to make this easy.
1177
1178 @deftypefun void rl_callback_handler_install (const char *prompt, rl_vcpfunc_t *lhandler)
1179 Set up the terminal for readline I/O and display the initial
1180 expanded value of @var{prompt}. Save the value of @var{lhandler} to
1181 use as a function to call when a complete line of input has been entered.
1182 The function takes the text of the line as an argument.
1183 @end deftypefun
1184
1185 @deftypefun void rl_callback_read_char (void)
1186 Whenever an application determines that keyboard input is available, it
1187 should call @code{rl_callback_read_char()}, which will read the next
1188 character from the current input source.
1189 If that character completes the line, @code{rl_callback_read_char} will
1190 invoke the @var{lhandler} function saved by @code{rl_callback_handler_install}
1191 to process the line.
1192 Before calling the @var{lhandler} function, the terminal settings are
1193 reset to the values they had before calling
1194 @code{rl_callback_handler_install}.
1195 If the @var{lhandler} function returns,
1196 the terminal settings are modified for Readline's use again.
1197 @code{EOF} is indicated by calling @var{lhandler} with a
1198 @code{NULL} line.
1199 @end deftypefun
1200
1201 @deftypefun void rl_callback_handler_remove (void)
1202 Restore the terminal to its initial state and remove the line handler.
1203 This may be called from within a callback as well as independently.
1204 If the @var{lhandler} installed by @code{rl_callback_handler_install}
1205 does not exit the program, either this function or the function referred
1206 to by the value of @code{rl_deprep_term_function} should be called before
1207 the program exits to reset the terminal settings.
1208 @end deftypefun
1209
1210 @node A Readline Example
1211 @subsection A Readline Example
1212
1213 Here is a function which changes lowercase characters to their uppercase
1214 equivalents, and uppercase characters to lowercase. If
1215 this function was bound to @samp{M-c}, then typing @samp{M-c} would
1216 change the case of the character under point. Typing @samp{M-1 0 M-c}
1217 would change the case of the following 10 characters, leaving the cursor on
1218 the last character changed.
1219
1220 @example
1221 /* Invert the case of the COUNT following characters. */
1222 int
1223 invert_case_line (count, key)
1224 int count, key;
1225 @{
1226 register int start, end, i;
1227
1228 start = rl_point;
1229
1230 if (rl_point >= rl_end)
1231 return (0);
1232
1233 if (count < 0)
1234 @{
1235 direction = -1;
1236 count = -count;
1237 @}
1238 else
1239 direction = 1;
1240
1241 /* Find the end of the range to modify. */
1242 end = start + (count * direction);
1243
1244 /* Force it to be within range. */
1245 if (end > rl_end)
1246 end = rl_end;
1247 else if (end < 0)
1248 end = 0;
1249
1250 if (start == end)
1251 return (0);
1252
1253 if (start > end)
1254 @{
1255 int temp = start;
1256 start = end;
1257 end = temp;
1258 @}
1259
1260 /* Tell readline that we are modifying the line,
1261 so it will save the undo information. */
1262 rl_modifying (start, end);
1263
1264 for (i = start; i != end; i++)
1265 @{
1266 if (_rl_uppercase_p (rl_line_buffer[i]))
1267 rl_line_buffer[i] = _rl_to_lower (rl_line_buffer[i]);
1268 else if (_rl_lowercase_p (rl_line_buffer[i]))
1269 rl_line_buffer[i] = _rl_to_upper (rl_line_buffer[i]);
1270 @}
1271 /* Move point to on top of the last character changed. */
1272 rl_point = (direction == 1) ? end - 1 : start;
1273 return (0);
1274 @}
1275 @end example
1276
1277 @node Readline Signal Handling
1278 @section Readline Signal Handling
1279
1280 Signals are asynchronous events sent to a process by the Unix kernel,
1281 sometimes on behalf of another process. They are intended to indicate
1282 exceptional events, like a user pressing the interrupt key on his terminal,
1283 or a network connection being broken. There is a class of signals that can
1284 be sent to the process currently reading input from the keyboard. Since
1285 Readline changes the terminal attributes when it is called, it needs to
1286 perform special processing when such a signal is received in order to
1287 restore the terminal to a sane state, or provide application writers with
1288 functions to do so manually.
1289
1290 Readline contains an internal signal handler that is installed for a
1291 number of signals (@code{SIGINT}, @code{SIGQUIT}, @code{SIGTERM},
1292 @code{SIGALRM}, @code{SIGTSTP}, @code{SIGTTIN}, and @code{SIGTTOU}).
1293 When one of these signals is received, the signal handler
1294 will reset the terminal attributes to those that were in effect before
1295 @code{readline()} was called, reset the signal handling to what it was
1296 before @code{readline()} was called, and resend the signal to the calling
1297 application.
1298 If and when the calling application's signal handler returns, Readline
1299 will reinitialize the terminal and continue to accept input.
1300 When a @code{SIGINT} is received, the Readline signal handler performs
1301 some additional work, which will cause any partially-entered line to be
1302 aborted (see the description of @code{rl_free_line_state()} below).
1303
1304 There is an additional Readline signal handler, for @code{SIGWINCH}, which
1305 the kernel sends to a process whenever the terminal's size changes (for
1306 example, if a user resizes an @code{xterm}). The Readline @code{SIGWINCH}
1307 handler updates Readline's internal screen size information, and then calls
1308 any @code{SIGWINCH} signal handler the calling application has installed.
1309 Readline calls the application's @code{SIGWINCH} signal handler without
1310 resetting the terminal to its original state. If the application's signal
1311 handler does more than update its idea of the terminal size and return (for
1312 example, a @code{longjmp} back to a main processing loop), it @emph{must}
1313 call @code{rl_cleanup_after_signal()} (described below), to restore the
1314 terminal state.
1315
1316 Readline provides two variables that allow application writers to
1317 control whether or not it will catch certain signals and act on them
1318 when they are received. It is important that applications change the
1319 values of these variables only when calling @code{readline()}, not in
1320 a signal handler, so Readline's internal signal state is not corrupted.
1321
1322 @deftypevar int rl_catch_signals
1323 If this variable is non-zero, Readline will install signal handlers for
1324 @code{SIGINT}, @code{SIGQUIT}, @code{SIGTERM}, @code{SIGALRM},
1325 @code{SIGTSTP}, @code{SIGTTIN}, and @code{SIGTTOU}.
1326
1327 The default value of @code{rl_catch_signals} is 1.
1328 @end deftypevar
1329
1330 @deftypevar int rl_catch_sigwinch
1331 If this variable is non-zero, Readline will install a signal handler for
1332 @code{SIGWINCH}.
1333
1334 The default value of @code{rl_catch_sigwinch} is 1.
1335 @end deftypevar
1336
1337 If an application does not wish to have Readline catch any signals, or
1338 to handle signals other than those Readline catches (@code{SIGHUP},
1339 for example),
1340 Readline provides convenience functions to do the necessary terminal
1341 and internal state cleanup upon receipt of a signal.
1342
1343 @deftypefun void rl_cleanup_after_signal (void)
1344 This function will reset the state of the terminal to what it was before
1345 @code{readline()} was called, and remove the Readline signal handlers for
1346 all signals, depending on the values of @code{rl_catch_signals} and
1347 @code{rl_catch_sigwinch}.
1348 @end deftypefun
1349
1350 @deftypefun void rl_free_line_state (void)
1351 This will free any partial state associated with the current input line
1352 (undo information, any partial history entry, any partially-entered
1353 keyboard macro, and any partially-entered numeric argument). This
1354 should be called before @code{rl_cleanup_after_signal()}. The
1355 Readline signal handler for @code{SIGINT} calls this to abort the
1356 current input line.
1357 @end deftypefun
1358
1359 @deftypefun void rl_reset_after_signal (void)
1360 This will reinitialize the terminal and reinstall any Readline signal
1361 handlers, depending on the values of @code{rl_catch_signals} and
1362 @code{rl_catch_sigwinch}.
1363 @end deftypefun
1364
1365 If an application does not wish Readline to catch @code{SIGWINCH}, it may
1366 call @code{rl_resize_terminal()} or @code{rl_set_screen_size()} to force
1367 Readline to update its idea of the terminal size when a @code{SIGWINCH}
1368 is received.
1369
1370 @deftypefun void rl_resize_terminal (void)
1371 Update Readline's internal screen size by reading values from the kernel.
1372 @end deftypefun
1373
1374 @deftypefun void rl_set_screen_size (int rows, int cols)
1375 Set Readline's idea of the terminal size to @var{rows} rows and
1376 @var{cols} columns.
1377 @end deftypefun
1378
1379 If an application does not want to install a @code{SIGWINCH} handler, but
1380 is still interested in the screen dimensions, Readline's idea of the screen
1381 size may be queried.
1382
1383 @deftypefun void rl_get_screen_size (int *rows, int *cols)
1384 Return Readline's idea of the terminal's size in the
1385 variables pointed to by the arguments.
1386 @end deftypefun
1387
1388 The following functions install and remove Readline's signal handlers.
1389
1390 @deftypefun int rl_set_signals (void)
1391 Install Readline's signal handler for @code{SIGINT}, @code{SIGQUIT},
1392 @code{SIGTERM}, @code{SIGALRM}, @code{SIGTSTP}, @code{SIGTTIN},
1393 @code{SIGTTOU}, and @code{SIGWINCH}, depending on the values of
1394 @code{rl_catch_signals} and @code{rl_catch_sigwinch}.
1395 @end deftypefun
1396
1397 @deftypefun int rl_clear_signals (void)
1398 Remove all of the Readline signal handlers installed by
1399 @code{rl_set_signals()}.
1400 @end deftypefun
1401
1402 @node Custom Completers
1403 @section Custom Completers
1404 @cindex application-specific completion functions
1405
1406 Typically, a program that reads commands from the user has a way of
1407 disambiguating commands and data. If your program is one of these, then
1408 it can provide completion for commands, data, or both.
1409 The following sections describe how your program and Readline
1410 cooperate to provide this service.
1411
1412 @menu
1413 * How Completing Works:: The logic used to do completion.
1414 * Completion Functions:: Functions provided by Readline.
1415 * Completion Variables:: Variables which control completion.
1416 * A Short Completion Example:: An example of writing completer subroutines.
1417 @end menu
1418
1419 @node How Completing Works
1420 @subsection How Completing Works
1421
1422 In order to complete some text, the full list of possible completions
1423 must be available. That is, it is not possible to accurately
1424 expand a partial word without knowing all of the possible words
1425 which make sense in that context. The Readline library provides
1426 the user interface to completion, and two of the most common
1427 completion functions: filename and username. For completing other types
1428 of text, you must write your own completion function. This section
1429 describes exactly what such functions must do, and provides an example.
1430
1431 There are three major functions used to perform completion:
1432
1433 @enumerate
1434 @item
1435 The user-interface function @code{rl_complete()}. This function is
1436 called with the same arguments as other bindable Readline functions:
1437 @var{count} and @var{invoking_key}.
1438 It isolates the word to be completed and calls
1439 @code{rl_completion_matches()} to generate a list of possible completions.
1440 It then either lists the possible completions, inserts the possible
1441 completions, or actually performs the
1442 completion, depending on which behavior is desired.
1443
1444 @item
1445 The internal function @code{rl_completion_matches()} uses an
1446 application-supplied @dfn{generator} function to generate the list of
1447 possible matches, and then returns the array of these matches.
1448 The caller should place the address of its generator function in
1449 @code{rl_completion_entry_function}.
1450
1451 @item
1452 The generator function is called repeatedly from
1453 @code{rl_completion_matches()}, returning a string each time. The
1454 arguments to the generator function are @var{text} and @var{state}.
1455 @var{text} is the partial word to be completed. @var{state} is zero the
1456 first time the function is called, allowing the generator to perform
1457 any necessary initialization, and a positive non-zero integer for
1458 each subsequent call. The generator function returns
1459 @code{(char *)NULL} to inform @code{rl_completion_matches()} that there are
1460 no more possibilities left. Usually the generator function computes the
1461 list of possible completions when @var{state} is zero, and returns them
1462 one at a time on subsequent calls. Each string the generator function
1463 returns as a match must be allocated with @code{malloc()}; Readline
1464 frees the strings when it has finished with them.
1465 Such a generator function is referred to as an
1466 @dfn{application-specific completion function}.
1467
1468 @end enumerate
1469
1470 @deftypefun int rl_complete (int ignore, int invoking_key)
1471 Complete the word at or before point. You have supplied the function
1472 that does the initial simple matching selection algorithm (see
1473 @code{rl_completion_matches()}). The default is to do filename completion.
1474 @end deftypefun
1475
1476 @deftypevar {rl_compentry_func_t *} rl_completion_entry_function
1477 This is a pointer to the generator function for
1478 @code{rl_completion_matches()}.
1479 If the value of @code{rl_completion_entry_function} is
1480 @code{NULL} then the default filename generator
1481 function, @code{rl_filename_completion_function()}, is used.
1482 An @dfn{application-specific completion function} is a function whose
1483 address is assigned to @code{rl_completion_entry_function} and whose
1484 return values are used to generate possible completions.
1485 @end deftypevar
1486
1487 @node Completion Functions
1488 @subsection Completion Functions
1489
1490 Here is the complete list of callable completion functions present in
1491 Readline.
1492
1493 @deftypefun int rl_complete_internal (int what_to_do)
1494 Complete the word at or before point. @var{what_to_do} says what to do
1495 with the completion. A value of @samp{?} means list the possible
1496 completions. @samp{TAB} means do standard completion. @samp{*} means
1497 insert all of the possible completions. @samp{!} means to display
1498 all of the possible completions, if there is more than one, as well as
1499 performing partial completion. @samp{@@} is similar to @samp{!}, but
1500 possible completions are not listed if the possible completions share
1501 a common prefix.
1502 @end deftypefun
1503
1504 @deftypefun int rl_complete (int ignore, int invoking_key)
1505 Complete the word at or before point. You have supplied the function
1506 that does the initial simple matching selection algorithm (see
1507 @code{rl_completion_matches()} and @code{rl_completion_entry_function}).
1508 The default is to do filename
1509 completion. This calls @code{rl_complete_internal()} with an
1510 argument depending on @var{invoking_key}.
1511 @end deftypefun
1512
1513 @deftypefun int rl_possible_completions (int count, int invoking_key)
1514 List the possible completions. See description of @code{rl_complete
1515 ()}. This calls @code{rl_complete_internal()} with an argument of
1516 @samp{?}.
1517 @end deftypefun
1518
1519 @deftypefun int rl_insert_completions (int count, int invoking_key)
1520 Insert the list of possible completions into the line, deleting the
1521 partially-completed word. See description of @code{rl_complete()}.
1522 This calls @code{rl_complete_internal()} with an argument of @samp{*}.
1523 @end deftypefun
1524
1525 @deftypefun int rl_completion_mode (rl_command_func_t *cfunc)
1526 Returns the apppriate value to pass to @code{rl_complete_internal()}
1527 depending on whether @var{cfunc} was called twice in succession and
1528 the values of the @code{show-all-if-ambiguous} and
1529 @code{show-all-if-unmodified} variables.
1530 Application-specific completion functions may use this function to present
1531 the same interface as @code{rl_complete()}.
1532 @end deftypefun
1533
1534 @deftypefun {char **} rl_completion_matches (const char *text, rl_compentry_func_t *entry_func)
1535 Returns an array of strings which is a list of completions for
1536 @var{text}. If there are no completions, returns @code{NULL}.
1537 The first entry in the returned array is the substitution for @var{text}.
1538 The remaining entries are the possible completions. The array is
1539 terminated with a @code{NULL} pointer.
1540
1541 @var{entry_func} is a function of two args, and returns a
1542 @code{char *}. The first argument is @var{text}. The second is a
1543 state argument; it is zero on the first call, and non-zero on subsequent
1544 calls. @var{entry_func} returns a @code{NULL} pointer to the caller
1545 when there are no more matches.
1546 @end deftypefun
1547
1548 @deftypefun {char *} rl_filename_completion_function (const char *text, int state)
1549 A generator function for filename completion in the general case.
1550 @var{text} is a partial filename.
1551 The Bash source is a useful reference for writing application-specific
1552 completion functions (the Bash completion functions call this and other
1553 Readline functions).
1554 @end deftypefun
1555
1556 @deftypefun {char *} rl_username_completion_function (const char *text, int state)
1557 A completion generator for usernames. @var{text} contains a partial
1558 username preceded by a random character (usually @samp{~}). As with all
1559 completion generators, @var{state} is zero on the first call and non-zero
1560 for subsequent calls.
1561 @end deftypefun
1562
1563 @node Completion Variables
1564 @subsection Completion Variables
1565
1566 @deftypevar {rl_compentry_func_t *} rl_completion_entry_function
1567 A pointer to the generator function for @code{rl_completion_matches()}.
1568 @code{NULL} means to use @code{rl_filename_completion_function()},
1569 the default filename completer.
1570 @end deftypevar
1571
1572 @deftypevar {rl_completion_func_t *} rl_attempted_completion_function
1573 A pointer to an alternative function to create matches.
1574 The function is called with @var{text}, @var{start}, and @var{end}.
1575 @var{start} and @var{end} are indices in @code{rl_line_buffer} defining
1576 the boundaries of @var{text}, which is a character string.
1577 If this function exists and returns @code{NULL}, or if this variable is
1578 set to @code{NULL}, then @code{rl_complete()} will call the value of
1579 @code{rl_completion_entry_function} to generate matches, otherwise the
1580 array of strings returned will be used.
1581 If this function sets the @code{rl_attempted_completion_over}
1582 variable to a non-zero value, Readline will not perform its default
1583 completion even if this function returns no matches.
1584 @end deftypevar
1585
1586 @deftypevar {rl_quote_func_t *} rl_filename_quoting_function
1587 A pointer to a function that will quote a filename in an
1588 application-specific fashion. This is called if filename completion is being
1589 attempted and one of the characters in @code{rl_filename_quote_characters}
1590 appears in a completed filename. The function is called with
1591 @var{text}, @var{match_type}, and @var{quote_pointer}. The @var{text}
1592 is the filename to be quoted. The @var{match_type} is either
1593 @code{SINGLE_MATCH}, if there is only one completion match, or
1594 @code{MULT_MATCH}. Some functions use this to decide whether or not to
1595 insert a closing quote character. The @var{quote_pointer} is a pointer
1596 to any opening quote character the user typed. Some functions choose
1597 to reset this character.
1598 @end deftypevar
1599
1600 @deftypevar {rl_dequote_func_t *} rl_filename_dequoting_function
1601 A pointer to a function that will remove application-specific quoting
1602 characters from a filename before completion is attempted, so those
1603 characters do not interfere with matching the text against names in
1604 the filesystem. It is called with @var{text}, the text of the word
1605 to be dequoted, and @var{quote_char}, which is the quoting character
1606 that delimits the filename (usually @samp{'} or @samp{"}). If
1607 @var{quote_char} is zero, the filename was not in an embedded string.
1608 @end deftypevar
1609
1610 @deftypevar {rl_linebuf_func_t *} rl_char_is_quoted_p
1611 A pointer to a function to call that determines whether or not a specific
1612 character in the line buffer is quoted, according to whatever quoting
1613 mechanism the program calling Readline uses. The function is called with
1614 two arguments: @var{text}, the text of the line, and @var{index}, the
1615 index of the character in the line. It is used to decide whether a
1616 character found in @code{rl_completer_word_break_characters} should be
1617 used to break words for the completer.
1618 @end deftypevar
1619
1620 @deftypevar {rl_compignore_func_t *} rl_ignore_some_completions_function
1621 This function, if defined, is called by the completer when real filename
1622 completion is done, after all the matching names have been generated.
1623 It is passed a @code{NULL} terminated array of matches.
1624 The first element (@code{matches[0]}) is the
1625 maximal substring common to all matches. This function can
1626 re-arrange the list of matches as required, but each element deleted
1627 from the array must be freed.
1628 @end deftypevar
1629
1630 @deftypevar {rl_icppfunc_t *} rl_directory_completion_hook
1631 This function, if defined, is allowed to modify the directory portion
1632 of filenames Readline completes. It is called with the address of a
1633 string (the current directory name) as an argument, and may modify that string.
1634 If the string is replaced with a new string, the old value should be freed.
1635 Any modified directory name should have a trailing slash.
1636 The modified value will be displayed as part of the completion, replacing
1637 the directory portion of the pathname the user typed.
1638 It returns an integer that should be non-zero if the function modifies
1639 its directory argument.
1640 It could be used to expand symbolic links or shell variables in pathnames.
1641 @end deftypevar
1642
1643 @deftypevar {rl_compdisp_func_t *} rl_completion_display_matches_hook
1644 If non-zero, then this is the address of a function to call when
1645 completing a word would normally display the list of possible matches.
1646 This function is called in lieu of Readline displaying the list.
1647 It takes three arguments:
1648 (@code{char **}@var{matches}, @code{int} @var{num_matches}, @code{int} @var{max_length})
1649 where @var{matches} is the array of matching strings,
1650 @var{num_matches} is the number of strings in that array, and
1651 @var{max_length} is the length of the longest string in that array.
1652 Readline provides a convenience function, @code{rl_display_match_list},
1653 that takes care of doing the display to Readline's output stream. That
1654 function may be called from this hook.
1655 @end deftypevar
1656
1657 @deftypevar {const char *} rl_basic_word_break_characters
1658 The basic list of characters that signal a break between words for the
1659 completer routine. The default value of this variable is the characters
1660 which break words for completion in Bash:
1661 @code{" \t\n\"\\'`@@$><=;|&@{("}.
1662 @end deftypevar
1663
1664 @deftypevar {const char *} rl_basic_quote_characters
1665 A list of quote characters which can cause a word break.
1666 @end deftypevar
1667
1668 @deftypevar {const char *} rl_completer_word_break_characters
1669 The list of characters that signal a break between words for
1670 @code{rl_complete_internal()}. The default list is the value of
1671 @code{rl_basic_word_break_characters}.
1672 @end deftypevar
1673
1674 @deftypevar {const char *} rl_completer_quote_characters
1675 A list of characters which can be used to quote a substring of the line.
1676 Completion occurs on the entire substring, and within the substring
1677 @code{rl_completer_word_break_characters} are treated as any other character,
1678 unless they also appear within this list.
1679 @end deftypevar
1680
1681 @deftypevar {const char *} rl_filename_quote_characters
1682 A list of characters that cause a filename to be quoted by the completer
1683 when they appear in a completed filename. The default is the null string.
1684 @end deftypevar
1685
1686 @deftypevar {const char *} rl_special_prefixes
1687 The list of characters that are word break characters, but should be
1688 left in @var{text} when it is passed to the completion function.
1689 Programs can use this to help determine what kind of completing to do.
1690 For instance, Bash sets this variable to "$@@" so that it can complete
1691 shell variables and hostnames.
1692 @end deftypevar
1693
1694 @deftypevar int rl_completion_query_items
1695 Up to this many items will be displayed in response to a
1696 possible-completions call. After that, we ask the user if she is sure
1697 she wants to see them all. The default value is 100.
1698 @end deftypevar
1699
1700 @deftypevar {int} rl_completion_append_character
1701 When a single completion alternative matches at the end of the command
1702 line, this character is appended to the inserted completion text. The
1703 default is a space character (@samp{ }). Setting this to the null
1704 character (@samp{\0}) prevents anything being appended automatically.
1705 This can be changed in application-specific completion functions to
1706 provide the ``most sensible word separator character'' according to
1707 an application-specific command line syntax specification.
1708 @end deftypevar
1709
1710 @deftypevar int rl_completion_suppress_append
1711 If non-zero, @var{rl_completion_append_character} is not appended to
1712 matches at the end of the command line, as described above.
1713 It is set to 0 before any application-specific completion function
1714 is called, and may only be changed within such a function.
1715 @end deftypevar
1716
1717 @deftypevar int rl_completion_quote_character
1718 When Readline is completing quoted text, as delimited by one of the
1719 characters in @var{rl_completer_quote_characters}, it sets this variable
1720 to the quoting character found.
1721 This is set before any application-specific completion function is called.
1722 @end deftypevar
1723
1724 @deftypevar int rl_completion_suppress_quote
1725 If non-zero, Readline does not append a matching quote character when
1726 performing completion on a quoted string.
1727 It is set to 0 before any application-specific completion function
1728 is called, and may only be changed within such a function.
1729 @end deftypevar
1730
1731 @deftypevar int rl_completion_mark_symlink_dirs
1732 If non-zero, a slash will be appended to completed filenames that are
1733 symbolic links to directory names, subject to the value of the
1734 user-settable @var{mark-directories} variable.
1735 This variable exists so that application-specific completion functions
1736 can override the user's global preference (set via the
1737 @var{mark-symlinked-directories} Readline variable) if appropriate.
1738 This variable is set to the user's preference before any
1739 application-specific completion function is called, so unless that
1740 function modifies the value, the user's preferences are honored.
1741 @end deftypevar
1742
1743 @deftypevar int rl_ignore_completion_duplicates
1744 If non-zero, then duplicates in the matches are removed.
1745 The default is 1.
1746 @end deftypevar
1747
1748 @deftypevar int rl_filename_completion_desired
1749 Non-zero means that the results of the matches are to be treated as
1750 filenames. This is @emph{always} zero when completion is attempted,
1751 and can only be changed
1752 within an application-specific completion function. If it is set to a
1753 non-zero value by such a function, directory names have a slash appended
1754 and Readline attempts to quote completed filenames if they contain any
1755 characters in @code{rl_filename_quote_characters} and
1756 @code{rl_filename_quoting_desired} is set to a non-zero value.
1757 @end deftypevar
1758
1759 @deftypevar int rl_filename_quoting_desired
1760 Non-zero means that the results of the matches are to be quoted using
1761 double quotes (or an application-specific quoting mechanism) if the
1762 completed filename contains any characters in
1763 @code{rl_filename_quote_chars}. This is @emph{always} non-zero
1764 when completion is attempted, and can only be changed within an
1765 application-specific completion function.
1766 The quoting is effected via a call to the function pointed to
1767 by @code{rl_filename_quoting_function}.
1768 @end deftypevar
1769
1770 @deftypevar int rl_attempted_completion_over
1771 If an application-specific completion function assigned to
1772 @code{rl_attempted_completion_function} sets this variable to a non-zero
1773 value, Readline will not perform its default filename completion even
1774 if the application's completion function returns no matches.
1775 It should be set only by an application's completion function.
1776 @end deftypevar
1777
1778 @deftypevar int rl_completion_type
1779 Set to a character describing the type of completion Readline is currently
1780 attempting; see the description of @code{rl_complete_internal()}
1781 (@pxref{Completion Functions}) for the list of characters.
1782 This is set to the appropriate value before any application-specific
1783 completion function is called, allowing such functions to present
1784 the same interface as @code{rl_complete()}.
1785 @end deftypevar
1786
1787 @deftypevar int rl_inhibit_completion
1788 If this variable is non-zero, completion is inhibited. The completion
1789 character will be inserted as any other bound to @code{self-insert}.
1790 @end deftypevar
1791
1792 @node A Short Completion Example
1793 @subsection A Short Completion Example
1794
1795 Here is a small application demonstrating the use of the GNU Readline
1796 library. It is called @code{fileman}, and the source code resides in
1797 @file{examples/fileman.c}. This sample application provides
1798 completion of command names, line editing features, and access to the
1799 history list.
1800
1801 @page
1802 @smallexample
1803 /* fileman.c -- A tiny application which demonstrates how to use the
1804 GNU Readline library. This application interactively allows users
1805 to manipulate files and their modes. */
1806
1807 #include <stdio.h>
1808 #include <sys/types.h>
1809 #include <sys/file.h>
1810 #include <sys/stat.h>
1811 #include <sys/errno.h>
1812
1813 #include <readline/readline.h>
1814 #include <readline/history.h>
1815
1816 extern char *xmalloc ();
1817
1818 /* The names of functions that actually do the manipulation. */
1819 int com_list __P((char *));
1820 int com_view __P((char *));
1821 int com_rename __P((char *));
1822 int com_stat __P((char *));
1823 int com_pwd __P((char *));
1824 int com_delete __P((char *));
1825 int com_help __P((char *));
1826 int com_cd __P((char *));
1827 int com_quit __P((char *));
1828
1829 /* A structure which contains information on the commands this program
1830 can understand. */
1831
1832 typedef struct @{
1833 char *name; /* User printable name of the function. */
1834 rl_icpfunc_t *func; /* Function to call to do the job. */
1835 char *doc; /* Documentation for this function. */
1836 @} COMMAND;
1837
1838 COMMAND commands[] = @{
1839 @{ "cd", com_cd, "Change to directory DIR" @},
1840 @{ "delete", com_delete, "Delete FILE" @},
1841 @{ "help", com_help, "Display this text" @},
1842 @{ "?", com_help, "Synonym for `help'" @},
1843 @{ "list", com_list, "List files in DIR" @},
1844 @{ "ls", com_list, "Synonym for `list'" @},
1845 @{ "pwd", com_pwd, "Print the current working directory" @},
1846 @{ "quit", com_quit, "Quit using Fileman" @},
1847 @{ "rename", com_rename, "Rename FILE to NEWNAME" @},
1848 @{ "stat", com_stat, "Print out statistics on FILE" @},
1849 @{ "view", com_view, "View the contents of FILE" @},
1850 @{ (char *)NULL, (rl_icpfunc_t *)NULL, (char *)NULL @}
1851 @};
1852
1853 /* Forward declarations. */
1854 char *stripwhite ();
1855 COMMAND *find_command ();
1856
1857 /* The name of this program, as taken from argv[0]. */
1858 char *progname;
1859
1860 /* When non-zero, this means the user is done using this program. */
1861 int done;
1862
1863 char *
1864 dupstr (s)
1865 int s;
1866 @{
1867 char *r;
1868
1869 r = xmalloc (strlen (s) + 1);
1870 strcpy (r, s);
1871 return (r);
1872 @}
1873
1874 main (argc, argv)
1875 int argc;
1876 char **argv;
1877 @{
1878 char *line, *s;
1879
1880 progname = argv[0];
1881
1882 initialize_readline (); /* Bind our completer. */
1883
1884 /* Loop reading and executing lines until the user quits. */
1885 for ( ; done == 0; )
1886 @{
1887 line = readline ("FileMan: ");
1888
1889 if (!line)
1890 break;
1891
1892 /* Remove leading and trailing whitespace from the line.
1893 Then, if there is anything left, add it to the history list
1894 and execute it. */
1895 s = stripwhite (line);
1896
1897 if (*s)
1898 @{
1899 add_history (s);
1900 execute_line (s);
1901 @}
1902
1903 free (line);
1904 @}
1905 exit (0);
1906 @}
1907
1908 /* Execute a command line. */
1909 int
1910 execute_line (line)
1911 char *line;
1912 @{
1913 register int i;
1914 COMMAND *command;
1915 char *word;
1916
1917 /* Isolate the command word. */
1918 i = 0;
1919 while (line[i] && whitespace (line[i]))
1920 i++;
1921 word = line + i;
1922
1923 while (line[i] && !whitespace (line[i]))
1924 i++;
1925
1926 if (line[i])
1927 line[i++] = '\0';
1928
1929 command = find_command (word);
1930
1931 if (!command)
1932 @{
1933 fprintf (stderr, "%s: No such command for FileMan.\n", word);
1934 return (-1);
1935 @}
1936
1937 /* Get argument to command, if any. */
1938 while (whitespace (line[i]))
1939 i++;
1940
1941 word = line + i;
1942
1943 /* Call the function. */
1944 return ((*(command->func)) (word));
1945 @}
1946
1947 /* Look up NAME as the name of a command, and return a pointer to that
1948 command. Return a NULL pointer if NAME isn't a command name. */
1949 COMMAND *
1950 find_command (name)
1951 char *name;
1952 @{
1953 register int i;
1954
1955 for (i = 0; commands[i].name; i++)
1956 if (strcmp (name, commands[i].name) == 0)
1957 return (&commands[i]);
1958
1959 return ((COMMAND *)NULL);
1960 @}
1961
1962 /* Strip whitespace from the start and end of STRING. Return a pointer
1963 into STRING. */
1964 char *
1965 stripwhite (string)
1966 char *string;
1967 @{
1968 register char *s, *t;
1969
1970 for (s = string; whitespace (*s); s++)
1971 ;
1972
1973 if (*s == 0)
1974 return (s);
1975
1976 t = s + strlen (s) - 1;
1977 while (t > s && whitespace (*t))
1978 t--;
1979 *++t = '\0';
1980
1981 return s;
1982 @}
1983
1984 /* **************************************************************** */
1985 /* */
1986 /* Interface to Readline Completion */
1987 /* */
1988 /* **************************************************************** */
1989
1990 char *command_generator __P((const char *, int));
1991 char **fileman_completion __P((const char *, int, int));
1992
1993 /* Tell the GNU Readline library how to complete. We want to try to
1994 complete on command names if this is the first word in the line, or
1995 on filenames if not. */
1996 initialize_readline ()
1997 @{
1998 /* Allow conditional parsing of the ~/.inputrc file. */
1999 rl_readline_name = "FileMan";
2000
2001 /* Tell the completer that we want a crack first. */
2002 rl_attempted_completion_function = fileman_completion;
2003 @}
2004
2005 /* Attempt to complete on the contents of TEXT. START and END
2006 bound the region of rl_line_buffer that contains the word to
2007 complete. TEXT is the word to complete. We can use the entire
2008 contents of rl_line_buffer in case we want to do some simple
2009 parsing. Returnthe array of matches, or NULL if there aren't any. */
2010 char **
2011 fileman_completion (text, start, end)
2012 const char *text;
2013 int start, end;
2014 @{
2015 char **matches;
2016
2017 matches = (char **)NULL;
2018
2019 /* If this word is at the start of the line, then it is a command
2020 to complete. Otherwise it is the name of a file in the current
2021 directory. */
2022 if (start == 0)
2023 matches = rl_completion_matches (text, command_generator);
2024
2025 return (matches);
2026 @}
2027
2028 /* Generator function for command completion. STATE lets us
2029 know whether to start from scratch; without any state
2030 (i.e. STATE == 0), then we start at the top of the list. */
2031 char *
2032 command_generator (text, state)
2033 const char *text;
2034 int state;
2035 @{
2036 static int list_index, len;
2037 char *name;
2038
2039 /* If this is a new word to complete, initialize now. This
2040 includes saving the length of TEXT for efficiency, and
2041 initializing the index variable to 0. */
2042 if (!state)
2043 @{
2044 list_index = 0;
2045 len = strlen (text);
2046 @}
2047
2048 /* Return the next name which partially matches from the
2049 command list. */
2050 while (name = commands[list_index].name)
2051 @{
2052 list_index++;
2053
2054 if (strncmp (name, text, len) == 0)
2055 return (dupstr(name));
2056 @}
2057
2058 /* If no names matched, then return NULL. */
2059 return ((char *)NULL);
2060 @}
2061
2062 /* **************************************************************** */
2063 /* */
2064 /* FileMan Commands */
2065 /* */
2066 /* **************************************************************** */
2067
2068 /* String to pass to system (). This is for the LIST, VIEW and RENAME
2069 commands. */
2070 static char syscom[1024];
2071
2072 /* List the file(s) named in arg. */
2073 com_list (arg)
2074 char *arg;
2075 @{
2076 if (!arg)
2077 arg = "";
2078
2079 sprintf (syscom, "ls -FClg %s", arg);
2080 return (system (syscom));
2081 @}
2082
2083 com_view (arg)
2084 char *arg;
2085 @{
2086 if (!valid_argument ("view", arg))
2087 return 1;
2088
2089 sprintf (syscom, "more %s", arg);
2090 return (system (syscom));
2091 @}
2092
2093 com_rename (arg)
2094 char *arg;
2095 @{
2096 too_dangerous ("rename");
2097 return (1);
2098 @}
2099
2100 com_stat (arg)
2101 char *arg;
2102 @{
2103 struct stat finfo;
2104
2105 if (!valid_argument ("stat", arg))
2106 return (1);
2107
2108 if (stat (arg, &finfo) == -1)
2109 @{
2110 perror (arg);
2111 return (1);
2112 @}
2113
2114 printf ("Statistics for `%s':\n", arg);
2115
2116 printf ("%s has %d link%s, and is %d byte%s in length.\n", arg,
2117 finfo.st_nlink,
2118 (finfo.st_nlink == 1) ? "" : "s",
2119 finfo.st_size,
2120 (finfo.st_size == 1) ? "" : "s");
2121 printf ("Inode Last Change at: %s", ctime (&finfo.st_ctime));
2122 printf (" Last access at: %s", ctime (&finfo.st_atime));
2123 printf (" Last modified at: %s", ctime (&finfo.st_mtime));
2124 return (0);
2125 @}
2126
2127 com_delete (arg)
2128 char *arg;
2129 @{
2130 too_dangerous ("delete");
2131 return (1);
2132 @}
2133
2134 /* Print out help for ARG, or for all of the commands if ARG is
2135 not present. */
2136 com_help (arg)
2137 char *arg;
2138 @{
2139 register int i;
2140 int printed = 0;
2141
2142 for (i = 0; commands[i].name; i++)
2143 @{
2144 if (!*arg || (strcmp (arg, commands[i].name) == 0))
2145 @{
2146 printf ("%s\t\t%s.\n", commands[i].name, commands[i].doc);
2147 printed++;
2148 @}
2149 @}
2150
2151 if (!printed)
2152 @{
2153 printf ("No commands match `%s'. Possibilties are:\n", arg);
2154
2155 for (i = 0; commands[i].name; i++)
2156 @{
2157 /* Print in six columns. */
2158 if (printed == 6)
2159 @{
2160 printed = 0;
2161 printf ("\n");
2162 @}
2163
2164 printf ("%s\t", commands[i].name);
2165 printed++;
2166 @}
2167
2168 if (printed)
2169 printf ("\n");
2170 @}
2171 return (0);
2172 @}
2173
2174 /* Change to the directory ARG. */
2175 com_cd (arg)
2176 char *arg;
2177 @{
2178 if (chdir (arg) == -1)
2179 @{
2180 perror (arg);
2181 return 1;
2182 @}
2183
2184 com_pwd ("");
2185 return (0);
2186 @}
2187
2188 /* Print out the current working directory. */
2189 com_pwd (ignore)
2190 char *ignore;
2191 @{
2192 char dir[1024], *s;
2193
2194 s = getcwd (dir, sizeof(dir) - 1);
2195 if (s == 0)
2196 @{
2197 printf ("Error getting pwd: %s\n", dir);
2198 return 1;
2199 @}
2200
2201 printf ("Current directory is %s\n", dir);
2202 return 0;
2203 @}
2204
2205 /* The user wishes to quit using this program. Just set DONE
2206 non-zero. */
2207 com_quit (arg)
2208 char *arg;
2209 @{
2210 done = 1;
2211 return (0);
2212 @}
2213
2214 /* Function which tells you that you can't do this. */
2215 too_dangerous (caller)
2216 char *caller;
2217 @{
2218 fprintf (stderr,
2219 "%s: Too dangerous for me to distribute.\n"
2220 caller);
2221 fprintf (stderr, "Write it yourself.\n");
2222 @}
2223
2224 /* Return non-zero if ARG is a valid argument for CALLER,
2225 else print an error message and return zero. */
2226 int
2227 valid_argument (caller, arg)
2228 char *caller, *arg;
2229 @{
2230 if (!arg || !*arg)
2231 @{
2232 fprintf (stderr, "%s: Argument required.\n", caller);
2233 return (0);
2234 @}
2235
2236 return (1);
2237 @}
2238 @end smallexample