btrace: split record_btrace_step_thread
[deliverable/binutils-gdb.git] / gdb / ui-out.c
... / ...
CommitLineData
1/* Output generating routines for GDB.
2
3 Copyright (C) 1999-2015 Free Software Foundation, Inc.
4
5 Contributed by Cygnus Solutions.
6 Written by Fernando Nasser for Cygnus.
7
8 This file is part of GDB.
9
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.
14
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.
19
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/>. */
22
23#include "defs.h"
24#include "expression.h" /* For language.h */
25#include "language.h"
26#include "ui-out.h"
27
28/* table header structures */
29
30struct ui_out_hdr
31 {
32 int colno;
33 int width;
34 enum ui_align alignment;
35 char *col_name;
36 char *colhdr;
37 struct ui_out_hdr *next;
38 };
39
40/* Maintain a stack so that the info applicable to the inner most list
41 is always available. Stack/nested level 0 is reserved for the
42 top-level result. */
43
44enum { MAX_UI_OUT_LEVELS = 8 };
45
46struct ui_out_level
47 {
48 /* Count each field; the first element is for non-list fields. */
49 int field_count;
50 /* The type of this level. */
51 enum ui_out_type type;
52 };
53
54/* Define uiout->level vector types and operations. */
55typedef struct ui_out_level *ui_out_level_p;
56DEF_VEC_P (ui_out_level_p);
57
58/* Tables are special. Maintain a separate structure that tracks
59 their state. At present an output can only contain a single table
60 but that restriction might eventually be lifted. */
61
62struct ui_out_table
63{
64 /* If on, a table is being generated. */
65 int flag;
66
67 /* If on, the body of a table is being generated. If off, the table
68 header is being generated. */
69 int body_flag;
70
71 /* The level at which each entry of the table is to be found. A row
72 (a tuple) is made up of entries. Consequently ENTRY_LEVEL is one
73 above that of the table. */
74 int entry_level;
75
76 /* Number of table columns (as specified in the table_begin call). */
77 int columns;
78
79 /* String identifying the table (as specified in the table_begin
80 call). */
81 char *id;
82
83 /* Points to the first table header (if any). */
84 struct ui_out_hdr *header_first;
85
86 /* Points to the last table header (if any). */
87 struct ui_out_hdr *header_last;
88
89 /* Points to header of NEXT column to format. */
90 struct ui_out_hdr *header_next;
91
92};
93
94
95/* The ui_out structure */
96/* Any change here requires a corresponding one in the initialization
97 of the default uiout, which is statically initialized. */
98
99struct ui_out
100 {
101 int flags;
102 /* Specific implementation of ui-out. */
103 const struct ui_out_impl *impl;
104 void *data;
105
106 /* Current level. */
107 int level;
108
109 /* Vector to store and track the ui-out levels. */
110 VEC (ui_out_level_p) *levels;
111
112 /* A table, if any. At present only a single table is supported. */
113 struct ui_out_table table;
114 };
115
116/* The current (inner most) level. */
117static struct ui_out_level *
118current_level (struct ui_out *uiout)
119{
120 return VEC_index (ui_out_level_p, uiout->levels, uiout->level);
121}
122
123/* Create a new level, of TYPE. Return the new level's index. */
124static int
125push_level (struct ui_out *uiout,
126 enum ui_out_type type,
127 const char *id)
128{
129 struct ui_out_level *current;
130
131 uiout->level++;
132 current = XNEW (struct ui_out_level);
133 current->field_count = 0;
134 current->type = type;
135 VEC_safe_push (ui_out_level_p, uiout->levels, current);
136 return uiout->level;
137}
138
139/* Discard the current level, return the discarded level's index.
140 TYPE is the type of the level being discarded. */
141static int
142pop_level (struct ui_out *uiout,
143 enum ui_out_type type)
144{
145 struct ui_out_level *current;
146
147 /* We had better not underflow the buffer. */
148 gdb_assert (uiout->level > 0);
149 gdb_assert (current_level (uiout)->type == type);
150 current = VEC_pop (ui_out_level_p, uiout->levels);
151 xfree (current);
152 uiout->level--;
153 return uiout->level + 1;
154}
155
156
157/* These are the default implementation functions. */
158
159static void default_table_begin (struct ui_out *uiout, int nbrofcols,
160 int nr_rows, const char *tblid);
161static void default_table_body (struct ui_out *uiout);
162static void default_table_end (struct ui_out *uiout);
163static void default_table_header (struct ui_out *uiout, int width,
164 enum ui_align alig, const char *col_name,
165 const char *colhdr);
166static void default_begin (struct ui_out *uiout,
167 enum ui_out_type type,
168 int level, const char *id);
169static void default_end (struct ui_out *uiout,
170 enum ui_out_type type,
171 int level);
172static void default_field_int (struct ui_out *uiout, int fldno, int width,
173 enum ui_align alig,
174 const char *fldname,
175 int value);
176static void default_field_skip (struct ui_out *uiout, int fldno, int width,
177 enum ui_align alig,
178 const char *fldname);
179static void default_field_string (struct ui_out *uiout, int fldno, int width,
180 enum ui_align align,
181 const char *fldname,
182 const char *string);
183static void default_field_fmt (struct ui_out *uiout, int fldno,
184 int width, enum ui_align align,
185 const char *fldname,
186 const char *format,
187 va_list args) ATTRIBUTE_PRINTF (6, 0);
188static void default_spaces (struct ui_out *uiout, int numspaces);
189static void default_text (struct ui_out *uiout, const char *string);
190static void default_message (struct ui_out *uiout, int verbosity,
191 const char *format,
192 va_list args) ATTRIBUTE_PRINTF (3, 0);
193static void default_wrap_hint (struct ui_out *uiout, char *identstring);
194static void default_flush (struct ui_out *uiout);
195static void default_data_destroy (struct ui_out *uiout);
196
197/* This is the default ui-out implementation functions vector. */
198
199const struct ui_out_impl default_ui_out_impl =
200{
201 default_table_begin,
202 default_table_body,
203 default_table_end,
204 default_table_header,
205 default_begin,
206 default_end,
207 default_field_int,
208 default_field_skip,
209 default_field_string,
210 default_field_fmt,
211 default_spaces,
212 default_text,
213 default_message,
214 default_wrap_hint,
215 default_flush,
216 NULL, /* redirect */
217 default_data_destroy,
218 0, /* Does not need MI hacks. */
219};
220
221/* The default ui_out */
222
223struct ui_out def_uiout =
224{
225 0, /* flags */
226 &default_ui_out_impl, /* impl */
227};
228
229/* Pointer to current ui_out */
230/* FIXME: This should not be a global, but something passed down from main.c
231 or top.c. */
232
233struct ui_out *current_uiout = &def_uiout;
234
235/* These are the interfaces to implementation functions. */
236
237static void uo_table_begin (struct ui_out *uiout, int nbrofcols,
238 int nr_rows, const char *tblid);
239static void uo_table_body (struct ui_out *uiout);
240static void uo_table_end (struct ui_out *uiout);
241static void uo_table_header (struct ui_out *uiout, int width,
242 enum ui_align align, const char *col_name,
243 const char *colhdr);
244static void uo_begin (struct ui_out *uiout,
245 enum ui_out_type type,
246 int level, const char *id);
247static void uo_end (struct ui_out *uiout,
248 enum ui_out_type type,
249 int level);
250static void uo_field_int (struct ui_out *uiout, int fldno, int width,
251 enum ui_align align, const char *fldname, int value);
252static void uo_field_skip (struct ui_out *uiout, int fldno, int width,
253 enum ui_align align, const char *fldname);
254static void uo_field_fmt (struct ui_out *uiout, int fldno, int width,
255 enum ui_align align, const char *fldname,
256 const char *format, va_list args)
257 ATTRIBUTE_PRINTF (6, 0);
258static void uo_spaces (struct ui_out *uiout, int numspaces);
259static void uo_text (struct ui_out *uiout, const char *string);
260static void uo_message (struct ui_out *uiout, int verbosity,
261 const char *format, va_list args)
262 ATTRIBUTE_PRINTF (3, 0);
263static void uo_wrap_hint (struct ui_out *uiout, char *identstring);
264static void uo_flush (struct ui_out *uiout);
265static int uo_redirect (struct ui_out *uiout, struct ui_file *outstream);
266static void uo_data_destroy (struct ui_out *uiout);
267
268/* Prototypes for local functions */
269
270extern void _initialize_ui_out (void);
271static void append_header_to_list (struct ui_out *uiout, int width,
272 enum ui_align alignment, const char *col_name,
273 const char *colhdr);
274static int get_next_header (struct ui_out *uiout, int *colno, int *width,
275 enum ui_align *alignment, char **colhdr);
276static void clear_header_list (struct ui_out *uiout);
277static void clear_table (struct ui_out *uiout);
278static void verify_field (struct ui_out *uiout, int *fldno, int *width,
279 enum ui_align *align);
280
281/* exported functions (ui_out API) */
282
283/* Mark beginning of a table. */
284
285static void
286ui_out_table_begin (struct ui_out *uiout, int nbrofcols,
287 int nr_rows,
288 const char *tblid)
289{
290 if (uiout->table.flag)
291 internal_error (__FILE__, __LINE__,
292 _("tables cannot be nested; table_begin found before \
293previous table_end."));
294
295 uiout->table.flag = 1;
296 uiout->table.body_flag = 0;
297 uiout->table.entry_level = uiout->level + 1;
298 uiout->table.columns = nbrofcols;
299 if (tblid != NULL)
300 uiout->table.id = xstrdup (tblid);
301 else
302 uiout->table.id = NULL;
303 clear_header_list (uiout);
304
305 uo_table_begin (uiout, nbrofcols, nr_rows, uiout->table.id);
306}
307
308void
309ui_out_table_body (struct ui_out *uiout)
310{
311 if (!uiout->table.flag)
312 internal_error (__FILE__, __LINE__,
313 _("table_body outside a table is not valid; it must be \
314after a table_begin and before a table_end."));
315 if (uiout->table.body_flag)
316 internal_error (__FILE__, __LINE__,
317 _("extra table_body call not allowed; there must be \
318only one table_body after a table_begin and before a table_end."));
319 if (uiout->table.header_next->colno != uiout->table.columns)
320 internal_error (__FILE__, __LINE__,
321 _("number of headers differ from number of table \
322columns."));
323
324 uiout->table.body_flag = 1;
325 uiout->table.header_next = uiout->table.header_first;
326
327 uo_table_body (uiout);
328}
329
330static void
331ui_out_table_end (struct ui_out *uiout)
332{
333 if (!uiout->table.flag)
334 internal_error (__FILE__, __LINE__,
335 _("misplaced table_end or missing table_begin."));
336
337 uiout->table.entry_level = 0;
338 uiout->table.body_flag = 0;
339 uiout->table.flag = 0;
340
341 uo_table_end (uiout);
342 clear_table (uiout);
343}
344
345void
346ui_out_table_header (struct ui_out *uiout, int width, enum ui_align alignment,
347 const char *col_name,
348 const char *colhdr)
349{
350 if (!uiout->table.flag || uiout->table.body_flag)
351 internal_error (__FILE__, __LINE__,
352 _("table header must be specified after table_begin \
353and before table_body."));
354
355 append_header_to_list (uiout, width, alignment, col_name, colhdr);
356
357 uo_table_header (uiout, width, alignment, col_name, colhdr);
358}
359
360static void
361do_cleanup_table_end (void *data)
362{
363 struct ui_out *ui_out = data;
364
365 ui_out_table_end (ui_out);
366}
367
368struct cleanup *
369make_cleanup_ui_out_table_begin_end (struct ui_out *ui_out, int nr_cols,
370 int nr_rows, const char *tblid)
371{
372 ui_out_table_begin (ui_out, nr_cols, nr_rows, tblid);
373 return make_cleanup (do_cleanup_table_end, ui_out);
374}
375
376void
377ui_out_begin (struct ui_out *uiout,
378 enum ui_out_type type,
379 const char *id)
380{
381 int new_level;
382
383 if (uiout->table.flag && !uiout->table.body_flag)
384 internal_error (__FILE__, __LINE__,
385 _("table header or table_body expected; lists must be \
386specified after table_body."));
387
388 /* Be careful to verify the ``field'' before the new tuple/list is
389 pushed onto the stack. That way the containing list/table/row is
390 verified and not the newly created tuple/list. This verification
391 is needed (at least) for the case where a table row entry
392 contains either a tuple/list. For that case bookkeeping such as
393 updating the column count or advancing to the next heading still
394 needs to be performed. */
395 {
396 int fldno;
397 int width;
398 enum ui_align align;
399
400 verify_field (uiout, &fldno, &width, &align);
401 }
402
403 new_level = push_level (uiout, type, id);
404
405 /* If the push puts us at the same level as a table row entry, we've
406 got a new table row. Put the header pointer back to the start. */
407 if (uiout->table.body_flag
408 && uiout->table.entry_level == new_level)
409 uiout->table.header_next = uiout->table.header_first;
410
411 uo_begin (uiout, type, new_level, id);
412}
413
414void
415ui_out_end (struct ui_out *uiout,
416 enum ui_out_type type)
417{
418 int old_level = pop_level (uiout, type);
419
420 uo_end (uiout, type, old_level);
421}
422
423struct ui_out_end_cleanup_data
424{
425 struct ui_out *uiout;
426 enum ui_out_type type;
427};
428
429static void
430do_cleanup_end (void *data)
431{
432 struct ui_out_end_cleanup_data *end_cleanup_data = data;
433
434 ui_out_end (end_cleanup_data->uiout, end_cleanup_data->type);
435 xfree (end_cleanup_data);
436}
437
438static struct cleanup *
439make_cleanup_ui_out_end (struct ui_out *uiout,
440 enum ui_out_type type)
441{
442 struct ui_out_end_cleanup_data *end_cleanup_data;
443
444 end_cleanup_data = XNEW (struct ui_out_end_cleanup_data);
445 end_cleanup_data->uiout = uiout;
446 end_cleanup_data->type = type;
447 return make_cleanup (do_cleanup_end, end_cleanup_data);
448}
449
450struct cleanup *
451make_cleanup_ui_out_tuple_begin_end (struct ui_out *uiout,
452 const char *id)
453{
454 ui_out_begin (uiout, ui_out_type_tuple, id);
455 return make_cleanup_ui_out_end (uiout, ui_out_type_tuple);
456}
457
458struct cleanup *
459make_cleanup_ui_out_list_begin_end (struct ui_out *uiout,
460 const char *id)
461{
462 ui_out_begin (uiout, ui_out_type_list, id);
463 return make_cleanup_ui_out_end (uiout, ui_out_type_list);
464}
465
466void
467ui_out_field_int (struct ui_out *uiout,
468 const char *fldname,
469 int value)
470{
471 int fldno;
472 int width;
473 enum ui_align align;
474
475 verify_field (uiout, &fldno, &width, &align);
476
477 uo_field_int (uiout, fldno, width, align, fldname, value);
478}
479
480void
481ui_out_field_fmt_int (struct ui_out *uiout,
482 int input_width,
483 enum ui_align input_align,
484 const char *fldname,
485 int value)
486{
487 int fldno;
488 int width;
489 enum ui_align align;
490
491 verify_field (uiout, &fldno, &width, &align);
492
493 uo_field_int (uiout, fldno, input_width, input_align, fldname, value);
494}
495
496/* Documented in ui-out.h. */
497
498void
499ui_out_field_core_addr (struct ui_out *uiout,
500 const char *fldname,
501 struct gdbarch *gdbarch,
502 CORE_ADDR address)
503{
504 ui_out_field_string (uiout, fldname,
505 print_core_address (gdbarch, address));
506}
507
508void
509ui_out_field_stream (struct ui_out *uiout,
510 const char *fldname,
511 struct ui_file *stream)
512{
513 long length;
514 char *buffer = ui_file_xstrdup (stream, &length);
515 struct cleanup *old_cleanup = make_cleanup (xfree, buffer);
516
517 if (length > 0)
518 ui_out_field_string (uiout, fldname, buffer);
519 else
520 ui_out_field_skip (uiout, fldname);
521 ui_file_rewind (stream);
522 do_cleanups (old_cleanup);
523}
524
525/* Used to omit a field. */
526
527void
528ui_out_field_skip (struct ui_out *uiout,
529 const char *fldname)
530{
531 int fldno;
532 int width;
533 enum ui_align align;
534
535 verify_field (uiout, &fldno, &width, &align);
536
537 uo_field_skip (uiout, fldno, width, align, fldname);
538}
539
540void
541ui_out_field_string (struct ui_out *uiout,
542 const char *fldname,
543 const char *string)
544{
545 int fldno;
546 int width;
547 enum ui_align align;
548
549 verify_field (uiout, &fldno, &width, &align);
550
551 uo_field_string (uiout, fldno, width, align, fldname, string);
552}
553
554/* VARARGS */
555void
556ui_out_field_fmt (struct ui_out *uiout,
557 const char *fldname,
558 const char *format, ...)
559{
560 va_list args;
561 int fldno;
562 int width;
563 enum ui_align align;
564
565 /* Will not align, but has to call anyway. */
566 verify_field (uiout, &fldno, &width, &align);
567
568 va_start (args, format);
569
570 uo_field_fmt (uiout, fldno, width, align, fldname, format, args);
571
572 va_end (args);
573}
574
575void
576ui_out_spaces (struct ui_out *uiout, int numspaces)
577{
578 uo_spaces (uiout, numspaces);
579}
580
581void
582ui_out_text (struct ui_out *uiout,
583 const char *string)
584{
585 uo_text (uiout, string);
586}
587
588void
589ui_out_message (struct ui_out *uiout, int verbosity,
590 const char *format,...)
591{
592 va_list args;
593
594 va_start (args, format);
595 uo_message (uiout, verbosity, format, args);
596 va_end (args);
597}
598
599void
600ui_out_wrap_hint (struct ui_out *uiout, char *identstring)
601{
602 uo_wrap_hint (uiout, identstring);
603}
604
605void
606ui_out_flush (struct ui_out *uiout)
607{
608 uo_flush (uiout);
609}
610
611int
612ui_out_redirect (struct ui_out *uiout, struct ui_file *outstream)
613{
614 return uo_redirect (uiout, outstream);
615}
616
617/* Set the flags specified by the mask given. */
618int
619ui_out_set_flags (struct ui_out *uiout, int mask)
620{
621 int oldflags = uiout->flags;
622
623 uiout->flags |= mask;
624 return oldflags;
625}
626
627/* Clear the flags specified by the mask given. */
628int
629ui_out_clear_flags (struct ui_out *uiout, int mask)
630{
631 int oldflags = uiout->flags;
632
633 uiout->flags &= ~mask;
634 return oldflags;
635}
636
637/* Test the flags against the mask given. */
638int
639ui_out_test_flags (struct ui_out *uiout, int mask)
640{
641 return (uiout->flags & mask);
642}
643
644/* Obtain the current verbosity level (as stablished by the
645 'set verbositylevel' command. */
646
647int
648ui_out_get_verblvl (struct ui_out *uiout)
649{
650 /* FIXME: not implemented yet. */
651 return 0;
652}
653
654int
655ui_out_is_mi_like_p (struct ui_out *uiout)
656{
657 return uiout->impl->is_mi_like_p;
658}
659
660/* Default gdb-out hook functions. */
661
662static void
663default_table_begin (struct ui_out *uiout, int nbrofcols,
664 int nr_rows,
665 const char *tblid)
666{
667}
668
669static void
670default_table_body (struct ui_out *uiout)
671{
672}
673
674static void
675default_table_end (struct ui_out *uiout)
676{
677}
678
679static void
680default_table_header (struct ui_out *uiout, int width, enum ui_align alignment,
681 const char *col_name,
682 const char *colhdr)
683{
684}
685
686static void
687default_begin (struct ui_out *uiout,
688 enum ui_out_type type,
689 int level,
690 const char *id)
691{
692}
693
694static void
695default_end (struct ui_out *uiout,
696 enum ui_out_type type,
697 int level)
698{
699}
700
701static void
702default_field_int (struct ui_out *uiout, int fldno, int width,
703 enum ui_align align,
704 const char *fldname, int value)
705{
706}
707
708static void
709default_field_skip (struct ui_out *uiout, int fldno, int width,
710 enum ui_align align, const char *fldname)
711{
712}
713
714static void
715default_field_string (struct ui_out *uiout,
716 int fldno,
717 int width,
718 enum ui_align align,
719 const char *fldname,
720 const char *string)
721{
722}
723
724static void
725default_field_fmt (struct ui_out *uiout, int fldno, int width,
726 enum ui_align align,
727 const char *fldname,
728 const char *format,
729 va_list args)
730{
731}
732
733static void
734default_spaces (struct ui_out *uiout, int numspaces)
735{
736}
737
738static void
739default_text (struct ui_out *uiout, const char *string)
740{
741}
742
743static void
744default_message (struct ui_out *uiout, int verbosity,
745 const char *format,
746 va_list args)
747{
748}
749
750static void
751default_wrap_hint (struct ui_out *uiout, char *identstring)
752{
753}
754
755static void
756default_flush (struct ui_out *uiout)
757{
758}
759
760static void
761default_data_destroy (struct ui_out *uiout)
762{
763}
764
765/* Interface to the implementation functions. */
766
767void
768uo_table_begin (struct ui_out *uiout, int nbrofcols,
769 int nr_rows,
770 const char *tblid)
771{
772 if (!uiout->impl->table_begin)
773 return;
774 uiout->impl->table_begin (uiout, nbrofcols, nr_rows, tblid);
775}
776
777void
778uo_table_body (struct ui_out *uiout)
779{
780 if (!uiout->impl->table_body)
781 return;
782 uiout->impl->table_body (uiout);
783}
784
785void
786uo_table_end (struct ui_out *uiout)
787{
788 if (!uiout->impl->table_end)
789 return;
790 uiout->impl->table_end (uiout);
791}
792
793void
794uo_table_header (struct ui_out *uiout, int width, enum ui_align align,
795 const char *col_name,
796 const char *colhdr)
797{
798 if (!uiout->impl->table_header)
799 return;
800 uiout->impl->table_header (uiout, width, align, col_name, colhdr);
801}
802
803/* Clear the table associated with UIOUT. */
804
805static void
806clear_table (struct ui_out *uiout)
807{
808 xfree (uiout->table.id);
809 uiout->table.id = NULL;
810 clear_header_list (uiout);
811}
812
813void
814uo_begin (struct ui_out *uiout,
815 enum ui_out_type type,
816 int level,
817 const char *id)
818{
819 if (uiout->impl->begin == NULL)
820 return;
821 uiout->impl->begin (uiout, type, level, id);
822}
823
824void
825uo_end (struct ui_out *uiout,
826 enum ui_out_type type,
827 int level)
828{
829 if (uiout->impl->end == NULL)
830 return;
831 uiout->impl->end (uiout, type, level);
832}
833
834void
835uo_field_int (struct ui_out *uiout, int fldno, int width, enum ui_align align,
836 const char *fldname,
837 int value)
838{
839 if (!uiout->impl->field_int)
840 return;
841 uiout->impl->field_int (uiout, fldno, width, align, fldname, value);
842}
843
844void
845uo_field_skip (struct ui_out *uiout, int fldno, int width, enum ui_align align,
846 const char *fldname)
847{
848 if (!uiout->impl->field_skip)
849 return;
850 uiout->impl->field_skip (uiout, fldno, width, align, fldname);
851}
852
853void
854uo_field_string (struct ui_out *uiout, int fldno, int width,
855 enum ui_align align,
856 const char *fldname,
857 const char *string)
858{
859 if (!uiout->impl->field_string)
860 return;
861 uiout->impl->field_string (uiout, fldno, width, align, fldname, string);
862}
863
864void
865uo_field_fmt (struct ui_out *uiout, int fldno, int width, enum ui_align align,
866 const char *fldname,
867 const char *format,
868 va_list args)
869{
870 if (!uiout->impl->field_fmt)
871 return;
872 uiout->impl->field_fmt (uiout, fldno, width, align, fldname, format, args);
873}
874
875void
876uo_spaces (struct ui_out *uiout, int numspaces)
877{
878 if (!uiout->impl->spaces)
879 return;
880 uiout->impl->spaces (uiout, numspaces);
881}
882
883void
884uo_text (struct ui_out *uiout,
885 const char *string)
886{
887 if (!uiout->impl->text)
888 return;
889 uiout->impl->text (uiout, string);
890}
891
892void
893uo_message (struct ui_out *uiout, int verbosity,
894 const char *format,
895 va_list args)
896{
897 if (!uiout->impl->message)
898 return;
899 uiout->impl->message (uiout, verbosity, format, args);
900}
901
902void
903uo_wrap_hint (struct ui_out *uiout, char *identstring)
904{
905 if (!uiout->impl->wrap_hint)
906 return;
907 uiout->impl->wrap_hint (uiout, identstring);
908}
909
910void
911uo_flush (struct ui_out *uiout)
912{
913 if (!uiout->impl->flush)
914 return;
915 uiout->impl->flush (uiout);
916}
917
918int
919uo_redirect (struct ui_out *uiout, struct ui_file *outstream)
920{
921 if (!uiout->impl->redirect)
922 return -1;
923 uiout->impl->redirect (uiout, outstream);
924 return 0;
925}
926
927void
928uo_data_destroy (struct ui_out *uiout)
929{
930 if (!uiout->impl->data_destroy)
931 return;
932
933 uiout->impl->data_destroy (uiout);
934}
935
936/* local functions */
937
938/* List of column headers manipulation routines. */
939
940static void
941clear_header_list (struct ui_out *uiout)
942{
943 while (uiout->table.header_first != NULL)
944 {
945 uiout->table.header_next = uiout->table.header_first;
946 uiout->table.header_first = uiout->table.header_first->next;
947 xfree (uiout->table.header_next->colhdr);
948 xfree (uiout->table.header_next->col_name);
949 xfree (uiout->table.header_next);
950 }
951 gdb_assert (uiout->table.header_first == NULL);
952 uiout->table.header_last = NULL;
953 uiout->table.header_next = NULL;
954}
955
956static void
957append_header_to_list (struct ui_out *uiout,
958 int width,
959 enum ui_align alignment,
960 const char *col_name,
961 const char *colhdr)
962{
963 struct ui_out_hdr *temphdr;
964
965 temphdr = XNEW (struct ui_out_hdr);
966 temphdr->width = width;
967 temphdr->alignment = alignment;
968 /* We have to copy the column title as the original may be an
969 automatic. */
970 if (colhdr != NULL)
971 temphdr->colhdr = xstrdup (colhdr);
972 else
973 temphdr->colhdr = NULL;
974
975 if (col_name != NULL)
976 temphdr->col_name = xstrdup (col_name);
977 else if (colhdr != NULL)
978 temphdr->col_name = xstrdup (colhdr);
979 else
980 temphdr->col_name = NULL;
981
982 temphdr->next = NULL;
983 if (uiout->table.header_first == NULL)
984 {
985 temphdr->colno = 1;
986 uiout->table.header_first = temphdr;
987 uiout->table.header_last = temphdr;
988 }
989 else
990 {
991 temphdr->colno = uiout->table.header_last->colno + 1;
992 uiout->table.header_last->next = temphdr;
993 uiout->table.header_last = temphdr;
994 }
995 uiout->table.header_next = uiout->table.header_last;
996}
997
998/* Extract the format information for the NEXT header and advance
999 the header pointer. Return 0 if there was no next header. */
1000
1001static int
1002get_next_header (struct ui_out *uiout,
1003 int *colno,
1004 int *width,
1005 enum ui_align *alignment,
1006 char **colhdr)
1007{
1008 /* There may be no headers at all or we may have used all columns. */
1009 if (uiout->table.header_next == NULL)
1010 return 0;
1011 *colno = uiout->table.header_next->colno;
1012 *width = uiout->table.header_next->width;
1013 *alignment = uiout->table.header_next->alignment;
1014 *colhdr = uiout->table.header_next->colhdr;
1015 /* Advance the header pointer to the next entry. */
1016 uiout->table.header_next = uiout->table.header_next->next;
1017 return 1;
1018}
1019
1020
1021/* Verify that the field/tuple/list is correctly positioned. Return
1022 the field number and corresponding alignment (if
1023 available/applicable). */
1024
1025static void
1026verify_field (struct ui_out *uiout, int *fldno, int *width,
1027 enum ui_align *align)
1028{
1029 struct ui_out_level *current = current_level (uiout);
1030 char *text;
1031
1032 if (uiout->table.flag)
1033 {
1034 if (!uiout->table.body_flag)
1035 internal_error (__FILE__, __LINE__,
1036 _("table_body missing; table fields must be \
1037specified after table_body and inside a list."));
1038 /* NOTE: cagney/2001-12-08: There was a check here to ensure
1039 that this code was only executed when uiout->level was
1040 greater than zero. That no longer applies - this code is run
1041 before each table row tuple is started and at that point the
1042 level is zero. */
1043 }
1044
1045 current->field_count += 1;
1046
1047 if (uiout->table.body_flag
1048 && uiout->table.entry_level == uiout->level
1049 && get_next_header (uiout, fldno, width, align, &text))
1050 {
1051 if (*fldno != current->field_count)
1052 internal_error (__FILE__, __LINE__,
1053 _("ui-out internal error in handling headers."));
1054 }
1055 else
1056 {
1057 *width = 0;
1058 *align = ui_noalign;
1059 *fldno = current->field_count;
1060 }
1061}
1062
1063
1064/* Access to ui-out members data. */
1065
1066void *
1067ui_out_data (struct ui_out *uiout)
1068{
1069 return uiout->data;
1070}
1071
1072/* Access table field parameters. */
1073int
1074ui_out_query_field (struct ui_out *uiout, int colno,
1075 int *width, int *alignment, char **col_name)
1076{
1077 struct ui_out_hdr *hdr;
1078
1079 if (!uiout->table.flag)
1080 return 0;
1081
1082 for (hdr = uiout->table.header_first; hdr; hdr = hdr->next)
1083 if (hdr->colno == colno)
1084 {
1085 *width = hdr->width;
1086 *alignment = hdr->alignment;
1087 *col_name = hdr->col_name;
1088 return 1;
1089 }
1090
1091 return 0;
1092}
1093
1094/* Initalize private members at startup. */
1095
1096struct ui_out *
1097ui_out_new (const struct ui_out_impl *impl, void *data,
1098 int flags)
1099{
1100 struct ui_out *uiout = XNEW (struct ui_out);
1101 struct ui_out_level *current = XNEW (struct ui_out_level);
1102
1103 uiout->data = data;
1104 uiout->impl = impl;
1105 uiout->flags = flags;
1106 uiout->table.flag = 0;
1107 uiout->table.body_flag = 0;
1108 uiout->level = 0;
1109 uiout->levels = NULL;
1110
1111 /* Create uiout->level 0, the default level. */
1112 current->type = ui_out_type_tuple;
1113 current->field_count = 0;
1114 VEC_safe_push (ui_out_level_p, uiout->levels, current);
1115
1116 uiout->table.id = NULL;
1117 uiout->table.header_first = NULL;
1118 uiout->table.header_last = NULL;
1119 uiout->table.header_next = NULL;
1120 return uiout;
1121}
1122
1123/* Free UIOUT and the memory areas it references. */
1124
1125void
1126ui_out_destroy (struct ui_out *uiout)
1127{
1128 int i;
1129 struct ui_out_level *current;
1130
1131 /* Make sure that all levels are freed in the case where levels have
1132 been pushed, but not popped before the ui_out object is
1133 destroyed. */
1134 for (i = 0;
1135 VEC_iterate (ui_out_level_p, uiout->levels, i, current);
1136 ++i)
1137 xfree (current);
1138
1139 VEC_free (ui_out_level_p, uiout->levels);
1140 uo_data_destroy (uiout);
1141 clear_table (uiout);
1142 xfree (uiout);
1143}
1144
1145/* Standard gdb initialization hook. */
1146
1147void
1148_initialize_ui_out (void)
1149{
1150 /* nothing needs to be done */
1151}
This page took 0.026239 seconds and 4 git commands to generate.