1 /* MI Command Set - file commands.
2 Copyright (C) 2000-2013 Free Software Foundation, Inc.
3 Contributed by Cygnus Solutions (a Red Hat company).
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/>. */
22 #include "mi-getopt.h"
29 /* Return to the client the absolute path and line number of the
30 current file being executed. */
33 mi_cmd_file_list_exec_source_file (char *command, char **argv, int argc)
35 struct symtab_and_line st;
36 struct ui_out *uiout = current_uiout;
38 if (!mi_valid_noargs ("-file-list-exec-source-file", argc, argv))
39 error (_("-file-list-exec-source-file: Usage: No args"));
41 /* Set the default file and line, also get them. */
42 set_default_source_symtab_and_line ();
43 st = get_current_source_symtab_and_line ();
45 /* We should always get a symtab. Apparently, filename does not
46 need to be tested for NULL. The documentation in symtab.h
47 suggests it will always be correct. */
49 error (_("-file-list-exec-source-file: No symtab"));
51 /* Print to the user the line, filename and fullname. */
52 ui_out_field_int (uiout, "line", st.line);
53 ui_out_field_string (uiout, "file",
54 symtab_to_filename_for_display (st.symtab));
56 ui_out_field_string (uiout, "fullname", symtab_to_fullname (st.symtab));
58 ui_out_field_int (uiout, "macro-info", st.symtab->macro_table ? 1 : 0);
61 /* A callback for map_partial_symbol_filenames. */
64 print_partial_file_name (const char *filename, const char *fullname,
67 struct ui_out *uiout = current_uiout;
69 ui_out_begin (uiout, ui_out_type_tuple, NULL);
71 ui_out_field_string (uiout, "file", filename);
74 ui_out_field_string (uiout, "fullname", fullname);
76 ui_out_end (uiout, ui_out_type_tuple);
80 mi_cmd_file_list_exec_source_files (char *command, char **argv, int argc)
82 struct ui_out *uiout = current_uiout;
84 struct objfile *objfile;
86 if (!mi_valid_noargs ("-file-list-exec-source-files", argc, argv))
87 error (_("-file-list-exec-source-files: Usage: No args"));
89 /* Print the table header. */
90 ui_out_begin (uiout, ui_out_type_list, "files");
92 /* Look at all of the symtabs. */
93 ALL_SYMTABS (objfile, s)
95 ui_out_begin (uiout, ui_out_type_tuple, NULL);
97 ui_out_field_string (uiout, "file", symtab_to_filename_for_display (s));
98 ui_out_field_string (uiout, "fullname", symtab_to_fullname (s));
100 ui_out_end (uiout, ui_out_type_tuple);
103 map_partial_symbol_filenames (print_partial_file_name, NULL,
104 1 /*need_fullname*/);
106 ui_out_end (uiout, ui_out_type_list);