2011-08-04 Pedro Alves <pedro@codesourcery.com>
[deliverable/binutils-gdb.git] / gdb / mi / mi-cmd-file.c
CommitLineData
1abaf70c 1/* MI Command Set - breakpoint and watchpoint commands.
7b6bb8da 2 Copyright (C) 2000, 2001, 2002, 2007, 2008, 2009, 2010, 2011
0fb0cc75 3 Free Software Foundation, Inc.
1abaf70c
BR
4 Contributed by Cygnus Solutions (a Red Hat company).
5
6 This file is part of GDB.
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
a9762ec7 10 the Free Software Foundation; either version 3 of the License, or
1abaf70c
BR
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
a9762ec7 19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
1abaf70c
BR
20
21#include "defs.h"
22#include "mi-cmds.h"
23#include "mi-getopt.h"
24#include "ui-out.h"
25#include "symtab.h"
26#include "source.h"
57c22c6c 27#include "objfiles.h"
ccefe4c4 28#include "psymtab.h"
1abaf70c
BR
29
30/* Return to the client the absolute path and line number of the
31 current file being executed. */
32
ce8f13f8 33void
17784837 34mi_cmd_file_list_exec_source_file (char *command, char **argv, int argc)
1abaf70c
BR
35{
36 struct symtab_and_line st;
79a45e25 37 struct ui_out *uiout = current_uiout;
1abaf70c 38
1b05df00
TT
39 if (!mi_valid_noargs ("-file-list-exec-source-file", argc, argv))
40 error (_("-file-list-exec-source-file: Usage: No args"));
1abaf70c 41
1abaf70c 42 /* Set the default file and line, also get them */
17784837
NR
43 set_default_source_symtab_and_line ();
44 st = get_current_source_symtab_and_line ();
1abaf70c
BR
45
46 /* We should always get a symtab.
47 Apparently, filename does not need to be tested for NULL.
48 The documentation in symtab.h suggests it will always be correct */
49 if (!st.symtab)
1b05df00 50 error (_("-file-list-exec-source-file: No symtab"));
1abaf70c
BR
51
52 /* Extract the fullname if it is not known yet */
57c22c6c 53 symtab_to_fullname (st.symtab);
1abaf70c
BR
54
55 /* Print to the user the line, filename and fullname */
56 ui_out_field_int (uiout, "line", st.line);
57 ui_out_field_string (uiout, "file", st.symtab->filename);
57c22c6c
BR
58
59 /* We may not be able to open the file (not available). */
60 if (st.symtab->fullname)
1abaf70c
BR
61 ui_out_field_string (uiout, "fullname", st.symtab->fullname);
62
17784837 63 ui_out_field_int (uiout, "macro-info", st.symtab->macro_table ? 1 : 0);
1abaf70c 64}
57c22c6c 65
ccefe4c4
TT
66/* A callback for map_partial_symbol_filenames. */
67static void
68print_partial_file_name (const char *filename, const char *fullname,
69 void *ignore)
70{
79a45e25
PA
71 struct ui_out *uiout = current_uiout;
72
ccefe4c4
TT
73 ui_out_begin (uiout, ui_out_type_tuple, NULL);
74
75 ui_out_field_string (uiout, "file", filename);
76
77 if (fullname)
78 ui_out_field_string (uiout, "fullname", fullname);
79
80 ui_out_end (uiout, ui_out_type_tuple);
81}
82
ce8f13f8 83void
57c22c6c
BR
84mi_cmd_file_list_exec_source_files (char *command, char **argv, int argc)
85{
79a45e25 86 struct ui_out *uiout = current_uiout;
57c22c6c 87 struct symtab *s;
57c22c6c
BR
88 struct objfile *objfile;
89
1b05df00
TT
90 if (!mi_valid_noargs ("-file-list-exec-source-files", argc, argv))
91 error (_("-file-list-exec-source-files: Usage: No args"));
57c22c6c
BR
92
93 /* Print the table header */
94 ui_out_begin (uiout, ui_out_type_list, "files");
95
96 /* Look at all of the symtabs */
97 ALL_SYMTABS (objfile, s)
98 {
99 ui_out_begin (uiout, ui_out_type_tuple, NULL);
100
101 ui_out_field_string (uiout, "file", s->filename);
102
103 /* Extract the fullname if it is not known yet */
104 symtab_to_fullname (s);
105
106 if (s->fullname)
107 ui_out_field_string (uiout, "fullname", s->fullname);
108
109 ui_out_end (uiout, ui_out_type_tuple);
110 }
111
ccefe4c4 112 map_partial_symbol_filenames (print_partial_file_name, NULL);
57c22c6c
BR
113
114 ui_out_end (uiout, ui_out_type_list);
57c22c6c 115}
This page took 0.738275 seconds and 4 git commands to generate.