Add completion styling
[binutils-gdb.git] / gdb / completer.c
blobbc0501abf0a79f8b96a5f7faef782ff67af16f8e
1 /* Line completion stuff for GDB, the GNU debugger.
2 Copyright (C) 2000-2020 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/>. */
19 #include "defs.h"
20 #include "symtab.h"
21 #include "gdbtypes.h"
22 #include "expression.h"
23 #include "filenames.h" /* For DOSish file names. */
24 #include "language.h"
25 #include "gdbsupport/gdb_signals.h"
26 #include "target.h"
27 #include "reggroups.h"
28 #include "user-regs.h"
29 #include "arch-utils.h"
30 #include "location.h"
31 #include <algorithm>
32 #include "linespec.h"
33 #include "cli/cli-decode.h"
34 #include "cli/cli-style.h"
36 /* FIXME: This is needed because of lookup_cmd_1 (). We should be
37 calling a hook instead so we eliminate the CLI dependency. */
38 #include "gdbcmd.h"
40 /* Needed for rl_completer_word_break_characters() and for
41 rl_filename_completion_function. */
42 #include "readline/readline.h"
44 /* readline defines this. */
45 #undef savestring
47 #include "completer.h"
49 /* See completer.h. */
51 class completion_tracker::completion_hash_entry
53 public:
54 /* Constructor. */
55 completion_hash_entry (gdb::unique_xmalloc_ptr<char> name,
56 gdb::unique_xmalloc_ptr<char> lcd)
57 : m_name (std::move (name)),
58 m_lcd (std::move (lcd))
60 /* Nothing. */
63 /* Returns a pointer to the lowest common denominator string. This
64 string will only be valid while this hash entry is still valid as the
65 string continues to be owned by this hash entry and will be released
66 when this entry is deleted. */
67 char *get_lcd () const
69 return m_lcd.get ();
72 /* Get, and release the name field from this hash entry. This can only
73 be called once, after which the name field is no longer valid. This
74 should be used to pass ownership of the name to someone else. */
75 char *release_name ()
77 return m_name.release ();
80 /* Return true of the name in this hash entry is STR. */
81 bool is_name_eq (const char *str) const
83 return strcmp (m_name.get (), str) == 0;
86 /* Return the hash value based on the name of the entry. */
87 hashval_t hash_name () const
89 return htab_hash_string (m_name.get ());
92 /* A static function that can be passed to the htab hash system to be
93 used as a callback that deletes an item from the hash. */
94 static void deleter (void *arg)
96 completion_hash_entry *entry = (completion_hash_entry *) arg;
97 delete entry;
100 private:
102 /* The symbol name stored in this hash entry. */
103 gdb::unique_xmalloc_ptr<char> m_name;
105 /* The lowest common denominator string computed for this hash entry. */
106 gdb::unique_xmalloc_ptr<char> m_lcd;
109 /* Misc state that needs to be tracked across several different
110 readline completer entry point calls, all related to a single
111 completion invocation. */
113 struct gdb_completer_state
115 /* The current completion's completion tracker. This is a global
116 because a tracker can be shared between the handle_brkchars and
117 handle_completion phases, which involves different readline
118 callbacks. */
119 completion_tracker *tracker = NULL;
121 /* Whether the current completion was aborted. */
122 bool aborted = false;
125 /* The current completion state. */
126 static gdb_completer_state current_completion;
128 /* An enumeration of the various things a user might attempt to
129 complete for a location. If you change this, remember to update
130 the explicit_options array below too. */
132 enum explicit_location_match_type
134 /* The filename of a source file. */
135 MATCH_SOURCE,
137 /* The name of a function or method. */
138 MATCH_FUNCTION,
140 /* The fully-qualified name of a function or method. */
141 MATCH_QUALIFIED,
143 /* A line number. */
144 MATCH_LINE,
146 /* The name of a label. */
147 MATCH_LABEL
150 /* Prototypes for local functions. */
152 /* readline uses the word breaks for two things:
153 (1) In figuring out where to point the TEXT parameter to the
154 rl_completion_entry_function. Since we don't use TEXT for much,
155 it doesn't matter a lot what the word breaks are for this purpose,
156 but it does affect how much stuff M-? lists.
157 (2) If one of the matches contains a word break character, readline
158 will quote it. That's why we switch between
159 current_language->la_word_break_characters() and
160 gdb_completer_command_word_break_characters. I'm not sure when
161 we need this behavior (perhaps for funky characters in C++
162 symbols?). */
164 /* Variables which are necessary for fancy command line editing. */
166 /* When completing on command names, we remove '-' and '.' from the list of
167 word break characters, since we use it in command names. If the
168 readline library sees one in any of the current completion strings,
169 it thinks that the string needs to be quoted and automatically
170 supplies a leading quote. */
171 static const char gdb_completer_command_word_break_characters[] =
172 " \t\n!@#$%^&*()+=|~`}{[]\"';:?/><,";
174 /* When completing on file names, we remove from the list of word
175 break characters any characters that are commonly used in file
176 names, such as '-', '+', '~', etc. Otherwise, readline displays
177 incorrect completion candidates. */
178 /* MS-DOS and MS-Windows use colon as part of the drive spec, and most
179 programs support @foo style response files. */
180 static const char gdb_completer_file_name_break_characters[] =
181 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
182 " \t\n*|\"';?><@";
183 #else
184 " \t\n*|\"';:?><";
185 #endif
187 /* Characters that can be used to quote completion strings. Note that
188 we can't include '"' because the gdb C parser treats such quoted
189 sequences as strings. */
190 static const char gdb_completer_quote_characters[] = "'";
192 /* Accessor for some completer data that may interest other files. */
194 const char *
195 get_gdb_completer_quote_characters (void)
197 return gdb_completer_quote_characters;
200 /* This can be used for functions which don't want to complete on
201 symbols but don't want to complete on anything else either. */
203 void
204 noop_completer (struct cmd_list_element *ignore,
205 completion_tracker &tracker,
206 const char *text, const char *prefix)
210 /* Complete on filenames. */
212 void
213 filename_completer (struct cmd_list_element *ignore,
214 completion_tracker &tracker,
215 const char *text, const char *word)
217 int subsequent_name;
219 subsequent_name = 0;
220 while (1)
222 gdb::unique_xmalloc_ptr<char> p_rl
223 (rl_filename_completion_function (text, subsequent_name));
224 if (p_rl == NULL)
225 break;
226 /* We need to set subsequent_name to a non-zero value before the
227 continue line below, because otherwise, if the first file
228 seen by GDB is a backup file whose name ends in a `~', we
229 will loop indefinitely. */
230 subsequent_name = 1;
231 /* Like emacs, don't complete on old versions. Especially
232 useful in the "source" command. */
233 const char *p = p_rl.get ();
234 if (p[strlen (p) - 1] == '~')
235 continue;
237 tracker.add_completion
238 (make_completion_match_str (std::move (p_rl), text, word));
240 #if 0
241 /* There is no way to do this just long enough to affect quote
242 inserting without also affecting the next completion. This
243 should be fixed in readline. FIXME. */
244 /* Ensure that readline does the right thing
245 with respect to inserting quotes. */
246 rl_completer_word_break_characters = "";
247 #endif
250 /* The corresponding completer_handle_brkchars
251 implementation. */
253 static void
254 filename_completer_handle_brkchars (struct cmd_list_element *ignore,
255 completion_tracker &tracker,
256 const char *text, const char *word)
258 set_rl_completer_word_break_characters
259 (gdb_completer_file_name_break_characters);
262 /* Possible values for the found_quote flags word used by the completion
263 functions. It says what kind of (shell-like) quoting we found anywhere
264 in the line. */
265 #define RL_QF_SINGLE_QUOTE 0x01
266 #define RL_QF_DOUBLE_QUOTE 0x02
267 #define RL_QF_BACKSLASH 0x04
268 #define RL_QF_OTHER_QUOTE 0x08
270 /* Find the bounds of the current word for completion purposes, and
271 return a pointer to the end of the word. This mimics (and is a
272 modified version of) readline's _rl_find_completion_word internal
273 function.
275 This function skips quoted substrings (characters between matched
276 pairs of characters in rl_completer_quote_characters). We try to
277 find an unclosed quoted substring on which to do matching. If one
278 is not found, we use the word break characters to find the
279 boundaries of the current word. QC, if non-null, is set to the
280 opening quote character if we found an unclosed quoted substring,
281 '\0' otherwise. DP, if non-null, is set to the value of the
282 delimiter character that caused a word break. */
284 struct gdb_rl_completion_word_info
286 const char *word_break_characters;
287 const char *quote_characters;
288 const char *basic_quote_characters;
291 static const char *
292 gdb_rl_find_completion_word (struct gdb_rl_completion_word_info *info,
293 int *qc, int *dp,
294 const char *line_buffer)
296 int scan, end, found_quote, delimiter, pass_next, isbrk;
297 char quote_char;
298 const char *brkchars;
299 int point = strlen (line_buffer);
301 /* The algorithm below does '--point'. Avoid buffer underflow with
302 the empty string. */
303 if (point == 0)
305 if (qc != NULL)
306 *qc = '\0';
307 if (dp != NULL)
308 *dp = '\0';
309 return line_buffer;
312 end = point;
313 found_quote = delimiter = 0;
314 quote_char = '\0';
316 brkchars = info->word_break_characters;
318 if (info->quote_characters != NULL)
320 /* We have a list of characters which can be used in pairs to
321 quote substrings for the completer. Try to find the start of
322 an unclosed quoted substring. */
323 /* FOUND_QUOTE is set so we know what kind of quotes we
324 found. */
325 for (scan = pass_next = 0;
326 scan < end;
327 scan++)
329 if (pass_next)
331 pass_next = 0;
332 continue;
335 /* Shell-like semantics for single quotes -- don't allow
336 backslash to quote anything in single quotes, especially
337 not the closing quote. If you don't like this, take out
338 the check on the value of quote_char. */
339 if (quote_char != '\'' && line_buffer[scan] == '\\')
341 pass_next = 1;
342 found_quote |= RL_QF_BACKSLASH;
343 continue;
346 if (quote_char != '\0')
348 /* Ignore everything until the matching close quote
349 char. */
350 if (line_buffer[scan] == quote_char)
352 /* Found matching close. Abandon this
353 substring. */
354 quote_char = '\0';
355 point = end;
358 else if (strchr (info->quote_characters, line_buffer[scan]))
360 /* Found start of a quoted substring. */
361 quote_char = line_buffer[scan];
362 point = scan + 1;
363 /* Shell-like quoting conventions. */
364 if (quote_char == '\'')
365 found_quote |= RL_QF_SINGLE_QUOTE;
366 else if (quote_char == '"')
367 found_quote |= RL_QF_DOUBLE_QUOTE;
368 else
369 found_quote |= RL_QF_OTHER_QUOTE;
374 if (point == end && quote_char == '\0')
376 /* We didn't find an unclosed quoted substring upon which to do
377 completion, so use the word break characters to find the
378 substring on which to complete. */
379 while (--point)
381 scan = line_buffer[point];
383 if (strchr (brkchars, scan) != 0)
384 break;
388 /* If we are at an unquoted word break, then advance past it. */
389 scan = line_buffer[point];
391 if (scan)
393 isbrk = strchr (brkchars, scan) != 0;
395 if (isbrk)
397 /* If the character that caused the word break was a quoting
398 character, then remember it as the delimiter. */
399 if (info->basic_quote_characters
400 && strchr (info->basic_quote_characters, scan)
401 && (end - point) > 1)
402 delimiter = scan;
404 point++;
408 if (qc != NULL)
409 *qc = quote_char;
410 if (dp != NULL)
411 *dp = delimiter;
413 return line_buffer + point;
416 /* Find the completion word point for TEXT, emulating the algorithm
417 readline uses to find the word point, using WORD_BREAK_CHARACTERS
418 as word break characters. */
420 static const char *
421 advance_to_completion_word (completion_tracker &tracker,
422 const char *word_break_characters,
423 const char *text)
425 gdb_rl_completion_word_info info;
427 info.word_break_characters = word_break_characters;
428 info.quote_characters = gdb_completer_quote_characters;
429 info.basic_quote_characters = rl_basic_quote_characters;
431 int delimiter;
432 const char *start
433 = gdb_rl_find_completion_word (&info, NULL, &delimiter, text);
435 tracker.advance_custom_word_point_by (start - text);
437 if (delimiter)
439 tracker.set_quote_char (delimiter);
440 tracker.set_suppress_append_ws (true);
443 return start;
446 /* See completer.h. */
448 const char *
449 advance_to_expression_complete_word_point (completion_tracker &tracker,
450 const char *text)
452 const char *brk_chars = current_language->la_word_break_characters ();
453 return advance_to_completion_word (tracker, brk_chars, text);
456 /* See completer.h. */
458 const char *
459 advance_to_filename_complete_word_point (completion_tracker &tracker,
460 const char *text)
462 const char *brk_chars = gdb_completer_file_name_break_characters;
463 return advance_to_completion_word (tracker, brk_chars, text);
466 /* See completer.h. */
468 bool
469 completion_tracker::completes_to_completion_word (const char *word)
471 recompute_lowest_common_denominator ();
472 if (m_lowest_common_denominator_unique)
474 const char *lcd = m_lowest_common_denominator;
476 if (strncmp_iw (word, lcd, strlen (lcd)) == 0)
478 /* Maybe skip the function and complete on keywords. */
479 size_t wordlen = strlen (word);
480 if (word[wordlen - 1] == ' ')
481 return true;
485 return false;
488 /* See completer.h. */
490 void
491 complete_nested_command_line (completion_tracker &tracker, const char *text)
493 /* Must be called from a custom-word-point completer. */
494 gdb_assert (tracker.use_custom_word_point ());
496 /* Disable the custom word point temporarily, because we want to
497 probe whether the command we're completing itself uses a custom
498 word point. */
499 tracker.set_use_custom_word_point (false);
500 size_t save_custom_word_point = tracker.custom_word_point ();
502 int quote_char = '\0';
503 const char *word = completion_find_completion_word (tracker, text,
504 &quote_char);
506 if (tracker.use_custom_word_point ())
508 /* The command we're completing uses a custom word point, so the
509 tracker already contains the matches. We're done. */
510 return;
513 /* Restore the custom word point settings. */
514 tracker.set_custom_word_point (save_custom_word_point);
515 tracker.set_use_custom_word_point (true);
517 /* Run the handle_completions completer phase. */
518 complete_line (tracker, word, text, strlen (text));
521 /* Complete on linespecs, which might be of two possible forms:
523 file:line
525 symbol+offset
527 This is intended to be used in commands that set breakpoints
528 etc. */
530 static void
531 complete_files_symbols (completion_tracker &tracker,
532 const char *text, const char *word)
534 completion_list fn_list;
535 const char *p;
536 int quote_found = 0;
537 int quoted = *text == '\'' || *text == '"';
538 int quote_char = '\0';
539 const char *colon = NULL;
540 char *file_to_match = NULL;
541 const char *symbol_start = text;
542 const char *orig_text = text;
544 /* Do we have an unquoted colon, as in "break foo.c:bar"? */
545 for (p = text; *p != '\0'; ++p)
547 if (*p == '\\' && p[1] == '\'')
548 p++;
549 else if (*p == '\'' || *p == '"')
551 quote_found = *p;
552 quote_char = *p++;
553 while (*p != '\0' && *p != quote_found)
555 if (*p == '\\' && p[1] == quote_found)
556 p++;
557 p++;
560 if (*p == quote_found)
561 quote_found = 0;
562 else
563 break; /* Hit the end of text. */
565 #if HAVE_DOS_BASED_FILE_SYSTEM
566 /* If we have a DOS-style absolute file name at the beginning of
567 TEXT, and the colon after the drive letter is the only colon
568 we found, pretend the colon is not there. */
569 else if (p < text + 3 && *p == ':' && p == text + 1 + quoted)
571 #endif
572 else if (*p == ':' && !colon)
574 colon = p;
575 symbol_start = p + 1;
577 else if (strchr (current_language->la_word_break_characters(), *p))
578 symbol_start = p + 1;
581 if (quoted)
582 text++;
584 /* Where is the file name? */
585 if (colon)
587 char *s;
589 file_to_match = (char *) xmalloc (colon - text + 1);
590 strncpy (file_to_match, text, colon - text);
591 file_to_match[colon - text] = '\0';
592 /* Remove trailing colons and quotes from the file name. */
593 for (s = file_to_match + (colon - text);
594 s > file_to_match;
595 s--)
596 if (*s == ':' || *s == quote_char)
597 *s = '\0';
599 /* If the text includes a colon, they want completion only on a
600 symbol name after the colon. Otherwise, we need to complete on
601 symbols as well as on files. */
602 if (colon)
604 collect_file_symbol_completion_matches (tracker,
605 complete_symbol_mode::EXPRESSION,
606 symbol_name_match_type::EXPRESSION,
607 symbol_start, word,
608 file_to_match);
609 xfree (file_to_match);
611 else
613 size_t text_len = strlen (text);
615 collect_symbol_completion_matches (tracker,
616 complete_symbol_mode::EXPRESSION,
617 symbol_name_match_type::EXPRESSION,
618 symbol_start, word);
619 /* If text includes characters which cannot appear in a file
620 name, they cannot be asking for completion on files. */
621 if (strcspn (text,
622 gdb_completer_file_name_break_characters) == text_len)
623 fn_list = make_source_files_completion_list (text, text);
626 if (!fn_list.empty () && !tracker.have_completions ())
628 /* If we only have file names as possible completion, we should
629 bring them in sync with what rl_complete expects. The
630 problem is that if the user types "break /foo/b TAB", and the
631 possible completions are "/foo/bar" and "/foo/baz"
632 rl_complete expects us to return "bar" and "baz", without the
633 leading directories, as possible completions, because `word'
634 starts at the "b". But we ignore the value of `word' when we
635 call make_source_files_completion_list above (because that
636 would not DTRT when the completion results in both symbols
637 and file names), so make_source_files_completion_list returns
638 the full "/foo/bar" and "/foo/baz" strings. This produces
639 wrong results when, e.g., there's only one possible
640 completion, because rl_complete will prepend "/foo/" to each
641 candidate completion. The loop below removes that leading
642 part. */
643 for (const auto &fn_up: fn_list)
645 char *fn = fn_up.get ();
646 memmove (fn, fn + (word - text), strlen (fn) + 1 - (word - text));
650 tracker.add_completions (std::move (fn_list));
652 if (!tracker.have_completions ())
654 /* No completions at all. As the final resort, try completing
655 on the entire text as a symbol. */
656 collect_symbol_completion_matches (tracker,
657 complete_symbol_mode::EXPRESSION,
658 symbol_name_match_type::EXPRESSION,
659 orig_text, word);
663 /* See completer.h. */
665 completion_list
666 complete_source_filenames (const char *text)
668 size_t text_len = strlen (text);
670 /* If text includes characters which cannot appear in a file name,
671 the user cannot be asking for completion on files. */
672 if (strcspn (text,
673 gdb_completer_file_name_break_characters)
674 == text_len)
675 return make_source_files_completion_list (text, text);
677 return {};
680 /* Complete address and linespec locations. */
682 static void
683 complete_address_and_linespec_locations (completion_tracker &tracker,
684 const char *text,
685 symbol_name_match_type match_type)
687 if (*text == '*')
689 tracker.advance_custom_word_point_by (1);
690 text++;
691 const char *word
692 = advance_to_expression_complete_word_point (tracker, text);
693 complete_expression (tracker, text, word);
695 else
697 linespec_complete (tracker, text, match_type);
701 /* The explicit location options. Note that indexes into this array
702 must match the explicit_location_match_type enumerators. */
704 static const char *const explicit_options[] =
706 "-source",
707 "-function",
708 "-qualified",
709 "-line",
710 "-label",
711 NULL
714 /* The probe modifier options. These can appear before a location in
715 breakpoint commands. */
716 static const char *const probe_options[] =
718 "-probe",
719 "-probe-stap",
720 "-probe-dtrace",
721 NULL
724 /* Returns STRING if not NULL, the empty string otherwise. */
726 static const char *
727 string_or_empty (const char *string)
729 return string != NULL ? string : "";
732 /* A helper function to collect explicit location matches for the given
733 LOCATION, which is attempting to match on WORD. */
735 static void
736 collect_explicit_location_matches (completion_tracker &tracker,
737 struct event_location *location,
738 enum explicit_location_match_type what,
739 const char *word,
740 const struct language_defn *language)
742 const struct explicit_location *explicit_loc
743 = get_explicit_location (location);
745 /* True if the option expects an argument. */
746 bool needs_arg = true;
748 /* Note, in the various MATCH_* below, we complete on
749 explicit_loc->foo instead of WORD, because only the former will
750 have already skipped past any quote char. */
751 switch (what)
753 case MATCH_SOURCE:
755 const char *source = string_or_empty (explicit_loc->source_filename);
756 completion_list matches
757 = make_source_files_completion_list (source, source);
758 tracker.add_completions (std::move (matches));
760 break;
762 case MATCH_FUNCTION:
764 const char *function = string_or_empty (explicit_loc->function_name);
765 linespec_complete_function (tracker, function,
766 explicit_loc->func_name_match_type,
767 explicit_loc->source_filename);
769 break;
771 case MATCH_QUALIFIED:
772 needs_arg = false;
773 break;
774 case MATCH_LINE:
775 /* Nothing to offer. */
776 break;
778 case MATCH_LABEL:
780 const char *label = string_or_empty (explicit_loc->label_name);
781 linespec_complete_label (tracker, language,
782 explicit_loc->source_filename,
783 explicit_loc->function_name,
784 explicit_loc->func_name_match_type,
785 label);
787 break;
789 default:
790 gdb_assert_not_reached ("unhandled explicit_location_match_type");
793 if (!needs_arg || tracker.completes_to_completion_word (word))
795 tracker.discard_completions ();
796 tracker.advance_custom_word_point_by (strlen (word));
797 complete_on_enum (tracker, explicit_options, "", "");
798 complete_on_enum (tracker, linespec_keywords, "", "");
800 else if (!tracker.have_completions ())
802 /* Maybe we have an unterminated linespec keyword at the tail of
803 the string. Try completing on that. */
804 size_t wordlen = strlen (word);
805 const char *keyword = word + wordlen;
807 if (wordlen > 0 && keyword[-1] != ' ')
809 while (keyword > word && *keyword != ' ')
810 keyword--;
811 /* Don't complete on keywords if we'd be completing on the
812 whole explicit linespec option. E.g., "b -function
813 thr<tab>" should not complete to the "thread"
814 keyword. */
815 if (keyword != word)
817 keyword = skip_spaces (keyword);
819 tracker.advance_custom_word_point_by (keyword - word);
820 complete_on_enum (tracker, linespec_keywords, keyword, keyword);
823 else if (wordlen > 0 && keyword[-1] == ' ')
825 /* Assume that we're maybe past the explicit location
826 argument, and we didn't manage to find any match because
827 the user wants to create a pending breakpoint. Offer the
828 keyword and explicit location options as possible
829 completions. */
830 tracker.advance_custom_word_point_by (keyword - word);
831 complete_on_enum (tracker, linespec_keywords, keyword, keyword);
832 complete_on_enum (tracker, explicit_options, keyword, keyword);
837 /* If the next word in *TEXT_P is any of the keywords in KEYWORDS,
838 then advance both TEXT_P and the word point in the tracker past the
839 keyword and return the (0-based) index in the KEYWORDS array that
840 matched. Otherwise, return -1. */
842 static int
843 skip_keyword (completion_tracker &tracker,
844 const char * const *keywords, const char **text_p)
846 const char *text = *text_p;
847 const char *after = skip_to_space (text);
848 size_t len = after - text;
850 if (text[len] != ' ')
851 return -1;
853 int found = -1;
854 for (int i = 0; keywords[i] != NULL; i++)
856 if (strncmp (keywords[i], text, len) == 0)
858 if (found == -1)
859 found = i;
860 else
861 return -1;
865 if (found != -1)
867 tracker.advance_custom_word_point_by (len + 1);
868 text += len + 1;
869 *text_p = text;
870 return found;
873 return -1;
876 /* A completer function for explicit locations. This function
877 completes both options ("-source", "-line", etc) and values. If
878 completing a quoted string, then QUOTED_ARG_START and
879 QUOTED_ARG_END point to the quote characters. LANGUAGE is the
880 current language. */
882 static void
883 complete_explicit_location (completion_tracker &tracker,
884 struct event_location *location,
885 const char *text,
886 const language_defn *language,
887 const char *quoted_arg_start,
888 const char *quoted_arg_end)
890 if (*text != '-')
891 return;
893 int keyword = skip_keyword (tracker, explicit_options, &text);
895 if (keyword == -1)
896 complete_on_enum (tracker, explicit_options, text, text);
897 else
899 /* Completing on value. */
900 enum explicit_location_match_type what
901 = (explicit_location_match_type) keyword;
903 if (quoted_arg_start != NULL && quoted_arg_end != NULL)
905 if (quoted_arg_end[1] == '\0')
907 /* If completing a quoted string with the cursor right
908 at the terminating quote char, complete the
909 completion word without interpretation, so that
910 readline advances the cursor one whitespace past the
911 quote, even if there's no match. This makes these
912 cases behave the same:
914 before: "b -function function()"
915 after: "b -function function() "
917 before: "b -function 'function()'"
918 after: "b -function 'function()' "
920 and trusts the user in this case:
922 before: "b -function 'not_loaded_function_yet()'"
923 after: "b -function 'not_loaded_function_yet()' "
925 tracker.add_completion (make_unique_xstrdup (text));
927 else if (quoted_arg_end[1] == ' ')
929 /* We're maybe past the explicit location argument.
930 Skip the argument without interpretation, assuming the
931 user may want to create pending breakpoint. Offer
932 the keyword and explicit location options as possible
933 completions. */
934 tracker.advance_custom_word_point_by (strlen (text));
935 complete_on_enum (tracker, linespec_keywords, "", "");
936 complete_on_enum (tracker, explicit_options, "", "");
938 return;
941 /* Now gather matches */
942 collect_explicit_location_matches (tracker, location, what, text,
943 language);
947 /* A completer for locations. */
949 void
950 location_completer (struct cmd_list_element *ignore,
951 completion_tracker &tracker,
952 const char *text, const char * /* word */)
954 int found_probe_option = -1;
956 /* If we have a probe modifier, skip it. This can only appear as
957 first argument. Until we have a specific completer for probes,
958 falling back to the linespec completer for the remainder of the
959 line is better than nothing. */
960 if (text[0] == '-' && text[1] == 'p')
961 found_probe_option = skip_keyword (tracker, probe_options, &text);
963 const char *option_text = text;
964 int saved_word_point = tracker.custom_word_point ();
966 const char *copy = text;
968 explicit_completion_info completion_info;
969 event_location_up location
970 = string_to_explicit_location (&copy, current_language,
971 &completion_info);
972 if (completion_info.quoted_arg_start != NULL
973 && completion_info.quoted_arg_end == NULL)
975 /* Found an unbalanced quote. */
976 tracker.set_quote_char (*completion_info.quoted_arg_start);
977 tracker.advance_custom_word_point_by (1);
980 if (completion_info.saw_explicit_location_option)
982 if (*copy != '\0')
984 tracker.advance_custom_word_point_by (copy - text);
985 text = copy;
987 /* We found a terminator at the tail end of the string,
988 which means we're past the explicit location options. We
989 may have a keyword to complete on. If we have a whole
990 keyword, then complete whatever comes after as an
991 expression. This is mainly for the "if" keyword. If the
992 "thread" and "task" keywords gain their own completers,
993 they should be used here. */
994 int keyword = skip_keyword (tracker, linespec_keywords, &text);
996 if (keyword == -1)
998 complete_on_enum (tracker, linespec_keywords, text, text);
1000 else
1002 const char *word
1003 = advance_to_expression_complete_word_point (tracker, text);
1004 complete_expression (tracker, text, word);
1007 else
1009 tracker.advance_custom_word_point_by (completion_info.last_option
1010 - text);
1011 text = completion_info.last_option;
1013 complete_explicit_location (tracker, location.get (), text,
1014 current_language,
1015 completion_info.quoted_arg_start,
1016 completion_info.quoted_arg_end);
1020 /* This is an address or linespec location. */
1021 else if (location != NULL)
1023 /* Handle non-explicit location options. */
1025 int keyword = skip_keyword (tracker, explicit_options, &text);
1026 if (keyword == -1)
1027 complete_on_enum (tracker, explicit_options, text, text);
1028 else
1030 tracker.advance_custom_word_point_by (copy - text);
1031 text = copy;
1033 symbol_name_match_type match_type
1034 = get_explicit_location (location.get ())->func_name_match_type;
1035 complete_address_and_linespec_locations (tracker, text, match_type);
1038 else
1040 /* No options. */
1041 complete_address_and_linespec_locations (tracker, text,
1042 symbol_name_match_type::WILD);
1045 /* Add matches for option names, if either:
1047 - Some completer above found some matches, but the word point did
1048 not advance (e.g., "b <tab>" finds all functions, or "b -<tab>"
1049 matches all objc selectors), or;
1051 - Some completer above advanced the word point, but found no
1052 matches.
1054 if ((text[0] == '-' || text[0] == '\0')
1055 && (!tracker.have_completions ()
1056 || tracker.custom_word_point () == saved_word_point))
1058 tracker.set_custom_word_point (saved_word_point);
1059 text = option_text;
1061 if (found_probe_option == -1)
1062 complete_on_enum (tracker, probe_options, text, text);
1063 complete_on_enum (tracker, explicit_options, text, text);
1067 /* The corresponding completer_handle_brkchars
1068 implementation. */
1070 static void
1071 location_completer_handle_brkchars (struct cmd_list_element *ignore,
1072 completion_tracker &tracker,
1073 const char *text,
1074 const char *word_ignored)
1076 tracker.set_use_custom_word_point (true);
1078 location_completer (ignore, tracker, text, NULL);
1081 /* Helper for expression_completer which recursively adds field and
1082 method names from TYPE, a struct or union type, to the OUTPUT
1083 list. */
1085 static void
1086 add_struct_fields (struct type *type, completion_list &output,
1087 const char *fieldname, int namelen)
1089 int i;
1090 int computed_type_name = 0;
1091 const char *type_name = NULL;
1093 type = check_typedef (type);
1094 for (i = 0; i < type->num_fields (); ++i)
1096 if (i < TYPE_N_BASECLASSES (type))
1097 add_struct_fields (TYPE_BASECLASS (type, i),
1098 output, fieldname, namelen);
1099 else if (TYPE_FIELD_NAME (type, i))
1101 if (TYPE_FIELD_NAME (type, i)[0] != '\0')
1103 if (! strncmp (TYPE_FIELD_NAME (type, i),
1104 fieldname, namelen))
1105 output.emplace_back (xstrdup (TYPE_FIELD_NAME (type, i)));
1107 else if (TYPE_FIELD_TYPE (type, i)->code () == TYPE_CODE_UNION)
1109 /* Recurse into anonymous unions. */
1110 add_struct_fields (TYPE_FIELD_TYPE (type, i),
1111 output, fieldname, namelen);
1116 for (i = TYPE_NFN_FIELDS (type) - 1; i >= 0; --i)
1118 const char *name = TYPE_FN_FIELDLIST_NAME (type, i);
1120 if (name && ! strncmp (name, fieldname, namelen))
1122 if (!computed_type_name)
1124 type_name = type->name ();
1125 computed_type_name = 1;
1127 /* Omit constructors from the completion list. */
1128 if (!type_name || strcmp (type_name, name))
1129 output.emplace_back (xstrdup (name));
1134 /* See completer.h. */
1136 void
1137 complete_expression (completion_tracker &tracker,
1138 const char *text, const char *word)
1140 struct type *type = NULL;
1141 gdb::unique_xmalloc_ptr<char> fieldname;
1142 enum type_code code = TYPE_CODE_UNDEF;
1144 /* Perform a tentative parse of the expression, to see whether a
1145 field completion is required. */
1148 type = parse_expression_for_completion (text, &fieldname, &code);
1150 catch (const gdb_exception_error &except)
1152 return;
1155 if (fieldname != nullptr && type)
1157 for (;;)
1159 type = check_typedef (type);
1160 if (type->code () != TYPE_CODE_PTR && !TYPE_IS_REFERENCE (type))
1161 break;
1162 type = TYPE_TARGET_TYPE (type);
1165 if (type->code () == TYPE_CODE_UNION
1166 || type->code () == TYPE_CODE_STRUCT)
1168 completion_list result;
1170 add_struct_fields (type, result, fieldname.get (),
1171 strlen (fieldname.get ()));
1172 tracker.add_completions (std::move (result));
1173 return;
1176 else if (fieldname != nullptr && code != TYPE_CODE_UNDEF)
1178 collect_symbol_completion_matches_type (tracker, fieldname.get (),
1179 fieldname.get (), code);
1180 return;
1183 complete_files_symbols (tracker, text, word);
1186 /* Complete on expressions. Often this means completing on symbol
1187 names, but some language parsers also have support for completing
1188 field names. */
1190 void
1191 expression_completer (struct cmd_list_element *ignore,
1192 completion_tracker &tracker,
1193 const char *text, const char *word)
1195 complete_expression (tracker, text, word);
1198 /* See definition in completer.h. */
1200 void
1201 set_rl_completer_word_break_characters (const char *break_chars)
1203 rl_completer_word_break_characters = (char *) break_chars;
1206 /* Complete on symbols. */
1208 void
1209 symbol_completer (struct cmd_list_element *ignore,
1210 completion_tracker &tracker,
1211 const char *text, const char *word)
1213 collect_symbol_completion_matches (tracker, complete_symbol_mode::EXPRESSION,
1214 symbol_name_match_type::EXPRESSION,
1215 text, word);
1218 /* Here are some useful test cases for completion. FIXME: These
1219 should be put in the test suite. They should be tested with both
1220 M-? and TAB.
1222 "show output-" "radix"
1223 "show output" "-radix"
1224 "p" ambiguous (commands starting with p--path, print, printf, etc.)
1225 "p " ambiguous (all symbols)
1226 "info t foo" no completions
1227 "info t " no completions
1228 "info t" ambiguous ("info target", "info terminal", etc.)
1229 "info ajksdlfk" no completions
1230 "info ajksdlfk " no completions
1231 "info" " "
1232 "info " ambiguous (all info commands)
1233 "p \"a" no completions (string constant)
1234 "p 'a" ambiguous (all symbols starting with a)
1235 "p b-a" ambiguous (all symbols starting with a)
1236 "p b-" ambiguous (all symbols)
1237 "file Make" "file" (word break hard to screw up here)
1238 "file ../gdb.stabs/we" "ird" (needs to not break word at slash)
1241 enum complete_line_internal_reason
1243 /* Preliminary phase, called by gdb_completion_word_break_characters
1244 function, is used to either:
1246 #1 - Determine the set of chars that are word delimiters
1247 depending on the current command in line_buffer.
1249 #2 - Manually advance RL_POINT to the "word break" point instead
1250 of letting readline do it (based on too-simple character
1251 matching).
1253 Simpler completers that just pass a brkchars array to readline
1254 (#1 above) must defer generating the completions to the main
1255 phase (below). No completion list should be generated in this
1256 phase.
1258 OTOH, completers that manually advance the word point(#2 above)
1259 must set "use_custom_word_point" in the tracker and generate
1260 their completion in this phase. Note that this is the convenient
1261 thing to do since they'll be parsing the input line anyway. */
1262 handle_brkchars,
1264 /* Main phase, called by complete_line function, is used to get the
1265 list of possible completions. */
1266 handle_completions,
1268 /* Special case when completing a 'help' command. In this case,
1269 once sub-command completions are exhausted, we simply return
1270 NULL. */
1271 handle_help,
1274 /* Helper for complete_line_internal to simplify it. */
1276 static void
1277 complete_line_internal_normal_command (completion_tracker &tracker,
1278 const char *command, const char *word,
1279 const char *cmd_args,
1280 complete_line_internal_reason reason,
1281 struct cmd_list_element *c)
1283 const char *p = cmd_args;
1285 if (c->completer == filename_completer)
1287 /* Many commands which want to complete on file names accept
1288 several file names, as in "run foo bar >>baz". So we don't
1289 want to complete the entire text after the command, just the
1290 last word. To this end, we need to find the beginning of the
1291 file name by starting at `word' and going backwards. */
1292 for (p = word;
1293 p > command
1294 && strchr (gdb_completer_file_name_break_characters,
1295 p[-1]) == NULL;
1296 p--)
1300 if (reason == handle_brkchars)
1302 completer_handle_brkchars_ftype *brkchars_fn;
1304 if (c->completer_handle_brkchars != NULL)
1305 brkchars_fn = c->completer_handle_brkchars;
1306 else
1308 brkchars_fn
1309 = (completer_handle_brkchars_func_for_completer
1310 (c->completer));
1313 brkchars_fn (c, tracker, p, word);
1316 if (reason != handle_brkchars && c->completer != NULL)
1317 (*c->completer) (c, tracker, p, word);
1320 /* Internal function used to handle completions.
1323 TEXT is the caller's idea of the "word" we are looking at.
1325 LINE_BUFFER is available to be looked at; it contains the entire
1326 text of the line. POINT is the offset in that line of the cursor.
1327 You should pretend that the line ends at POINT.
1329 See complete_line_internal_reason for description of REASON. */
1331 static void
1332 complete_line_internal_1 (completion_tracker &tracker,
1333 const char *text,
1334 const char *line_buffer, int point,
1335 complete_line_internal_reason reason)
1337 char *tmp_command;
1338 const char *p;
1339 int ignore_help_classes;
1340 /* Pointer within tmp_command which corresponds to text. */
1341 const char *word;
1342 struct cmd_list_element *c, *result_list;
1344 /* Choose the default set of word break characters to break
1345 completions. If we later find out that we are doing completions
1346 on command strings (as opposed to strings supplied by the
1347 individual command completer functions, which can be any string)
1348 then we will switch to the special word break set for command
1349 strings, which leaves out the '-' and '.' character used in some
1350 commands. */
1351 set_rl_completer_word_break_characters
1352 (current_language->la_word_break_characters());
1354 /* Decide whether to complete on a list of gdb commands or on
1355 symbols. */
1356 tmp_command = (char *) alloca (point + 1);
1357 p = tmp_command;
1359 /* The help command should complete help aliases. */
1360 ignore_help_classes = reason != handle_help;
1362 strncpy (tmp_command, line_buffer, point);
1363 tmp_command[point] = '\0';
1364 if (reason == handle_brkchars)
1366 gdb_assert (text == NULL);
1367 word = NULL;
1369 else
1371 /* Since text always contains some number of characters leading up
1372 to point, we can find the equivalent position in tmp_command
1373 by subtracting that many characters from the end of tmp_command. */
1374 word = tmp_command + point - strlen (text);
1377 /* Move P up to the start of the command. */
1378 p = skip_spaces (p);
1380 if (*p == '\0')
1382 /* An empty line is ambiguous; that is, it could be any
1383 command. */
1384 c = CMD_LIST_AMBIGUOUS;
1385 result_list = 0;
1387 else
1389 c = lookup_cmd_1 (&p, cmdlist, &result_list, ignore_help_classes);
1392 /* Move p up to the next interesting thing. */
1393 while (*p == ' ' || *p == '\t')
1395 p++;
1398 tracker.advance_custom_word_point_by (p - tmp_command);
1400 if (!c)
1402 /* It is an unrecognized command. So there are no
1403 possible completions. */
1405 else if (c == CMD_LIST_AMBIGUOUS)
1407 const char *q;
1409 /* lookup_cmd_1 advances p up to the first ambiguous thing, but
1410 doesn't advance over that thing itself. Do so now. */
1411 q = p;
1412 while (valid_cmd_char_p (*q))
1413 ++q;
1414 if (q != tmp_command + point)
1416 /* There is something beyond the ambiguous
1417 command, so there are no possible completions. For
1418 example, "info t " or "info t foo" does not complete
1419 to anything, because "info t" can be "info target" or
1420 "info terminal". */
1422 else
1424 /* We're trying to complete on the command which was ambiguous.
1425 This we can deal with. */
1426 if (result_list)
1428 if (reason != handle_brkchars)
1429 complete_on_cmdlist (*result_list->prefixlist, tracker, p,
1430 word, ignore_help_classes);
1432 else
1434 if (reason != handle_brkchars)
1435 complete_on_cmdlist (cmdlist, tracker, p, word,
1436 ignore_help_classes);
1438 /* Ensure that readline does the right thing with respect to
1439 inserting quotes. */
1440 set_rl_completer_word_break_characters
1441 (gdb_completer_command_word_break_characters);
1444 else
1446 /* We've recognized a full command. */
1448 if (p == tmp_command + point)
1450 /* There is no non-whitespace in the line beyond the
1451 command. */
1453 if (p[-1] == ' ' || p[-1] == '\t')
1455 /* The command is followed by whitespace; we need to
1456 complete on whatever comes after command. */
1457 if (c->prefixlist)
1459 /* It is a prefix command; what comes after it is
1460 a subcommand (e.g. "info "). */
1461 if (reason != handle_brkchars)
1462 complete_on_cmdlist (*c->prefixlist, tracker, p, word,
1463 ignore_help_classes);
1465 /* Ensure that readline does the right thing
1466 with respect to inserting quotes. */
1467 set_rl_completer_word_break_characters
1468 (gdb_completer_command_word_break_characters);
1470 else if (reason == handle_help)
1472 else if (c->enums)
1474 if (reason != handle_brkchars)
1475 complete_on_enum (tracker, c->enums, p, word);
1476 set_rl_completer_word_break_characters
1477 (gdb_completer_command_word_break_characters);
1479 else
1481 /* It is a normal command; what comes after it is
1482 completed by the command's completer function. */
1483 complete_line_internal_normal_command (tracker,
1484 tmp_command, word, p,
1485 reason, c);
1488 else
1490 /* The command is not followed by whitespace; we need to
1491 complete on the command itself, e.g. "p" which is a
1492 command itself but also can complete to "print", "ptype"
1493 etc. */
1494 const char *q;
1496 /* Find the command we are completing on. */
1497 q = p;
1498 while (q > tmp_command)
1500 if (valid_cmd_char_p (q[-1]))
1501 --q;
1502 else
1503 break;
1506 /* Move the custom word point back too. */
1507 tracker.advance_custom_word_point_by (q - p);
1509 if (reason != handle_brkchars)
1510 complete_on_cmdlist (result_list, tracker, q, word,
1511 ignore_help_classes);
1513 /* Ensure that readline does the right thing
1514 with respect to inserting quotes. */
1515 set_rl_completer_word_break_characters
1516 (gdb_completer_command_word_break_characters);
1519 else if (reason == handle_help)
1521 else
1523 /* There is non-whitespace beyond the command. */
1525 if (c->prefixlist && !c->allow_unknown)
1527 /* It is an unrecognized subcommand of a prefix command,
1528 e.g. "info adsfkdj". */
1530 else if (c->enums)
1532 if (reason != handle_brkchars)
1533 complete_on_enum (tracker, c->enums, p, word);
1535 else
1537 /* It is a normal command. */
1538 complete_line_internal_normal_command (tracker,
1539 tmp_command, word, p,
1540 reason, c);
1546 /* Wrapper around complete_line_internal_1 to handle
1547 MAX_COMPLETIONS_REACHED_ERROR. */
1549 static void
1550 complete_line_internal (completion_tracker &tracker,
1551 const char *text,
1552 const char *line_buffer, int point,
1553 complete_line_internal_reason reason)
1557 complete_line_internal_1 (tracker, text, line_buffer, point, reason);
1559 catch (const gdb_exception_error &except)
1561 if (except.error != MAX_COMPLETIONS_REACHED_ERROR)
1562 throw;
1566 /* See completer.h. */
1568 int max_completions = 200;
1570 /* Initial size of the table. It automagically grows from here. */
1571 #define INITIAL_COMPLETION_HTAB_SIZE 200
1573 /* See completer.h. */
1575 completion_tracker::completion_tracker ()
1577 discard_completions ();
1580 /* See completer.h. */
1582 void
1583 completion_tracker::discard_completions ()
1585 xfree (m_lowest_common_denominator);
1586 m_lowest_common_denominator = NULL;
1588 m_lowest_common_denominator_unique = false;
1589 m_lowest_common_denominator_valid = false;
1591 /* A null check here allows this function to be used from the
1592 constructor. */
1593 if (m_entries_hash != NULL)
1594 htab_delete (m_entries_hash);
1596 /* A callback used by the hash table to compare new entries with existing
1597 entries. We can't use the standard streq_hash function here as the
1598 key to our hash is just a single string, while the values we store in
1599 the hash are a struct containing multiple strings. */
1600 static auto entry_eq_func
1601 = [] (const void *first, const void *second) -> int
1603 /* The FIRST argument is the entry already in the hash table, and
1604 the SECOND argument is the new item being inserted. */
1605 const completion_hash_entry *entry
1606 = (const completion_hash_entry *) first;
1607 const char *name_str = (const char *) second;
1609 return entry->is_name_eq (name_str);
1612 /* Callback used by the hash table to compute the hash value for an
1613 existing entry. This is needed when expanding the hash table. */
1614 static auto entry_hash_func
1615 = [] (const void *arg) -> hashval_t
1617 const completion_hash_entry *entry
1618 = (const completion_hash_entry *) arg;
1619 return entry->hash_name ();
1622 m_entries_hash = htab_create_alloc (INITIAL_COMPLETION_HTAB_SIZE,
1623 entry_hash_func, entry_eq_func,
1624 completion_hash_entry::deleter,
1625 xcalloc, xfree);
1628 /* See completer.h. */
1630 completion_tracker::~completion_tracker ()
1632 xfree (m_lowest_common_denominator);
1633 htab_delete (m_entries_hash);
1636 /* See completer.h. */
1638 bool
1639 completion_tracker::maybe_add_completion
1640 (gdb::unique_xmalloc_ptr<char> name,
1641 completion_match_for_lcd *match_for_lcd,
1642 const char *text, const char *word)
1644 void **slot;
1646 if (max_completions == 0)
1647 return false;
1649 if (htab_elements (m_entries_hash) >= max_completions)
1650 return false;
1652 hashval_t hash = htab_hash_string (name.get ());
1653 slot = htab_find_slot_with_hash (m_entries_hash, name.get (), hash, INSERT);
1654 if (*slot == HTAB_EMPTY_ENTRY)
1656 const char *match_for_lcd_str = NULL;
1658 if (match_for_lcd != NULL)
1659 match_for_lcd_str = match_for_lcd->finish ();
1661 if (match_for_lcd_str == NULL)
1662 match_for_lcd_str = name.get ();
1664 gdb::unique_xmalloc_ptr<char> lcd
1665 = make_completion_match_str (match_for_lcd_str, text, word);
1667 size_t lcd_len = strlen (lcd.get ());
1668 *slot = new completion_hash_entry (std::move (name), std::move (lcd));
1670 m_lowest_common_denominator_valid = false;
1671 m_lowest_common_denominator_max_length
1672 = std::max (m_lowest_common_denominator_max_length, lcd_len);
1675 return true;
1678 /* See completer.h. */
1680 void
1681 completion_tracker::add_completion (gdb::unique_xmalloc_ptr<char> name,
1682 completion_match_for_lcd *match_for_lcd,
1683 const char *text, const char *word)
1685 if (!maybe_add_completion (std::move (name), match_for_lcd, text, word))
1686 throw_error (MAX_COMPLETIONS_REACHED_ERROR, _("Max completions reached."));
1689 /* See completer.h. */
1691 void
1692 completion_tracker::add_completions (completion_list &&list)
1694 for (auto &candidate : list)
1695 add_completion (std::move (candidate));
1698 /* See completer.h. */
1700 void
1701 completion_tracker::remove_completion (const char *name)
1703 hashval_t hash = htab_hash_string (name);
1704 if (htab_find_slot_with_hash (m_entries_hash, name, hash, NO_INSERT)
1705 != NULL)
1707 htab_remove_elt_with_hash (m_entries_hash, name, hash);
1708 m_lowest_common_denominator_valid = false;
1712 /* Helper for the make_completion_match_str overloads. Returns NULL
1713 as an indication that we want MATCH_NAME exactly. It is up to the
1714 caller to xstrdup that string if desired. */
1716 static char *
1717 make_completion_match_str_1 (const char *match_name,
1718 const char *text, const char *word)
1720 char *newobj;
1722 if (word == text)
1724 /* Return NULL as an indication that we want MATCH_NAME
1725 exactly. */
1726 return NULL;
1728 else if (word > text)
1730 /* Return some portion of MATCH_NAME. */
1731 newobj = xstrdup (match_name + (word - text));
1733 else
1735 /* Return some of WORD plus MATCH_NAME. */
1736 size_t len = strlen (match_name);
1737 newobj = (char *) xmalloc (text - word + len + 1);
1738 memcpy (newobj, word, text - word);
1739 memcpy (newobj + (text - word), match_name, len + 1);
1742 return newobj;
1745 /* See completer.h. */
1747 gdb::unique_xmalloc_ptr<char>
1748 make_completion_match_str (const char *match_name,
1749 const char *text, const char *word)
1751 char *newobj = make_completion_match_str_1 (match_name, text, word);
1752 if (newobj == NULL)
1753 newobj = xstrdup (match_name);
1754 return gdb::unique_xmalloc_ptr<char> (newobj);
1757 /* See completer.h. */
1759 gdb::unique_xmalloc_ptr<char>
1760 make_completion_match_str (gdb::unique_xmalloc_ptr<char> &&match_name,
1761 const char *text, const char *word)
1763 char *newobj = make_completion_match_str_1 (match_name.get (), text, word);
1764 if (newobj == NULL)
1765 return std::move (match_name);
1766 return gdb::unique_xmalloc_ptr<char> (newobj);
1769 /* See complete.h. */
1771 completion_result
1772 complete (const char *line, char const **word, int *quote_char)
1774 completion_tracker tracker_handle_brkchars;
1775 completion_tracker tracker_handle_completions;
1776 completion_tracker *tracker;
1778 /* The WORD should be set to the end of word to complete. We initialize
1779 to the completion point which is assumed to be at the end of LINE.
1780 This leaves WORD to be initialized to a sensible value in cases
1781 completion_find_completion_word() fails i.e., throws an exception.
1782 See bug 24587. */
1783 *word = line + strlen (line);
1787 *word = completion_find_completion_word (tracker_handle_brkchars,
1788 line, quote_char);
1790 /* Completers that provide a custom word point in the
1791 handle_brkchars phase also compute their completions then.
1792 Completers that leave the completion word handling to readline
1793 must be called twice. */
1794 if (tracker_handle_brkchars.use_custom_word_point ())
1795 tracker = &tracker_handle_brkchars;
1796 else
1798 complete_line (tracker_handle_completions, *word, line, strlen (line));
1799 tracker = &tracker_handle_completions;
1802 catch (const gdb_exception &ex)
1804 return {};
1807 return tracker->build_completion_result (*word, *word - line, strlen (line));
1811 /* Generate completions all at once. Does nothing if max_completions
1812 is 0. If max_completions is non-negative, this will collect at
1813 most max_completions strings.
1815 TEXT is the caller's idea of the "word" we are looking at.
1817 LINE_BUFFER is available to be looked at; it contains the entire
1818 text of the line.
1820 POINT is the offset in that line of the cursor. You
1821 should pretend that the line ends at POINT. */
1823 void
1824 complete_line (completion_tracker &tracker,
1825 const char *text, const char *line_buffer, int point)
1827 if (max_completions == 0)
1828 return;
1829 complete_line_internal (tracker, text, line_buffer, point,
1830 handle_completions);
1833 /* Complete on command names. Used by "help". */
1835 void
1836 command_completer (struct cmd_list_element *ignore,
1837 completion_tracker &tracker,
1838 const char *text, const char *word)
1840 complete_line_internal (tracker, word, text,
1841 strlen (text), handle_help);
1844 /* The corresponding completer_handle_brkchars implementation. */
1846 static void
1847 command_completer_handle_brkchars (struct cmd_list_element *ignore,
1848 completion_tracker &tracker,
1849 const char *text, const char *word)
1851 set_rl_completer_word_break_characters
1852 (gdb_completer_command_word_break_characters);
1855 /* Complete on signals. */
1857 void
1858 signal_completer (struct cmd_list_element *ignore,
1859 completion_tracker &tracker,
1860 const char *text, const char *word)
1862 size_t len = strlen (word);
1863 int signum;
1864 const char *signame;
1866 for (signum = GDB_SIGNAL_FIRST; signum != GDB_SIGNAL_LAST; ++signum)
1868 /* Can't handle this, so skip it. */
1869 if (signum == GDB_SIGNAL_0)
1870 continue;
1872 signame = gdb_signal_to_name ((enum gdb_signal) signum);
1874 /* Ignore the unknown signal case. */
1875 if (!signame || strcmp (signame, "?") == 0)
1876 continue;
1878 if (strncasecmp (signame, word, len) == 0)
1879 tracker.add_completion (make_unique_xstrdup (signame));
1883 /* Bit-flags for selecting what the register and/or register-group
1884 completer should complete on. */
1886 enum reg_completer_target
1888 complete_register_names = 0x1,
1889 complete_reggroup_names = 0x2
1891 DEF_ENUM_FLAGS_TYPE (enum reg_completer_target, reg_completer_targets);
1893 /* Complete register names and/or reggroup names based on the value passed
1894 in TARGETS. At least one bit in TARGETS must be set. */
1896 static void
1897 reg_or_group_completer_1 (completion_tracker &tracker,
1898 const char *text, const char *word,
1899 reg_completer_targets targets)
1901 size_t len = strlen (word);
1902 struct gdbarch *gdbarch;
1903 const char *name;
1905 gdb_assert ((targets & (complete_register_names
1906 | complete_reggroup_names)) != 0);
1907 gdbarch = get_current_arch ();
1909 if ((targets & complete_register_names) != 0)
1911 int i;
1913 for (i = 0;
1914 (name = user_reg_map_regnum_to_name (gdbarch, i)) != NULL;
1915 i++)
1917 if (*name != '\0' && strncmp (word, name, len) == 0)
1918 tracker.add_completion (make_unique_xstrdup (name));
1922 if ((targets & complete_reggroup_names) != 0)
1924 struct reggroup *group;
1926 for (group = reggroup_next (gdbarch, NULL);
1927 group != NULL;
1928 group = reggroup_next (gdbarch, group))
1930 name = reggroup_name (group);
1931 if (strncmp (word, name, len) == 0)
1932 tracker.add_completion (make_unique_xstrdup (name));
1937 /* Perform completion on register and reggroup names. */
1939 void
1940 reg_or_group_completer (struct cmd_list_element *ignore,
1941 completion_tracker &tracker,
1942 const char *text, const char *word)
1944 reg_or_group_completer_1 (tracker, text, word,
1945 (complete_register_names
1946 | complete_reggroup_names));
1949 /* Perform completion on reggroup names. */
1951 void
1952 reggroup_completer (struct cmd_list_element *ignore,
1953 completion_tracker &tracker,
1954 const char *text, const char *word)
1956 reg_or_group_completer_1 (tracker, text, word,
1957 complete_reggroup_names);
1960 /* The default completer_handle_brkchars implementation. */
1962 static void
1963 default_completer_handle_brkchars (struct cmd_list_element *ignore,
1964 completion_tracker &tracker,
1965 const char *text, const char *word)
1967 set_rl_completer_word_break_characters
1968 (current_language->la_word_break_characters ());
1971 /* See definition in completer.h. */
1973 completer_handle_brkchars_ftype *
1974 completer_handle_brkchars_func_for_completer (completer_ftype *fn)
1976 if (fn == filename_completer)
1977 return filename_completer_handle_brkchars;
1979 if (fn == location_completer)
1980 return location_completer_handle_brkchars;
1982 if (fn == command_completer)
1983 return command_completer_handle_brkchars;
1985 return default_completer_handle_brkchars;
1988 /* Used as brkchars when we want to tell readline we have a custom
1989 word point. We do that by making our rl_completion_word_break_hook
1990 set RL_POINT to the desired word point, and return the character at
1991 the word break point as the break char. This is two bytes in order
1992 to fit one break character plus the terminating null. */
1993 static char gdb_custom_word_point_brkchars[2];
1995 /* Since rl_basic_quote_characters is not completer-specific, we save
1996 its original value here, in order to be able to restore it in
1997 gdb_rl_attempted_completion_function. */
1998 static const char *gdb_org_rl_basic_quote_characters = rl_basic_quote_characters;
2000 /* Get the list of chars that are considered as word breaks
2001 for the current command. */
2003 static char *
2004 gdb_completion_word_break_characters_throw ()
2006 /* New completion starting. Get rid of the previous tracker and
2007 start afresh. */
2008 delete current_completion.tracker;
2009 current_completion.tracker = new completion_tracker ();
2011 completion_tracker &tracker = *current_completion.tracker;
2013 complete_line_internal (tracker, NULL, rl_line_buffer,
2014 rl_point, handle_brkchars);
2016 if (tracker.use_custom_word_point ())
2018 gdb_assert (tracker.custom_word_point () > 0);
2019 rl_point = tracker.custom_word_point () - 1;
2021 gdb_assert (rl_point >= 0 && rl_point < strlen (rl_line_buffer));
2023 gdb_custom_word_point_brkchars[0] = rl_line_buffer[rl_point];
2024 rl_completer_word_break_characters = gdb_custom_word_point_brkchars;
2025 rl_completer_quote_characters = NULL;
2027 /* Clear this too, so that if we're completing a quoted string,
2028 readline doesn't consider the quote character a delimiter.
2029 If we didn't do this, readline would auto-complete {b
2030 'fun<tab>} to {'b 'function()'}, i.e., add the terminating
2031 \', but, it wouldn't append the separator space either, which
2032 is not desirable. So instead we take care of appending the
2033 quote character to the LCD ourselves, in
2034 gdb_rl_attempted_completion_function. Since this global is
2035 not just completer-specific, we'll restore it back to the
2036 default in gdb_rl_attempted_completion_function. */
2037 rl_basic_quote_characters = NULL;
2040 return rl_completer_word_break_characters;
2043 char *
2044 gdb_completion_word_break_characters ()
2046 /* New completion starting. */
2047 current_completion.aborted = false;
2051 return gdb_completion_word_break_characters_throw ();
2053 catch (const gdb_exception &ex)
2055 /* Set this to that gdb_rl_attempted_completion_function knows
2056 to abort early. */
2057 current_completion.aborted = true;
2060 return NULL;
2063 /* See completer.h. */
2065 const char *
2066 completion_find_completion_word (completion_tracker &tracker, const char *text,
2067 int *quote_char)
2069 size_t point = strlen (text);
2071 complete_line_internal (tracker, NULL, text, point, handle_brkchars);
2073 if (tracker.use_custom_word_point ())
2075 gdb_assert (tracker.custom_word_point () > 0);
2076 *quote_char = tracker.quote_char ();
2077 return text + tracker.custom_word_point ();
2080 gdb_rl_completion_word_info info;
2082 info.word_break_characters = rl_completer_word_break_characters;
2083 info.quote_characters = gdb_completer_quote_characters;
2084 info.basic_quote_characters = rl_basic_quote_characters;
2086 return gdb_rl_find_completion_word (&info, quote_char, NULL, text);
2089 /* See completer.h. */
2091 void
2092 completion_tracker::recompute_lcd_visitor (completion_hash_entry *entry)
2094 if (!m_lowest_common_denominator_valid)
2096 /* This is the first lowest common denominator that we are
2097 considering, just copy it in. */
2098 strcpy (m_lowest_common_denominator, entry->get_lcd ());
2099 m_lowest_common_denominator_unique = true;
2100 m_lowest_common_denominator_valid = true;
2102 else
2104 /* Find the common denominator between the currently-known lowest
2105 common denominator and NEW_MATCH_UP. That becomes the new lowest
2106 common denominator. */
2107 size_t i;
2108 const char *new_match = entry->get_lcd ();
2110 for (i = 0;
2111 (new_match[i] != '\0'
2112 && new_match[i] == m_lowest_common_denominator[i]);
2113 i++)
2115 if (m_lowest_common_denominator[i] != new_match[i])
2117 m_lowest_common_denominator[i] = '\0';
2118 m_lowest_common_denominator_unique = false;
2123 /* See completer.h. */
2125 void
2126 completion_tracker::recompute_lowest_common_denominator ()
2128 /* We've already done this. */
2129 if (m_lowest_common_denominator_valid)
2130 return;
2132 /* Resize the storage to ensure we have enough space, the plus one gives
2133 us space for the trailing null terminator we will include. */
2134 m_lowest_common_denominator
2135 = (char *) xrealloc (m_lowest_common_denominator,
2136 m_lowest_common_denominator_max_length + 1);
2138 /* Callback used to visit each entry in the m_entries_hash. */
2139 auto visitor_func
2140 = [] (void **slot, void *info) -> int
2142 completion_tracker *obj = (completion_tracker *) info;
2143 completion_hash_entry *entry = (completion_hash_entry *) *slot;
2144 obj->recompute_lcd_visitor (entry);
2145 return 1;
2148 htab_traverse (m_entries_hash, visitor_func, this);
2149 m_lowest_common_denominator_valid = true;
2152 /* See completer.h. */
2154 void
2155 completion_tracker::advance_custom_word_point_by (int len)
2157 m_custom_word_point += len;
2160 /* Build a new C string that is a copy of LCD with the whitespace of
2161 ORIG/ORIG_LEN preserved.
2163 Say the user is completing a symbol name, with spaces, like:
2165 "foo ( i"
2167 and the resulting completion match is:
2169 "foo(int)"
2171 we want to end up with an input line like:
2173 "foo ( int)"
2174 ^^^^^^^ => text from LCD [1], whitespace from ORIG preserved.
2175 ^^ => new text from LCD
2177 [1] - We must take characters from the LCD instead of the original
2178 text, since some completions want to change upper/lowercase. E.g.:
2180 "handle sig<>"
2182 completes to:
2184 "handle SIG[QUIT|etc.]"
2187 static char *
2188 expand_preserving_ws (const char *orig, size_t orig_len,
2189 const char *lcd)
2191 const char *p_orig = orig;
2192 const char *orig_end = orig + orig_len;
2193 const char *p_lcd = lcd;
2194 std::string res;
2196 while (p_orig < orig_end)
2198 if (*p_orig == ' ')
2200 while (p_orig < orig_end && *p_orig == ' ')
2201 res += *p_orig++;
2202 p_lcd = skip_spaces (p_lcd);
2204 else
2206 /* Take characters from the LCD instead of the original
2207 text, since some completions change upper/lowercase.
2208 E.g.:
2209 "handle sig<>"
2210 completes to:
2211 "handle SIG[QUIT|etc.]"
2213 res += *p_lcd;
2214 p_orig++;
2215 p_lcd++;
2219 while (*p_lcd != '\0')
2220 res += *p_lcd++;
2222 return xstrdup (res.c_str ());
2225 /* See completer.h. */
2227 completion_result
2228 completion_tracker::build_completion_result (const char *text,
2229 int start, int end)
2231 size_t element_count = htab_elements (m_entries_hash);
2233 if (element_count == 0)
2234 return {};
2236 /* +1 for the LCD, and +1 for NULL termination. */
2237 char **match_list = XNEWVEC (char *, 1 + element_count + 1);
2239 /* Build replacement word, based on the LCD. */
2241 recompute_lowest_common_denominator ();
2242 match_list[0]
2243 = expand_preserving_ws (text, end - start,
2244 m_lowest_common_denominator);
2246 if (m_lowest_common_denominator_unique)
2248 /* We don't rely on readline appending the quote char as
2249 delimiter as then readline wouldn't append the ' ' after the
2250 completion. */
2251 char buf[2] = { (char) quote_char () };
2253 match_list[0] = reconcat (match_list[0], match_list[0],
2254 buf, (char *) NULL);
2255 match_list[1] = NULL;
2257 /* If the tracker wants to, or we already have a space at the
2258 end of the match, tell readline to skip appending
2259 another. */
2260 bool completion_suppress_append
2261 = (suppress_append_ws ()
2262 || match_list[0][strlen (match_list[0]) - 1] == ' ');
2264 return completion_result (match_list, 1, completion_suppress_append);
2266 else
2268 /* State object used while building the completion list. */
2269 struct list_builder
2271 list_builder (char **ml)
2272 : match_list (ml),
2273 index (1)
2274 { /* Nothing. */ }
2276 /* The list we are filling. */
2277 char **match_list;
2279 /* The next index in the list to write to. */
2280 int index;
2282 list_builder builder (match_list);
2284 /* Visit each entry in m_entries_hash and add it to the completion
2285 list, updating the builder state object. */
2286 auto func
2287 = [] (void **slot, void *info) -> int
2289 completion_hash_entry *entry = (completion_hash_entry *) *slot;
2290 list_builder *state = (list_builder *) info;
2292 state->match_list[state->index] = entry->release_name ();
2293 state->index++;
2294 return 1;
2297 /* Build the completion list and add a null at the end. */
2298 htab_traverse_noresize (m_entries_hash, func, &builder);
2299 match_list[builder.index] = NULL;
2301 return completion_result (match_list, builder.index - 1, false);
2305 /* See completer.h */
2307 completion_result::completion_result ()
2308 : match_list (NULL), number_matches (0),
2309 completion_suppress_append (false)
2312 /* See completer.h */
2314 completion_result::completion_result (char **match_list_,
2315 size_t number_matches_,
2316 bool completion_suppress_append_)
2317 : match_list (match_list_),
2318 number_matches (number_matches_),
2319 completion_suppress_append (completion_suppress_append_)
2322 /* See completer.h */
2324 completion_result::~completion_result ()
2326 reset_match_list ();
2329 /* See completer.h */
2331 completion_result::completion_result (completion_result &&rhs) noexcept
2332 : match_list (rhs.match_list),
2333 number_matches (rhs.number_matches)
2335 rhs.match_list = NULL;
2336 rhs.number_matches = 0;
2339 /* See completer.h */
2341 char **
2342 completion_result::release_match_list ()
2344 char **ret = match_list;
2345 match_list = NULL;
2346 return ret;
2349 /* See completer.h */
2351 void
2352 completion_result::sort_match_list ()
2354 if (number_matches > 1)
2356 /* Element 0 is special (it's the common prefix), leave it
2357 be. */
2358 std::sort (&match_list[1],
2359 &match_list[number_matches + 1],
2360 compare_cstrings);
2364 /* See completer.h */
2366 void
2367 completion_result::reset_match_list ()
2369 if (match_list != NULL)
2371 for (char **p = match_list; *p != NULL; p++)
2372 xfree (*p);
2373 xfree (match_list);
2374 match_list = NULL;
2378 /* Helper for gdb_rl_attempted_completion_function, which does most of
2379 the work. This is called by readline to build the match list array
2380 and to determine the lowest common denominator. The real matches
2381 list starts at match[1], while match[0] is the slot holding
2382 readline's idea of the lowest common denominator of all matches,
2383 which is what readline replaces the completion "word" with.
2385 TEXT is the caller's idea of the "word" we are looking at, as
2386 computed in the handle_brkchars phase.
2388 START is the offset from RL_LINE_BUFFER where TEXT starts. END is
2389 the offset from RL_LINE_BUFFER where TEXT ends (i.e., where
2390 rl_point is).
2392 You should thus pretend that the line ends at END (relative to
2393 RL_LINE_BUFFER).
2395 RL_LINE_BUFFER contains the entire text of the line. RL_POINT is
2396 the offset in that line of the cursor. You should pretend that the
2397 line ends at POINT.
2399 Returns NULL if there are no completions. */
2401 static char **
2402 gdb_rl_attempted_completion_function_throw (const char *text, int start, int end)
2404 /* Completers that provide a custom word point in the
2405 handle_brkchars phase also compute their completions then.
2406 Completers that leave the completion word handling to readline
2407 must be called twice. If rl_point (i.e., END) is at column 0,
2408 then readline skips the handle_brkchars phase, and so we create a
2409 tracker now in that case too. */
2410 if (end == 0 || !current_completion.tracker->use_custom_word_point ())
2412 delete current_completion.tracker;
2413 current_completion.tracker = new completion_tracker ();
2415 complete_line (*current_completion.tracker, text,
2416 rl_line_buffer, rl_point);
2419 completion_tracker &tracker = *current_completion.tracker;
2421 completion_result result
2422 = tracker.build_completion_result (text, start, end);
2424 rl_completion_suppress_append = result.completion_suppress_append;
2425 return result.release_match_list ();
2428 /* Function installed as "rl_attempted_completion_function" readline
2429 hook. Wrapper around gdb_rl_attempted_completion_function_throw
2430 that catches C++ exceptions, which can't cross readline. */
2432 char **
2433 gdb_rl_attempted_completion_function (const char *text, int start, int end)
2435 /* Restore globals that might have been tweaked in
2436 gdb_completion_word_break_characters. */
2437 rl_basic_quote_characters = gdb_org_rl_basic_quote_characters;
2439 /* If we end up returning NULL, either on error, or simple because
2440 there are no matches, inhibit readline's default filename
2441 completer. */
2442 rl_attempted_completion_over = 1;
2444 /* If the handle_brkchars phase was aborted, don't try
2445 completing. */
2446 if (current_completion.aborted)
2447 return NULL;
2451 return gdb_rl_attempted_completion_function_throw (text, start, end);
2453 catch (const gdb_exception &ex)
2457 return NULL;
2460 /* Skip over the possibly quoted word STR (as defined by the quote
2461 characters QUOTECHARS and the word break characters BREAKCHARS).
2462 Returns pointer to the location after the "word". If either
2463 QUOTECHARS or BREAKCHARS is NULL, use the same values used by the
2464 completer. */
2466 const char *
2467 skip_quoted_chars (const char *str, const char *quotechars,
2468 const char *breakchars)
2470 char quote_char = '\0';
2471 const char *scan;
2473 if (quotechars == NULL)
2474 quotechars = gdb_completer_quote_characters;
2476 if (breakchars == NULL)
2477 breakchars = current_language->la_word_break_characters();
2479 for (scan = str; *scan != '\0'; scan++)
2481 if (quote_char != '\0')
2483 /* Ignore everything until the matching close quote char. */
2484 if (*scan == quote_char)
2486 /* Found matching close quote. */
2487 scan++;
2488 break;
2491 else if (strchr (quotechars, *scan))
2493 /* Found start of a quoted string. */
2494 quote_char = *scan;
2496 else if (strchr (breakchars, *scan))
2498 break;
2502 return (scan);
2505 /* Skip over the possibly quoted word STR (as defined by the quote
2506 characters and word break characters used by the completer).
2507 Returns pointer to the location after the "word". */
2509 const char *
2510 skip_quoted (const char *str)
2512 return skip_quoted_chars (str, NULL, NULL);
2515 /* Return a message indicating that the maximum number of completions
2516 has been reached and that there may be more. */
2518 const char *
2519 get_max_completions_reached_message (void)
2521 return _("*** List may be truncated, max-completions reached. ***");
2524 /* GDB replacement for rl_display_match_list.
2525 Readline doesn't provide a clean interface for TUI(curses).
2526 A hack previously used was to send readline's rl_outstream through a pipe
2527 and read it from the event loop. Bleah. IWBN if readline abstracted
2528 away all the necessary bits, and this is what this code does. It
2529 replicates the parts of readline we need and then adds an abstraction
2530 layer, currently implemented as struct match_list_displayer, so that both
2531 CLI and TUI can use it. We copy all this readline code to minimize
2532 GDB-specific mods to readline. Once this code performs as desired then
2533 we can submit it to the readline maintainers.
2535 N.B. A lot of the code is the way it is in order to minimize differences
2536 from readline's copy. */
2538 /* Not supported here. */
2539 #undef VISIBLE_STATS
2541 #if defined (HANDLE_MULTIBYTE)
2542 #define MB_INVALIDCH(x) ((x) == (size_t)-1 || (x) == (size_t)-2)
2543 #define MB_NULLWCH(x) ((x) == 0)
2544 #endif
2546 #define ELLIPSIS_LEN 3
2548 /* gdb version of readline/complete.c:get_y_or_n.
2549 'y' -> returns 1, and 'n' -> returns 0.
2550 Also supported: space == 'y', RUBOUT == 'n', ctrl-g == start over.
2551 If FOR_PAGER is non-zero, then also supported are:
2552 NEWLINE or RETURN -> returns 2, and 'q' -> returns 0. */
2554 static int
2555 gdb_get_y_or_n (int for_pager, const struct match_list_displayer *displayer)
2557 int c;
2559 for (;;)
2561 RL_SETSTATE (RL_STATE_MOREINPUT);
2562 c = displayer->read_key (displayer);
2563 RL_UNSETSTATE (RL_STATE_MOREINPUT);
2565 if (c == 'y' || c == 'Y' || c == ' ')
2566 return 1;
2567 if (c == 'n' || c == 'N' || c == RUBOUT)
2568 return 0;
2569 if (c == ABORT_CHAR || c < 0)
2571 /* Readline doesn't erase_entire_line here, but without it the
2572 --More-- prompt isn't erased and neither is the text entered
2573 thus far redisplayed. */
2574 displayer->erase_entire_line (displayer);
2575 /* Note: The arguments to rl_abort are ignored. */
2576 rl_abort (0, 0);
2578 if (for_pager && (c == NEWLINE || c == RETURN))
2579 return 2;
2580 if (for_pager && (c == 'q' || c == 'Q'))
2581 return 0;
2582 displayer->beep (displayer);
2586 /* Pager function for tab-completion.
2587 This is based on readline/complete.c:_rl_internal_pager.
2588 LINES is the number of lines of output displayed thus far.
2589 Returns:
2590 -1 -> user pressed 'n' or equivalent,
2591 0 -> user pressed 'y' or equivalent,
2592 N -> user pressed NEWLINE or equivalent and N is LINES - 1. */
2594 static int
2595 gdb_display_match_list_pager (int lines,
2596 const struct match_list_displayer *displayer)
2598 int i;
2600 displayer->puts (displayer, "--More--");
2601 displayer->flush (displayer);
2602 i = gdb_get_y_or_n (1, displayer);
2603 displayer->erase_entire_line (displayer);
2604 if (i == 0)
2605 return -1;
2606 else if (i == 2)
2607 return (lines - 1);
2608 else
2609 return 0;
2612 /* Return non-zero if FILENAME is a directory.
2613 Based on readline/complete.c:path_isdir. */
2615 static int
2616 gdb_path_isdir (const char *filename)
2618 struct stat finfo;
2620 return (stat (filename, &finfo) == 0 && S_ISDIR (finfo.st_mode));
2623 /* Return the portion of PATHNAME that should be output when listing
2624 possible completions. If we are hacking filename completion, we
2625 are only interested in the basename, the portion following the
2626 final slash. Otherwise, we return what we were passed. Since
2627 printing empty strings is not very informative, if we're doing
2628 filename completion, and the basename is the empty string, we look
2629 for the previous slash and return the portion following that. If
2630 there's no previous slash, we just return what we were passed.
2632 Based on readline/complete.c:printable_part. */
2634 static char *
2635 gdb_printable_part (char *pathname)
2637 char *temp, *x;
2639 if (rl_filename_completion_desired == 0) /* don't need to do anything */
2640 return (pathname);
2642 temp = strrchr (pathname, '/');
2643 #if defined (__MSDOS__)
2644 if (temp == 0 && ISALPHA ((unsigned char)pathname[0]) && pathname[1] == ':')
2645 temp = pathname + 1;
2646 #endif
2648 if (temp == 0 || *temp == '\0')
2649 return (pathname);
2650 /* If the basename is NULL, we might have a pathname like '/usr/src/'.
2651 Look for a previous slash and, if one is found, return the portion
2652 following that slash. If there's no previous slash, just return the
2653 pathname we were passed. */
2654 else if (temp[1] == '\0')
2656 for (x = temp - 1; x > pathname; x--)
2657 if (*x == '/')
2658 break;
2659 return ((*x == '/') ? x + 1 : pathname);
2661 else
2662 return ++temp;
2665 /* Compute width of STRING when displayed on screen by print_filename.
2666 Based on readline/complete.c:fnwidth. */
2668 static int
2669 gdb_fnwidth (const char *string)
2671 int width, pos;
2672 #if defined (HANDLE_MULTIBYTE)
2673 mbstate_t ps;
2674 int left, w;
2675 size_t clen;
2676 wchar_t wc;
2678 left = strlen (string) + 1;
2679 memset (&ps, 0, sizeof (mbstate_t));
2680 #endif
2682 width = pos = 0;
2683 while (string[pos])
2685 if (CTRL_CHAR (string[pos]) || string[pos] == RUBOUT)
2687 width += 2;
2688 pos++;
2690 else
2692 #if defined (HANDLE_MULTIBYTE)
2693 clen = mbrtowc (&wc, string + pos, left - pos, &ps);
2694 if (MB_INVALIDCH (clen))
2696 width++;
2697 pos++;
2698 memset (&ps, 0, sizeof (mbstate_t));
2700 else if (MB_NULLWCH (clen))
2701 break;
2702 else
2704 pos += clen;
2705 w = wcwidth (wc);
2706 width += (w >= 0) ? w : 1;
2708 #else
2709 width++;
2710 pos++;
2711 #endif
2715 return width;
2718 extern int _rl_completion_prefix_display_length;
2720 /* Print TO_PRINT, one matching completion.
2721 PREFIX_BYTES is number of common prefix bytes.
2722 Based on readline/complete.c:fnprint. */
2724 static int
2725 gdb_fnprint (const char *to_print, int prefix_bytes,
2726 const struct match_list_displayer *displayer)
2728 int common_prefix_len, printed_len, w;
2729 const char *s;
2730 #if defined (HANDLE_MULTIBYTE)
2731 mbstate_t ps;
2732 const char *end;
2733 size_t tlen;
2734 int width;
2735 wchar_t wc;
2737 end = to_print + strlen (to_print) + 1;
2738 memset (&ps, 0, sizeof (mbstate_t));
2739 #endif
2741 printed_len = common_prefix_len = 0;
2743 /* Don't print only the ellipsis if the common prefix is one of the
2744 possible completions */
2745 if (to_print[prefix_bytes] == '\0')
2746 prefix_bytes = 0;
2748 ui_file_style style = completion_prefix_style.style ();
2749 if (!style.is_default ())
2750 displayer->puts (displayer, style.to_ansi ().c_str ());
2752 if (prefix_bytes && _rl_completion_prefix_display_length > 0)
2754 char ellipsis;
2756 ellipsis = (to_print[prefix_bytes] == '.') ? '_' : '.';
2757 for (w = 0; w < ELLIPSIS_LEN; w++)
2758 displayer->putch (displayer, ellipsis);
2759 printed_len = ELLIPSIS_LEN;
2761 else if (prefix_bytes && !style.is_default ())
2763 common_prefix_len = prefix_bytes;
2764 prefix_bytes = 0;
2767 /* There are 3 states: the initial state (#0), when we use the
2768 prefix style; the difference state (#1), which lasts a single
2769 character; and then the suffix state (#2). */
2770 int state = 0;
2772 s = to_print + prefix_bytes;
2773 while (*s)
2775 if (CTRL_CHAR (*s))
2777 displayer->putch (displayer, '^');
2778 displayer->putch (displayer, UNCTRL (*s));
2779 printed_len += 2;
2780 s++;
2781 #if defined (HANDLE_MULTIBYTE)
2782 memset (&ps, 0, sizeof (mbstate_t));
2783 #endif
2785 else if (*s == RUBOUT)
2787 displayer->putch (displayer, '^');
2788 displayer->putch (displayer, '?');
2789 printed_len += 2;
2790 s++;
2791 #if defined (HANDLE_MULTIBYTE)
2792 memset (&ps, 0, sizeof (mbstate_t));
2793 #endif
2795 else
2797 #if defined (HANDLE_MULTIBYTE)
2798 tlen = mbrtowc (&wc, s, end - s, &ps);
2799 if (MB_INVALIDCH (tlen))
2801 tlen = 1;
2802 width = 1;
2803 memset (&ps, 0, sizeof (mbstate_t));
2805 else if (MB_NULLWCH (tlen))
2806 break;
2807 else
2809 w = wcwidth (wc);
2810 width = (w >= 0) ? w : 1;
2812 for (w = 0; w < tlen; ++w)
2813 displayer->putch (displayer, s[w]);
2814 s += tlen;
2815 printed_len += width;
2816 #else
2817 displayer->putch (displayer, *s);
2818 s++;
2819 printed_len++;
2820 #endif
2822 if (common_prefix_len > 0 && (s - to_print) >= common_prefix_len)
2824 if (!style.is_default ())
2825 displayer->puts (displayer, ui_file_style ().to_ansi ().c_str ());
2827 ++state;
2828 if (state == 1)
2830 common_prefix_len = 1;
2831 style = completion_difference_style.style ();
2833 else
2835 common_prefix_len = 0;
2836 style = completion_suffix_style.style ();
2839 if (!style.is_default ())
2840 displayer->puts (displayer, style.to_ansi ().c_str ());
2844 if (!style.is_default ())
2845 displayer->puts (displayer, ui_file_style ().to_ansi ().c_str ());
2847 return printed_len;
2850 /* Output TO_PRINT to rl_outstream. If VISIBLE_STATS is defined and we
2851 are using it, check for and output a single character for `special'
2852 filenames. Return the number of characters we output.
2853 Based on readline/complete.c:print_filename. */
2855 static int
2856 gdb_print_filename (char *to_print, char *full_pathname, int prefix_bytes,
2857 const struct match_list_displayer *displayer)
2859 int printed_len, extension_char, slen, tlen;
2860 char *s, c, *new_full_pathname;
2861 const char *dn;
2862 extern int _rl_complete_mark_directories;
2864 extension_char = 0;
2865 printed_len = gdb_fnprint (to_print, prefix_bytes, displayer);
2867 #if defined (VISIBLE_STATS)
2868 if (rl_filename_completion_desired && (rl_visible_stats || _rl_complete_mark_directories))
2869 #else
2870 if (rl_filename_completion_desired && _rl_complete_mark_directories)
2871 #endif
2873 /* If to_print != full_pathname, to_print is the basename of the
2874 path passed. In this case, we try to expand the directory
2875 name before checking for the stat character. */
2876 if (to_print != full_pathname)
2878 /* Terminate the directory name. */
2879 c = to_print[-1];
2880 to_print[-1] = '\0';
2882 /* If setting the last slash in full_pathname to a NUL results in
2883 full_pathname being the empty string, we are trying to complete
2884 files in the root directory. If we pass a null string to the
2885 bash directory completion hook, for example, it will expand it
2886 to the current directory. We just want the `/'. */
2887 if (full_pathname == 0 || *full_pathname == 0)
2888 dn = "/";
2889 else if (full_pathname[0] != '/')
2890 dn = full_pathname;
2891 else if (full_pathname[1] == 0)
2892 dn = "//"; /* restore trailing slash to `//' */
2893 else if (full_pathname[1] == '/' && full_pathname[2] == 0)
2894 dn = "/"; /* don't turn /// into // */
2895 else
2896 dn = full_pathname;
2897 s = tilde_expand (dn);
2898 if (rl_directory_completion_hook)
2899 (*rl_directory_completion_hook) (&s);
2901 slen = strlen (s);
2902 tlen = strlen (to_print);
2903 new_full_pathname = (char *)xmalloc (slen + tlen + 2);
2904 strcpy (new_full_pathname, s);
2905 if (s[slen - 1] == '/')
2906 slen--;
2907 else
2908 new_full_pathname[slen] = '/';
2909 new_full_pathname[slen] = '/';
2910 strcpy (new_full_pathname + slen + 1, to_print);
2912 #if defined (VISIBLE_STATS)
2913 if (rl_visible_stats)
2914 extension_char = stat_char (new_full_pathname);
2915 else
2916 #endif
2917 if (gdb_path_isdir (new_full_pathname))
2918 extension_char = '/';
2920 xfree (new_full_pathname);
2921 to_print[-1] = c;
2923 else
2925 s = tilde_expand (full_pathname);
2926 #if defined (VISIBLE_STATS)
2927 if (rl_visible_stats)
2928 extension_char = stat_char (s);
2929 else
2930 #endif
2931 if (gdb_path_isdir (s))
2932 extension_char = '/';
2935 xfree (s);
2936 if (extension_char)
2938 displayer->putch (displayer, extension_char);
2939 printed_len++;
2943 return printed_len;
2946 /* GDB version of readline/complete.c:complete_get_screenwidth. */
2948 static int
2949 gdb_complete_get_screenwidth (const struct match_list_displayer *displayer)
2951 /* Readline has other stuff here which it's not clear we need. */
2952 return displayer->width;
2955 extern int _rl_print_completions_horizontally;
2957 EXTERN_C int _rl_qsort_string_compare (const void *, const void *);
2958 typedef int QSFUNC (const void *, const void *);
2960 /* GDB version of readline/complete.c:rl_display_match_list.
2961 See gdb_display_match_list for a description of MATCHES, LEN, MAX.
2962 Returns non-zero if all matches are displayed. */
2964 static int
2965 gdb_display_match_list_1 (char **matches, int len, int max,
2966 const struct match_list_displayer *displayer)
2968 int count, limit, printed_len, lines, cols;
2969 int i, j, k, l, common_length, sind;
2970 char *temp, *t;
2971 int page_completions = displayer->height != INT_MAX && pagination_enabled;
2973 bool want_style = !completion_prefix_style.style ().is_default ();
2975 /* Find the length of the prefix common to all items: length as displayed
2976 characters (common_length) and as a byte index into the matches (sind) */
2977 common_length = sind = 0;
2978 if (_rl_completion_prefix_display_length > 0 || want_style)
2980 t = gdb_printable_part (matches[0]);
2981 temp = strrchr (t, '/');
2982 common_length = temp ? gdb_fnwidth (temp) : gdb_fnwidth (t);
2983 sind = temp ? strlen (temp) : strlen (t);
2985 if (_rl_completion_prefix_display_length > 0
2986 && common_length > _rl_completion_prefix_display_length
2987 && common_length > ELLIPSIS_LEN)
2988 max -= common_length - ELLIPSIS_LEN;
2989 else if (!want_style || common_length > max || sind > max)
2990 common_length = sind = 0;
2993 /* How many items of MAX length can we fit in the screen window? */
2994 cols = gdb_complete_get_screenwidth (displayer);
2995 max += 2;
2996 limit = cols / max;
2997 if (limit != 1 && (limit * max == cols))
2998 limit--;
3000 /* If cols == 0, limit will end up -1 */
3001 if (cols < displayer->width && limit < 0)
3002 limit = 1;
3004 /* Avoid a possible floating exception. If max > cols,
3005 limit will be 0 and a divide-by-zero fault will result. */
3006 if (limit == 0)
3007 limit = 1;
3009 /* How many iterations of the printing loop? */
3010 count = (len + (limit - 1)) / limit;
3012 /* Watch out for special case. If LEN is less than LIMIT, then
3013 just do the inner printing loop.
3014 0 < len <= limit implies count = 1. */
3016 /* Sort the items if they are not already sorted. */
3017 if (rl_ignore_completion_duplicates == 0 && rl_sort_completion_matches)
3018 qsort (matches + 1, len, sizeof (char *), (QSFUNC *)_rl_qsort_string_compare);
3020 displayer->crlf (displayer);
3022 lines = 0;
3023 if (_rl_print_completions_horizontally == 0)
3025 /* Print the sorted items, up-and-down alphabetically, like ls. */
3026 for (i = 1; i <= count; i++)
3028 for (j = 0, l = i; j < limit; j++)
3030 if (l > len || matches[l] == 0)
3031 break;
3032 else
3034 temp = gdb_printable_part (matches[l]);
3035 printed_len = gdb_print_filename (temp, matches[l], sind,
3036 displayer);
3038 if (j + 1 < limit)
3039 for (k = 0; k < max - printed_len; k++)
3040 displayer->putch (displayer, ' ');
3042 l += count;
3044 displayer->crlf (displayer);
3045 lines++;
3046 if (page_completions && lines >= (displayer->height - 1) && i < count)
3048 lines = gdb_display_match_list_pager (lines, displayer);
3049 if (lines < 0)
3050 return 0;
3054 else
3056 /* Print the sorted items, across alphabetically, like ls -x. */
3057 for (i = 1; matches[i]; i++)
3059 temp = gdb_printable_part (matches[i]);
3060 printed_len = gdb_print_filename (temp, matches[i], sind, displayer);
3061 /* Have we reached the end of this line? */
3062 if (matches[i+1])
3064 if (i && (limit > 1) && (i % limit) == 0)
3066 displayer->crlf (displayer);
3067 lines++;
3068 if (page_completions && lines >= displayer->height - 1)
3070 lines = gdb_display_match_list_pager (lines, displayer);
3071 if (lines < 0)
3072 return 0;
3075 else
3076 for (k = 0; k < max - printed_len; k++)
3077 displayer->putch (displayer, ' ');
3080 displayer->crlf (displayer);
3083 return 1;
3086 /* Utility for displaying completion list matches, used by both CLI and TUI.
3088 MATCHES is the list of strings, in argv format, LEN is the number of
3089 strings in MATCHES, and MAX is the length of the longest string in
3090 MATCHES. */
3092 void
3093 gdb_display_match_list (char **matches, int len, int max,
3094 const struct match_list_displayer *displayer)
3096 /* Readline will never call this if complete_line returned NULL. */
3097 gdb_assert (max_completions != 0);
3099 /* complete_line will never return more than this. */
3100 if (max_completions > 0)
3101 gdb_assert (len <= max_completions);
3103 if (rl_completion_query_items > 0 && len >= rl_completion_query_items)
3105 char msg[100];
3107 /* We can't use *query here because they wait for <RET> which is
3108 wrong here. This follows the readline version as closely as possible
3109 for compatibility's sake. See readline/complete.c. */
3111 displayer->crlf (displayer);
3113 xsnprintf (msg, sizeof (msg),
3114 "Display all %d possibilities? (y or n)", len);
3115 displayer->puts (displayer, msg);
3116 displayer->flush (displayer);
3118 if (gdb_get_y_or_n (0, displayer) == 0)
3120 displayer->crlf (displayer);
3121 return;
3125 if (gdb_display_match_list_1 (matches, len, max, displayer))
3127 /* Note: MAX_COMPLETIONS may be -1 or zero, but LEN is always > 0. */
3128 if (len == max_completions)
3130 /* The maximum number of completions has been reached. Warn the user
3131 that there may be more. */
3132 const char *message = get_max_completions_reached_message ();
3134 displayer->puts (displayer, message);
3135 displayer->crlf (displayer);
3140 void _initialize_completer ();
3141 void
3142 _initialize_completer ()
3144 add_setshow_zuinteger_unlimited_cmd ("max-completions", no_class,
3145 &max_completions, _("\
3146 Set maximum number of completion candidates."), _("\
3147 Show maximum number of completion candidates."), _("\
3148 Use this to limit the number of candidates considered\n\
3149 during completion. Specifying \"unlimited\" or -1\n\
3150 disables limiting. Note that setting either no limit or\n\
3151 a very large limit can make completion slow."),
3152 NULL, NULL, &setlist, &showlist);