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

STL

开发平台:

Visual C++

  1. /* Copyright (C) 1993, 1997 Free Software Foundation, Inc.
  2.    This file is part of the GNU IO Library.
  3.    This library is free software; you can redistribute it and/or
  4.    modify it under the terms of the GNU General Public License as
  5.    published by the Free Software Foundation; either version 2, or (at
  6.    your option) any later version.
  7.    This library is distributed in the hope that it will be useful, but
  8.    WITHOUT ANY WARRANTY; without even the implied warranty of
  9.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  10.    General Public License for more details.
  11.    You should have received a copy of the GNU General Public License
  12.    along with this library; see the file COPYING.  If not, write to
  13.    the Free Software Foundation, 59 Temple Place - Suite 330, Boston,
  14.    MA 02111-1307, USA.
  15.    As a special exception, if you link this library with files
  16.    compiled with a GNU compiler to produce an executable, this does
  17.    not cause the resulting executable to be covered by the GNU General
  18.    Public License.  This exception does not however invalidate any
  19.    other reasons why the executable file might be covered by the GNU
  20.    General Public License.  */
  21. #include <errno.h>
  22. #ifndef __set_errno
  23. # define __set_errno(Val) errno = (Val)
  24. #endif
  25. #if defined __GLIBC__ && __GLIBC__ >= 2
  26. # if __GLIBC_MINOR__ > 0
  27. #  include <bits/libc-lock.h>
  28. # else
  29. #  include <libc-lock.h>
  30. # endif
  31. #else
  32. /*# include <comthread.h>*/
  33. #endif
  34. #include "iolibio.h"
  35. #ifdef __cplusplus
  36. extern "C" {
  37. #endif
  38. #define _IO_seek_set 0
  39. #define _IO_seek_cur 1
  40. #define _IO_seek_end 2
  41. /* THE JUMPTABLE FUNCTIONS.
  42.  * The _IO_FILE type is used to implement the FILE type in GNU libc,
  43.  * as well as the streambuf class in GNU iostreams for C++.
  44.  * These are all the same, just used differently.
  45.  * An _IO_FILE (or FILE) object is allows followed by a pointer to
  46.  * a jump table (of pointers to functions).  The pointer is accessed
  47.  * with the _IO_JUMPS macro.  The jump table has a eccentric format,
  48.  * so as to be compatible with the layout of a C++ virtual function table.
  49.  * (as implemented by g++).  When a pointer to a streambuf object is
  50.  * coerced to an (_IO_FILE*), then _IO_JUMPS on the result just
  51.  * happens to point to the virtual function table of the streambuf.
  52.  * Thus the _IO_JUMPS function table used for C stdio/libio does
  53.  * double duty as the virtual function table for C++ streambuf.
  54.  *
  55.  * The entries in the _IO_JUMPS function table (and hence also the
  56.  * virtual functions of a streambuf) are described below.
  57.  * The first parameter of each function entry is the _IO_FILE/streambuf
  58.  * object being acted on (i.e. the 'this' parameter).
  59.  */
  60. #define _IO_JUMPS(THIS) ((struct _IO_FILE_plus *) (THIS))->vtable
  61. #ifdef _G_USING_THUNKS
  62. # define JUMP_FIELD(TYPE, NAME) TYPE NAME
  63. # define JUMP0(FUNC, THIS) _IO_JUMPS(THIS)->FUNC (THIS)
  64. # define JUMP1(FUNC, THIS, X1) _IO_JUMPS(THIS)->FUNC (THIS, X1)
  65. # define JUMP2(FUNC, THIS, X1, X2) _IO_JUMPS(THIS)->FUNC (THIS, X1, X2)
  66. # define JUMP3(FUNC, THIS, X1,X2,X3) _IO_JUMPS(THIS)->FUNC (THIS, X1,X2, X3)
  67. # define JUMP_INIT(NAME, VALUE) VALUE
  68. # define JUMP_INIT_DUMMY JUMP_INIT(dummy, 0), JUMP_INIT (dummy2, 0)
  69. #else
  70. /* These macros will change when we re-implement vtables to use "thunks"! */
  71. # define JUMP_FIELD(TYPE, NAME) struct { short delta1, delta2; TYPE pfn; } NAME
  72. # define JUMP0(FUNC, THIS) _IO_JUMPS(THIS)->FUNC.pfn (THIS)
  73. # define JUMP1(FUNC, THIS, X1) _IO_JUMPS(THIS)->FUNC.pfn (THIS, X1)
  74. # define JUMP2(FUNC, THIS, X1, X2) _IO_JUMPS(THIS)->FUNC.pfn (THIS, X1, X2)
  75. # define JUMP3(FUNC, THIS, X1,X2,X3) _IO_JUMPS(THIS)->FUNC.pfn (THIS, X1,X2,X3)
  76. # define JUMP_INIT(NAME, VALUE) {0, 0, VALUE}
  77. # define JUMP_INIT_DUMMY JUMP_INIT(dummy, 0)
  78. #endif
  79. /* The 'finish' function does any final cleaning up of an _IO_FILE object.
  80.    It does not delete (free) it, but does everything else to finalize it/
  81.    It matches the streambuf::~streambuf virtual destructor.  */
  82. typedef void (*_IO_finish_t) __P ((_IO_FILE *, int)); /* finalize */
  83. #define _IO_FINISH(FP) JUMP1 (__finish, FP, 0)
  84. /* The 'overflow' hook flushes the buffer.
  85.    The second argument is a character, or EOF.
  86.    It matches the streambuf::overflow virtual function. */
  87. typedef int (*_IO_overflow_t) __P ((_IO_FILE *, int));
  88. #define _IO_OVERFLOW(FP, CH) JUMP1 (__overflow, FP, CH)
  89. /* The 'underflow' hook tries to fills the get buffer.
  90.    It returns the next character (as an unsigned char) or EOF.  The next
  91.    character remains in the get buffer, and the get position is not changed.
  92.    It matches the streambuf::underflow virtual function. */
  93. typedef int (*_IO_underflow_t) __P ((_IO_FILE *));
  94. #define _IO_UNDERFLOW(FP) JUMP0 (__underflow, FP)
  95. /* The 'uflow' hook returns the next character in the input stream
  96.    (cast to unsigned char), and increments the read position;
  97.    EOF is returned on failure.
  98.    It matches the streambuf::uflow virtual function, which is not in the
  99.    cfront implementation, but was added to C++ by the ANSI/ISO committee. */
  100. #define _IO_UFLOW(FP) JUMP0 (__uflow, FP)
  101. /* The 'pbackfail' hook handles backing up.
  102.    It matches the streambuf::pbackfail virtual function. */
  103. typedef int (*_IO_pbackfail_t) __P ((_IO_FILE *, int));
  104. #define _IO_PBACKFAIL(FP, CH) JUMP1 (__pbackfail, FP, CH)
  105. /* The 'xsputn' hook writes upto N characters from buffer DATA.
  106.    Returns the number of character actually written.
  107.    It matches the streambuf::xsputn virtual function. */
  108. typedef _IO_size_t (*_IO_xsputn_t) __P ((_IO_FILE *FP, const void *DATA,
  109.  _IO_size_t N));
  110. #define _IO_XSPUTN(FP, DATA, N) JUMP2 (__xsputn, FP, DATA, N)
  111. /* The 'xsgetn' hook reads upto N characters into buffer DATA.
  112.    Returns the number of character actually read.
  113.    It matches the streambuf::xsgetn virtual function. */
  114. typedef _IO_size_t (*_IO_xsgetn_t) __P ((_IO_FILE *FP, void *DATA,
  115.  _IO_size_t N));
  116. #define _IO_XSGETN(FP, DATA, N) JUMP2 (__xsgetn, FP, DATA, N)
  117. /* The 'seekoff' hook moves the stream position to a new position
  118.    relative to the start of the file (if DIR==0), the current position
  119.    (MODE==1), or the end of the file (MODE==2).
  120.    It matches the streambuf::seekoff virtual function.
  121.    It is also used for the ANSI fseek function. */
  122. #if defined(_G_IO_IO_FILE_VERSION) && _G_IO_IO_FILE_VERSION == 0x20001
  123. typedef _IO_fpos64_t (*_IO_seekoff_t) __P ((_IO_FILE *FP, _IO_off64_t OFF,
  124.   int DIR, int MODE));
  125. #else
  126. typedef _IO_fpos_t (*_IO_seekoff_t) __P ((_IO_FILE *FP, _IO_off_t OFF,
  127.   int DIR, int MODE));
  128. #endif
  129. #define _IO_SEEKOFF(FP, OFF, DIR, MODE) JUMP3 (__seekoff, FP, OFF, DIR, MODE)
  130. /* The 'seekpos' hook also moves the stream position,
  131.    but to an absolute position given by a fpos_t (seekpos).
  132.    It matches the streambuf::seekpos virtual function.
  133.    It is also used for the ANSI fgetpos and fsetpos functions.  */
  134. /* The _IO_seek_cur and _IO_seek_end options are not allowed. */
  135. #if defined(_G_IO_IO_FILE_VERSION) && _G_IO_IO_FILE_VERSION == 0x20001
  136. typedef _IO_fpos64_t (*_IO_seekpos_t) __P ((_IO_FILE *, _IO_fpos64_t, int));
  137. #else
  138. typedef _IO_fpos_t (*_IO_seekpos_t) __P ((_IO_FILE *, _IO_fpos_t, int));
  139. #endif
  140. #define _IO_SEEKPOS(FP, POS, FLAGS) JUMP2 (__seekpos, FP, POS, FLAGS)
  141. /* The 'setbuf' hook gives a buffer to the file.
  142.    It matches the streambuf::setbuf virtual function. */
  143. typedef _IO_FILE* (*_IO_setbuf_t) __P ((_IO_FILE *, char *, _IO_ssize_t));
  144. #define _IO_SETBUF(FP, BUFFER, LENGTH) JUMP2 (__setbuf, FP, BUFFER, LENGTH)
  145. /* The 'sync' hook attempts to synchronize the internal data structures
  146.    of the file with the external state.
  147.    It matches the streambuf::sync virtual function. */
  148. typedef int (*_IO_sync_t) __P ((_IO_FILE *));
  149. #define _IO_SYNC(FP) JUMP0 (__sync, FP)
  150. /* The 'doallocate' hook is used to tell the file to allocate a buffer.
  151.    It matches the streambuf::doallocate virtual function, which is not
  152.    in the ANSI/ISO C++ standard, but is part traditional implementations. */
  153. typedef int (*_IO_doallocate_t) __P ((_IO_FILE *));
  154. #define _IO_DOALLOCATE(FP) JUMP0 (__doallocate, FP)
  155. /* The following four hooks (sysread, syswrite, sysclose, sysseek, and
  156.    sysstat) are low-level hooks specific to this implementation.
  157.    There is no correspondence in the ANSI/ISO C++ standard library.
  158.    The hooks basically correspond to the Unix system functions
  159.    (read, write, close, lseek, and stat) except that a _IO_FILE*
  160.    parameter is used instead of a integer file descriptor;  the default
  161.    implementation used for normal files just calls those functions.
  162.    The advantage of overriding these functions instead of the higher-level
  163.    ones (underflow, overflow etc) is that you can leave all the buffering
  164.    higher-level functions.  */
  165. /* The 'sysread' hook is used to read data from the external file into
  166.    an existing buffer.  It generalizes the Unix read(2) function.
  167.    It matches the streambuf::sys_read virtual function, which is
  168.    specific to this implementation. */
  169. typedef _IO_ssize_t (*_IO_read_t) __P ((_IO_FILE *, void *, _IO_ssize_t));
  170. #define _IO_SYSREAD(FP, DATA, LEN) JUMP2 (__read, FP, DATA, LEN)
  171. /* The 'syswrite' hook is used to write data from an existing buffer
  172.    to an external file.  It generalizes the Unix write(2) function.
  173.    It matches the streambuf::sys_write virtual function, which is
  174.    specific to this implementation. */
  175. typedef _IO_ssize_t (*_IO_write_t) __P ((_IO_FILE *,const void *,_IO_ssize_t));
  176. #define _IO_SYSWRITE(FP, DATA, LEN) JUMP2 (__write, FP, DATA, LEN)
  177. /* The 'sysseek' hook is used to re-position an external file.
  178.    It generalizes the Unix lseek(2) function.
  179.    It matches the streambuf::sys_seek virtual function, which is
  180.    specific to this implementation. */
  181. #if defined(_G_IO_IO_FILE_VERSION) && _G_IO_IO_FILE_VERSION == 0x20001
  182. typedef _IO_fpos64_t (*_IO_seek_t) __P ((_IO_FILE *, _IO_off64_t, int));
  183. #else
  184. typedef _IO_fpos_t (*_IO_seek_t) __P ((_IO_FILE *, _IO_off_t, int));
  185. #endif
  186. #define _IO_SYSSEEK(FP, OFFSET, MODE) JUMP2 (__seek, FP, OFFSET, MODE)
  187. /* The 'sysclose' hook is used to finalize (close, finish up) an
  188.    external file.  It generalizes the Unix close(2) function.
  189.    It matches the streambuf::sys_close virtual function, which is
  190.    specific to this implementation. */
  191. typedef int (*_IO_close_t) __P ((_IO_FILE *)); /* finalize */
  192. #define _IO_SYSCLOSE(FP) JUMP0 (__close, FP)
  193. /* The 'sysstat' hook is used to get information about an external file
  194.    into a struct stat buffer.  It generalizes the Unix fstat(2) call.
  195.    It matches the streambuf::sys_stat virtual function, which is
  196.    specific to this implementation. */
  197. typedef int (*_IO_stat_t) __P ((_IO_FILE *, void *));
  198. #define _IO_SYSSTAT(FP, BUF) JUMP1 (__stat, FP, BUF)
  199. #if _G_IO_IO_FILE_VERSION == 0x20001
  200. /* The 'showmany' hook can be used to get an image how much input is
  201.    available.  In many cases the answer will be 0 which means unknown
  202.    but some cases one can provide real information.  */
  203. typedef int (*_IO_showmanyc_t) __P ((_IO_FILE *));
  204. #define _IO_SHOWMANYC(FP) JUMP0 (__showmanyc, FP)
  205. /* The 'imbue' hook is used to get information about the currently
  206.    installed locales.  */
  207. typedef void (*_IO_imbue_t) __P ((_IO_FILE *, void *));
  208. #define _IO_IMBUE(FP, LOCALE) JUMP1 (__imbue, FP, LOCALE)
  209. #endif
  210. #define _IO_CHAR_TYPE char /* unsigned char ? */
  211. #define _IO_INT_TYPE int
  212. struct _IO_jump_t
  213. {
  214.     JUMP_FIELD(_G_size_t, __dummy);
  215. #ifdef _G_USING_THUNKS
  216.     JUMP_FIELD(_G_size_t, __dummy2);
  217. #endif
  218.     JUMP_FIELD(_IO_finish_t, __finish);
  219.     JUMP_FIELD(_IO_overflow_t, __overflow);
  220.     JUMP_FIELD(_IO_underflow_t, __underflow);
  221.     JUMP_FIELD(_IO_underflow_t, __uflow);
  222.     JUMP_FIELD(_IO_pbackfail_t, __pbackfail);
  223.     /* showmany */
  224.     JUMP_FIELD(_IO_xsputn_t, __xsputn);
  225.     JUMP_FIELD(_IO_xsgetn_t, __xsgetn);
  226.     JUMP_FIELD(_IO_seekoff_t, __seekoff);
  227.     JUMP_FIELD(_IO_seekpos_t, __seekpos);
  228.     JUMP_FIELD(_IO_setbuf_t, __setbuf);
  229.     JUMP_FIELD(_IO_sync_t, __sync);
  230.     JUMP_FIELD(_IO_doallocate_t, __doallocate);
  231.     JUMP_FIELD(_IO_read_t, __read);
  232.     JUMP_FIELD(_IO_write_t, __write);
  233.     JUMP_FIELD(_IO_seek_t, __seek);
  234.     JUMP_FIELD(_IO_close_t, __close);
  235.     JUMP_FIELD(_IO_stat_t, __stat);
  236. #if _G_IO_IO_FILE_VERSION == 0x20001
  237.     JUMP_FIELD(_IO_showmanyc_t, __showmanyc);
  238.     JUMP_FIELD(_IO_imbue_t, __imbue);
  239. #endif
  240. #if 0
  241.     get_column;
  242.     set_column;
  243. #endif
  244. };
  245. /* We always allocate an extra word following an _IO_FILE.
  246.    This contains a pointer to the function jump table used.
  247.    This is for compatibility with C++ streambuf; the word can
  248.    be used to smash to a pointer to a virtual function table. */
  249. struct _IO_FILE_plus
  250. {
  251.   _IO_FILE file;
  252.   const struct _IO_jump_t *vtable;
  253. };
  254. /* Generic functions */
  255. #if defined(_G_IO_IO_FILE_VERSION) && _G_IO_IO_FILE_VERSION == 0x20001
  256. extern _IO_fpos64_t _IO_seekoff __P ((_IO_FILE *, _IO_off64_t, int, int));
  257. extern _IO_fpos64_t _IO_seekpos __P ((_IO_FILE *, _IO_fpos64_t, int));
  258. #else
  259. extern _IO_fpos_t _IO_seekoff __P ((_IO_FILE *, _IO_off_t, int, int));
  260. extern _IO_fpos_t _IO_seekpos __P ((_IO_FILE *, _IO_fpos_t, int));
  261. #endif
  262. extern void _IO_switch_to_main_get_area __P ((_IO_FILE *));
  263. extern void _IO_switch_to_backup_area __P ((_IO_FILE *));
  264. extern int _IO_switch_to_get_mode __P ((_IO_FILE *));
  265. extern void _IO_init __P ((_IO_FILE *, int));
  266. extern int _IO_sputbackc __P ((_IO_FILE *, int));
  267. extern int _IO_sungetc __P ((_IO_FILE *));
  268. extern void _IO_un_link __P ((_IO_FILE *));
  269. extern void _IO_link_in __P ((_IO_FILE *));
  270. extern void _IO_doallocbuf __P ((_IO_FILE *));
  271. extern void _IO_unsave_markers __P ((_IO_FILE *));
  272. extern void _IO_setb __P ((_IO_FILE *, char *, char *, int));
  273. extern unsigned _IO_adjust_column __P ((unsigned, const char *, int));
  274. #define _IO_sputn(__fp, __s, __n) _IO_XSPUTN (__fp, __s, __n)
  275. /* Marker-related function. */
  276. extern void _IO_init_marker __P ((struct _IO_marker *, _IO_FILE *));
  277. extern void _IO_remove_marker __P ((struct _IO_marker *));
  278. extern int _IO_marker_difference __P ((struct _IO_marker *,
  279.        struct _IO_marker *));
  280. extern int _IO_marker_delta __P ((struct _IO_marker *));
  281. extern int _IO_seekmark __P ((_IO_FILE *, struct _IO_marker *, int));
  282. /* Default jumptable functions. */
  283. extern int _IO_default_underflow __P ((_IO_FILE *));
  284. extern int _IO_default_uflow __P ((_IO_FILE *));
  285. extern int _IO_default_doallocate __P ((_IO_FILE *));
  286. extern void _IO_default_finish __P ((_IO_FILE *, int));
  287. extern int _IO_default_pbackfail __P ((_IO_FILE *, int));
  288. extern _IO_FILE* _IO_default_setbuf __P ((_IO_FILE *, char *, _IO_ssize_t));
  289. extern _IO_size_t _IO_default_xsputn __P ((_IO_FILE *, const void *,
  290.    _IO_size_t));
  291. extern _IO_size_t _IO_default_xsgetn __P ((_IO_FILE *, void *, _IO_size_t));
  292. #if defined(_G_IO_IO_FILE_VERSION) && _G_IO_IO_FILE_VERSION == 0x20001
  293. extern _IO_fpos64_t _IO_default_seekoff __P ((_IO_FILE *,
  294.       _IO_off64_t, int, int));
  295. extern _IO_fpos64_t _IO_default_seekpos __P ((_IO_FILE *,
  296.       _IO_fpos64_t, int));
  297. #else
  298. extern _IO_fpos_t _IO_default_seekoff __P ((_IO_FILE *, _IO_off_t, int, int));
  299. extern _IO_fpos_t _IO_default_seekpos __P ((_IO_FILE *, _IO_fpos_t, int));
  300. #endif
  301. extern _IO_ssize_t _IO_default_write __P ((_IO_FILE *, const void *,
  302.    _IO_ssize_t));
  303. extern _IO_ssize_t _IO_default_read __P ((_IO_FILE *, void *, _IO_ssize_t));
  304. extern int _IO_default_stat __P ((_IO_FILE *, void *));
  305. #if defined(_G_IO_IO_FILE_VERSION) && _G_IO_IO_FILE_VERSION == 0x20001
  306. extern _IO_fpos64_t _IO_default_seek __P ((_IO_FILE *, _IO_off64_t, int));
  307. #else
  308. extern _IO_fpos_t _IO_default_seek __P ((_IO_FILE *, _IO_off_t, int));
  309. #endif
  310. extern int _IO_default_sync __P ((_IO_FILE *));
  311. #define _IO_default_close ((_IO_close_t) _IO_default_sync)
  312. extern struct _IO_jump_t _IO_file_jumps;
  313. extern struct _IO_jump_t _IO_streambuf_jumps;
  314. extern struct _IO_jump_t _IO_proc_jumps;
  315. extern struct _IO_jump_t _IO_str_jumps;
  316. extern int _IO_do_write __P ((_IO_FILE *, const char *, _IO_size_t));
  317. extern int _IO_flush_all __P ((void));
  318. extern void _IO_cleanup __P ((void));
  319. extern void _IO_flush_all_linebuffered __P ((void));
  320. #define _IO_do_flush(_f) 
  321.   _IO_do_write(_f, (_f)->_IO_write_base, 
  322.        (_f)->_IO_write_ptr-(_f)->_IO_write_base)
  323. #define _IO_in_put_mode(_fp) ((_fp)->_flags & _IO_CURRENTLY_PUTTING)
  324. #define _IO_mask_flags(fp, f, mask) 
  325.        ((fp)->_flags = ((fp)->_flags & ~(mask)) | ((f) & (mask)))
  326. #define _IO_setg(fp, eb, g, eg)  ((fp)->_IO_read_base = (eb),
  327. (fp)->_IO_read_ptr = (g), (fp)->_IO_read_end = (eg))
  328. #define _IO_setp(__fp, __p, __ep) 
  329.        ((__fp)->_IO_write_base = (__fp)->_IO_write_ptr = __p, (__fp)->_IO_write_end = (__ep))
  330. #define _IO_have_backup(fp) ((fp)->_IO_save_base != NULL)
  331. #define _IO_in_backup(fp) ((fp)->_flags & _IO_IN_BACKUP)
  332. #define _IO_have_markers(fp) ((fp)->_markers != NULL)
  333. #define _IO_blen(fp) ((fp)->_IO_buf_end - (fp)->_IO_buf_base)
  334. /* Jumptable functions for files. */
  335. extern int _IO_file_doallocate __P ((_IO_FILE *));
  336. extern _IO_FILE* _IO_file_setbuf __P ((_IO_FILE *, char *, _IO_ssize_t));
  337. #if defined(_G_IO_IO_FILE_VERSION) && _G_IO_IO_FILE_VERSION == 0x20001
  338. extern _IO_fpos64_t _IO_file_seekoff __P ((_IO_FILE *, _IO_off64_t, int, int));
  339. extern _IO_fpos64_t _IO_file_seek __P ((_IO_FILE *, _IO_off64_t, int));
  340. #else
  341. extern _IO_fpos_t _IO_file_seekoff __P ((_IO_FILE *, _IO_off_t, int, int));
  342. extern _IO_fpos_t _IO_file_seek __P ((_IO_FILE *, _IO_off_t, int));
  343. #endif
  344. extern _IO_size_t _IO_file_xsputn __P ((_IO_FILE *, const void *, _IO_size_t));
  345. extern int _IO_file_stat __P ((_IO_FILE *, void *));
  346. extern int _IO_file_close __P ((_IO_FILE *));
  347. extern int _IO_file_underflow __P ((_IO_FILE *));
  348. extern int _IO_file_overflow __P ((_IO_FILE *, int));
  349. #define _IO_file_is_open(__fp) ((__fp)->_fileno >= 0)
  350. extern void _IO_file_init __P ((_IO_FILE *));
  351. extern _IO_FILE* _IO_file_attach __P ((_IO_FILE *, int));
  352. extern _IO_FILE* _IO_file_open __P ((_IO_FILE *, const char *, int, int,
  353.      int, int));
  354. #if _G_IO_IO_FILE_VERSION == 0x20001
  355. extern _IO_FILE* _IO_file_fopen __P ((_IO_FILE *, const char *, const char *,
  356.       int));
  357. #else
  358. extern _IO_FILE* _IO_file_fopen __P ((_IO_FILE *, const char *, const char *));
  359. #endif
  360. extern _IO_ssize_t _IO_file_write __P ((_IO_FILE *, const void *,
  361. _IO_ssize_t));
  362. extern _IO_ssize_t _IO_file_read __P ((_IO_FILE *, void *, _IO_ssize_t));
  363. extern int _IO_file_sync __P ((_IO_FILE *));
  364. extern int _IO_file_close_it __P ((_IO_FILE *));
  365. extern void _IO_file_finish __P ((_IO_FILE *, int));
  366. /* Jumptable functions for proc_files. */
  367. extern _IO_FILE* _IO_proc_open __P ((_IO_FILE *, const char *, const char *));
  368. extern int _IO_proc_close __P ((_IO_FILE *));
  369. /* Jumptable functions for strfiles. */
  370. extern int _IO_str_underflow __P ((_IO_FILE *));
  371. extern int _IO_str_overflow __P ((_IO_FILE *, int));
  372. extern int _IO_str_pbackfail __P ((_IO_FILE *, int));
  373. #if defined(_G_IO_IO_FILE_VERSION) && _G_IO_IO_FILE_VERSION == 0x20001
  374. extern _IO_fpos64_t _IO_str_seekoff __P ((_IO_FILE *, _IO_off64_t, int, int));
  375. #else
  376. extern _IO_fpos_t _IO_str_seekoff __P ((_IO_FILE *, _IO_off_t, int, int));
  377. #endif
  378. extern void _IO_str_finish __P ((_IO_FILE *, int));
  379. /* Other strfile functions */
  380. extern void _IO_str_init_static __P ((_IO_FILE *, char *, int, char *));
  381. extern void _IO_str_init_readonly __P ((_IO_FILE *, const char *, int));
  382. extern _IO_ssize_t _IO_str_count __P ((_IO_FILE *));
  383. extern int _IO_vasprintf __P ((char **result_ptr, __const char *format,
  384.        _IO_va_list args));
  385. extern int _IO_vdprintf __P ((int d, __const char *format, _IO_va_list arg));
  386. extern int _IO_vsnprintf __P ((char *string, _IO_size_t maxlen,
  387.        __const char *format, _IO_va_list args));
  388. extern _IO_size_t _IO_getline __P ((_IO_FILE *,char *, _IO_size_t, int, int));
  389. extern _IO_size_t _IO_getline_info __P ((_IO_FILE *,char *, _IO_size_t,
  390.  int, int, int *));
  391. extern _IO_ssize_t _IO_getdelim __P ((char **, _IO_size_t *, int, _IO_FILE *));
  392. extern double _IO_strtod __P ((const char *, char **));
  393. extern char *_IO_dtoa __P ((double __d, int __mode, int __ndigits,
  394.     int *__decpt, int *__sign, char **__rve));
  395. extern int _IO_outfloat __P ((double __value, _IO_FILE *__sb, int __type,
  396.       int __width, int __precision, int __flags,
  397.       int __sign_mode, int __fill));
  398. extern _IO_FILE *_IO_list_all;
  399. extern void (*_IO_cleanup_registration_needed) __P ((void));
  400. #ifndef EOF
  401. # define EOF (-1)
  402. #endif
  403. #ifndef NULL
  404. # if defined __GNUG__ && 
  405.     (__GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 8))
  406. #  define NULL (__null)
  407. # else
  408. #  if !defined(__cplusplus)
  409. #   define NULL ((void*)0)
  410. #  else
  411. #   define NULL (0)
  412. #  endif
  413. # endif
  414. #endif
  415. #if _G_HAVE_MMAP
  416. # include <unistd.h>
  417. # include <fcntl.h>
  418. # include <sys/mman.h>
  419. # include <sys/param.h>
  420. # if !defined(MAP_ANONYMOUS) && defined(MAP_ANON)
  421. #  define MAP_ANONYMOUS MAP_ANON
  422. # endif
  423. # if !defined(MAP_ANONYMOUS) || !defined(EXEC_PAGESIZE)
  424. #  undef _G_HAVE_MMAP
  425. #  define _G_HAVE_MMAP 0
  426. # endif
  427. #endif /* _G_HAVE_MMAP */
  428. #if _G_HAVE_MMAP
  429. # ifdef _LIBC
  430. /* When using this code in the GNU libc we must not pollute the name space.  */
  431. #  define mmap __mmap
  432. #  define munmap __munmap
  433. # endif
  434. # define ROUND_TO_PAGE(_S) 
  435.        (((_S) + EXEC_PAGESIZE - 1) & ~(EXEC_PAGESIZE - 1))
  436. # define FREE_BUF(_B, _S) 
  437.        munmap ((_B), ROUND_TO_PAGE (_S))
  438. # define ALLOC_BUF(_B, _S, _R) 
  439.        do {       
  440.   (_B) = (char *) mmap (0, ROUND_TO_PAGE (_S),       
  441. PROT_READ | PROT_WRITE,       
  442. MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);       
  443.   if ((_B) == (char *) -1)       
  444.     return (_R);       
  445.        } while (0)
  446. #else /* _G_HAVE_MMAP */
  447. # define FREE_BUF(_B, _S) 
  448.        free(_B)
  449. # define ALLOC_BUF(_B, _S, _R) 
  450.        do {       
  451.   (_B) = (char*)malloc(_S);       
  452.   if ((_B) == NULL)       
  453.     return (_R);       
  454.        } while (0)
  455. #endif /* _G_HAVE_MMAP */
  456. #ifndef OS_FSTAT
  457. # define OS_FSTAT fstat
  458. #endif
  459. struct stat;
  460. extern _IO_ssize_t _IO_read __P ((int, void *, _IO_size_t));
  461. extern _IO_ssize_t _IO_write __P ((int, const void *, _IO_size_t));
  462. extern _IO_off_t _IO_lseek __P ((int, _IO_off_t, int));
  463. extern int _IO_close __P ((int));
  464. extern int _IO_fstat __P ((int, struct stat *));
  465. extern int _IO_vscanf __P ((const char *, _IO_va_list));
  466. /* Operations on _IO_fpos_t.
  467.    Normally, these are trivial, but we provide hooks for configurations
  468.    where an _IO_fpos_t is a struct.
  469.    Note that _IO_off_t must be an integral type. */
  470. /* _IO_pos_BAD is an _IO_fpos_t value indicating error, unknown, or EOF. */
  471. #ifndef _IO_pos_BAD
  472. # if defined(_G_IO_IO_FILE_VERSION) && _G_IO_IO_FILE_VERSION == 0x20001
  473. #  define _IO_pos_BAD ((_IO_fpos64_t) -1)
  474. # else
  475. #  define _IO_pos_BAD ((_IO_fpos_t) -1)
  476. # endif
  477. #endif
  478. /* _IO_pos_as_off converts an _IO_fpos_t value to an _IO_off_t value. */
  479. #ifndef _IO_pos_as_off
  480. # if defined(_G_IO_IO_FILE_VERSION) && _G_IO_IO_FILE_VERSION == 0x20001
  481. #  define _IO_pos_as_off(__pos) ((_IO_off64_t) (__pos))
  482. # else
  483. #  define _IO_pos_as_off(__pos) ((_IO_off_t) (__pos))
  484. # endif
  485. #endif
  486. /* _IO_pos_adjust adjust an _IO_fpos_t by some number of bytes. */
  487. #ifndef _IO_pos_adjust
  488. # define _IO_pos_adjust(__pos, __delta) ((__pos) += (__delta))
  489. #endif
  490. /* _IO_pos_0 is an _IO_fpos_t value indicating beginning of file. */
  491. #ifndef _IO_pos_0
  492. # if defined(_G_IO_IO_FILE_VERSION) && _G_IO_IO_FILE_VERSION == 0x20001
  493. #  define _IO_pos_0 ((_IO_fpos64_t) 0)
  494. # else
  495. #  define _IO_pos_0 ((_IO_fpos_t) 0)
  496. # endif
  497. #endif
  498. #ifdef __cplusplus
  499. }
  500. #endif
  501. #ifdef _IO_MTSAFE_IO
  502. /* check following! */
  503. # define FILEBUF_LITERAL(CHAIN, FLAGS, FD) 
  504.        { _IO_MAGIC+_IO_LINKED+_IO_IS_FILEBUF+FLAGS, 
  505.          0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, CHAIN, FD, 
  506.    0, 0, 0, 0, { 0 }, &_IO_stdfile_##FD##_lock }
  507. #else
  508. /* check following! */
  509. # define FILEBUF_LITERAL(CHAIN, FLAGS, FD) 
  510.        { _IO_MAGIC+_IO_LINKED+_IO_IS_FILEBUF+FLAGS, 
  511.    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, CHAIN, FD }
  512. #endif
  513. /* VTABLE_LABEL defines NAME as of the CLASS class.
  514.    CNLENGTH is strlen(#CLASS).  */
  515. #ifdef __GNUC__
  516. # if _G_VTABLE_LABEL_HAS_LENGTH
  517. #  define VTABLE_LABEL(NAME, CLASS, CNLENGTH) 
  518.   extern char NAME[] asm (_G_VTABLE_LABEL_PREFIX #CNLENGTH #CLASS);
  519. # else
  520. #  define VTABLE_LABEL(NAME, CLASS, CNLENGTH) 
  521.   extern char NAME[] asm (_G_VTABLE_LABEL_PREFIX #CLASS);
  522. # endif
  523. #endif /* __GNUC__ */
  524. #if !defined(builtinbuf_vtable) && defined(__cplusplus)
  525. # ifdef __GNUC__
  526. VTABLE_LABEL(builtinbuf_vtable, builtinbuf, 10)
  527. # else
  528. #  if _G_VTABLE_LABEL_HAS_LENGTH
  529. #   define builtinbuf_vtable _G_VTABLE_LABEL_PREFIX_ID##10builtinbuf
  530. #  else
  531. #   define builtinbuf_vtable _G_VTABLE_LABEL_PREFIX_ID##builtinbuf
  532. #  endif
  533. # endif
  534. #endif /* !defined(builtinbuf_vtable) && defined(__cplusplus) */
  535. #if defined(__STDC__) || defined(__cplusplus)
  536. # define _IO_va_start(args, last) va_start(args, last)
  537. #else
  538. # define _IO_va_start(args, last) va_start(args)
  539. #endif
  540. extern struct _IO_fake_stdiobuf _IO_stdin_buf, _IO_stdout_buf, _IO_stderr_buf;
  541. #if 1
  542. # define COERCE_FILE(FILE) /* Nothing */
  543. #else
  544. /* This is part of the kludge for binary compatibility with old stdio. */
  545. # define COERCE_FILE(FILE) 
  546.   (((FILE)->_IO_file_flags & _IO_MAGIC_MASK) == _OLD_MAGIC_MASK 
  547.     && (FILE) = *(FILE**)&((int*)fp)[1])
  548. #endif
  549. #ifdef EINVAL
  550. # define MAYBE_SET_EINVAL __set_errno (EINVAL)
  551. #else
  552. # define MAYBE_SET_EINVAL /* nothing */
  553. #endif
  554. #ifdef IO_DEBUG
  555. # define CHECK_FILE(FILE, RET) 
  556. if ((FILE) == NULL) { MAYBE_SET_EINVAL; return RET; } 
  557. else { COERCE_FILE(FILE); 
  558.        if (((FILE)->_IO_file_flags & _IO_MAGIC_MASK) != _IO_MAGIC) 
  559.   { MAYBE_SET_EINVAL; return RET; }}
  560. #else
  561. # define CHECK_FILE(FILE, RET) COERCE_FILE (FILE)
  562. #endif