]> gcc.gnu.org Git - gcc.git/blob - libstdc++-v3/libio/libio.h
Sync libio to glibc-2.2 current CVS.
[gcc.git] / libstdc++-v3 / libio / libio.h
1 /* Copyright (C) 1991,92,93,94,95,97,98,99,2000 Free Software Foundation, Inc.
2 This file is part of the GNU IO Library.
3 Written by Per Bothner <bothner@cygnus.com>.
4
5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU General Public License as
7 published by the Free Software Foundation; either version 2, or (at
8 your option) any later version.
9
10 This library is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this library; see the file COPYING. If not, write to
17 the Free Software Foundation, 59 Temple Place - Suite 330, Boston,
18 MA 02111-1307, USA.
19
20 As a special exception, if you link this library with files
21 compiled with a GNU compiler to produce an executable, this does
22 not cause the resulting executable to be covered by the GNU General
23 Public License. This exception does not however invalidate any
24 other reasons why the executable file might be covered by the GNU
25 General Public License. */
26
27 #ifndef _IO_STDIO_H
28 #define _IO_STDIO_H
29
30 #include <_G_config.h>
31 /* ALL of these should be defined in _G_config.h */
32 #define _IO_pos_t _G_fpos_t /* obsolete */
33 #define _IO_fpos_t _G_fpos_t
34 #define _IO_fpos64_t _G_fpos64_t
35 #define _IO_size_t _G_size_t
36 #define _IO_ssize_t _G_ssize_t
37 #define _IO_off_t _G_off_t
38 #define _IO_off64_t _G_off64_t
39 #define _IO_pid_t _G_pid_t
40 #define _IO_uid_t _G_uid_t
41 #define _IO_iconv_t _G_iconv_t
42 #define _IO_HAVE_SYS_WAIT _G_HAVE_SYS_WAIT
43 #define _IO_HAVE_ST_BLKSIZE _G_HAVE_ST_BLKSIZE
44 #define _IO_BUFSIZ _G_BUFSIZ
45 #define _IO_va_list _G_va_list
46 #define _IO_wint_t _G_wint_t
47
48 #ifdef _G_NEED_STDARG_H
49 /* This define avoids name pollution if we're using GNU stdarg.h */
50 # define __need___va_list
51 # include <stdarg.h>
52 # ifdef __GNUC_VA_LIST
53 # undef _IO_va_list
54 # define _IO_va_list __gnuc_va_list
55 # endif /* __GNUC_VA_LIST */
56 #endif
57
58 #ifndef __P
59 # if _G_HAVE_SYS_CDEFS
60 # include <sys/cdefs.h>
61 # else
62 # ifdef __STDC__
63 # define __P(p) p
64 # define __PMT(p) p
65 # else
66 # define __P(p) ()
67 # define __PMT(p) ()
68 # endif
69 # endif
70 #endif /*!__P*/
71
72 /* For backward compatibility */
73 #ifndef _PARAMS
74 # define _PARAMS(protos) __P(protos)
75 #endif /*!_PARAMS*/
76
77 #ifndef __STDC__
78 # ifndef const
79 # define const
80 # endif
81 #endif
82 #define _IO_UNIFIED_JUMPTABLES 1
83 #ifndef _G_HAVE_PRINTF_FP
84 # define _IO_USE_DTOA 1
85 #endif
86
87 #ifndef EOF
88 # define EOF (-1)
89 #endif
90 #ifndef NULL
91 # if defined __GNUG__ && \
92 (__GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 8))
93 # define NULL (__null)
94 # else
95 # if !defined(__cplusplus)
96 # define NULL ((void*)0)
97 # else
98 # define NULL (0)
99 # endif
100 # endif
101 #endif
102
103 #define _IOS_INPUT 1
104 #define _IOS_OUTPUT 2
105 #define _IOS_ATEND 4
106 #define _IOS_APPEND 8
107 #define _IOS_TRUNC 16
108 #define _IOS_NOCREATE 32
109 #define _IOS_NOREPLACE 64
110 #define _IOS_BIN 128
111
112 /* Magic numbers and bits for the _flags field.
113 The magic numbers use the high-order bits of _flags;
114 the remaining bits are available for variable flags.
115 Note: The magic numbers must all be negative if stdio
116 emulation is desired. */
117
118 #define _IO_MAGIC 0xFBAD0000 /* Magic number */
119 #define _OLD_STDIO_MAGIC 0xFABC0000 /* Emulate old stdio. */
120 #define _IO_MAGIC_MASK 0xFFFF0000
121 #define _IO_USER_BUF 1 /* User owns buffer; don't delete it on close. */
122 #define _IO_UNBUFFERED 2
123 #define _IO_NO_READS 4 /* Reading not allowed */
124 #define _IO_NO_WRITES 8 /* Writing not allowd */
125 #define _IO_EOF_SEEN 0x10
126 #define _IO_ERR_SEEN 0x20
127 #define _IO_DELETE_DONT_CLOSE 0x40 /* Don't call close(_fileno) on cleanup. */
128 #define _IO_LINKED 0x80 /* Set if linked (using _chain) to streambuf::_list_all.*/
129 #define _IO_IN_BACKUP 0x100
130 #define _IO_LINE_BUF 0x200
131 #define _IO_TIED_PUT_GET 0x400 /* Set if put and get pointer logicly tied. */
132 #define _IO_CURRENTLY_PUTTING 0x800
133 #define _IO_IS_APPENDING 0x1000
134 #define _IO_IS_FILEBUF 0x2000
135 #define _IO_BAD_SEEN 0x4000
136
137 /* These are "formatting flags" matching the iostream fmtflags enum values. */
138 #define _IO_SKIPWS 01
139 #define _IO_LEFT 02
140 #define _IO_RIGHT 04
141 #define _IO_INTERNAL 010
142 #define _IO_DEC 020
143 #define _IO_OCT 040
144 #define _IO_HEX 0100
145 #define _IO_SHOWBASE 0200
146 #define _IO_SHOWPOINT 0400
147 #define _IO_UPPERCASE 01000
148 #define _IO_SHOWPOS 02000
149 #define _IO_SCIENTIFIC 04000
150 #define _IO_FIXED 010000
151 #define _IO_UNITBUF 020000
152 #define _IO_STDIO 040000
153 #define _IO_DONT_CLOSE 0100000
154 #define _IO_BOOLALPHA 0200000
155
156
157 struct _IO_jump_t; struct _IO_FILE;
158
159 /* Handle lock. */
160 #ifdef _IO_MTSAFE_IO
161 # if defined __GLIBC__ && __GLIBC__ >= 2
162 # include <bits/stdio-lock.h>
163 # else
164 /*# include <comthread.h>*/
165 # endif
166 #else
167 typedef void _IO_lock_t;
168 #endif
169
170
171 /* A streammarker remembers a position in a buffer. */
172
173 struct _IO_marker {
174 struct _IO_marker *_next;
175 struct _IO_FILE *_sbuf;
176 /* If _pos >= 0
177 it points to _buf->Gbase()+_pos. FIXME comment */
178 /* if _pos < 0, it points to _buf->eBptr()+_pos. FIXME comment */
179 int _pos;
180 #if 0
181 void set_streampos(streampos sp) { _spos = sp; }
182 void set_offset(int offset) { _pos = offset; _spos = (streampos)(-2); }
183 public:
184 streammarker(streambuf *sb);
185 ~streammarker();
186 int saving() { return _spos == -2; }
187 int delta(streammarker&);
188 int delta();
189 #endif
190 };
191
192 /* This is the structure from the libstdc++ codecvt class. */
193 enum __codecvt_result
194 {
195 __codecvt_ok,
196 __codecvt_partial,
197 __codecvt_error,
198 __codecvt_noconv
199 };
200
201 #if defined _LIBC || defined _GLIBCPP_USE_WCHAR_T
202 /* The order of the elements in the following struct must match the order
203 of the virtual functions in the libstdc++ codecvt class. */
204 struct _IO_codecvt
205 {
206 void (*__codecvt_destr) (struct _IO_codecvt *);
207 enum __codecvt_result (*__codecvt_do_out) (struct _IO_codecvt *,
208 __mbstate_t *,
209 const wchar_t *,
210 const wchar_t *,
211 const wchar_t **, char *,
212 char *, char **);
213 enum __codecvt_result (*__codecvt_do_unshift) (struct _IO_codecvt *,
214 __mbstate_t *, char *,
215 char *, char **);
216 enum __codecvt_result (*__codecvt_do_in) (struct _IO_codecvt *,
217 __mbstate_t *,
218 const char *, const char *,
219 const char **, wchar_t *,
220 wchar_t *, wchar_t **);
221 int (*__codecvt_do_encoding) (struct _IO_codecvt *);
222 int (*__codecvt_do_always_noconv) (struct _IO_codecvt *);
223 int (*__codecvt_do_length) (struct _IO_codecvt *, __mbstate_t *,
224 const char *, const char *, _IO_size_t);
225 int (*__codecvt_do_max_length) (struct _IO_codecvt *);
226
227 _IO_iconv_t __cd_in;
228 _IO_iconv_t __cd_out;
229 };
230 #endif
231
232 /* Extra data for wide character streams. */
233 struct _IO_wide_data
234 {
235 wchar_t *_IO_read_ptr; /* Current read pointer */
236 wchar_t *_IO_read_end; /* End of get area. */
237 wchar_t *_IO_read_base; /* Start of putback+get area. */
238 wchar_t *_IO_write_base; /* Start of put area. */
239 wchar_t *_IO_write_ptr; /* Current put pointer. */
240 wchar_t *_IO_write_end; /* End of put area. */
241 wchar_t *_IO_buf_base; /* Start of reserve area. */
242 wchar_t *_IO_buf_end; /* End of reserve area. */
243 /* The following fields are used to support backing up and undo. */
244 wchar_t *_IO_save_base; /* Pointer to start of non-current get area. */
245 wchar_t *_IO_backup_base; /* Pointer to first valid character of
246 backup area */
247 wchar_t *_IO_save_end; /* Pointer to end of non-current get area. */
248
249 #if defined _LIBC || defined _GLIBCPP_USE_WCHAR_T
250 __mbstate_t _IO_state;
251 __mbstate_t _IO_last_state;
252 struct _IO_codecvt _codecvt;
253 #endif
254
255 wchar_t _shortbuf[1];
256
257 #if defined _LIBC || defined _GLIBCPP_USE_WCHAR_T
258 struct _IO_jump_t *_wide_vtable;
259 #endif
260 };
261
262 struct _IO_FILE_plus;
263
264 struct _IO_FILE {
265 int _flags; /* High-order word is _IO_MAGIC; rest is flags. */
266 #define _IO_file_flags _flags
267
268 /* The following pointers correspond to the C++ streambuf protocol. */
269 /* Note: Tk uses the _IO_read_ptr and _IO_read_end fields directly. */
270 char* _IO_read_ptr; /* Current read pointer */
271 char* _IO_read_end; /* End of get area. */
272 char* _IO_read_base; /* Start of putback+get area. */
273 char* _IO_write_base; /* Start of put area. */
274 char* _IO_write_ptr; /* Current put pointer. */
275 char* _IO_write_end; /* End of put area. */
276 char* _IO_buf_base; /* Start of reserve area. */
277 char* _IO_buf_end; /* End of reserve area. */
278 /* The following fields are used to support backing up and undo. */
279 char *_IO_save_base; /* Pointer to start of non-current get area. */
280 char *_IO_backup_base; /* Pointer to first valid character of backup area */
281 char *_IO_save_end; /* Pointer to end of non-current get area. */
282
283 struct _IO_marker *_markers;
284
285 struct _IO_FILE_plus *_chain;
286
287 int _fileno;
288 int _blksize;
289 _IO_off_t _old_offset; /* This used to be _offset but it's too small. */
290
291 #define __HAVE_COLUMN /* temporary */
292 /* 1+column number of pbase(); 0 is unknown. */
293 unsigned short _cur_column;
294 signed char _vtable_offset;
295 char _shortbuf[1];
296
297 /* char* _save_gptr; char* _save_egptr; */
298
299 _IO_lock_t *_lock;
300 #ifdef _IO_USE_OLD_IO_FILE
301 };
302
303 struct _IO_FILE_complete
304 {
305 struct _IO_FILE _file;
306 #endif
307 #if defined _G_IO_IO_FILE_VERSION && _G_IO_IO_FILE_VERSION == 0x20001
308 _IO_off64_t _offset;
309 # if defined _LIBC || defined _GLIBCPP_USE_WCHAR_T
310 /* Wide character stream stuff. */
311 struct _IO_codecvt *_codecvt;
312 struct _IO_wide_data *_wide_data;
313 # endif
314 int _mode;
315 /* Make sure we don't get into trouble again. */
316 char _unused2[15 * sizeof (int) - 2 * sizeof (void *)];
317 #endif
318 };
319
320 #ifndef __cplusplus
321 typedef struct _IO_FILE _IO_FILE;
322 #endif
323
324 extern struct _IO_FILE_plus _IO_2_1_stdin_;
325 extern struct _IO_FILE_plus _IO_2_1_stdout_;
326 extern struct _IO_FILE_plus _IO_2_1_stderr_;
327 #ifndef _LIBC
328 #define _IO_stdin ((_IO_FILE*)(&_IO_2_1_stdin_))
329 #define _IO_stdout ((_IO_FILE*)(&_IO_2_1_stdout_))
330 #define _IO_stderr ((_IO_FILE*)(&_IO_2_1_stderr_))
331 #else
332 extern _IO_FILE *_IO_stdin;
333 extern _IO_FILE *_IO_stdout;
334 extern _IO_FILE *_IO_stderr;
335 #endif
336
337
338 /* Functions to do I/O and file management for a stream. */
339
340 /* Read NBYTES bytes from COOKIE into a buffer pointed to by BUF.
341 Return number of bytes read. */
342 typedef __ssize_t __io_read_fn (void *__cookie, char *__buf, size_t __nbytes);
343
344 /* Write N bytes pointed to by BUF to COOKIE. Write all N bytes
345 unless there is an error. Return number of bytes written, or -1 if
346 there is an error without writing anything. If the file has been
347 opened for append (__mode.__append set), then set the file pointer
348 to the end of the file and then do the write; if not, just write at
349 the current file pointer. */
350 typedef __ssize_t __io_write_fn (void *__cookie, __const char *__buf,
351 size_t __n);
352
353 /* Move COOKIE's file position to *POS bytes from the
354 beginning of the file (if W is SEEK_SET),
355 the current position (if W is SEEK_CUR),
356 or the end of the file (if W is SEEK_END).
357 Set *POS to the new file position.
358 Returns zero if successful, nonzero if not. */
359 typedef int __io_seek_fn (void *__cookie, _IO_off64_t *__pos, int __w);
360
361 /* Close COOKIE. */
362 typedef int __io_close_fn (void *__cookie);
363
364
365 #ifdef _GNU_SOURCE
366 /* User-visible names for the above. */
367 typedef __io_read_fn cookie_read_function_t;
368 typedef __io_write_fn cookie_write_function_t;
369 typedef __io_seek_fn cookie_seek_function_t;
370 typedef __io_close_fn cookie_close_function_t;
371
372 /* The structure with the cookie function pointers. */
373 typedef struct
374 {
375 __io_read_fn *read; /* Read bytes. */
376 __io_write_fn *write; /* Write bytes. */
377 __io_seek_fn *seek; /* Seek/tell file position. */
378 __io_close_fn *close; /* Close file. */
379 } _IO_cookie_io_functions_t;
380 typedef _IO_cookie_io_functions_t cookie_io_functions_t;
381
382 struct _IO_cookie_file;
383
384 /* Initialize one of those. */
385 extern void _IO_cookie_init (struct _IO_cookie_file *__cfile, int __read_write,
386 void *__cookie, _IO_cookie_io_functions_t __fns);
387 #endif
388
389
390 #ifdef __cplusplus
391 extern "C" {
392 #endif
393
394 extern int __underflow (_IO_FILE *) __THROW;
395 extern int __uflow (_IO_FILE *) __THROW;
396 extern int __overflow (_IO_FILE *, int) __THROW;
397 extern _IO_wint_t __wunderflow (_IO_FILE *) __THROW;
398 extern _IO_wint_t __wuflow (_IO_FILE *) __THROW;
399 extern _IO_wint_t __woverflow (_IO_FILE *, _IO_wint_t) __THROW;
400
401 #define _IO_getc_unlocked(_fp) \
402 ((_fp)->_IO_read_ptr >= (_fp)->_IO_read_end ? __uflow (_fp) \
403 : *(unsigned char *) (_fp)->_IO_read_ptr++)
404 #define _IO_peekc_unlocked(_fp) \
405 ((_fp)->_IO_read_ptr >= (_fp)->_IO_read_end \
406 && __underflow (_fp) == EOF ? EOF \
407 : *(unsigned char *) (_fp)->_IO_read_ptr)
408 #define _IO_putc_unlocked(_ch, _fp) \
409 (((_fp)->_IO_write_ptr >= (_fp)->_IO_write_end) \
410 ? __overflow (_fp, (unsigned char) (_ch)) \
411 : (unsigned char) (*(_fp)->_IO_write_ptr++ = (_ch)))
412
413 #define _IO_getwc_unlocked(_fp) \
414 ((_fp)->_wide_data->_IO_read_ptr >= (_fp)->_wide_data->_IO_read_end \
415 ? __wuflow (_fp) : (_IO_wint_t) *(_fp)->_wide_data->_IO_read_ptr++)
416 #define _IO_putwc_unlocked(_wch, _fp) \
417 ((_fp)->_wide_data->_IO_write_ptr >= (_fp)->_wide_data->_IO_write_end \
418 ? __woverflow (_fp, _wch) \
419 : (_IO_wint_t) (*(_fp)->_wide_data->_IO_write_ptr++ = (_wch)))
420
421 #define _IO_feof_unlocked(__fp) (((__fp)->_flags & _IO_EOF_SEEN) != 0)
422 #define _IO_ferror_unlocked(__fp) (((__fp)->_flags & _IO_ERR_SEEN) != 0)
423
424 extern int _IO_getc (_IO_FILE *__fp) __THROW;
425 extern int _IO_putc (int __c, _IO_FILE *__fp) __THROW;
426 extern int _IO_feof (_IO_FILE *__fp) __THROW;
427 extern int _IO_ferror (_IO_FILE *__fp) __THROW;
428
429 extern int _IO_peekc_locked (_IO_FILE *__fp) __THROW;
430
431 /* This one is for Emacs. */
432 #define _IO_PENDING_OUTPUT_COUNT(_fp) \
433 ((_fp)->_IO_write_ptr - (_fp)->_IO_write_base)
434
435 extern void _IO_flockfile (_IO_FILE *) __THROW;
436 extern void _IO_funlockfile (_IO_FILE *) __THROW;
437 extern int _IO_ftrylockfile (_IO_FILE *) __THROW;
438
439 #ifdef _IO_MTSAFE_IO
440 # define _IO_peekc(_fp) _IO_peekc_locked (_fp)
441 #else
442 # define _IO_peekc(_fp) _IO_peekc_unlocked (_fp)
443 # define _IO_flockfile(_fp) /**/
444 # define _IO_funlockfile(_fp) /**/
445 # define _IO_ftrylockfile(_fp) /**/
446 # define _IO_cleanup_region_start(_fct, _fp) /**/
447 # define _IO_cleanup_region_end(_Doit) /**/
448 #endif /* !_IO_MTSAFE_IO */
449
450 extern int _IO_vfscanf (_IO_FILE * __restrict, const char * __restrict,
451 _IO_va_list, int *__restrict) __THROW;
452 extern int _IO_vfprintf (_IO_FILE *__restrict, const char *__restrict,
453 _IO_va_list) __THROW;
454 extern _IO_ssize_t _IO_padn (_IO_FILE *, int, _IO_ssize_t) __THROW;
455 extern _IO_size_t _IO_sgetn (_IO_FILE *, void *, _IO_size_t) __THROW;
456
457 extern _IO_off64_t _IO_seekoff (_IO_FILE *, _IO_off64_t, int, int) __THROW;
458 extern _IO_off64_t _IO_seekpos (_IO_FILE *, _IO_off64_t, int) __THROW;
459
460 extern void _IO_free_backup_area (_IO_FILE *) __THROW;
461
462 #if defined _LIBC || defined _GLIBCPP_USE_WCHAR_T
463 extern _IO_wint_t _IO_getwc (_IO_FILE *__fp) __THROW;
464 extern _IO_wint_t _IO_putwc (wchar_t __wc, _IO_FILE *__fp) __THROW;
465 extern int _IO_fwide (_IO_FILE *__fp, int __mode) __THROW;
466 # if __GNUC__ >= 2
467 /* A special optimized version of the function above. It optimizes the
468 case of initializing an unoriented byte stream. */
469 # define _IO_fwide(__fp, __mode) \
470 ({ int __result = (__mode); \
471 if (__result < 0) \
472 { \
473 if ((__fp)->_mode == 0) \
474 /* We know that all we have to do is to set the flag. */ \
475 (__fp)->_mode = -1; \
476 __result = (__fp)->_mode; \
477 } \
478 else \
479 __result = _IO_fwide (__fp, __result); \
480 __result; })
481 # endif
482
483 extern int _IO_vfwscanf (_IO_FILE * __restrict, const wchar_t * __restrict,
484 _IO_va_list, int *__restrict) __THROW;
485 extern int _IO_vfwprintf (_IO_FILE *__restrict, const wchar_t *__restrict,
486 _IO_va_list) __THROW;
487 extern _IO_ssize_t _IO_wpadn (_IO_FILE *, wint_t, _IO_ssize_t) __THROW;
488 extern void _IO_free_wbackup_area (_IO_FILE *) __THROW;
489 #endif
490
491 #ifdef __cplusplus
492 }
493 #endif
494
495 #endif /* _IO_STDIO_H */
496
497
This page took 0.064342 seconds and 6 git commands to generate.