1 /* Command-line output logging for GDB, the GNU debugger.
3 Copyright (C) 2003-2015 Free Software Foundation, Inc.
5 This file is part of GDB.
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.
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.
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/>. */
25 /* These hold the pushed copies of the gdb output files.
26 If NULL then nothing has yet been pushed. */
27 struct saved_output_files
33 struct ui_file
*targerr
;
35 static struct saved_output_files saved_output
;
36 static char *saved_filename
;
38 static char *logging_filename
;
40 show_logging_filename (struct ui_file
*file
, int from_tty
,
41 struct cmd_list_element
*c
, const char *value
)
43 fprintf_filtered (file
, _("The current logfile is \"%s\".\n"),
47 static int logging_overwrite
;
50 set_logging_overwrite (char *args
, int from_tty
, struct cmd_list_element
*c
)
53 warning (_("Currently logging to %s. Turn the logging off and on to "
54 "make the new setting effective."), saved_filename
);
58 show_logging_overwrite (struct ui_file
*file
, int from_tty
,
59 struct cmd_list_element
*c
, const char *value
)
61 fprintf_filtered (file
,
62 _("Whether logging overwrites or "
63 "appends to the log file is %s.\n"),
67 /* Value as configured by the user. */
68 static int logging_redirect
;
70 /* The on-disk file in use if logging is currently active together
71 with redirection turned off (and therefore using tee_file_new).
72 For active logging with redirection the on-disk file is directly in
73 GDB_STDOUT and this variable is NULL. */
74 static struct ui_file
*logging_no_redirect_file
;
77 set_logging_redirect (char *args
, int from_tty
, struct cmd_list_element
*c
)
79 struct cleanup
*cleanups
;
80 struct ui_file
*output
, *new_logging_no_redirect_file
;
81 struct ui_out
*uiout
= current_uiout
;
83 if (saved_filename
== NULL
84 || (logging_redirect
!= 0 && logging_no_redirect_file
== NULL
)
85 || (logging_redirect
== 0 && logging_no_redirect_file
!= NULL
))
88 cleanups
= make_cleanup (null_cleanup
, NULL
);
90 if (logging_redirect
!= 0)
92 gdb_assert (logging_no_redirect_file
!= NULL
);
94 /* ui_out_redirect still has not been called for next
96 make_cleanup_ui_file_delete (gdb_stdout
);
98 output
= logging_no_redirect_file
;
99 new_logging_no_redirect_file
= NULL
;
102 fprintf_unfiltered (saved_output
.out
, "Redirecting output to %s.\n",
107 gdb_assert (logging_no_redirect_file
== NULL
);
108 output
= tee_file_new (saved_output
.out
, 0, gdb_stdout
, 0);
110 perror_with_name (_("set logging"));
111 new_logging_no_redirect_file
= gdb_stdout
;
114 fprintf_unfiltered (saved_output
.out
, "Copying output to %s.\n",
118 /* Give the current interpreter a chance to do anything special that
119 it might need for logging, such as updating other channels. */
120 if (current_interp_set_logging (1, output
, NULL
) == 0)
125 gdb_stdtarg
= output
;
126 gdb_stdtargerr
= output
;
129 logging_no_redirect_file
= new_logging_no_redirect_file
;
131 /* There is a former output pushed on the ui_out_redirect stack. We
132 want to replace it by OUTPUT so we must pop the former value
133 first. We should either do both the pop and push or to do
134 neither of it. At least do not try to push OUTPUT if the pop
137 if (ui_out_redirect (uiout
, NULL
) < 0
138 || ui_out_redirect (uiout
, output
) < 0)
139 warning (_("Current output protocol does not support redirection"));
141 do_cleanups (cleanups
);
145 show_logging_redirect (struct ui_file
*file
, int from_tty
,
146 struct cmd_list_element
*c
, const char *value
)
148 fprintf_filtered (file
, _("The logging output mode is %s.\n"), value
);
151 /* If we've pushed output files, close them and pop them. */
153 pop_output_files (void)
155 if (logging_no_redirect_file
)
157 ui_file_delete (logging_no_redirect_file
);
158 logging_no_redirect_file
= NULL
;
161 if (current_interp_set_logging (0, NULL
, NULL
) == 0)
163 /* Only delete one of the files -- they are all set to the same
165 ui_file_delete (gdb_stdout
);
167 gdb_stdout
= saved_output
.out
;
168 gdb_stderr
= saved_output
.err
;
169 gdb_stdlog
= saved_output
.log
;
170 gdb_stdtarg
= saved_output
.targ
;
171 gdb_stdtargerr
= saved_output
.targerr
;
174 saved_output
.out
= NULL
;
175 saved_output
.err
= NULL
;
176 saved_output
.log
= NULL
;
177 saved_output
.targ
= NULL
;
178 saved_output
.targerr
= NULL
;
180 /* Stay consistent with handle_redirections. */
181 if (!ui_out_is_mi_like_p (current_uiout
))
182 ui_out_redirect (current_uiout
, NULL
);
185 /* This is a helper for the `set logging' command. */
187 handle_redirections (int from_tty
)
189 struct cleanup
*cleanups
;
190 struct ui_file
*output
;
191 struct ui_file
*no_redirect_file
= NULL
;
193 if (saved_filename
!= NULL
)
195 fprintf_unfiltered (gdb_stdout
, "Already logging to %s.\n",
200 output
= gdb_fopen (logging_filename
, logging_overwrite
? "w" : "a");
202 perror_with_name (_("set logging"));
203 cleanups
= make_cleanup_ui_file_delete (output
);
205 /* Redirects everything to gdb_stdout while this is running. */
206 if (!logging_redirect
)
208 no_redirect_file
= output
;
210 output
= tee_file_new (gdb_stdout
, 0, no_redirect_file
, 0);
212 perror_with_name (_("set logging"));
213 make_cleanup_ui_file_delete (output
);
215 fprintf_unfiltered (gdb_stdout
, "Copying output to %s.\n",
217 logging_no_redirect_file
= no_redirect_file
;
221 gdb_assert (logging_no_redirect_file
== NULL
);
224 fprintf_unfiltered (gdb_stdout
, "Redirecting output to %s.\n",
228 discard_cleanups (cleanups
);
230 saved_filename
= xstrdup (logging_filename
);
231 saved_output
.out
= gdb_stdout
;
232 saved_output
.err
= gdb_stderr
;
233 saved_output
.log
= gdb_stdlog
;
234 saved_output
.targ
= gdb_stdtarg
;
235 saved_output
.targerr
= gdb_stdtargerr
;
237 /* Let the interpreter do anything it needs. */
238 if (current_interp_set_logging (1, output
, no_redirect_file
) == 0)
243 gdb_stdtarg
= output
;
244 gdb_stdtargerr
= output
;
247 /* Don't do the redirect for MI, it confuses MI's ui-out scheme. */
248 if (!ui_out_is_mi_like_p (current_uiout
))
250 if (ui_out_redirect (current_uiout
, output
) < 0)
251 warning (_("Current output protocol does not support redirection"));
256 set_logging_on (char *args
, int from_tty
)
262 xfree (logging_filename
);
263 logging_filename
= xstrdup (rest
);
265 handle_redirections (from_tty
);
269 set_logging_off (char *args
, int from_tty
)
271 if (saved_filename
== NULL
)
276 fprintf_unfiltered (gdb_stdout
, "Done logging to %s.\n", saved_filename
);
277 xfree (saved_filename
);
278 saved_filename
= NULL
;
282 set_logging_command (char *args
, int from_tty
)
284 printf_unfiltered (_("\"set logging\" lets you log output to a file.\n"
285 "Usage: set logging on [FILENAME]\n"
287 " set logging file FILENAME\n"
288 " set logging overwrite [on|off]\n"
289 " set logging redirect [on|off]\n"));
293 show_logging_command (char *args
, int from_tty
)
296 printf_unfiltered (_("Currently logging to \"%s\".\n"), saved_filename
);
297 if (saved_filename
== NULL
298 || strcmp (logging_filename
, saved_filename
) != 0)
299 printf_unfiltered (_("Future logs will be written to %s.\n"),
302 if (logging_overwrite
)
303 printf_unfiltered (_("Logs will overwrite the log file.\n"));
305 printf_unfiltered (_("Logs will be appended to the log file.\n"));
309 if (logging_redirect
)
310 printf_unfiltered (_("Output is being sent only to the log file.\n"));
312 printf_unfiltered (_("Output is being logged and displayed.\n"));
316 if (logging_redirect
)
317 printf_unfiltered (_("Output will be sent only to the log file.\n"));
319 printf_unfiltered (_("Output will be logged and displayed.\n"));
323 /* Provide a prototype to silence -Wmissing-prototypes. */
324 extern initialize_file_ftype _initialize_cli_logging
;
327 _initialize_cli_logging (void)
329 static struct cmd_list_element
*set_logging_cmdlist
, *show_logging_cmdlist
;
331 add_prefix_cmd ("logging", class_support
, set_logging_command
,
332 _("Set logging options"), &set_logging_cmdlist
,
333 "set logging ", 0, &setlist
);
334 add_prefix_cmd ("logging", class_support
, show_logging_command
,
335 _("Show logging options"), &show_logging_cmdlist
,
336 "show logging ", 0, &showlist
);
337 add_setshow_boolean_cmd ("overwrite", class_support
, &logging_overwrite
, _("\
338 Set whether logging overwrites or appends to the log file."), _("\
339 Show whether logging overwrites or appends to the log file."), _("\
340 If set, logging overrides the log file."),
341 set_logging_overwrite
,
342 show_logging_overwrite
,
343 &set_logging_cmdlist
, &show_logging_cmdlist
);
344 add_setshow_boolean_cmd ("redirect", class_support
, &logging_redirect
, _("\
345 Set the logging output mode."), _("\
346 Show the logging output mode."), _("\
347 If redirect is off, output will go to both the screen and the log file.\n\
348 If redirect is on, output will go only to the log file."),
349 set_logging_redirect
,
350 show_logging_redirect
,
351 &set_logging_cmdlist
, &show_logging_cmdlist
);
352 add_setshow_filename_cmd ("file", class_support
, &logging_filename
, _("\
353 Set the current logfile."), _("\
354 Show the current logfile."), _("\
355 The logfile is used when directing GDB's output."),
357 show_logging_filename
,
358 &set_logging_cmdlist
, &show_logging_cmdlist
);
359 add_cmd ("on", class_support
, set_logging_on
,
360 _("Enable logging."), &set_logging_cmdlist
);
361 add_cmd ("off", class_support
, set_logging_off
,
362 _("Disable logging."), &set_logging_cmdlist
);
364 logging_filename
= xstrdup ("gdb.txt");