2001-06-19 H.J. Lu <hjl@gnu.org>
[deliverable/binutils-gdb.git] / gdb / cli-out.c
CommitLineData
8b93c638 1/* Output generating routines for GDB CLI.
b6ba6518 2 Copyright 1999, 2000 Free Software Foundation, Inc.
8b93c638
JM
3 Contributed by Cygnus Solutions.
4 Written by Fernando Nasser for Cygnus.
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
10 the Free Software Foundation; either version 2 of the License, or
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
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
22
23#include "defs.h"
24#include "ui-out.h"
25#include "cli-out.h"
1d1358b6 26#include "gdb_string.h"
8b93c638
JM
27
28/* Convenience macro for allocting typesafe memory. */
29
30#ifndef XMALLOC
31#define XMALLOC(TYPE) (TYPE*) xmalloc (sizeof (TYPE))
32#endif
33
34struct ui_out_data
35 {
36 struct ui_file *stream;
37 };
38
39/* These are the CLI output functions */
40
e2e11a41
AC
41static void cli_table_begin (struct ui_out *uiout, int nbrofcols,
42 const char *tblid);
8b93c638
JM
43static void cli_table_body (struct ui_out *uiout);
44static void cli_table_end (struct ui_out *uiout);
45static void cli_table_header (struct ui_out *uiout, int width,
e2e11a41
AC
46 enum ui_align alig,
47 const char *colhdr);
631ec795
AC
48static void cli_begin (struct ui_out *uiout, enum ui_out_type type,
49 int level, const char *lstid);
50static void cli_end (struct ui_out *uiout, enum ui_out_type type, int level);
8b93c638 51static void cli_field_int (struct ui_out *uiout, int fldno, int width,
e2e11a41 52 enum ui_align alig, const char *fldname, int value);
8b93c638 53static void cli_field_skip (struct ui_out *uiout, int fldno, int width,
e2e11a41 54 enum ui_align alig, const char *fldname);
8b93c638 55static void cli_field_string (struct ui_out *uiout, int fldno, int width,
e2e11a41 56 enum ui_align alig, const char *fldname,
8b93c638
JM
57 const char *string);
58static void cli_field_fmt (struct ui_out *uiout, int fldno,
59 int width, enum ui_align align,
e2e11a41
AC
60 const char *fldname, const char *format,
61 va_list args);
8b93c638 62static void cli_spaces (struct ui_out *uiout, int numspaces);
e2e11a41
AC
63static void cli_text (struct ui_out *uiout, const char *string);
64static void cli_message (struct ui_out *uiout, int verbosity,
65 const char *format, va_list args);
8b93c638
JM
66static void cli_wrap_hint (struct ui_out *uiout, char *identstring);
67static void cli_flush (struct ui_out *uiout);
68
69/* This is the CLI ui-out implementation functions vector */
70
71/* FIXME: This can be initialized dynamically after default is set to
72 handle initial output in main.c */
73
74static struct ui_out_impl cli_ui_out_impl =
75{
76 cli_table_begin,
77 cli_table_body,
78 cli_table_end,
79 cli_table_header,
631ec795
AC
80 cli_begin,
81 cli_end,
8b93c638
JM
82 cli_field_int,
83 cli_field_skip,
84 cli_field_string,
85 cli_field_fmt,
86 cli_spaces,
87 cli_text,
88 cli_message,
89 cli_wrap_hint,
90 cli_flush
91};
92
93/* Prototypes for local functions */
94
a14ed312 95extern void _initialize_cli_out (void);
8b93c638
JM
96
97static void field_separator (void);
98
e2e11a41
AC
99static void out_field_fmt (struct ui_out *uiout, int fldno,
100 const char *fldname,
101 const char *format,...);
8b93c638
JM
102
103/* local variables */
104
105/* (none yet) */
106
107/* Mark beginning of a table */
108
109void
e2e11a41
AC
110cli_table_begin (struct ui_out *uiout, int nbrofcols,
111 const char *tblid)
8b93c638
JM
112{
113}
114
115/* Mark beginning of a table body */
116
117void
fba45db2 118cli_table_body (struct ui_out *uiout)
8b93c638
JM
119{
120 /* first, close the table header line */
121 cli_text (uiout, "\n");
122}
123
124/* Mark end of a table */
125
126void
fba45db2 127cli_table_end (struct ui_out *uiout)
8b93c638
JM
128{
129}
130
131/* Specify table header */
132
133void
fba45db2 134cli_table_header (struct ui_out *uiout, int width, enum ui_align alignment,
e2e11a41 135 const char *colhdr)
8b93c638
JM
136{
137 cli_field_string (uiout, 0, width, alignment, 0, colhdr);
138}
139
140/* Mark beginning of a list */
141
142void
631ec795
AC
143cli_begin (struct ui_out *uiout,
144 enum ui_out_type type,
145 int level,
146 const char *id)
8b93c638
JM
147{
148}
149
150/* Mark end of a list */
151
152void
631ec795
AC
153cli_end (struct ui_out *uiout,
154 enum ui_out_type type,
155 int level)
8b93c638
JM
156{
157}
158
159/* output an int field */
160
161void
fba45db2 162cli_field_int (struct ui_out *uiout, int fldno, int width,
e2e11a41
AC
163 enum ui_align alignment,
164 const char *fldname, int value)
8b93c638
JM
165{
166 char buffer[20]; /* FIXME: how many chars long a %d can become? */
167
168 sprintf (buffer, "%d", value);
169 cli_field_string (uiout, fldno, width, alignment, fldname, buffer);
170}
171
172/* used to ommit a field */
173
174void
fba45db2 175cli_field_skip (struct ui_out *uiout, int fldno, int width,
e2e11a41
AC
176 enum ui_align alignment,
177 const char *fldname)
8b93c638
JM
178{
179 cli_field_string (uiout, fldno, width, alignment, fldname, "");
180}
181
182/* other specific cli_field_* end up here so alignment and field
183 separators are both handled by cli_field_string */
184
185void
186cli_field_string (struct ui_out *uiout,
187 int fldno,
188 int width,
55555bbc 189 enum ui_align align,
e2e11a41 190 const char *fldname,
8b93c638
JM
191 const char *string)
192{
193 int before = 0;
194 int after = 0;
195
196 if ((align != ui_noalign) && string)
197 {
198 before = width - strlen (string);
199 if (before <= 0)
200 before = 0;
201 else
202 {
203 if (align == ui_right)
204 after = 0;
205 else if (align == ui_left)
206 {
207 after = before;
208 before = 0;
209 }
210 else
211 /* ui_center */
212 {
213 after = before / 2;
214 before -= after;
215 }
216 }
217 }
218
219 if (before)
220 ui_out_spaces (uiout, before);
221 if (string)
222 out_field_fmt (uiout, fldno, fldname, "%s", string);
223 if (after)
224 ui_out_spaces (uiout, after);
225
226 if (align != ui_noalign)
227 field_separator ();
228}
229
230/* This is the only field function that does not align */
231
232void
233cli_field_fmt (struct ui_out *uiout, int fldno,
234 int width, enum ui_align align,
e2e11a41
AC
235 const char *fldname,
236 const char *format,
237 va_list args)
8b93c638
JM
238{
239 struct ui_out_data *data = ui_out_data (uiout);
240 vfprintf_filtered (data->stream, format, args);
241
242 if (align != ui_noalign)
243 field_separator ();
244}
245
246void
fba45db2 247cli_spaces (struct ui_out *uiout, int numspaces)
8b93c638
JM
248{
249 struct ui_out_data *data = ui_out_data (uiout);
250 print_spaces_filtered (numspaces, data->stream);
251}
252
253void
e2e11a41 254cli_text (struct ui_out *uiout, const char *string)
8b93c638
JM
255{
256 struct ui_out_data *data = ui_out_data (uiout);
257 fputs_filtered (string, data->stream);
258}
259
260void
e2e11a41
AC
261cli_message (struct ui_out *uiout, int verbosity,
262 const char *format, va_list args)
8b93c638
JM
263{
264 struct ui_out_data *data = ui_out_data (uiout);
265 if (ui_out_get_verblvl (uiout) >= verbosity)
266 vfprintf_unfiltered (data->stream, format, args);
267}
268
269void
fba45db2 270cli_wrap_hint (struct ui_out *uiout, char *identstring)
8b93c638
JM
271{
272 wrap_here (identstring);
273}
274
275void
fba45db2 276cli_flush (struct ui_out *uiout)
8b93c638
JM
277{
278 struct ui_out_data *data = ui_out_data (uiout);
279 gdb_flush (data->stream);
280}
281
282/* local functions */
283
284/* Like cli_field_fmt, but takes a variable number of args
285 and makes a va_list and does not insert a separator */
286
287/* VARARGS */
288static void
e2e11a41
AC
289out_field_fmt (struct ui_out *uiout, int fldno,
290 const char *fldname,
291 const char *format,...)
8b93c638
JM
292{
293 struct ui_out_data *data = ui_out_data (uiout);
294 va_list args;
295
296 va_start (args, format);
297 vfprintf_filtered (data->stream, format, args);
298
299 va_end (args);
300}
301
302/* access to ui_out format private members */
303
304static void
fba45db2 305field_separator (void)
8b93c638
JM
306{
307 struct ui_out_data *data = ui_out_data (uiout);
308 fputc_filtered (' ', data->stream);
309}
310
311/* initalize private members at startup */
312
313struct ui_out *
314cli_out_new (struct ui_file *stream)
315{
316 int flags = ui_source_list;
317
318 struct ui_out_data *data = XMALLOC (struct ui_out_data);
319 data->stream = stream;
320 return ui_out_new (&cli_ui_out_impl, data, flags);
321}
322
323/* standard gdb initialization hook */
324void
fba45db2 325_initialize_cli_out (void)
8b93c638
JM
326{
327 /* nothing needs to be done */
328}
This page took 0.112333 seconds and 4 git commands to generate.