]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/completer.c
gdb: make skip_over_slash_fmt available outside printcmd.c
[thirdparty/binutils-gdb.git] / gdb / completer.c
CommitLineData
c5f0f3d0 1/* Line completion stuff for GDB, the GNU debugger.
213516ef 2 Copyright (C) 2000-2023 Free Software Foundation, Inc.
c5f0f3d0
FN
3
4 This file is part of GDB.
5
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
a9762ec7 8 the Free Software Foundation; either version 3 of the License, or
c5f0f3d0
FN
9 (at your option) any later version.
10
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.
15
16 You should have received a copy of the GNU General Public License
a9762ec7 17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c5f0f3d0
FN
18
19#include "defs.h"
4de283e4 20#include "symtab.h"
d55e5aa6 21#include "gdbtypes.h"
4de283e4 22#include "expression.h"
ef0f16cc 23#include "filenames.h"
51065942 24#include "language.h"
268a13a5 25#include "gdbsupport/gdb_signals.h"
d55e5aa6 26#include "target.h"
4de283e4 27#include "reggroups.h"
71c24708 28#include "user-regs.h"
4de283e4
TT
29#include "arch-utils.h"
30#include "location.h"
31#include <algorithm>
32#include "linespec.h"
33#include "cli/cli-decode.h"
18a642a1 34
03717487
MS
35/* FIXME: This is needed because of lookup_cmd_1 (). We should be
36 calling a hook instead so we eliminate the CLI dependency. */
c5f0f3d0
FN
37#include "gdbcmd.h"
38
1add37b5 39/* Needed for rl_completer_word_break_characters and for
38017ce8 40 rl_filename_completion_function. */
dbda9972 41#include "readline/readline.h"
c5f0f3d0
FN
42
43/* readline defines this. */
44#undef savestring
45
46#include "completer.h"
47
724fd9ba
AB
48/* See completer.h. */
49
50class completion_tracker::completion_hash_entry
51{
52public:
53 /* Constructor. */
54 completion_hash_entry (gdb::unique_xmalloc_ptr<char> name,
55 gdb::unique_xmalloc_ptr<char> lcd)
56 : m_name (std::move (name)),
57 m_lcd (std::move (lcd))
58 {
59 /* Nothing. */
60 }
61
62 /* Returns a pointer to the lowest common denominator string. This
63 string will only be valid while this hash entry is still valid as the
64 string continues to be owned by this hash entry and will be released
65 when this entry is deleted. */
66 char *get_lcd () const
67 {
68 return m_lcd.get ();
69 }
70
71 /* Get, and release the name field from this hash entry. This can only
72 be called once, after which the name field is no longer valid. This
73 should be used to pass ownership of the name to someone else. */
74 char *release_name ()
75 {
76 return m_name.release ();
77 }
78
79 /* Return true of the name in this hash entry is STR. */
80 bool is_name_eq (const char *str) const
81 {
82 return strcmp (m_name.get (), str) == 0;
83 }
84
99f1bc6a
AB
85 /* Return the hash value based on the name of the entry. */
86 hashval_t hash_name () const
87 {
88 return htab_hash_string (m_name.get ());
89 }
90
724fd9ba
AB
91private:
92
93 /* The symbol name stored in this hash entry. */
94 gdb::unique_xmalloc_ptr<char> m_name;
95
96 /* The lowest common denominator string computed for this hash entry. */
97 gdb::unique_xmalloc_ptr<char> m_lcd;
98};
99
eb3ff9a5
PA
100/* Misc state that needs to be tracked across several different
101 readline completer entry point calls, all related to a single
102 completion invocation. */
103
104struct gdb_completer_state
105{
106 /* The current completion's completion tracker. This is a global
107 because a tracker can be shared between the handle_brkchars and
108 handle_completion phases, which involves different readline
109 callbacks. */
110 completion_tracker *tracker = NULL;
111
112 /* Whether the current completion was aborted. */
113 bool aborted = false;
114};
115
116/* The current completion state. */
117static gdb_completer_state current_completion;
118
c6756f62
PA
119/* An enumeration of the various things a user might attempt to
120 complete for a location. If you change this, remember to update
121 the explicit_options array below too. */
87f0e720
KS
122
123enum explicit_location_match_type
124{
125 /* The filename of a source file. */
126 MATCH_SOURCE,
127
128 /* The name of a function or method. */
129 MATCH_FUNCTION,
130
a20714ff
PA
131 /* The fully-qualified name of a function or method. */
132 MATCH_QUALIFIED,
133
c6756f62
PA
134 /* A line number. */
135 MATCH_LINE,
136
87f0e720
KS
137 /* The name of a label. */
138 MATCH_LABEL
139};
140
9c3f90bd 141/* Prototypes for local functions. */
c5f0f3d0
FN
142
143/* readline uses the word breaks for two things:
144 (1) In figuring out where to point the TEXT parameter to the
145 rl_completion_entry_function. Since we don't use TEXT for much,
aff410f1
MS
146 it doesn't matter a lot what the word breaks are for this purpose,
147 but it does affect how much stuff M-? lists.
c5f0f3d0
FN
148 (2) If one of the matches contains a word break character, readline
149 will quote it. That's why we switch between
53fc67f8 150 current_language->word_break_characters () and
c5f0f3d0 151 gdb_completer_command_word_break_characters. I'm not sure when
aff410f1
MS
152 we need this behavior (perhaps for funky characters in C++
153 symbols?). */
c5f0f3d0
FN
154
155/* Variables which are necessary for fancy command line editing. */
c5f0f3d0 156
be09caf1 157/* When completing on command names, we remove '-' and '.' from the list of
c5f0f3d0
FN
158 word break characters, since we use it in command names. If the
159 readline library sees one in any of the current completion strings,
aff410f1
MS
160 it thinks that the string needs to be quoted and automatically
161 supplies a leading quote. */
67cb5b2d 162static const char gdb_completer_command_word_break_characters[] =
be09caf1 163" \t\n!@#$%^&*()+=|~`}{[]\"';:?/><,";
c5f0f3d0
FN
164
165/* When completing on file names, we remove from the list of word
166 break characters any characters that are commonly used in file
167 names, such as '-', '+', '~', etc. Otherwise, readline displays
168 incorrect completion candidates. */
7830cf6f
EZ
169/* MS-DOS and MS-Windows use colon as part of the drive spec, and most
170 programs support @foo style response files. */
67cb5b2d
PA
171static const char gdb_completer_file_name_break_characters[] =
172#ifdef HAVE_DOS_BASED_FILE_SYSTEM
173 " \t\n*|\"';?><@";
7830cf6f 174#else
67cb5b2d 175 " \t\n*|\"';:?><";
7830cf6f 176#endif
c5f0f3d0 177
aff410f1
MS
178/* Characters that can be used to quote completion strings. Note that
179 we can't include '"' because the gdb C parser treats such quoted
180 sequences as strings. */
67cb5b2d 181static const char gdb_completer_quote_characters[] = "'";
c5f0f3d0 182\f
9c3f90bd 183/* Accessor for some completer data that may interest other files. */
c5f0f3d0 184
67cb5b2d 185const char *
c5f0f3d0
FN
186get_gdb_completer_quote_characters (void)
187{
188 return gdb_completer_quote_characters;
189}
190
aff410f1
MS
191/* This can be used for functions which don't want to complete on
192 symbols but don't want to complete on anything else either. */
eb3ff9a5
PA
193
194void
aff410f1 195noop_completer (struct cmd_list_element *ignore,
eb3ff9a5 196 completion_tracker &tracker,
6f937416 197 const char *text, const char *prefix)
d75b5104 198{
d75b5104
EZ
199}
200
c5f0f3d0 201/* Complete on filenames. */
6e1dbf8c 202
eb3ff9a5
PA
203void
204filename_completer (struct cmd_list_element *ignore,
205 completion_tracker &tracker,
6f937416 206 const char *text, const char *word)
c5f0f3d0 207{
c5f0f3d0 208 int subsequent_name;
c5f0f3d0
FN
209
210 subsequent_name = 0;
211 while (1)
212 {
60a20c19
PA
213 gdb::unique_xmalloc_ptr<char> p_rl
214 (rl_filename_completion_function (text, subsequent_name));
215 if (p_rl == NULL)
49c4e619 216 break;
c5f0f3d0 217 /* We need to set subsequent_name to a non-zero value before the
aff410f1
MS
218 continue line below, because otherwise, if the first file
219 seen by GDB is a backup file whose name ends in a `~', we
220 will loop indefinitely. */
c5f0f3d0 221 subsequent_name = 1;
aff410f1 222 /* Like emacs, don't complete on old versions. Especially
dda83cd7 223 useful in the "source" command. */
60a20c19 224 const char *p = p_rl.get ();
c5f0f3d0 225 if (p[strlen (p) - 1] == '~')
60a20c19 226 continue;
c5f0f3d0 227
60a20c19
PA
228 tracker.add_completion
229 (make_completion_match_str (std::move (p_rl), text, word));
c5f0f3d0
FN
230 }
231#if 0
aff410f1
MS
232 /* There is no way to do this just long enough to affect quote
233 inserting without also affecting the next completion. This
234 should be fixed in readline. FIXME. */
489f0516 235 /* Ensure that readline does the right thing
c5f0f3d0
FN
236 with respect to inserting quotes. */
237 rl_completer_word_break_characters = "";
238#endif
c5f0f3d0
FN
239}
240
6e1dbf8c
PA
241/* The corresponding completer_handle_brkchars
242 implementation. */
243
244static void
245filename_completer_handle_brkchars (struct cmd_list_element *ignore,
eb3ff9a5 246 completion_tracker &tracker,
6e1dbf8c
PA
247 const char *text, const char *word)
248{
249 set_rl_completer_word_break_characters
250 (gdb_completer_file_name_break_characters);
251}
252
6a2c1b87
PA
253/* Find the bounds of the current word for completion purposes, and
254 return a pointer to the end of the word. This mimics (and is a
255 modified version of) readline's _rl_find_completion_word internal
256 function.
257
258 This function skips quoted substrings (characters between matched
259 pairs of characters in rl_completer_quote_characters). We try to
260 find an unclosed quoted substring on which to do matching. If one
261 is not found, we use the word break characters to find the
262 boundaries of the current word. QC, if non-null, is set to the
263 opening quote character if we found an unclosed quoted substring,
264 '\0' otherwise. DP, if non-null, is set to the value of the
265 delimiter character that caused a word break. */
266
267struct gdb_rl_completion_word_info
268{
269 const char *word_break_characters;
270 const char *quote_characters;
271 const char *basic_quote_characters;
272};
273
274static const char *
275gdb_rl_find_completion_word (struct gdb_rl_completion_word_info *info,
276 int *qc, int *dp,
277 const char *line_buffer)
278{
fa6ec8ef 279 int scan, end, delimiter, pass_next, isbrk;
6a2c1b87
PA
280 char quote_char;
281 const char *brkchars;
282 int point = strlen (line_buffer);
283
284 /* The algorithm below does '--point'. Avoid buffer underflow with
285 the empty string. */
286 if (point == 0)
287 {
288 if (qc != NULL)
289 *qc = '\0';
290 if (dp != NULL)
291 *dp = '\0';
292 return line_buffer;
293 }
294
295 end = point;
fa6ec8ef 296 delimiter = 0;
6a2c1b87
PA
297 quote_char = '\0';
298
299 brkchars = info->word_break_characters;
300
301 if (info->quote_characters != NULL)
302 {
303 /* We have a list of characters which can be used in pairs to
304 quote substrings for the completer. Try to find the start of
305 an unclosed quoted substring. */
6a2c1b87
PA
306 for (scan = pass_next = 0;
307 scan < end;
308 scan++)
309 {
310 if (pass_next)
311 {
312 pass_next = 0;
313 continue;
314 }
315
316 /* Shell-like semantics for single quotes -- don't allow
317 backslash to quote anything in single quotes, especially
318 not the closing quote. If you don't like this, take out
319 the check on the value of quote_char. */
320 if (quote_char != '\'' && line_buffer[scan] == '\\')
321 {
322 pass_next = 1;
6a2c1b87
PA
323 continue;
324 }
325
326 if (quote_char != '\0')
327 {
328 /* Ignore everything until the matching close quote
329 char. */
330 if (line_buffer[scan] == quote_char)
331 {
332 /* Found matching close. Abandon this
333 substring. */
334 quote_char = '\0';
335 point = end;
336 }
337 }
338 else if (strchr (info->quote_characters, line_buffer[scan]))
339 {
340 /* Found start of a quoted substring. */
341 quote_char = line_buffer[scan];
342 point = scan + 1;
6a2c1b87
PA
343 }
344 }
345 }
346
347 if (point == end && quote_char == '\0')
348 {
349 /* We didn't find an unclosed quoted substring upon which to do
350 completion, so use the word break characters to find the
351 substring on which to complete. */
352 while (--point)
353 {
354 scan = line_buffer[point];
355
356 if (strchr (brkchars, scan) != 0)
357 break;
358 }
359 }
360
361 /* If we are at an unquoted word break, then advance past it. */
362 scan = line_buffer[point];
363
364 if (scan)
365 {
366 isbrk = strchr (brkchars, scan) != 0;
367
368 if (isbrk)
369 {
370 /* If the character that caused the word break was a quoting
371 character, then remember it as the delimiter. */
372 if (info->basic_quote_characters
373 && strchr (info->basic_quote_characters, scan)
374 && (end - point) > 1)
375 delimiter = scan;
376
377 point++;
378 }
379 }
380
381 if (qc != NULL)
382 *qc = quote_char;
383 if (dp != NULL)
384 *dp = delimiter;
385
386 return line_buffer + point;
387}
388
e6ed716c
PA
389/* Find the completion word point for TEXT, emulating the algorithm
390 readline uses to find the word point, using WORD_BREAK_CHARACTERS
391 as word break characters. */
c6756f62 392
e6ed716c
PA
393static const char *
394advance_to_completion_word (completion_tracker &tracker,
395 const char *word_break_characters,
396 const char *text)
c6756f62
PA
397{
398 gdb_rl_completion_word_info info;
399
e6ed716c 400 info.word_break_characters = word_break_characters;
c6756f62
PA
401 info.quote_characters = gdb_completer_quote_characters;
402 info.basic_quote_characters = rl_basic_quote_characters;
403
00b56dbe 404 int delimiter;
c6756f62 405 const char *start
00b56dbe 406 = gdb_rl_find_completion_word (&info, NULL, &delimiter, text);
c6756f62
PA
407
408 tracker.advance_custom_word_point_by (start - text);
409
00b56dbe
PA
410 if (delimiter)
411 {
412 tracker.set_quote_char (delimiter);
413 tracker.set_suppress_append_ws (true);
414 }
415
c6756f62
PA
416 return start;
417}
418
419/* See completer.h. */
420
e6ed716c
PA
421const char *
422advance_to_expression_complete_word_point (completion_tracker &tracker,
423 const char *text)
424{
53fc67f8 425 const char *brk_chars = current_language->word_break_characters ();
e6ed716c
PA
426 return advance_to_completion_word (tracker, brk_chars, text);
427}
428
429/* See completer.h. */
430
431const char *
432advance_to_filename_complete_word_point (completion_tracker &tracker,
433 const char *text)
434{
435 const char *brk_chars = gdb_completer_file_name_break_characters;
436 return advance_to_completion_word (tracker, brk_chars, text);
437}
438
439/* See completer.h. */
440
c6756f62
PA
441bool
442completion_tracker::completes_to_completion_word (const char *word)
443{
724fd9ba 444 recompute_lowest_common_denominator ();
c6756f62
PA
445 if (m_lowest_common_denominator_unique)
446 {
447 const char *lcd = m_lowest_common_denominator;
448
449 if (strncmp_iw (word, lcd, strlen (lcd)) == 0)
450 {
451 /* Maybe skip the function and complete on keywords. */
452 size_t wordlen = strlen (word);
453 if (word[wordlen - 1] == ' ')
454 return true;
455 }
456 }
457
458 return false;
459}
460
272d4594
PA
461/* See completer.h. */
462
463void
464complete_nested_command_line (completion_tracker &tracker, const char *text)
465{
466 /* Must be called from a custom-word-point completer. */
467 gdb_assert (tracker.use_custom_word_point ());
468
469 /* Disable the custom word point temporarily, because we want to
470 probe whether the command we're completing itself uses a custom
471 word point. */
472 tracker.set_use_custom_word_point (false);
473 size_t save_custom_word_point = tracker.custom_word_point ();
474
475 int quote_char = '\0';
476 const char *word = completion_find_completion_word (tracker, text,
477 &quote_char);
478
479 if (tracker.use_custom_word_point ())
480 {
481 /* The command we're completing uses a custom word point, so the
482 tracker already contains the matches. We're done. */
483 return;
484 }
485
486 /* Restore the custom word point settings. */
487 tracker.set_custom_word_point (save_custom_word_point);
488 tracker.set_use_custom_word_point (true);
489
490 /* Run the handle_completions completer phase. */
491 complete_line (tracker, word, text, strlen (text));
492}
493
87f0e720 494/* Complete on linespecs, which might be of two possible forms:
c94fdfd0
EZ
495
496 file:line
497 or
498 symbol+offset
499
aff410f1
MS
500 This is intended to be used in commands that set breakpoints
501 etc. */
502
eb3ff9a5
PA
503static void
504complete_files_symbols (completion_tracker &tracker,
505 const char *text, const char *word)
c94fdfd0 506{
eb3ff9a5 507 completion_list fn_list;
6f937416 508 const char *p;
c94fdfd0
EZ
509 int quote_found = 0;
510 int quoted = *text == '\'' || *text == '"';
511 int quote_char = '\0';
6f937416 512 const char *colon = NULL;
c94fdfd0 513 char *file_to_match = NULL;
6f937416
PA
514 const char *symbol_start = text;
515 const char *orig_text = text;
c94fdfd0 516
59be2b6a 517 /* Do we have an unquoted colon, as in "break foo.c:bar"? */
c94fdfd0
EZ
518 for (p = text; *p != '\0'; ++p)
519 {
520 if (*p == '\\' && p[1] == '\'')
521 p++;
522 else if (*p == '\'' || *p == '"')
523 {
524 quote_found = *p;
525 quote_char = *p++;
526 while (*p != '\0' && *p != quote_found)
527 {
528 if (*p == '\\' && p[1] == quote_found)
529 p++;
530 p++;
531 }
532
533 if (*p == quote_found)
534 quote_found = 0;
535 else
9c3f90bd 536 break; /* Hit the end of text. */
c94fdfd0
EZ
537 }
538#if HAVE_DOS_BASED_FILE_SYSTEM
539 /* If we have a DOS-style absolute file name at the beginning of
540 TEXT, and the colon after the drive letter is the only colon
541 we found, pretend the colon is not there. */
542 else if (p < text + 3 && *p == ':' && p == text + 1 + quoted)
543 ;
544#endif
545 else if (*p == ':' && !colon)
546 {
547 colon = p;
548 symbol_start = p + 1;
549 }
53fc67f8 550 else if (strchr (current_language->word_break_characters (), *p))
c94fdfd0
EZ
551 symbol_start = p + 1;
552 }
553
554 if (quoted)
555 text++;
c94fdfd0
EZ
556
557 /* Where is the file name? */
558 if (colon)
559 {
560 char *s;
561
562 file_to_match = (char *) xmalloc (colon - text + 1);
bbfa2517
YQ
563 strncpy (file_to_match, text, colon - text);
564 file_to_match[colon - text] = '\0';
c94fdfd0
EZ
565 /* Remove trailing colons and quotes from the file name. */
566 for (s = file_to_match + (colon - text);
567 s > file_to_match;
568 s--)
569 if (*s == ':' || *s == quote_char)
570 *s = '\0';
571 }
572 /* If the text includes a colon, they want completion only on a
573 symbol name after the colon. Otherwise, we need to complete on
574 symbols as well as on files. */
575 if (colon)
576 {
c6756f62
PA
577 collect_file_symbol_completion_matches (tracker,
578 complete_symbol_mode::EXPRESSION,
b5ec771e 579 symbol_name_match_type::EXPRESSION,
c6756f62 580 symbol_start, word,
eb3ff9a5 581 file_to_match);
c94fdfd0
EZ
582 xfree (file_to_match);
583 }
584 else
585 {
eb3ff9a5
PA
586 size_t text_len = strlen (text);
587
c6756f62
PA
588 collect_symbol_completion_matches (tracker,
589 complete_symbol_mode::EXPRESSION,
b5ec771e 590 symbol_name_match_type::EXPRESSION,
c6756f62 591 symbol_start, word);
c94fdfd0
EZ
592 /* If text includes characters which cannot appear in a file
593 name, they cannot be asking for completion on files. */
eb3ff9a5 594 if (strcspn (text,
1f20ed91 595 gdb_completer_file_name_break_characters) == text_len)
c94fdfd0
EZ
596 fn_list = make_source_files_completion_list (text, text);
597 }
598
eb3ff9a5 599 if (!fn_list.empty () && !tracker.have_completions ())
c94fdfd0
EZ
600 {
601 /* If we only have file names as possible completion, we should
602 bring them in sync with what rl_complete expects. The
603 problem is that if the user types "break /foo/b TAB", and the
604 possible completions are "/foo/bar" and "/foo/baz"
605 rl_complete expects us to return "bar" and "baz", without the
606 leading directories, as possible completions, because `word'
607 starts at the "b". But we ignore the value of `word' when we
608 call make_source_files_completion_list above (because that
609 would not DTRT when the completion results in both symbols
610 and file names), so make_source_files_completion_list returns
611 the full "/foo/bar" and "/foo/baz" strings. This produces
612 wrong results when, e.g., there's only one possible
613 completion, because rl_complete will prepend "/foo/" to each
614 candidate completion. The loop below removes that leading
615 part. */
eb3ff9a5 616 for (const auto &fn_up: fn_list)
c94fdfd0 617 {
eb3ff9a5
PA
618 char *fn = fn_up.get ();
619 memmove (fn, fn + (word - text), strlen (fn) + 1 - (word - text));
c94fdfd0 620 }
c94fdfd0 621 }
eb3ff9a5
PA
622
623 tracker.add_completions (std::move (fn_list));
624
625 if (!tracker.have_completions ())
c94fdfd0
EZ
626 {
627 /* No completions at all. As the final resort, try completing
628 on the entire text as a symbol. */
eb3ff9a5 629 collect_symbol_completion_matches (tracker,
c6756f62 630 complete_symbol_mode::EXPRESSION,
b5ec771e 631 symbol_name_match_type::EXPRESSION,
eb3ff9a5 632 orig_text, word);
c94fdfd0 633 }
eb3ff9a5
PA
634}
635
c45ec17c
PA
636/* See completer.h. */
637
638completion_list
639complete_source_filenames (const char *text)
640{
641 size_t text_len = strlen (text);
642
643 /* If text includes characters which cannot appear in a file name,
644 the user cannot be asking for completion on files. */
645 if (strcspn (text,
646 gdb_completer_file_name_break_characters)
647 == text_len)
648 return make_source_files_completion_list (text, text);
649
650 return {};
651}
652
653/* Complete address and linespec locations. */
654
655static void
656complete_address_and_linespec_locations (completion_tracker &tracker,
a20714ff
PA
657 const char *text,
658 symbol_name_match_type match_type)
c45ec17c
PA
659{
660 if (*text == '*')
661 {
662 tracker.advance_custom_word_point_by (1);
663 text++;
664 const char *word
665 = advance_to_expression_complete_word_point (tracker, text);
666 complete_expression (tracker, text, word);
667 }
668 else
669 {
a20714ff 670 linespec_complete (tracker, text, match_type);
c45ec17c
PA
671 }
672}
673
c6756f62
PA
674/* The explicit location options. Note that indexes into this array
675 must match the explicit_location_match_type enumerators. */
c45ec17c 676
c6756f62
PA
677static const char *const explicit_options[] =
678 {
679 "-source",
680 "-function",
a20714ff 681 "-qualified",
c6756f62
PA
682 "-line",
683 "-label",
684 NULL
685 };
686
687/* The probe modifier options. These can appear before a location in
688 breakpoint commands. */
689static const char *const probe_options[] =
690 {
691 "-probe",
692 "-probe-stap",
693 "-probe-dtrace",
694 NULL
695 };
696
eb3ff9a5 697/* Returns STRING if not NULL, the empty string otherwise. */
c94fdfd0 698
eb3ff9a5
PA
699static const char *
700string_or_empty (const char *string)
701{
702 return string != NULL ? string : "";
c94fdfd0
EZ
703}
704
87f0e720
KS
705/* A helper function to collect explicit location matches for the given
706 LOCATION, which is attempting to match on WORD. */
707
eb3ff9a5
PA
708static void
709collect_explicit_location_matches (completion_tracker &tracker,
264f9890 710 location_spec *locspec,
87f0e720 711 enum explicit_location_match_type what,
c6756f62
PA
712 const char *word,
713 const struct language_defn *language)
87f0e720 714{
40d97ee2
PA
715 const explicit_location_spec *explicit_loc
716 = as_explicit_location_spec (locspec);
87f0e720 717
a20714ff
PA
718 /* True if the option expects an argument. */
719 bool needs_arg = true;
720
c6756f62
PA
721 /* Note, in the various MATCH_* below, we complete on
722 explicit_loc->foo instead of WORD, because only the former will
723 have already skipped past any quote char. */
87f0e720
KS
724 switch (what)
725 {
726 case MATCH_SOURCE:
727 {
eb3ff9a5
PA
728 const char *source = string_or_empty (explicit_loc->source_filename);
729 completion_list matches
c6756f62 730 = make_source_files_completion_list (source, source);
eb3ff9a5 731 tracker.add_completions (std::move (matches));
87f0e720
KS
732 }
733 break;
734
735 case MATCH_FUNCTION:
736 {
eb3ff9a5 737 const char *function = string_or_empty (explicit_loc->function_name);
c6756f62 738 linespec_complete_function (tracker, function,
a20714ff 739 explicit_loc->func_name_match_type,
c6756f62 740 explicit_loc->source_filename);
87f0e720
KS
741 }
742 break;
743
a20714ff
PA
744 case MATCH_QUALIFIED:
745 needs_arg = false;
746 break;
c6756f62
PA
747 case MATCH_LINE:
748 /* Nothing to offer. */
749 break;
750
87f0e720 751 case MATCH_LABEL:
a2459270
PA
752 {
753 const char *label = string_or_empty (explicit_loc->label_name);
754 linespec_complete_label (tracker, language,
755 explicit_loc->source_filename,
756 explicit_loc->function_name,
a20714ff 757 explicit_loc->func_name_match_type,
a2459270
PA
758 label);
759 }
87f0e720
KS
760 break;
761
762 default:
763 gdb_assert_not_reached ("unhandled explicit_location_match_type");
764 }
c6756f62 765
a20714ff 766 if (!needs_arg || tracker.completes_to_completion_word (word))
c6756f62
PA
767 {
768 tracker.discard_completions ();
769 tracker.advance_custom_word_point_by (strlen (word));
770 complete_on_enum (tracker, explicit_options, "", "");
771 complete_on_enum (tracker, linespec_keywords, "", "");
772 }
773 else if (!tracker.have_completions ())
774 {
775 /* Maybe we have an unterminated linespec keyword at the tail of
776 the string. Try completing on that. */
777 size_t wordlen = strlen (word);
778 const char *keyword = word + wordlen;
779
780 if (wordlen > 0 && keyword[-1] != ' ')
781 {
782 while (keyword > word && *keyword != ' ')
783 keyword--;
784 /* Don't complete on keywords if we'd be completing on the
785 whole explicit linespec option. E.g., "b -function
786 thr<tab>" should not complete to the "thread"
787 keyword. */
788 if (keyword != word)
789 {
f1735a53 790 keyword = skip_spaces (keyword);
c6756f62
PA
791
792 tracker.advance_custom_word_point_by (keyword - word);
793 complete_on_enum (tracker, linespec_keywords, keyword, keyword);
794 }
795 }
796 else if (wordlen > 0 && keyword[-1] == ' ')
797 {
798 /* Assume that we're maybe past the explicit location
799 argument, and we didn't manage to find any match because
800 the user wants to create a pending breakpoint. Offer the
801 keyword and explicit location options as possible
802 completions. */
803 tracker.advance_custom_word_point_by (keyword - word);
804 complete_on_enum (tracker, linespec_keywords, keyword, keyword);
805 complete_on_enum (tracker, explicit_options, keyword, keyword);
806 }
807 }
87f0e720
KS
808}
809
c6756f62
PA
810/* If the next word in *TEXT_P is any of the keywords in KEYWORDS,
811 then advance both TEXT_P and the word point in the tracker past the
812 keyword and return the (0-based) index in the KEYWORDS array that
813 matched. Otherwise, return -1. */
87f0e720 814
c6756f62
PA
815static int
816skip_keyword (completion_tracker &tracker,
817 const char * const *keywords, const char **text_p)
87f0e720 818{
c6756f62 819 const char *text = *text_p;
f1735a53 820 const char *after = skip_to_space (text);
c6756f62 821 size_t len = after - text;
87f0e720 822
c6756f62
PA
823 if (text[len] != ' ')
824 return -1;
825
826 int found = -1;
827 for (int i = 0; keywords[i] != NULL; i++)
828 {
829 if (strncmp (keywords[i], text, len) == 0)
830 {
831 if (found == -1)
832 found = i;
833 else
834 return -1;
835 }
836 }
837
838 if (found != -1)
839 {
840 tracker.advance_custom_word_point_by (len + 1);
841 text += len + 1;
842 *text_p = text;
843 return found;
844 }
845
846 return -1;
87f0e720
KS
847}
848
264f9890 849/* A completer function for explicit location specs. This function
c6756f62
PA
850 completes both options ("-source", "-line", etc) and values. If
851 completing a quoted string, then QUOTED_ARG_START and
852 QUOTED_ARG_END point to the quote characters. LANGUAGE is the
853 current language. */
87f0e720 854
eb3ff9a5 855static void
264f9890
PA
856complete_explicit_location_spec (completion_tracker &tracker,
857 location_spec *locspec,
858 const char *text,
859 const language_defn *language,
860 const char *quoted_arg_start,
861 const char *quoted_arg_end)
87f0e720 862{
c6756f62
PA
863 if (*text != '-')
864 return;
87f0e720 865
c6756f62 866 int keyword = skip_keyword (tracker, explicit_options, &text);
87f0e720 867
c6756f62 868 if (keyword == -1)
1f58f6c2
TBA
869 {
870 complete_on_enum (tracker, explicit_options, text, text);
871 /* There are keywords that start with "-". Include them, too. */
872 complete_on_enum (tracker, linespec_keywords, text, text);
873 }
c6756f62 874 else
87f0e720 875 {
c6756f62
PA
876 /* Completing on value. */
877 enum explicit_location_match_type what
878 = (explicit_location_match_type) keyword;
879
880 if (quoted_arg_start != NULL && quoted_arg_end != NULL)
87f0e720 881 {
c6756f62
PA
882 if (quoted_arg_end[1] == '\0')
883 {
884 /* If completing a quoted string with the cursor right
885 at the terminating quote char, complete the
886 completion word without interpretation, so that
887 readline advances the cursor one whitespace past the
888 quote, even if there's no match. This makes these
889 cases behave the same:
890
891 before: "b -function function()"
892 after: "b -function function() "
893
894 before: "b -function 'function()'"
895 after: "b -function 'function()' "
896
897 and trusts the user in this case:
898
899 before: "b -function 'not_loaded_function_yet()'"
900 after: "b -function 'not_loaded_function_yet()' "
901 */
b02f78f9 902 tracker.add_completion (make_unique_xstrdup (text));
c6756f62
PA
903 }
904 else if (quoted_arg_end[1] == ' ')
905 {
906 /* We're maybe past the explicit location argument.
30baf67b 907 Skip the argument without interpretation, assuming the
c6756f62
PA
908 user may want to create pending breakpoint. Offer
909 the keyword and explicit location options as possible
910 completions. */
911 tracker.advance_custom_word_point_by (strlen (text));
912 complete_on_enum (tracker, linespec_keywords, "", "");
913 complete_on_enum (tracker, explicit_options, "", "");
914 }
915 return;
916 }
917
918 /* Now gather matches */
264f9890 919 collect_explicit_location_matches (tracker, locspec, what, text,
c6756f62
PA
920 language);
921 }
922}
87f0e720 923
c6756f62 924/* A completer for locations. */
87f0e720 925
c6756f62
PA
926void
927location_completer (struct cmd_list_element *ignore,
928 completion_tracker &tracker,
c45ec17c 929 const char *text, const char * /* word */)
c6756f62
PA
930{
931 int found_probe_option = -1;
932
933 /* If we have a probe modifier, skip it. This can only appear as
934 first argument. Until we have a specific completer for probes,
935 falling back to the linespec completer for the remainder of the
936 line is better than nothing. */
937 if (text[0] == '-' && text[1] == 'p')
938 found_probe_option = skip_keyword (tracker, probe_options, &text);
939
940 const char *option_text = text;
941 int saved_word_point = tracker.custom_word_point ();
942
943 const char *copy = text;
944
945 explicit_completion_info completion_info;
264f9890
PA
946 location_spec_up locspec
947 = string_to_explicit_location_spec (&copy, current_language,
948 &completion_info);
c6756f62
PA
949 if (completion_info.quoted_arg_start != NULL
950 && completion_info.quoted_arg_end == NULL)
951 {
952 /* Found an unbalanced quote. */
953 tracker.set_quote_char (*completion_info.quoted_arg_start);
954 tracker.advance_custom_word_point_by (1);
87f0e720 955 }
c6756f62 956
264f9890 957 if (completion_info.saw_explicit_location_spec_option)
87f0e720 958 {
c6756f62 959 if (*copy != '\0')
87f0e720 960 {
c6756f62
PA
961 tracker.advance_custom_word_point_by (copy - text);
962 text = copy;
963
964 /* We found a terminator at the tail end of the string,
965 which means we're past the explicit location options. We
966 may have a keyword to complete on. If we have a whole
967 keyword, then complete whatever comes after as an
968 expression. This is mainly for the "if" keyword. If the
969 "thread" and "task" keywords gain their own completers,
970 they should be used here. */
971 int keyword = skip_keyword (tracker, linespec_keywords, &text);
972
973 if (keyword == -1)
974 {
975 complete_on_enum (tracker, linespec_keywords, text, text);
976 }
977 else
978 {
979 const char *word
980 = advance_to_expression_complete_word_point (tracker, text);
981 complete_expression (tracker, text, word);
982 }
87f0e720 983 }
c6756f62 984 else
87f0e720 985 {
c6756f62
PA
986 tracker.advance_custom_word_point_by (completion_info.last_option
987 - text);
988 text = completion_info.last_option;
989
264f9890
PA
990 complete_explicit_location_spec (tracker, locspec.get (), text,
991 current_language,
992 completion_info.quoted_arg_start,
993 completion_info.quoted_arg_end);
c6756f62 994
87f0e720 995 }
c6756f62 996 }
a20714ff 997 /* This is an address or linespec location. */
264f9890 998 else if (locspec != nullptr)
a20714ff
PA
999 {
1000 /* Handle non-explicit location options. */
1001
1002 int keyword = skip_keyword (tracker, explicit_options, &text);
1003 if (keyword == -1)
1004 complete_on_enum (tracker, explicit_options, text, text);
1005 else
1006 {
1007 tracker.advance_custom_word_point_by (copy - text);
1008 text = copy;
1009
1010 symbol_name_match_type match_type
40d97ee2 1011 = as_explicit_location_spec (locspec.get ())->func_name_match_type;
a20714ff
PA
1012 complete_address_and_linespec_locations (tracker, text, match_type);
1013 }
1014 }
c6756f62
PA
1015 else
1016 {
a20714ff
PA
1017 /* No options. */
1018 complete_address_and_linespec_locations (tracker, text,
1019 symbol_name_match_type::WILD);
c6756f62 1020 }
87f0e720 1021
c6756f62 1022 /* Add matches for option names, if either:
87f0e720 1023
c6756f62
PA
1024 - Some completer above found some matches, but the word point did
1025 not advance (e.g., "b <tab>" finds all functions, or "b -<tab>"
1026 matches all objc selectors), or;
1027
1028 - Some completer above advanced the word point, but found no
1029 matches.
1030 */
1031 if ((text[0] == '-' || text[0] == '\0')
1032 && (!tracker.have_completions ()
1033 || tracker.custom_word_point () == saved_word_point))
1034 {
1035 tracker.set_custom_word_point (saved_word_point);
1036 text = option_text;
1037
1038 if (found_probe_option == -1)
1039 complete_on_enum (tracker, probe_options, text, text);
1040 complete_on_enum (tracker, explicit_options, text, text);
87f0e720 1041 }
87f0e720
KS
1042}
1043
c6756f62
PA
1044/* The corresponding completer_handle_brkchars
1045 implementation. */
87f0e720 1046
c6756f62
PA
1047static void
1048location_completer_handle_brkchars (struct cmd_list_element *ignore,
1049 completion_tracker &tracker,
1050 const char *text,
1051 const char *word_ignored)
87f0e720 1052{
c6756f62 1053 tracker.set_use_custom_word_point (true);
87f0e720 1054
c6756f62 1055 location_completer (ignore, tracker, text, NULL);
87f0e720
KS
1056}
1057
c45ec17c 1058/* See completer.h. */
eb3ff9a5 1059
c45ec17c 1060void
eb3ff9a5
PA
1061complete_expression (completion_tracker &tracker,
1062 const char *text, const char *word)
65d12d83 1063{
1e237aba
TT
1064 expression_up exp;
1065 std::unique_ptr<expr_completion_base> expr_completer;
65d12d83
TT
1066
1067 /* Perform a tentative parse of the expression, to see whether a
1068 field completion is required. */
a70b8144 1069 try
c92817ce 1070 {
1e237aba 1071 exp = parse_expression_for_completion (text, &expr_completer);
c92817ce 1072 }
230d2906 1073 catch (const gdb_exception_error &except)
492d29ea 1074 {
eb3ff9a5 1075 return;
492d29ea 1076 }
492d29ea 1077
1e237aba
TT
1078 /* Part of the parse_expression_for_completion contract. */
1079 gdb_assert ((exp == nullptr) == (expr_completer == nullptr));
1080 if (expr_completer != nullptr
1081 && expr_completer->complete (exp.get (), tracker))
1082 return;
65d12d83 1083
eb3ff9a5
PA
1084 complete_files_symbols (tracker, text, word);
1085}
1086
1087/* Complete on expressions. Often this means completing on symbol
1088 names, but some language parsers also have support for completing
1089 field names. */
1090
1091void
1092expression_completer (struct cmd_list_element *ignore,
1093 completion_tracker &tracker,
1094 const char *text, const char *word)
1095{
1096 complete_expression (tracker, text, word);
65d12d83
TT
1097}
1098
7d793aa9
SDJ
1099/* See definition in completer.h. */
1100
67cb5b2d
PA
1101void
1102set_rl_completer_word_break_characters (const char *break_chars)
1103{
1104 rl_completer_word_break_characters = (char *) break_chars;
1105}
1106
78b13106
PA
1107/* Complete on symbols. */
1108
eb3ff9a5 1109void
78b13106 1110symbol_completer (struct cmd_list_element *ignore,
eb3ff9a5 1111 completion_tracker &tracker,
78b13106
PA
1112 const char *text, const char *word)
1113{
c6756f62 1114 collect_symbol_completion_matches (tracker, complete_symbol_mode::EXPRESSION,
b5ec771e 1115 symbol_name_match_type::EXPRESSION,
c6756f62 1116 text, word);
78b13106
PA
1117}
1118
aff410f1
MS
1119/* Here are some useful test cases for completion. FIXME: These
1120 should be put in the test suite. They should be tested with both
1121 M-? and TAB.
c5f0f3d0
FN
1122
1123 "show output-" "radix"
1124 "show output" "-radix"
1125 "p" ambiguous (commands starting with p--path, print, printf, etc.)
1126 "p " ambiguous (all symbols)
1127 "info t foo" no completions
1128 "info t " no completions
1129 "info t" ambiguous ("info target", "info terminal", etc.)
1130 "info ajksdlfk" no completions
1131 "info ajksdlfk " no completions
1132 "info" " "
1133 "info " ambiguous (all info commands)
1134 "p \"a" no completions (string constant)
1135 "p 'a" ambiguous (all symbols starting with a)
1136 "p b-a" ambiguous (all symbols starting with a)
1137 "p b-" ambiguous (all symbols)
1138 "file Make" "file" (word break hard to screw up here)
1139 "file ../gdb.stabs/we" "ird" (needs to not break word at slash)
1140 */
1141
eb3ff9a5 1142enum complete_line_internal_reason
67c296a2 1143{
eb3ff9a5 1144 /* Preliminary phase, called by gdb_completion_word_break_characters
c6756f62
PA
1145 function, is used to either:
1146
1147 #1 - Determine the set of chars that are word delimiters
1148 depending on the current command in line_buffer.
1149
1150 #2 - Manually advance RL_POINT to the "word break" point instead
1151 of letting readline do it (based on too-simple character
1152 matching).
1153
1154 Simpler completers that just pass a brkchars array to readline
1155 (#1 above) must defer generating the completions to the main
1156 phase (below). No completion list should be generated in this
1157 phase.
1158
1159 OTOH, completers that manually advance the word point(#2 above)
1160 must set "use_custom_word_point" in the tracker and generate
1161 their completion in this phase. Note that this is the convenient
1162 thing to do since they'll be parsing the input line anyway. */
67c296a2 1163 handle_brkchars,
eb3ff9a5
PA
1164
1165 /* Main phase, called by complete_line function, is used to get the
1166 list of possible completions. */
67c296a2 1167 handle_completions,
eb3ff9a5
PA
1168
1169 /* Special case when completing a 'help' command. In this case,
1170 once sub-command completions are exhausted, we simply return
1171 NULL. */
1172 handle_help,
1173};
67c296a2 1174
6e1dbf8c
PA
1175/* Helper for complete_line_internal to simplify it. */
1176
eb3ff9a5
PA
1177static void
1178complete_line_internal_normal_command (completion_tracker &tracker,
1179 const char *command, const char *word,
6e1dbf8c
PA
1180 const char *cmd_args,
1181 complete_line_internal_reason reason,
1182 struct cmd_list_element *c)
1183{
1184 const char *p = cmd_args;
1185
1186 if (c->completer == filename_completer)
1187 {
1188 /* Many commands which want to complete on file names accept
1189 several file names, as in "run foo bar >>baz". So we don't
1190 want to complete the entire text after the command, just the
1191 last word. To this end, we need to find the beginning of the
1192 file name by starting at `word' and going backwards. */
1193 for (p = word;
1194 p > command
1195 && strchr (gdb_completer_file_name_break_characters,
1196 p[-1]) == NULL;
1197 p--)
1198 ;
1199 }
1200
1201 if (reason == handle_brkchars)
1202 {
1203 completer_handle_brkchars_ftype *brkchars_fn;
1204
1205 if (c->completer_handle_brkchars != NULL)
1206 brkchars_fn = c->completer_handle_brkchars;
1207 else
1208 {
1209 brkchars_fn
1210 = (completer_handle_brkchars_func_for_completer
1211 (c->completer));
1212 }
1213
eb3ff9a5 1214 brkchars_fn (c, tracker, p, word);
6e1dbf8c
PA
1215 }
1216
1217 if (reason != handle_brkchars && c->completer != NULL)
eb3ff9a5 1218 (*c->completer) (c, tracker, p, word);
6e1dbf8c 1219}
67c296a2
PM
1220
1221/* Internal function used to handle completions.
1222
c5f0f3d0
FN
1223
1224 TEXT is the caller's idea of the "word" we are looking at.
1225
aff410f1
MS
1226 LINE_BUFFER is available to be looked at; it contains the entire
1227 text of the line. POINT is the offset in that line of the cursor.
1228 You should pretend that the line ends at POINT.
67c296a2 1229
eb3ff9a5 1230 See complete_line_internal_reason for description of REASON. */
14032a66 1231
eb3ff9a5
PA
1232static void
1233complete_line_internal_1 (completion_tracker &tracker,
1234 const char *text,
1235 const char *line_buffer, int point,
1236 complete_line_internal_reason reason)
c5f0f3d0 1237{
6f937416
PA
1238 char *tmp_command;
1239 const char *p;
ace21957 1240 int ignore_help_classes;
c5f0f3d0 1241 /* Pointer within tmp_command which corresponds to text. */
eb3ff9a5 1242 const char *word;
c5f0f3d0
FN
1243 struct cmd_list_element *c, *result_list;
1244
aff410f1
MS
1245 /* Choose the default set of word break characters to break
1246 completions. If we later find out that we are doing completions
1247 on command strings (as opposed to strings supplied by the
1248 individual command completer functions, which can be any string)
1249 then we will switch to the special word break set for command
be09caf1 1250 strings, which leaves out the '-' and '.' character used in some
aff410f1 1251 commands. */
67cb5b2d 1252 set_rl_completer_word_break_characters
53fc67f8 1253 (current_language->word_break_characters ());
c5f0f3d0 1254
aff410f1
MS
1255 /* Decide whether to complete on a list of gdb commands or on
1256 symbols. */
83d31a92
TT
1257 tmp_command = (char *) alloca (point + 1);
1258 p = tmp_command;
c5f0f3d0 1259
ace21957
MF
1260 /* The help command should complete help aliases. */
1261 ignore_help_classes = reason != handle_help;
1262
83d31a92
TT
1263 strncpy (tmp_command, line_buffer, point);
1264 tmp_command[point] = '\0';
eb3ff9a5
PA
1265 if (reason == handle_brkchars)
1266 {
1267 gdb_assert (text == NULL);
1268 word = NULL;
1269 }
1270 else
1271 {
1272 /* Since text always contains some number of characters leading up
1273 to point, we can find the equivalent position in tmp_command
1274 by subtracting that many characters from the end of tmp_command. */
1275 word = tmp_command + point - strlen (text);
1276 }
c5f0f3d0 1277
a81aaca0
PA
1278 /* Move P up to the start of the command. */
1279 p = skip_spaces (p);
1280
1281 if (*p == '\0')
83d31a92 1282 {
a81aaca0
PA
1283 /* An empty line is ambiguous; that is, it could be any
1284 command. */
1427fe5e 1285 c = CMD_LIST_AMBIGUOUS;
83d31a92
TT
1286 result_list = 0;
1287 }
1288 else
1536146f
AB
1289 c = lookup_cmd_1 (&p, cmdlist, &result_list, NULL, ignore_help_classes,
1290 true);
c5f0f3d0 1291
83d31a92
TT
1292 /* Move p up to the next interesting thing. */
1293 while (*p == ' ' || *p == '\t')
1294 {
1295 p++;
1296 }
c5f0f3d0 1297
c6756f62
PA
1298 tracker.advance_custom_word_point_by (p - tmp_command);
1299
83d31a92
TT
1300 if (!c)
1301 {
1302 /* It is an unrecognized command. So there are no
1303 possible completions. */
83d31a92 1304 }
1427fe5e 1305 else if (c == CMD_LIST_AMBIGUOUS)
83d31a92 1306 {
6f937416 1307 const char *q;
83d31a92
TT
1308
1309 /* lookup_cmd_1 advances p up to the first ambiguous thing, but
1310 doesn't advance over that thing itself. Do so now. */
1311 q = p;
be09caf1 1312 while (valid_cmd_char_p (*q))
83d31a92
TT
1313 ++q;
1314 if (q != tmp_command + point)
c5f0f3d0 1315 {
83d31a92
TT
1316 /* There is something beyond the ambiguous
1317 command, so there are no possible completions. For
1318 example, "info t " or "info t foo" does not complete
1319 to anything, because "info t" can be "info target" or
1320 "info terminal". */
c5f0f3d0 1321 }
83d31a92 1322 else
c5f0f3d0 1323 {
83d31a92
TT
1324 /* We're trying to complete on the command which was ambiguous.
1325 This we can deal with. */
1326 if (result_list)
c5f0f3d0 1327 {
67c296a2 1328 if (reason != handle_brkchars)
14b42fc4 1329 complete_on_cmdlist (*result_list->subcommands, tracker, p,
eb3ff9a5 1330 word, ignore_help_classes);
c5f0f3d0
FN
1331 }
1332 else
1333 {
67c296a2 1334 if (reason != handle_brkchars)
eb3ff9a5
PA
1335 complete_on_cmdlist (cmdlist, tracker, p, word,
1336 ignore_help_classes);
c5f0f3d0 1337 }
489f0516 1338 /* Ensure that readline does the right thing with respect to
83d31a92 1339 inserting quotes. */
67cb5b2d
PA
1340 set_rl_completer_word_break_characters
1341 (gdb_completer_command_word_break_characters);
c5f0f3d0 1342 }
83d31a92
TT
1343 }
1344 else
1345 {
1346 /* We've recognized a full command. */
1347
1348 if (p == tmp_command + point)
c5f0f3d0 1349 {
aff410f1
MS
1350 /* There is no non-whitespace in the line beyond the
1351 command. */
c5f0f3d0 1352
83d31a92 1353 if (p[-1] == ' ' || p[-1] == '\t')
c5f0f3d0 1354 {
aff410f1
MS
1355 /* The command is followed by whitespace; we need to
1356 complete on whatever comes after command. */
3d0b3564 1357 if (c->is_prefix ())
c5f0f3d0 1358 {
83d31a92
TT
1359 /* It is a prefix command; what comes after it is
1360 a subcommand (e.g. "info "). */
67c296a2 1361 if (reason != handle_brkchars)
14b42fc4 1362 complete_on_cmdlist (*c->subcommands, tracker, p, word,
eb3ff9a5 1363 ignore_help_classes);
c5f0f3d0 1364
489f0516 1365 /* Ensure that readline does the right thing
9c3f90bd 1366 with respect to inserting quotes. */
67cb5b2d
PA
1367 set_rl_completer_word_break_characters
1368 (gdb_completer_command_word_break_characters);
c5f0f3d0 1369 }
67c296a2 1370 else if (reason == handle_help)
eb3ff9a5 1371 ;
c5f0f3d0
FN
1372 else if (c->enums)
1373 {
67c296a2 1374 if (reason != handle_brkchars)
eb3ff9a5 1375 complete_on_enum (tracker, c->enums, p, word);
67cb5b2d
PA
1376 set_rl_completer_word_break_characters
1377 (gdb_completer_command_word_break_characters);
c5f0f3d0
FN
1378 }
1379 else
1380 {
83d31a92
TT
1381 /* It is a normal command; what comes after it is
1382 completed by the command's completer function. */
eb3ff9a5
PA
1383 complete_line_internal_normal_command (tracker,
1384 tmp_command, word, p,
1385 reason, c);
c5f0f3d0
FN
1386 }
1387 }
83d31a92
TT
1388 else
1389 {
1390 /* The command is not followed by whitespace; we need to
aff410f1 1391 complete on the command itself, e.g. "p" which is a
83d31a92
TT
1392 command itself but also can complete to "print", "ptype"
1393 etc. */
6f937416 1394 const char *q;
83d31a92
TT
1395
1396 /* Find the command we are completing on. */
1397 q = p;
1398 while (q > tmp_command)
1399 {
be09caf1 1400 if (valid_cmd_char_p (q[-1]))
83d31a92
TT
1401 --q;
1402 else
1403 break;
1404 }
1405
3844e605
PA
1406 /* Move the custom word point back too. */
1407 tracker.advance_custom_word_point_by (q - p);
1408
67c296a2 1409 if (reason != handle_brkchars)
eb3ff9a5
PA
1410 complete_on_cmdlist (result_list, tracker, q, word,
1411 ignore_help_classes);
83d31a92 1412
489f0516 1413 /* Ensure that readline does the right thing
9c3f90bd 1414 with respect to inserting quotes. */
67cb5b2d
PA
1415 set_rl_completer_word_break_characters
1416 (gdb_completer_command_word_break_characters);
83d31a92
TT
1417 }
1418 }
67c296a2 1419 else if (reason == handle_help)
eb3ff9a5 1420 ;
83d31a92
TT
1421 else
1422 {
1423 /* There is non-whitespace beyond the command. */
1424
3d0b3564 1425 if (c->is_prefix () && !c->allow_unknown)
83d31a92
TT
1426 {
1427 /* It is an unrecognized subcommand of a prefix command,
1428 e.g. "info adsfkdj". */
83d31a92
TT
1429 }
1430 else if (c->enums)
1431 {
67c296a2 1432 if (reason != handle_brkchars)
eb3ff9a5 1433 complete_on_enum (tracker, c->enums, p, word);
83d31a92
TT
1434 }
1435 else
1436 {
1437 /* It is a normal command. */
eb3ff9a5
PA
1438 complete_line_internal_normal_command (tracker,
1439 tmp_command, word, p,
1440 reason, c);
83d31a92
TT
1441 }
1442 }
1443 }
83d31a92 1444}
ef0b411a 1445
eb3ff9a5
PA
1446/* Wrapper around complete_line_internal_1 to handle
1447 MAX_COMPLETIONS_REACHED_ERROR. */
ef0b411a 1448
eb3ff9a5
PA
1449static void
1450complete_line_internal (completion_tracker &tracker,
1451 const char *text,
1452 const char *line_buffer, int point,
1453 complete_line_internal_reason reason)
1454{
a70b8144 1455 try
eb3ff9a5
PA
1456 {
1457 complete_line_internal_1 (tracker, text, line_buffer, point, reason);
1458 }
230d2906 1459 catch (const gdb_exception_error &except)
eb3ff9a5
PA
1460 {
1461 if (except.error != MAX_COMPLETIONS_REACHED_ERROR)
eedc3f4f 1462 throw;
eb3ff9a5
PA
1463 }
1464}
ef0b411a
GB
1465
1466/* See completer.h. */
1467
eb3ff9a5 1468int max_completions = 200;
ef0b411a 1469
eb3ff9a5
PA
1470/* Initial size of the table. It automagically grows from here. */
1471#define INITIAL_COMPLETION_HTAB_SIZE 200
ef0b411a 1472
eb3ff9a5 1473/* See completer.h. */
ef0b411a 1474
eb3ff9a5 1475completion_tracker::completion_tracker ()
ef0b411a 1476{
724fd9ba 1477 discard_completions ();
ef0b411a
GB
1478}
1479
1480/* See completer.h. */
1481
c6756f62
PA
1482void
1483completion_tracker::discard_completions ()
1484{
1485 xfree (m_lowest_common_denominator);
1486 m_lowest_common_denominator = NULL;
1487
1488 m_lowest_common_denominator_unique = false;
724fd9ba
AB
1489 m_lowest_common_denominator_valid = false;
1490
32580f6d 1491 m_entries_hash.reset (nullptr);
724fd9ba
AB
1492
1493 /* A callback used by the hash table to compare new entries with existing
2698f5ea 1494 entries. We can't use the standard htab_eq_string function here as the
724fd9ba
AB
1495 key to our hash is just a single string, while the values we store in
1496 the hash are a struct containing multiple strings. */
1497 static auto entry_eq_func
1498 = [] (const void *first, const void *second) -> int
1499 {
1500 /* The FIRST argument is the entry already in the hash table, and
1501 the SECOND argument is the new item being inserted. */
1502 const completion_hash_entry *entry
1503 = (const completion_hash_entry *) first;
1504 const char *name_str = (const char *) second;
c6756f62 1505
724fd9ba
AB
1506 return entry->is_name_eq (name_str);
1507 };
c6756f62 1508
99f1bc6a
AB
1509 /* Callback used by the hash table to compute the hash value for an
1510 existing entry. This is needed when expanding the hash table. */
1511 static auto entry_hash_func
1512 = [] (const void *arg) -> hashval_t
1513 {
1514 const completion_hash_entry *entry
1515 = (const completion_hash_entry *) arg;
1516 return entry->hash_name ();
1517 };
1518
ef5f598c
TT
1519 m_entries_hash.reset
1520 (htab_create_alloc (INITIAL_COMPLETION_HTAB_SIZE,
1521 entry_hash_func, entry_eq_func,
1522 htab_delete_entry<completion_hash_entry>,
1523 xcalloc, xfree));
c6756f62
PA
1524}
1525
1526/* See completer.h. */
1527
eb3ff9a5 1528completion_tracker::~completion_tracker ()
ef0b411a 1529{
eb3ff9a5 1530 xfree (m_lowest_common_denominator);
ef0b411a
GB
1531}
1532
1533/* See completer.h. */
1534
eb3ff9a5 1535bool
a207cff2
PA
1536completion_tracker::maybe_add_completion
1537 (gdb::unique_xmalloc_ptr<char> name,
a22ecf70
PA
1538 completion_match_for_lcd *match_for_lcd,
1539 const char *text, const char *word)
ef0b411a
GB
1540{
1541 void **slot;
1542
ef0b411a 1543 if (max_completions == 0)
eb3ff9a5 1544 return false;
ef0b411a 1545
32580f6d 1546 if (htab_elements (m_entries_hash.get ()) >= max_completions)
eb3ff9a5 1547 return false;
ef0b411a 1548
724fd9ba 1549 hashval_t hash = htab_hash_string (name.get ());
32580f6d
TT
1550 slot = htab_find_slot_with_hash (m_entries_hash.get (), name.get (),
1551 hash, INSERT);
eb3ff9a5
PA
1552 if (*slot == HTAB_EMPTY_ENTRY)
1553 {
a207cff2
PA
1554 const char *match_for_lcd_str = NULL;
1555
1556 if (match_for_lcd != NULL)
1557 match_for_lcd_str = match_for_lcd->finish ();
1558
1559 if (match_for_lcd_str == NULL)
1560 match_for_lcd_str = name.get ();
ef0b411a 1561
a22ecf70
PA
1562 gdb::unique_xmalloc_ptr<char> lcd
1563 = make_completion_match_str (match_for_lcd_str, text, word);
1564
724fd9ba
AB
1565 size_t lcd_len = strlen (lcd.get ());
1566 *slot = new completion_hash_entry (std::move (name), std::move (lcd));
ef0b411a 1567
724fd9ba
AB
1568 m_lowest_common_denominator_valid = false;
1569 m_lowest_common_denominator_max_length
1570 = std::max (m_lowest_common_denominator_max_length, lcd_len);
eb3ff9a5 1571 }
ef0b411a 1572
eb3ff9a5
PA
1573 return true;
1574}
1575
1576/* See completer.h. */
ef0b411a 1577
eb3ff9a5 1578void
a207cff2 1579completion_tracker::add_completion (gdb::unique_xmalloc_ptr<char> name,
a22ecf70
PA
1580 completion_match_for_lcd *match_for_lcd,
1581 const char *text, const char *word)
eb3ff9a5 1582{
a22ecf70 1583 if (!maybe_add_completion (std::move (name), match_for_lcd, text, word))
eb3ff9a5 1584 throw_error (MAX_COMPLETIONS_REACHED_ERROR, _("Max completions reached."));
ef0b411a
GB
1585}
1586
eb3ff9a5
PA
1587/* See completer.h. */
1588
ef0b411a 1589void
eb3ff9a5 1590completion_tracker::add_completions (completion_list &&list)
ef0b411a 1591{
eb3ff9a5
PA
1592 for (auto &candidate : list)
1593 add_completion (std::move (candidate));
ef0b411a
GB
1594}
1595
19a2740f
AB
1596/* See completer.h. */
1597
1598void
1599completion_tracker::remove_completion (const char *name)
1600{
1601 hashval_t hash = htab_hash_string (name);
32580f6d 1602 if (htab_find_slot_with_hash (m_entries_hash.get (), name, hash, NO_INSERT)
19a2740f
AB
1603 != NULL)
1604 {
32580f6d 1605 htab_remove_elt_with_hash (m_entries_hash.get (), name, hash);
19a2740f
AB
1606 m_lowest_common_denominator_valid = false;
1607 }
1608}
1609
60a20c19
PA
1610/* Helper for the make_completion_match_str overloads. Returns NULL
1611 as an indication that we want MATCH_NAME exactly. It is up to the
1612 caller to xstrdup that string if desired. */
1613
1614static char *
1615make_completion_match_str_1 (const char *match_name,
1616 const char *text, const char *word)
1617{
1618 char *newobj;
1619
1620 if (word == text)
1621 {
1622 /* Return NULL as an indication that we want MATCH_NAME
1623 exactly. */
1624 return NULL;
1625 }
1626 else if (word > text)
1627 {
1628 /* Return some portion of MATCH_NAME. */
1629 newobj = xstrdup (match_name + (word - text));
1630 }
1631 else
1632 {
1633 /* Return some of WORD plus MATCH_NAME. */
1634 size_t len = strlen (match_name);
1635 newobj = (char *) xmalloc (text - word + len + 1);
1636 memcpy (newobj, word, text - word);
1637 memcpy (newobj + (text - word), match_name, len + 1);
1638 }
1639
1640 return newobj;
1641}
1642
1643/* See completer.h. */
1644
1645gdb::unique_xmalloc_ptr<char>
1646make_completion_match_str (const char *match_name,
1647 const char *text, const char *word)
1648{
1649 char *newobj = make_completion_match_str_1 (match_name, text, word);
1650 if (newobj == NULL)
1651 newobj = xstrdup (match_name);
1652 return gdb::unique_xmalloc_ptr<char> (newobj);
1653}
1654
1655/* See completer.h. */
1656
1657gdb::unique_xmalloc_ptr<char>
1658make_completion_match_str (gdb::unique_xmalloc_ptr<char> &&match_name,
1659 const char *text, const char *word)
1660{
1661 char *newobj = make_completion_match_str_1 (match_name.get (), text, word);
1662 if (newobj == NULL)
1663 return std::move (match_name);
1664 return gdb::unique_xmalloc_ptr<char> (newobj);
1665}
1666
6e035501
JV
1667/* See complete.h. */
1668
1669completion_result
1670complete (const char *line, char const **word, int *quote_char)
1671{
1672 completion_tracker tracker_handle_brkchars;
1673 completion_tracker tracker_handle_completions;
1674 completion_tracker *tracker;
1675
0ef209f2
JV
1676 /* The WORD should be set to the end of word to complete. We initialize
1677 to the completion point which is assumed to be at the end of LINE.
1678 This leaves WORD to be initialized to a sensible value in cases
1679 completion_find_completion_word() fails i.e., throws an exception.
1680 See bug 24587. */
1681 *word = line + strlen (line);
1682
6e035501
JV
1683 try
1684 {
1685 *word = completion_find_completion_word (tracker_handle_brkchars,
1686 line, quote_char);
1687
1688 /* Completers that provide a custom word point in the
1689 handle_brkchars phase also compute their completions then.
1690 Completers that leave the completion word handling to readline
1691 must be called twice. */
1692 if (tracker_handle_brkchars.use_custom_word_point ())
1693 tracker = &tracker_handle_brkchars;
1694 else
1695 {
1696 complete_line (tracker_handle_completions, *word, line, strlen (line));
1697 tracker = &tracker_handle_completions;
1698 }
1699 }
1700 catch (const gdb_exception &ex)
1701 {
1702 return {};
1703 }
1704
1705 return tracker->build_completion_result (*word, *word - line, strlen (line));
1706}
1707
1708
eb3ff9a5
PA
1709/* Generate completions all at once. Does nothing if max_completions
1710 is 0. If max_completions is non-negative, this will collect at
1711 most max_completions strings.
83d31a92 1712
67c296a2
PM
1713 TEXT is the caller's idea of the "word" we are looking at.
1714
aff410f1
MS
1715 LINE_BUFFER is available to be looked at; it contains the entire
1716 text of the line.
67c296a2
PM
1717
1718 POINT is the offset in that line of the cursor. You
1719 should pretend that the line ends at POINT. */
14032a66 1720
eb3ff9a5
PA
1721void
1722complete_line (completion_tracker &tracker,
1723 const char *text, const char *line_buffer, int point)
14032a66 1724{
ef0b411a 1725 if (max_completions == 0)
eb3ff9a5
PA
1726 return;
1727 complete_line_internal (tracker, text, line_buffer, point,
1728 handle_completions);
14032a66
TT
1729}
1730
1731/* Complete on command names. Used by "help". */
6e1dbf8c 1732
eb3ff9a5 1733void
aff410f1 1734command_completer (struct cmd_list_element *ignore,
eb3ff9a5 1735 completion_tracker &tracker,
6f937416 1736 const char *text, const char *word)
14032a66 1737{
eb3ff9a5
PA
1738 complete_line_internal (tracker, word, text,
1739 strlen (text), handle_help);
67c296a2
PM
1740}
1741
6e1dbf8c
PA
1742/* The corresponding completer_handle_brkchars implementation. */
1743
1744static void
1745command_completer_handle_brkchars (struct cmd_list_element *ignore,
eb3ff9a5 1746 completion_tracker &tracker,
6e1dbf8c
PA
1747 const char *text, const char *word)
1748{
1749 set_rl_completer_word_break_characters
1750 (gdb_completer_command_word_break_characters);
1751}
1752
de0bea00
MF
1753/* Complete on signals. */
1754
eb3ff9a5 1755void
de0bea00 1756signal_completer (struct cmd_list_element *ignore,
eb3ff9a5 1757 completion_tracker &tracker,
6f937416 1758 const char *text, const char *word)
de0bea00 1759{
de0bea00 1760 size_t len = strlen (word);
570dc176 1761 int signum;
de0bea00
MF
1762 const char *signame;
1763
1764 for (signum = GDB_SIGNAL_FIRST; signum != GDB_SIGNAL_LAST; ++signum)
1765 {
1766 /* Can't handle this, so skip it. */
1767 if (signum == GDB_SIGNAL_0)
1768 continue;
1769
570dc176 1770 signame = gdb_signal_to_name ((enum gdb_signal) signum);
de0bea00
MF
1771
1772 /* Ignore the unknown signal case. */
1773 if (!signame || strcmp (signame, "?") == 0)
1774 continue;
1775
1776 if (strncasecmp (signame, word, len) == 0)
b02f78f9 1777 tracker.add_completion (make_unique_xstrdup (signame));
de0bea00 1778 }
de0bea00
MF
1779}
1780
51f0e40d
AB
1781/* Bit-flags for selecting what the register and/or register-group
1782 completer should complete on. */
71c24708 1783
8d297bbf 1784enum reg_completer_target
51f0e40d
AB
1785 {
1786 complete_register_names = 0x1,
1787 complete_reggroup_names = 0x2
1788 };
8d297bbf 1789DEF_ENUM_FLAGS_TYPE (enum reg_completer_target, reg_completer_targets);
51f0e40d
AB
1790
1791/* Complete register names and/or reggroup names based on the value passed
1792 in TARGETS. At least one bit in TARGETS must be set. */
1793
eb3ff9a5
PA
1794static void
1795reg_or_group_completer_1 (completion_tracker &tracker,
51f0e40d 1796 const char *text, const char *word,
8d297bbf 1797 reg_completer_targets targets)
71c24708 1798{
71c24708
AA
1799 size_t len = strlen (word);
1800 struct gdbarch *gdbarch;
71c24708 1801 const char *name;
71c24708 1802
51f0e40d
AB
1803 gdb_assert ((targets & (complete_register_names
1804 | complete_reggroup_names)) != 0);
1805 gdbarch = get_current_arch ();
71c24708 1806
51f0e40d 1807 if ((targets & complete_register_names) != 0)
71c24708 1808 {
51f0e40d
AB
1809 int i;
1810
1811 for (i = 0;
1812 (name = user_reg_map_regnum_to_name (gdbarch, i)) != NULL;
1813 i++)
1814 {
1815 if (*name != '\0' && strncmp (word, name, len) == 0)
b02f78f9 1816 tracker.add_completion (make_unique_xstrdup (name));
51f0e40d 1817 }
71c24708
AA
1818 }
1819
51f0e40d 1820 if ((targets & complete_reggroup_names) != 0)
71c24708 1821 {
1bca9b1e 1822 for (const struct reggroup *group : gdbarch_reggroups (gdbarch))
51f0e40d 1823 {
af7ce09b 1824 name = group->name ();
51f0e40d 1825 if (strncmp (word, name, len) == 0)
b02f78f9 1826 tracker.add_completion (make_unique_xstrdup (name));
51f0e40d 1827 }
71c24708 1828 }
71c24708
AA
1829}
1830
51f0e40d
AB
1831/* Perform completion on register and reggroup names. */
1832
eb3ff9a5 1833void
51f0e40d 1834reg_or_group_completer (struct cmd_list_element *ignore,
eb3ff9a5 1835 completion_tracker &tracker,
51f0e40d
AB
1836 const char *text, const char *word)
1837{
eb3ff9a5
PA
1838 reg_or_group_completer_1 (tracker, text, word,
1839 (complete_register_names
1840 | complete_reggroup_names));
51f0e40d
AB
1841}
1842
1843/* Perform completion on reggroup names. */
1844
eb3ff9a5 1845void
51f0e40d 1846reggroup_completer (struct cmd_list_element *ignore,
eb3ff9a5 1847 completion_tracker &tracker,
51f0e40d
AB
1848 const char *text, const char *word)
1849{
eb3ff9a5
PA
1850 reg_or_group_completer_1 (tracker, text, word,
1851 complete_reggroup_names);
51f0e40d 1852}
71c24708 1853
6e1dbf8c
PA
1854/* The default completer_handle_brkchars implementation. */
1855
1856static void
1857default_completer_handle_brkchars (struct cmd_list_element *ignore,
eb3ff9a5 1858 completion_tracker &tracker,
6e1dbf8c
PA
1859 const char *text, const char *word)
1860{
1861 set_rl_completer_word_break_characters
53fc67f8 1862 (current_language->word_break_characters ());
6e1dbf8c
PA
1863}
1864
1865/* See definition in completer.h. */
1866
1867completer_handle_brkchars_ftype *
1868completer_handle_brkchars_func_for_completer (completer_ftype *fn)
1869{
1870 if (fn == filename_completer)
1871 return filename_completer_handle_brkchars;
1872
c6756f62
PA
1873 if (fn == location_completer)
1874 return location_completer_handle_brkchars;
1875
6e1dbf8c
PA
1876 if (fn == command_completer)
1877 return command_completer_handle_brkchars;
1878
1879 return default_completer_handle_brkchars;
1880}
1881
c6756f62
PA
1882/* Used as brkchars when we want to tell readline we have a custom
1883 word point. We do that by making our rl_completion_word_break_hook
1884 set RL_POINT to the desired word point, and return the character at
1885 the word break point as the break char. This is two bytes in order
1886 to fit one break character plus the terminating null. */
1887static char gdb_custom_word_point_brkchars[2];
1888
1889/* Since rl_basic_quote_characters is not completer-specific, we save
1890 its original value here, in order to be able to restore it in
1891 gdb_rl_attempted_completion_function. */
1892static const char *gdb_org_rl_basic_quote_characters = rl_basic_quote_characters;
1893
67c296a2
PM
1894/* Get the list of chars that are considered as word breaks
1895 for the current command. */
1896
eb3ff9a5
PA
1897static char *
1898gdb_completion_word_break_characters_throw ()
67c296a2 1899{
eb3ff9a5
PA
1900 /* New completion starting. Get rid of the previous tracker and
1901 start afresh. */
1902 delete current_completion.tracker;
1903 current_completion.tracker = new completion_tracker ();
1904
1905 completion_tracker &tracker = *current_completion.tracker;
1906
1907 complete_line_internal (tracker, NULL, rl_line_buffer,
1908 rl_point, handle_brkchars);
c5504eaf 1909
c6756f62
PA
1910 if (tracker.use_custom_word_point ())
1911 {
1912 gdb_assert (tracker.custom_word_point () > 0);
1913 rl_point = tracker.custom_word_point () - 1;
272d4594
PA
1914
1915 gdb_assert (rl_point >= 0 && rl_point < strlen (rl_line_buffer));
1916
c6756f62
PA
1917 gdb_custom_word_point_brkchars[0] = rl_line_buffer[rl_point];
1918 rl_completer_word_break_characters = gdb_custom_word_point_brkchars;
1919 rl_completer_quote_characters = NULL;
1920
1921 /* Clear this too, so that if we're completing a quoted string,
1922 readline doesn't consider the quote character a delimiter.
1923 If we didn't do this, readline would auto-complete {b
1924 'fun<tab>} to {'b 'function()'}, i.e., add the terminating
1925 \', but, it wouldn't append the separator space either, which
1926 is not desirable. So instead we take care of appending the
1927 quote character to the LCD ourselves, in
1928 gdb_rl_attempted_completion_function. Since this global is
1929 not just completer-specific, we'll restore it back to the
1930 default in gdb_rl_attempted_completion_function. */
1931 rl_basic_quote_characters = NULL;
1932 }
1933
1add37b5 1934 return (char *) rl_completer_word_break_characters;
14032a66
TT
1935}
1936
eb3ff9a5
PA
1937char *
1938gdb_completion_word_break_characters ()
1939{
1940 /* New completion starting. */
1941 current_completion.aborted = false;
83d31a92 1942
a70b8144 1943 try
eb3ff9a5
PA
1944 {
1945 return gdb_completion_word_break_characters_throw ();
1946 }
230d2906 1947 catch (const gdb_exception &ex)
eb3ff9a5
PA
1948 {
1949 /* Set this to that gdb_rl_attempted_completion_function knows
1950 to abort early. */
1951 current_completion.aborted = true;
1952 }
83d31a92 1953
eb3ff9a5
PA
1954 return NULL;
1955}
83d31a92 1956
eb3ff9a5 1957/* See completer.h. */
83d31a92 1958
6a2c1b87
PA
1959const char *
1960completion_find_completion_word (completion_tracker &tracker, const char *text,
1961 int *quote_char)
1962{
1963 size_t point = strlen (text);
1964
1965 complete_line_internal (tracker, NULL, text, point, handle_brkchars);
1966
c6756f62
PA
1967 if (tracker.use_custom_word_point ())
1968 {
1969 gdb_assert (tracker.custom_word_point () > 0);
1970 *quote_char = tracker.quote_char ();
1971 return text + tracker.custom_word_point ();
1972 }
1973
6a2c1b87
PA
1974 gdb_rl_completion_word_info info;
1975
1976 info.word_break_characters = rl_completer_word_break_characters;
1977 info.quote_characters = gdb_completer_quote_characters;
1978 info.basic_quote_characters = rl_basic_quote_characters;
1979
1980 return gdb_rl_find_completion_word (&info, quote_char, NULL, text);
1981}
1982
1983/* See completer.h. */
1984
eb3ff9a5 1985void
724fd9ba 1986completion_tracker::recompute_lcd_visitor (completion_hash_entry *entry)
83d31a92 1987{
724fd9ba 1988 if (!m_lowest_common_denominator_valid)
eb3ff9a5 1989 {
724fd9ba
AB
1990 /* This is the first lowest common denominator that we are
1991 considering, just copy it in. */
1992 strcpy (m_lowest_common_denominator, entry->get_lcd ());
eb3ff9a5 1993 m_lowest_common_denominator_unique = true;
724fd9ba 1994 m_lowest_common_denominator_valid = true;
eb3ff9a5
PA
1995 }
1996 else
83d31a92 1997 {
724fd9ba
AB
1998 /* Find the common denominator between the currently-known lowest
1999 common denominator and NEW_MATCH_UP. That becomes the new lowest
2000 common denominator. */
eb3ff9a5 2001 size_t i;
724fd9ba 2002 const char *new_match = entry->get_lcd ();
83d31a92 2003
eb3ff9a5
PA
2004 for (i = 0;
2005 (new_match[i] != '\0'
2006 && new_match[i] == m_lowest_common_denominator[i]);
2007 i++)
2008 ;
2009 if (m_lowest_common_denominator[i] != new_match[i])
83d31a92 2010 {
eb3ff9a5
PA
2011 m_lowest_common_denominator[i] = '\0';
2012 m_lowest_common_denominator_unique = false;
c5f0f3d0
FN
2013 }
2014 }
eb3ff9a5
PA
2015}
2016
c6756f62
PA
2017/* See completer.h. */
2018
724fd9ba
AB
2019void
2020completion_tracker::recompute_lowest_common_denominator ()
2021{
2022 /* We've already done this. */
2023 if (m_lowest_common_denominator_valid)
2024 return;
2025
2026 /* Resize the storage to ensure we have enough space, the plus one gives
2027 us space for the trailing null terminator we will include. */
2028 m_lowest_common_denominator
2029 = (char *) xrealloc (m_lowest_common_denominator,
2030 m_lowest_common_denominator_max_length + 1);
2031
2032 /* Callback used to visit each entry in the m_entries_hash. */
2033 auto visitor_func
2034 = [] (void **slot, void *info) -> int
2035 {
2036 completion_tracker *obj = (completion_tracker *) info;
2037 completion_hash_entry *entry = (completion_hash_entry *) *slot;
2038 obj->recompute_lcd_visitor (entry);
2039 return 1;
2040 };
2041
32580f6d 2042 htab_traverse (m_entries_hash.get (), visitor_func, this);
724fd9ba
AB
2043 m_lowest_common_denominator_valid = true;
2044}
2045
2046/* See completer.h. */
2047
c6756f62 2048void
3844e605 2049completion_tracker::advance_custom_word_point_by (int len)
c6756f62
PA
2050{
2051 m_custom_word_point += len;
2052}
2053
eb3ff9a5
PA
2054/* Build a new C string that is a copy of LCD with the whitespace of
2055 ORIG/ORIG_LEN preserved.
2056
2057 Say the user is completing a symbol name, with spaces, like:
2058
2059 "foo ( i"
2060
2061 and the resulting completion match is:
2062
2063 "foo(int)"
2064
2065 we want to end up with an input line like:
2066
2067 "foo ( int)"
2068 ^^^^^^^ => text from LCD [1], whitespace from ORIG preserved.
2069 ^^ => new text from LCD
2070
2071 [1] - We must take characters from the LCD instead of the original
2072 text, since some completions want to change upper/lowercase. E.g.:
c5f0f3d0 2073
eb3ff9a5 2074 "handle sig<>"
c5f0f3d0 2075
eb3ff9a5
PA
2076 completes to:
2077
2078 "handle SIG[QUIT|etc.]"
2079*/
2080
2081static char *
2082expand_preserving_ws (const char *orig, size_t orig_len,
2083 const char *lcd)
2084{
2085 const char *p_orig = orig;
2086 const char *orig_end = orig + orig_len;
2087 const char *p_lcd = lcd;
2088 std::string res;
2089
2090 while (p_orig < orig_end)
c5f0f3d0 2091 {
eb3ff9a5
PA
2092 if (*p_orig == ' ')
2093 {
2094 while (p_orig < orig_end && *p_orig == ' ')
2095 res += *p_orig++;
f1735a53 2096 p_lcd = skip_spaces (p_lcd);
eb3ff9a5
PA
2097 }
2098 else
c5f0f3d0 2099 {
eb3ff9a5
PA
2100 /* Take characters from the LCD instead of the original
2101 text, since some completions change upper/lowercase.
2102 E.g.:
2103 "handle sig<>"
2104 completes to:
2105 "handle SIG[QUIT|etc.]"
2106 */
2107 res += *p_lcd;
2108 p_orig++;
2109 p_lcd++;
c5f0f3d0
FN
2110 }
2111 }
2112
eb3ff9a5
PA
2113 while (*p_lcd != '\0')
2114 res += *p_lcd++;
2115
2116 return xstrdup (res.c_str ());
2117}
2118
2119/* See completer.h. */
2120
2121completion_result
2122completion_tracker::build_completion_result (const char *text,
2123 int start, int end)
2124{
32580f6d 2125 size_t element_count = htab_elements (m_entries_hash.get ());
eb3ff9a5 2126
724fd9ba 2127 if (element_count == 0)
eb3ff9a5
PA
2128 return {};
2129
2130 /* +1 for the LCD, and +1 for NULL termination. */
724fd9ba 2131 char **match_list = XNEWVEC (char *, 1 + element_count + 1);
eb3ff9a5
PA
2132
2133 /* Build replacement word, based on the LCD. */
2134
724fd9ba 2135 recompute_lowest_common_denominator ();
eb3ff9a5
PA
2136 match_list[0]
2137 = expand_preserving_ws (text, end - start,
2138 m_lowest_common_denominator);
2139
2140 if (m_lowest_common_denominator_unique)
2141 {
c6756f62
PA
2142 /* We don't rely on readline appending the quote char as
2143 delimiter as then readline wouldn't append the ' ' after the
2144 completion. */
896a7aa6 2145 char buf[2] = { (char) quote_char () };
c6756f62
PA
2146
2147 match_list[0] = reconcat (match_list[0], match_list[0],
2148 buf, (char *) NULL);
eb3ff9a5
PA
2149 match_list[1] = NULL;
2150
c45ec17c
PA
2151 /* If the tracker wants to, or we already have a space at the
2152 end of the match, tell readline to skip appending
2153 another. */
aafdfb4e 2154 char *match = match_list[0];
eb3ff9a5 2155 bool completion_suppress_append
c45ec17c 2156 = (suppress_append_ws ()
aafdfb4e
TV
2157 || (match[0] != '\0'
2158 && match[strlen (match) - 1] == ' '));
eb3ff9a5
PA
2159
2160 return completion_result (match_list, 1, completion_suppress_append);
2161 }
2162 else
2163 {
724fd9ba
AB
2164 /* State object used while building the completion list. */
2165 struct list_builder
2166 {
2167 list_builder (char **ml)
2168 : match_list (ml),
2169 index (1)
2170 { /* Nothing. */ }
2171
2172 /* The list we are filling. */
2173 char **match_list;
2174
2175 /* The next index in the list to write to. */
2176 int index;
2177 };
2178 list_builder builder (match_list);
2179
2180 /* Visit each entry in m_entries_hash and add it to the completion
2181 list, updating the builder state object. */
2182 auto func
2183 = [] (void **slot, void *info) -> int
2184 {
2185 completion_hash_entry *entry = (completion_hash_entry *) *slot;
2186 list_builder *state = (list_builder *) info;
2187
2188 state->match_list[state->index] = entry->release_name ();
2189 state->index++;
2190 return 1;
2191 };
2192
2193 /* Build the completion list and add a null at the end. */
32580f6d 2194 htab_traverse_noresize (m_entries_hash.get (), func, &builder);
724fd9ba
AB
2195 match_list[builder.index] = NULL;
2196
2197 return completion_result (match_list, builder.index - 1, false);
eb3ff9a5
PA
2198 }
2199}
2200
2201/* See completer.h */
2202
2203completion_result::completion_result ()
2204 : match_list (NULL), number_matches (0),
2205 completion_suppress_append (false)
2206{}
2207
2208/* See completer.h */
2209
2210completion_result::completion_result (char **match_list_,
2211 size_t number_matches_,
2212 bool completion_suppress_append_)
2213 : match_list (match_list_),
2214 number_matches (number_matches_),
2215 completion_suppress_append (completion_suppress_append_)
2216{}
2217
2218/* See completer.h */
2219
2220completion_result::~completion_result ()
2221{
2222 reset_match_list ();
2223}
2224
2225/* See completer.h */
2226
0fa7617d
TT
2227completion_result::completion_result (completion_result &&rhs) noexcept
2228 : match_list (rhs.match_list),
2229 number_matches (rhs.number_matches)
eb3ff9a5 2230{
eb3ff9a5 2231 rhs.match_list = NULL;
eb3ff9a5
PA
2232 rhs.number_matches = 0;
2233}
2234
2235/* See completer.h */
2236
2237char **
2238completion_result::release_match_list ()
2239{
2240 char **ret = match_list;
2241 match_list = NULL;
2242 return ret;
2243}
2244
eb3ff9a5
PA
2245/* See completer.h */
2246
2247void
2248completion_result::sort_match_list ()
2249{
2250 if (number_matches > 1)
2251 {
2252 /* Element 0 is special (it's the common prefix), leave it
2253 be. */
2254 std::sort (&match_list[1],
2255 &match_list[number_matches + 1],
2256 compare_cstrings);
2257 }
2258}
2259
2260/* See completer.h */
2261
2262void
2263completion_result::reset_match_list ()
2264{
2265 if (match_list != NULL)
2266 {
2267 for (char **p = match_list; *p != NULL; p++)
2268 xfree (*p);
2269 xfree (match_list);
2270 match_list = NULL;
2271 }
2272}
2273
2274/* Helper for gdb_rl_attempted_completion_function, which does most of
2275 the work. This is called by readline to build the match list array
2276 and to determine the lowest common denominator. The real matches
2277 list starts at match[1], while match[0] is the slot holding
2278 readline's idea of the lowest common denominator of all matches,
2279 which is what readline replaces the completion "word" with.
2280
2281 TEXT is the caller's idea of the "word" we are looking at, as
2282 computed in the handle_brkchars phase.
2283
2284 START is the offset from RL_LINE_BUFFER where TEXT starts. END is
2285 the offset from RL_LINE_BUFFER where TEXT ends (i.e., where
2286 rl_point is).
2287
2288 You should thus pretend that the line ends at END (relative to
2289 RL_LINE_BUFFER).
2290
2291 RL_LINE_BUFFER contains the entire text of the line. RL_POINT is
2292 the offset in that line of the cursor. You should pretend that the
2293 line ends at POINT.
2294
2295 Returns NULL if there are no completions. */
2296
2297static char **
2298gdb_rl_attempted_completion_function_throw (const char *text, int start, int end)
2299{
c6756f62
PA
2300 /* Completers that provide a custom word point in the
2301 handle_brkchars phase also compute their completions then.
2302 Completers that leave the completion word handling to readline
2303 must be called twice. If rl_point (i.e., END) is at column 0,
2304 then readline skips the handle_brkchars phase, and so we create a
2305 tracker now in that case too. */
2306 if (end == 0 || !current_completion.tracker->use_custom_word_point ())
2307 {
2308 delete current_completion.tracker;
2309 current_completion.tracker = new completion_tracker ();
eb3ff9a5 2310
c6756f62
PA
2311 complete_line (*current_completion.tracker, text,
2312 rl_line_buffer, rl_point);
2313 }
c5f0f3d0 2314
eb3ff9a5
PA
2315 completion_tracker &tracker = *current_completion.tracker;
2316
2317 completion_result result
2318 = tracker.build_completion_result (text, start, end);
2319
2320 rl_completion_suppress_append = result.completion_suppress_append;
2321 return result.release_match_list ();
2322}
2323
2324/* Function installed as "rl_attempted_completion_function" readline
2325 hook. Wrapper around gdb_rl_attempted_completion_function_throw
2326 that catches C++ exceptions, which can't cross readline. */
2327
2328char **
2329gdb_rl_attempted_completion_function (const char *text, int start, int end)
2330{
c6756f62
PA
2331 /* Restore globals that might have been tweaked in
2332 gdb_completion_word_break_characters. */
2333 rl_basic_quote_characters = gdb_org_rl_basic_quote_characters;
2334
eb3ff9a5
PA
2335 /* If we end up returning NULL, either on error, or simple because
2336 there are no matches, inhibit readline's default filename
2337 completer. */
2338 rl_attempted_completion_over = 1;
2339
2340 /* If the handle_brkchars phase was aborted, don't try
2341 completing. */
2342 if (current_completion.aborted)
2343 return NULL;
2344
a70b8144 2345 try
eb3ff9a5
PA
2346 {
2347 return gdb_rl_attempted_completion_function_throw (text, start, end);
2348 }
230d2906 2349 catch (const gdb_exception &ex)
eb3ff9a5
PA
2350 {
2351 }
eb3ff9a5
PA
2352
2353 return NULL;
c5f0f3d0 2354}
4e87b832
KD
2355
2356/* Skip over the possibly quoted word STR (as defined by the quote
b021a221
MS
2357 characters QUOTECHARS and the word break characters BREAKCHARS).
2358 Returns pointer to the location after the "word". If either
2359 QUOTECHARS or BREAKCHARS is NULL, use the same values used by the
2360 completer. */
c5f0f3d0 2361
d7561cbb
KS
2362const char *
2363skip_quoted_chars (const char *str, const char *quotechars,
2364 const char *breakchars)
c5f0f3d0
FN
2365{
2366 char quote_char = '\0';
d7561cbb 2367 const char *scan;
c5f0f3d0 2368
4e87b832
KD
2369 if (quotechars == NULL)
2370 quotechars = gdb_completer_quote_characters;
2371
2372 if (breakchars == NULL)
53fc67f8 2373 breakchars = current_language->word_break_characters ();
4e87b832 2374
c5f0f3d0
FN
2375 for (scan = str; *scan != '\0'; scan++)
2376 {
2377 if (quote_char != '\0')
2378 {
9c3f90bd 2379 /* Ignore everything until the matching close quote char. */
c5f0f3d0
FN
2380 if (*scan == quote_char)
2381 {
9c3f90bd 2382 /* Found matching close quote. */
c5f0f3d0
FN
2383 scan++;
2384 break;
2385 }
2386 }
4e87b832 2387 else if (strchr (quotechars, *scan))
c5f0f3d0 2388 {
aff410f1 2389 /* Found start of a quoted string. */
c5f0f3d0
FN
2390 quote_char = *scan;
2391 }
4e87b832 2392 else if (strchr (breakchars, *scan))
c5f0f3d0
FN
2393 {
2394 break;
2395 }
2396 }
4e87b832 2397
c5f0f3d0
FN
2398 return (scan);
2399}
2400
4e87b832
KD
2401/* Skip over the possibly quoted word STR (as defined by the quote
2402 characters and word break characters used by the completer).
9c3f90bd 2403 Returns pointer to the location after the "word". */
4e87b832 2404
d7561cbb
KS
2405const char *
2406skip_quoted (const char *str)
4e87b832
KD
2407{
2408 return skip_quoted_chars (str, NULL, NULL);
2409}
ef0b411a
GB
2410
2411/* Return a message indicating that the maximum number of completions
2412 has been reached and that there may be more. */
2413
2414const char *
2415get_max_completions_reached_message (void)
2416{
2417 return _("*** List may be truncated, max-completions reached. ***");
2418}
82083d6d
DE
2419\f
2420/* GDB replacement for rl_display_match_list.
2421 Readline doesn't provide a clean interface for TUI(curses).
2422 A hack previously used was to send readline's rl_outstream through a pipe
2423 and read it from the event loop. Bleah. IWBN if readline abstracted
2424 away all the necessary bits, and this is what this code does. It
2425 replicates the parts of readline we need and then adds an abstraction
2426 layer, currently implemented as struct match_list_displayer, so that both
2427 CLI and TUI can use it. We copy all this readline code to minimize
2428 GDB-specific mods to readline. Once this code performs as desired then
2429 we can submit it to the readline maintainers.
2430
2431 N.B. A lot of the code is the way it is in order to minimize differences
2432 from readline's copy. */
2433
2434/* Not supported here. */
2435#undef VISIBLE_STATS
2436
2437#if defined (HANDLE_MULTIBYTE)
2438#define MB_INVALIDCH(x) ((x) == (size_t)-1 || (x) == (size_t)-2)
2439#define MB_NULLWCH(x) ((x) == 0)
2440#endif
2441
2442#define ELLIPSIS_LEN 3
2443
2444/* gdb version of readline/complete.c:get_y_or_n.
2445 'y' -> returns 1, and 'n' -> returns 0.
2446 Also supported: space == 'y', RUBOUT == 'n', ctrl-g == start over.
2447 If FOR_PAGER is non-zero, then also supported are:
2448 NEWLINE or RETURN -> returns 2, and 'q' -> returns 0. */
2449
2450static int
2451gdb_get_y_or_n (int for_pager, const struct match_list_displayer *displayer)
2452{
2453 int c;
2454
2455 for (;;)
2456 {
2457 RL_SETSTATE (RL_STATE_MOREINPUT);
2458 c = displayer->read_key (displayer);
2459 RL_UNSETSTATE (RL_STATE_MOREINPUT);
2460
2461 if (c == 'y' || c == 'Y' || c == ' ')
2462 return 1;
2463 if (c == 'n' || c == 'N' || c == RUBOUT)
2464 return 0;
2465 if (c == ABORT_CHAR || c < 0)
2466 {
2467 /* Readline doesn't erase_entire_line here, but without it the
2468 --More-- prompt isn't erased and neither is the text entered
2469 thus far redisplayed. */
2470 displayer->erase_entire_line (displayer);
2471 /* Note: The arguments to rl_abort are ignored. */
2472 rl_abort (0, 0);
2473 }
2474 if (for_pager && (c == NEWLINE || c == RETURN))
2475 return 2;
2476 if (for_pager && (c == 'q' || c == 'Q'))
2477 return 0;
2478 displayer->beep (displayer);
2479 }
2480}
2481
2482/* Pager function for tab-completion.
2483 This is based on readline/complete.c:_rl_internal_pager.
2484 LINES is the number of lines of output displayed thus far.
2485 Returns:
2486 -1 -> user pressed 'n' or equivalent,
2487 0 -> user pressed 'y' or equivalent,
2488 N -> user pressed NEWLINE or equivalent and N is LINES - 1. */
2489
2490static int
2491gdb_display_match_list_pager (int lines,
2492 const struct match_list_displayer *displayer)
2493{
2494 int i;
2495
2496 displayer->puts (displayer, "--More--");
2497 displayer->flush (displayer);
2498 i = gdb_get_y_or_n (1, displayer);
2499 displayer->erase_entire_line (displayer);
2500 if (i == 0)
2501 return -1;
2502 else if (i == 2)
2503 return (lines - 1);
2504 else
2505 return 0;
2506}
2507
2508/* Return non-zero if FILENAME is a directory.
2509 Based on readline/complete.c:path_isdir. */
2510
2511static int
2512gdb_path_isdir (const char *filename)
2513{
2514 struct stat finfo;
2515
2516 return (stat (filename, &finfo) == 0 && S_ISDIR (finfo.st_mode));
2517}
2518
2519/* Return the portion of PATHNAME that should be output when listing
2520 possible completions. If we are hacking filename completion, we
2521 are only interested in the basename, the portion following the
2522 final slash. Otherwise, we return what we were passed. Since
2523 printing empty strings is not very informative, if we're doing
2524 filename completion, and the basename is the empty string, we look
2525 for the previous slash and return the portion following that. If
2526 there's no previous slash, we just return what we were passed.
2527
2528 Based on readline/complete.c:printable_part. */
2529
2530static char *
2531gdb_printable_part (char *pathname)
2532{
2533 char *temp, *x;
2534
2535 if (rl_filename_completion_desired == 0) /* don't need to do anything */
2536 return (pathname);
2537
2538 temp = strrchr (pathname, '/');
5836a818 2539#if defined (__MSDOS__)
82083d6d
DE
2540 if (temp == 0 && ISALPHA ((unsigned char)pathname[0]) && pathname[1] == ':')
2541 temp = pathname + 1;
2542#endif
2543
2544 if (temp == 0 || *temp == '\0')
2545 return (pathname);
2546 /* If the basename is NULL, we might have a pathname like '/usr/src/'.
2547 Look for a previous slash and, if one is found, return the portion
2548 following that slash. If there's no previous slash, just return the
2549 pathname we were passed. */
2550 else if (temp[1] == '\0')
2551 {
2552 for (x = temp - 1; x > pathname; x--)
dda83cd7
SM
2553 if (*x == '/')
2554 break;
82083d6d
DE
2555 return ((*x == '/') ? x + 1 : pathname);
2556 }
2557 else
2558 return ++temp;
2559}
2560
2561/* Compute width of STRING when displayed on screen by print_filename.
2562 Based on readline/complete.c:fnwidth. */
2563
2564static int
2565gdb_fnwidth (const char *string)
2566{
2567 int width, pos;
2568#if defined (HANDLE_MULTIBYTE)
2569 mbstate_t ps;
2570 int left, w;
2571 size_t clen;
2572 wchar_t wc;
2573
2574 left = strlen (string) + 1;
2575 memset (&ps, 0, sizeof (mbstate_t));
2576#endif
2577
2578 width = pos = 0;
2579 while (string[pos])
2580 {
2581 if (CTRL_CHAR (string[pos]) || string[pos] == RUBOUT)
2582 {
2583 width += 2;
2584 pos++;
2585 }
2586 else
2587 {
2588#if defined (HANDLE_MULTIBYTE)
2589 clen = mbrtowc (&wc, string + pos, left - pos, &ps);
2590 if (MB_INVALIDCH (clen))
2591 {
2592 width++;
2593 pos++;
2594 memset (&ps, 0, sizeof (mbstate_t));
2595 }
2596 else if (MB_NULLWCH (clen))
2597 break;
2598 else
2599 {
2600 pos += clen;
2601 w = wcwidth (wc);
2602 width += (w >= 0) ? w : 1;
2603 }
2604#else
2605 width++;
2606 pos++;
2607#endif
2608 }
2609 }
2610
2611 return width;
2612}
2613
2614/* Print TO_PRINT, one matching completion.
2615 PREFIX_BYTES is number of common prefix bytes.
2616 Based on readline/complete.c:fnprint. */
2617
2618static int
2619gdb_fnprint (const char *to_print, int prefix_bytes,
2620 const struct match_list_displayer *displayer)
2621{
0a4f5f8c 2622 int printed_len, w;
82083d6d
DE
2623 const char *s;
2624#if defined (HANDLE_MULTIBYTE)
2625 mbstate_t ps;
2626 const char *end;
2627 size_t tlen;
2628 int width;
2629 wchar_t wc;
2630
2631 end = to_print + strlen (to_print) + 1;
2632 memset (&ps, 0, sizeof (mbstate_t));
2633#endif
2634
0a4f5f8c 2635 printed_len = 0;
82083d6d
DE
2636
2637 /* Don't print only the ellipsis if the common prefix is one of the
2638 possible completions */
2639 if (to_print[prefix_bytes] == '\0')
2640 prefix_bytes = 0;
2641
0a4f5f8c 2642 if (prefix_bytes)
82083d6d
DE
2643 {
2644 char ellipsis;
2645
2646 ellipsis = (to_print[prefix_bytes] == '.') ? '_' : '.';
2647 for (w = 0; w < ELLIPSIS_LEN; w++)
2648 displayer->putch (displayer, ellipsis);
2649 printed_len = ELLIPSIS_LEN;
2650 }
2651
2652 s = to_print + prefix_bytes;
2653 while (*s)
2654 {
2655 if (CTRL_CHAR (*s))
dda83cd7
SM
2656 {
2657 displayer->putch (displayer, '^');
2658 displayer->putch (displayer, UNCTRL (*s));
2659 printed_len += 2;
2660 s++;
82083d6d
DE
2661#if defined (HANDLE_MULTIBYTE)
2662 memset (&ps, 0, sizeof (mbstate_t));
2663#endif
dda83cd7 2664 }
82083d6d
DE
2665 else if (*s == RUBOUT)
2666 {
2667 displayer->putch (displayer, '^');
2668 displayer->putch (displayer, '?');
2669 printed_len += 2;
2670 s++;
2671#if defined (HANDLE_MULTIBYTE)
2672 memset (&ps, 0, sizeof (mbstate_t));
2673#endif
2674 }
2675 else
2676 {
2677#if defined (HANDLE_MULTIBYTE)
2678 tlen = mbrtowc (&wc, s, end - s, &ps);
2679 if (MB_INVALIDCH (tlen))
2680 {
2681 tlen = 1;
2682 width = 1;
2683 memset (&ps, 0, sizeof (mbstate_t));
2684 }
2685 else if (MB_NULLWCH (tlen))
2686 break;
2687 else
2688 {
2689 w = wcwidth (wc);
2690 width = (w >= 0) ? w : 1;
2691 }
2692 for (w = 0; w < tlen; ++w)
2693 displayer->putch (displayer, s[w]);
2694 s += tlen;
2695 printed_len += width;
2696#else
2697 displayer->putch (displayer, *s);
2698 s++;
2699 printed_len++;
2700#endif
2701 }
2702 }
2703
2704 return printed_len;
2705}
2706
2707/* Output TO_PRINT to rl_outstream. If VISIBLE_STATS is defined and we
2708 are using it, check for and output a single character for `special'
2709 filenames. Return the number of characters we output.
2710 Based on readline/complete.c:print_filename. */
2711
2712static int
2713gdb_print_filename (char *to_print, char *full_pathname, int prefix_bytes,
2714 const struct match_list_displayer *displayer)
2715{
2716 int printed_len, extension_char, slen, tlen;
a121b7c1
PA
2717 char *s, c, *new_full_pathname;
2718 const char *dn;
82083d6d
DE
2719 extern int _rl_complete_mark_directories;
2720
2721 extension_char = 0;
2722 printed_len = gdb_fnprint (to_print, prefix_bytes, displayer);
2723
2724#if defined (VISIBLE_STATS)
2725 if (rl_filename_completion_desired && (rl_visible_stats || _rl_complete_mark_directories))
2726#else
2727 if (rl_filename_completion_desired && _rl_complete_mark_directories)
2728#endif
2729 {
2730 /* If to_print != full_pathname, to_print is the basename of the
2731 path passed. In this case, we try to expand the directory
2732 name before checking for the stat character. */
2733 if (to_print != full_pathname)
2734 {
2735 /* Terminate the directory name. */
2736 c = to_print[-1];
2737 to_print[-1] = '\0';
2738
2739 /* If setting the last slash in full_pathname to a NUL results in
2740 full_pathname being the empty string, we are trying to complete
2741 files in the root directory. If we pass a null string to the
2742 bash directory completion hook, for example, it will expand it
2743 to the current directory. We just want the `/'. */
2744 if (full_pathname == 0 || *full_pathname == 0)
2745 dn = "/";
2746 else if (full_pathname[0] != '/')
2747 dn = full_pathname;
2748 else if (full_pathname[1] == 0)
2749 dn = "//"; /* restore trailing slash to `//' */
2750 else if (full_pathname[1] == '/' && full_pathname[2] == 0)
2751 dn = "/"; /* don't turn /// into // */
2752 else
2753 dn = full_pathname;
2754 s = tilde_expand (dn);
2755 if (rl_directory_completion_hook)
2756 (*rl_directory_completion_hook) (&s);
2757
2758 slen = strlen (s);
2759 tlen = strlen (to_print);
2760 new_full_pathname = (char *)xmalloc (slen + tlen + 2);
2761 strcpy (new_full_pathname, s);
2762 if (s[slen - 1] == '/')
2763 slen--;
2764 else
2765 new_full_pathname[slen] = '/';
2766 new_full_pathname[slen] = '/';
2767 strcpy (new_full_pathname + slen + 1, to_print);
2768
2769#if defined (VISIBLE_STATS)
2770 if (rl_visible_stats)
2771 extension_char = stat_char (new_full_pathname);
2772 else
2773#endif
2774 if (gdb_path_isdir (new_full_pathname))
2775 extension_char = '/';
2776
2777 xfree (new_full_pathname);
2778 to_print[-1] = c;
2779 }
2780 else
2781 {
2782 s = tilde_expand (full_pathname);
2783#if defined (VISIBLE_STATS)
2784 if (rl_visible_stats)
2785 extension_char = stat_char (s);
2786 else
2787#endif
2788 if (gdb_path_isdir (s))
2789 extension_char = '/';
2790 }
2791
2792 xfree (s);
2793 if (extension_char)
2794 {
2795 displayer->putch (displayer, extension_char);
2796 printed_len++;
2797 }
2798 }
2799
2800 return printed_len;
2801}
2802
2803/* GDB version of readline/complete.c:complete_get_screenwidth. */
2804
2805static int
2806gdb_complete_get_screenwidth (const struct match_list_displayer *displayer)
2807{
2808 /* Readline has other stuff here which it's not clear we need. */
2809 return displayer->width;
2810}
2811
0a4f5f8c 2812extern int _rl_completion_prefix_display_length;
56000a98
PA
2813extern int _rl_print_completions_horizontally;
2814
cf0d07fd 2815extern "C" int _rl_qsort_string_compare (const void *, const void *);
56000a98
PA
2816typedef int QSFUNC (const void *, const void *);
2817
82083d6d 2818/* GDB version of readline/complete.c:rl_display_match_list.
ef0b411a
GB
2819 See gdb_display_match_list for a description of MATCHES, LEN, MAX.
2820 Returns non-zero if all matches are displayed. */
82083d6d 2821
ef0b411a 2822static int
82083d6d
DE
2823gdb_display_match_list_1 (char **matches, int len, int max,
2824 const struct match_list_displayer *displayer)
2825{
2826 int count, limit, printed_len, lines, cols;
2827 int i, j, k, l, common_length, sind;
2828 char *temp, *t;
2829 int page_completions = displayer->height != INT_MAX && pagination_enabled;
82083d6d
DE
2830
2831 /* Find the length of the prefix common to all items: length as displayed
2832 characters (common_length) and as a byte index into the matches (sind) */
2833 common_length = sind = 0;
0a4f5f8c 2834 if (_rl_completion_prefix_display_length > 0)
82083d6d
DE
2835 {
2836 t = gdb_printable_part (matches[0]);
2837 temp = strrchr (t, '/');
2838 common_length = temp ? gdb_fnwidth (temp) : gdb_fnwidth (t);
2839 sind = temp ? strlen (temp) : strlen (t);
2840
0a4f5f8c 2841 if (common_length > _rl_completion_prefix_display_length && common_length > ELLIPSIS_LEN)
82083d6d 2842 max -= common_length - ELLIPSIS_LEN;
0a4f5f8c 2843 else
82083d6d
DE
2844 common_length = sind = 0;
2845 }
2846
2847 /* How many items of MAX length can we fit in the screen window? */
2848 cols = gdb_complete_get_screenwidth (displayer);
2849 max += 2;
2850 limit = cols / max;
2851 if (limit != 1 && (limit * max == cols))
2852 limit--;
2853
2854 /* If cols == 0, limit will end up -1 */
2855 if (cols < displayer->width && limit < 0)
2856 limit = 1;
2857
2858 /* Avoid a possible floating exception. If max > cols,
2859 limit will be 0 and a divide-by-zero fault will result. */
2860 if (limit == 0)
2861 limit = 1;
2862
2863 /* How many iterations of the printing loop? */
2864 count = (len + (limit - 1)) / limit;
2865
2866 /* Watch out for special case. If LEN is less than LIMIT, then
2867 just do the inner printing loop.
2868 0 < len <= limit implies count = 1. */
2869
2870 /* Sort the items if they are not already sorted. */
2871 if (rl_ignore_completion_duplicates == 0 && rl_sort_completion_matches)
2872 qsort (matches + 1, len, sizeof (char *), (QSFUNC *)_rl_qsort_string_compare);
2873
2874 displayer->crlf (displayer);
2875
2876 lines = 0;
2877 if (_rl_print_completions_horizontally == 0)
2878 {
2879 /* Print the sorted items, up-and-down alphabetically, like ls. */
2880 for (i = 1; i <= count; i++)
2881 {
2882 for (j = 0, l = i; j < limit; j++)
2883 {
2884 if (l > len || matches[l] == 0)
2885 break;
2886 else
2887 {
2888 temp = gdb_printable_part (matches[l]);
2889 printed_len = gdb_print_filename (temp, matches[l], sind,
2890 displayer);
2891
2892 if (j + 1 < limit)
2893 for (k = 0; k < max - printed_len; k++)
2894 displayer->putch (displayer, ' ');
2895 }
2896 l += count;
2897 }
2898 displayer->crlf (displayer);
2899 lines++;
2900 if (page_completions && lines >= (displayer->height - 1) && i < count)
2901 {
2902 lines = gdb_display_match_list_pager (lines, displayer);
2903 if (lines < 0)
ef0b411a 2904 return 0;
82083d6d
DE
2905 }
2906 }
2907 }
2908 else
2909 {
2910 /* Print the sorted items, across alphabetically, like ls -x. */
2911 for (i = 1; matches[i]; i++)
2912 {
2913 temp = gdb_printable_part (matches[i]);
2914 printed_len = gdb_print_filename (temp, matches[i], sind, displayer);
2915 /* Have we reached the end of this line? */
2916 if (matches[i+1])
2917 {
2918 if (i && (limit > 1) && (i % limit) == 0)
2919 {
2920 displayer->crlf (displayer);
2921 lines++;
2922 if (page_completions && lines >= displayer->height - 1)
2923 {
2924 lines = gdb_display_match_list_pager (lines, displayer);
2925 if (lines < 0)
ef0b411a 2926 return 0;
82083d6d
DE
2927 }
2928 }
2929 else
2930 for (k = 0; k < max - printed_len; k++)
2931 displayer->putch (displayer, ' ');
2932 }
2933 }
2934 displayer->crlf (displayer);
2935 }
ef0b411a
GB
2936
2937 return 1;
82083d6d
DE
2938}
2939
2940/* Utility for displaying completion list matches, used by both CLI and TUI.
2941
2942 MATCHES is the list of strings, in argv format, LEN is the number of
05cdcf3d
DE
2943 strings in MATCHES, and MAX is the length of the longest string in
2944 MATCHES. */
82083d6d
DE
2945
2946void
2947gdb_display_match_list (char **matches, int len, int max,
2948 const struct match_list_displayer *displayer)
2949{
ef0b411a
GB
2950 /* Readline will never call this if complete_line returned NULL. */
2951 gdb_assert (max_completions != 0);
2952
2953 /* complete_line will never return more than this. */
2954 if (max_completions > 0)
2955 gdb_assert (len <= max_completions);
2956
82083d6d
DE
2957 if (rl_completion_query_items > 0 && len >= rl_completion_query_items)
2958 {
2959 char msg[100];
2960
2961 /* We can't use *query here because they wait for <RET> which is
2962 wrong here. This follows the readline version as closely as possible
2963 for compatibility's sake. See readline/complete.c. */
2964
2965 displayer->crlf (displayer);
2966
2967 xsnprintf (msg, sizeof (msg),
2968 "Display all %d possibilities? (y or n)", len);
2969 displayer->puts (displayer, msg);
2970 displayer->flush (displayer);
2971
2972 if (gdb_get_y_or_n (0, displayer) == 0)
2973 {
2974 displayer->crlf (displayer);
2975 return;
2976 }
2977 }
2978
ef0b411a
GB
2979 if (gdb_display_match_list_1 (matches, len, max, displayer))
2980 {
2981 /* Note: MAX_COMPLETIONS may be -1 or zero, but LEN is always > 0. */
2982 if (len == max_completions)
2983 {
2984 /* The maximum number of completions has been reached. Warn the user
2985 that there may be more. */
2986 const char *message = get_max_completions_reached_message ();
2987
2988 displayer->puts (displayer, message);
2989 displayer->crlf (displayer);
2990 }
2991 }
2992}
ef0b411a 2993
7f51f2cd
AB
2994/* See completer.h. */
2995
2996bool
2997skip_over_slash_fmt (completion_tracker &tracker, const char **args)
2998{
2999 const char *text = *args;
3000
3001 if (text[0] == '/')
3002 {
3003 bool in_fmt;
3004 tracker.set_use_custom_word_point (true);
3005
3006 if (text[1] == '\0')
3007 {
3008 /* The user tried to complete after typing just the '/' character
3009 of the /FMT string. Step the completer past the '/', but we
3010 don't offer any completions. */
3011 in_fmt = true;
3012 ++text;
3013 }
3014 else
3015 {
3016 /* The user has typed some characters after the '/', we assume
3017 this is a complete /FMT string, first skip over it. */
3018 text = skip_to_space (text);
3019
3020 if (*text == '\0')
3021 {
3022 /* We're at the end of the input string. The user has typed
3023 '/FMT' and asked for a completion. Push an empty
3024 completion string, this will cause readline to insert a
3025 space so the user now has '/FMT '. */
3026 in_fmt = true;
3027 tracker.add_completion (make_unique_xstrdup (text));
3028 }
3029 else
3030 {
3031 /* The user has already typed things after the /FMT, skip the
3032 whitespace and return false. Whoever called this function
3033 should then try to complete what comes next. */
3034 in_fmt = false;
3035 text = skip_spaces (text);
3036 }
3037 }
3038
3039 tracker.advance_custom_word_point_by (text - *args);
3040 *args = text;
3041 return in_fmt;
3042 }
3043
3044 return false;
3045}
3046
6c265988 3047void _initialize_completer ();
ef0b411a 3048void
6c265988 3049_initialize_completer ()
ef0b411a
GB
3050{
3051 add_setshow_zuinteger_unlimited_cmd ("max-completions", no_class,
3052 &max_completions, _("\
3053Set maximum number of completion candidates."), _("\
3054Show maximum number of completion candidates."), _("\
3055Use this to limit the number of candidates considered\n\
3056during completion. Specifying \"unlimited\" or -1\n\
3057disables limiting. Note that setting either no limit or\n\
3058a very large limit can make completion slow."),
3059 NULL, NULL, &setlist, &showlist);
82083d6d 3060}