Class-ify ui_out
[deliverable/binutils-gdb.git] / gdb / cli / cli-setshow.c
index 9222091ac4ed8edd41cd1662078b697e1e1fb3aa..5f2cd03cfcbd34a41b5f7a7e96b0c98386a5e773 100644 (file)
@@ -1,6 +1,6 @@
 /* Handle set and show GDB commands.
 
-   Copyright (C) 2000-2013 Free Software Foundation, Inc.
+   Copyright (C) 2000-2016 Free Software Foundation, Inc.
 
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
@@ -19,7 +19,6 @@
 #include "readline/tilde.h"
 #include "value.h"
 #include <ctype.h>
-#include <string.h>
 #include "arch-utils.h"
 #include "observer.h"
 
@@ -38,8 +37,8 @@ notify_command_param_changed_p (int param_changed, struct cmd_list_element *c)
   if (param_changed == 0)
     return 0;
 
-  if (c->class == class_maintenance || c->class == class_deprecated
-      || c->class == class_obscure)
+  if (c->theclass == class_maintenance || c->theclass == class_deprecated
+      || c->theclass == class_obscure)
     return 0;
 
   return 1;
@@ -76,7 +75,7 @@ parse_auto_binary_operation (const char *arg)
 /* See cli-setshow.h.  */
 
 int
-parse_cli_boolean_value (char *arg)
+parse_cli_boolean_value (const char *arg)
 {
   int length;
 
@@ -148,7 +147,7 @@ is_unlimited_literal (const char *arg)
    other command).  C is the command list element for the command.  */
 
 void
-do_set_command (char *arg, int from_tty, struct cmd_list_element *c)
+do_set_command (const char *arg, int from_tty, struct cmd_list_element *c)
 {
   /* A flag to indicate the option is changed or not.  */
   int option_changed = 0;
@@ -159,16 +158,16 @@ do_set_command (char *arg, int from_tty, struct cmd_list_element *c)
     {
     case var_string:
       {
-       char *new;
+       char *newobj;
        const char *p;
        char *q;
        int ch;
 
        if (arg == NULL)
          arg = "";
-       new = (char *) xmalloc (strlen (arg) + 2);
+       newobj = (char *) xmalloc (strlen (arg) + 2);
        p = arg;
-       q = new;
+       q = newobj;
        while ((ch = *p++) != '\000')
          {
            if (ch == '\\')
@@ -196,18 +195,18 @@ do_set_command (char *arg, int from_tty, struct cmd_list_element *c)
          *q++ = ' ';
 #endif
        *q++ = '\0';
-       new = (char *) xrealloc (new, q - new);
+       newobj = (char *) xrealloc (newobj, q - newobj);
 
        if (*(char **) c->var == NULL
-           || strcmp (*(char **) c->var, new) != 0)
+           || strcmp (*(char **) c->var, newobj) != 0)
          {
            xfree (*(char **) c->var);
-           *(char **) c->var = new;
+           *(char **) c->var = newobj;
 
            option_changed = 1;
          }
        else
-         xfree (new);
+         xfree (newobj);
       }
       break;
     case var_string_noescape:
@@ -233,13 +232,15 @@ do_set_command (char *arg, int from_tty, struct cmd_list_element *c)
        if (arg != NULL)
          {
            /* Clear trailing whitespace of filename.  */
-           char *ptr = arg + strlen (arg) - 1;
+           const char *ptr = arg + strlen (arg) - 1;
+           char *copy;
 
            while (ptr >= arg && (*ptr == ' ' || *ptr == '\t'))
              ptr--;
-           *(ptr + 1) = '\0';
+           copy = xstrndup (arg, ptr + 1 - arg);
 
-           val = tilde_expand (arg);
+           val = tilde_expand (copy);
+           xfree (copy);
          }
        else
          val = xstrdup ("");
@@ -360,7 +361,7 @@ do_set_command (char *arg, int from_tty, struct cmd_list_element *c)
        int len;
        int nmatches;
        const char *match = NULL;
-       char *p;
+       const char *p;
 
        /* If no argument was supplied, print an informative error
           message.  */
@@ -372,7 +373,7 @@ do_set_command (char *arg, int from_tty, struct cmd_list_element *c)
            for (i = 0; c->enums[i]; i++)
              msg_len += strlen (c->enums[i]) + 2;
 
-           msg = xmalloc (msg_len);
+           msg = (char *) xmalloc (msg_len);
            *msg = '\0';
            make_cleanup (xfree, msg);
 
@@ -452,8 +453,6 @@ do_set_command (char *arg, int from_tty, struct cmd_list_element *c)
       error (_("gdb internal error: bad var_type in do_setshow_command"));
     }
   c->func (c, NULL, from_tty);
-  if (deprecated_set_hook)
-    deprecated_set_hook (c);
 
   if (notify_command_param_changed_p (option_changed, c))
     {
@@ -476,8 +475,8 @@ do_set_command (char *arg, int from_tty, struct cmd_list_element *c)
 
          p = p->prefix;
        }
-      cp = name = xmalloc (length);
-      cmds = xmalloc (sizeof (struct cmd_list_element *) * i);
+      cp = name = (char *) xmalloc (length);
+      cmds = XNEWVEC (struct cmd_list_element *, i);
 
       /* Track back through filed 'prefix' and cache them in CMDS.  */
       for (i = 0, p = c; p != NULL; i++)
@@ -524,7 +523,7 @@ do_set_command (char *arg, int from_tty, struct cmd_list_element *c)
          break;
        case var_boolean:
          {
-           char *opt = *(int *) c->var ? "on" : "off";
+           const char *opt = *(int *) c->var ? "on" : "off";
 
            observer_notify_command_param_changed (name, opt);
          }
@@ -566,7 +565,7 @@ do_set_command (char *arg, int from_tty, struct cmd_list_element *c)
    other command).  C is the command list element for the command.  */
 
 void
-do_show_command (char *arg, int from_tty, struct cmd_list_element *c)
+do_show_command (const char *arg, int from_tty, struct cmd_list_element *c)
 {
   struct ui_out *uiout = current_uiout;
   struct cleanup *old_chain;
@@ -650,17 +649,16 @@ do_show_command (char *arg, int from_tty, struct cmd_list_element *c)
      code to print the value out.  For the latter there should be
      MI and CLI specific versions.  */
 
-  if (ui_out_is_mi_like_p (uiout))
-    ui_out_field_stream (uiout, "value", stb);
+  if (uiout->is_mi_like_p ())
+    uiout->field_stream ("value", stb);
   else
     {
-      char *value = ui_file_xstrdup (stb, NULL);
+      std::string value = ui_file_as_string (stb);
 
-      make_cleanup (xfree, value);
       if (c->show_value_func != NULL)
-       c->show_value_func (gdb_stdout, from_tty, c, value);
+       c->show_value_func (gdb_stdout, from_tty, c, value.c_str ());
       else
-       deprecated_show_value_hack (gdb_stdout, from_tty, c, value);
+       deprecated_show_value_hack (gdb_stdout, from_tty, c, value.c_str ());
     }
   do_cleanups (old_chain);
 
@@ -670,7 +668,7 @@ do_show_command (char *arg, int from_tty, struct cmd_list_element *c)
 /* Show all the settings in a list of show commands.  */
 
 void
-cmd_show_list (struct cmd_list_element *list, int from_tty, char *prefix)
+cmd_show_list (struct cmd_list_element *list, int from_tty, const char *prefix)
 {
   struct cleanup *showlist_chain;
   struct ui_out *uiout = current_uiout;
@@ -684,24 +682,24 @@ cmd_show_list (struct cmd_list_element *list, int from_tty, char *prefix)
        {
          struct cleanup *optionlist_chain
            = make_cleanup_ui_out_tuple_begin_end (uiout, "optionlist");
-         char *new_prefix = strstr (list->prefixname, "show ") + 5;
+         const char *new_prefix = strstr (list->prefixname, "show ") + 5;
 
-         if (ui_out_is_mi_like_p (uiout))
-           ui_out_field_string (uiout, "prefix", new_prefix);
+         if (uiout->is_mi_like_p ())
+           uiout->field_string ("prefix", new_prefix);
          cmd_show_list (*list->prefixlist, from_tty, new_prefix);
          /* Close the tuple.  */
          do_cleanups (optionlist_chain);
        }
       else
        {
-         if (list->class != no_set_class)
+         if (list->theclass != no_set_class)
            {
              struct cleanup *option_chain
                = make_cleanup_ui_out_tuple_begin_end (uiout, "option");
 
-             ui_out_text (uiout, prefix);
-             ui_out_field_string (uiout, "name", list->name);
-             ui_out_text (uiout, ":  ");
+             uiout->text (prefix);
+             uiout->field_string ("name", list->name);
+             uiout->text (":  ");
              if (list->type == show_cmd)
                do_show_command ((char *) NULL, from_tty, list);
              else
This page took 0.028749 seconds and 4 git commands to generate.