3 Copyright (C) 2000, 2001, 2002 Free Software Foundation, Inc.
5 Contributed by Cygnus Solutions (a Red Hat company).
7 This file is part of GDB.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 51 Franklin Street, Fifth Floor,
22 Boston, MA 02110-1301, USA. */
25 #include "mi-console.h"
26 #include "gdb_string.h"
28 /* MI-console: send output to std-out but correcty encapsulated */
30 static ui_file_fputs_ftype mi_console_file_fputs
;
31 static ui_file_flush_ftype mi_console_file_flush
;
32 static ui_file_delete_ftype mi_console_file_delete
;
34 struct mi_console_file
38 struct ui_file
*buffer
;
43 int mi_console_file_magic
;
46 mi_console_file_new (struct ui_file
*raw
,
47 const char *prefix
, char quote
)
49 struct ui_file
*ui_file
= ui_file_new ();
50 struct mi_console_file
*mi_console
= XMALLOC (struct mi_console_file
);
51 mi_console
->magic
= &mi_console_file_magic
;
52 mi_console
->raw
= raw
;
53 mi_console
->buffer
= mem_fileopen ();
54 mi_console
->prefix
= prefix
;
55 mi_console
->quote
= quote
;
56 set_ui_file_fputs (ui_file
, mi_console_file_fputs
);
57 set_ui_file_flush (ui_file
, mi_console_file_flush
);
58 set_ui_file_data (ui_file
, mi_console
, mi_console_file_delete
);
63 mi_console_file_delete (struct ui_file
*file
)
65 struct mi_console_file
*mi_console
= ui_file_data (file
);
66 if (mi_console
->magic
!= &mi_console_file_magic
)
67 internal_error (__FILE__
, __LINE__
,
68 _("mi_console_file_delete: bad magic number"));
73 mi_console_file_fputs (const char *buf
,
76 struct mi_console_file
*mi_console
= ui_file_data (file
);
77 if (mi_console
->magic
!= &mi_console_file_magic
)
78 internal_error (__FILE__
, __LINE__
,
79 "mi_console_file_fputs: bad magic number");
80 /* Append the text to our internal buffer */
81 fputs_unfiltered (buf
, mi_console
->buffer
);
82 /* Flush when an embedded \n */
83 if (strchr (buf
, '\n') != NULL
)
87 /* Transform a byte sequence into a console output packet. */
89 mi_console_raw_packet (void *data
,
93 struct mi_console_file
*mi_console
= data
;
94 if (mi_console
->magic
!= &mi_console_file_magic
)
95 internal_error (__FILE__
, __LINE__
,
96 _("mi_console_file_transform: bad magic number"));
100 fputs_unfiltered (mi_console
->prefix
, mi_console
->raw
);
101 if (mi_console
->quote
)
103 fputs_unfiltered ("\"", mi_console
->raw
);
104 fputstrn_unfiltered (buf
, length_buf
, mi_console
->quote
, mi_console
->raw
);
105 fputs_unfiltered ("\"\n", mi_console
->raw
);
109 fputstrn_unfiltered (buf
, length_buf
, 0, mi_console
->raw
);
110 fputs_unfiltered ("\n", mi_console
->raw
);
112 gdb_flush (mi_console
->raw
);
117 mi_console_file_flush (struct ui_file
*file
)
119 struct mi_console_file
*mi_console
= ui_file_data (file
);
120 if (mi_console
->magic
!= &mi_console_file_magic
)
121 internal_error (__FILE__
, __LINE__
,
122 _("mi_console_file_flush: bad magic number"));
123 ui_file_put (mi_console
->buffer
, mi_console_raw_packet
, mi_console
);
124 ui_file_rewind (mi_console
->buffer
);