libio.h
上传用户:sichengcw
上传日期:2009-02-17
资源大小:202k
文件大小:10k
源码类别:

STL

开发平台:

Visual C++

  1. /* Copyright (C) 1991, 92, 93, 94, 95, 97 Free Software Foundation, Inc.
  2.    This file is part of the GNU IO Library.
  3.    Written by Per Bothner <bothner@cygnus.com>.
  4.    This library is free software; you can redistribute it and/or
  5.    modify it under the terms of the GNU General Public License as
  6.    published by the Free Software Foundation; either version 2, or (at
  7.    your option) any later version.
  8.    This library is distributed in the hope that it will be useful, but
  9.    WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.    General Public License for more details.
  12.    You should have received a copy of the GNU General Public License
  13.    along with this library; see the file COPYING.  If not, write to
  14.    the Free Software Foundation, 59 Temple Place - Suite 330, Boston,
  15.    MA 02111-1307, USA.
  16.    As a special exception, if you link this library with files
  17.    compiled with a GNU compiler to produce an executable, this does
  18.    not cause the resulting executable to be covered by the GNU General
  19.    Public License.  This exception does not however invalidate any
  20.    other reasons why the executable file might be covered by the GNU
  21.    General Public License.  */
  22. #ifndef _IO_STDIO_H
  23. #define _IO_STDIO_H
  24. #include <_G_config.h>
  25. #define _IO_pos_t _G_fpos_t /* obsolete */
  26. #define _IO_fpos_t _G_fpos_t
  27. #define _IO_size_t _G_size_t
  28. #define _IO_ssize_t _G_ssize_t
  29. #define _IO_off_t _G_off_t
  30. #define _IO_pid_t _G_pid_t
  31. #define _IO_uid_t _G_uid_t
  32. #define _IO_HAVE_SYS_WAIT _G_HAVE_SYS_WAIT
  33. #define _IO_HAVE_ST_BLKSIZE _G_HAVE_ST_BLKSIZE
  34. #define _IO_BUFSIZ _G_BUFSIZ
  35. #define _IO_va_list _G_va_list
  36. #if defined(_G_IO_IO_FILE_VERSION) && _G_IO_IO_FILE_VERSION == 0x20001
  37. #define _IO_fpos64_t _G_fpos64_t
  38. #define _IO_off64_t _G_off64_t
  39. #endif
  40. #ifdef _G_NEED_STDARG_H
  41. /* This define avoids name pollution if we're using GNU stdarg.h */
  42. # define __need___va_list
  43. # include <stdarg.h>
  44. # ifdef __GNUC_VA_LIST
  45. #  undef _IO_va_list
  46. #  define _IO_va_list __gnuc_va_list
  47. # endif /* __GNUC_VA_LIST */
  48. #endif
  49. #ifndef __P
  50. # if _G_HAVE_SYS_CDEFS
  51. #  include <sys/cdefs.h>
  52. # else
  53. #  ifdef __STDC__
  54. #   define __P(p) p
  55. #  else
  56. #   define __P(p) ()
  57. #  endif
  58. # endif
  59. #endif /*!__P*/
  60. /* For backward compatibility */
  61. #ifndef _PARAMS
  62. # define _PARAMS(protos) __P(protos)
  63. #endif /*!_PARAMS*/
  64. #ifndef __STDC__
  65. # define const
  66. #endif
  67. #define _IO_UNIFIED_JUMPTABLES 1
  68. #if !_G_HAVE_PRINTF_FP
  69. # define _IO_USE_DTOA 1
  70. #endif
  71. #ifndef EOF
  72. # define EOF (-1)
  73. #endif
  74. #ifndef NULL
  75. # if defined __GNUG__ && 
  76.     (__GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 8))
  77. #  define NULL (__null)
  78. # else
  79. #  if !defined(__cplusplus)
  80. #   define NULL ((void*)0)
  81. #  else
  82. #   define NULL (0)
  83. #  endif
  84. # endif
  85. #endif
  86. #define _IOS_INPUT 1
  87. #define _IOS_OUTPUT 2
  88. #define _IOS_ATEND 4
  89. #define _IOS_APPEND 8
  90. #define _IOS_TRUNC 16
  91. #define _IOS_NOCREATE 32
  92. #define _IOS_NOREPLACE 64
  93. #define _IOS_BIN 128
  94. /* Magic numbers and bits for the _flags field.
  95.    The magic numbers use the high-order bits of _flags;
  96.    the remaining bits are available for variable flags.
  97.    Note: The magic numbers must all be negative if stdio
  98.    emulation is desired. */
  99. #define _IO_MAGIC 0xFBAD0000 /* Magic number */
  100. #define _OLD_STDIO_MAGIC 0xFABC0000 /* Emulate old stdio. */
  101. #define _IO_MAGIC_MASK 0xFFFF0000
  102. #define _IO_USER_BUF 1 /* User owns buffer; don't delete it on close. */
  103. #define _IO_UNBUFFERED 2
  104. #define _IO_NO_READS 4 /* Reading not allowed */
  105. #define _IO_NO_WRITES 8 /* Writing not allowd */
  106. #define _IO_EOF_SEEN 0x10
  107. #define _IO_ERR_SEEN 0x20
  108. #define _IO_DELETE_DONT_CLOSE 0x40 /* Don't call close(_fileno) on cleanup. */
  109. #define _IO_LINKED 0x80 /* Set if linked (using _chain) to streambuf::_list_all.*/
  110. #define _IO_IN_BACKUP 0x100
  111. #define _IO_LINE_BUF 0x200
  112. #define _IO_TIED_PUT_GET 0x400 /* Set if put and get pointer logicly tied. */
  113. #define _IO_CURRENTLY_PUTTING 0x800
  114. #define _IO_IS_APPENDING 0x1000
  115. #define _IO_IS_FILEBUF 0x2000
  116. #define _IO_BAD_SEEN 0x4000
  117. /* These are "formatting flags" matching the iostream fmtflags enum values. */
  118. #define _IO_SKIPWS 01
  119. #define _IO_LEFT 02
  120. #define _IO_RIGHT 04
  121. #define _IO_INTERNAL 010
  122. #define _IO_DEC 020
  123. #define _IO_OCT 040
  124. #define _IO_HEX 0100
  125. #define _IO_SHOWBASE 0200
  126. #define _IO_SHOWPOINT 0400
  127. #define _IO_UPPERCASE 01000
  128. #define _IO_SHOWPOS 02000
  129. #define _IO_SCIENTIFIC 04000
  130. #define _IO_FIXED 010000
  131. #define _IO_UNITBUF 020000
  132. #define _IO_STDIO 040000
  133. #define _IO_DONT_CLOSE 0100000
  134. #define _IO_BOOLALPHA 0200000
  135. struct _IO_jump_t;  struct _IO_FILE;
  136. /* Handle lock.  */
  137. #ifdef _IO_MTSAFE_IO
  138. # if defined __GLIBC__ && __GLIBC__ >= 2
  139. #  if __GLIBC_MINOR__ > 0
  140. #   include <bits/stdio-lock.h>
  141. #  else
  142. #   include <stdio-lock.h>
  143. #  endif
  144. #  define _IO_LOCK_T _IO_lock_t *
  145. # else
  146. /*# include <comthread.h>*/
  147. # endif
  148. #else
  149. # if defined(__GLIBC__) && __GLIBC__ >= 2
  150.    typedef void _IO_lock_t;
  151. #  define _IO_LOCK_T void *
  152. # else
  153. #  ifdef __linux__
  154.     struct _IO_lock_t { void *ptr; short int field1; short int field2; };
  155. #   define _IO_LOCK_T struct _IO_lock_t
  156. #  else
  157.     typedef void _IO_lock_t;
  158. #  endif
  159. # endif
  160. #endif
  161. /* A streammarker remembers a position in a buffer. */
  162. struct _IO_marker {
  163.   struct _IO_marker *_next;
  164.   struct _IO_FILE *_sbuf;
  165.   /* If _pos >= 0
  166.  it points to _buf->Gbase()+_pos. FIXME comment */
  167.   /* if _pos < 0, it points to _buf->eBptr()+_pos. FIXME comment */
  168.   int _pos;
  169. #if 0
  170.     void set_streampos(streampos sp) { _spos = sp; }
  171.     void set_offset(int offset) { _pos = offset; _spos = (streampos)(-2); }
  172.   public:
  173.     streammarker(streambuf *sb);
  174.     ~streammarker();
  175.     int saving() { return  _spos == -2; }
  176.     int delta(streammarker&);
  177.     int delta();
  178. #endif
  179. };
  180. struct _IO_FILE {
  181.   int _flags; /* High-order word is _IO_MAGIC; rest is flags. */
  182. #define _IO_file_flags _flags
  183.   /* The following pointers correspond to the C++ streambuf protocol. */
  184.   /* Note:  Tk uses the _IO_read_ptr and _IO_read_end fields directly. */
  185.   char* _IO_read_ptr; /* Current read pointer */
  186.   char* _IO_read_end; /* End of get area. */
  187.   char* _IO_read_base; /* Start of putback+get area. */
  188.   char* _IO_write_base; /* Start of put area. */
  189.   char* _IO_write_ptr; /* Current put pointer. */
  190.   char* _IO_write_end; /* End of put area. */
  191.   char* _IO_buf_base; /* Start of reserve area. */
  192.   char* _IO_buf_end; /* End of reserve area. */
  193.   /* The following fields are used to support backing up and undo. */
  194.   char *_IO_save_base; /* Pointer to start of non-current get area. */
  195.   char *_IO_backup_base;  /* Pointer to first valid character of backup area */
  196.   char *_IO_save_end; /* Pointer to end of non-current get area. */
  197.   struct _IO_marker *_markers;
  198.   struct _IO_FILE *_chain;
  199.   int _fileno;
  200.   int _blksize;
  201. #ifdef _G_IO_IO_FILE_VERSION
  202.   _IO_off_t _old_offset;
  203. #else
  204.   _IO_off_t _offset;
  205. #endif
  206. #define __HAVE_COLUMN /* temporary */
  207.   /* 1+column number of pbase(); 0 is unknown. */
  208.   unsigned short _cur_column;
  209.   char _unused;
  210.   char _shortbuf[1];
  211.   /*  char* _save_gptr;  char* _save_egptr; */
  212. #ifdef _IO_LOCK_T
  213.   _IO_LOCK_T _lock;
  214. #endif
  215. #if defined(_G_IO_IO_FILE_VERSION) && _G_IO_IO_FILE_VERSION == 0x20001
  216.   _IO_off64_t _offset;
  217.   int _unused2[16]; /* Make sure we don't get into trouble again.  */
  218. #endif
  219. };
  220. #ifndef __cplusplus
  221. typedef struct _IO_FILE _IO_FILE;
  222. #endif
  223. #if defined(_G_IO_IO_FILE_VERSION) && _G_IO_IO_FILE_VERSION == 0x20001
  224. #define _IO_stdin_ _IO_2_1_stdin_
  225. #define _IO_stdout_ _IO_2_1_stdout_
  226. #define _IO_stderr_ _IO_2_1_stderr_
  227. #endif
  228. struct _IO_FILE_plus;
  229. extern struct _IO_FILE_plus _IO_stdin_, _IO_stdout_, _IO_stderr_;
  230. #define _IO_stdin ((_IO_FILE*)(&_IO_stdin_))
  231. #define _IO_stdout ((_IO_FILE*)(&_IO_stdout_))
  232. #define _IO_stderr ((_IO_FILE*)(&_IO_stderr_))
  233. /* Define the user-visible type, with user-friendly member names.  */
  234. typedef struct
  235. {
  236.   _IO_ssize_t (*read) __P ((struct _IO_FILE *, void *, _IO_ssize_t));
  237.   _IO_ssize_t (*write) __P ((struct _IO_FILE *, const void *, _IO_ssize_t));
  238.   _IO_fpos_t (*seek) __P ((struct _IO_FILE *, _IO_off_t, int));
  239.   int (*close) __P ((struct _IO_FILE *));
  240. } _IO_cookie_io_functions_t;
  241. /* Special file type for fopencookie function.  */
  242. struct _IO_cookie_file
  243. {
  244.   struct _IO_FILE file;
  245.   const void *vtable;
  246.   void *cookie;
  247.   _IO_cookie_io_functions_t io_functions;
  248. };
  249. #ifdef __cplusplus
  250. extern "C" {
  251. #endif
  252. extern int __underflow __P ((_IO_FILE *));
  253. extern int __uflow __P ((_IO_FILE *));
  254. extern int __overflow __P ((_IO_FILE *, int));
  255. #define _IO_getc_unlocked(_fp) 
  256.        ((_fp)->_IO_read_ptr >= (_fp)->_IO_read_end ? __uflow (_fp) 
  257. : *(unsigned char *) (_fp)->_IO_read_ptr++)
  258. #define _IO_peekc_unlocked(_fp) 
  259.        ((_fp)->_IO_read_ptr >= (_fp)->_IO_read_end 
  260.   && __underflow (_fp) == EOF ? EOF 
  261. : *(unsigned char *) (_fp)->_IO_read_ptr)
  262. #define _IO_putc_unlocked(_ch, _fp) 
  263.    (((_fp)->_IO_write_ptr >= (_fp)->_IO_write_end) 
  264.     ? __overflow (_fp, (unsigned char) (_ch)) 
  265.     : (unsigned char) (*(_fp)->_IO_write_ptr++ = (_ch)))
  266. #define _IO_feof_unlocked(__fp) (((__fp)->_flags & _IO_EOF_SEEN) != 0)
  267. #define _IO_ferror_unlocked(__fp) (((__fp)->_flags & _IO_ERR_SEEN) != 0)
  268. extern int _IO_getc __P ((_IO_FILE *__fp));
  269. extern int _IO_putc __P ((int __c, _IO_FILE *__fp));
  270. extern int _IO_feof __P ((_IO_FILE *__fp));
  271. extern int _IO_ferror __P ((_IO_FILE *__fp));
  272. extern int _IO_peekc_locked __P ((_IO_FILE *__fp));
  273. /* This one is for Emacs. */
  274. #define _IO_PENDING_OUTPUT_COUNT(_fp)
  275. ((_fp)->_IO_write_ptr - (_fp)->_IO_write_base)
  276. extern void _IO_flockfile __P ((_IO_FILE *));
  277. extern void _IO_funlockfile __P ((_IO_FILE *));
  278. extern int _IO_ftrylockfile __P ((_IO_FILE *));
  279. #ifdef _IO_MTSAFE_IO
  280. # define _IO_peekc(_fp) _IO_peekc_locked (_fp)
  281. #else
  282. # define _IO_peekc(_fp) _IO_peekc_unlocked (_fp)
  283. # define _IO_flockfile(_fp) /**/
  284. # define _IO_funlockfile(_fp) /**/
  285. # define _IO_ftrylockfile(_fp) /**/
  286. # define _IO_cleanup_region_start(_fct, _fp) /**/
  287. # define _IO_cleanup_region_end(_Doit) /**/
  288. #endif /* !_IO_MTSAFE_IO */
  289. extern int _IO_vfscanf __P ((_IO_FILE *, const char *, _IO_va_list, int *));
  290. extern int _IO_vfprintf __P ((_IO_FILE *, const char *, _IO_va_list));
  291. extern _IO_ssize_t _IO_padn __P ((_IO_FILE *, int, _IO_ssize_t));
  292. extern _IO_size_t _IO_sgetn __P ((_IO_FILE *, void *, _IO_size_t));
  293. #if defined(_G_IO_IO_FILE_VERSION) && _G_IO_IO_FILE_VERSION == 0x20001
  294. extern _IO_fpos64_t _IO_seekoff __P ((_IO_FILE *, _IO_off64_t, int, int));      
  295. extern _IO_fpos64_t _IO_seekpos __P ((_IO_FILE *, _IO_fpos64_t, int));
  296. #else
  297. extern _IO_fpos_t _IO_seekoff __P ((_IO_FILE *, _IO_off_t, int, int));
  298. extern _IO_fpos_t _IO_seekpos __P ((_IO_FILE *, _IO_fpos_t, int));
  299. #endif
  300. extern void _IO_free_backup_area __P ((_IO_FILE *));
  301. #ifdef __cplusplus
  302. }
  303. #endif
  304. #endif /* _IO_STDIO_H */