Bump version to 12.0.50.DATE-git.
[binutils-gdb.git] / gdb / cli / cli-utils.c
blob3ee6ca692722a77fea9785e0ec93afee16649ace
1 /* CLI utilities.
3 Copyright (C) 2011-2021 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
20 #include "defs.h"
21 #include "cli/cli-utils.h"
22 #include "value.h"
24 #include <ctype.h>
26 /* See documentation in cli-utils.h. */
28 ULONGEST
29 get_ulongest (const char **pp, int trailer)
31 LONGEST retval = 0; /* default */
32 const char *p = *pp;
34 if (*p == '$')
36 value *val = value_from_history_ref (p, &p);
38 if (val != NULL) /* Value history reference */
40 if (value_type (val)->code () == TYPE_CODE_INT)
41 retval = value_as_long (val);
42 else
43 error (_("History value must have integer type."));
45 else /* Convenience variable */
47 /* Internal variable. Make a copy of the name, so we can
48 null-terminate it to pass to lookup_internalvar(). */
49 const char *start = ++p;
50 while (isalnum (*p) || *p == '_')
51 p++;
52 std::string varname (start, p - start);
53 if (!get_internalvar_integer (lookup_internalvar (varname.c_str ()),
54 &retval))
55 error (_("Convenience variable $%s does not have integer value."),
56 varname.c_str ());
59 else
61 const char *end = p;
62 retval = strtoulst (p, &end, 0);
63 if (p == end)
65 /* There is no number here. (e.g. "cond a == b"). */
66 error (_("Expected integer at: %s"), p);
68 p = end;
71 if (!(isspace (*p) || *p == '\0' || *p == trailer))
72 error (_("Trailing junk at: %s"), p);
73 p = skip_spaces (p);
74 *pp = p;
75 return retval;
78 /* See documentation in cli-utils.h. */
80 int
81 get_number_trailer (const char **pp, int trailer)
83 int retval = 0; /* default */
84 const char *p = *pp;
85 bool negative = false;
87 if (*p == '-')
89 ++p;
90 negative = true;
93 if (*p == '$')
95 struct value *val = value_from_history_ref (p, &p);
97 if (val) /* Value history reference */
99 if (value_type (val)->code () == TYPE_CODE_INT)
100 retval = value_as_long (val);
101 else
103 printf_filtered (_("History value must have integer type.\n"));
104 retval = 0;
107 else /* Convenience variable */
109 /* Internal variable. Make a copy of the name, so we can
110 null-terminate it to pass to lookup_internalvar(). */
111 char *varname;
112 const char *start = ++p;
113 LONGEST longest_val;
115 while (isalnum (*p) || *p == '_')
116 p++;
117 varname = (char *) alloca (p - start + 1);
118 strncpy (varname, start, p - start);
119 varname[p - start] = '\0';
120 if (get_internalvar_integer (lookup_internalvar (varname),
121 &longest_val))
122 retval = (int) longest_val;
123 else
125 printf_filtered (_("Convenience variable must "
126 "have integer value.\n"));
127 retval = 0;
131 else
133 const char *p1 = p;
134 while (*p >= '0' && *p <= '9')
135 ++p;
136 if (p == p1)
137 /* There is no number here. (e.g. "cond a == b"). */
139 /* Skip non-numeric token. */
140 while (*p && !isspace((int) *p))
141 ++p;
142 /* Return zero, which caller must interpret as error. */
143 retval = 0;
145 else
146 retval = atoi (p1);
148 if (!(isspace (*p) || *p == '\0' || *p == trailer))
150 /* Trailing junk: return 0 and let caller print error msg. */
151 while (!(isspace (*p) || *p == '\0' || *p == trailer))
152 ++p;
153 retval = 0;
155 p = skip_spaces (p);
156 *pp = p;
157 return negative ? -retval : retval;
160 /* See documentation in cli-utils.h. */
163 get_number (const char **pp)
165 return get_number_trailer (pp, '\0');
168 /* See documentation in cli-utils.h. */
171 get_number (char **pp)
173 int result;
174 const char *p = *pp;
176 result = get_number_trailer (&p, '\0');
177 *pp = (char *) p;
178 return result;
181 /* See documentation in cli-utils.h. */
183 void
184 report_unrecognized_option_error (const char *command, const char *args)
186 std::string option = extract_arg (&args);
188 error (_("Unrecognized option '%s' to %s command. "
189 "Try \"help %s\"."), option.c_str (),
190 command, command);
193 /* See documentation in cli-utils.h. */
195 const char *
196 info_print_args_help (const char *prefix,
197 const char *entity_kind,
198 bool document_n_flag)
200 return xstrprintf (_("\
201 %sIf NAMEREGEXP is provided, only prints the %s whose name\n\
202 matches NAMEREGEXP.\n\
203 If -t TYPEREGEXP is provided, only prints the %s whose type\n\
204 matches TYPEREGEXP. Note that the matching is done with the type\n\
205 printed by the 'whatis' command.\n\
206 By default, the command might produce headers and/or messages indicating\n\
207 why no %s can be printed.\n\
208 The flag -q disables the production of these headers and messages.%s"),
209 prefix, entity_kind, entity_kind, entity_kind,
210 (document_n_flag ? _("\n\
211 By default, the command will include non-debug symbols in the output;\n\
212 these can be excluded using the -n flag.") : ""));
215 /* See documentation in cli-utils.h. */
217 number_or_range_parser::number_or_range_parser (const char *string)
219 init (string);
222 /* See documentation in cli-utils.h. */
224 void
225 number_or_range_parser::init (const char *string)
227 m_cur_tok = string;
228 m_last_retval = 0;
229 m_end_value = 0;
230 m_end_ptr = NULL;
231 m_in_range = false;
234 /* See documentation in cli-utils.h. */
237 number_or_range_parser::get_number ()
239 if (m_in_range)
241 /* All number-parsing has already been done. Return the next
242 integer value (one greater than the saved previous value).
243 Do not advance the token pointer until the end of range is
244 reached. */
246 if (++m_last_retval == m_end_value)
248 /* End of range reached; advance token pointer. */
249 m_cur_tok = m_end_ptr;
250 m_in_range = false;
253 else if (*m_cur_tok != '-')
255 /* Default case: state->m_cur_tok is pointing either to a solo
256 number, or to the first number of a range. */
257 m_last_retval = get_number_trailer (&m_cur_tok, '-');
258 /* If get_number_trailer has found a '-' preceded by a space, it
259 might be the start of a command option. So, do not parse a
260 range if the '-' is followed by an alpha or another '-'. We
261 might also be completing something like
262 "frame apply level 0 -" and we prefer treating that "-" as an
263 option rather than an incomplete range, so check for end of
264 string as well. */
265 if (m_cur_tok[0] == '-'
266 && !(isspace (m_cur_tok[-1])
267 && (isalpha (m_cur_tok[1])
268 || m_cur_tok[1] == '-'
269 || m_cur_tok[1] == '\0')))
271 const char **temp;
273 /* This is the start of a range (<number1> - <number2>).
274 Skip the '-', parse and remember the second number,
275 and also remember the end of the final token. */
277 temp = &m_end_ptr;
278 m_end_ptr = skip_spaces (m_cur_tok + 1);
279 m_end_value = ::get_number (temp);
280 if (m_end_value < m_last_retval)
282 error (_("inverted range"));
284 else if (m_end_value == m_last_retval)
286 /* Degenerate range (number1 == number2). Advance the
287 token pointer so that the range will be treated as a
288 single number. */
289 m_cur_tok = m_end_ptr;
291 else
292 m_in_range = true;
295 else
297 if (isdigit (*(m_cur_tok + 1)))
298 error (_("negative value"));
299 if (*(m_cur_tok + 1) == '$')
301 /* Convenience variable. */
302 m_last_retval = ::get_number (&m_cur_tok);
303 if (m_last_retval < 0)
304 error (_("negative value"));
307 return m_last_retval;
310 /* See documentation in cli-utils.h. */
312 void
313 number_or_range_parser::setup_range (int start_value, int end_value,
314 const char *end_ptr)
316 gdb_assert (start_value > 0);
318 m_in_range = true;
319 m_end_ptr = end_ptr;
320 m_last_retval = start_value - 1;
321 m_end_value = end_value;
324 /* See documentation in cli-utils.h. */
326 bool
327 number_or_range_parser::finished () const
329 /* Parsing is finished when at end of string or null string,
330 or we are not in a range and not in front of an integer, negative
331 integer, convenience var or negative convenience var. */
332 return (m_cur_tok == NULL || *m_cur_tok == '\0'
333 || (!m_in_range
334 && !(isdigit (*m_cur_tok) || *m_cur_tok == '$')
335 && !(*m_cur_tok == '-'
336 && (isdigit (m_cur_tok[1]) || m_cur_tok[1] == '$'))));
339 /* Accept a number and a string-form list of numbers such as is
340 accepted by get_number_or_range. Return TRUE if the number is
341 in the list.
343 By definition, an empty list includes all numbers. This is to
344 be interpreted as typing a command such as "delete break" with
345 no arguments. */
348 number_is_in_list (const char *list, int number)
350 if (list == NULL || *list == '\0')
351 return 1;
353 number_or_range_parser parser (list);
355 if (parser.finished ())
356 error (_("Arguments must be numbers or '$' variables."));
357 while (!parser.finished ())
359 int gotnum = parser.get_number ();
361 if (gotnum == 0)
362 error (_("Arguments must be numbers or '$' variables."));
363 if (gotnum == number)
364 return 1;
366 return 0;
369 /* See documentation in cli-utils.h. */
371 const char *
372 remove_trailing_whitespace (const char *start, const char *s)
374 while (s > start && isspace (*(s - 1)))
375 --s;
377 return s;
380 /* See documentation in cli-utils.h. */
382 std::string
383 extract_arg (const char **arg)
385 const char *result;
387 if (!*arg)
388 return std::string ();
390 /* Find the start of the argument. */
391 *arg = skip_spaces (*arg);
392 if (!**arg)
393 return std::string ();
394 result = *arg;
396 /* Find the end of the argument. */
397 *arg = skip_to_space (*arg + 1);
399 if (result == *arg)
400 return std::string ();
402 return std::string (result, *arg - result);
405 /* See documentation in cli-utils.h. */
407 std::string
408 extract_arg (char **arg)
410 const char *arg_const = *arg;
411 std::string result;
413 result = extract_arg (&arg_const);
414 *arg += arg_const - *arg;
415 return result;
418 /* See documentation in cli-utils.h. */
421 check_for_argument (const char **str, const char *arg, int arg_len)
423 if (strncmp (*str, arg, arg_len) == 0
424 && ((*str)[arg_len] == '\0' || isspace ((*str)[arg_len])))
426 *str += arg_len;
427 *str = skip_spaces (*str);
428 return 1;
430 return 0;
433 /* See documentation in cli-utils.h. */
435 void
436 validate_flags_qcs (const char *which_command, qcs_flags *flags)
438 if (flags->cont && flags->silent)
439 error (_("%s: -c and -s are mutually exclusive"), which_command);