mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-21 01:12:32 +08:00
1d506c26d9
This commit is the result of the following actions: - Running gdb/copyright.py to update all of the copyright headers to include 2024, - Manually updating a few files the copyright.py script told me to update, these files had copyright headers embedded within the file, - Regenerating gdbsupport/Makefile.in to refresh it's copyright date, - Using grep to find other files that still mentioned 2023. If these files were updated last year from 2022 to 2023 then I've updated them this year to 2024. I'm sure I've probably missed some dates. Feel free to fix them up as you spot them.
105 lines
3.4 KiB
C++
105 lines
3.4 KiB
C++
/* MI Command Set - MI Command Parser.
|
|
Copyright (C) 2000-2024 Free Software Foundation, Inc.
|
|
Contributed by Cygnus Solutions (a Red Hat company).
|
|
|
|
This file is part of GDB.
|
|
|
|
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
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
|
|
|
#ifndef MI_MI_PARSE_H
|
|
#define MI_MI_PARSE_H
|
|
|
|
#include "gdbsupport/run-time-clock.h"
|
|
#include <chrono>
|
|
#include "mi-cmds.h"
|
|
|
|
/* MI parser */
|
|
|
|
/* Timestamps for current command and last asynchronous command. */
|
|
struct mi_timestamp
|
|
{
|
|
std::chrono::steady_clock::time_point wallclock;
|
|
user_cpu_time_clock::time_point utime;
|
|
system_cpu_time_clock::time_point stime;
|
|
};
|
|
|
|
enum mi_command_type
|
|
{
|
|
MI_COMMAND, CLI_COMMAND
|
|
};
|
|
|
|
struct mi_parse
|
|
{
|
|
/* Attempt to parse CMD creating a ``struct mi_parse''. If CMD is
|
|
invalid, an exception is thrown. For an MI_COMMAND COMMAND, ARGS
|
|
and OP are initialized. Un-initialized fields are zero. *TOKEN is
|
|
set to the token, even if an exception is thrown. */
|
|
mi_parse (const char *cmd, std::string *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. */
|
|
mi_parse (gdb::unique_xmalloc_ptr<char> command,
|
|
std::vector<gdb::unique_xmalloc_ptr<char>> args);
|
|
|
|
~mi_parse ();
|
|
|
|
DISABLE_COPY_AND_ASSIGN (mi_parse);
|
|
|
|
/* Split the arguments into argc/argv and store the result. */
|
|
void parse_argv ();
|
|
|
|
/* Return the full argument string, as used by commands which are
|
|
implemented as CLI commands. */
|
|
const char *args ();
|
|
|
|
enum mi_command_type op = MI_COMMAND;
|
|
/* This is not std::string because it avoids a copy in the Python
|
|
API case. */
|
|
gdb::unique_xmalloc_ptr<char> command;
|
|
std::string token;
|
|
const struct mi_command *cmd = nullptr;
|
|
struct mi_timestamp *cmd_start = nullptr;
|
|
char **argv = nullptr;
|
|
int argc = 0;
|
|
int all = 0;
|
|
int thread_group = -1; /* At present, the same as inferior number. */
|
|
int thread = -1;
|
|
int frame = -1;
|
|
|
|
/* The language that should be used to evaluate the MI command.
|
|
Ignored if set to language_unknown. */
|
|
enum language language = language_unknown;
|
|
|
|
private:
|
|
|
|
/* Helper methods for parsing arguments. Each takes the argument
|
|
to be parsed. It will either set a member of this object, or
|
|
throw an exception on error. In each case, *ENDP, if non-NULL,
|
|
will be updated to just after the argument text. */
|
|
void set_thread_group (const char *arg, char **endp);
|
|
void set_thread (const char *arg, char **endp);
|
|
void set_frame (const char *arg, char **endp);
|
|
void set_language (const char *arg, const char **endp);
|
|
|
|
std::string m_args;
|
|
};
|
|
|
|
/* Parse a string argument into a print_values value. */
|
|
|
|
enum print_values mi_parse_print_values (const char *name);
|
|
|
|
#endif /* MI_MI_PARSE_H */
|