Update
[gdb.git] / gdb / mi / mi-out.c
blob7313c24344c39deeca10ba628845ee6f2b67f35a
1 /* MI Command Set - output generating routines.
3 Copyright (C) 2000, 2002, 2003, 2004, 2005, 2007, 2008
4 Free Software Foundation, Inc.
6 Contributed by Cygnus Solutions (a Red Hat company).
8 This file is part of GDB.
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 3 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>. */
23 #include "defs.h"
24 #include "ui-out.h"
25 #include "mi-out.h"
27 struct ui_out_data
29 int suppress_field_separator;
30 int suppress_output;
31 int mi_version;
32 struct ui_file *buffer;
34 typedef struct ui_out_data mi_out_data;
36 /* These are the MI output functions */
38 static void mi_table_begin (struct ui_out *uiout, int nbrofcols,
39 int nr_rows, const char *tblid);
40 static void mi_table_body (struct ui_out *uiout);
41 static void mi_table_end (struct ui_out *uiout);
42 static void mi_table_header (struct ui_out *uiout, int width,
43 enum ui_align alig, const char *col_name,
44 const char *colhdr);
45 static void mi_begin (struct ui_out *uiout, enum ui_out_type type,
46 int level, const char *id);
47 static void mi_end (struct ui_out *uiout, enum ui_out_type type, int level);
48 static void mi_field_int (struct ui_out *uiout, int fldno, int width,
49 enum ui_align alig, const char *fldname, int value);
50 static void mi_field_skip (struct ui_out *uiout, int fldno, int width,
51 enum ui_align alig, const char *fldname);
52 static void mi_field_string (struct ui_out *uiout, int fldno, int width,
53 enum ui_align alig, const char *fldname,
54 const char *string);
55 static void mi_field_fmt (struct ui_out *uiout, int fldno,
56 int width, enum ui_align align,
57 const char *fldname, const char *format,
58 va_list args) ATTR_FORMAT (printf, 6, 0);
59 static void mi_spaces (struct ui_out *uiout, int numspaces);
60 static void mi_text (struct ui_out *uiout, const char *string);
61 static void mi_message (struct ui_out *uiout, int verbosity,
62 const char *format, va_list args)
63 ATTR_FORMAT (printf, 3, 0);
64 static void mi_wrap_hint (struct ui_out *uiout, char *identstring);
65 static void mi_flush (struct ui_out *uiout);
67 /* This is the MI ui-out implementation functions vector */
69 /* FIXME: This can be initialized dynamically after default is set to
70 handle initial output in main.c */
72 struct ui_out_impl mi_ui_out_impl =
74 mi_table_begin,
75 mi_table_body,
76 mi_table_end,
77 mi_table_header,
78 mi_begin,
79 mi_end,
80 mi_field_int,
81 mi_field_skip,
82 mi_field_string,
83 mi_field_fmt,
84 mi_spaces,
85 mi_text,
86 mi_message,
87 mi_wrap_hint,
88 mi_flush,
89 NULL,
90 1, /* Needs MI hacks. */
93 /* Prototypes for local functions */
95 extern void _initialize_mi_out (void);
96 static void field_separator (struct ui_out *uiout);
97 static void mi_open (struct ui_out *uiout, const char *name,
98 enum ui_out_type type);
99 static void mi_close (struct ui_out *uiout, enum ui_out_type type);
101 /* Mark beginning of a table */
103 void
104 mi_table_begin (struct ui_out *uiout,
105 int nr_cols,
106 int nr_rows,
107 const char *tblid)
109 mi_out_data *data = ui_out_data (uiout);
110 mi_open (uiout, tblid, ui_out_type_tuple);
111 mi_field_int (uiout, -1/*fldno*/, -1/*width*/, -1/*alin*/,
112 "nr_rows", nr_rows);
113 mi_field_int (uiout, -1/*fldno*/, -1/*width*/, -1/*alin*/,
114 "nr_cols", nr_cols);
115 mi_open (uiout, "hdr", ui_out_type_list);
118 /* Mark beginning of a table body */
120 void
121 mi_table_body (struct ui_out *uiout)
123 mi_out_data *data = ui_out_data (uiout);
124 if (data->suppress_output)
125 return;
126 /* close the table header line if there were any headers */
127 mi_close (uiout, ui_out_type_list);
128 mi_open (uiout, "body", ui_out_type_list);
131 /* Mark end of a table */
133 void
134 mi_table_end (struct ui_out *uiout)
136 mi_out_data *data = ui_out_data (uiout);
137 data->suppress_output = 0;
138 mi_close (uiout, ui_out_type_list); /* body */
139 mi_close (uiout, ui_out_type_tuple);
142 /* Specify table header */
144 void
145 mi_table_header (struct ui_out *uiout, int width, enum ui_align alignment,
146 const char *col_name,
147 const char *colhdr)
149 mi_out_data *data = ui_out_data (uiout);
150 if (data->suppress_output)
151 return;
152 mi_open (uiout, NULL, ui_out_type_tuple);
153 mi_field_int (uiout, 0, 0, 0, "width", width);
154 mi_field_int (uiout, 0, 0, 0, "alignment", alignment);
155 mi_field_string (uiout, 0, 0, 0, "col_name", col_name);
156 mi_field_string (uiout, 0, width, alignment, "colhdr", colhdr);
157 mi_close (uiout, ui_out_type_tuple);
160 /* Mark beginning of a list */
162 void
163 mi_begin (struct ui_out *uiout,
164 enum ui_out_type type,
165 int level,
166 const char *id)
168 mi_out_data *data = ui_out_data (uiout);
169 if (data->suppress_output)
170 return;
171 mi_open (uiout, id, type);
174 /* Mark end of a list */
176 void
177 mi_end (struct ui_out *uiout,
178 enum ui_out_type type,
179 int level)
181 mi_out_data *data = ui_out_data (uiout);
182 if (data->suppress_output)
183 return;
184 mi_close (uiout, type);
187 /* output an int field */
189 void
190 mi_field_int (struct ui_out *uiout, int fldno, int width,
191 enum ui_align alignment, const char *fldname, int value)
193 char buffer[20]; /* FIXME: how many chars long a %d can become? */
194 mi_out_data *data = ui_out_data (uiout);
195 if (data->suppress_output)
196 return;
198 sprintf (buffer, "%d", value);
199 mi_field_string (uiout, fldno, width, alignment, fldname, buffer);
202 /* used to ommit a field */
204 void
205 mi_field_skip (struct ui_out *uiout, int fldno, int width,
206 enum ui_align alignment, const char *fldname)
208 mi_out_data *data = ui_out_data (uiout);
209 if (data->suppress_output)
210 return;
211 mi_field_string (uiout, fldno, width, alignment, fldname, "");
214 /* other specific mi_field_* end up here so alignment and field
215 separators are both handled by mi_field_string */
217 void
218 mi_field_string (struct ui_out *uiout,
219 int fldno,
220 int width,
221 enum ui_align align,
222 const char *fldname,
223 const char *string)
225 mi_out_data *data = ui_out_data (uiout);
226 if (data->suppress_output)
227 return;
228 field_separator (uiout);
229 if (fldname)
230 fprintf_unfiltered (data->buffer, "%s=", fldname);
231 fprintf_unfiltered (data->buffer, "\"");
232 if (string)
233 fputstr_unfiltered (string, '"', data->buffer);
234 fprintf_unfiltered (data->buffer, "\"");
237 /* This is the only field function that does not align */
239 void
240 mi_field_fmt (struct ui_out *uiout, int fldno,
241 int width, enum ui_align align,
242 const char *fldname,
243 const char *format,
244 va_list args)
246 mi_out_data *data = ui_out_data (uiout);
247 if (data->suppress_output)
248 return;
249 field_separator (uiout);
250 if (fldname)
251 fprintf_unfiltered (data->buffer, "%s=\"", fldname);
252 else
253 fputs_unfiltered ("\"", data->buffer);
254 vfprintf_unfiltered (data->buffer, format, args);
255 fputs_unfiltered ("\"", data->buffer);
258 void
259 mi_spaces (struct ui_out *uiout, int numspaces)
263 void
264 mi_text (struct ui_out *uiout, const char *string)
268 void
269 mi_message (struct ui_out *uiout, int verbosity,
270 const char *format,
271 va_list args)
275 void
276 mi_wrap_hint (struct ui_out *uiout, char *identstring)
278 wrap_here (identstring);
281 void
282 mi_flush (struct ui_out *uiout)
284 mi_out_data *data = ui_out_data (uiout);
285 gdb_flush (data->buffer);
288 /* local functions */
290 /* access to ui_out format private members */
292 static void
293 field_separator (struct ui_out *uiout)
295 mi_out_data *data = ui_out_data (uiout);
296 if (data->suppress_field_separator)
297 data->suppress_field_separator = 0;
298 else
299 fputc_unfiltered (',', data->buffer);
302 static void
303 mi_open (struct ui_out *uiout,
304 const char *name,
305 enum ui_out_type type)
307 mi_out_data *data = ui_out_data (uiout);
308 field_separator (uiout);
309 data->suppress_field_separator = 1;
310 if (name)
311 fprintf_unfiltered (data->buffer, "%s=", name);
312 switch (type)
314 case ui_out_type_tuple:
315 fputc_unfiltered ('{', data->buffer);
316 break;
317 case ui_out_type_list:
318 fputc_unfiltered ('[', data->buffer);
319 break;
320 default:
321 internal_error (__FILE__, __LINE__, _("bad switch"));
325 static void
326 mi_close (struct ui_out *uiout,
327 enum ui_out_type type)
329 mi_out_data *data = ui_out_data (uiout);
330 switch (type)
332 case ui_out_type_tuple:
333 fputc_unfiltered ('}', data->buffer);
334 break;
335 case ui_out_type_list:
336 fputc_unfiltered (']', data->buffer);
337 break;
338 default:
339 internal_error (__FILE__, __LINE__, _("bad switch"));
341 data->suppress_field_separator = 0;
344 /* add a string to the buffer */
346 void
347 mi_out_buffered (struct ui_out *uiout, char *string)
349 mi_out_data *data = ui_out_data (uiout);
350 fprintf_unfiltered (data->buffer, "%s", string);
353 /* clear the buffer */
355 void
356 mi_out_rewind (struct ui_out *uiout)
358 mi_out_data *data = ui_out_data (uiout);
359 ui_file_rewind (data->buffer);
362 /* dump the buffer onto the specified stream */
364 static void
365 do_write (void *data, const char *buffer, long length_buffer)
367 ui_file_write (data, buffer, length_buffer);
370 void
371 mi_out_put (struct ui_out *uiout,
372 struct ui_file *stream)
374 mi_out_data *data = ui_out_data (uiout);
375 ui_file_put (data->buffer, do_write, stream);
376 ui_file_rewind (data->buffer);
379 /* Current MI version. */
382 mi_version (struct ui_out *uiout)
384 mi_out_data *data = ui_out_data (uiout);
385 return data->mi_version;
388 /* initalize private members at startup */
390 struct ui_out *
391 mi_out_new (int mi_version)
393 int flags = 0;
394 mi_out_data *data = XMALLOC (mi_out_data);
395 data->suppress_field_separator = 0;
396 data->suppress_output = 0;
397 data->mi_version = mi_version;
398 /* FIXME: This code should be using a ``string_file'' and not the
399 TUI buffer hack. */
400 data->buffer = mem_fileopen ();
401 return ui_out_new (&mi_ui_out_impl, data, flags);
404 /* standard gdb initialization hook */
405 void
406 _initialize_mi_out (void)
408 /* nothing happens here */