1 /* $NetBSD: readline.c,v 1.117 2015/06/02 15:35:31 christos Exp $ */
4 * Copyright (c) 1997 The NetBSD Foundation, Inc.
7 * This code is derived from software contributed to The NetBSD Foundation
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE.
33 #if !defined(lint) && !defined(SCCSID)
34 __RCSID("$NetBSD: readline.c,v 1.117 2015/06/02 15:35:31 christos Exp $");
35 #endif /* not lint && not SCCSID */
37 #include <sys/types.h>
52 #include "readline/readline.h"
54 #include "fcns.h" /* for EL_NUM_FCNS */
56 #include "filecomplete.h"
58 void rl_prep_terminal(int);
59 void rl_deprep_terminal(void);
61 /* for rl_complete() */
64 /* see comment at the #ifdef for sense of this */
65 /* #define GDB_411_HACK */
67 /* readline compatibility stuff - look at readline sources/documentation */
68 /* to see what these variables mean */
69 const char *rl_library_version
= "EditLine wrapper";
70 int rl_readline_version
= RL_READLINE_VERSION
;
71 static char empty
[] = { '\0' };
72 static char expand_chars
[] = { ' ', '\t', '\n', '=', '(', '\0' };
73 static char break_chars
[] = { ' ', '\t', '\n', '"', '\\', '\'', '`', '@', '$',
74 '>', '<', '=', ';', '|', '&', '{', '(', '\0' };
75 char *rl_readline_name
= empty
;
76 FILE *rl_instream
= NULL
;
77 FILE *rl_outstream
= NULL
;
80 char *rl_line_buffer
= NULL
;
81 rl_vcpfunc_t
*rl_linefunc
= NULL
;
83 VFunction
*rl_event_hook
= NULL
;
84 KEYMAP_ENTRY_ARRAY emacs_standard_keymap
,
88 * The following is not implemented; we always catch signals in the
89 * libedit fashion: set handlers on entry to el_gets() and clear them
90 * on the way out. This simplistic approach works for most cases; if
91 * it does not work for your application, please let us know.
93 int rl_catch_signals
= 1;
94 int rl_catch_sigwinch
= 1;
96 int history_base
= 1; /* probably never subject to change */
97 int history_length
= 0;
98 int max_input_history
= 0;
99 char history_expansion_char
= '!';
100 char history_subst_char
= '^';
101 char *history_no_expand_chars
= expand_chars
;
102 Function
*history_inhibit_expansion_function
= NULL
;
103 char *history_arg_extract(int start
, int end
, const char *str
);
105 int rl_inhibit_completion
= 0;
106 int rl_attempted_completion_over
= 0;
107 char *rl_basic_word_break_characters
= break_chars
;
108 char *rl_completer_word_break_characters
= NULL
;
109 char *rl_completer_quote_characters
= NULL
;
110 rl_compentry_func_t
*rl_completion_entry_function
= NULL
;
111 char *(*rl_completion_word_break_hook
)(void) = NULL
;
112 rl_completion_func_t
*rl_attempted_completion_function
= NULL
;
113 Function
*rl_pre_input_hook
= NULL
;
114 Function
*rl_startup1_hook
= NULL
;
115 int (*rl_getc_function
)(FILE *) = NULL
;
116 char *rl_terminal_name
= NULL
;
117 int rl_already_prompted
= 0;
118 int rl_filename_completion_desired
= 0;
119 int rl_ignore_completion_duplicates
= 0;
120 int readline_echoing_p
= 1;
121 int _rl_print_completions_horizontally
= 0;
122 VFunction
*rl_redisplay_function
= NULL
;
123 Function
*rl_startup_hook
= NULL
;
124 VFunction
*rl_completion_display_matches_hook
= NULL
;
125 VFunction
*rl_prep_term_function
= (VFunction
*)rl_prep_terminal
;
126 VFunction
*rl_deprep_term_function
= (VFunction
*)rl_deprep_terminal
;
127 KEYMAP_ENTRY_ARRAY emacs_meta_keymap
;
130 * The current prompt string.
132 char *rl_prompt
= NULL
;
134 * This is set to character indicating type of completion being done by
135 * rl_complete_internal(); this is available for application completion
138 int rl_completion_type
= 0;
141 * If more than this number of items results from query for possible
142 * completions, we ask user if they are sure to really display the list.
144 int rl_completion_query_items
= 100;
147 * List of characters which are word break characters, but should be left
148 * in the parsed text when it is passed to the completion function.
149 * Shell uses this to help determine what kind of completing to do.
151 char *rl_special_prefixes
= NULL
;
154 * This is the character appended to the completed words if at the end of
155 * the line. Default is ' ' (a space).
157 int rl_completion_append_character
= ' ';
159 /* stuff below is used internally by libedit for readline emulation */
161 static History
*h
= NULL
;
162 static EditLine
*e
= NULL
;
163 static rl_command_func_t
*map
[256];
164 static jmp_buf topbuf
;
166 /* internal functions */
167 static unsigned char _el_rl_complete(EditLine
*, int);
168 static unsigned char _el_rl_tstp(EditLine
*, int);
169 static char *_get_prompt(EditLine
*);
170 static int _getc_function(EditLine
*, char *);
171 static HIST_ENTRY
*_move_history(int);
172 static int _history_expand_command(const char *, size_t, size_t,
174 static char *_rl_compat_sub(const char *, const char *,
176 static int _rl_event_read_char(EditLine
*, char *);
177 static void _rl_update_pos(void);
182 _get_prompt(EditLine
*el
__attribute__((__unused__
)))
184 rl_already_prompted
= 1;
190 * generic function for moving around history
193 _move_history(int op
)
196 static HIST_ENTRY rl_he
;
198 if (history(h
, &ev
, op
) != 0)
209 * read one key from user defined input function
213 _getc_function(EditLine
*el
__attribute__((__unused__
)), char *c
)
217 i
= (*rl_getc_function
)(NULL
);
225 _resize_fun(EditLine
*el
, void *a
)
231 /* a cheesy way to get rid of const cast. */
232 *ap
= memchr(li
->buffer
, *li
->buffer
, (size_t)1);
236 _default_history_file(void)
245 if ((p
= getpwuid(getuid())) == NULL
)
248 len
= strlen(p
->pw_dir
) + sizeof("/.history");
249 if ((path
= malloc(len
)) == NULL
)
252 (void)snprintf(path
, len
, "%s/.history", p
->pw_dir
);
257 * READLINE compatibility stuff
264 rl_set_prompt(const char *prompt
)
270 if (rl_prompt
!= NULL
&& strcmp(rl_prompt
, prompt
) == 0)
274 rl_prompt
= strdup(prompt
);
275 if (rl_prompt
== NULL
)
278 while ((p
= strchr(rl_prompt
, RL_PROMPT_END_IGNORE
)) != NULL
)
279 *p
= RL_PROMPT_START_IGNORE
;
285 * initialize rl compat stuff
302 rl_outstream
= stdout
;
305 * See if we don't really want to run the editor
307 if (tcgetattr(fileno(rl_instream
), &t
) != -1 && (t
.c_lflag
& ECHO
) == 0)
310 e
= el_init(rl_readline_name
, rl_instream
, rl_outstream
, stderr
);
313 el_set(e
, EL_EDITMODE
, 0);
319 history(h
, &ev
, H_SETSIZE
, INT_MAX
); /* unlimited */
321 max_input_history
= INT_MAX
;
322 el_set(e
, EL_HIST
, history
, h
);
324 /* Setup resize function */
325 el_set(e
, EL_RESIZE
, _resize_fun
, &rl_line_buffer
);
327 /* setup getc function if valid */
328 if (rl_getc_function
)
329 el_set(e
, EL_GETCFN
, _getc_function
);
331 /* for proper prompt printing in readline() */
332 if (rl_set_prompt("") == -1) {
337 el_set(e
, EL_PROMPT
, _get_prompt
, RL_PROMPT_START_IGNORE
);
338 el_set(e
, EL_SIGNAL
, rl_catch_signals
);
340 /* set default mode to "emacs"-style and read setting afterwards */
341 /* so this can be overridden */
342 el_set(e
, EL_EDITOR
, "emacs");
343 if (rl_terminal_name
!= NULL
)
344 el_set(e
, EL_TERMINAL
, rl_terminal_name
);
346 el_get(e
, EL_TERMINAL
, &rl_terminal_name
);
349 * Word completion - this has to go AFTER rebinding keys
352 el_set(e
, EL_ADDFN
, "rl_complete",
353 "ReadLine compatible completion function",
355 el_set(e
, EL_BIND
, "^I", "rl_complete", NULL
);
358 * Send TSTP when ^Z is pressed.
360 el_set(e
, EL_ADDFN
, "rl_tstp",
361 "ReadLine compatible suspend function",
363 el_set(e
, EL_BIND
, "^Z", "rl_tstp", NULL
);
366 * Set some readline compatible key-bindings.
368 el_set(e
, EL_BIND
, "^R", "em-inc-search-prev", NULL
);
371 * Allow the use of Home/End keys.
373 el_set(e
, EL_BIND
, "\\e[1~", "ed-move-to-beg", NULL
);
374 el_set(e
, EL_BIND
, "\\e[4~", "ed-move-to-end", NULL
);
375 el_set(e
, EL_BIND
, "\\e[7~", "ed-move-to-beg", NULL
);
376 el_set(e
, EL_BIND
, "\\e[8~", "ed-move-to-end", NULL
);
377 el_set(e
, EL_BIND
, "\\e[H", "ed-move-to-beg", NULL
);
378 el_set(e
, EL_BIND
, "\\e[F", "ed-move-to-end", NULL
);
381 * Allow the use of the Delete/Insert keys.
383 el_set(e
, EL_BIND
, "\\e[3~", "ed-delete-next-char", NULL
);
384 el_set(e
, EL_BIND
, "\\e[2~", "ed-quoted-insert", NULL
);
387 * Ctrl-left-arrow and Ctrl-right-arrow for word moving.
389 el_set(e
, EL_BIND
, "\\e[1;5C", "em-next-word", NULL
);
390 el_set(e
, EL_BIND
, "\\e[1;5D", "ed-prev-word", NULL
);
391 el_set(e
, EL_BIND
, "\\e[5C", "em-next-word", NULL
);
392 el_set(e
, EL_BIND
, "\\e[5D", "ed-prev-word", NULL
);
393 el_set(e
, EL_BIND
, "\\e\\e[C", "em-next-word", NULL
);
394 el_set(e
, EL_BIND
, "\\e\\e[D", "ed-prev-word", NULL
);
396 /* read settings from configuration file */
400 * Unfortunately, some applications really do use rl_point
401 * and rl_line_buffer directly.
403 _resize_fun(e
, &rl_line_buffer
);
407 (*rl_startup_hook
)(NULL
, 0);
414 * read one line from input stream and return it, chomping
415 * trailing newline (if there is any)
418 readline(const char *p
)
421 const char * volatile prompt
= p
;
425 static int used_event_hook
;
427 if (e
== NULL
|| h
== NULL
)
432 (void)setjmp(topbuf
);
434 /* update prompt accordingly to what has been passed */
435 if (rl_set_prompt(prompt
) == -1)
438 if (rl_pre_input_hook
)
439 (*rl_pre_input_hook
)(NULL
, 0);
441 if (rl_event_hook
&& !(e
->el_flags
&NO_TTY
)) {
442 el_set(e
, EL_GETCFN
, _rl_event_read_char
);
446 if (!rl_event_hook
&& used_event_hook
) {
447 el_set(e
, EL_GETCFN
, EL_BUILTIN_GETCFN
);
451 rl_already_prompted
= 0;
453 /* get one line from input stream */
454 ret
= el_gets(e
, &count
);
456 if (ret
&& count
> 0) {
463 if (buf
[lastidx
] == '\n')
468 history(h
, &ev
, H_GETSIZE
);
469 history_length
= ev
.num
;
479 * is normally called before application starts to use
480 * history expansion functions
485 if (h
== NULL
|| e
== NULL
)
491 * substitute ``what'' with ``with'', returning resulting string; if
492 * globally == 1, substitutes all occurrences of what, otherwise only the
496 _rl_compat_sub(const char *str
, const char *what
, const char *with
,
501 size_t len
, with_len
, what_len
;
504 with_len
= strlen(with
);
505 what_len
= strlen(what
);
507 /* calculate length we need for result */
510 if (*s
== *what
&& !strncmp(s
, what
, what_len
)) {
511 len
+= with_len
- what_len
;
518 r
= result
= el_malloc((len
+ 1) * sizeof(*r
));
523 if (*s
== *what
&& !strncmp(s
, what
, what_len
)) {
524 (void)strncpy(r
, with
, with_len
);
538 static char *last_search_pat
; /* last !?pat[?] search pattern */
539 static char *last_search_match
; /* last !?pat[?] that matched */
542 get_history_event(const char *cmd
, int *cindex
, int qchar
)
544 int idx
, sign
, sub
, num
, begin
, ret
;
551 if (cmd
[idx
++] != history_expansion_char
)
554 /* find out which event to take */
555 if (cmd
[idx
] == history_expansion_char
|| cmd
[idx
] == '\0') {
556 if (history(h
, &ev
, H_FIRST
) != 0)
558 *cindex
= cmd
[idx
]? (idx
+ 1):idx
;
562 if (cmd
[idx
] == '-') {
567 if ('0' <= cmd
[idx
] && cmd
[idx
] <= '9') {
571 while (cmd
[idx
] && '0' <= cmd
[idx
] && cmd
[idx
] <= '9') {
572 num
= num
* 10 + cmd
[idx
] - '0';
576 num
= history_length
- num
+ 1;
578 if (!(rl_he
= history_get(num
)))
585 if (cmd
[idx
] == '?') {
591 if (cmd
[idx
] == '\n')
593 if (sub
&& cmd
[idx
] == '?')
595 if (!sub
&& (cmd
[idx
] == ':' || cmd
[idx
] == ' '
596 || cmd
[idx
] == '\t' || cmd
[idx
] == qchar
))
600 len
= (size_t)idx
- (size_t)begin
;
601 if (sub
&& cmd
[idx
] == '?')
603 if (sub
&& len
== 0 && last_search_pat
&& *last_search_pat
)
604 pat
= last_search_pat
;
608 if ((pat
= el_malloc((len
+ 1) * sizeof(*pat
))) == NULL
)
610 (void)strncpy(pat
, cmd
+ begin
, len
);
614 if (history(h
, &ev
, H_CURR
) != 0) {
615 if (pat
!= last_search_pat
)
622 if (pat
!= last_search_pat
) {
624 el_free(last_search_pat
);
625 last_search_pat
= pat
;
627 ret
= history_search(pat
, -1);
629 ret
= history_search_prefix(pat
, -1);
632 /* restore to end of list on failed search */
633 history(h
, &ev
, H_FIRST
);
634 (void)fprintf(rl_outstream
, "%s: Event not found\n", pat
);
635 if (pat
!= last_search_pat
)
641 if (last_search_match
&& last_search_match
!= pat
)
642 el_free(last_search_match
);
643 last_search_match
= pat
;
646 if (pat
!= last_search_pat
)
649 if (history(h
, &ev
, H_CURR
) != 0)
654 /* roll back to original position */
655 (void)history(h
, &ev
, H_SET
, num
);
661 * the real function doing history expansion - takes as argument command
662 * to do and data upon which the command should be executed
663 * does expansion the way I've understood readline documentation
665 * returns 0 if data was not modified, 1 if it was and 2 if the string
666 * should be only printed and not executed; in case of error,
667 * returns -1 and *result points to NULL
668 * it's the caller's responsibility to free() the string returned in *result
671 _history_expand_command(const char *command
, size_t offs
, size_t cmdlen
,
674 char *tmp
, *search
= NULL
, *aptr
;
675 const char *ptr
, *cmd
;
676 static char *from
= NULL
, *to
= NULL
;
677 int start
, end
, idx
, has_mods
= 0;
678 int p_on
= 0, g_on
= 0;
684 /* First get event specifier */
687 if (strchr(":^*$", command
[offs
+ 1])) {
690 * "!:" is shorthand for "!!:".
691 * "!^", "!*" and "!$" are shorthand for
692 * "!!:^", "!!:*" and "!!:$" respectively.
694 str
[0] = str
[1] = '!';
696 ptr
= get_history_event(str
, &idx
, 0);
697 idx
= (command
[offs
+ 1] == ':')? 1:0;
700 if (command
[offs
+ 1] == '#') {
701 /* use command so far */
702 if ((aptr
= el_malloc((offs
+ 1) * sizeof(*aptr
)))
705 (void)strncpy(aptr
, command
, offs
);
711 qchar
= (offs
> 0 && command
[offs
- 1] == '"')? '"':0;
712 ptr
= get_history_event(command
+ offs
, &idx
, qchar
);
714 has_mods
= command
[offs
+ (size_t)idx
] == ':';
717 if (ptr
== NULL
&& aptr
== NULL
)
721 *result
= strdup(aptr
? aptr
: ptr
);
729 cmd
= command
+ offs
+ idx
+ 1;
731 /* Now parse any word designators */
733 if (*cmd
== '%') /* last word matched by ?pat? */
734 tmp
= strdup(last_search_match
? last_search_match
:"");
735 else if (strchr("^*$-0123456789", *cmd
)) {
738 start
= end
= 1, cmd
++;
739 else if (*cmd
== '$')
741 else if (*cmd
== '*')
743 else if (*cmd
== '-' || isdigit((unsigned char) *cmd
)) {
745 while (*cmd
&& '0' <= *cmd
&& *cmd
<= '9')
746 start
= start
* 10 + *cmd
++ - '0';
749 if (isdigit((unsigned char) cmd
[1])) {
752 while (*cmd
&& '0' <= *cmd
&& *cmd
<= '9')
753 end
= end
* 10 + *cmd
++ - '0';
754 } else if (cmd
[1] == '$') {
761 } else if (*cmd
== '*')
766 tmp
= history_arg_extract(start
, end
, aptr
? aptr
:ptr
);
768 (void)fprintf(rl_outstream
, "%s: Bad word specifier",
769 command
+ offs
+ idx
);
775 tmp
= strdup(aptr
? aptr
:ptr
);
780 if (*cmd
== '\0' || ((size_t)(cmd
- (command
+ offs
)) >= cmdlen
)) {
785 for (; *cmd
; cmd
++) {
788 else if (*cmd
== 'h') { /* remove trailing path */
789 if ((aptr
= strrchr(tmp
, '/')) != NULL
)
791 } else if (*cmd
== 't') { /* remove leading path */
792 if ((aptr
= strrchr(tmp
, '/')) != NULL
) {
793 aptr
= strdup(aptr
+ 1);
797 } else if (*cmd
== 'r') { /* remove trailing suffix */
798 if ((aptr
= strrchr(tmp
, '.')) != NULL
)
800 } else if (*cmd
== 'e') { /* remove all but suffix */
801 if ((aptr
= strrchr(tmp
, '.')) != NULL
) {
806 } else if (*cmd
== 'p') /* print only */
808 else if (*cmd
== 'g')
810 else if (*cmd
== 's' || *cmd
== '&') {
811 char *what
, *with
, delim
;
812 size_t len
, from_len
;
815 if (*cmd
== '&' && (from
== NULL
|| to
== NULL
))
817 else if (*cmd
== 's') {
818 delim
= *(++cmd
), cmd
++;
820 what
= el_realloc(from
, size
* sizeof(*what
));
827 for (; *cmd
&& *cmd
!= delim
; cmd
++) {
828 if (*cmd
== '\\' && cmd
[1] == delim
)
832 nwhat
= el_realloc(what
,
849 from
= strdup(search
);
860 cmd
++; /* shift after delim */
865 with
= el_realloc(to
, size
* sizeof(*with
));
872 from_len
= strlen(from
);
873 for (; *cmd
&& *cmd
!= delim
; cmd
++) {
874 if (len
+ from_len
+ 1 >= size
) {
876 size
+= from_len
+ 1;
877 nwith
= el_realloc(with
,
878 size
* sizeof(*nwith
));
888 (void)strcpy(&with
[len
], from
);
893 && (*(cmd
+ 1) == delim
894 || *(cmd
+ 1) == '&'))
902 aptr
= _rl_compat_sub(tmp
, from
, to
, g_on
);
916 * csh-style history expansion
919 history_expand(char *str
, char **output
)
925 if (h
== NULL
|| e
== NULL
)
928 if (history_expansion_char
== 0) {
929 *output
= strdup(str
);
934 if (str
[0] == history_subst_char
) {
935 /* ^foo^foo2^ is equivalent to !!:s^foo^foo2^ */
936 *output
= el_malloc((strlen(str
) + 4 + 1) * sizeof(**output
));
939 (*output
)[0] = (*output
)[1] = history_expansion_char
;
942 (void)strcpy((*output
) + 4, str
);
945 *output
= strdup(str
);
950 #define ADD_STRING(what, len, fr) \
952 if (idx + len + 1 > size) { \
953 char *nresult = el_realloc(result, \
954 (size += len + 1) * sizeof(*nresult)); \
955 if (nresult == NULL) { \
957 if (/*CONSTCOND*/fr) \
963 (void)strncpy(&result[idx], what, len); \
965 result[idx] = '\0'; \
971 for (i
= 0; str
[i
];) {
972 int qchar
, loop_again
;
973 size_t len
, start
, j
;
979 for (; str
[j
]; j
++) {
980 if (str
[j
] == '\\' &&
981 str
[j
+ 1] == history_expansion_char
) {
982 len
= strlen(&str
[j
+ 1]) + 1;
983 memmove(&str
[j
], &str
[j
+ 1], len
);
987 if (isspace((unsigned char) str
[j
])
991 if (str
[j
] == history_expansion_char
992 && !strchr(history_no_expand_chars
, str
[j
+ 1])
993 && (!history_inhibit_expansion_function
||
994 (*history_inhibit_expansion_function
)(str
,
999 if (str
[j
] && loop_again
) {
1001 qchar
= (j
> 0 && str
[j
- 1] == '"' )? '"':0;
1003 if (str
[j
] == history_expansion_char
)
1009 ADD_STRING(&str
[start
], len
, 0);
1011 if (str
[i
] == '\0' || str
[i
] != history_expansion_char
) {
1013 ADD_STRING(&str
[i
], len
, 0);
1020 ret
= _history_expand_command (str
, i
, (j
- i
), &tmp
);
1021 if (ret
> 0 && tmp
) {
1023 ADD_STRING(tmp
, len
, 1);
1032 /* ret is 2 for "print only" option */
1034 add_history(result
);
1036 /* gdb 4.11 has been shipped with readline, where */
1037 /* history_expand() returned -1 when the line */
1038 /* should not be executed; in readline 2.1+ */
1039 /* it should return 2 in such a case */
1050 * Return a string consisting of arguments of "str" from "start" to "end".
1053 history_arg_extract(int start
, int end
, const char *str
)
1056 char **arr
, *result
= NULL
;
1058 arr
= history_tokenize(str
);
1061 if (arr
&& *arr
== NULL
)
1064 for (max
= 0; arr
[max
]; max
++)
1073 end
= (int)max
+ end
+ 1;
1077 if (start
< 0 || end
< 0 || (size_t)start
> max
||
1078 (size_t)end
> max
|| start
> end
)
1081 for (i
= (size_t)start
, len
= 0; i
<= (size_t)end
; i
++)
1082 len
+= strlen(arr
[i
]) + 1;
1084 result
= el_malloc(len
* sizeof(*result
));
1088 for (i
= (size_t)start
, len
= 0; i
<= (size_t)end
; i
++) {
1089 (void)strcpy(result
+ len
, arr
[i
]);
1090 len
+= strlen(arr
[i
]);
1091 if (i
< (size_t)end
)
1092 result
[len
++] = ' ';
1097 for (i
= 0; arr
[i
]; i
++)
1105 * Parse the string into individual tokens,
1106 * similar to how shell would do it.
1109 history_tokenize(const char *str
)
1111 int size
= 1, idx
= 0, i
, start
;
1113 char **result
= NULL
, *temp
, delim
= '\0';
1115 for (i
= 0; str
[i
];) {
1116 while (isspace((unsigned char) str
[i
]))
1120 if (str
[i
] == '\\') {
1121 if (str
[i
+1] != '\0')
1123 } else if (str
[i
] == delim
)
1126 (isspace((unsigned char) str
[i
]) ||
1127 strchr("()<>;&|$", str
[i
])))
1129 else if (!delim
&& strchr("'`\"", str
[i
]))
1135 if (idx
+ 2 >= size
) {
1138 nresult
= el_realloc(result
, (size_t)size
* sizeof(*nresult
));
1139 if (nresult
== NULL
) {
1145 len
= (size_t)i
- (size_t)start
;
1146 temp
= el_malloc((size_t)(len
+ 1) * sizeof(*temp
));
1148 for (i
= 0; i
< idx
; i
++)
1153 (void)strncpy(temp
, &str
[start
], len
);
1155 result
[idx
++] = temp
;
1165 * limit size of history record to ``max'' events
1168 stifle_history(int max
)
1172 if (h
== NULL
|| e
== NULL
)
1175 if (history(h
, &ev
, H_SETSIZE
, max
) == 0)
1176 max_input_history
= max
;
1181 * "unlimit" size of history - set the limit to maximum allowed int value
1184 unstifle_history(void)
1189 history(h
, &ev
, H_SETSIZE
, INT_MAX
);
1190 omax
= max_input_history
;
1191 max_input_history
= INT_MAX
;
1192 return omax
; /* some value _must_ be returned */
1197 history_is_stifled(void)
1200 /* cannot return true answer */
1201 return max_input_history
!= INT_MAX
;
1204 static const char _history_tmp_template
[] = "/tmp/.historyXXXXXX";
1207 history_truncate_file (const char *filename
, int nlines
)
1211 char template[sizeof(_history_tmp_template
)];
1219 if (filename
== NULL
&& (filename
= _default_history_file()) == NULL
)
1221 if ((fp
= fopen(filename
, "r+")) == NULL
)
1223 strcpy(template, _history_tmp_template
);
1224 if ((fd
= mkstemp(template)) == -1) {
1229 if ((tp
= fdopen(fd
, "r+")) == NULL
) {
1236 if (fread(buf
, sizeof(buf
), (size_t)1, fp
) != 1) {
1241 if (fseeko(fp
, (off_t
)sizeof(buf
) * count
, SEEK_SET
) ==
1246 left
= (ssize_t
)fread(buf
, (size_t)1, sizeof(buf
), fp
);
1254 } else if (fwrite(buf
, (size_t)left
, (size_t)1, tp
)
1262 if (fwrite(buf
, sizeof(buf
), (size_t)1, tp
) != 1) {
1270 cp
= buf
+ left
- 1;
1274 while (--cp
>= buf
) {
1276 if (--nlines
== 0) {
1277 if (++cp
>= buf
+ sizeof(buf
)) {
1285 if (nlines
<= 0 || count
== 0)
1288 if (fseeko(tp
, (off_t
)sizeof(buf
) * count
, SEEK_SET
) < 0) {
1292 if (fread(buf
, sizeof(buf
), (size_t)1, tp
) != 1) {
1300 cp
= buf
+ sizeof(buf
);
1303 if (ret
|| nlines
> 0)
1306 if (fseeko(fp
, (off_t
)0, SEEK_SET
) == (off_t
)-1) {
1311 if (fseeko(tp
, (off_t
)sizeof(buf
) * count
+ (cp
- buf
), SEEK_SET
) ==
1318 if ((left
= (ssize_t
)fread(buf
, (size_t)1, sizeof(buf
), tp
)) == 0) {
1323 if (fwrite(buf
, (size_t)left
, (size_t)1, fp
) != 1) {
1329 if((off
= ftello(fp
)) > 0)
1330 (void)ftruncate(fileno(fp
), off
);
1343 * read history from a file given
1346 read_history(const char *filename
)
1350 if (h
== NULL
|| e
== NULL
)
1352 if (filename
== NULL
&& (filename
= _default_history_file()) == NULL
)
1354 return history(h
, &ev
, H_LOAD
, filename
) == -1 ?
1355 (errno
? errno
: EINVAL
) : 0;
1360 * write history to a file given
1363 write_history(const char *filename
)
1367 if (h
== NULL
|| e
== NULL
)
1369 if (filename
== NULL
&& (filename
= _default_history_file()) == NULL
)
1371 return history(h
, &ev
, H_SAVE
, filename
) == -1 ?
1372 (errno
? errno
: EINVAL
) : 0;
1377 * returns history ``num''th event
1379 * returned pointer points to static variable
1382 history_get(int num
)
1384 static HIST_ENTRY she
;
1388 if (h
== NULL
|| e
== NULL
)
1391 /* save current position */
1392 if (history(h
, &ev
, H_CURR
) != 0)
1396 /* start from the oldest */
1397 if (history(h
, &ev
, H_LAST
) != 0)
1398 return NULL
; /* error */
1400 /* look forwards for event matching specified offset */
1401 if (history(h
, &ev
, H_NEXT_EVDATA
, num
, &she
.data
))
1406 /* restore pointer to where it was */
1407 (void)history(h
, &ev
, H_SET
, curr_num
);
1414 * add the line to history table
1417 add_history(const char *line
)
1424 if (h
== NULL
|| e
== NULL
)
1427 (void)history(h
, &ev
, H_ENTER
, line
);
1428 if (history(h
, &ev
, H_GETSIZE
) == 0)
1429 history_length
= ev
.num
;
1431 return !(history_length
> 0); /* return 0 if all is okay */
1436 * remove the specified entry from the history list and return it.
1439 remove_history(int num
)
1444 if (h
== NULL
|| e
== NULL
)
1447 if ((he
= el_malloc(sizeof(*he
))) == NULL
)
1450 if (history(h
, &ev
, H_DELDATA
, num
, &he
->data
) != 0) {
1456 if (history(h
, &ev
, H_GETSIZE
) == 0)
1457 history_length
= ev
.num
;
1464 * replace the line and data of the num-th entry
1467 replace_history_entry(int num
, const char *line
, histdata_t data
)
1473 if (h
== NULL
|| e
== NULL
)
1476 /* save current position */
1477 if (history(h
, &ev
, H_CURR
) != 0)
1481 /* start from the oldest */
1482 if (history(h
, &ev
, H_LAST
) != 0)
1483 return NULL
; /* error */
1485 if ((he
= el_malloc(sizeof(*he
))) == NULL
)
1488 /* look forwards for event matching specified offset */
1489 if (history(h
, &ev
, H_NEXT_EVDATA
, num
, &he
->data
))
1492 he
->line
= strdup(ev
.str
);
1493 if (he
->line
== NULL
)
1496 if (history(h
, &ev
, H_REPLACE
, line
, data
))
1499 /* restore pointer to where it was */
1500 if (history(h
, &ev
, H_SET
, curr_num
))
1510 * clear the history list - delete all entries
1517 if (h
== NULL
|| e
== NULL
)
1520 (void)history(h
, &ev
, H_CLEAR
);
1526 * returns offset of the current history event
1534 if (history(h
, &ev
, H_CURR
) != 0)
1538 (void)history(h
, &ev
, H_FIRST
);
1540 while (ev
.num
!= curr_num
&& history(h
, &ev
, H_NEXT
) == 0)
1548 * returns current history event or NULL if there is no such event
1551 current_history(void)
1554 return _move_history(H_CURR
);
1559 * returns total number of bytes history events' data are using
1562 history_total_bytes(void)
1568 if (history(h
, &ev
, H_CURR
) != 0)
1572 (void)history(h
, &ev
, H_FIRST
);
1575 size
+= strlen(ev
.str
) * sizeof(*ev
.str
);
1576 while (history(h
, &ev
, H_NEXT
) == 0);
1578 /* get to the same position as before */
1579 history(h
, &ev
, H_PREV_EVENT
, curr_num
);
1586 * sets the position in the history list to ``pos''
1589 history_set_pos(int pos
)
1594 if (pos
>= history_length
|| pos
< 0)
1597 (void)history(h
, &ev
, H_CURR
);
1601 * use H_DELDATA to set to nth history (without delete) by passing
1604 if (history(h
, &ev
, H_DELDATA
, pos
, (void **)-1)) {
1605 (void)history(h
, &ev
, H_SET
, curr_num
);
1613 * returns previous event in history and shifts pointer accordingly
1616 previous_history(void)
1619 return _move_history(H_PREV
);
1624 * returns next event in history and shifts pointer accordingly
1630 return _move_history(H_NEXT
);
1635 * searches for first history event containing the str
1638 history_search(const char *str
, int direction
)
1644 if (history(h
, &ev
, H_CURR
) != 0)
1649 if ((strp
= strstr(ev
.str
, str
)) != NULL
)
1650 return (int)(strp
- ev
.str
);
1651 if (history(h
, &ev
, direction
< 0 ? H_NEXT
:H_PREV
) != 0)
1654 (void)history(h
, &ev
, H_SET
, curr_num
);
1660 * searches for first history event beginning with str
1663 history_search_prefix(const char *str
, int direction
)
1667 return (history(h
, &ev
, direction
< 0 ?
1668 H_PREV_STR
: H_NEXT_STR
, str
));
1673 * search for event in history containing str, starting at offset
1674 * abs(pos); continue backward, if pos<0, forward otherwise
1678 history_search_pos(const char *str
,
1679 int direction
__attribute__((__unused__
)), int pos
)
1684 off
= (pos
> 0) ? pos
: -pos
;
1685 pos
= (pos
> 0) ? 1 : -1;
1687 if (history(h
, &ev
, H_CURR
) != 0)
1691 if (history_set_pos(off
) != 0 || history(h
, &ev
, H_CURR
) != 0)
1695 if (strstr(ev
.str
, str
))
1697 if (history(h
, &ev
, (pos
< 0) ? H_PREV
: H_NEXT
) != 0)
1701 /* set "current" pointer back to previous state */
1702 (void)history(h
, &ev
,
1703 pos
< 0 ? H_NEXT_EVENT
: H_PREV_EVENT
, curr_num
);
1709 /********************************/
1710 /* completion functions */
1713 tilde_expand(char *name
)
1715 return fn_tilde_expand(name
);
1719 filename_completion_function(const char *name
, int state
)
1721 return fn_filename_completion_function(name
, state
);
1725 * a completion generator for usernames; returns _first_ username
1726 * which starts with supplied text
1727 * text contains a partial username preceded by random character
1728 * (usually '~'); state resets search from start (??? should we do that anyway)
1729 * it's the caller's responsibility to free the returned value
1732 username_completion_function(const char *text
, int state
)
1734 #if defined(HAVE_GETPW_R_POSIX) || defined(HAVE_GETPW_R_DRAFT)
1735 struct passwd pwres
;
1738 struct passwd
*pass
= NULL
;
1740 if (text
[0] == '\0')
1750 #if defined(HAVE_GETPW_R_POSIX) || defined(HAVE_GETPW_R_DRAFT)
1751 getpwent_r(&pwres
, pwbuf
, sizeof(pwbuf
), &pass
) == 0 && pass
!= NULL
1753 (pass
= getpwent()) != NULL
1755 && text
[0] == pass
->pw_name
[0]
1756 && strcmp(text
, pass
->pw_name
) == 0)
1763 return strdup(pass
->pw_name
);
1768 * el-compatible wrapper to send TSTP on ^Z
1771 static unsigned char
1772 _el_rl_tstp(EditLine
*el
__attribute__((__unused__
)), int ch
__attribute__((__unused__
)))
1774 (void)kill(0, SIGTSTP
);
1779 * Display list of strings in columnar format on readline's output stream.
1780 * 'matches' is list of strings, 'len' is number of strings in 'matches',
1781 * 'max' is maximum length of string in 'matches'.
1784 rl_display_match_list(char **matches
, int len
, int max
)
1787 fn_display_match_list(e
, matches
, (size_t)len
, (size_t)max
);
1792 _rl_completion_append_character_function(const char *dummy
1793 __attribute__((__unused__
)))
1796 buf
[0] = (char)rl_completion_append_character
;
1803 * complete word at current point
1807 rl_complete(int ignore
__attribute__((__unused__
)), int invoking_key
)
1810 static ct_buffer_t wbreak_conv
, sprefix_conv
;
1814 if (h
== NULL
|| e
== NULL
)
1817 if (rl_inhibit_completion
) {
1819 arr
[0] = (char)invoking_key
;
1821 el_insertstr(e
, arr
);
1825 if (rl_completion_word_break_hook
!= NULL
)
1826 breakchars
= (*rl_completion_word_break_hook
)();
1828 breakchars
= rl_basic_word_break_characters
;
1832 /* Just look at how many global variables modify this operation! */
1833 return fn_complete(e
,
1834 (rl_compentry_func_t
*)rl_completion_entry_function
,
1835 rl_attempted_completion_function
,
1836 ct_decode_string(rl_basic_word_break_characters
, &wbreak_conv
),
1837 ct_decode_string(breakchars
, &sprefix_conv
),
1838 _rl_completion_append_character_function
,
1839 (size_t)rl_completion_query_items
,
1840 &rl_completion_type
, &rl_attempted_completion_over
,
1841 &rl_point
, &rl_end
);
1848 static unsigned char
1849 _el_rl_complete(EditLine
*el
__attribute__((__unused__
)), int ch
)
1851 return (unsigned char)rl_complete(0, ch
);
1855 * misc other functions
1859 * bind key c to readline-type function func
1862 rl_bind_key(int c
, rl_command_func_t
*func
)
1866 if (h
== NULL
|| e
== NULL
)
1869 if (func
== rl_insert
) {
1870 /* XXX notice there is no range checking of ``c'' */
1871 e
->el_map
.key
[c
] = ED_INSERT
;
1879 * read one key from input - handles chars pushed back
1880 * to input stream also
1885 char fooarr
[2 * sizeof(int)];
1887 if (e
== NULL
|| h
== NULL
)
1890 return el_getc(e
, fooarr
);
1895 * reset the terminal
1899 rl_reset_terminal(const char *p
__attribute__((__unused__
)))
1902 if (h
== NULL
|| e
== NULL
)
1909 * insert character ``c'' back into input stream, ``count'' times
1912 rl_insert(int count
, int c
)
1916 if (h
== NULL
|| e
== NULL
)
1919 /* XXX - int -> char conversion can lose on multichars */
1923 for (; count
> 0; count
--)
1930 rl_insert_text(const char *text
)
1932 if (!text
|| *text
== 0)
1935 if (h
== NULL
|| e
== NULL
)
1938 if (el_insertstr(e
, text
) < 0)
1940 return (int)strlen(text
);
1945 rl_newline(int count
__attribute__((__unused__
)),
1946 int c
__attribute__((__unused__
)))
1949 * Readline-4.0 appears to ignore the args.
1951 return rl_insert(1, '\n');
1955 static unsigned char
1956 rl_bind_wrapper(EditLine
*el
__attribute__((__unused__
)), unsigned char c
)
1965 /* If rl_done was set by the above call, deal with it here */
1973 rl_add_defun(const char *name
, rl_command_func_t
*fun
, int c
)
1976 if ((size_t)c
>= sizeof(map
) / sizeof(map
[0]) || c
< 0)
1978 map
[(unsigned char)c
] = fun
;
1979 el_set(e
, EL_ADDFN
, name
, name
, rl_bind_wrapper
);
1980 vis(dest
, c
, VIS_WHITE
|VIS_NOSLASH
, 0);
1981 el_set(e
, EL_BIND
, dest
, name
, NULL
);
1986 rl_callback_read_char(void)
1988 int count
= 0, done
= 0;
1989 const char *buf
= el_gets(e
, &count
);
1992 if (buf
== NULL
|| count
-- <= 0)
1994 if (count
== 0 && buf
[0] == e
->el_tty
.t_c
[TS_IO
][C_EOF
])
1996 if (buf
[count
] == '\n' || buf
[count
] == '\r')
1999 if (done
&& rl_linefunc
!= NULL
) {
2000 el_set(e
, EL_UNBUFFERED
, 0);
2002 if ((wbuf
= strdup(buf
)) != NULL
)
2006 (*(void (*)(const char *))rl_linefunc
)(wbuf
);
2007 el_set(e
, EL_UNBUFFERED
, 1);
2012 rl_callback_handler_install(const char *prompt
, rl_vcpfunc_t
*linefunc
)
2017 (void)rl_set_prompt(prompt
);
2018 rl_linefunc
= linefunc
;
2019 el_set(e
, EL_UNBUFFERED
, 1);
2023 rl_callback_handler_remove(void)
2025 el_set(e
, EL_UNBUFFERED
, 0);
2033 a
[0] = (char)e
->el_tty
.t_c
[TS_IO
][C_REPRINT
];
2039 rl_get_previous_history(int count
, int key
)
2051 rl_prep_terminal(int meta_flag
__attribute__((__unused__
)))
2053 el_set(e
, EL_PREP_TERM
, 1);
2057 rl_deprep_terminal(void)
2059 el_set(e
, EL_PREP_TERM
, 0);
2063 rl_read_init_file(const char *s
)
2065 return el_source(e
, s
);
2069 rl_parse_and_bind(const char *line
)
2075 tok
= tok_init(NULL
);
2076 tok_str(tok
, line
, &argc
, &argv
);
2077 argc
= el_parse(e
, argc
, argv
);
2079 return argc
? 1 : 0;
2083 rl_variable_bind(const char *var
, const char *value
)
2086 * The proper return value is undocument, but this is what the
2087 * readline source seems to do.
2089 return el_set(e
, EL_BIND
, "", var
, value
, NULL
) == -1 ? 1 : 0;
2093 rl_stuff_char(int c
)
2099 el_insertstr(e
, buf
);
2103 _rl_event_read_char(EditLine
*el
, char *cp
)
2106 ssize_t num_read
= 0;
2109 while (rl_event_hook
) {
2113 #if defined(FIONREAD)
2114 if (ioctl(el
->el_infd
, FIONREAD
, &n
) < 0)
2117 num_read
= read(el
->el_infd
, cp
, (size_t)1);
2120 #elif defined(F_SETFL) && defined(O_NDELAY)
2121 if ((n
= fcntl(el
->el_infd
, F_GETFL
, 0)) < 0)
2123 if (fcntl(el
->el_infd
, F_SETFL
, n
|O_NDELAY
) < 0)
2125 num_read
= read(el
->el_infd
, cp
, 1);
2126 if (fcntl(el
->el_infd
, F_SETFL
, n
))
2129 /* not non-blocking, but what you gonna do? */
2130 num_read
= read(el
->el_infd
, cp
, 1);
2134 if (num_read
< 0 && errno
== EAGAIN
)
2141 el_set(el
, EL_GETCFN
, EL_BUILTIN_GETCFN
);
2142 return (int)num_read
;
2146 _rl_update_pos(void)
2148 const LineInfo
*li
= el_line(e
);
2150 rl_point
= (int)(li
->cursor
- li
->buffer
);
2151 rl_end
= (int)(li
->lastchar
- li
->buffer
);
2155 rl_get_screen_size(int *rows
, int *cols
)
2158 el_get(e
, EL_GETTC
, "li", rows
, (void *)0);
2160 el_get(e
, EL_GETTC
, "co", cols
, (void *)0);
2164 rl_set_screen_size(int rows
, int cols
)
2167 (void)snprintf(buf
, sizeof(buf
), "%d", rows
);
2168 el_set(e
, EL_SETTC
, "li", buf
, NULL
);
2169 (void)snprintf(buf
, sizeof(buf
), "%d", cols
);
2170 el_set(e
, EL_SETTC
, "co", buf
, NULL
);
2174 rl_completion_matches(const char *str
, rl_compentry_func_t
*fun
)
2176 size_t len
, max
, i
, j
, min
;
2177 char **list
, *match
, *a
, *b
;
2181 if ((list
= el_malloc(max
* sizeof(*list
))) == NULL
)
2184 while ((match
= (*fun
)(str
, (int)(len
- 1))) != NULL
) {
2185 list
[len
++] = match
;
2189 if ((nl
= el_realloc(list
, max
* sizeof(*nl
))) == NULL
)
2198 if ((list
[0] = strdup(list
[1])) == NULL
)
2202 qsort(&list
[1], len
- 1, sizeof(*list
),
2203 (int (*)(const void *, const void *)) strcmp
);
2205 for (i
= 1, a
= list
[i
]; i
< len
- 1; i
++, a
= b
) {
2207 for (j
= 0; a
[j
] && a
[j
] == b
[j
]; j
++)
2212 if (min
== 0 && *str
) {
2213 if ((list
[0] = strdup(str
)) == NULL
)
2216 if ((list
[0] = el_malloc((min
+ 1) * sizeof(*list
[0]))) == NULL
)
2218 (void)memcpy(list
[0], list
[1], min
);
2219 list
[0][min
] = '\0';
2229 rl_filename_completion_function (const char *text
, int state
)
2231 return fn_filename_completion_function(text
, state
);
2235 rl_forced_update_display(void)
2237 el_set(e
, EL_REFRESH
);
2241 _rl_abort_internal(void)
2249 _rl_qsort_string_compare(char **s1
, char **s2
)
2251 return strcoll(*s1
, *s2
);
2255 history_get_history_state(void)
2259 if ((hs
= el_malloc(sizeof(*hs
))) == NULL
)
2261 hs
->length
= history_length
;
2267 rl_kill_text(int from
__attribute__((__unused__
)),
2268 int to
__attribute__((__unused__
)))
2274 rl_make_bare_keymap(void)
2287 rl_set_keymap(Keymap k
__attribute__((__unused__
)))
2293 rl_generic_bind(int type
__attribute__((__unused__
)),
2294 const char * keyseq
__attribute__((__unused__
)),
2295 const char * data
__attribute__((__unused__
)),
2296 Keymap k
__attribute__((__unused__
)))
2303 rl_bind_key_in_map(int key
__attribute__((__unused__
)),
2304 rl_command_func_t
*fun
__attribute__((__unused__
)),
2305 Keymap k
__attribute__((__unused__
)))
2310 /* unsupported, but needed by python */
2312 rl_cleanup_after_signal(void)
2317 rl_on_new_line(void)
2323 rl_free_line_state(void)