]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/ui-file.h
* linux-nat.c (debug_linux_nat_async): Delete.
[thirdparty/binutils-gdb.git] / gdb / ui-file.h
1 /* UI_FILE - a generic STDIO like output stream.
2 Copyright (C) 1999, 2000, 2007, 2008, 2009, 2010, 2011
3 Free Software Foundation, Inc.
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19
20 #ifndef UI_FILE_H
21 #define UI_FILE_H
22
23 struct obstack;
24 struct ui_file;
25
26 /* Create a generic ui_file object with null methods. */
27
28 extern struct ui_file *ui_file_new (void);
29
30 /* Override methods used by specific implementations of a UI_FILE
31 object. */
32
33 typedef void (ui_file_flush_ftype) (struct ui_file *stream);
34 extern void set_ui_file_flush (struct ui_file *stream,
35 ui_file_flush_ftype *flush);
36
37 /* NOTE: Both fputs and write methods are available. Default
38 implementations that mapping one onto the other are included. */
39 typedef void (ui_file_write_ftype) (struct ui_file *stream,
40 const char *buf, long length_buf);
41 extern void set_ui_file_write (struct ui_file *stream,
42 ui_file_write_ftype *fputs);
43
44 typedef void (ui_file_fputs_ftype) (const char *, struct ui_file *stream);
45 extern void set_ui_file_fputs (struct ui_file *stream,
46 ui_file_fputs_ftype *fputs);
47
48 /* This version of "write" is safe for use in signal handlers.
49 It's not guaranteed that all existing output will have been
50 flushed first.
51 Implementations are also free to ignore some or all of the request.
52 fputs_async is not provided as the async versions are rarely used,
53 no point in having both for a rarely used interface. */
54 typedef void (ui_file_write_async_safe_ftype)
55 (struct ui_file *stream, const char *buf, long length_buf);
56 extern void set_ui_file_write_async_safe
57 (struct ui_file *stream, ui_file_write_async_safe_ftype *write_async_safe);
58
59 typedef long (ui_file_read_ftype) (struct ui_file *stream,
60 char *buf, long length_buf);
61 extern void set_ui_file_read (struct ui_file *stream,
62 ui_file_read_ftype *fread);
63
64 typedef int (ui_file_isatty_ftype) (struct ui_file *stream);
65 extern void set_ui_file_isatty (struct ui_file *stream,
66 ui_file_isatty_ftype *isatty);
67
68 typedef void (ui_file_rewind_ftype) (struct ui_file *stream);
69 extern void set_ui_file_rewind (struct ui_file *stream,
70 ui_file_rewind_ftype *rewind);
71
72 typedef void (ui_file_put_method_ftype) (void *object, const char *buffer,
73 long length_buffer);
74 typedef void (ui_file_put_ftype) (struct ui_file *stream,
75 ui_file_put_method_ftype *method,
76 void *context);
77 extern void set_ui_file_put (struct ui_file *stream, ui_file_put_ftype *put);
78
79 typedef void (ui_file_delete_ftype) (struct ui_file * stream);
80 extern void set_ui_file_data (struct ui_file *stream, void *data,
81 ui_file_delete_ftype *delete);
82
83 extern void *ui_file_data (struct ui_file *file);
84
85
86 extern void gdb_flush (struct ui_file *);
87
88 extern void ui_file_delete (struct ui_file *stream);
89
90 extern void ui_file_rewind (struct ui_file *stream);
91
92 extern int ui_file_isatty (struct ui_file *);
93
94 extern void ui_file_write (struct ui_file *file, const char *buf,
95 long length_buf);
96
97 extern void ui_file_write_async_safe (struct ui_file *file, const char *buf,
98 long length_buf);
99
100 /* NOTE: copies left to right. */
101 extern void ui_file_put (struct ui_file *src,
102 ui_file_put_method_ftype *write, void *dest);
103
104 /* Returns a freshly allocated buffer containing the entire contents
105 of FILE (as determined by ui_file_put()) with a NUL character
106 appended. LENGTH, if not NULL, is set to the size of the buffer
107 minus that appended NUL. */
108 extern char *ui_file_xstrdup (struct ui_file *file, long *length);
109
110 /* Similar to ui_file_xstrdup, but return a new string allocated on
111 OBSTACK. */
112 extern char *ui_file_obsavestring (struct ui_file *file,
113 struct obstack *obstack, long *length);
114
115 extern long ui_file_read (struct ui_file *file, char *buf, long length_buf);
116
117 /* Create/open a memory based file. Can be used as a scratch buffer
118 for collecting output. */
119 extern struct ui_file *mem_fileopen (void);
120
121
122
123 /* Open/create a STDIO based UI_FILE using the already open FILE. */
124 extern struct ui_file *stdio_fileopen (FILE *file);
125
126 /* Open NAME returning an STDIO based UI_FILE. */
127 extern struct ui_file *gdb_fopen (char *name, char *mode);
128
129 /* Create a file which writes to both ONE and TWO. CLOSE_ONE
130 and CLOSE_TWO indicate whether the original files should be
131 closed when the new file is closed. */
132 struct ui_file *tee_file_new (struct ui_file *one,
133 int close_one,
134 struct ui_file *two,
135 int close_two);
136 #endif