1 /* Line completion stuff for GDB, the GNU debugger.
2 Copyright (C) 2000-2015 Free Software Foundation, Inc.
4 This file is part of GDB.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
22 #include "expression.h"
23 #include "filenames.h" /* For DOSish file names. */
25 #include "gdb_signals.h"
27 #include "reggroups.h"
28 #include "user-regs.h"
30 #include "cli/cli-decode.h"
32 /* FIXME: This is needed because of lookup_cmd_1 (). We should be
33 calling a hook instead so we eliminate the CLI dependency. */
36 /* Needed for rl_completer_word_break_characters() and for
37 rl_filename_completion_function. */
38 #include "readline/readline.h"
40 /* readline defines this. */
43 #include "completer.h"
45 /* Prototypes for local functions. */
47 char *line_completion_function (const char *text, int matches,
51 /* readline uses the word breaks for two things:
52 (1) In figuring out where to point the TEXT parameter to the
53 rl_completion_entry_function. Since we don't use TEXT for much,
54 it doesn't matter a lot what the word breaks are for this purpose,
55 but it does affect how much stuff M-? lists.
56 (2) If one of the matches contains a word break character, readline
57 will quote it. That's why we switch between
58 current_language->la_word_break_characters() and
59 gdb_completer_command_word_break_characters. I'm not sure when
60 we need this behavior (perhaps for funky characters in C++
63 /* Variables which are necessary for fancy command line editing. */
65 /* When completing on command names, we remove '-' from the list of
66 word break characters, since we use it in command names. If the
67 readline library sees one in any of the current completion strings,
68 it thinks that the string needs to be quoted and automatically
69 supplies a leading quote. */
70 static char *gdb_completer_command_word_break_characters =
71 " \t\n!@#$%^&*()+=|~`}{[]\"';:?/>.<,";
73 /* When completing on file names, we remove from the list of word
74 break characters any characters that are commonly used in file
75 names, such as '-', '+', '~', etc. Otherwise, readline displays
76 incorrect completion candidates. */
77 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
78 /* MS-DOS and MS-Windows use colon as part of the drive spec, and most
79 programs support @foo style response files. */
80 static char *gdb_completer_file_name_break_characters = " \t\n*|\"';?><@";
82 static char *gdb_completer_file_name_break_characters = " \t\n*|\"';:?><";
85 /* Characters that can be used to quote completion strings. Note that
86 we can't include '"' because the gdb C parser treats such quoted
87 sequences as strings. */
88 static char *gdb_completer_quote_characters = "'";
90 /* Accessor for some completer data that may interest other files. */
93 get_gdb_completer_quote_characters (void)
95 return gdb_completer_quote_characters;
98 /* Line completion interface function for readline. */
101 readline_line_completion_function (const char *text, int matches)
103 return line_completion_function (text, matches,
104 rl_line_buffer, rl_point);
107 /* This can be used for functions which don't want to complete on
108 symbols but don't want to complete on anything else either. */
110 noop_completer (struct cmd_list_element *ignore,
111 const char *text, const char *prefix)
116 /* Complete on filenames. */
118 filename_completer (struct cmd_list_element *ignore,
119 const char *text, const char *word)
122 VEC (char_ptr) *return_val = NULL;
129 p = rl_filename_completion_function (text, subsequent_name);
132 /* We need to set subsequent_name to a non-zero value before the
133 continue line below, because otherwise, if the first file
134 seen by GDB is a backup file whose name ends in a `~', we
135 will loop indefinitely. */
137 /* Like emacs, don't complete on old versions. Especially
138 useful in the "source" command. */
139 if (p[strlen (p) - 1] == '~')
146 /* Return exactly p. */
148 else if (word > text)
150 /* Return some portion of p. */
151 q = xmalloc (strlen (p) + 5);
152 strcpy (q, p + (word - text));
157 /* Return some of TEXT plus p. */
158 q = xmalloc (strlen (p) + (text - word) + 5);
159 strncpy (q, word, text - word);
160 q[text - word] = '\0';
164 VEC_safe_push (char_ptr, return_val, q);
167 /* There is no way to do this just long enough to affect quote
168 inserting without also affecting the next completion. This
169 should be fixed in readline. FIXME. */
170 /* Ensure that readline does the right thing
171 with respect to inserting quotes. */
172 rl_completer_word_break_characters = "";
177 /* Complete on locations, which might be of two possible forms:
183 This is intended to be used in commands that set breakpoints
187 location_completer (struct cmd_list_element *ignore,
188 const char *text, const char *word)
190 int n_syms, n_files, ix;
191 VEC (char_ptr) *fn_list = NULL;
192 VEC (char_ptr) *list = NULL;
195 int quoted = *text == '\'' || *text == '"';
196 int quote_char = '\0';
197 const char *colon = NULL;
198 char *file_to_match = NULL;
199 const char *symbol_start = text;
200 const char *orig_text = text;
203 /* Do we have an unquoted colon, as in "break foo.c:bar"? */
204 for (p = text; *p != '\0'; ++p)
206 if (*p == '\\' && p[1] == '\'')
208 else if (*p == '\'' || *p == '"')
212 while (*p != '\0' && *p != quote_found)
214 if (*p == '\\' && p[1] == quote_found)
219 if (*p == quote_found)
222 break; /* Hit the end of text. */
224 #if HAVE_DOS_BASED_FILE_SYSTEM
225 /* If we have a DOS-style absolute file name at the beginning of
226 TEXT, and the colon after the drive letter is the only colon
227 we found, pretend the colon is not there. */
228 else if (p < text + 3 && *p == ':' && p == text + 1 + quoted)
231 else if (*p == ':' && !colon)
234 symbol_start = p + 1;
236 else if (strchr (current_language->la_word_break_characters(), *p))
237 symbol_start = p + 1;
242 text_len = strlen (text);
244 /* Where is the file name? */
249 file_to_match = (char *) xmalloc (colon - text + 1);
250 strncpy (file_to_match, text, colon - text + 1);
251 /* Remove trailing colons and quotes from the file name. */
252 for (s = file_to_match + (colon - text);
255 if (*s == ':' || *s == quote_char)
258 /* If the text includes a colon, they want completion only on a
259 symbol name after the colon. Otherwise, we need to complete on
260 symbols as well as on files. */
263 list = make_file_symbol_completion_list (symbol_start, word,
265 xfree (file_to_match);
269 list = make_symbol_completion_list (symbol_start, word);
270 /* If text includes characters which cannot appear in a file
271 name, they cannot be asking for completion on files. */
273 gdb_completer_file_name_break_characters) == text_len)
274 fn_list = make_source_files_completion_list (text, text);
277 n_syms = VEC_length (char_ptr, list);
278 n_files = VEC_length (char_ptr, fn_list);
280 /* Catenate fn_list[] onto the end of list[]. */
283 VEC_free (char_ptr, list); /* Paranoia. */
291 for (ix = 0; VEC_iterate (char_ptr, fn_list, ix, fn); ++ix)
292 VEC_safe_push (char_ptr, list, fn);
293 VEC_free (char_ptr, fn_list);
296 if (n_syms && n_files)
304 /* If we only have file names as possible completion, we should
305 bring them in sync with what rl_complete expects. The
306 problem is that if the user types "break /foo/b TAB", and the
307 possible completions are "/foo/bar" and "/foo/baz"
308 rl_complete expects us to return "bar" and "baz", without the
309 leading directories, as possible completions, because `word'
310 starts at the "b". But we ignore the value of `word' when we
311 call make_source_files_completion_list above (because that
312 would not DTRT when the completion results in both symbols
313 and file names), so make_source_files_completion_list returns
314 the full "/foo/bar" and "/foo/baz" strings. This produces
315 wrong results when, e.g., there's only one possible
316 completion, because rl_complete will prepend "/foo/" to each
317 candidate completion. The loop below removes that leading
319 for (ix = 0; VEC_iterate (char_ptr, list, ix, fn); ++ix)
321 memmove (fn, fn + (word - text),
322 strlen (fn) + 1 - (word - text));
327 /* No completions at all. As the final resort, try completing
328 on the entire text as a symbol. */
329 list = make_symbol_completion_list (orig_text, word);
335 /* Helper for expression_completer which recursively adds field and
336 method names from TYPE, a struct or union type, to the array
339 add_struct_fields (struct type *type, VEC (char_ptr) **output,
340 char *fieldname, int namelen)
343 int computed_type_name = 0;
344 const char *type_name = NULL;
346 CHECK_TYPEDEF (type);
347 for (i = 0; i < TYPE_NFIELDS (type); ++i)
349 if (i < TYPE_N_BASECLASSES (type))
350 add_struct_fields (TYPE_BASECLASS (type, i),
351 output, fieldname, namelen);
352 else if (TYPE_FIELD_NAME (type, i))
354 if (TYPE_FIELD_NAME (type, i)[0] != '\0')
356 if (! strncmp (TYPE_FIELD_NAME (type, i),
358 VEC_safe_push (char_ptr, *output,
359 xstrdup (TYPE_FIELD_NAME (type, i)));
361 else if (TYPE_CODE (TYPE_FIELD_TYPE (type, i)) == TYPE_CODE_UNION)
363 /* Recurse into anonymous unions. */
364 add_struct_fields (TYPE_FIELD_TYPE (type, i),
365 output, fieldname, namelen);
370 for (i = TYPE_NFN_FIELDS (type) - 1; i >= 0; --i)
372 const char *name = TYPE_FN_FIELDLIST_NAME (type, i);
374 if (name && ! strncmp (name, fieldname, namelen))
376 if (!computed_type_name)
378 type_name = type_name_no_tag (type);
379 computed_type_name = 1;
381 /* Omit constructors from the completion list. */
382 if (!type_name || strcmp (type_name, name))
383 VEC_safe_push (char_ptr, *output, xstrdup (name));
388 /* Complete on expressions. Often this means completing on symbol
389 names, but some language parsers also have support for completing
392 expression_completer (struct cmd_list_element *ignore,
393 const char *text, const char *word)
395 struct type *type = NULL;
398 volatile struct gdb_exception except;
399 enum type_code code = TYPE_CODE_UNDEF;
401 /* Perform a tentative parse of the expression, to see whether a
402 field completion is required. */
404 TRY_CATCH (except, RETURN_MASK_ERROR)
406 type = parse_expression_for_completion (text, &fieldname, &code);
408 if (except.reason < 0)
410 if (fieldname && type)
414 CHECK_TYPEDEF (type);
415 if (TYPE_CODE (type) != TYPE_CODE_PTR
416 && TYPE_CODE (type) != TYPE_CODE_REF)
418 type = TYPE_TARGET_TYPE (type);
421 if (TYPE_CODE (type) == TYPE_CODE_UNION
422 || TYPE_CODE (type) == TYPE_CODE_STRUCT)
424 int flen = strlen (fieldname);
425 VEC (char_ptr) *result = NULL;
427 add_struct_fields (type, &result, fieldname, flen);
432 else if (fieldname && code != TYPE_CODE_UNDEF)
434 VEC (char_ptr) *result;
435 struct cleanup *cleanup = make_cleanup (xfree, fieldname);
437 result = make_symbol_completion_type (fieldname, fieldname, code);
438 do_cleanups (cleanup);
443 /* Commands which complete on locations want to see the entire
446 p > text && p[-1] != ' ' && p[-1] != '\t';
450 /* Not ideal but it is what we used to do before... */
451 return location_completer (ignore, p, word);
454 /* See definition in completer.h. */
457 set_gdb_completion_word_break_characters (completer_ftype *fn)
459 /* So far we are only interested in differentiating filename
460 completers from everything else. */
461 if (fn == filename_completer)
462 rl_completer_word_break_characters
463 = gdb_completer_file_name_break_characters;
465 rl_completer_word_break_characters
466 = gdb_completer_command_word_break_characters;
469 /* Here are some useful test cases for completion. FIXME: These
470 should be put in the test suite. They should be tested with both
473 "show output-" "radix"
474 "show output" "-radix"
475 "p" ambiguous (commands starting with p--path, print, printf, etc.)
476 "p " ambiguous (all symbols)
477 "info t foo" no completions
478 "info t " no completions
479 "info t" ambiguous ("info target", "info terminal", etc.)
480 "info ajksdlfk" no completions
481 "info ajksdlfk " no completions
483 "info " ambiguous (all info commands)
484 "p \"a" no completions (string constant)
485 "p 'a" ambiguous (all symbols starting with a)
486 "p b-a" ambiguous (all symbols starting with a)
487 "p b-" ambiguous (all symbols)
488 "file Make" "file" (word break hard to screw up here)
489 "file ../gdb.stabs/we" "ird" (needs to not break word at slash)
498 complete_line_internal_reason;
501 /* Internal function used to handle completions.
504 TEXT is the caller's idea of the "word" we are looking at.
506 LINE_BUFFER is available to be looked at; it contains the entire
507 text of the line. POINT is the offset in that line of the cursor.
508 You should pretend that the line ends at POINT.
510 REASON is of type complete_line_internal_reason.
512 If REASON is handle_brkchars:
513 Preliminary phase, called by gdb_completion_word_break_characters
514 function, is used to determine the correct set of chars that are
515 word delimiters depending on the current command in line_buffer.
516 No completion list should be generated; the return value should be
517 NULL. This is checked by an assertion in that function.
519 If REASON is handle_completions:
520 Main phase, called by complete_line function, is used to get the list
521 of posible completions.
523 If REASON is handle_help:
524 Special case when completing a 'help' command. In this case,
525 once sub-command completions are exhausted, we simply return NULL.
528 static VEC (char_ptr) *
529 complete_line_internal (const char *text,
530 const char *line_buffer, int point,
531 complete_line_internal_reason reason)
533 VEC (char_ptr) *list = NULL;
536 int ignore_help_classes;
537 /* Pointer within tmp_command which corresponds to text. */
539 struct cmd_list_element *c, *result_list;
541 /* Choose the default set of word break characters to break
542 completions. If we later find out that we are doing completions
543 on command strings (as opposed to strings supplied by the
544 individual command completer functions, which can be any string)
545 then we will switch to the special word break set for command
546 strings, which leaves out the '-' character used in some
548 rl_completer_word_break_characters =
549 current_language->la_word_break_characters();
551 /* Decide whether to complete on a list of gdb commands or on
553 tmp_command = (char *) alloca (point + 1);
556 /* The help command should complete help aliases. */
557 ignore_help_classes = reason != handle_help;
559 strncpy (tmp_command, line_buffer, point);
560 tmp_command[point] = '\0';
561 /* Since text always contains some number of characters leading up
562 to point, we can find the equivalent position in tmp_command
563 by subtracting that many characters from the end of tmp_command. */
564 word = tmp_command + point - strlen (text);
568 /* An empty line we want to consider ambiguous; that is, it
569 could be any command. */
570 c = CMD_LIST_AMBIGUOUS;
575 c = lookup_cmd_1 (&p, cmdlist, &result_list, ignore_help_classes);
578 /* Move p up to the next interesting thing. */
579 while (*p == ' ' || *p == '\t')
586 /* It is an unrecognized command. So there are no
587 possible completions. */
590 else if (c == CMD_LIST_AMBIGUOUS)
594 /* lookup_cmd_1 advances p up to the first ambiguous thing, but
595 doesn't advance over that thing itself. Do so now. */
597 while (*q && (isalnum (*q) || *q == '-' || *q == '_'))
599 if (q != tmp_command + point)
601 /* There is something beyond the ambiguous
602 command, so there are no possible completions. For
603 example, "info t " or "info t foo" does not complete
604 to anything, because "info t" can be "info target" or
610 /* We're trying to complete on the command which was ambiguous.
611 This we can deal with. */
614 if (reason != handle_brkchars)
615 list = complete_on_cmdlist (*result_list->prefixlist, p,
616 word, ignore_help_classes);
620 if (reason != handle_brkchars)
621 list = complete_on_cmdlist (cmdlist, p, word,
622 ignore_help_classes);
624 /* Ensure that readline does the right thing with respect to
626 rl_completer_word_break_characters =
627 gdb_completer_command_word_break_characters;
632 /* We've recognized a full command. */
634 if (p == tmp_command + point)
636 /* There is no non-whitespace in the line beyond the
639 if (p[-1] == ' ' || p[-1] == '\t')
641 /* The command is followed by whitespace; we need to
642 complete on whatever comes after command. */
645 /* It is a prefix command; what comes after it is
646 a subcommand (e.g. "info "). */
647 if (reason != handle_brkchars)
648 list = complete_on_cmdlist (*c->prefixlist, p, word,
649 ignore_help_classes);
651 /* Ensure that readline does the right thing
652 with respect to inserting quotes. */
653 rl_completer_word_break_characters =
654 gdb_completer_command_word_break_characters;
656 else if (reason == handle_help)
660 if (reason != handle_brkchars)
661 list = complete_on_enum (c->enums, p, word);
662 rl_completer_word_break_characters =
663 gdb_completer_command_word_break_characters;
667 /* It is a normal command; what comes after it is
668 completed by the command's completer function. */
669 if (c->completer == filename_completer)
671 /* Many commands which want to complete on
672 file names accept several file names, as
673 in "run foo bar >>baz". So we don't want
674 to complete the entire text after the
675 command, just the last word. To this
676 end, we need to find the beginning of the
677 file name by starting at `word' and going
681 && strchr (gdb_completer_file_name_break_characters, p[-1]) == NULL;
684 rl_completer_word_break_characters =
685 gdb_completer_file_name_break_characters;
687 else if (c->completer == location_completer)
689 /* Commands which complete on locations want to
690 see the entire argument. */
693 && p[-1] != ' ' && p[-1] != '\t';
697 if (reason == handle_brkchars
698 && c->completer_handle_brkchars != NULL)
699 (*c->completer_handle_brkchars) (c, p, word);
700 if (reason != handle_brkchars && c->completer != NULL)
701 list = (*c->completer) (c, p, word);
706 /* The command is not followed by whitespace; we need to
707 complete on the command itself, e.g. "p" which is a
708 command itself but also can complete to "print", "ptype"
712 /* Find the command we are completing on. */
714 while (q > tmp_command)
716 if (isalnum (q[-1]) || q[-1] == '-' || q[-1] == '_')
722 if (reason != handle_brkchars)
723 list = complete_on_cmdlist (result_list, q, word,
724 ignore_help_classes);
726 /* Ensure that readline does the right thing
727 with respect to inserting quotes. */
728 rl_completer_word_break_characters =
729 gdb_completer_command_word_break_characters;
732 else if (reason == handle_help)
736 /* There is non-whitespace beyond the command. */
738 if (c->prefixlist && !c->allow_unknown)
740 /* It is an unrecognized subcommand of a prefix command,
741 e.g. "info adsfkdj". */
746 if (reason != handle_brkchars)
747 list = complete_on_enum (c->enums, p, word);
751 /* It is a normal command. */
752 if (c->completer == filename_completer)
754 /* See the commentary above about the specifics
755 of file-name completion. */
758 && strchr (gdb_completer_file_name_break_characters,
762 rl_completer_word_break_characters =
763 gdb_completer_file_name_break_characters;
765 else if (c->completer == location_completer)
769 && p[-1] != ' ' && p[-1] != '\t';
773 if (reason == handle_brkchars
774 && c->completer_handle_brkchars != NULL)
775 (*c->completer_handle_brkchars) (c, p, word);
776 if (reason != handle_brkchars && c->completer != NULL)
777 list = (*c->completer) (c, p, word);
784 /* Generate completions all at once. Returns a vector of strings.
785 Each element is allocated with xmalloc. It can also return NULL if
786 there are no completions.
788 TEXT is the caller's idea of the "word" we are looking at.
790 LINE_BUFFER is available to be looked at; it contains the entire
793 POINT is the offset in that line of the cursor. You
794 should pretend that the line ends at POINT. */
797 complete_line (const char *text, const char *line_buffer, int point)
799 return complete_line_internal (text, line_buffer,
800 point, handle_completions);
803 /* Complete on command names. Used by "help". */
805 command_completer (struct cmd_list_element *ignore,
806 const char *text, const char *word)
808 return complete_line_internal (word, text,
809 strlen (text), handle_help);
812 /* Complete on signals. */
815 signal_completer (struct cmd_list_element *ignore,
816 const char *text, const char *word)
818 VEC (char_ptr) *return_val = NULL;
819 size_t len = strlen (word);
820 enum gdb_signal signum;
823 for (signum = GDB_SIGNAL_FIRST; signum != GDB_SIGNAL_LAST; ++signum)
825 /* Can't handle this, so skip it. */
826 if (signum == GDB_SIGNAL_0)
829 signame = gdb_signal_to_name (signum);
831 /* Ignore the unknown signal case. */
832 if (!signame || strcmp (signame, "?") == 0)
835 if (strncasecmp (signame, word, len) == 0)
836 VEC_safe_push (char_ptr, return_val, xstrdup (signame));
842 /* Complete on a register or reggroup. */
845 reg_or_group_completer (struct cmd_list_element *ignore,
846 const char *text, const char *word)
848 VEC (char_ptr) *result = NULL;
849 size_t len = strlen (word);
850 struct gdbarch *gdbarch;
851 struct reggroup *group;
855 if (!target_has_registers)
858 gdbarch = get_frame_arch (get_selected_frame (NULL));
861 (name = user_reg_map_regnum_to_name (gdbarch, i)) != NULL;
864 if (*name != '\0' && strncmp (word, name, len) == 0)
865 VEC_safe_push (char_ptr, result, xstrdup (name));
868 for (group = reggroup_next (gdbarch, NULL);
870 group = reggroup_next (gdbarch, group))
872 name = reggroup_name (group);
873 if (strncmp (word, name, len) == 0)
874 VEC_safe_push (char_ptr, result, xstrdup (name));
881 /* Get the list of chars that are considered as word breaks
882 for the current command. */
885 gdb_completion_word_break_characters (void)
887 VEC (char_ptr) *list;
889 list = complete_line_internal (rl_line_buffer, rl_line_buffer, rl_point,
891 gdb_assert (list == NULL);
892 return rl_completer_word_break_characters;
895 /* Generate completions one by one for the completer. Each time we
896 are called return another potential completion to the caller.
897 line_completion just completes on commands or passes the buck to
898 the command's completer function, the stuff specific to symbol
899 completion is in make_symbol_completion_list.
901 TEXT is the caller's idea of the "word" we are looking at.
903 MATCHES is the number of matches that have currently been collected
904 from calling this completion function. When zero, then we need to
905 initialize, otherwise the initialization has already taken place
906 and we can just return the next potential completion string.
908 LINE_BUFFER is available to be looked at; it contains the entire
909 text of the line. POINT is the offset in that line of the cursor.
910 You should pretend that the line ends at POINT.
912 Returns NULL if there are no more completions, else a pointer to a
913 string which is a possible completion, it is the caller's
914 responsibility to free the string. */
917 line_completion_function (const char *text, int matches,
918 char *line_buffer, int point)
920 static VEC (char_ptr) *list = NULL; /* Cache of completions. */
921 static int index; /* Next cached completion. */
926 /* The caller is beginning to accumulate a new set of
927 completions, so we need to find all of them now, and cache
928 them for returning one at a time on future calls. */
932 /* Free the storage used by LIST, but not by the strings
933 inside. This is because rl_complete_internal () frees
934 the strings. As complete_line may abort by calling
935 `error' clear LIST now. */
936 VEC_free (char_ptr, list);
939 list = complete_line (text, line_buffer, point);
942 /* If we found a list of potential completions during initialization
943 then dole them out one at a time. After returning the last one,
944 return NULL (and continue to do so) each time we are called after
945 that, until a new list is available. */
949 if (index < VEC_length (char_ptr, list))
951 output = VEC_index (char_ptr, list, index);
957 /* Can't do this because readline hasn't yet checked the word breaks
958 for figuring out whether to insert a quote. */
960 /* Make sure the word break characters are set back to normal for
961 the next time that readline tries to complete something. */
962 rl_completer_word_break_characters =
963 current_language->la_word_break_characters();
969 /* Skip over the possibly quoted word STR (as defined by the quote
970 characters QUOTECHARS and the word break characters BREAKCHARS).
971 Returns pointer to the location after the "word". If either
972 QUOTECHARS or BREAKCHARS is NULL, use the same values used by the
976 skip_quoted_chars (const char *str, const char *quotechars,
977 const char *breakchars)
979 char quote_char = '\0';
982 if (quotechars == NULL)
983 quotechars = gdb_completer_quote_characters;
985 if (breakchars == NULL)
986 breakchars = current_language->la_word_break_characters();
988 for (scan = str; *scan != '\0'; scan++)
990 if (quote_char != '\0')
992 /* Ignore everything until the matching close quote char. */
993 if (*scan == quote_char)
995 /* Found matching close quote. */
1000 else if (strchr (quotechars, *scan))
1002 /* Found start of a quoted string. */
1005 else if (strchr (breakchars, *scan))
1014 /* Skip over the possibly quoted word STR (as defined by the quote
1015 characters and word break characters used by the completer).
1016 Returns pointer to the location after the "word". */
1019 skip_quoted (const char *str)
1021 return skip_quoted_chars (str, NULL, NULL);
1024 /* GDB replacement for rl_display_match_list.
1025 Readline doesn't provide a clean interface for TUI(curses).
1026 A hack previously used was to send readline's rl_outstream through a pipe
1027 and read it from the event loop. Bleah. IWBN if readline abstracted
1028 away all the necessary bits, and this is what this code does. It
1029 replicates the parts of readline we need and then adds an abstraction
1030 layer, currently implemented as struct match_list_displayer, so that both
1031 CLI and TUI can use it. We copy all this readline code to minimize
1032 GDB-specific mods to readline. Once this code performs as desired then
1033 we can submit it to the readline maintainers.
1035 N.B. A lot of the code is the way it is in order to minimize differences
1036 from readline's copy. */
1038 /* Not supported here. */
1039 #undef VISIBLE_STATS
1041 #if defined (HANDLE_MULTIBYTE)
1042 #define MB_INVALIDCH(x) ((x) == (size_t)-1 || (x) == (size_t)-2)
1043 #define MB_NULLWCH(x) ((x) == 0)
1046 #define ELLIPSIS_LEN 3
1048 /* gdb version of readline/complete.c:get_y_or_n.
1049 'y' -> returns 1, and 'n' -> returns 0.
1050 Also supported: space == 'y', RUBOUT == 'n', ctrl-g == start over.
1051 If FOR_PAGER is non-zero, then also supported are:
1052 NEWLINE or RETURN -> returns 2, and 'q' -> returns 0. */
1055 gdb_get_y_or_n (int for_pager, const struct match_list_displayer *displayer)
1061 RL_SETSTATE (RL_STATE_MOREINPUT);
1062 c = displayer->read_key (displayer);
1063 RL_UNSETSTATE (RL_STATE_MOREINPUT);
1065 if (c == 'y' || c == 'Y' || c == ' ')
1067 if (c == 'n' || c == 'N' || c == RUBOUT)
1069 if (c == ABORT_CHAR || c < 0)
1071 /* Readline doesn't erase_entire_line here, but without it the
1072 --More-- prompt isn't erased and neither is the text entered
1073 thus far redisplayed. */
1074 displayer->erase_entire_line (displayer);
1075 /* Note: The arguments to rl_abort are ignored. */
1078 if (for_pager && (c == NEWLINE || c == RETURN))
1080 if (for_pager && (c == 'q' || c == 'Q'))
1082 displayer->beep (displayer);
1086 /* Pager function for tab-completion.
1087 This is based on readline/complete.c:_rl_internal_pager.
1088 LINES is the number of lines of output displayed thus far.
1090 -1 -> user pressed 'n' or equivalent,
1091 0 -> user pressed 'y' or equivalent,
1092 N -> user pressed NEWLINE or equivalent and N is LINES - 1. */
1095 gdb_display_match_list_pager (int lines,
1096 const struct match_list_displayer *displayer)
1100 displayer->puts (displayer, "--More--");
1101 displayer->flush (displayer);
1102 i = gdb_get_y_or_n (1, displayer);
1103 displayer->erase_entire_line (displayer);
1112 /* Return non-zero if FILENAME is a directory.
1113 Based on readline/complete.c:path_isdir. */
1116 gdb_path_isdir (const char *filename)
1120 return (stat (filename, &finfo) == 0 && S_ISDIR (finfo.st_mode));
1123 /* Return the portion of PATHNAME that should be output when listing
1124 possible completions. If we are hacking filename completion, we
1125 are only interested in the basename, the portion following the
1126 final slash. Otherwise, we return what we were passed. Since
1127 printing empty strings is not very informative, if we're doing
1128 filename completion, and the basename is the empty string, we look
1129 for the previous slash and return the portion following that. If
1130 there's no previous slash, we just return what we were passed.
1132 Based on readline/complete.c:printable_part. */
1135 gdb_printable_part (char *pathname)
1139 if (rl_filename_completion_desired == 0) /* don't need to do anything */
1142 temp = strrchr (pathname, '/');
1143 #if defined (__MSDOS__)
1144 if (temp == 0 && ISALPHA ((unsigned char)pathname[0]) && pathname[1] == ':')
1145 temp = pathname + 1;
1148 if (temp == 0 || *temp == '\0')
1150 /* If the basename is NULL, we might have a pathname like '/usr/src/'.
1151 Look for a previous slash and, if one is found, return the portion
1152 following that slash. If there's no previous slash, just return the
1153 pathname we were passed. */
1154 else if (temp[1] == '\0')
1156 for (x = temp - 1; x > pathname; x--)
1159 return ((*x == '/') ? x + 1 : pathname);
1165 /* Compute width of STRING when displayed on screen by print_filename.
1166 Based on readline/complete.c:fnwidth. */
1169 gdb_fnwidth (const char *string)
1172 #if defined (HANDLE_MULTIBYTE)
1178 left = strlen (string) + 1;
1179 memset (&ps, 0, sizeof (mbstate_t));
1185 if (CTRL_CHAR (string[pos]) || string[pos] == RUBOUT)
1192 #if defined (HANDLE_MULTIBYTE)
1193 clen = mbrtowc (&wc, string + pos, left - pos, &ps);
1194 if (MB_INVALIDCH (clen))
1198 memset (&ps, 0, sizeof (mbstate_t));
1200 else if (MB_NULLWCH (clen))
1206 width += (w >= 0) ? w : 1;
1218 /* Print TO_PRINT, one matching completion.
1219 PREFIX_BYTES is number of common prefix bytes.
1220 Based on readline/complete.c:fnprint. */
1223 gdb_fnprint (const char *to_print, int prefix_bytes,
1224 const struct match_list_displayer *displayer)
1228 #if defined (HANDLE_MULTIBYTE)
1235 end = to_print + strlen (to_print) + 1;
1236 memset (&ps, 0, sizeof (mbstate_t));
1241 /* Don't print only the ellipsis if the common prefix is one of the
1242 possible completions */
1243 if (to_print[prefix_bytes] == '\0')
1250 ellipsis = (to_print[prefix_bytes] == '.') ? '_' : '.';
1251 for (w = 0; w < ELLIPSIS_LEN; w++)
1252 displayer->putch (displayer, ellipsis);
1253 printed_len = ELLIPSIS_LEN;
1256 s = to_print + prefix_bytes;
1261 displayer->putch (displayer, '^');
1262 displayer->putch (displayer, UNCTRL (*s));
1265 #if defined (HANDLE_MULTIBYTE)
1266 memset (&ps, 0, sizeof (mbstate_t));
1269 else if (*s == RUBOUT)
1271 displayer->putch (displayer, '^');
1272 displayer->putch (displayer, '?');
1275 #if defined (HANDLE_MULTIBYTE)
1276 memset (&ps, 0, sizeof (mbstate_t));
1281 #if defined (HANDLE_MULTIBYTE)
1282 tlen = mbrtowc (&wc, s, end - s, &ps);
1283 if (MB_INVALIDCH (tlen))
1287 memset (&ps, 0, sizeof (mbstate_t));
1289 else if (MB_NULLWCH (tlen))
1294 width = (w >= 0) ? w : 1;
1296 for (w = 0; w < tlen; ++w)
1297 displayer->putch (displayer, s[w]);
1299 printed_len += width;
1301 displayer->putch (displayer, *s);
1311 /* Output TO_PRINT to rl_outstream. If VISIBLE_STATS is defined and we
1312 are using it, check for and output a single character for `special'
1313 filenames. Return the number of characters we output.
1314 Based on readline/complete.c:print_filename. */
1317 gdb_print_filename (char *to_print, char *full_pathname, int prefix_bytes,
1318 const struct match_list_displayer *displayer)
1320 int printed_len, extension_char, slen, tlen;
1321 char *s, c, *new_full_pathname, *dn;
1322 extern int _rl_complete_mark_directories;
1325 printed_len = gdb_fnprint (to_print, prefix_bytes, displayer);
1327 #if defined (VISIBLE_STATS)
1328 if (rl_filename_completion_desired && (rl_visible_stats || _rl_complete_mark_directories))
1330 if (rl_filename_completion_desired && _rl_complete_mark_directories)
1333 /* If to_print != full_pathname, to_print is the basename of the
1334 path passed. In this case, we try to expand the directory
1335 name before checking for the stat character. */
1336 if (to_print != full_pathname)
1338 /* Terminate the directory name. */
1340 to_print[-1] = '\0';
1342 /* If setting the last slash in full_pathname to a NUL results in
1343 full_pathname being the empty string, we are trying to complete
1344 files in the root directory. If we pass a null string to the
1345 bash directory completion hook, for example, it will expand it
1346 to the current directory. We just want the `/'. */
1347 if (full_pathname == 0 || *full_pathname == 0)
1349 else if (full_pathname[0] != '/')
1351 else if (full_pathname[1] == 0)
1352 dn = "//"; /* restore trailing slash to `//' */
1353 else if (full_pathname[1] == '/' && full_pathname[2] == 0)
1354 dn = "/"; /* don't turn /// into // */
1357 s = tilde_expand (dn);
1358 if (rl_directory_completion_hook)
1359 (*rl_directory_completion_hook) (&s);
1362 tlen = strlen (to_print);
1363 new_full_pathname = (char *)xmalloc (slen + tlen + 2);
1364 strcpy (new_full_pathname, s);
1365 if (s[slen - 1] == '/')
1368 new_full_pathname[slen] = '/';
1369 new_full_pathname[slen] = '/';
1370 strcpy (new_full_pathname + slen + 1, to_print);
1372 #if defined (VISIBLE_STATS)
1373 if (rl_visible_stats)
1374 extension_char = stat_char (new_full_pathname);
1377 if (gdb_path_isdir (new_full_pathname))
1378 extension_char = '/';
1380 xfree (new_full_pathname);
1385 s = tilde_expand (full_pathname);
1386 #if defined (VISIBLE_STATS)
1387 if (rl_visible_stats)
1388 extension_char = stat_char (s);
1391 if (gdb_path_isdir (s))
1392 extension_char = '/';
1398 displayer->putch (displayer, extension_char);
1406 /* GDB version of readline/complete.c:complete_get_screenwidth. */
1409 gdb_complete_get_screenwidth (const struct match_list_displayer *displayer)
1411 /* Readline has other stuff here which it's not clear we need. */
1412 return displayer->width;
1415 /* GDB version of readline/complete.c:rl_display_match_list.
1416 See gdb_display_match_list for a description of MATCHES, LEN, MAX. */
1419 gdb_display_match_list_1 (char **matches, int len, int max,
1420 const struct match_list_displayer *displayer)
1422 int count, limit, printed_len, lines, cols;
1423 int i, j, k, l, common_length, sind;
1425 int page_completions = displayer->height != INT_MAX && pagination_enabled;
1426 extern int _rl_completion_prefix_display_length;
1427 extern int _rl_qsort_string_compare (const void *, const void *);
1428 extern int _rl_print_completions_horizontally;
1429 typedef int QSFUNC (const void *, const void *);
1431 /* Find the length of the prefix common to all items: length as displayed
1432 characters (common_length) and as a byte index into the matches (sind) */
1433 common_length = sind = 0;
1434 if (_rl_completion_prefix_display_length > 0)
1436 t = gdb_printable_part (matches[0]);
1437 temp = strrchr (t, '/');
1438 common_length = temp ? gdb_fnwidth (temp) : gdb_fnwidth (t);
1439 sind = temp ? strlen (temp) : strlen (t);
1441 if (common_length > _rl_completion_prefix_display_length && common_length > ELLIPSIS_LEN)
1442 max -= common_length - ELLIPSIS_LEN;
1444 common_length = sind = 0;
1447 /* How many items of MAX length can we fit in the screen window? */
1448 cols = gdb_complete_get_screenwidth (displayer);
1451 if (limit != 1 && (limit * max == cols))
1454 /* If cols == 0, limit will end up -1 */
1455 if (cols < displayer->width && limit < 0)
1458 /* Avoid a possible floating exception. If max > cols,
1459 limit will be 0 and a divide-by-zero fault will result. */
1463 /* How many iterations of the printing loop? */
1464 count = (len + (limit - 1)) / limit;
1466 /* Watch out for special case. If LEN is less than LIMIT, then
1467 just do the inner printing loop.
1468 0 < len <= limit implies count = 1. */
1470 /* Sort the items if they are not already sorted. */
1471 if (rl_ignore_completion_duplicates == 0 && rl_sort_completion_matches)
1472 qsort (matches + 1, len, sizeof (char *), (QSFUNC *)_rl_qsort_string_compare);
1474 displayer->crlf (displayer);
1477 if (_rl_print_completions_horizontally == 0)
1479 /* Print the sorted items, up-and-down alphabetically, like ls. */
1480 for (i = 1; i <= count; i++)
1482 for (j = 0, l = i; j < limit; j++)
1484 if (l > len || matches[l] == 0)
1488 temp = gdb_printable_part (matches[l]);
1489 printed_len = gdb_print_filename (temp, matches[l], sind,
1493 for (k = 0; k < max - printed_len; k++)
1494 displayer->putch (displayer, ' ');
1498 displayer->crlf (displayer);
1500 if (page_completions && lines >= (displayer->height - 1) && i < count)
1502 lines = gdb_display_match_list_pager (lines, displayer);
1510 /* Print the sorted items, across alphabetically, like ls -x. */
1511 for (i = 1; matches[i]; i++)
1513 temp = gdb_printable_part (matches[i]);
1514 printed_len = gdb_print_filename (temp, matches[i], sind, displayer);
1515 /* Have we reached the end of this line? */
1518 if (i && (limit > 1) && (i % limit) == 0)
1520 displayer->crlf (displayer);
1522 if (page_completions && lines >= displayer->height - 1)
1524 lines = gdb_display_match_list_pager (lines, displayer);
1530 for (k = 0; k < max - printed_len; k++)
1531 displayer->putch (displayer, ' ');
1534 displayer->crlf (displayer);
1538 /* Utility for displaying completion list matches, used by both CLI and TUI.
1540 MATCHES is the list of strings, in argv format, LEN is the number of
1541 strings in MATCHES, and MAX is the length of the longest string in
1545 gdb_display_match_list (char **matches, int len, int max,
1546 const struct match_list_displayer *displayer)
1548 if (rl_completion_query_items > 0 && len >= rl_completion_query_items)
1552 /* We can't use *query here because they wait for <RET> which is
1553 wrong here. This follows the readline version as closely as possible
1554 for compatibility's sake. See readline/complete.c. */
1556 displayer->crlf (displayer);
1558 xsnprintf (msg, sizeof (msg),
1559 "Display all %d possibilities? (y or n)", len);
1560 displayer->puts (displayer, msg);
1561 displayer->flush (displayer);
1563 if (gdb_get_y_or_n (0, displayer) == 0)
1565 displayer->crlf (displayer);
1570 gdb_display_match_list_1 (matches, len, max, displayer);