1 /* An fseeko() function that, together with fflush(), is POSIX compliant.
2 Copyright (C) 2007-2011 Free Software Foundation, Inc.
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2, or (at your option)
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License along
15 with this program; if not, write to the Free Software Foundation,
16 Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
23 /* Get off_t and lseek. */
26 #include "stdio-impl.h"
29 fseeko (FILE *fp, off_t offset, int whence)
37 /* mingw gives bogus answers rather than failure on non-seekable files. */
38 if (lseek (fileno (fp), 0, SEEK_CUR) == -1)
42 /* These tests are based on fpurge.c. */
43 #if defined _IO_ftrylockfile || __GNU_LIBRARY__ == 1 /* GNU libc, BeOS, Haiku, Linux libc5 */
44 if (fp->_IO_read_end == fp->_IO_read_ptr
45 && fp->_IO_write_ptr == fp->_IO_write_base
46 && fp->_IO_save_base == NULL)
47 #elif defined __sferror || defined __DragonFly__ /* FreeBSD, NetBSD, OpenBSD, DragonFly, MacOS X, Cygwin */
48 # if defined __SL64 && defined __SCLE /* Cygwin */
49 if ((fp->_flags & __SL64) == 0)
51 /* Cygwin 1.5.0 through 1.5.24 failed to open stdin in 64-bit
52 mode; but has an fseeko that requires 64-bit mode. */
53 FILE *tmp = fopen ("/dev/null", "r");
57 fp->_seek64 = tmp->_seek64;
61 if (fp_->_p == fp_->_bf._base
63 && fp_->_w == ((fp_->_flags & (__SLBF | __SNBF | __SRD)) == 0 /* fully buffered and not currently reading? */
66 && fp_ub._base == NULL)
67 #elif defined __EMX__ /* emx+gcc */
68 if (fp->_ptr == fp->_buffer
71 && fp->_ungetc_count == 0)
72 #elif defined __minix /* Minix */
73 if (fp_->_ptr == fp_->_buf
74 && (fp_->_ptr == NULL || fp_->_count == 0))
75 #elif defined _IOERR /* AIX, HP-UX, IRIX, OSF/1, Solaris, OpenServer, mingw, NonStop Kernel */
76 if (fp_->_ptr == fp_->_base
77 && (fp_->_ptr == NULL || fp_->_cnt == 0))
78 #elif defined __UCLIBC__ /* uClibc */
79 if (((fp->__modeflags & __FLAG_WRITING) == 0
80 || fp->__bufpos == fp->__bufstart)
81 && ((fp->__modeflags & (__FLAG_READONLY | __FLAG_READING)) == 0
82 || fp->__bufpos == fp->__bufread))
83 #elif defined __QNX__ /* QNX */
84 if ((fp->_Mode & 0x2000 /* _MWRITE */ ? fp->_Next == fp->_Buf : fp->_Next == fp->_Rend)
85 && fp->_Rback == fp->_Back + sizeof (fp->_Back)
86 && fp->_Rsave == NULL)
87 #elif defined __MINT__ /* Atari FreeMiNT */
88 if (fp->__bufp == fp->__buffer
89 && fp->__get_limit == fp->__bufp
90 && fp->__put_limit == fp->__bufp
91 && !fp->__pushed_back)
93 #error "Please port gnulib fseeko.c to your platform! Look at the code in fpurge.c, then report this to bug-gnulib."
96 /* We get here when an fflush() call immediately preceded this one (or
97 if ftell() has created buffers but no I/O has occurred on a
98 newly-opened stream). We know there are no buffers. */
99 off_t pos = lseek (fileno (fp), offset, whence);
102 #if defined __sferror || defined __DragonFly__ /* FreeBSD, NetBSD, OpenBSD, DragonFly, MacOS X, Cygwin */
103 fp_->_flags &= ~__SOFF;
108 #if defined _IO_ftrylockfile || __GNU_LIBRARY__ == 1 /* GNU libc, BeOS, Haiku, Linux libc5 */
109 fp->_flags &= ~_IO_EOF_SEEN;
111 #elif defined __sferror || defined __DragonFly__ /* FreeBSD, NetBSD, OpenBSD, DragonFly, MacOS X, Cygwin */
112 # if defined __CYGWIN__
113 /* fp_->_offset is typed as an integer. */
116 /* fp_->_offset is an fpos_t. */
118 /* Use a union, since on NetBSD, the compilation flags
119 determine whether fpos_t is typedef'd to off_t or a struct
120 containing a single off_t member. */
130 fp_->_flags |= __SOFF;
131 fp_->_flags &= ~__SEOF;
132 #elif defined __EMX__ /* emx+gcc */
133 fp->_flags &= ~_IOEOF;
134 #elif defined _IOERR /* AIX, HP-UX, IRIX, OSF/1, Solaris, OpenServer, mingw, NonStop Kernel */
135 fp->_flag &= ~_IOEOF;
136 #elif defined __MINT__ /* Atari FreeMiNT */
142 return fseeko (fp, offset, whence);