]>
Commit | Line | Data |
---|---|---|
c5f0f3d0 | 1 | /* Line completion stuff for GDB, the GNU debugger. |
0fb0cc75 | 2 | Copyright (C) 2000, 2001, 2007, 2008, 2009 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" |
67c296a2 | 25 | #include "gdb_assert.h" |
c5f0f3d0 | 26 | |
18a642a1 AC |
27 | #include "cli/cli-decode.h" |
28 | ||
03717487 MS |
29 | /* FIXME: This is needed because of lookup_cmd_1 (). We should be |
30 | calling a hook instead so we eliminate the CLI dependency. */ | |
c5f0f3d0 FN |
31 | #include "gdbcmd.h" |
32 | ||
c94fdfd0 | 33 | /* Needed for rl_completer_word_break_characters() and for |
38017ce8 | 34 | rl_filename_completion_function. */ |
dbda9972 | 35 | #include "readline/readline.h" |
c5f0f3d0 FN |
36 | |
37 | /* readline defines this. */ | |
38 | #undef savestring | |
39 | ||
40 | #include "completer.h" | |
41 | ||
9c3f90bd | 42 | /* Prototypes for local functions. */ |
38017ce8 | 43 | static |
03717487 MS |
44 | char *line_completion_function (const char *text, int matches, |
45 | char *line_buffer, | |
d75b5104 | 46 | int point); |
c5f0f3d0 FN |
47 | |
48 | /* readline uses the word breaks for two things: | |
49 | (1) In figuring out where to point the TEXT parameter to the | |
50 | rl_completion_entry_function. Since we don't use TEXT for much, | |
51 | it doesn't matter a lot what the word breaks are for this purpose, but | |
52 | it does affect how much stuff M-? lists. | |
53 | (2) If one of the matches contains a word break character, readline | |
54 | will quote it. That's why we switch between | |
51065942 | 55 | current_language->la_word_break_characters() and |
c5f0f3d0 FN |
56 | gdb_completer_command_word_break_characters. I'm not sure when |
57 | we need this behavior (perhaps for funky characters in C++ symbols?). */ | |
58 | ||
59 | /* Variables which are necessary for fancy command line editing. */ | |
c5f0f3d0 FN |
60 | |
61 | /* When completing on command names, we remove '-' from the list of | |
62 | word break characters, since we use it in command names. If the | |
63 | readline library sees one in any of the current completion strings, | |
64 | it thinks that the string needs to be quoted and automatically supplies | |
9c3f90bd | 65 | a leading quote. */ |
c5f0f3d0 FN |
66 | static char *gdb_completer_command_word_break_characters = |
67 | " \t\n!@#$%^&*()+=|~`}{[]\"';:?/>.<,"; | |
68 | ||
69 | /* When completing on file names, we remove from the list of word | |
70 | break characters any characters that are commonly used in file | |
71 | names, such as '-', '+', '~', etc. Otherwise, readline displays | |
72 | incorrect completion candidates. */ | |
c3690141 | 73 | #ifdef HAVE_DOS_BASED_FILE_SYSTEM |
7830cf6f EZ |
74 | /* MS-DOS and MS-Windows use colon as part of the drive spec, and most |
75 | programs support @foo style response files. */ | |
76 | static char *gdb_completer_file_name_break_characters = " \t\n*|\"';?><@"; | |
77 | #else | |
78 | static char *gdb_completer_file_name_break_characters = " \t\n*|\"';:?><"; | |
79 | #endif | |
c5f0f3d0 | 80 | |
c94fdfd0 EZ |
81 | /* These are used when completing on locations, which can mix file |
82 | names and symbol names separated by a colon. */ | |
83 | static char *gdb_completer_loc_break_characters = " \t\n*|\"';:?><,"; | |
84 | ||
c5f0f3d0 FN |
85 | /* Characters that can be used to quote completion strings. Note that we |
86 | can't include '"' because the gdb C parser treats such quoted sequences | |
9c3f90bd | 87 | as strings. */ |
c5f0f3d0 FN |
88 | static char *gdb_completer_quote_characters = "'"; |
89 | \f | |
9c3f90bd | 90 | /* Accessor for some completer data that may interest other files. */ |
c5f0f3d0 | 91 | |
c5f0f3d0 FN |
92 | char * |
93 | get_gdb_completer_quote_characters (void) | |
94 | { | |
95 | return gdb_completer_quote_characters; | |
96 | } | |
97 | ||
d75b5104 EZ |
98 | /* Line completion interface function for readline. */ |
99 | ||
100 | char * | |
38017ce8 | 101 | readline_line_completion_function (const char *text, int matches) |
d75b5104 EZ |
102 | { |
103 | return line_completion_function (text, matches, rl_line_buffer, rl_point); | |
104 | } | |
105 | ||
106 | /* This can be used for functions which don't want to complete on symbols | |
107 | but don't want to complete on anything else either. */ | |
108 | char ** | |
d8906c6f | 109 | noop_completer (struct cmd_list_element *ignore, char *text, char *prefix) |
d75b5104 EZ |
110 | { |
111 | return NULL; | |
112 | } | |
113 | ||
c5f0f3d0 FN |
114 | /* Complete on filenames. */ |
115 | char ** | |
d8906c6f | 116 | filename_completer (struct cmd_list_element *ignore, char *text, char *word) |
c5f0f3d0 | 117 | { |
c5f0f3d0 FN |
118 | int subsequent_name; |
119 | char **return_val; | |
120 | int return_val_used; | |
121 | int return_val_alloced; | |
122 | ||
123 | return_val_used = 0; | |
124 | /* Small for testing. */ | |
125 | return_val_alloced = 1; | |
126 | return_val = (char **) xmalloc (return_val_alloced * sizeof (char *)); | |
127 | ||
128 | subsequent_name = 0; | |
129 | while (1) | |
130 | { | |
1e8189fb | 131 | char *p, *q; |
38017ce8 | 132 | p = rl_filename_completion_function (text, subsequent_name); |
c5f0f3d0 FN |
133 | if (return_val_used >= return_val_alloced) |
134 | { | |
135 | return_val_alloced *= 2; | |
136 | return_val = | |
137 | (char **) xrealloc (return_val, | |
138 | return_val_alloced * sizeof (char *)); | |
139 | } | |
140 | if (p == NULL) | |
141 | { | |
142 | return_val[return_val_used++] = p; | |
143 | break; | |
144 | } | |
145 | /* We need to set subsequent_name to a non-zero value before the | |
146 | continue line below, because otherwise, if the first file seen | |
147 | by GDB is a backup file whose name ends in a `~', we will loop | |
148 | indefinitely. */ | |
149 | subsequent_name = 1; | |
150 | /* Like emacs, don't complete on old versions. Especially useful | |
151 | in the "source" command. */ | |
152 | if (p[strlen (p) - 1] == '~') | |
1e8189fb MS |
153 | { |
154 | xfree (p); | |
155 | continue; | |
156 | } | |
c5f0f3d0 | 157 | |
1e8189fb MS |
158 | if (word == text) |
159 | /* Return exactly p. */ | |
160 | return_val[return_val_used++] = p; | |
161 | else if (word > text) | |
162 | { | |
163 | /* Return some portion of p. */ | |
164 | q = xmalloc (strlen (p) + 5); | |
165 | strcpy (q, p + (word - text)); | |
166 | return_val[return_val_used++] = q; | |
167 | xfree (p); | |
168 | } | |
169 | else | |
170 | { | |
171 | /* Return some of TEXT plus p. */ | |
172 | q = xmalloc (strlen (p) + (text - word) + 5); | |
173 | strncpy (q, word, text - word); | |
174 | q[text - word] = '\0'; | |
175 | strcat (q, p); | |
176 | return_val[return_val_used++] = q; | |
177 | xfree (p); | |
178 | } | |
c5f0f3d0 FN |
179 | } |
180 | #if 0 | |
181 | /* There is no way to do this just long enough to affect quote inserting | |
182 | without also affecting the next completion. This should be fixed in | |
183 | readline. FIXME. */ | |
489f0516 | 184 | /* Ensure that readline does the right thing |
c5f0f3d0 FN |
185 | with respect to inserting quotes. */ |
186 | rl_completer_word_break_characters = ""; | |
187 | #endif | |
188 | return return_val; | |
189 | } | |
190 | ||
c94fdfd0 EZ |
191 | /* Complete on locations, which might be of two possible forms: |
192 | ||
193 | file:line | |
194 | or | |
195 | symbol+offset | |
196 | ||
197 | This is intended to be used in commands that set breakpoints etc. */ | |
198 | char ** | |
d8906c6f | 199 | location_completer (struct cmd_list_element *ignore, char *text, char *word) |
c94fdfd0 EZ |
200 | { |
201 | int n_syms = 0, n_files = 0; | |
202 | char ** fn_list = NULL; | |
203 | char ** list = NULL; | |
204 | char *p; | |
205 | int quote_found = 0; | |
206 | int quoted = *text == '\'' || *text == '"'; | |
207 | int quote_char = '\0'; | |
208 | char *colon = NULL; | |
209 | char *file_to_match = NULL; | |
210 | char *symbol_start = text; | |
211 | char *orig_text = text; | |
212 | size_t text_len; | |
213 | ||
214 | /* Do we have an unquoted colon, as in "break foo.c::bar"? */ | |
215 | for (p = text; *p != '\0'; ++p) | |
216 | { | |
217 | if (*p == '\\' && p[1] == '\'') | |
218 | p++; | |
219 | else if (*p == '\'' || *p == '"') | |
220 | { | |
221 | quote_found = *p; | |
222 | quote_char = *p++; | |
223 | while (*p != '\0' && *p != quote_found) | |
224 | { | |
225 | if (*p == '\\' && p[1] == quote_found) | |
226 | p++; | |
227 | p++; | |
228 | } | |
229 | ||
230 | if (*p == quote_found) | |
231 | quote_found = 0; | |
232 | else | |
9c3f90bd | 233 | break; /* Hit the end of text. */ |
c94fdfd0 EZ |
234 | } |
235 | #if HAVE_DOS_BASED_FILE_SYSTEM | |
236 | /* If we have a DOS-style absolute file name at the beginning of | |
237 | TEXT, and the colon after the drive letter is the only colon | |
238 | we found, pretend the colon is not there. */ | |
239 | else if (p < text + 3 && *p == ':' && p == text + 1 + quoted) | |
240 | ; | |
241 | #endif | |
242 | else if (*p == ':' && !colon) | |
243 | { | |
244 | colon = p; | |
245 | symbol_start = p + 1; | |
246 | } | |
51065942 | 247 | else if (strchr (current_language->la_word_break_characters(), *p)) |
c94fdfd0 EZ |
248 | symbol_start = p + 1; |
249 | } | |
250 | ||
251 | if (quoted) | |
252 | text++; | |
253 | text_len = strlen (text); | |
254 | ||
255 | /* Where is the file name? */ | |
256 | if (colon) | |
257 | { | |
258 | char *s; | |
259 | ||
260 | file_to_match = (char *) xmalloc (colon - text + 1); | |
261 | strncpy (file_to_match, text, colon - text + 1); | |
262 | /* Remove trailing colons and quotes from the file name. */ | |
263 | for (s = file_to_match + (colon - text); | |
264 | s > file_to_match; | |
265 | s--) | |
266 | if (*s == ':' || *s == quote_char) | |
267 | *s = '\0'; | |
268 | } | |
269 | /* If the text includes a colon, they want completion only on a | |
270 | symbol name after the colon. Otherwise, we need to complete on | |
271 | symbols as well as on files. */ | |
272 | if (colon) | |
273 | { | |
274 | list = make_file_symbol_completion_list (symbol_start, word, | |
275 | file_to_match); | |
276 | xfree (file_to_match); | |
277 | } | |
278 | else | |
279 | { | |
280 | list = make_symbol_completion_list (symbol_start, word); | |
281 | /* If text includes characters which cannot appear in a file | |
282 | name, they cannot be asking for completion on files. */ | |
1f20ed91 MS |
283 | if (strcspn (text, |
284 | gdb_completer_file_name_break_characters) == text_len) | |
c94fdfd0 EZ |
285 | fn_list = make_source_files_completion_list (text, text); |
286 | } | |
287 | ||
288 | /* How many completions do we have in both lists? */ | |
289 | if (fn_list) | |
290 | for ( ; fn_list[n_files]; n_files++) | |
291 | ; | |
292 | if (list) | |
293 | for ( ; list[n_syms]; n_syms++) | |
294 | ; | |
295 | ||
296 | /* Make list[] large enough to hold both lists, then catenate | |
297 | fn_list[] onto the end of list[]. */ | |
298 | if (n_syms && n_files) | |
299 | { | |
300 | list = xrealloc (list, (n_syms + n_files + 1) * sizeof (char *)); | |
301 | memcpy (list + n_syms, fn_list, (n_files + 1) * sizeof (char *)); | |
302 | xfree (fn_list); | |
303 | } | |
304 | else if (n_files) | |
305 | { | |
306 | /* If we only have file names as possible completion, we should | |
307 | bring them in sync with what rl_complete expects. The | |
308 | problem is that if the user types "break /foo/b TAB", and the | |
309 | possible completions are "/foo/bar" and "/foo/baz" | |
310 | rl_complete expects us to return "bar" and "baz", without the | |
311 | leading directories, as possible completions, because `word' | |
312 | starts at the "b". But we ignore the value of `word' when we | |
313 | call make_source_files_completion_list above (because that | |
314 | would not DTRT when the completion results in both symbols | |
315 | and file names), so make_source_files_completion_list returns | |
316 | the full "/foo/bar" and "/foo/baz" strings. This produces | |
317 | wrong results when, e.g., there's only one possible | |
318 | completion, because rl_complete will prepend "/foo/" to each | |
319 | candidate completion. The loop below removes that leading | |
320 | part. */ | |
321 | for (n_files = 0; fn_list[n_files]; n_files++) | |
322 | { | |
323 | memmove (fn_list[n_files], fn_list[n_files] + (word - text), | |
324 | strlen (fn_list[n_files]) + 1 - (word - text)); | |
325 | } | |
326 | /* Return just the file-name list as the result. */ | |
327 | list = fn_list; | |
328 | } | |
329 | else if (!n_syms) | |
330 | { | |
331 | /* No completions at all. As the final resort, try completing | |
332 | on the entire text as a symbol. */ | |
333 | list = make_symbol_completion_list (orig_text, word); | |
1f20ed91 | 334 | xfree (fn_list); |
c94fdfd0 | 335 | } |
1f20ed91 MS |
336 | else |
337 | xfree (fn_list); | |
c94fdfd0 EZ |
338 | |
339 | return list; | |
340 | } | |
341 | ||
65d12d83 | 342 | /* Helper for expression_completer which recursively counts the number |
1c71341a | 343 | of named fields and methods in a structure or union type. */ |
65d12d83 TT |
344 | static int |
345 | count_struct_fields (struct type *type) | |
346 | { | |
347 | int i, result = 0; | |
348 | ||
349 | CHECK_TYPEDEF (type); | |
350 | for (i = 0; i < TYPE_NFIELDS (type); ++i) | |
351 | { | |
352 | if (i < TYPE_N_BASECLASSES (type)) | |
353 | result += count_struct_fields (TYPE_BASECLASS (type, i)); | |
354 | else if (TYPE_FIELD_NAME (type, i)) | |
355 | ++result; | |
356 | } | |
1c71341a TT |
357 | |
358 | for (i = TYPE_NFN_FIELDS (type) - 1; i >= 0; --i) | |
359 | { | |
360 | if (TYPE_FN_FIELDLIST_NAME (type, i)) | |
361 | ++result; | |
362 | } | |
363 | ||
65d12d83 TT |
364 | return result; |
365 | } | |
366 | ||
1c71341a TT |
367 | /* Helper for expression_completer which recursively adds field and |
368 | method names from TYPE, a struct or union type, to the array | |
369 | OUTPUT. This function assumes that OUTPUT is correctly-sized. */ | |
65d12d83 TT |
370 | static void |
371 | add_struct_fields (struct type *type, int *nextp, char **output, | |
372 | char *fieldname, int namelen) | |
373 | { | |
374 | int i; | |
b32d97f3 | 375 | int computed_type_name = 0; |
1c71341a | 376 | char *type_name = NULL; |
65d12d83 TT |
377 | |
378 | CHECK_TYPEDEF (type); | |
379 | for (i = 0; i < TYPE_NFIELDS (type); ++i) | |
380 | { | |
381 | if (i < TYPE_N_BASECLASSES (type)) | |
382 | add_struct_fields (TYPE_BASECLASS (type, i), nextp, output, | |
383 | fieldname, namelen); | |
384 | else if (TYPE_FIELD_NAME (type, i) | |
385 | && ! strncmp (TYPE_FIELD_NAME (type, i), fieldname, namelen)) | |
386 | { | |
387 | output[*nextp] = xstrdup (TYPE_FIELD_NAME (type, i)); | |
388 | ++*nextp; | |
389 | } | |
390 | } | |
1c71341a TT |
391 | |
392 | for (i = TYPE_NFN_FIELDS (type) - 1; i >= 0; --i) | |
393 | { | |
394 | char *name = TYPE_FN_FIELDLIST_NAME (type, i); | |
395 | if (name && ! strncmp (name, fieldname, namelen)) | |
396 | { | |
b32d97f3 TT |
397 | if (!computed_type_name) |
398 | { | |
399 | type_name = type_name_no_tag (type); | |
400 | computed_type_name = 1; | |
401 | } | |
1c71341a | 402 | /* Omit constructors from the completion list. */ |
b32d97f3 | 403 | if (type_name && strcmp (type_name, name)) |
1c71341a TT |
404 | { |
405 | output[*nextp] = xstrdup (name); | |
406 | ++*nextp; | |
407 | } | |
408 | } | |
409 | } | |
65d12d83 TT |
410 | } |
411 | ||
412 | /* Complete on expressions. Often this means completing on symbol | |
413 | names, but some language parsers also have support for completing | |
414 | field names. */ | |
415 | char ** | |
d8906c6f | 416 | expression_completer (struct cmd_list_element *ignore, char *text, char *word) |
65d12d83 TT |
417 | { |
418 | struct type *type; | |
37cd5d19 | 419 | char *fieldname, *p; |
65d12d83 TT |
420 | |
421 | /* Perform a tentative parse of the expression, to see whether a | |
422 | field completion is required. */ | |
423 | fieldname = NULL; | |
424 | type = parse_field_expression (text, &fieldname); | |
425 | if (fieldname && type) | |
426 | { | |
427 | for (;;) | |
428 | { | |
429 | CHECK_TYPEDEF (type); | |
430 | if (TYPE_CODE (type) != TYPE_CODE_PTR | |
431 | && TYPE_CODE (type) != TYPE_CODE_REF) | |
432 | break; | |
433 | type = TYPE_TARGET_TYPE (type); | |
434 | } | |
435 | ||
436 | if (TYPE_CODE (type) == TYPE_CODE_UNION | |
437 | || TYPE_CODE (type) == TYPE_CODE_STRUCT) | |
438 | { | |
439 | int alloc = count_struct_fields (type); | |
440 | int flen = strlen (fieldname); | |
441 | int out = 0; | |
442 | char **result = (char **) xmalloc ((alloc + 1) * sizeof (char *)); | |
443 | ||
444 | add_struct_fields (type, &out, result, fieldname, flen); | |
445 | result[out] = NULL; | |
a0b7aece | 446 | xfree (fieldname); |
65d12d83 TT |
447 | return result; |
448 | } | |
449 | } | |
a0b7aece | 450 | xfree (fieldname); |
65d12d83 | 451 | |
37cd5d19 TT |
452 | /* Commands which complete on locations want to see the entire |
453 | argument. */ | |
454 | for (p = word; | |
455 | p > text && p[-1] != ' ' && p[-1] != '\t'; | |
456 | p--) | |
457 | ; | |
458 | ||
65d12d83 | 459 | /* Not ideal but it is what we used to do before... */ |
d8906c6f | 460 | return location_completer (ignore, p, word); |
65d12d83 TT |
461 | } |
462 | ||
c5f0f3d0 FN |
463 | /* Here are some useful test cases for completion. FIXME: These should |
464 | be put in the test suite. They should be tested with both M-? and TAB. | |
465 | ||
466 | "show output-" "radix" | |
467 | "show output" "-radix" | |
468 | "p" ambiguous (commands starting with p--path, print, printf, etc.) | |
469 | "p " ambiguous (all symbols) | |
470 | "info t foo" no completions | |
471 | "info t " no completions | |
472 | "info t" ambiguous ("info target", "info terminal", etc.) | |
473 | "info ajksdlfk" no completions | |
474 | "info ajksdlfk " no completions | |
475 | "info" " " | |
476 | "info " ambiguous (all info commands) | |
477 | "p \"a" no completions (string constant) | |
478 | "p 'a" ambiguous (all symbols starting with a) | |
479 | "p b-a" ambiguous (all symbols starting with a) | |
480 | "p b-" ambiguous (all symbols) | |
481 | "file Make" "file" (word break hard to screw up here) | |
482 | "file ../gdb.stabs/we" "ird" (needs to not break word at slash) | |
483 | */ | |
484 | ||
67c296a2 PM |
485 | typedef enum |
486 | { | |
487 | handle_brkchars, | |
488 | handle_completions, | |
489 | handle_help | |
490 | } | |
491 | complete_line_internal_reason; | |
492 | ||
493 | ||
494 | /* Internal function used to handle completions. | |
495 | ||
c5f0f3d0 FN |
496 | |
497 | TEXT is the caller's idea of the "word" we are looking at. | |
498 | ||
c5f0f3d0 FN |
499 | LINE_BUFFER is available to be looked at; it contains the entire text |
500 | of the line. POINT is the offset in that line of the cursor. You | |
14032a66 | 501 | should pretend that the line ends at POINT. |
67c296a2 PM |
502 | |
503 | REASON is of type complete_line_internal_reason. | |
504 | ||
505 | If REASON is handle_brkchars: | |
506 | Preliminary phase, called by gdb_completion_word_break_characters function, | |
507 | is used to determine the correct set of chars that are word delimiters | |
508 | depending on the current command in line_buffer. | |
509 | No completion list should be generated; the return value should be NULL. | |
510 | This is checked by an assertion in that function. | |
511 | ||
512 | If REASON is handle_completions: | |
513 | Main phase, called by complete_line function, is used to get the list | |
514 | of posible completions. | |
515 | ||
516 | If REASON is handle_help: | |
517 | Special case when completing a 'help' command. In this case, | |
14032a66 | 518 | once sub-command completions are exhausted, we simply return NULL. |
67c296a2 | 519 | */ |
14032a66 TT |
520 | |
521 | static char ** | |
522 | complete_line_internal (const char *text, char *line_buffer, int point, | |
67c296a2 | 523 | complete_line_internal_reason reason) |
c5f0f3d0 | 524 | { |
83d31a92 | 525 | char **list = NULL; |
c5f0f3d0 FN |
526 | char *tmp_command, *p; |
527 | /* Pointer within tmp_command which corresponds to text. */ | |
528 | char *word; | |
529 | struct cmd_list_element *c, *result_list; | |
530 | ||
83d31a92 TT |
531 | /* Choose the default set of word break characters to break completions. |
532 | If we later find out that we are doing completions on command strings | |
533 | (as opposed to strings supplied by the individual command completer | |
534 | functions, which can be any string) then we will switch to the | |
535 | special word break set for command strings, which leaves out the | |
536 | '-' character used in some commands. */ | |
83d31a92 | 537 | rl_completer_word_break_characters = |
51065942 | 538 | current_language->la_word_break_characters(); |
c5f0f3d0 | 539 | |
9c3f90bd | 540 | /* Decide whether to complete on a list of gdb commands or on symbols. */ |
83d31a92 TT |
541 | tmp_command = (char *) alloca (point + 1); |
542 | p = tmp_command; | |
c5f0f3d0 | 543 | |
83d31a92 TT |
544 | strncpy (tmp_command, line_buffer, point); |
545 | tmp_command[point] = '\0'; | |
546 | /* Since text always contains some number of characters leading up | |
547 | to point, we can find the equivalent position in tmp_command | |
548 | by subtracting that many characters from the end of tmp_command. */ | |
549 | word = tmp_command + point - strlen (text); | |
c5f0f3d0 | 550 | |
83d31a92 TT |
551 | if (point == 0) |
552 | { | |
553 | /* An empty line we want to consider ambiguous; that is, it | |
554 | could be any command. */ | |
555 | c = (struct cmd_list_element *) -1; | |
556 | result_list = 0; | |
557 | } | |
558 | else | |
559 | { | |
560 | c = lookup_cmd_1 (&p, cmdlist, &result_list, 1); | |
561 | } | |
c5f0f3d0 | 562 | |
83d31a92 TT |
563 | /* Move p up to the next interesting thing. */ |
564 | while (*p == ' ' || *p == '\t') | |
565 | { | |
566 | p++; | |
567 | } | |
c5f0f3d0 | 568 | |
83d31a92 TT |
569 | if (!c) |
570 | { | |
571 | /* It is an unrecognized command. So there are no | |
572 | possible completions. */ | |
573 | list = NULL; | |
574 | } | |
575 | else if (c == (struct cmd_list_element *) -1) | |
576 | { | |
577 | char *q; | |
578 | ||
579 | /* lookup_cmd_1 advances p up to the first ambiguous thing, but | |
580 | doesn't advance over that thing itself. Do so now. */ | |
581 | q = p; | |
582 | while (*q && (isalnum (*q) || *q == '-' || *q == '_')) | |
583 | ++q; | |
584 | if (q != tmp_command + point) | |
c5f0f3d0 | 585 | { |
83d31a92 TT |
586 | /* There is something beyond the ambiguous |
587 | command, so there are no possible completions. For | |
588 | example, "info t " or "info t foo" does not complete | |
589 | to anything, because "info t" can be "info target" or | |
590 | "info terminal". */ | |
c5f0f3d0 FN |
591 | list = NULL; |
592 | } | |
83d31a92 | 593 | else |
c5f0f3d0 | 594 | { |
83d31a92 TT |
595 | /* We're trying to complete on the command which was ambiguous. |
596 | This we can deal with. */ | |
597 | if (result_list) | |
c5f0f3d0 | 598 | { |
67c296a2 PM |
599 | if (reason != handle_brkchars) |
600 | list = complete_on_cmdlist (*result_list->prefixlist, p, | |
601 | word); | |
c5f0f3d0 FN |
602 | } |
603 | else | |
604 | { | |
67c296a2 PM |
605 | if (reason != handle_brkchars) |
606 | list = complete_on_cmdlist (cmdlist, p, word); | |
c5f0f3d0 | 607 | } |
489f0516 | 608 | /* Ensure that readline does the right thing with respect to |
83d31a92 TT |
609 | inserting quotes. */ |
610 | rl_completer_word_break_characters = | |
611 | gdb_completer_command_word_break_characters; | |
c5f0f3d0 | 612 | } |
83d31a92 TT |
613 | } |
614 | else | |
615 | { | |
616 | /* We've recognized a full command. */ | |
617 | ||
618 | if (p == tmp_command + point) | |
c5f0f3d0 | 619 | { |
83d31a92 | 620 | /* There is no non-whitespace in the line beyond the command. */ |
c5f0f3d0 | 621 | |
83d31a92 | 622 | if (p[-1] == ' ' || p[-1] == '\t') |
c5f0f3d0 | 623 | { |
83d31a92 TT |
624 | /* The command is followed by whitespace; we need to complete |
625 | on whatever comes after command. */ | |
626 | if (c->prefixlist) | |
c5f0f3d0 | 627 | { |
83d31a92 TT |
628 | /* It is a prefix command; what comes after it is |
629 | a subcommand (e.g. "info "). */ | |
67c296a2 PM |
630 | if (reason != handle_brkchars) |
631 | list = complete_on_cmdlist (*c->prefixlist, p, word); | |
c5f0f3d0 | 632 | |
489f0516 | 633 | /* Ensure that readline does the right thing |
9c3f90bd | 634 | with respect to inserting quotes. */ |
c5f0f3d0 FN |
635 | rl_completer_word_break_characters = |
636 | gdb_completer_command_word_break_characters; | |
637 | } | |
67c296a2 | 638 | else if (reason == handle_help) |
14032a66 | 639 | list = NULL; |
c5f0f3d0 FN |
640 | else if (c->enums) |
641 | { | |
67c296a2 PM |
642 | if (reason != handle_brkchars) |
643 | list = complete_on_enum (c->enums, p, word); | |
83d31a92 TT |
644 | rl_completer_word_break_characters = |
645 | gdb_completer_command_word_break_characters; | |
c5f0f3d0 FN |
646 | } |
647 | else | |
648 | { | |
83d31a92 TT |
649 | /* It is a normal command; what comes after it is |
650 | completed by the command's completer function. */ | |
c5f0f3d0 | 651 | if (c->completer == filename_completer) |
7830cf6f | 652 | { |
83d31a92 TT |
653 | /* Many commands which want to complete on |
654 | file names accept several file names, as | |
655 | in "run foo bar >>baz". So we don't want | |
656 | to complete the entire text after the | |
657 | command, just the last word. To this | |
658 | end, we need to find the beginning of the | |
659 | file name by starting at `word' and going | |
660 | backwards. */ | |
7830cf6f EZ |
661 | for (p = word; |
662 | p > tmp_command | |
663 | && strchr (gdb_completer_file_name_break_characters, p[-1]) == NULL; | |
664 | p--) | |
665 | ; | |
666 | rl_completer_word_break_characters = | |
667 | gdb_completer_file_name_break_characters; | |
668 | } | |
37cd5d19 | 669 | else if (c->completer == location_completer) |
c94fdfd0 | 670 | { |
83d31a92 TT |
671 | /* Commands which complete on locations want to |
672 | see the entire argument. */ | |
c94fdfd0 EZ |
673 | for (p = word; |
674 | p > tmp_command | |
675 | && p[-1] != ' ' && p[-1] != '\t'; | |
676 | p--) | |
677 | ; | |
678 | } | |
67c296a2 PM |
679 | if (reason != handle_brkchars) |
680 | list = (*c->completer) (c, p, word); | |
c5f0f3d0 FN |
681 | } |
682 | } | |
83d31a92 TT |
683 | else |
684 | { | |
685 | /* The command is not followed by whitespace; we need to | |
686 | complete on the command itself. e.g. "p" which is a | |
687 | command itself but also can complete to "print", "ptype" | |
688 | etc. */ | |
689 | char *q; | |
690 | ||
691 | /* Find the command we are completing on. */ | |
692 | q = p; | |
693 | while (q > tmp_command) | |
694 | { | |
695 | if (isalnum (q[-1]) || q[-1] == '-' || q[-1] == '_') | |
696 | --q; | |
697 | else | |
698 | break; | |
699 | } | |
700 | ||
67c296a2 PM |
701 | if (reason != handle_brkchars) |
702 | list = complete_on_cmdlist (result_list, q, word); | |
83d31a92 | 703 | |
489f0516 | 704 | /* Ensure that readline does the right thing |
9c3f90bd | 705 | with respect to inserting quotes. */ |
83d31a92 TT |
706 | rl_completer_word_break_characters = |
707 | gdb_completer_command_word_break_characters; | |
708 | } | |
709 | } | |
67c296a2 | 710 | else if (reason == handle_help) |
14032a66 | 711 | list = NULL; |
83d31a92 TT |
712 | else |
713 | { | |
714 | /* There is non-whitespace beyond the command. */ | |
715 | ||
716 | if (c->prefixlist && !c->allow_unknown) | |
717 | { | |
718 | /* It is an unrecognized subcommand of a prefix command, | |
719 | e.g. "info adsfkdj". */ | |
720 | list = NULL; | |
721 | } | |
722 | else if (c->enums) | |
723 | { | |
67c296a2 PM |
724 | if (reason != handle_brkchars) |
725 | list = complete_on_enum (c->enums, p, word); | |
83d31a92 TT |
726 | } |
727 | else | |
728 | { | |
729 | /* It is a normal command. */ | |
730 | if (c->completer == filename_completer) | |
731 | { | |
732 | /* See the commentary above about the specifics | |
733 | of file-name completion. */ | |
734 | for (p = word; | |
735 | p > tmp_command | |
736 | && strchr (gdb_completer_file_name_break_characters, p[-1]) == NULL; | |
737 | p--) | |
738 | ; | |
739 | rl_completer_word_break_characters = | |
740 | gdb_completer_file_name_break_characters; | |
741 | } | |
37cd5d19 | 742 | else if (c->completer == location_completer) |
83d31a92 TT |
743 | { |
744 | for (p = word; | |
745 | p > tmp_command | |
746 | && p[-1] != ' ' && p[-1] != '\t'; | |
747 | p--) | |
748 | ; | |
749 | } | |
67c296a2 PM |
750 | if (reason != handle_brkchars) |
751 | list = (*c->completer) (c, p, word); | |
83d31a92 TT |
752 | } |
753 | } | |
754 | } | |
755 | ||
756 | return list; | |
757 | } | |
67c296a2 PM |
758 | /* Generate completions all at once. Returns a NULL-terminated array |
759 | of strings. Both the array and each element are allocated with | |
760 | xmalloc. It can also return NULL if there are no completions. | |
83d31a92 | 761 | |
67c296a2 PM |
762 | TEXT is the caller's idea of the "word" we are looking at. |
763 | ||
764 | LINE_BUFFER is available to be looked at; it contains the entire text | |
765 | of the line. | |
766 | ||
767 | POINT is the offset in that line of the cursor. You | |
768 | should pretend that the line ends at POINT. */ | |
14032a66 TT |
769 | |
770 | char ** | |
771 | complete_line (const char *text, char *line_buffer, int point) | |
772 | { | |
67c296a2 | 773 | return complete_line_internal (text, line_buffer, point, handle_completions); |
14032a66 TT |
774 | } |
775 | ||
776 | /* Complete on command names. Used by "help". */ | |
777 | char ** | |
d8906c6f | 778 | command_completer (struct cmd_list_element *ignore, char *text, char *word) |
14032a66 | 779 | { |
67c296a2 PM |
780 | return complete_line_internal (word, text, strlen (text), handle_help); |
781 | } | |
782 | ||
783 | /* Get the list of chars that are considered as word breaks | |
784 | for the current command. */ | |
785 | ||
786 | char * | |
787 | gdb_completion_word_break_characters (void) | |
788 | { | |
789 | char ** list; | |
790 | list = complete_line_internal (rl_line_buffer, rl_line_buffer, rl_point, | |
791 | handle_brkchars); | |
792 | gdb_assert (list == NULL); | |
793 | return rl_completer_word_break_characters; | |
14032a66 TT |
794 | } |
795 | ||
83d31a92 TT |
796 | /* Generate completions one by one for the completer. Each time we are |
797 | called return another potential completion to the caller. | |
798 | line_completion just completes on commands or passes the buck to the | |
799 | command's completer function, the stuff specific to symbol completion | |
800 | is in make_symbol_completion_list. | |
801 | ||
802 | TEXT is the caller's idea of the "word" we are looking at. | |
803 | ||
804 | MATCHES is the number of matches that have currently been collected from | |
805 | calling this completion function. When zero, then we need to initialize, | |
806 | otherwise the initialization has already taken place and we can just | |
807 | return the next potential completion string. | |
808 | ||
809 | LINE_BUFFER is available to be looked at; it contains the entire text | |
810 | of the line. POINT is the offset in that line of the cursor. You | |
811 | should pretend that the line ends at POINT. | |
812 | ||
813 | Returns NULL if there are no more completions, else a pointer to a string | |
814 | which is a possible completion, it is the caller's responsibility to | |
815 | free the string. */ | |
816 | ||
38017ce8 | 817 | static char * |
9c3f90bd MS |
818 | line_completion_function (const char *text, int matches, |
819 | char *line_buffer, int point) | |
83d31a92 | 820 | { |
9c3f90bd MS |
821 | static char **list = (char **) NULL; /* Cache of completions. */ |
822 | static int index; /* Next cached completion. */ | |
83d31a92 TT |
823 | char *output = NULL; |
824 | ||
825 | if (matches == 0) | |
826 | { | |
827 | /* The caller is beginning to accumulate a new set of completions, so | |
828 | we need to find all of them now, and cache them for returning one at | |
9c3f90bd | 829 | a time on future calls. */ |
83d31a92 TT |
830 | |
831 | if (list) | |
832 | { | |
833 | /* Free the storage used by LIST, but not by the strings inside. | |
6f4de6c9 JK |
834 | This is because rl_complete_internal () frees the strings. |
835 | As complete_line may abort by calling `error' clear LIST now. */ | |
83d31a92 | 836 | xfree (list); |
6f4de6c9 | 837 | list = NULL; |
c5f0f3d0 | 838 | } |
83d31a92 TT |
839 | index = 0; |
840 | list = complete_line (text, line_buffer, point); | |
c5f0f3d0 FN |
841 | } |
842 | ||
843 | /* If we found a list of potential completions during initialization then | |
844 | dole them out one at a time. The vector of completions is NULL | |
845 | terminated, so after returning the last one, return NULL (and continue | |
846 | to do so) each time we are called after that, until a new list is | |
9c3f90bd | 847 | available. */ |
c5f0f3d0 FN |
848 | |
849 | if (list) | |
850 | { | |
851 | output = list[index]; | |
852 | if (output) | |
853 | { | |
854 | index++; | |
855 | } | |
856 | } | |
857 | ||
858 | #if 0 | |
859 | /* Can't do this because readline hasn't yet checked the word breaks | |
860 | for figuring out whether to insert a quote. */ | |
861 | if (output == NULL) | |
862 | /* Make sure the word break characters are set back to normal for the | |
863 | next time that readline tries to complete something. */ | |
864 | rl_completer_word_break_characters = | |
51065942 | 865 | current_language->la_word_break_characters(); |
c5f0f3d0 FN |
866 | #endif |
867 | ||
868 | return (output); | |
869 | } | |
4e87b832 KD |
870 | |
871 | /* Skip over the possibly quoted word STR (as defined by the quote | |
872 | characters QUOTECHARS and the the word break characters | |
873 | BREAKCHARS). Returns pointer to the location after the "word". If | |
874 | either QUOTECHARS or BREAKCHARS is NULL, use the same values used | |
875 | by the completer. */ | |
c5f0f3d0 FN |
876 | |
877 | char * | |
4e87b832 | 878 | skip_quoted_chars (char *str, char *quotechars, char *breakchars) |
c5f0f3d0 FN |
879 | { |
880 | char quote_char = '\0'; | |
881 | char *scan; | |
882 | ||
4e87b832 KD |
883 | if (quotechars == NULL) |
884 | quotechars = gdb_completer_quote_characters; | |
885 | ||
886 | if (breakchars == NULL) | |
51065942 | 887 | breakchars = current_language->la_word_break_characters(); |
4e87b832 | 888 | |
c5f0f3d0 FN |
889 | for (scan = str; *scan != '\0'; scan++) |
890 | { | |
891 | if (quote_char != '\0') | |
892 | { | |
9c3f90bd | 893 | /* Ignore everything until the matching close quote char. */ |
c5f0f3d0 FN |
894 | if (*scan == quote_char) |
895 | { | |
9c3f90bd | 896 | /* Found matching close quote. */ |
c5f0f3d0 FN |
897 | scan++; |
898 | break; | |
899 | } | |
900 | } | |
4e87b832 | 901 | else if (strchr (quotechars, *scan)) |
c5f0f3d0 FN |
902 | { |
903 | /* Found start of a quoted string. */ | |
904 | quote_char = *scan; | |
905 | } | |
4e87b832 | 906 | else if (strchr (breakchars, *scan)) |
c5f0f3d0 FN |
907 | { |
908 | break; | |
909 | } | |
910 | } | |
4e87b832 | 911 | |
c5f0f3d0 FN |
912 | return (scan); |
913 | } | |
914 | ||
4e87b832 KD |
915 | /* Skip over the possibly quoted word STR (as defined by the quote |
916 | characters and word break characters used by the completer). | |
9c3f90bd | 917 | Returns pointer to the location after the "word". */ |
4e87b832 KD |
918 | |
919 | char * | |
920 | skip_quoted (char *str) | |
921 | { | |
922 | return skip_quoted_chars (str, NULL, NULL); | |
923 | } |