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