gdb: add interp::on_sync_execution_done method

Same as previous patches, but for sync_execution_done.  Except that
here, we only want to notify the interpreter that is executing the
command, not all interpreters.

Change-Id: I729c719447b5c5f29af65dbf6fed9132e2cd308b
This commit is contained in:
Simon Marchi
2023-04-20 15:47:59 -04:00
parent 2e5dbfab56
commit c3d321de3f
8 changed files with 12 additions and 28 deletions

View File

@@ -152,15 +152,9 @@ cli_interp_base::on_no_history ()
print_no_history_reason (this->interp_ui_out ()); print_no_history_reason (this->interp_ui_out ());
} }
/* Observer for the sync_execution_done notification. */ void
cli_interp_base::on_sync_execution_done ()
static void
cli_base_on_sync_execution_done ()
{ {
cli_interp_base *cli = as_cli_interp_base (top_level_interpreter ());
if (cli == nullptr)
return;
display_gdb_prompt (NULL); display_gdb_prompt (NULL);
} }
@@ -361,8 +355,6 @@ _initialize_cli_interp ()
interp_factory_register (INTERP_CONSOLE, cli_interp_factory); interp_factory_register (INTERP_CONSOLE, cli_interp_factory);
/* Note these all work for both the CLI and TUI interpreters. */ /* Note these all work for both the CLI and TUI interpreters. */
gdb::observers::sync_execution_done.attach (cli_base_on_sync_execution_done,
"cli-interp-base");
gdb::observers::command_error.attach (cli_base_on_command_error, gdb::observers::command_error.attach (cli_base_on_command_error,
"cli-interp-base"); "cli-interp-base");
gdb::observers::user_selected_context_changed.attach gdb::observers::user_selected_context_changed.attach

View File

@@ -38,6 +38,7 @@ public:
void on_normal_stop (bpstat *bs, int print_frame) override; void on_normal_stop (bpstat *bs, int print_frame) override;
void on_exited (int status) override; void on_exited (int status) override;
void on_no_history () override; void on_no_history () override;
void on_sync_execution_done () override;
private: private:
struct saved_output_files struct saved_output_files

View File

@@ -4207,7 +4207,7 @@ check_curr_ui_sync_execution_done (void)
&& !gdb_in_secondary_prompt_p (ui)) && !gdb_in_secondary_prompt_p (ui))
{ {
target_terminal::ours (); target_terminal::ours ();
gdb::observers::sync_execution_done.notify (); top_level_interpreter ()->on_sync_execution_done ();
ui->register_file_handler (); ui->register_file_handler ();
} }
} }

View File

@@ -102,6 +102,10 @@ public:
execution because there is no more history. */ execution because there is no more history. */
virtual void on_no_history () {} virtual void on_no_history () {}
/* Notify the interpreter that a synchronous command it started has
finished. */
virtual void on_sync_execution_done () {}
private: private:
/* The memory for this is static, it comes from literal strings (e.g. "cli"). */ /* The memory for this is static, it comes from literal strings (e.g. "cli"). */
const char *m_name; const char *m_name;

View File

@@ -82,7 +82,6 @@ static void mi_breakpoint_modified (struct breakpoint *b);
static void mi_command_param_changed (const char *param, const char *value); static void mi_command_param_changed (const char *param, const char *value);
static void mi_memory_changed (struct inferior *inf, CORE_ADDR memaddr, static void mi_memory_changed (struct inferior *inf, CORE_ADDR memaddr,
ssize_t len, const bfd_byte *myaddr); ssize_t len, const bfd_byte *myaddr);
static void mi_on_sync_execution_done (void);
/* Display the MI prompt. */ /* Display the MI prompt. */
@@ -269,20 +268,13 @@ mi_execute_command_wrapper (const char *cmd)
mi_execute_command (cmd, ui->instream == ui->stdin_stream); mi_execute_command (cmd, ui->instream == ui->stdin_stream);
} }
/* Observer for the synchronous_command_done notification. */ void
mi_interp::on_sync_execution_done ()
static void
mi_on_sync_execution_done (void)
{ {
struct mi_interp *mi = as_mi_interp (top_level_interpreter ());
if (mi == NULL)
return;
/* If MI is sync, then output the MI prompt now, indicating we're /* If MI is sync, then output the MI prompt now, indicating we're
ready for further input. */ ready for further input. */
if (!mi_async_p ()) if (!mi_async_p ())
display_mi_prompt (mi); display_mi_prompt (this);
} }
/* mi_execute_command_wrapper wrapper suitable for INPUT_HANDLER. */ /* mi_execute_command_wrapper wrapper suitable for INPUT_HANDLER. */
@@ -1247,8 +1239,6 @@ _initialize_mi_interp ()
"mi-interp"); "mi-interp");
gdb::observers::command_error.attach (mi_on_command_error, "mi-interp"); gdb::observers::command_error.attach (mi_on_command_error, "mi-interp");
gdb::observers::memory_changed.attach (mi_memory_changed, "mi-interp"); gdb::observers::memory_changed.attach (mi_memory_changed, "mi-interp");
gdb::observers::sync_execution_done.attach (mi_on_sync_execution_done,
"mi-interp");
gdb::observers::user_selected_context_changed.attach gdb::observers::user_selected_context_changed.attach
(mi_user_selected_context_changed, "mi-interp"); (mi_user_selected_context_changed, "mi-interp");
} }

View File

@@ -47,6 +47,7 @@ public:
void on_normal_stop (struct bpstat *bs, int print_frame) override; void on_normal_stop (struct bpstat *bs, int print_frame) override;
void on_exited (int status) override; void on_exited (int status) override;
void on_no_history () override; void on_no_history () override;
void on_sync_execution_done () override;
/* MI's output channels */ /* MI's output channels */
mi_console_file *out; mi_console_file *out;

View File

@@ -34,7 +34,6 @@ bool observer_debug = false;
DEFINE_OBSERVABLE (normal_stop); DEFINE_OBSERVABLE (normal_stop);
DEFINE_OBSERVABLE (signal_received); DEFINE_OBSERVABLE (signal_received);
DEFINE_OBSERVABLE (sync_execution_done);
DEFINE_OBSERVABLE (command_error); DEFINE_OBSERVABLE (command_error);
DEFINE_OBSERVABLE (target_changed); DEFINE_OBSERVABLE (target_changed);
DEFINE_OBSERVABLE (executable_changed); DEFINE_OBSERVABLE (executable_changed);

View File

@@ -57,9 +57,6 @@ extern observable<struct bpstat */* bs */, int /* print_frame */> normal_stop;
/* The inferior was stopped by a signal. */ /* The inferior was stopped by a signal. */
extern observable<enum gdb_signal /* siggnal */> signal_received; extern observable<enum gdb_signal /* siggnal */> signal_received;
/* A synchronous command finished. */
extern observable<> sync_execution_done;
/* An error was caught while executing a command. */ /* An error was caught while executing a command. */
extern observable<> command_error; extern observable<> command_error;