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