C++-fy struct interp/cli_interp/tui_interp/mi_interp
[deliverable/binutils-gdb.git] / gdb / cli / cli-logging.c
... / ...
CommitLineData
1/* Command-line output logging for GDB, the GNU debugger.
2
3 Copyright (C) 2003-2017 Free Software Foundation, Inc.
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19
20#include "defs.h"
21#include "gdbcmd.h"
22#include "ui-out.h"
23#include "interps.h"
24
25static char *saved_filename;
26
27static char *logging_filename;
28static void
29show_logging_filename (struct ui_file *file, int from_tty,
30 struct cmd_list_element *c, const char *value)
31{
32 fprintf_filtered (file, _("The current logfile is \"%s\".\n"),
33 value);
34}
35
36static int logging_overwrite;
37
38static void
39maybe_warn_already_logging ()
40{
41 if (saved_filename)
42 warning (_("Currently logging to %s. Turn the logging off and on to "
43 "make the new setting effective."), saved_filename);
44}
45
46static void
47set_logging_overwrite (char *args, int from_tty, struct cmd_list_element *c)
48{
49 maybe_warn_already_logging ();
50}
51
52static void
53show_logging_overwrite (struct ui_file *file, int from_tty,
54 struct cmd_list_element *c, const char *value)
55{
56 fprintf_filtered (file,
57 _("Whether logging overwrites or "
58 "appends to the log file is %s.\n"),
59 value);
60}
61
62/* Value as configured by the user. */
63static int logging_redirect;
64
65static void
66set_logging_redirect (char *args, int from_tty, struct cmd_list_element *c)
67{
68 maybe_warn_already_logging ();
69}
70
71static void
72show_logging_redirect (struct ui_file *file, int from_tty,
73 struct cmd_list_element *c, const char *value)
74{
75 fprintf_filtered (file, _("The logging output mode is %s.\n"), value);
76}
77
78/* If we've pushed output files, close them and pop them. */
79static void
80pop_output_files (void)
81{
82 current_interp_set_logging (NULL, false);
83
84 /* Stay consistent with handle_redirections. */
85 if (!current_uiout->is_mi_like_p ())
86 current_uiout->redirect (NULL);
87}
88
89/* See cli-interp.h. */
90
91ui_file *
92make_logging_output (ui_file *curr_output, ui_file_up logfile,
93 bool logging_redirect)
94{
95 if (logging_redirect)
96 return logfile.release ();
97 else
98 {
99 /* Note that the "tee" takes ownership of the log file. */
100 ui_file *out = new tee_file (curr_output, false,
101 logfile.get (), true);
102 logfile.release ();
103 return out;
104 }
105}
106
107/* This is a helper for the `set logging' command. */
108static void
109handle_redirections (int from_tty)
110{
111 if (saved_filename != NULL)
112 {
113 fprintf_unfiltered (gdb_stdout, "Already logging to %s.\n",
114 saved_filename);
115 return;
116 }
117
118 stdio_file_up log (new stdio_file ());
119 if (!log->open (logging_filename, logging_overwrite ? "w" : "a"))
120 perror_with_name (_("set logging"));
121
122 /* Redirects everything to gdb_stdout while this is running. */
123 if (from_tty)
124 {
125 if (!logging_redirect)
126 fprintf_unfiltered (gdb_stdout, "Copying output to %s.\n",
127 logging_filename);
128 else
129 fprintf_unfiltered (gdb_stdout, "Redirecting output to %s.\n",
130 logging_filename);
131 }
132
133 saved_filename = xstrdup (logging_filename);
134
135 /* Let the interpreter do anything it needs. */
136 current_interp_set_logging (std::move (log), logging_redirect);
137
138 /* Redirect the current ui-out object's output to the log. Use
139 gdb_stdout, not log, since the interpreter may have created a tee
140 that wraps the log. Don't do the redirect for MI, it confuses
141 MI's ui-out scheme. Note that we may get here with MI as current
142 interpreter, but with the current ui_out as a CLI ui_out, with
143 '-interpreter-exec console "set logging on"'. */
144 if (!current_uiout->is_mi_like_p ())
145 current_uiout->redirect (gdb_stdout);
146}
147
148static void
149set_logging_on (char *args, int from_tty)
150{
151 char *rest = args;
152
153 if (rest && *rest)
154 {
155 xfree (logging_filename);
156 logging_filename = xstrdup (rest);
157 }
158 handle_redirections (from_tty);
159}
160
161static void
162set_logging_off (char *args, int from_tty)
163{
164 if (saved_filename == NULL)
165 return;
166
167 pop_output_files ();
168 if (from_tty)
169 fprintf_unfiltered (gdb_stdout, "Done logging to %s.\n", saved_filename);
170 xfree (saved_filename);
171 saved_filename = NULL;
172}
173
174static void
175set_logging_command (char *args, int from_tty)
176{
177 printf_unfiltered (_("\"set logging\" lets you log output to a file.\n"
178 "Usage: set logging on [FILENAME]\n"
179 " set logging off\n"
180 " set logging file FILENAME\n"
181 " set logging overwrite [on|off]\n"
182 " set logging redirect [on|off]\n"));
183}
184
185static void
186show_logging_command (char *args, int from_tty)
187{
188 if (saved_filename)
189 printf_unfiltered (_("Currently logging to \"%s\".\n"), saved_filename);
190 if (saved_filename == NULL
191 || strcmp (logging_filename, saved_filename) != 0)
192 printf_unfiltered (_("Future logs will be written to %s.\n"),
193 logging_filename);
194
195 if (logging_overwrite)
196 printf_unfiltered (_("Logs will overwrite the log file.\n"));
197 else
198 printf_unfiltered (_("Logs will be appended to the log file.\n"));
199
200 if (logging_redirect)
201 printf_unfiltered (_("Output will be sent only to the log file.\n"));
202 else
203 printf_unfiltered (_("Output will be logged and displayed.\n"));
204}
205
206/* Provide a prototype to silence -Wmissing-prototypes. */
207extern initialize_file_ftype _initialize_cli_logging;
208
209void
210_initialize_cli_logging (void)
211{
212 static struct cmd_list_element *set_logging_cmdlist, *show_logging_cmdlist;
213
214 add_prefix_cmd ("logging", class_support, set_logging_command,
215 _("Set logging options"), &set_logging_cmdlist,
216 "set logging ", 0, &setlist);
217 add_prefix_cmd ("logging", class_support, show_logging_command,
218 _("Show logging options"), &show_logging_cmdlist,
219 "show logging ", 0, &showlist);
220 add_setshow_boolean_cmd ("overwrite", class_support, &logging_overwrite, _("\
221Set whether logging overwrites or appends to the log file."), _("\
222Show whether logging overwrites or appends to the log file."), _("\
223If set, logging overrides the log file."),
224 set_logging_overwrite,
225 show_logging_overwrite,
226 &set_logging_cmdlist, &show_logging_cmdlist);
227 add_setshow_boolean_cmd ("redirect", class_support, &logging_redirect, _("\
228Set the logging output mode."), _("\
229Show the logging output mode."), _("\
230If redirect is off, output will go to both the screen and the log file.\n\
231If redirect is on, output will go only to the log file."),
232 set_logging_redirect,
233 show_logging_redirect,
234 &set_logging_cmdlist, &show_logging_cmdlist);
235 add_setshow_filename_cmd ("file", class_support, &logging_filename, _("\
236Set the current logfile."), _("\
237Show the current logfile."), _("\
238The logfile is used when directing GDB's output."),
239 NULL,
240 show_logging_filename,
241 &set_logging_cmdlist, &show_logging_cmdlist);
242 add_cmd ("on", class_support, set_logging_on,
243 _("Enable logging."), &set_logging_cmdlist);
244 add_cmd ("off", class_support, set_logging_off,
245 _("Disable logging."), &set_logging_cmdlist);
246
247 logging_filename = xstrdup ("gdb.txt");
248}
This page took 0.02898 seconds and 4 git commands to generate.