1 /* MI Command Set - varobj commands.
3 Copyright (C) 2000, 2002, 2004, 2005, 2007, 2008
4 Free Software Foundation, Inc.
6 Contributed by Cygnus Solutions (a Red Hat company).
8 This file is part of GDB.
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 3 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>. */
30 #include "gdb_string.h"
32 const char mi_no_values[] = "--no-values";
33 const char mi_simple_values[] = "--simple-values";
34 const char mi_all_values[] = "--all-values";
36 extern int varobjdebug; /* defined in varobj.c. */
38 static void varobj_update_one (struct varobj *var,
39 enum print_values print_values,
42 static int mi_print_value_p (struct type *type, enum print_values print_values);
44 /* Print variable object VAR. The PRINT_VALUES parameter controls
45 if the value should be printed. The PRINT_EXPRESSION parameter
46 controls if the expression should be printed. */
48 print_varobj (struct varobj *var, enum print_values print_values,
51 struct type *gdb_type;
54 ui_out_field_string (uiout, "name", varobj_get_objname (var));
56 ui_out_field_string (uiout, "exp", varobj_get_expression (var));
57 ui_out_field_int (uiout, "numchild", varobj_get_num_children (var));
59 if (mi_print_value_p (varobj_get_gdb_type (var), print_values))
60 ui_out_field_string (uiout, "value", varobj_get_value (var));
62 type = varobj_get_type (var);
65 ui_out_field_string (uiout, "type", type);
69 if (varobj_get_frozen (var))
70 ui_out_field_int (uiout, "frozen", 1);
73 /* VAROBJ operations */
76 mi_cmd_var_create (char *command, char **argv, int argc)
78 CORE_ADDR frameaddr = 0;
83 struct cleanup *old_cleanups;
84 enum varobj_type var_type;
88 /* mi_error_message = xstrprintf ("mi_cmd_var_create: Usage:
89 ...."); return MI_CMD_ERROR; */
90 error (_("mi_cmd_var_create: Usage: NAME FRAME EXPRESSION."));
93 name = xstrdup (argv[0]);
94 /* Add cleanup for name. Must be free_current_contents as
95 name can be reallocated */
96 old_cleanups = make_cleanup (free_current_contents, &name);
98 frame = xstrdup (argv[1]);
99 make_cleanup (xfree, frame);
101 expr = xstrdup (argv[2]);
102 make_cleanup (xfree, expr);
104 if (strcmp (name, "-") == 0)
107 name = varobj_gen_name ();
109 else if (!isalpha (*name))
110 error (_("mi_cmd_var_create: name of object must begin with a letter"));
112 if (strcmp (frame, "*") == 0)
113 var_type = USE_CURRENT_FRAME;
114 else if (strcmp (frame, "@") == 0)
115 var_type = USE_SELECTED_FRAME;
118 var_type = USE_SPECIFIED_FRAME;
119 frameaddr = string_to_core_addr (frame);
123 fprintf_unfiltered (gdb_stdlog,
124 "Name=\"%s\", Frame=\"%s\" (0x%s), Expression=\"%s\"\n",
125 name, frame, paddr (frameaddr), expr);
127 var = varobj_create (name, expr, frameaddr, var_type);
130 error (_("mi_cmd_var_create: unable to create variable object"));
132 print_varobj (var, PRINT_ALL_VALUES, 0 /* don't print expression */);
134 do_cleanups (old_cleanups);
139 mi_cmd_var_delete (char *command, char **argv, int argc)
144 int children_only_p = 0;
145 struct cleanup *old_cleanups;
147 if (argc < 1 || argc > 2)
148 error (_("mi_cmd_var_delete: Usage: [-c] EXPRESSION."));
150 name = xstrdup (argv[0]);
151 /* Add cleanup for name. Must be free_current_contents as
152 name can be reallocated */
153 old_cleanups = make_cleanup (free_current_contents, &name);
155 /* If we have one single argument it cannot be '-c' or any string
156 starting with '-'. */
159 if (strcmp (name, "-c") == 0)
160 error (_("mi_cmd_var_delete: Missing required argument after '-c': variable object name"));
162 error (_("mi_cmd_var_delete: Illegal variable object name"));
165 /* If we have 2 arguments they must be '-c' followed by a string
166 which would be the variable name. */
169 if (strcmp (name, "-c") != 0)
170 error (_("mi_cmd_var_delete: Invalid option."));
172 do_cleanups (old_cleanups);
173 name = xstrdup (argv[1]);
174 make_cleanup (free_current_contents, &name);
177 /* If we didn't error out, now NAME contains the name of the
180 var = varobj_get_handle (name);
183 error (_("mi_cmd_var_delete: Variable object not found."));
185 numdel = varobj_delete (var, NULL, children_only_p);
187 ui_out_field_int (uiout, "ndeleted", numdel);
189 do_cleanups (old_cleanups);
194 mi_cmd_var_set_format (char *command, char **argv, int argc)
196 enum varobj_display_formats format;
202 error (_("mi_cmd_var_set_format: Usage: NAME FORMAT."));
204 /* Get varobj handle, if a valid var obj name was specified */
205 var = varobj_get_handle (argv[0]);
208 error (_("mi_cmd_var_set_format: Variable object not found"));
211 if (formspec == NULL)
212 error (_("mi_cmd_var_set_format: Must specify the format as: \"natural\", \"binary\", \"decimal\", \"hexadecimal\", or \"octal\""));
214 len = strlen (formspec);
216 if (strncmp (formspec, "natural", len) == 0)
217 format = FORMAT_NATURAL;
218 else if (strncmp (formspec, "binary", len) == 0)
219 format = FORMAT_BINARY;
220 else if (strncmp (formspec, "decimal", len) == 0)
221 format = FORMAT_DECIMAL;
222 else if (strncmp (formspec, "hexadecimal", len) == 0)
223 format = FORMAT_HEXADECIMAL;
224 else if (strncmp (formspec, "octal", len) == 0)
225 format = FORMAT_OCTAL;
227 error (_("mi_cmd_var_set_format: Unknown display format: must be: \"natural\", \"binary\", \"decimal\", \"hexadecimal\", or \"octal\""));
229 /* Set the format of VAR to given format */
230 varobj_set_display_format (var, format);
232 /* Report the new current format */
233 ui_out_field_string (uiout, "format", varobj_format_string[(int) format]);
235 /* Report the value in the new format */
236 ui_out_field_string (uiout, "value", varobj_get_value (var));
241 mi_cmd_var_set_frozen (char *command, char **argv, int argc)
247 error (_("-var-set-format: Usage: NAME FROZEN_FLAG."));
249 var = varobj_get_handle (argv[0]);
251 error (_("Variable object not found"));
253 if (strcmp (argv[1], "0") == 0)
255 else if (strcmp (argv[1], "1") == 0)
258 error (_("Invalid flag value"));
260 varobj_set_frozen (var, frozen);
262 /* We don't automatically return the new value, or what varobjs got new
263 values during unfreezing. If this information is required, client
264 should call -var-update explicitly. */
270 mi_cmd_var_show_format (char *command, char **argv, int argc)
272 enum varobj_display_formats format;
276 error (_("mi_cmd_var_show_format: Usage: NAME."));
278 /* Get varobj handle, if a valid var obj name was specified */
279 var = varobj_get_handle (argv[0]);
281 error (_("mi_cmd_var_show_format: Variable object not found"));
283 format = varobj_get_display_format (var);
285 /* Report the current format */
286 ui_out_field_string (uiout, "format", varobj_format_string[(int) format]);
291 mi_cmd_var_info_num_children (char *command, char **argv, int argc)
296 error (_("mi_cmd_var_info_num_children: Usage: NAME."));
298 /* Get varobj handle, if a valid var obj name was specified */
299 var = varobj_get_handle (argv[0]);
301 error (_("mi_cmd_var_info_num_children: Variable object not found"));
303 ui_out_field_int (uiout, "numchild", varobj_get_num_children (var));
307 /* Parse a string argument into a print_values value. */
309 static enum print_values
310 mi_parse_values_option (const char *arg)
312 if (strcmp (arg, "0") == 0
313 || strcmp (arg, mi_no_values) == 0)
314 return PRINT_NO_VALUES;
315 else if (strcmp (arg, "1") == 0
316 || strcmp (arg, mi_all_values) == 0)
317 return PRINT_ALL_VALUES;
318 else if (strcmp (arg, "2") == 0
319 || strcmp (arg, mi_simple_values) == 0)
320 return PRINT_SIMPLE_VALUES;
322 error (_("Unknown value for PRINT_VALUES\n\
323 Must be: 0 or \"%s\", 1 or \"%s\", 2 or \"%s\""),
324 mi_no_values, mi_simple_values, mi_all_values);
327 /* Return 1 if given the argument PRINT_VALUES we should display
328 a value of type TYPE. */
331 mi_print_value_p (struct type *type, enum print_values print_values)
334 if (print_values == PRINT_NO_VALUES)
337 if (print_values == PRINT_ALL_VALUES)
344 type = check_typedef (type);
346 /* For PRINT_SIMPLE_VALUES, only print the value if it has a type
347 and that type is not a compound type. */
348 return (TYPE_CODE (type) != TYPE_CODE_ARRAY
349 && TYPE_CODE (type) != TYPE_CODE_STRUCT
350 && TYPE_CODE (type) != TYPE_CODE_UNION);
355 mi_cmd_var_list_children (char *command, char **argv, int argc)
358 VEC(varobj_p) *children;
359 struct varobj *child;
360 struct cleanup *cleanup_children;
362 enum print_values print_values;
365 if (argc != 1 && argc != 2)
366 error (_("mi_cmd_var_list_children: Usage: [PRINT_VALUES] NAME"));
368 /* Get varobj handle, if a valid var obj name was specified */
370 var = varobj_get_handle (argv[0]);
372 var = varobj_get_handle (argv[1]);
374 error (_("Variable object not found"));
376 children = varobj_list_children (var);
377 ui_out_field_int (uiout, "numchild", VEC_length (varobj_p, children));
379 print_values = mi_parse_values_option (argv[0]);
381 print_values = PRINT_NO_VALUES;
383 if (VEC_length (varobj_p, children) == 0)
386 if (mi_version (uiout) == 1)
387 cleanup_children = make_cleanup_ui_out_tuple_begin_end (uiout, "children");
389 cleanup_children = make_cleanup_ui_out_list_begin_end (uiout, "children");
390 for (ix = 0; VEC_iterate (varobj_p, children, ix, child); ++ix)
392 struct cleanup *cleanup_child;
393 cleanup_child = make_cleanup_ui_out_tuple_begin_end (uiout, "child");
394 print_varobj (child, print_values, 1 /* print expression */);
395 do_cleanups (cleanup_child);
397 do_cleanups (cleanup_children);
402 mi_cmd_var_info_type (char *command, char **argv, int argc)
407 error (_("mi_cmd_var_info_type: Usage: NAME."));
409 /* Get varobj handle, if a valid var obj name was specified */
410 var = varobj_get_handle (argv[0]);
412 error (_("mi_cmd_var_info_type: Variable object not found"));
414 ui_out_field_string (uiout, "type", varobj_get_type (var));
419 mi_cmd_var_info_path_expression (char *command, char **argv, int argc)
425 error (_("Usage: NAME."));
427 /* Get varobj handle, if a valid var obj name was specified. */
428 var = varobj_get_handle (argv[0]);
430 error (_("Variable object not found"));
432 path_expr = varobj_get_path_expr (var);
434 ui_out_field_string (uiout, "path_expr", path_expr);
440 mi_cmd_var_info_expression (char *command, char **argv, int argc)
442 enum varobj_languages lang;
446 error (_("mi_cmd_var_info_expression: Usage: NAME."));
448 /* Get varobj handle, if a valid var obj name was specified */
449 var = varobj_get_handle (argv[0]);
451 error (_("mi_cmd_var_info_expression: Variable object not found"));
453 lang = varobj_get_language (var);
455 ui_out_field_string (uiout, "lang", varobj_language_string[(int) lang]);
456 ui_out_field_string (uiout, "exp", varobj_get_expression (var));
461 mi_cmd_var_show_attributes (char *command, char **argv, int argc)
468 error (_("mi_cmd_var_show_attributes: Usage: NAME."));
470 /* Get varobj handle, if a valid var obj name was specified */
471 var = varobj_get_handle (argv[0]);
473 error (_("mi_cmd_var_show_attributes: Variable object not found"));
475 attr = varobj_get_attributes (var);
476 /* FIXME: define masks for attributes */
477 if (attr & 0x00000001)
480 attstr = "noneditable";
482 ui_out_field_string (uiout, "attr", attstr);
487 mi_cmd_var_evaluate_expression (char *command, char **argv, int argc)
492 error (_("mi_cmd_var_evaluate_expression: Usage: NAME."));
494 /* Get varobj handle, if a valid var obj name was specified */
495 var = varobj_get_handle (argv[0]);
497 error (_("mi_cmd_var_evaluate_expression: Variable object not found"));
499 ui_out_field_string (uiout, "value", varobj_get_value (var));
504 mi_cmd_var_assign (char *command, char **argv, int argc)
510 error (_("mi_cmd_var_assign: Usage: NAME EXPRESSION."));
512 /* Get varobj handle, if a valid var obj name was specified */
513 var = varobj_get_handle (argv[0]);
515 error (_("mi_cmd_var_assign: Variable object not found"));
517 if (!varobj_editable_p (var))
518 error (_("mi_cmd_var_assign: Variable object is not editable"));
520 expression = xstrdup (argv[1]);
522 if (!varobj_set_value (var, expression))
523 error (_("mi_cmd_var_assign: Could not assign expression to variable object"));
525 ui_out_field_string (uiout, "value", varobj_get_value (var));
530 mi_cmd_var_update (char *command, char **argv, int argc)
533 struct varobj **rootlist;
535 struct cleanup *cleanup;
538 enum print_values print_values;
540 if (argc != 1 && argc != 2)
541 error (_("mi_cmd_var_update: Usage: [PRINT_VALUES] NAME."));
549 print_values = mi_parse_values_option (argv[0]);
551 print_values = PRINT_NO_VALUES;
553 /* Check if the parameter is a "*" which means that we want
554 to update all variables */
556 if ((*name == '*') && (*(name + 1) == '\0'))
558 nv = varobj_list (&rootlist);
559 cleanup = make_cleanup (xfree, rootlist);
560 if (mi_version (uiout) <= 1)
561 make_cleanup_ui_out_tuple_begin_end (uiout, "changelist");
563 make_cleanup_ui_out_list_begin_end (uiout, "changelist");
566 do_cleanups (cleanup);
572 varobj_update_one (*cr, print_values, 0 /* implicit */);
575 do_cleanups (cleanup);
579 /* Get varobj handle, if a valid var obj name was specified */
580 var = varobj_get_handle (name);
582 error (_("mi_cmd_var_update: Variable object not found"));
584 if (mi_version (uiout) <= 1)
585 cleanup = make_cleanup_ui_out_tuple_begin_end (uiout, "changelist");
587 cleanup = make_cleanup_ui_out_list_begin_end (uiout, "changelist");
588 varobj_update_one (var, print_values, 1 /* explicit */);
589 do_cleanups (cleanup);
594 /* Helper for mi_cmd_var_update(). */
597 varobj_update_one (struct varobj *var, enum print_values print_values,
600 struct varobj **changelist;
602 struct cleanup *cleanup = NULL;
605 nc = varobj_update (&var, &changelist, explicit);
607 /* nc >= 0 represents the number of changes reported into changelist.
608 nc < 0 means that an error occured or the the variable has
609 changed type (TYPE_CHANGED). */
615 if (mi_version (uiout) > 1)
616 cleanup = make_cleanup_ui_out_tuple_begin_end (uiout, NULL);
617 ui_out_field_string (uiout, "name", varobj_get_objname(var));
622 ui_out_field_string (uiout, "in_scope", "false");
625 ui_out_field_string (uiout, "in_scope", "invalid");
628 ui_out_field_string (uiout, "in_scope", "true");
629 ui_out_field_string (uiout, "new_type", varobj_get_type(var));
630 ui_out_field_int (uiout, "new_num_children",
631 varobj_get_num_children(var));
634 if (mi_version (uiout) > 1)
635 do_cleanups (cleanup);
642 if (mi_version (uiout) > 1)
643 cleanup = make_cleanup_ui_out_tuple_begin_end (uiout, NULL);
644 ui_out_field_string (uiout, "name", varobj_get_objname (*cc));
645 if (mi_print_value_p (varobj_get_gdb_type (*cc), print_values))
646 ui_out_field_string (uiout, "value", varobj_get_value (*cc));
647 ui_out_field_string (uiout, "in_scope", "true");
648 ui_out_field_string (uiout, "type_changed", "false");
649 if (mi_version (uiout) > 1)
650 do_cleanups (cleanup);