aboutsummaryrefslogtreecommitdiff
path: root/gdb/cli/cli-interp.c
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2021-12-31 11:34:59 -0700
committerTom Tromey <tom@tromey.com>2022-03-28 14:13:28 -0600
commit8b1931b39443acab9d1f8272a8a81b261f7ef29b (patch)
tree71da1713d1c58b5f1f3a15ca3195a12451b0f5ca /gdb/cli/cli-interp.c
parent22f8b65e9bd75ac66d7874da8dc844dd3c42ce8b (diff)
downloadgdb-8b1931b39443acab9d1f8272a8a81b261f7ef29b.zip
gdb-8b1931b39443acab9d1f8272a8a81b261f7ef29b.tar.gz
gdb-8b1931b39443acab9d1f8272a8a81b261f7ef29b.tar.bz2
Use unique_ptr in CLI logging code
This changes the CLI logging code to avoid manual memory management (to the extent possible) by using unique_ptr in a couple of spots. This will come in handy in a later patch.
Diffstat (limited to 'gdb/cli/cli-interp.c')
-rw-r--r--gdb/cli/cli-interp.c43
1 files changed, 17 insertions, 26 deletions
diff --git a/gdb/cli/cli-interp.c b/gdb/cli/cli-interp.c
index b310ef2..d36715d 100644
--- a/gdb/cli/cli-interp.c
+++ b/gdb/cli/cli-interp.c
@@ -396,9 +396,9 @@ struct saved_output_files
ui_file *log;
ui_file *targ;
ui_file *targerr;
- ui_file *file_to_delete;
+ ui_file_up file_to_delete;
};
-static saved_output_files saved_output;
+static std::unique_ptr<saved_output_files> saved_output;
/* See cli-interp.h. */
@@ -408,12 +408,12 @@ cli_interp_base::set_logging (ui_file_up logfile, bool logging_redirect,
{
if (logfile != nullptr)
{
- saved_output.out = gdb_stdout;
- saved_output.err = gdb_stderr;
- saved_output.log = gdb_stdlog;
- saved_output.targ = gdb_stdtarg;
- saved_output.targerr = gdb_stdtargerr;
- gdb_assert (saved_output.file_to_delete == nullptr);
+ saved_output.reset (new saved_output_files);
+ saved_output->out = gdb_stdout;
+ saved_output->err = gdb_stderr;
+ saved_output->log = gdb_stdlog;
+ saved_output->targ = gdb_stdtarg;
+ saved_output->targerr = gdb_stdtargerr;
/* If something is not being redirected, then a tee containing both the
logfile and stdout. */
@@ -422,10 +422,10 @@ cli_interp_base::set_logging (ui_file_up logfile, bool logging_redirect,
if (!logging_redirect || !debug_redirect)
{
tee = new tee_file (gdb_stdout, std::move (logfile));
- saved_output.file_to_delete = tee;
+ saved_output->file_to_delete.reset (tee);
}
else
- saved_output.file_to_delete = logfile.release ();
+ saved_output->file_to_delete = std::move (logfile);
gdb_stdout = logging_redirect ? logfile_p : tee;
gdb_stdlog = debug_redirect ? logfile_p : tee;
@@ -435,22 +435,13 @@ cli_interp_base::set_logging (ui_file_up logfile, bool logging_redirect,
}
else
{
- /* Delete the correct file. If it's the tee then the logfile will also
- be deleted. */
- delete saved_output.file_to_delete;
-
- gdb_stdout = saved_output.out;
- gdb_stderr = saved_output.err;
- gdb_stdlog = saved_output.log;
- gdb_stdtarg = saved_output.targ;
- gdb_stdtargerr = saved_output.targerr;
-
- saved_output.out = nullptr;
- saved_output.err = nullptr;
- saved_output.log = nullptr;
- saved_output.targ = nullptr;
- saved_output.targerr = nullptr;
- saved_output.file_to_delete = nullptr;
+ gdb_stdout = saved_output->out;
+ gdb_stderr = saved_output->err;
+ gdb_stdlog = saved_output->log;
+ gdb_stdtarg = saved_output->targ;
+ gdb_stdtargerr = saved_output->targerr;
+
+ saved_output.reset (nullptr);
}
}