[7/9] Add second mi_parse constructor
Commit Message
This adds a second mi_parse constructor. This constructor takes a
command name and vector of arguments, and does not do any escape
processing. This also changes mi_parse::args to handle parse objects
created this new way.
---
gdb/mi/mi-parse.c | 92 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
gdb/mi/mi-parse.h | 12 ++++++--
2 files changed, 102 insertions(+), 2 deletions(-)
@@ -109,6 +109,11 @@ mi_parse_escape (const char **string_ptr)
void
mi_parse::parse_argv ()
{
+ /* If arguments were already computed (or were supplied at
+ construction), then there's no need to re-compute them. */
+ if (argv != nullptr)
+ return;
+
const char *chp = m_args.c_str ();
int argc = 0;
char **argv = XNEWVEC (char *, argc + 1);
@@ -217,6 +222,27 @@ mi_parse::~mi_parse ()
/* See mi-parse.h. */
+const char *
+mi_parse::args ()
+{
+ /* If args were already computed, or if there is no pre-computed
+ argv, just return the args. */
+ if (!m_args.empty () || argv == nullptr)
+ return m_args.c_str ();
+
+ /* Compute args from argv. */
+ for (int i = 0; i < argc; ++i)
+ {
+ if (!m_args.empty ())
+ m_args += " ";
+ m_args += argv[i];
+ }
+
+ return m_args.c_str ();
+}
+
+/* See mi-parse.h. */
+
void
mi_parse::set_thread_group (const char *arg, char **endp)
{
@@ -387,6 +413,72 @@ mi_parse::make (const char *cmd, char **token)
return parse;
}
+/* See mi-parse.h. */
+
+std::unique_ptr<struct mi_parse>
+mi_parse::make (gdb::unique_xmalloc_ptr<char> command,
+ std::vector<gdb::unique_xmalloc_ptr<char>> args)
+{
+ std::unique_ptr<struct mi_parse> parse (new struct mi_parse);
+
+ parse->command = command.release ();
+ parse->token = xstrdup ("");
+
+ /* Find the command in the MI table. */
+ parse->cmd = mi_cmd_lookup (parse->command);
+ if (parse->cmd == NULL)
+ throw_error (UNDEFINED_COMMAND_ERROR,
+ _("Undefined MI command: %s"), parse->command);
+
+ /* This over-allocates slightly, but it seems unimportant. */
+ parse->argv = XCNEWVEC (char *, args.size () + 1);
+
+ for (size_t i = 0; i < args.size (); ++i)
+ {
+ const char *chp = args[i].get ();
+
+ /* See if --all is the last token in the input. */
+ if (strcmp (chp, "--all") == 0)
+ {
+ parse->all = 1;
+ }
+ else if (strcmp (chp, "--thread-group") == 0)
+ {
+ ++i;
+ if (i == args.size ())
+ error ("No argument to '--thread-group'");
+ parse->set_thread_group (args[i].get (), nullptr);
+ }
+ else if (strcmp (chp, "--thread") == 0)
+ {
+ ++i;
+ if (i == args.size ())
+ error ("No argument to '--thread'");
+ parse->set_thread (args[i].get (), nullptr);
+ }
+ else if (strcmp (chp, "--frame") == 0)
+ {
+ ++i;
+ if (i == args.size ())
+ error ("No argument to '--frame'");
+ parse->set_frame (args[i].get (), nullptr);
+ }
+ else if (strcmp (chp, "--language") == 0)
+ {
+ ++i;
+ if (i == args.size ())
+ error ("No argument to '--language'");
+ parse->set_language (args[i].get (), nullptr);
+ }
+ else
+ parse->argv[parse->argc++] = args[i].release ();
+ }
+
+ /* Fully parsed, flag as an MI command. */
+ parse->op = MI_COMMAND;
+ return parse;
+}
+
enum print_values
mi_parse_print_values (const char *name)
{
@@ -52,6 +52,15 @@ struct mi_parse
static std::unique_ptr<struct mi_parse> make (const char *cmd,
char **token);
+ /* Create an mi_parse object given the command name and a vector
+ of arguments. Unlike with the other constructor, here the
+ arguments are treated "as is" -- no escape processing is
+ done. */
+
+ static std::unique_ptr<struct mi_parse> make
+ (gdb::unique_xmalloc_ptr<char> command,
+ std::vector<gdb::unique_xmalloc_ptr<char>> args);
+
~mi_parse ();
DISABLE_COPY_AND_ASSIGN (mi_parse);
@@ -61,8 +70,7 @@ struct mi_parse
/* Return the full argument string, as used by commands which are
implemented as CLI commands. */
- const char *args () const
- { return m_args.c_str (); }
+ const char *args ();
enum mi_command_type op = MI_COMMAND;
char *command = nullptr;