2012-09-13 Pedro Alves <palves@redhat.com>
[deliverable/binutils-gdb.git] / gdb / ui-out.h
1 /* Output generating routines for GDB.
2
3 Copyright (C) 1999-2003, 2005, 2007-2012 Free Software Foundation,
4 Inc.
5
6 Contributed by Cygnus Solutions.
7 Written by Fernando Nasser for Cygnus.
8
9 This file is part of GDB.
10
11 This program is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 3 of the License, or
14 (at your option) any later version.
15
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
20
21 You should have received a copy of the GNU General Public License
22 along with this program. If not, see <http://www.gnu.org/licenses/>. */
23
24 #ifndef UI_OUT_H
25 #define UI_OUT_H 1
26
27 /* The ui_out structure */
28
29 struct ui_out;
30 struct ui_file;
31
32 /* the current ui_out */
33
34 /* FIXME: This should not be a global but something passed down from main.c
35 or top.c. */
36 extern struct ui_out *current_uiout;
37
38 /* alignment enum */
39 enum ui_align
40 {
41 ui_left = -1,
42 ui_center,
43 ui_right,
44 ui_noalign
45 };
46
47 /* flags enum */
48 enum ui_flags
49 {
50 ui_from_tty = 1,
51 ui_source_list = 2
52 };
53
54
55 /* Prototypes for ui-out API. */
56
57 /* A result is a recursive data structure consisting of lists and
58 tuples. */
59
60 enum ui_out_type
61 {
62 ui_out_type_tuple,
63 ui_out_type_list
64 };
65
66 extern void ui_out_begin (struct ui_out *uiout,
67 enum ui_out_type level_type,
68 const char *id);
69
70 extern void ui_out_end (struct ui_out *uiout, enum ui_out_type type);
71
72 extern struct cleanup *ui_out_begin_cleanup_end (struct ui_out *uiout,
73 enum ui_out_type level_type,
74 const char *id);
75
76 /* A table can be considered a special tuple/list combination with the
77 implied structure: ``table = { hdr = { header, ... } , body = [ {
78 field, ... }, ... ] }''. If NR_ROWS is negative then there is at
79 least one row. */
80 extern void ui_out_table_header (struct ui_out *uiout, int width,
81 enum ui_align align, const char *col_name,
82 const char *colhdr);
83
84 extern void ui_out_table_body (struct ui_out *uiout);
85
86 extern struct cleanup *make_cleanup_ui_out_table_begin_end (struct ui_out *ui_out,
87 int nr_cols,
88 int nr_rows,
89 const char *tblid);
90 /* Compatibility wrappers. */
91
92 extern struct cleanup *make_cleanup_ui_out_list_begin_end (struct ui_out *uiout,
93 const char *id);
94
95 extern struct cleanup *make_cleanup_ui_out_tuple_begin_end (struct ui_out *uiout,
96 const char *id);
97
98 extern void ui_out_field_int (struct ui_out *uiout, const char *fldname,
99 int value);
100
101 extern void ui_out_field_fmt_int (struct ui_out *uiout, int width,
102 enum ui_align align, const char *fldname,
103 int value);
104
105 /* Output a field containing an address. */
106
107 extern void ui_out_field_core_addr (struct ui_out *uiout, const char *fldname,
108 struct gdbarch *gdbarch, CORE_ADDR address);
109
110 extern void ui_out_field_string (struct ui_out * uiout, const char *fldname,
111 const char *string);
112
113 extern void ui_out_field_stream (struct ui_out *uiout, const char *fldname,
114 struct ui_file *stream);
115
116 extern void ui_out_field_fmt (struct ui_out *uiout, const char *fldname,
117 const char *format, ...)
118 ATTRIBUTE_PRINTF (3, 4);
119
120 extern void ui_out_field_skip (struct ui_out *uiout, const char *fldname);
121
122 extern void ui_out_spaces (struct ui_out *uiout, int numspaces);
123
124 extern void ui_out_text (struct ui_out *uiout, const char *string);
125
126 extern void ui_out_message (struct ui_out *uiout, int verbosity,
127 const char *format, ...)
128 ATTRIBUTE_PRINTF (3, 4);
129
130 extern void ui_out_wrap_hint (struct ui_out *uiout, char *identstring);
131
132 extern void ui_out_flush (struct ui_out *uiout);
133
134 extern int ui_out_set_flags (struct ui_out *uiout, int mask);
135
136 extern int ui_out_clear_flags (struct ui_out *uiout, int mask);
137
138 extern int ui_out_get_verblvl (struct ui_out *uiout);
139
140 extern int ui_out_test_flags (struct ui_out *uiout, int mask);
141
142 extern int ui_out_query_field (struct ui_out *uiout, int colno,
143 int *width, int *alignment, char **col_name);
144
145 /* HACK: Code in GDB is currently checking to see the type of ui_out
146 builder when determining which output to produce. This function is
147 a hack to encapsulate that test. Once GDB manages to separate the
148 CLI/MI from the core of GDB the problem should just go away .... */
149
150 extern int ui_out_is_mi_like_p (struct ui_out *uiout);
151
152 /* From here on we have things that are only needed by implementation
153 routines and main.c. We should pehaps have a separate file for that,
154 like a ui-out-impl.h file. */
155
156 /* User Interface Output Implementation Function Table */
157
158 /* Type definition of all implementation functions. */
159
160 typedef void (table_begin_ftype) (struct ui_out * uiout,
161 int nbrofcols, int nr_rows,
162 const char *tblid);
163 typedef void (table_body_ftype) (struct ui_out * uiout);
164 typedef void (table_end_ftype) (struct ui_out * uiout);
165 typedef void (table_header_ftype) (struct ui_out * uiout, int width,
166 enum ui_align align, const char *col_name,
167 const char *colhdr);
168 /* Note: level 0 is the top-level so LEVEL is always greater than
169 zero. */
170 typedef void (ui_out_begin_ftype) (struct ui_out *uiout,
171 enum ui_out_type type,
172 int level, const char *id);
173 typedef void (ui_out_end_ftype) (struct ui_out *uiout,
174 enum ui_out_type type,
175 int level);
176 typedef void (field_int_ftype) (struct ui_out * uiout, int fldno, int width,
177 enum ui_align align,
178 const char *fldname, int value);
179 typedef void (field_skip_ftype) (struct ui_out * uiout, int fldno, int width,
180 enum ui_align align,
181 const char *fldname);
182 typedef void (field_string_ftype) (struct ui_out * uiout, int fldno, int width,
183 enum ui_align align,
184 const char *fldname,
185 const char *string);
186 typedef void (field_fmt_ftype) (struct ui_out * uiout, int fldno, int width,
187 enum ui_align align,
188 const char *fldname,
189 const char *format,
190 va_list args) ATTRIBUTE_FPTR_PRINTF(6,0);
191 typedef void (spaces_ftype) (struct ui_out * uiout, int numspaces);
192 typedef void (text_ftype) (struct ui_out * uiout,
193 const char *string);
194 typedef void (message_ftype) (struct ui_out * uiout, int verbosity,
195 const char *format, va_list args)
196 ATTRIBUTE_FPTR_PRINTF(3,0);
197 typedef void (wrap_hint_ftype) (struct ui_out * uiout, char *identstring);
198 typedef void (flush_ftype) (struct ui_out * uiout);
199 typedef int (redirect_ftype) (struct ui_out * uiout,
200 struct ui_file * outstream);
201
202 /* ui-out-impl */
203
204 /* IMPORTANT: If you change this structure, make sure to change the default
205 initialization in ui-out.c. */
206
207 struct ui_out_impl
208 {
209 table_begin_ftype *table_begin;
210 table_body_ftype *table_body;
211 table_end_ftype *table_end;
212 table_header_ftype *table_header;
213 ui_out_begin_ftype *begin;
214 ui_out_end_ftype *end;
215 field_int_ftype *field_int;
216 field_skip_ftype *field_skip;
217 field_string_ftype *field_string;
218 field_fmt_ftype *field_fmt;
219 spaces_ftype *spaces;
220 text_ftype *text;
221 message_ftype *message;
222 wrap_hint_ftype *wrap_hint;
223 flush_ftype *flush;
224 redirect_ftype *redirect;
225 int is_mi_like_p;
226 };
227
228 extern void *ui_out_data (struct ui_out *uiout);
229
230 extern void uo_field_string (struct ui_out *uiout, int fldno, int width,
231 enum ui_align align, const char *fldname,
232 const char *string);
233
234 /* Create a ui_out object */
235
236 extern struct ui_out *ui_out_new (struct ui_out_impl *impl,
237 void *data,
238 int flags);
239
240 /* Redirect the ouptut of a ui_out object temporarily. */
241
242 extern int ui_out_redirect (struct ui_out *uiout, struct ui_file *outstream);
243
244 #endif /* UI_OUT_H */
This page took 0.126289 seconds and 4 git commands to generate.