Rename make_symbol_completion_list_fn -> symbol_completer
[deliverable/binutils-gdb.git] / gdb / completer.c
CommitLineData
c5f0f3d0 1/* Line completion stuff for GDB, the GNU debugger.
61baf725 2 Copyright (C) 2000-2017 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"
20#include "symtab.h"
21#include "gdbtypes.h"
22#include "expression.h"
9c3f90bd 23#include "filenames.h" /* For DOSish file names. */
51065942 24#include "language.h"
de0bea00 25#include "gdb_signals.h"
71c24708
AA
26#include "target.h"
27#include "reggroups.h"
28#include "user-regs.h"
51f0e40d 29#include "arch-utils.h"
87f0e720 30#include "location.h"
c5f0f3d0 31
18a642a1
AC
32#include "cli/cli-decode.h"
33
03717487
MS
34/* FIXME: This is needed because of lookup_cmd_1 (). We should be
35 calling a hook instead so we eliminate the CLI dependency. */
c5f0f3d0
FN
36#include "gdbcmd.h"
37
c94fdfd0 38/* Needed for rl_completer_word_break_characters() and for
38017ce8 39 rl_filename_completion_function. */
dbda9972 40#include "readline/readline.h"
c5f0f3d0
FN
41
42/* readline defines this. */
43#undef savestring
44
45#include "completer.h"
46
87f0e720
KS
47/* An enumeration of the various things a user might
48 attempt to complete for a location. */
49
50enum explicit_location_match_type
51{
52 /* The filename of a source file. */
53 MATCH_SOURCE,
54
55 /* The name of a function or method. */
56 MATCH_FUNCTION,
57
58 /* The name of a label. */
59 MATCH_LABEL
60};
61
9c3f90bd 62/* Prototypes for local functions. */
38017ce8 63static
03717487
MS
64char *line_completion_function (const char *text, int matches,
65 char *line_buffer,
d75b5104 66 int point);
c5f0f3d0
FN
67
68/* readline uses the word breaks for two things:
69 (1) In figuring out where to point the TEXT parameter to the
70 rl_completion_entry_function. Since we don't use TEXT for much,
aff410f1
MS
71 it doesn't matter a lot what the word breaks are for this purpose,
72 but it does affect how much stuff M-? lists.
c5f0f3d0
FN
73 (2) If one of the matches contains a word break character, readline
74 will quote it. That's why we switch between
51065942 75 current_language->la_word_break_characters() and
c5f0f3d0 76 gdb_completer_command_word_break_characters. I'm not sure when
aff410f1
MS
77 we need this behavior (perhaps for funky characters in C++
78 symbols?). */
c5f0f3d0
FN
79
80/* Variables which are necessary for fancy command line editing. */
c5f0f3d0
FN
81
82/* When completing on command names, we remove '-' from the list of
83 word break characters, since we use it in command names. If the
84 readline library sees one in any of the current completion strings,
aff410f1
MS
85 it thinks that the string needs to be quoted and automatically
86 supplies a leading quote. */
67cb5b2d 87static const char gdb_completer_command_word_break_characters[] =
c5f0f3d0
FN
88" \t\n!@#$%^&*()+=|~`}{[]\"';:?/>.<,";
89
90/* When completing on file names, we remove from the list of word
91 break characters any characters that are commonly used in file
92 names, such as '-', '+', '~', etc. Otherwise, readline displays
93 incorrect completion candidates. */
7830cf6f
EZ
94/* MS-DOS and MS-Windows use colon as part of the drive spec, and most
95 programs support @foo style response files. */
67cb5b2d
PA
96static const char gdb_completer_file_name_break_characters[] =
97#ifdef HAVE_DOS_BASED_FILE_SYSTEM
98 " \t\n*|\"';?><@";
7830cf6f 99#else
67cb5b2d 100 " \t\n*|\"';:?><";
7830cf6f 101#endif
c5f0f3d0 102
aff410f1
MS
103/* Characters that can be used to quote completion strings. Note that
104 we can't include '"' because the gdb C parser treats such quoted
105 sequences as strings. */
67cb5b2d 106static const char gdb_completer_quote_characters[] = "'";
c5f0f3d0 107\f
9c3f90bd 108/* Accessor for some completer data that may interest other files. */
c5f0f3d0 109
67cb5b2d 110const char *
c5f0f3d0
FN
111get_gdb_completer_quote_characters (void)
112{
113 return gdb_completer_quote_characters;
114}
115
d75b5104
EZ
116/* Line completion interface function for readline. */
117
118char *
38017ce8 119readline_line_completion_function (const char *text, int matches)
d75b5104 120{
aff410f1
MS
121 return line_completion_function (text, matches,
122 rl_line_buffer, rl_point);
d75b5104
EZ
123}
124
aff410f1
MS
125/* This can be used for functions which don't want to complete on
126 symbols but don't want to complete on anything else either. */
49c4e619 127VEC (char_ptr) *
aff410f1 128noop_completer (struct cmd_list_element *ignore,
6f937416 129 const char *text, const char *prefix)
d75b5104
EZ
130{
131 return NULL;
132}
133
c5f0f3d0 134/* Complete on filenames. */
49c4e619 135VEC (char_ptr) *
aff410f1 136filename_completer (struct cmd_list_element *ignore,
6f937416 137 const char *text, const char *word)
c5f0f3d0 138{
c5f0f3d0 139 int subsequent_name;
49c4e619 140 VEC (char_ptr) *return_val = NULL;
c5f0f3d0
FN
141
142 subsequent_name = 0;
143 while (1)
144 {
1e8189fb 145 char *p, *q;
c5504eaf 146
38017ce8 147 p = rl_filename_completion_function (text, subsequent_name);
c5f0f3d0 148 if (p == NULL)
49c4e619 149 break;
c5f0f3d0 150 /* We need to set subsequent_name to a non-zero value before the
aff410f1
MS
151 continue line below, because otherwise, if the first file
152 seen by GDB is a backup file whose name ends in a `~', we
153 will loop indefinitely. */
c5f0f3d0 154 subsequent_name = 1;
aff410f1
MS
155 /* Like emacs, don't complete on old versions. Especially
156 useful in the "source" command. */
c5f0f3d0 157 if (p[strlen (p) - 1] == '~')
1e8189fb
MS
158 {
159 xfree (p);
160 continue;
161 }
c5f0f3d0 162
1e8189fb
MS
163 if (word == text)
164 /* Return exactly p. */
49c4e619 165 q = p;
1e8189fb
MS
166 else if (word > text)
167 {
168 /* Return some portion of p. */
224c3ddb 169 q = (char *) xmalloc (strlen (p) + 5);
1e8189fb 170 strcpy (q, p + (word - text));
1e8189fb
MS
171 xfree (p);
172 }
173 else
174 {
175 /* Return some of TEXT plus p. */
224c3ddb 176 q = (char *) xmalloc (strlen (p) + (text - word) + 5);
1e8189fb
MS
177 strncpy (q, word, text - word);
178 q[text - word] = '\0';
179 strcat (q, p);
1e8189fb
MS
180 xfree (p);
181 }
49c4e619 182 VEC_safe_push (char_ptr, return_val, q);
c5f0f3d0
FN
183 }
184#if 0
aff410f1
MS
185 /* There is no way to do this just long enough to affect quote
186 inserting without also affecting the next completion. This
187 should be fixed in readline. FIXME. */
489f0516 188 /* Ensure that readline does the right thing
c5f0f3d0
FN
189 with respect to inserting quotes. */
190 rl_completer_word_break_characters = "";
191#endif
192 return return_val;
193}
194
87f0e720 195/* Complete on linespecs, which might be of two possible forms:
c94fdfd0
EZ
196
197 file:line
198 or
199 symbol+offset
200
aff410f1
MS
201 This is intended to be used in commands that set breakpoints
202 etc. */
203
87f0e720
KS
204static VEC (char_ptr) *
205linespec_location_completer (struct cmd_list_element *ignore,
206 const char *text, const char *word)
c94fdfd0 207{
49c4e619
TT
208 int n_syms, n_files, ix;
209 VEC (char_ptr) *fn_list = NULL;
210 VEC (char_ptr) *list = NULL;
6f937416 211 const char *p;
c94fdfd0
EZ
212 int quote_found = 0;
213 int quoted = *text == '\'' || *text == '"';
214 int quote_char = '\0';
6f937416 215 const char *colon = NULL;
c94fdfd0 216 char *file_to_match = NULL;
6f937416
PA
217 const char *symbol_start = text;
218 const char *orig_text = text;
c94fdfd0
EZ
219 size_t text_len;
220
59be2b6a 221 /* Do we have an unquoted colon, as in "break foo.c:bar"? */
c94fdfd0
EZ
222 for (p = text; *p != '\0'; ++p)
223 {
224 if (*p == '\\' && p[1] == '\'')
225 p++;
226 else if (*p == '\'' || *p == '"')
227 {
228 quote_found = *p;
229 quote_char = *p++;
230 while (*p != '\0' && *p != quote_found)
231 {
232 if (*p == '\\' && p[1] == quote_found)
233 p++;
234 p++;
235 }
236
237 if (*p == quote_found)
238 quote_found = 0;
239 else
9c3f90bd 240 break; /* Hit the end of text. */
c94fdfd0
EZ
241 }
242#if HAVE_DOS_BASED_FILE_SYSTEM
243 /* If we have a DOS-style absolute file name at the beginning of
244 TEXT, and the colon after the drive letter is the only colon
245 we found, pretend the colon is not there. */
246 else if (p < text + 3 && *p == ':' && p == text + 1 + quoted)
247 ;
248#endif
249 else if (*p == ':' && !colon)
250 {
251 colon = p;
252 symbol_start = p + 1;
253 }
51065942 254 else if (strchr (current_language->la_word_break_characters(), *p))
c94fdfd0
EZ
255 symbol_start = p + 1;
256 }
257
258 if (quoted)
259 text++;
260 text_len = strlen (text);
261
262 /* Where is the file name? */
263 if (colon)
264 {
265 char *s;
266
267 file_to_match = (char *) xmalloc (colon - text + 1);
bbfa2517
YQ
268 strncpy (file_to_match, text, colon - text);
269 file_to_match[colon - text] = '\0';
c94fdfd0
EZ
270 /* Remove trailing colons and quotes from the file name. */
271 for (s = file_to_match + (colon - text);
272 s > file_to_match;
273 s--)
274 if (*s == ':' || *s == quote_char)
275 *s = '\0';
276 }
277 /* If the text includes a colon, they want completion only on a
278 symbol name after the colon. Otherwise, we need to complete on
279 symbols as well as on files. */
280 if (colon)
281 {
282 list = make_file_symbol_completion_list (symbol_start, word,
283 file_to_match);
284 xfree (file_to_match);
285 }
286 else
287 {
288 list = make_symbol_completion_list (symbol_start, word);
289 /* If text includes characters which cannot appear in a file
290 name, they cannot be asking for completion on files. */
1f20ed91
MS
291 if (strcspn (text,
292 gdb_completer_file_name_break_characters) == text_len)
c94fdfd0
EZ
293 fn_list = make_source_files_completion_list (text, text);
294 }
295
49c4e619
TT
296 n_syms = VEC_length (char_ptr, list);
297 n_files = VEC_length (char_ptr, fn_list);
298
299 /* Catenate fn_list[] onto the end of list[]. */
300 if (!n_syms)
301 {
302 VEC_free (char_ptr, list); /* Paranoia. */
303 list = fn_list;
304 fn_list = NULL;
305 }
306 else
307 {
6f937416
PA
308 char *fn;
309
310 for (ix = 0; VEC_iterate (char_ptr, fn_list, ix, fn); ++ix)
311 VEC_safe_push (char_ptr, list, fn);
49c4e619
TT
312 VEC_free (char_ptr, fn_list);
313 }
c94fdfd0 314
c94fdfd0
EZ
315 if (n_syms && n_files)
316 {
49c4e619 317 /* Nothing. */
c94fdfd0
EZ
318 }
319 else if (n_files)
320 {
6f937416
PA
321 char *fn;
322
c94fdfd0
EZ
323 /* If we only have file names as possible completion, we should
324 bring them in sync with what rl_complete expects. The
325 problem is that if the user types "break /foo/b TAB", and the
326 possible completions are "/foo/bar" and "/foo/baz"
327 rl_complete expects us to return "bar" and "baz", without the
328 leading directories, as possible completions, because `word'
329 starts at the "b". But we ignore the value of `word' when we
330 call make_source_files_completion_list above (because that
331 would not DTRT when the completion results in both symbols
332 and file names), so make_source_files_completion_list returns
333 the full "/foo/bar" and "/foo/baz" strings. This produces
334 wrong results when, e.g., there's only one possible
335 completion, because rl_complete will prepend "/foo/" to each
336 candidate completion. The loop below removes that leading
337 part. */
6f937416 338 for (ix = 0; VEC_iterate (char_ptr, list, ix, fn); ++ix)
c94fdfd0 339 {
6f937416
PA
340 memmove (fn, fn + (word - text),
341 strlen (fn) + 1 - (word - text));
c94fdfd0 342 }
c94fdfd0
EZ
343 }
344 else if (!n_syms)
345 {
346 /* No completions at all. As the final resort, try completing
347 on the entire text as a symbol. */
348 list = make_symbol_completion_list (orig_text, word);
349 }
350
351 return list;
352}
353
87f0e720
KS
354/* A helper function to collect explicit location matches for the given
355 LOCATION, which is attempting to match on WORD. */
356
357static VEC (char_ptr) *
358collect_explicit_location_matches (struct event_location *location,
359 enum explicit_location_match_type what,
360 const char *word)
361{
362 VEC (char_ptr) *matches = NULL;
67994074
KS
363 const struct explicit_location *explicit_loc
364 = get_explicit_location (location);
87f0e720
KS
365
366 switch (what)
367 {
368 case MATCH_SOURCE:
369 {
67994074
KS
370 const char *text = (explicit_loc->source_filename == NULL
371 ? "" : explicit_loc->source_filename);
87f0e720
KS
372
373 matches = make_source_files_completion_list (text, word);
374 }
375 break;
376
377 case MATCH_FUNCTION:
378 {
67994074
KS
379 const char *text = (explicit_loc->function_name == NULL
380 ? "" : explicit_loc->function_name);
87f0e720 381
67994074 382 if (explicit_loc->source_filename != NULL)
87f0e720 383 {
67994074
KS
384 const char *filename = explicit_loc->source_filename;
385
386 matches = make_file_symbol_completion_list (text, word, filename);
87f0e720
KS
387 }
388 else
389 matches = make_symbol_completion_list (text, word);
390 }
391 break;
392
393 case MATCH_LABEL:
394 /* Not supported. */
395 break;
396
397 default:
398 gdb_assert_not_reached ("unhandled explicit_location_match_type");
399 }
400
401 return matches;
402}
403
404/* A convenience macro to (safely) back up P to the previous word. */
405
406static const char *
407backup_text_ptr (const char *p, const char *text)
408{
409 while (p > text && isspace (*p))
410 --p;
411 for (; p > text && !isspace (p[-1]); --p)
412 ;
413
414 return p;
415}
416
417/* A completer function for explicit locations. This function
418 completes both options ("-source", "-line", etc) and values. */
419
420static VEC (char_ptr) *
421explicit_location_completer (struct cmd_list_element *ignore,
422 struct event_location *location,
423 const char *text, const char *word)
424{
425 const char *p;
426 VEC (char_ptr) *matches = NULL;
427
428 /* Find the beginning of the word. This is necessary because
429 we need to know if we are completing an option name or value. We
430 don't get the leading '-' from the completer. */
431 p = backup_text_ptr (word, text);
432
433 if (*p == '-')
434 {
435 /* Completing on option name. */
436 static const char *const keywords[] =
437 {
438 "source",
439 "function",
440 "line",
441 "label",
442 NULL
443 };
444
445 /* Skip over the '-'. */
446 ++p;
447
448 return complete_on_enum (keywords, p, p);
449 }
450 else
451 {
452 /* Completing on value (or unknown). Get the previous word to see what
453 the user is completing on. */
454 size_t len, offset;
455 const char *new_word, *end;
456 enum explicit_location_match_type what;
67994074
KS
457 struct explicit_location *explicit_loc
458 = get_explicit_location (location);
87f0e720
KS
459
460 /* Backup P to the previous word, which should be the option
461 the user is attempting to complete. */
462 offset = word - p;
463 end = --p;
464 p = backup_text_ptr (p, text);
465 len = end - p;
466
467 if (strncmp (p, "-source", len) == 0)
468 {
469 what = MATCH_SOURCE;
67994074 470 new_word = explicit_loc->source_filename + offset;
87f0e720
KS
471 }
472 else if (strncmp (p, "-function", len) == 0)
473 {
474 what = MATCH_FUNCTION;
67994074 475 new_word = explicit_loc->function_name + offset;
87f0e720
KS
476 }
477 else if (strncmp (p, "-label", len) == 0)
478 {
479 what = MATCH_LABEL;
67994074 480 new_word = explicit_loc->label_name + offset;
87f0e720
KS
481 }
482 else
483 {
484 /* The user isn't completing on any valid option name,
485 e.g., "break -source foo.c [tab]". */
486 return NULL;
487 }
488
489 /* If the user hasn't entered a search expression, e.g.,
490 "break -function <TAB><TAB>", new_word will be NULL, but
491 search routines require non-NULL search words. */
492 if (new_word == NULL)
493 new_word = "";
494
495 /* Now gather matches */
496 matches = collect_explicit_location_matches (location, what, new_word);
497 }
498
499 return matches;
500}
501
502/* A completer for locations. */
503
504VEC (char_ptr) *
505location_completer (struct cmd_list_element *ignore,
506 const char *text, const char *word)
507{
508 VEC (char_ptr) *matches = NULL;
509 const char *copy = text;
87f0e720 510
ffc2605c
TT
511 event_location_up location = string_to_explicit_location (&copy,
512 current_language,
513 1);
87f0e720 514 if (location != NULL)
ffc2605c
TT
515 matches = explicit_location_completer (ignore, location.get (),
516 text, word);
87f0e720
KS
517 else
518 {
519 /* This is an address or linespec location.
520 Right now both of these are handled by the (old) linespec
521 completer. */
522 matches = linespec_location_completer (ignore, text, word);
523 }
524
525 return matches;
526}
527
1c71341a
TT
528/* Helper for expression_completer which recursively adds field and
529 method names from TYPE, a struct or union type, to the array
49c4e619 530 OUTPUT. */
65d12d83 531static void
49c4e619 532add_struct_fields (struct type *type, VEC (char_ptr) **output,
65d12d83
TT
533 char *fieldname, int namelen)
534{
535 int i;
b32d97f3 536 int computed_type_name = 0;
0d5cff50 537 const char *type_name = NULL;
65d12d83 538
f168693b 539 type = check_typedef (type);
65d12d83
TT
540 for (i = 0; i < TYPE_NFIELDS (type); ++i)
541 {
542 if (i < TYPE_N_BASECLASSES (type))
49c4e619 543 add_struct_fields (TYPE_BASECLASS (type, i),
aff410f1 544 output, fieldname, namelen);
9ae8282d 545 else if (TYPE_FIELD_NAME (type, i))
65d12d83 546 {
9ae8282d
TT
547 if (TYPE_FIELD_NAME (type, i)[0] != '\0')
548 {
aff410f1
MS
549 if (! strncmp (TYPE_FIELD_NAME (type, i),
550 fieldname, namelen))
49c4e619
TT
551 VEC_safe_push (char_ptr, *output,
552 xstrdup (TYPE_FIELD_NAME (type, i)));
9ae8282d
TT
553 }
554 else if (TYPE_CODE (TYPE_FIELD_TYPE (type, i)) == TYPE_CODE_UNION)
555 {
556 /* Recurse into anonymous unions. */
49c4e619 557 add_struct_fields (TYPE_FIELD_TYPE (type, i),
aff410f1 558 output, fieldname, namelen);
9ae8282d 559 }
65d12d83
TT
560 }
561 }
1c71341a
TT
562
563 for (i = TYPE_NFN_FIELDS (type) - 1; i >= 0; --i)
564 {
0d5cff50 565 const char *name = TYPE_FN_FIELDLIST_NAME (type, i);
c5504eaf 566
1c71341a
TT
567 if (name && ! strncmp (name, fieldname, namelen))
568 {
b32d97f3
TT
569 if (!computed_type_name)
570 {
571 type_name = type_name_no_tag (type);
572 computed_type_name = 1;
573 }
1c71341a 574 /* Omit constructors from the completion list. */
907af001 575 if (!type_name || strcmp (type_name, name))
49c4e619 576 VEC_safe_push (char_ptr, *output, xstrdup (name));
1c71341a
TT
577 }
578 }
65d12d83
TT
579}
580
581/* Complete on expressions. Often this means completing on symbol
582 names, but some language parsers also have support for completing
583 field names. */
49c4e619 584VEC (char_ptr) *
aff410f1 585expression_completer (struct cmd_list_element *ignore,
6f937416 586 const char *text, const char *word)
65d12d83 587{
c92817ce 588 struct type *type = NULL;
6f937416 589 char *fieldname;
2f68a895 590 enum type_code code = TYPE_CODE_UNDEF;
65d12d83
TT
591
592 /* Perform a tentative parse of the expression, to see whether a
593 field completion is required. */
594 fieldname = NULL;
492d29ea 595 TRY
c92817ce 596 {
2f68a895 597 type = parse_expression_for_completion (text, &fieldname, &code);
c92817ce 598 }
492d29ea
PA
599 CATCH (except, RETURN_MASK_ERROR)
600 {
601 return NULL;
602 }
603 END_CATCH
604
65d12d83
TT
605 if (fieldname && type)
606 {
607 for (;;)
608 {
f168693b 609 type = check_typedef (type);
aa006118 610 if (TYPE_CODE (type) != TYPE_CODE_PTR && !TYPE_IS_REFERENCE (type))
65d12d83
TT
611 break;
612 type = TYPE_TARGET_TYPE (type);
613 }
614
615 if (TYPE_CODE (type) == TYPE_CODE_UNION
616 || TYPE_CODE (type) == TYPE_CODE_STRUCT)
617 {
65d12d83 618 int flen = strlen (fieldname);
49c4e619 619 VEC (char_ptr) *result = NULL;
65d12d83 620
49c4e619 621 add_struct_fields (type, &result, fieldname, flen);
a0b7aece 622 xfree (fieldname);
65d12d83
TT
623 return result;
624 }
625 }
2f68a895
TT
626 else if (fieldname && code != TYPE_CODE_UNDEF)
627 {
628 VEC (char_ptr) *result;
629 struct cleanup *cleanup = make_cleanup (xfree, fieldname);
630
631 result = make_symbol_completion_type (fieldname, fieldname, code);
632 do_cleanups (cleanup);
633 return result;
634 }
a0b7aece 635 xfree (fieldname);
65d12d83 636
aff410f1 637 /* Not ideal but it is what we used to do before... */
eb17d413 638 return linespec_location_completer (ignore, text, word);
65d12d83
TT
639}
640
7d793aa9
SDJ
641/* See definition in completer.h. */
642
67cb5b2d
PA
643void
644set_rl_completer_word_break_characters (const char *break_chars)
645{
646 rl_completer_word_break_characters = (char *) break_chars;
647}
648
649/* See definition in completer.h. */
650
7d793aa9
SDJ
651void
652set_gdb_completion_word_break_characters (completer_ftype *fn)
653{
67cb5b2d
PA
654 const char *break_chars;
655
7d793aa9
SDJ
656 /* So far we are only interested in differentiating filename
657 completers from everything else. */
658 if (fn == filename_completer)
67cb5b2d 659 break_chars = gdb_completer_file_name_break_characters;
7d793aa9 660 else
67cb5b2d
PA
661 break_chars = gdb_completer_command_word_break_characters;
662
663 set_rl_completer_word_break_characters (break_chars);
7d793aa9
SDJ
664}
665
78b13106
PA
666/* Complete on symbols. */
667
668VEC (char_ptr) *
669symbol_completer (struct cmd_list_element *ignore,
670 const char *text, const char *word)
671{
672 return make_symbol_completion_list (text, word);
673}
674
aff410f1
MS
675/* Here are some useful test cases for completion. FIXME: These
676 should be put in the test suite. They should be tested with both
677 M-? and TAB.
c5f0f3d0
FN
678
679 "show output-" "radix"
680 "show output" "-radix"
681 "p" ambiguous (commands starting with p--path, print, printf, etc.)
682 "p " ambiguous (all symbols)
683 "info t foo" no completions
684 "info t " no completions
685 "info t" ambiguous ("info target", "info terminal", etc.)
686 "info ajksdlfk" no completions
687 "info ajksdlfk " no completions
688 "info" " "
689 "info " ambiguous (all info commands)
690 "p \"a" no completions (string constant)
691 "p 'a" ambiguous (all symbols starting with a)
692 "p b-a" ambiguous (all symbols starting with a)
693 "p b-" ambiguous (all symbols)
694 "file Make" "file" (word break hard to screw up here)
695 "file ../gdb.stabs/we" "ird" (needs to not break word at slash)
696 */
697
67c296a2
PM
698typedef enum
699{
700 handle_brkchars,
701 handle_completions,
702 handle_help
703}
704complete_line_internal_reason;
705
706
707/* Internal function used to handle completions.
708
c5f0f3d0
FN
709
710 TEXT is the caller's idea of the "word" we are looking at.
711
aff410f1
MS
712 LINE_BUFFER is available to be looked at; it contains the entire
713 text of the line. POINT is the offset in that line of the cursor.
714 You should pretend that the line ends at POINT.
67c296a2
PM
715
716 REASON is of type complete_line_internal_reason.
717
718 If REASON is handle_brkchars:
aff410f1
MS
719 Preliminary phase, called by gdb_completion_word_break_characters
720 function, is used to determine the correct set of chars that are
721 word delimiters depending on the current command in line_buffer.
722 No completion list should be generated; the return value should be
723 NULL. This is checked by an assertion in that function.
67c296a2
PM
724
725 If REASON is handle_completions:
726 Main phase, called by complete_line function, is used to get the list
727 of posible completions.
728
729 If REASON is handle_help:
730 Special case when completing a 'help' command. In this case,
14032a66 731 once sub-command completions are exhausted, we simply return NULL.
67c296a2 732 */
14032a66 733
49c4e619 734static VEC (char_ptr) *
aff410f1 735complete_line_internal (const char *text,
6f937416 736 const char *line_buffer, int point,
67c296a2 737 complete_line_internal_reason reason)
c5f0f3d0 738{
49c4e619 739 VEC (char_ptr) *list = NULL;
6f937416
PA
740 char *tmp_command;
741 const char *p;
ace21957 742 int ignore_help_classes;
c5f0f3d0
FN
743 /* Pointer within tmp_command which corresponds to text. */
744 char *word;
745 struct cmd_list_element *c, *result_list;
746
aff410f1
MS
747 /* Choose the default set of word break characters to break
748 completions. If we later find out that we are doing completions
749 on command strings (as opposed to strings supplied by the
750 individual command completer functions, which can be any string)
751 then we will switch to the special word break set for command
752 strings, which leaves out the '-' character used in some
753 commands. */
67cb5b2d
PA
754 set_rl_completer_word_break_characters
755 (current_language->la_word_break_characters());
c5f0f3d0 756
aff410f1
MS
757 /* Decide whether to complete on a list of gdb commands or on
758 symbols. */
83d31a92
TT
759 tmp_command = (char *) alloca (point + 1);
760 p = tmp_command;
c5f0f3d0 761
ace21957
MF
762 /* The help command should complete help aliases. */
763 ignore_help_classes = reason != handle_help;
764
83d31a92
TT
765 strncpy (tmp_command, line_buffer, point);
766 tmp_command[point] = '\0';
767 /* Since text always contains some number of characters leading up
768 to point, we can find the equivalent position in tmp_command
769 by subtracting that many characters from the end of tmp_command. */
770 word = tmp_command + point - strlen (text);
c5f0f3d0 771
83d31a92
TT
772 if (point == 0)
773 {
774 /* An empty line we want to consider ambiguous; that is, it
775 could be any command. */
1427fe5e 776 c = CMD_LIST_AMBIGUOUS;
83d31a92
TT
777 result_list = 0;
778 }
779 else
780 {
ace21957 781 c = lookup_cmd_1 (&p, cmdlist, &result_list, ignore_help_classes);
83d31a92 782 }
c5f0f3d0 783
83d31a92
TT
784 /* Move p up to the next interesting thing. */
785 while (*p == ' ' || *p == '\t')
786 {
787 p++;
788 }
c5f0f3d0 789
83d31a92
TT
790 if (!c)
791 {
792 /* It is an unrecognized command. So there are no
793 possible completions. */
794 list = NULL;
795 }
1427fe5e 796 else if (c == CMD_LIST_AMBIGUOUS)
83d31a92 797 {
6f937416 798 const char *q;
83d31a92
TT
799
800 /* lookup_cmd_1 advances p up to the first ambiguous thing, but
801 doesn't advance over that thing itself. Do so now. */
802 q = p;
803 while (*q && (isalnum (*q) || *q == '-' || *q == '_'))
804 ++q;
805 if (q != tmp_command + point)
c5f0f3d0 806 {
83d31a92
TT
807 /* There is something beyond the ambiguous
808 command, so there are no possible completions. For
809 example, "info t " or "info t foo" does not complete
810 to anything, because "info t" can be "info target" or
811 "info terminal". */
c5f0f3d0
FN
812 list = NULL;
813 }
83d31a92 814 else
c5f0f3d0 815 {
83d31a92
TT
816 /* We're trying to complete on the command which was ambiguous.
817 This we can deal with. */
818 if (result_list)
c5f0f3d0 819 {
67c296a2
PM
820 if (reason != handle_brkchars)
821 list = complete_on_cmdlist (*result_list->prefixlist, p,
ace21957 822 word, ignore_help_classes);
c5f0f3d0
FN
823 }
824 else
825 {
67c296a2 826 if (reason != handle_brkchars)
ace21957
MF
827 list = complete_on_cmdlist (cmdlist, p, word,
828 ignore_help_classes);
c5f0f3d0 829 }
489f0516 830 /* Ensure that readline does the right thing with respect to
83d31a92 831 inserting quotes. */
67cb5b2d
PA
832 set_rl_completer_word_break_characters
833 (gdb_completer_command_word_break_characters);
c5f0f3d0 834 }
83d31a92
TT
835 }
836 else
837 {
838 /* We've recognized a full command. */
839
840 if (p == tmp_command + point)
c5f0f3d0 841 {
aff410f1
MS
842 /* There is no non-whitespace in the line beyond the
843 command. */
c5f0f3d0 844
83d31a92 845 if (p[-1] == ' ' || p[-1] == '\t')
c5f0f3d0 846 {
aff410f1
MS
847 /* The command is followed by whitespace; we need to
848 complete on whatever comes after command. */
83d31a92 849 if (c->prefixlist)
c5f0f3d0 850 {
83d31a92
TT
851 /* It is a prefix command; what comes after it is
852 a subcommand (e.g. "info "). */
67c296a2 853 if (reason != handle_brkchars)
ace21957
MF
854 list = complete_on_cmdlist (*c->prefixlist, p, word,
855 ignore_help_classes);
c5f0f3d0 856
489f0516 857 /* Ensure that readline does the right thing
9c3f90bd 858 with respect to inserting quotes. */
67cb5b2d
PA
859 set_rl_completer_word_break_characters
860 (gdb_completer_command_word_break_characters);
c5f0f3d0 861 }
67c296a2 862 else if (reason == handle_help)
14032a66 863 list = NULL;
c5f0f3d0
FN
864 else if (c->enums)
865 {
67c296a2
PM
866 if (reason != handle_brkchars)
867 list = complete_on_enum (c->enums, p, word);
67cb5b2d
PA
868 set_rl_completer_word_break_characters
869 (gdb_completer_command_word_break_characters);
c5f0f3d0
FN
870 }
871 else
872 {
83d31a92
TT
873 /* It is a normal command; what comes after it is
874 completed by the command's completer function. */
c5f0f3d0 875 if (c->completer == filename_completer)
7830cf6f 876 {
83d31a92
TT
877 /* Many commands which want to complete on
878 file names accept several file names, as
879 in "run foo bar >>baz". So we don't want
880 to complete the entire text after the
881 command, just the last word. To this
882 end, we need to find the beginning of the
883 file name by starting at `word' and going
884 backwards. */
7830cf6f
EZ
885 for (p = word;
886 p > tmp_command
887 && strchr (gdb_completer_file_name_break_characters, p[-1]) == NULL;
888 p--)
889 ;
67cb5b2d
PA
890 set_rl_completer_word_break_characters
891 (gdb_completer_file_name_break_characters);
7830cf6f 892 }
7d793aa9
SDJ
893 if (reason == handle_brkchars
894 && c->completer_handle_brkchars != NULL)
895 (*c->completer_handle_brkchars) (c, p, word);
2d9c5cff 896 if (reason != handle_brkchars && c->completer != NULL)
67c296a2 897 list = (*c->completer) (c, p, word);
c5f0f3d0
FN
898 }
899 }
83d31a92
TT
900 else
901 {
902 /* The command is not followed by whitespace; we need to
aff410f1 903 complete on the command itself, e.g. "p" which is a
83d31a92
TT
904 command itself but also can complete to "print", "ptype"
905 etc. */
6f937416 906 const char *q;
83d31a92
TT
907
908 /* Find the command we are completing on. */
909 q = p;
910 while (q > tmp_command)
911 {
912 if (isalnum (q[-1]) || q[-1] == '-' || q[-1] == '_')
913 --q;
914 else
915 break;
916 }
917
67c296a2 918 if (reason != handle_brkchars)
ace21957
MF
919 list = complete_on_cmdlist (result_list, q, word,
920 ignore_help_classes);
83d31a92 921
489f0516 922 /* Ensure that readline does the right thing
9c3f90bd 923 with respect to inserting quotes. */
67cb5b2d
PA
924 set_rl_completer_word_break_characters
925 (gdb_completer_command_word_break_characters);
83d31a92
TT
926 }
927 }
67c296a2 928 else if (reason == handle_help)
14032a66 929 list = NULL;
83d31a92
TT
930 else
931 {
932 /* There is non-whitespace beyond the command. */
933
934 if (c->prefixlist && !c->allow_unknown)
935 {
936 /* It is an unrecognized subcommand of a prefix command,
937 e.g. "info adsfkdj". */
938 list = NULL;
939 }
940 else if (c->enums)
941 {
67c296a2
PM
942 if (reason != handle_brkchars)
943 list = complete_on_enum (c->enums, p, word);
83d31a92
TT
944 }
945 else
946 {
947 /* It is a normal command. */
948 if (c->completer == filename_completer)
949 {
950 /* See the commentary above about the specifics
951 of file-name completion. */
952 for (p = word;
953 p > tmp_command
aff410f1
MS
954 && strchr (gdb_completer_file_name_break_characters,
955 p[-1]) == NULL;
83d31a92
TT
956 p--)
957 ;
67cb5b2d
PA
958 set_rl_completer_word_break_characters
959 (gdb_completer_file_name_break_characters);
83d31a92 960 }
7d793aa9
SDJ
961 if (reason == handle_brkchars
962 && c->completer_handle_brkchars != NULL)
963 (*c->completer_handle_brkchars) (c, p, word);
2d9c5cff 964 if (reason != handle_brkchars && c->completer != NULL)
67c296a2 965 list = (*c->completer) (c, p, word);
83d31a92
TT
966 }
967 }
968 }
969
970 return list;
971}
ef0b411a
GB
972
973/* See completer.h. */
974
975int max_completions = 200;
976
977/* See completer.h. */
978
979completion_tracker_t
980new_completion_tracker (void)
981{
982 if (max_completions <= 0)
983 return NULL;
984
985 return htab_create_alloc (max_completions,
986 htab_hash_string, (htab_eq) streq,
987 NULL, xcalloc, xfree);
988}
989
990/* Cleanup routine to free a completion tracker and reset the pointer
991 to NULL. */
992
993static void
994free_completion_tracker (void *p)
995{
9a3c8263 996 completion_tracker_t *tracker_ptr = (completion_tracker_t *) p;
ef0b411a
GB
997
998 htab_delete (*tracker_ptr);
999 *tracker_ptr = NULL;
1000}
1001
1002/* See completer.h. */
1003
1004struct cleanup *
1005make_cleanup_free_completion_tracker (completion_tracker_t *tracker_ptr)
1006{
1007 if (*tracker_ptr == NULL)
1008 return make_cleanup (null_cleanup, NULL);
1009
1010 return make_cleanup (free_completion_tracker, tracker_ptr);
1011}
1012
1013/* See completer.h. */
1014
1015enum maybe_add_completion_enum
1016maybe_add_completion (completion_tracker_t tracker, char *name)
1017{
1018 void **slot;
1019
1020 if (max_completions < 0)
1021 return MAYBE_ADD_COMPLETION_OK;
1022 if (max_completions == 0)
1023 return MAYBE_ADD_COMPLETION_MAX_REACHED;
1024
1025 gdb_assert (tracker != NULL);
1026
1027 if (htab_elements (tracker) >= max_completions)
1028 return MAYBE_ADD_COMPLETION_MAX_REACHED;
1029
1030 slot = htab_find_slot (tracker, name, INSERT);
1031
1032 if (*slot != HTAB_EMPTY_ENTRY)
1033 return MAYBE_ADD_COMPLETION_DUPLICATE;
1034
1035 *slot = name;
1036
1037 return (htab_elements (tracker) < max_completions
1038 ? MAYBE_ADD_COMPLETION_OK
1039 : MAYBE_ADD_COMPLETION_OK_MAX_REACHED);
1040}
1041
1042void
1043throw_max_completions_reached_error (void)
1044{
1045 throw_error (MAX_COMPLETIONS_REACHED_ERROR, _("Max completions reached."));
1046}
1047
1048/* Generate completions all at once. Returns a vector of unique strings
1049 allocated with xmalloc. Returns NULL if there are no completions
1050 or if max_completions is 0. If max_completions is non-negative, this will
9a7e538e 1051 return at most max_completions strings.
83d31a92 1052
67c296a2
PM
1053 TEXT is the caller's idea of the "word" we are looking at.
1054
aff410f1
MS
1055 LINE_BUFFER is available to be looked at; it contains the entire
1056 text of the line.
67c296a2
PM
1057
1058 POINT is the offset in that line of the cursor. You
1059 should pretend that the line ends at POINT. */
14032a66 1060
49c4e619 1061VEC (char_ptr) *
1834676b 1062complete_line (const char *text, const char *line_buffer, int point)
14032a66 1063{
ef0b411a
GB
1064 VEC (char_ptr) *list;
1065 VEC (char_ptr) *result = NULL;
1066 struct cleanup *cleanups;
1067 completion_tracker_t tracker;
1068 char *candidate;
1069 int ix, max_reached;
1070
1071 if (max_completions == 0)
1072 return NULL;
1073 list = complete_line_internal (text, line_buffer, point,
1074 handle_completions);
1075 if (max_completions < 0)
1076 return list;
1077
1078 tracker = new_completion_tracker ();
1079 cleanups = make_cleanup_free_completion_tracker (&tracker);
1080 make_cleanup_free_char_ptr_vec (list);
1081
1082 /* Do a final test for too many completions. Individual completers may
1083 do some of this, but are not required to. Duplicates are also removed
1084 here. Otherwise the user is left scratching his/her head: readline and
1085 complete_command will remove duplicates, and if removal of duplicates
1086 there brings the total under max_completions the user may think gdb quit
1087 searching too early. */
1088
1089 for (ix = 0, max_reached = 0;
1090 !max_reached && VEC_iterate (char_ptr, list, ix, candidate);
1091 ++ix)
1092 {
1093 enum maybe_add_completion_enum add_status;
1094
1095 add_status = maybe_add_completion (tracker, candidate);
1096
1097 switch (add_status)
1098 {
1099 case MAYBE_ADD_COMPLETION_OK:
1100 VEC_safe_push (char_ptr, result, xstrdup (candidate));
1101 break;
1102 case MAYBE_ADD_COMPLETION_OK_MAX_REACHED:
1103 VEC_safe_push (char_ptr, result, xstrdup (candidate));
1104 max_reached = 1;
1105 break;
1106 case MAYBE_ADD_COMPLETION_MAX_REACHED:
1107 gdb_assert_not_reached ("more than max completions reached");
1108 case MAYBE_ADD_COMPLETION_DUPLICATE:
1109 break;
1110 }
1111 }
1112
1113 do_cleanups (cleanups);
1114
1115 return result;
14032a66
TT
1116}
1117
1118/* Complete on command names. Used by "help". */
49c4e619 1119VEC (char_ptr) *
aff410f1 1120command_completer (struct cmd_list_element *ignore,
6f937416 1121 const char *text, const char *word)
14032a66 1122{
aff410f1
MS
1123 return complete_line_internal (word, text,
1124 strlen (text), handle_help);
67c296a2
PM
1125}
1126
de0bea00
MF
1127/* Complete on signals. */
1128
1129VEC (char_ptr) *
1130signal_completer (struct cmd_list_element *ignore,
6f937416 1131 const char *text, const char *word)
de0bea00 1132{
de0bea00
MF
1133 VEC (char_ptr) *return_val = NULL;
1134 size_t len = strlen (word);
570dc176 1135 int signum;
de0bea00
MF
1136 const char *signame;
1137
1138 for (signum = GDB_SIGNAL_FIRST; signum != GDB_SIGNAL_LAST; ++signum)
1139 {
1140 /* Can't handle this, so skip it. */
1141 if (signum == GDB_SIGNAL_0)
1142 continue;
1143
570dc176 1144 signame = gdb_signal_to_name ((enum gdb_signal) signum);
de0bea00
MF
1145
1146 /* Ignore the unknown signal case. */
1147 if (!signame || strcmp (signame, "?") == 0)
1148 continue;
1149
1150 if (strncasecmp (signame, word, len) == 0)
1151 VEC_safe_push (char_ptr, return_val, xstrdup (signame));
1152 }
1153
1154 return return_val;
1155}
1156
51f0e40d
AB
1157/* Bit-flags for selecting what the register and/or register-group
1158 completer should complete on. */
71c24708 1159
8d297bbf 1160enum reg_completer_target
51f0e40d
AB
1161 {
1162 complete_register_names = 0x1,
1163 complete_reggroup_names = 0x2
1164 };
8d297bbf 1165DEF_ENUM_FLAGS_TYPE (enum reg_completer_target, reg_completer_targets);
51f0e40d
AB
1166
1167/* Complete register names and/or reggroup names based on the value passed
1168 in TARGETS. At least one bit in TARGETS must be set. */
1169
1170static VEC (char_ptr) *
1171reg_or_group_completer_1 (struct cmd_list_element *ignore,
1172 const char *text, const char *word,
8d297bbf 1173 reg_completer_targets targets)
71c24708
AA
1174{
1175 VEC (char_ptr) *result = NULL;
1176 size_t len = strlen (word);
1177 struct gdbarch *gdbarch;
71c24708 1178 const char *name;
71c24708 1179
51f0e40d
AB
1180 gdb_assert ((targets & (complete_register_names
1181 | complete_reggroup_names)) != 0);
1182 gdbarch = get_current_arch ();
71c24708 1183
51f0e40d 1184 if ((targets & complete_register_names) != 0)
71c24708 1185 {
51f0e40d
AB
1186 int i;
1187
1188 for (i = 0;
1189 (name = user_reg_map_regnum_to_name (gdbarch, i)) != NULL;
1190 i++)
1191 {
1192 if (*name != '\0' && strncmp (word, name, len) == 0)
1193 VEC_safe_push (char_ptr, result, xstrdup (name));
1194 }
71c24708
AA
1195 }
1196
51f0e40d 1197 if ((targets & complete_reggroup_names) != 0)
71c24708 1198 {
51f0e40d
AB
1199 struct reggroup *group;
1200
1201 for (group = reggroup_next (gdbarch, NULL);
1202 group != NULL;
1203 group = reggroup_next (gdbarch, group))
1204 {
1205 name = reggroup_name (group);
1206 if (strncmp (word, name, len) == 0)
1207 VEC_safe_push (char_ptr, result, xstrdup (name));
1208 }
71c24708
AA
1209 }
1210
1211 return result;
1212}
1213
51f0e40d
AB
1214/* Perform completion on register and reggroup names. */
1215
1216VEC (char_ptr) *
1217reg_or_group_completer (struct cmd_list_element *ignore,
1218 const char *text, const char *word)
1219{
1220 return reg_or_group_completer_1 (ignore, text, word,
1221 (complete_register_names
1222 | complete_reggroup_names));
1223}
1224
1225/* Perform completion on reggroup names. */
1226
1227VEC (char_ptr) *
1228reggroup_completer (struct cmd_list_element *ignore,
1229 const char *text, const char *word)
1230{
1231 return reg_or_group_completer_1 (ignore, text, word,
1232 complete_reggroup_names);
1233}
71c24708 1234
67c296a2
PM
1235/* Get the list of chars that are considered as word breaks
1236 for the current command. */
1237
1238char *
1239gdb_completion_word_break_characters (void)
1240{
49c4e619 1241 VEC (char_ptr) *list;
c5504eaf 1242
67c296a2
PM
1243 list = complete_line_internal (rl_line_buffer, rl_line_buffer, rl_point,
1244 handle_brkchars);
1245 gdb_assert (list == NULL);
1246 return rl_completer_word_break_characters;
14032a66
TT
1247}
1248
aff410f1
MS
1249/* Generate completions one by one for the completer. Each time we
1250 are called return another potential completion to the caller.
1251 line_completion just completes on commands or passes the buck to
1252 the command's completer function, the stuff specific to symbol
1253 completion is in make_symbol_completion_list.
83d31a92
TT
1254
1255 TEXT is the caller's idea of the "word" we are looking at.
1256
aff410f1
MS
1257 MATCHES is the number of matches that have currently been collected
1258 from calling this completion function. When zero, then we need to
1259 initialize, otherwise the initialization has already taken place
1260 and we can just return the next potential completion string.
83d31a92 1261
aff410f1
MS
1262 LINE_BUFFER is available to be looked at; it contains the entire
1263 text of the line. POINT is the offset in that line of the cursor.
1264 You should pretend that the line ends at POINT.
83d31a92 1265
aff410f1
MS
1266 Returns NULL if there are no more completions, else a pointer to a
1267 string which is a possible completion, it is the caller's
1268 responsibility to free the string. */
83d31a92 1269
38017ce8 1270static char *
9c3f90bd
MS
1271line_completion_function (const char *text, int matches,
1272 char *line_buffer, int point)
83d31a92 1273{
49c4e619 1274 static VEC (char_ptr) *list = NULL; /* Cache of completions. */
9c3f90bd 1275 static int index; /* Next cached completion. */
83d31a92
TT
1276 char *output = NULL;
1277
1278 if (matches == 0)
1279 {
aff410f1
MS
1280 /* The caller is beginning to accumulate a new set of
1281 completions, so we need to find all of them now, and cache
1282 them for returning one at a time on future calls. */
83d31a92
TT
1283
1284 if (list)
1285 {
aff410f1
MS
1286 /* Free the storage used by LIST, but not by the strings
1287 inside. This is because rl_complete_internal () frees
1288 the strings. As complete_line may abort by calling
1289 `error' clear LIST now. */
49c4e619 1290 VEC_free (char_ptr, list);
c5f0f3d0 1291 }
83d31a92
TT
1292 index = 0;
1293 list = complete_line (text, line_buffer, point);
c5f0f3d0
FN
1294 }
1295
aff410f1 1296 /* If we found a list of potential completions during initialization
49c4e619
TT
1297 then dole them out one at a time. After returning the last one,
1298 return NULL (and continue to do so) each time we are called after
1299 that, until a new list is available. */
c5f0f3d0
FN
1300
1301 if (list)
1302 {
49c4e619 1303 if (index < VEC_length (char_ptr, list))
c5f0f3d0 1304 {
49c4e619 1305 output = VEC_index (char_ptr, list, index);
c5f0f3d0
FN
1306 index++;
1307 }
1308 }
1309
1310#if 0
1311 /* Can't do this because readline hasn't yet checked the word breaks
1312 for figuring out whether to insert a quote. */
1313 if (output == NULL)
aff410f1
MS
1314 /* Make sure the word break characters are set back to normal for
1315 the next time that readline tries to complete something. */
c5f0f3d0 1316 rl_completer_word_break_characters =
51065942 1317 current_language->la_word_break_characters();
c5f0f3d0
FN
1318#endif
1319
1320 return (output);
1321}
4e87b832
KD
1322
1323/* Skip over the possibly quoted word STR (as defined by the quote
b021a221
MS
1324 characters QUOTECHARS and the word break characters BREAKCHARS).
1325 Returns pointer to the location after the "word". If either
1326 QUOTECHARS or BREAKCHARS is NULL, use the same values used by the
1327 completer. */
c5f0f3d0 1328
d7561cbb
KS
1329const char *
1330skip_quoted_chars (const char *str, const char *quotechars,
1331 const char *breakchars)
c5f0f3d0
FN
1332{
1333 char quote_char = '\0';
d7561cbb 1334 const char *scan;
c5f0f3d0 1335
4e87b832
KD
1336 if (quotechars == NULL)
1337 quotechars = gdb_completer_quote_characters;
1338
1339 if (breakchars == NULL)
51065942 1340 breakchars = current_language->la_word_break_characters();
4e87b832 1341
c5f0f3d0
FN
1342 for (scan = str; *scan != '\0'; scan++)
1343 {
1344 if (quote_char != '\0')
1345 {
9c3f90bd 1346 /* Ignore everything until the matching close quote char. */
c5f0f3d0
FN
1347 if (*scan == quote_char)
1348 {
9c3f90bd 1349 /* Found matching close quote. */
c5f0f3d0
FN
1350 scan++;
1351 break;
1352 }
1353 }
4e87b832 1354 else if (strchr (quotechars, *scan))
c5f0f3d0 1355 {
aff410f1 1356 /* Found start of a quoted string. */
c5f0f3d0
FN
1357 quote_char = *scan;
1358 }
4e87b832 1359 else if (strchr (breakchars, *scan))
c5f0f3d0
FN
1360 {
1361 break;
1362 }
1363 }
4e87b832 1364
c5f0f3d0
FN
1365 return (scan);
1366}
1367
4e87b832
KD
1368/* Skip over the possibly quoted word STR (as defined by the quote
1369 characters and word break characters used by the completer).
9c3f90bd 1370 Returns pointer to the location after the "word". */
4e87b832 1371
d7561cbb
KS
1372const char *
1373skip_quoted (const char *str)
4e87b832
KD
1374{
1375 return skip_quoted_chars (str, NULL, NULL);
1376}
ef0b411a
GB
1377
1378/* Return a message indicating that the maximum number of completions
1379 has been reached and that there may be more. */
1380
1381const char *
1382get_max_completions_reached_message (void)
1383{
1384 return _("*** List may be truncated, max-completions reached. ***");
1385}
82083d6d
DE
1386\f
1387/* GDB replacement for rl_display_match_list.
1388 Readline doesn't provide a clean interface for TUI(curses).
1389 A hack previously used was to send readline's rl_outstream through a pipe
1390 and read it from the event loop. Bleah. IWBN if readline abstracted
1391 away all the necessary bits, and this is what this code does. It
1392 replicates the parts of readline we need and then adds an abstraction
1393 layer, currently implemented as struct match_list_displayer, so that both
1394 CLI and TUI can use it. We copy all this readline code to minimize
1395 GDB-specific mods to readline. Once this code performs as desired then
1396 we can submit it to the readline maintainers.
1397
1398 N.B. A lot of the code is the way it is in order to minimize differences
1399 from readline's copy. */
1400
1401/* Not supported here. */
1402#undef VISIBLE_STATS
1403
1404#if defined (HANDLE_MULTIBYTE)
1405#define MB_INVALIDCH(x) ((x) == (size_t)-1 || (x) == (size_t)-2)
1406#define MB_NULLWCH(x) ((x) == 0)
1407#endif
1408
1409#define ELLIPSIS_LEN 3
1410
1411/* gdb version of readline/complete.c:get_y_or_n.
1412 'y' -> returns 1, and 'n' -> returns 0.
1413 Also supported: space == 'y', RUBOUT == 'n', ctrl-g == start over.
1414 If FOR_PAGER is non-zero, then also supported are:
1415 NEWLINE or RETURN -> returns 2, and 'q' -> returns 0. */
1416
1417static int
1418gdb_get_y_or_n (int for_pager, const struct match_list_displayer *displayer)
1419{
1420 int c;
1421
1422 for (;;)
1423 {
1424 RL_SETSTATE (RL_STATE_MOREINPUT);
1425 c = displayer->read_key (displayer);
1426 RL_UNSETSTATE (RL_STATE_MOREINPUT);
1427
1428 if (c == 'y' || c == 'Y' || c == ' ')
1429 return 1;
1430 if (c == 'n' || c == 'N' || c == RUBOUT)
1431 return 0;
1432 if (c == ABORT_CHAR || c < 0)
1433 {
1434 /* Readline doesn't erase_entire_line here, but without it the
1435 --More-- prompt isn't erased and neither is the text entered
1436 thus far redisplayed. */
1437 displayer->erase_entire_line (displayer);
1438 /* Note: The arguments to rl_abort are ignored. */
1439 rl_abort (0, 0);
1440 }
1441 if (for_pager && (c == NEWLINE || c == RETURN))
1442 return 2;
1443 if (for_pager && (c == 'q' || c == 'Q'))
1444 return 0;
1445 displayer->beep (displayer);
1446 }
1447}
1448
1449/* Pager function for tab-completion.
1450 This is based on readline/complete.c:_rl_internal_pager.
1451 LINES is the number of lines of output displayed thus far.
1452 Returns:
1453 -1 -> user pressed 'n' or equivalent,
1454 0 -> user pressed 'y' or equivalent,
1455 N -> user pressed NEWLINE or equivalent and N is LINES - 1. */
1456
1457static int
1458gdb_display_match_list_pager (int lines,
1459 const struct match_list_displayer *displayer)
1460{
1461 int i;
1462
1463 displayer->puts (displayer, "--More--");
1464 displayer->flush (displayer);
1465 i = gdb_get_y_or_n (1, displayer);
1466 displayer->erase_entire_line (displayer);
1467 if (i == 0)
1468 return -1;
1469 else if (i == 2)
1470 return (lines - 1);
1471 else
1472 return 0;
1473}
1474
1475/* Return non-zero if FILENAME is a directory.
1476 Based on readline/complete.c:path_isdir. */
1477
1478static int
1479gdb_path_isdir (const char *filename)
1480{
1481 struct stat finfo;
1482
1483 return (stat (filename, &finfo) == 0 && S_ISDIR (finfo.st_mode));
1484}
1485
1486/* Return the portion of PATHNAME that should be output when listing
1487 possible completions. If we are hacking filename completion, we
1488 are only interested in the basename, the portion following the
1489 final slash. Otherwise, we return what we were passed. Since
1490 printing empty strings is not very informative, if we're doing
1491 filename completion, and the basename is the empty string, we look
1492 for the previous slash and return the portion following that. If
1493 there's no previous slash, we just return what we were passed.
1494
1495 Based on readline/complete.c:printable_part. */
1496
1497static char *
1498gdb_printable_part (char *pathname)
1499{
1500 char *temp, *x;
1501
1502 if (rl_filename_completion_desired == 0) /* don't need to do anything */
1503 return (pathname);
1504
1505 temp = strrchr (pathname, '/');
5836a818 1506#if defined (__MSDOS__)
82083d6d
DE
1507 if (temp == 0 && ISALPHA ((unsigned char)pathname[0]) && pathname[1] == ':')
1508 temp = pathname + 1;
1509#endif
1510
1511 if (temp == 0 || *temp == '\0')
1512 return (pathname);
1513 /* If the basename is NULL, we might have a pathname like '/usr/src/'.
1514 Look for a previous slash and, if one is found, return the portion
1515 following that slash. If there's no previous slash, just return the
1516 pathname we were passed. */
1517 else if (temp[1] == '\0')
1518 {
1519 for (x = temp - 1; x > pathname; x--)
1520 if (*x == '/')
1521 break;
1522 return ((*x == '/') ? x + 1 : pathname);
1523 }
1524 else
1525 return ++temp;
1526}
1527
1528/* Compute width of STRING when displayed on screen by print_filename.
1529 Based on readline/complete.c:fnwidth. */
1530
1531static int
1532gdb_fnwidth (const char *string)
1533{
1534 int width, pos;
1535#if defined (HANDLE_MULTIBYTE)
1536 mbstate_t ps;
1537 int left, w;
1538 size_t clen;
1539 wchar_t wc;
1540
1541 left = strlen (string) + 1;
1542 memset (&ps, 0, sizeof (mbstate_t));
1543#endif
1544
1545 width = pos = 0;
1546 while (string[pos])
1547 {
1548 if (CTRL_CHAR (string[pos]) || string[pos] == RUBOUT)
1549 {
1550 width += 2;
1551 pos++;
1552 }
1553 else
1554 {
1555#if defined (HANDLE_MULTIBYTE)
1556 clen = mbrtowc (&wc, string + pos, left - pos, &ps);
1557 if (MB_INVALIDCH (clen))
1558 {
1559 width++;
1560 pos++;
1561 memset (&ps, 0, sizeof (mbstate_t));
1562 }
1563 else if (MB_NULLWCH (clen))
1564 break;
1565 else
1566 {
1567 pos += clen;
1568 w = wcwidth (wc);
1569 width += (w >= 0) ? w : 1;
1570 }
1571#else
1572 width++;
1573 pos++;
1574#endif
1575 }
1576 }
1577
1578 return width;
1579}
1580
1581/* Print TO_PRINT, one matching completion.
1582 PREFIX_BYTES is number of common prefix bytes.
1583 Based on readline/complete.c:fnprint. */
1584
1585static int
1586gdb_fnprint (const char *to_print, int prefix_bytes,
1587 const struct match_list_displayer *displayer)
1588{
1589 int printed_len, w;
1590 const char *s;
1591#if defined (HANDLE_MULTIBYTE)
1592 mbstate_t ps;
1593 const char *end;
1594 size_t tlen;
1595 int width;
1596 wchar_t wc;
1597
1598 end = to_print + strlen (to_print) + 1;
1599 memset (&ps, 0, sizeof (mbstate_t));
1600#endif
1601
1602 printed_len = 0;
1603
1604 /* Don't print only the ellipsis if the common prefix is one of the
1605 possible completions */
1606 if (to_print[prefix_bytes] == '\0')
1607 prefix_bytes = 0;
1608
1609 if (prefix_bytes)
1610 {
1611 char ellipsis;
1612
1613 ellipsis = (to_print[prefix_bytes] == '.') ? '_' : '.';
1614 for (w = 0; w < ELLIPSIS_LEN; w++)
1615 displayer->putch (displayer, ellipsis);
1616 printed_len = ELLIPSIS_LEN;
1617 }
1618
1619 s = to_print + prefix_bytes;
1620 while (*s)
1621 {
1622 if (CTRL_CHAR (*s))
1623 {
1624 displayer->putch (displayer, '^');
1625 displayer->putch (displayer, UNCTRL (*s));
1626 printed_len += 2;
1627 s++;
1628#if defined (HANDLE_MULTIBYTE)
1629 memset (&ps, 0, sizeof (mbstate_t));
1630#endif
1631 }
1632 else if (*s == RUBOUT)
1633 {
1634 displayer->putch (displayer, '^');
1635 displayer->putch (displayer, '?');
1636 printed_len += 2;
1637 s++;
1638#if defined (HANDLE_MULTIBYTE)
1639 memset (&ps, 0, sizeof (mbstate_t));
1640#endif
1641 }
1642 else
1643 {
1644#if defined (HANDLE_MULTIBYTE)
1645 tlen = mbrtowc (&wc, s, end - s, &ps);
1646 if (MB_INVALIDCH (tlen))
1647 {
1648 tlen = 1;
1649 width = 1;
1650 memset (&ps, 0, sizeof (mbstate_t));
1651 }
1652 else if (MB_NULLWCH (tlen))
1653 break;
1654 else
1655 {
1656 w = wcwidth (wc);
1657 width = (w >= 0) ? w : 1;
1658 }
1659 for (w = 0; w < tlen; ++w)
1660 displayer->putch (displayer, s[w]);
1661 s += tlen;
1662 printed_len += width;
1663#else
1664 displayer->putch (displayer, *s);
1665 s++;
1666 printed_len++;
1667#endif
1668 }
1669 }
1670
1671 return printed_len;
1672}
1673
1674/* Output TO_PRINT to rl_outstream. If VISIBLE_STATS is defined and we
1675 are using it, check for and output a single character for `special'
1676 filenames. Return the number of characters we output.
1677 Based on readline/complete.c:print_filename. */
1678
1679static int
1680gdb_print_filename (char *to_print, char *full_pathname, int prefix_bytes,
1681 const struct match_list_displayer *displayer)
1682{
1683 int printed_len, extension_char, slen, tlen;
a121b7c1
PA
1684 char *s, c, *new_full_pathname;
1685 const char *dn;
82083d6d
DE
1686 extern int _rl_complete_mark_directories;
1687
1688 extension_char = 0;
1689 printed_len = gdb_fnprint (to_print, prefix_bytes, displayer);
1690
1691#if defined (VISIBLE_STATS)
1692 if (rl_filename_completion_desired && (rl_visible_stats || _rl_complete_mark_directories))
1693#else
1694 if (rl_filename_completion_desired && _rl_complete_mark_directories)
1695#endif
1696 {
1697 /* If to_print != full_pathname, to_print is the basename of the
1698 path passed. In this case, we try to expand the directory
1699 name before checking for the stat character. */
1700 if (to_print != full_pathname)
1701 {
1702 /* Terminate the directory name. */
1703 c = to_print[-1];
1704 to_print[-1] = '\0';
1705
1706 /* If setting the last slash in full_pathname to a NUL results in
1707 full_pathname being the empty string, we are trying to complete
1708 files in the root directory. If we pass a null string to the
1709 bash directory completion hook, for example, it will expand it
1710 to the current directory. We just want the `/'. */
1711 if (full_pathname == 0 || *full_pathname == 0)
1712 dn = "/";
1713 else if (full_pathname[0] != '/')
1714 dn = full_pathname;
1715 else if (full_pathname[1] == 0)
1716 dn = "//"; /* restore trailing slash to `//' */
1717 else if (full_pathname[1] == '/' && full_pathname[2] == 0)
1718 dn = "/"; /* don't turn /// into // */
1719 else
1720 dn = full_pathname;
1721 s = tilde_expand (dn);
1722 if (rl_directory_completion_hook)
1723 (*rl_directory_completion_hook) (&s);
1724
1725 slen = strlen (s);
1726 tlen = strlen (to_print);
1727 new_full_pathname = (char *)xmalloc (slen + tlen + 2);
1728 strcpy (new_full_pathname, s);
1729 if (s[slen - 1] == '/')
1730 slen--;
1731 else
1732 new_full_pathname[slen] = '/';
1733 new_full_pathname[slen] = '/';
1734 strcpy (new_full_pathname + slen + 1, to_print);
1735
1736#if defined (VISIBLE_STATS)
1737 if (rl_visible_stats)
1738 extension_char = stat_char (new_full_pathname);
1739 else
1740#endif
1741 if (gdb_path_isdir (new_full_pathname))
1742 extension_char = '/';
1743
1744 xfree (new_full_pathname);
1745 to_print[-1] = c;
1746 }
1747 else
1748 {
1749 s = tilde_expand (full_pathname);
1750#if defined (VISIBLE_STATS)
1751 if (rl_visible_stats)
1752 extension_char = stat_char (s);
1753 else
1754#endif
1755 if (gdb_path_isdir (s))
1756 extension_char = '/';
1757 }
1758
1759 xfree (s);
1760 if (extension_char)
1761 {
1762 displayer->putch (displayer, extension_char);
1763 printed_len++;
1764 }
1765 }
1766
1767 return printed_len;
1768}
1769
1770/* GDB version of readline/complete.c:complete_get_screenwidth. */
1771
1772static int
1773gdb_complete_get_screenwidth (const struct match_list_displayer *displayer)
1774{
1775 /* Readline has other stuff here which it's not clear we need. */
1776 return displayer->width;
1777}
1778
56000a98
PA
1779extern int _rl_completion_prefix_display_length;
1780extern int _rl_print_completions_horizontally;
1781
1782EXTERN_C int _rl_qsort_string_compare (const void *, const void *);
1783typedef int QSFUNC (const void *, const void *);
1784
82083d6d 1785/* GDB version of readline/complete.c:rl_display_match_list.
ef0b411a
GB
1786 See gdb_display_match_list for a description of MATCHES, LEN, MAX.
1787 Returns non-zero if all matches are displayed. */
82083d6d 1788
ef0b411a 1789static int
82083d6d
DE
1790gdb_display_match_list_1 (char **matches, int len, int max,
1791 const struct match_list_displayer *displayer)
1792{
1793 int count, limit, printed_len, lines, cols;
1794 int i, j, k, l, common_length, sind;
1795 char *temp, *t;
1796 int page_completions = displayer->height != INT_MAX && pagination_enabled;
82083d6d
DE
1797
1798 /* Find the length of the prefix common to all items: length as displayed
1799 characters (common_length) and as a byte index into the matches (sind) */
1800 common_length = sind = 0;
1801 if (_rl_completion_prefix_display_length > 0)
1802 {
1803 t = gdb_printable_part (matches[0]);
1804 temp = strrchr (t, '/');
1805 common_length = temp ? gdb_fnwidth (temp) : gdb_fnwidth (t);
1806 sind = temp ? strlen (temp) : strlen (t);
1807
1808 if (common_length > _rl_completion_prefix_display_length && common_length > ELLIPSIS_LEN)
1809 max -= common_length - ELLIPSIS_LEN;
1810 else
1811 common_length = sind = 0;
1812 }
1813
1814 /* How many items of MAX length can we fit in the screen window? */
1815 cols = gdb_complete_get_screenwidth (displayer);
1816 max += 2;
1817 limit = cols / max;
1818 if (limit != 1 && (limit * max == cols))
1819 limit--;
1820
1821 /* If cols == 0, limit will end up -1 */
1822 if (cols < displayer->width && limit < 0)
1823 limit = 1;
1824
1825 /* Avoid a possible floating exception. If max > cols,
1826 limit will be 0 and a divide-by-zero fault will result. */
1827 if (limit == 0)
1828 limit = 1;
1829
1830 /* How many iterations of the printing loop? */
1831 count = (len + (limit - 1)) / limit;
1832
1833 /* Watch out for special case. If LEN is less than LIMIT, then
1834 just do the inner printing loop.
1835 0 < len <= limit implies count = 1. */
1836
1837 /* Sort the items if they are not already sorted. */
1838 if (rl_ignore_completion_duplicates == 0 && rl_sort_completion_matches)
1839 qsort (matches + 1, len, sizeof (char *), (QSFUNC *)_rl_qsort_string_compare);
1840
1841 displayer->crlf (displayer);
1842
1843 lines = 0;
1844 if (_rl_print_completions_horizontally == 0)
1845 {
1846 /* Print the sorted items, up-and-down alphabetically, like ls. */
1847 for (i = 1; i <= count; i++)
1848 {
1849 for (j = 0, l = i; j < limit; j++)
1850 {
1851 if (l > len || matches[l] == 0)
1852 break;
1853 else
1854 {
1855 temp = gdb_printable_part (matches[l]);
1856 printed_len = gdb_print_filename (temp, matches[l], sind,
1857 displayer);
1858
1859 if (j + 1 < limit)
1860 for (k = 0; k < max - printed_len; k++)
1861 displayer->putch (displayer, ' ');
1862 }
1863 l += count;
1864 }
1865 displayer->crlf (displayer);
1866 lines++;
1867 if (page_completions && lines >= (displayer->height - 1) && i < count)
1868 {
1869 lines = gdb_display_match_list_pager (lines, displayer);
1870 if (lines < 0)
ef0b411a 1871 return 0;
82083d6d
DE
1872 }
1873 }
1874 }
1875 else
1876 {
1877 /* Print the sorted items, across alphabetically, like ls -x. */
1878 for (i = 1; matches[i]; i++)
1879 {
1880 temp = gdb_printable_part (matches[i]);
1881 printed_len = gdb_print_filename (temp, matches[i], sind, displayer);
1882 /* Have we reached the end of this line? */
1883 if (matches[i+1])
1884 {
1885 if (i && (limit > 1) && (i % limit) == 0)
1886 {
1887 displayer->crlf (displayer);
1888 lines++;
1889 if (page_completions && lines >= displayer->height - 1)
1890 {
1891 lines = gdb_display_match_list_pager (lines, displayer);
1892 if (lines < 0)
ef0b411a 1893 return 0;
82083d6d
DE
1894 }
1895 }
1896 else
1897 for (k = 0; k < max - printed_len; k++)
1898 displayer->putch (displayer, ' ');
1899 }
1900 }
1901 displayer->crlf (displayer);
1902 }
ef0b411a
GB
1903
1904 return 1;
82083d6d
DE
1905}
1906
1907/* Utility for displaying completion list matches, used by both CLI and TUI.
1908
1909 MATCHES is the list of strings, in argv format, LEN is the number of
05cdcf3d
DE
1910 strings in MATCHES, and MAX is the length of the longest string in
1911 MATCHES. */
82083d6d
DE
1912
1913void
1914gdb_display_match_list (char **matches, int len, int max,
1915 const struct match_list_displayer *displayer)
1916{
ef0b411a
GB
1917 /* Readline will never call this if complete_line returned NULL. */
1918 gdb_assert (max_completions != 0);
1919
1920 /* complete_line will never return more than this. */
1921 if (max_completions > 0)
1922 gdb_assert (len <= max_completions);
1923
82083d6d
DE
1924 if (rl_completion_query_items > 0 && len >= rl_completion_query_items)
1925 {
1926 char msg[100];
1927
1928 /* We can't use *query here because they wait for <RET> which is
1929 wrong here. This follows the readline version as closely as possible
1930 for compatibility's sake. See readline/complete.c. */
1931
1932 displayer->crlf (displayer);
1933
1934 xsnprintf (msg, sizeof (msg),
1935 "Display all %d possibilities? (y or n)", len);
1936 displayer->puts (displayer, msg);
1937 displayer->flush (displayer);
1938
1939 if (gdb_get_y_or_n (0, displayer) == 0)
1940 {
1941 displayer->crlf (displayer);
1942 return;
1943 }
1944 }
1945
ef0b411a
GB
1946 if (gdb_display_match_list_1 (matches, len, max, displayer))
1947 {
1948 /* Note: MAX_COMPLETIONS may be -1 or zero, but LEN is always > 0. */
1949 if (len == max_completions)
1950 {
1951 /* The maximum number of completions has been reached. Warn the user
1952 that there may be more. */
1953 const char *message = get_max_completions_reached_message ();
1954
1955 displayer->puts (displayer, message);
1956 displayer->crlf (displayer);
1957 }
1958 }
1959}
1960\f
1961extern initialize_file_ftype _initialize_completer; /* -Wmissing-prototypes */
1962
1963void
1964_initialize_completer (void)
1965{
1966 add_setshow_zuinteger_unlimited_cmd ("max-completions", no_class,
1967 &max_completions, _("\
1968Set maximum number of completion candidates."), _("\
1969Show maximum number of completion candidates."), _("\
1970Use this to limit the number of candidates considered\n\
1971during completion. Specifying \"unlimited\" or -1\n\
1972disables limiting. Note that setting either no limit or\n\
1973a very large limit can make completion slow."),
1974 NULL, NULL, &setlist, &showlist);
82083d6d 1975}
This page took 1.189691 seconds and 4 git commands to generate.