* sysdeps/m68k/fpu/libm-test-ulps: Update.
[glibc.git] / libio / oldfileops.c
blob0ade247a1aa0505957586619342dd46c7b8bd24d
1 /* Copyright (C) 1993,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>.
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.
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.
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.
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. */
27 /* This is a compatibility file. If we don't build the libc with
28 versioning don't compile this file. */
29 #include <shlib-compat.h>
30 #if SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_1)
32 #ifndef _POSIX_SOURCE
33 # define _POSIX_SOURCE
34 #endif
35 #define _IO_USE_OLD_IO_FILE
36 #include "libioP.h"
37 #include <fcntl.h>
38 #include <sys/types.h>
39 #include <sys/stat.h>
40 #include <string.h>
41 #include <errno.h>
42 #ifdef __STDC__
43 #include <stdlib.h>
44 #endif
45 #ifndef errno
46 extern int errno;
47 #endif
48 #ifndef __set_errno
49 # define __set_errno(Val) errno = (Val)
50 #endif
53 #ifdef _LIBC
54 # define open(Name, Flags, Prot) __open (Name, Flags, Prot)
55 # define close(FD) __close (FD)
56 # define lseek(FD, Offset, Whence) __lseek (FD, Offset, Whence)
57 # define read(FD, Buf, NBytes) __read (FD, Buf, NBytes)
58 # define write(FD, Buf, NBytes) __write (FD, Buf, NBytes)
59 #endif
61 /* An fstream can be in at most one of put mode, get mode, or putback mode.
62 Putback mode is a variant of get mode.
64 In a filebuf, there is only one current position, instead of two
65 separate get and put pointers. In get mode, the current position
66 is that of gptr(); in put mode that of pptr().
68 The position in the buffer that corresponds to the position
69 in external file system is normally _IO_read_end, except in putback
70 mode, when it is _IO_save_end.
71 If the field _fb._offset is >= 0, it gives the offset in
72 the file as a whole corresponding to eGptr(). (?)
74 PUT MODE:
75 If a filebuf is in put mode, then all of _IO_read_ptr, _IO_read_end,
76 and _IO_read_base are equal to each other. These are usually equal
77 to _IO_buf_base, though not necessarily if we have switched from
78 get mode to put mode. (The reason is to maintain the invariant
79 that _IO_read_end corresponds to the external file position.)
80 _IO_write_base is non-NULL and usually equal to _IO_base_base.
81 We also have _IO_write_end == _IO_buf_end, but only in fully buffered mode.
82 The un-flushed character are those between _IO_write_base and _IO_write_ptr.
84 GET MODE:
85 If a filebuf is in get or putback mode, eback() != egptr().
86 In get mode, the unread characters are between gptr() and egptr().
87 The OS file position corresponds to that of egptr().
89 PUTBACK MODE:
90 Putback mode is used to remember "excess" characters that have
91 been sputbackc'd in a separate putback buffer.
92 In putback mode, the get buffer points to the special putback buffer.
93 The unread characters are the characters between gptr() and egptr()
94 in the putback buffer, as well as the area between save_gptr()
95 and save_egptr(), which point into the original reserve buffer.
96 (The pointers save_gptr() and save_egptr() are the values
97 of gptr() and egptr() at the time putback mode was entered.)
98 The OS position corresponds to that of save_egptr().
100 LINE BUFFERED OUTPUT:
101 During line buffered output, _IO_write_base==base() && epptr()==base().
102 However, ptr() may be anywhere between base() and ebuf().
103 This forces a call to filebuf::overflow(int C) on every put.
104 If there is more space in the buffer, and C is not a '\n',
105 then C is inserted, and pptr() incremented.
107 UNBUFFERED STREAMS:
108 If a filebuf is unbuffered(), the _shortbuf[1] is used as the buffer.
111 #define CLOSED_FILEBUF_FLAGS \
112 (_IO_IS_FILEBUF+_IO_NO_READS+_IO_NO_WRITES+_IO_TIED_PUT_GET)
115 void
116 _IO_old_file_init (fp)
117 struct _IO_FILE_plus *fp;
119 /* POSIX.1 allows another file handle to be used to change the position
120 of our file descriptor. Hence we actually don't know the actual
121 position before we do the first fseek (and until a following fflush). */
122 fp->file._old_offset = _IO_pos_BAD;
123 fp->file._IO_file_flags |= CLOSED_FILEBUF_FLAGS;
125 _IO_link_in (fp);
126 fp->file._vtable_offset = ((int) sizeof (struct _IO_FILE)
127 - (int) sizeof (struct _IO_FILE_complete));
128 fp->file._fileno = -1;
132 _IO_old_file_close_it (fp)
133 _IO_FILE *fp;
135 int write_status, close_status;
136 if (!_IO_file_is_open (fp))
137 return EOF;
139 write_status = _IO_old_do_flush (fp);
141 _IO_unsave_markers(fp);
143 close_status = _IO_SYSCLOSE (fp);
145 /* Free buffer. */
146 _IO_setb (fp, NULL, NULL, 0);
147 _IO_setg (fp, NULL, NULL, NULL);
148 _IO_setp (fp, NULL, NULL);
150 _IO_un_link ((struct _IO_FILE_plus *) fp);
151 fp->_flags = _IO_MAGIC|CLOSED_FILEBUF_FLAGS;
152 fp->_fileno = -1;
153 fp->_old_offset = _IO_pos_BAD;
155 return close_status ? close_status : write_status;
158 void
159 _IO_old_file_finish (fp, dummy)
160 _IO_FILE *fp;
161 int dummy;
163 if (_IO_file_is_open (fp))
165 _IO_old_do_flush (fp);
166 if (!(fp->_flags & _IO_DELETE_DONT_CLOSE))
167 _IO_SYSCLOSE (fp);
169 _IO_default_finish (fp, 0);
172 _IO_FILE *
173 _IO_old_file_fopen (fp, filename, mode)
174 _IO_FILE *fp;
175 const char *filename;
176 const char *mode;
178 int oflags = 0, omode;
179 int read_write, fdesc;
180 int oprot = 0666;
181 if (_IO_file_is_open (fp))
182 return 0;
183 switch (*mode++)
185 case 'r':
186 omode = O_RDONLY;
187 read_write = _IO_NO_WRITES;
188 break;
189 case 'w':
190 omode = O_WRONLY;
191 oflags = O_CREAT|O_TRUNC;
192 read_write = _IO_NO_READS;
193 break;
194 case 'a':
195 omode = O_WRONLY;
196 oflags = O_CREAT|O_APPEND;
197 read_write = _IO_NO_READS|_IO_IS_APPENDING;
198 break;
199 default:
200 __set_errno (EINVAL);
201 return NULL;
203 if (mode[0] == '+' || (mode[0] == 'b' && mode[1] == '+'))
205 omode = O_RDWR;
206 read_write &= _IO_IS_APPENDING;
208 fdesc = open (filename, omode|oflags, oprot);
209 if (fdesc < 0)
210 return NULL;
211 fp->_fileno = fdesc;
212 _IO_mask_flags (fp, read_write,_IO_NO_READS+_IO_NO_WRITES+_IO_IS_APPENDING);
213 if (read_write & _IO_IS_APPENDING)
214 if (_IO_SEEKOFF (fp, (_IO_off_t)0, _IO_seek_end, _IOS_INPUT|_IOS_OUTPUT)
215 == _IO_pos_BAD && errno != ESPIPE)
216 return NULL;
217 _IO_link_in ((struct _IO_FILE_plus *) fp);
218 return fp;
221 _IO_FILE *
222 _IO_old_file_attach (fp, fd)
223 _IO_FILE *fp;
224 int fd;
226 if (_IO_file_is_open (fp))
227 return NULL;
228 fp->_fileno = fd;
229 fp->_flags &= ~(_IO_NO_READS+_IO_NO_WRITES);
230 fp->_flags |= _IO_DELETE_DONT_CLOSE;
231 /* Get the current position of the file. */
232 /* We have to do that since that may be junk. */
233 fp->_old_offset = _IO_pos_BAD;
234 if (_IO_SEEKOFF (fp, (_IO_off_t)0, _IO_seek_cur, _IOS_INPUT|_IOS_OUTPUT)
235 == _IO_pos_BAD && errno != ESPIPE)
236 return NULL;
237 return fp;
240 _IO_FILE *
241 _IO_old_file_setbuf (fp, p, len)
242 _IO_FILE *fp;
243 char *p;
244 _IO_ssize_t len;
246 if (_IO_default_setbuf (fp, p, len) == NULL)
247 return NULL;
249 fp->_IO_write_base = fp->_IO_write_ptr = fp->_IO_write_end
250 = fp->_IO_buf_base;
251 _IO_setg (fp, fp->_IO_buf_base, fp->_IO_buf_base, fp->_IO_buf_base);
253 return fp;
256 static int old_do_write __P ((_IO_FILE *, const char *, _IO_size_t));
258 /* Write TO_DO bytes from DATA to FP.
259 Then mark FP as having empty buffers. */
262 _IO_old_do_write (fp, data, to_do)
263 _IO_FILE *fp;
264 const char *data;
265 _IO_size_t to_do;
267 return (to_do == 0 || old_do_write (fp, data, to_do) == to_do)
268 ? 0 : EOF;
271 static
273 old_do_write (fp, data, to_do)
274 _IO_FILE *fp;
275 const char *data;
276 _IO_size_t to_do;
278 _IO_size_t count;
279 if (fp->_flags & _IO_IS_APPENDING)
280 /* On a system without a proper O_APPEND implementation,
281 you would need to sys_seek(0, SEEK_END) here, but is
282 is not needed nor desirable for Unix- or Posix-like systems.
283 Instead, just indicate that offset (before and after) is
284 unpredictable. */
285 fp->_old_offset = _IO_pos_BAD;
286 else if (fp->_IO_read_end != fp->_IO_write_base)
288 _IO_off_t new_pos
289 = _IO_SYSSEEK (fp, fp->_IO_write_base - fp->_IO_read_end, 1);
290 if (new_pos == _IO_pos_BAD)
291 return 0;
292 fp->_old_offset = new_pos;
294 count = _IO_SYSWRITE (fp, data, to_do);
295 if (fp->_cur_column && count)
296 fp->_cur_column = _IO_adjust_column (fp->_cur_column - 1, data, count) + 1;
297 _IO_setg (fp, fp->_IO_buf_base, fp->_IO_buf_base, fp->_IO_buf_base);
298 fp->_IO_write_base = fp->_IO_write_ptr = fp->_IO_buf_base;
299 fp->_IO_write_end = ((fp->_flags & (_IO_LINE_BUF+_IO_UNBUFFERED))
300 ? fp->_IO_buf_base : fp->_IO_buf_end);
301 return count;
305 _IO_old_file_underflow (fp)
306 _IO_FILE *fp;
308 _IO_ssize_t count;
309 #if 0
310 /* SysV does not make this test; take it out for compatibility */
311 if (fp->_flags & _IO_EOF_SEEN)
312 return (EOF);
313 #endif
315 if (fp->_flags & _IO_NO_READS)
317 fp->_flags |= _IO_ERR_SEEN;
318 __set_errno (EBADF);
319 return EOF;
321 if (fp->_IO_read_ptr < fp->_IO_read_end)
322 return *(unsigned char *) fp->_IO_read_ptr;
324 if (fp->_IO_buf_base == NULL)
326 /* Maybe we already have a push back pointer. */
327 if (fp->_IO_save_base != NULL)
329 free (fp->_IO_save_base);
330 fp->_flags &= ~_IO_IN_BACKUP;
332 _IO_doallocbuf (fp);
335 /* Flush all line buffered files before reading. */
336 /* FIXME This can/should be moved to genops ?? */
337 if (fp->_flags & (_IO_LINE_BUF|_IO_UNBUFFERED))
338 _IO_flush_all_linebuffered ();
340 _IO_switch_to_get_mode (fp);
342 /* This is very tricky. We have to adjust those
343 pointers before we call _IO_SYSREAD () since
344 we may longjump () out while waiting for
345 input. Those pointers may be screwed up. H.J. */
346 fp->_IO_read_base = fp->_IO_read_ptr = fp->_IO_buf_base;
347 fp->_IO_read_end = fp->_IO_buf_base;
348 fp->_IO_write_base = fp->_IO_write_ptr = fp->_IO_write_end
349 = fp->_IO_buf_base;
351 count = _IO_SYSREAD (fp, fp->_IO_buf_base,
352 fp->_IO_buf_end - fp->_IO_buf_base);
353 if (count <= 0)
355 if (count == 0)
356 fp->_flags |= _IO_EOF_SEEN;
357 else
358 fp->_flags |= _IO_ERR_SEEN, count = 0;
360 fp->_IO_read_end += count;
361 if (count == 0)
362 return EOF;
363 if (fp->_old_offset != _IO_pos_BAD)
364 _IO_pos_adjust (fp->_old_offset, count);
365 return *(unsigned char *) fp->_IO_read_ptr;
369 _IO_old_file_overflow (f, ch)
370 _IO_FILE *f;
371 int ch;
373 if (f->_flags & _IO_NO_WRITES) /* SET ERROR */
375 f->_flags |= _IO_ERR_SEEN;
376 __set_errno (EBADF);
377 return EOF;
379 /* If currently reading or no buffer allocated. */
380 if ((f->_flags & _IO_CURRENTLY_PUTTING) == 0)
382 /* Allocate a buffer if needed. */
383 if (f->_IO_write_base == 0)
385 _IO_doallocbuf (f);
386 _IO_setg (f, f->_IO_buf_base, f->_IO_buf_base, f->_IO_buf_base);
388 /* Otherwise must be currently reading.
389 If _IO_read_ptr (and hence also _IO_read_end) is at the buffer end,
390 logically slide the buffer forwards one block (by setting the
391 read pointers to all point at the beginning of the block). This
392 makes room for subsequent output.
393 Otherwise, set the read pointers to _IO_read_end (leaving that
394 alone, so it can continue to correspond to the external position). */
395 if (f->_IO_read_ptr == f->_IO_buf_end)
396 f->_IO_read_end = f->_IO_read_ptr = f->_IO_buf_base;
397 f->_IO_write_ptr = f->_IO_read_ptr;
398 f->_IO_write_base = f->_IO_write_ptr;
399 f->_IO_write_end = f->_IO_buf_end;
400 f->_IO_read_base = f->_IO_read_ptr = f->_IO_read_end;
402 if (f->_flags & (_IO_LINE_BUF+_IO_UNBUFFERED))
403 f->_IO_write_end = f->_IO_write_ptr;
404 f->_flags |= _IO_CURRENTLY_PUTTING;
406 if (ch == EOF)
407 return _IO_old_do_flush (f);
408 if (f->_IO_write_ptr == f->_IO_buf_end ) /* Buffer is really full */
409 if (_IO_old_do_flush (f) == EOF)
410 return EOF;
411 *f->_IO_write_ptr++ = ch;
412 if ((f->_flags & _IO_UNBUFFERED)
413 || ((f->_flags & _IO_LINE_BUF) && ch == '\n'))
414 if (_IO_old_do_flush (f) == EOF)
415 return EOF;
416 return (unsigned char) ch;
420 _IO_old_file_sync (fp)
421 _IO_FILE *fp;
423 _IO_ssize_t delta;
424 int retval = 0;
426 /* char* ptr = cur_ptr(); */
427 if (fp->_IO_write_ptr > fp->_IO_write_base)
428 if (_IO_old_do_flush(fp)) return EOF;
429 delta = fp->_IO_read_ptr - fp->_IO_read_end;
430 if (delta != 0)
432 #ifdef TODO
433 if (_IO_in_backup (fp))
434 delta -= eGptr () - Gbase ();
435 #endif
436 _IO_off_t new_pos = _IO_SYSSEEK (fp, delta, 1);
437 if (new_pos != (_IO_off_t) EOF)
438 fp->_IO_read_end = fp->_IO_read_ptr;
439 #ifdef ESPIPE
440 else if (errno == ESPIPE)
441 ; /* Ignore error from unseekable devices. */
442 #endif
443 else
444 retval = EOF;
446 if (retval != EOF)
447 fp->_old_offset = _IO_pos_BAD;
448 /* FIXME: Cleanup - can this be shared? */
449 /* setg(base(), ptr, ptr); */
450 return retval;
453 _IO_off64_t
454 _IO_old_file_seekoff (fp, offset, dir, mode)
455 _IO_FILE *fp;
456 _IO_off64_t offset;
457 int dir;
458 int mode;
460 _IO_off_t result;
461 _IO_off64_t delta, new_offset;
462 long count;
463 /* POSIX.1 8.2.3.7 says that after a call the fflush() the file
464 offset of the underlying file must be exact. */
465 int must_be_exact = (fp->_IO_read_base == fp->_IO_read_end
466 && fp->_IO_write_base == fp->_IO_write_ptr);
468 if (mode == 0)
469 dir = _IO_seek_cur, offset = 0; /* Don't move any pointers. */
471 /* Flush unwritten characters.
472 (This may do an unneeded write if we seek within the buffer.
473 But to be able to switch to reading, we would need to set
474 egptr to ptr. That can't be done in the current design,
475 which assumes file_ptr() is eGptr. Anyway, since we probably
476 end up flushing when we close(), it doesn't make much difference.)
477 FIXME: simulate mem-papped files. */
479 if (fp->_IO_write_ptr > fp->_IO_write_base || _IO_in_put_mode (fp))
480 if (_IO_switch_to_get_mode (fp))
481 return EOF;
483 if (fp->_IO_buf_base == NULL)
485 /* It could be that we already have a pushback buffer. */
486 if (fp->_IO_read_base != NULL)
488 free (fp->_IO_read_base);
489 fp->_flags &= ~_IO_IN_BACKUP;
491 _IO_doallocbuf (fp);
492 _IO_setp (fp, fp->_IO_buf_base, fp->_IO_buf_base);
493 _IO_setg (fp, fp->_IO_buf_base, fp->_IO_buf_base, fp->_IO_buf_base);
496 switch (dir)
498 case _IO_seek_cur:
499 /* Adjust for read-ahead (bytes is buffer). */
500 offset -= fp->_IO_read_end - fp->_IO_read_ptr;
501 if (fp->_old_offset == _IO_pos_BAD)
502 goto dumb;
503 /* Make offset absolute, assuming current pointer is file_ptr(). */
504 offset += fp->_old_offset;
506 dir = _IO_seek_set;
507 break;
508 case _IO_seek_set:
509 break;
510 case _IO_seek_end:
512 struct _G_stat64 st;
513 if (_IO_SYSSTAT (fp, &st) == 0 && S_ISREG (st.st_mode))
515 offset += st.st_size;
516 dir = _IO_seek_set;
518 else
519 goto dumb;
522 /* At this point, dir==_IO_seek_set. */
524 /* If we are only interested in the current position we've found it now. */
525 if (mode == 0)
526 return offset;
528 /* If destination is within current buffer, optimize: */
529 if (fp->_old_offset != _IO_pos_BAD && fp->_IO_read_base != NULL
530 && !_IO_in_backup (fp))
532 /* Offset relative to start of main get area. */
533 _IO_off_t rel_offset = (offset - fp->_old_offset
534 + (fp->_IO_read_end - fp->_IO_read_base));
535 if (rel_offset >= 0)
537 #if 0
538 if (_IO_in_backup (fp))
539 _IO_switch_to_main_get_area (fp);
540 #endif
541 if (rel_offset <= fp->_IO_read_end - fp->_IO_read_base)
543 _IO_setg (fp, fp->_IO_buf_base, fp->_IO_buf_base + rel_offset,
544 fp->_IO_read_end);
545 _IO_setp (fp, fp->_IO_buf_base, fp->_IO_buf_base);
547 _IO_mask_flags (fp, 0, _IO_EOF_SEEN);
548 goto resync;
551 #ifdef TODO
552 /* If we have streammarkers, seek forward by reading ahead. */
553 if (_IO_have_markers (fp))
555 int to_skip = rel_offset
556 - (fp->_IO_read_ptr - fp->_IO_read_base);
557 if (ignore (to_skip) != to_skip)
558 goto dumb;
559 _IO_mask_flags (fp, 0, _IO_EOF_SEEN);
560 goto resync;
562 #endif
564 #ifdef TODO
565 if (rel_offset < 0 && rel_offset >= Bbase () - Bptr ())
567 if (!_IO_in_backup (fp))
568 _IO_switch_to_backup_area (fp);
569 gbump (fp->_IO_read_end + rel_offset - fp->_IO_read_ptr);
570 _IO_mask_flags (fp, 0, _IO_EOF_SEEN);
571 goto resync;
573 #endif
576 #ifdef TODO
577 _IO_unsave_markers (fp);
578 #endif
580 if (fp->_flags & _IO_NO_READS)
581 goto dumb;
583 /* Try to seek to a block boundary, to improve kernel page management. */
584 new_offset = offset & ~(fp->_IO_buf_end - fp->_IO_buf_base - 1);
585 delta = offset - new_offset;
586 if (delta > fp->_IO_buf_end - fp->_IO_buf_base)
588 new_offset = offset;
589 delta = 0;
591 result = _IO_SYSSEEK (fp, new_offset, 0);
592 if (result < 0)
593 return EOF;
594 if (delta == 0)
595 count = 0;
596 else
598 count = _IO_SYSREAD (fp, fp->_IO_buf_base,
599 (must_be_exact
600 ? delta : fp->_IO_buf_end - fp->_IO_buf_base));
601 if (count < delta)
603 /* We weren't allowed to read, but try to seek the remainder. */
604 offset = count == EOF ? delta : delta-count;
605 dir = _IO_seek_cur;
606 goto dumb;
609 _IO_setg (fp, fp->_IO_buf_base, fp->_IO_buf_base + delta,
610 fp->_IO_buf_base + count);
611 _IO_setp (fp, fp->_IO_buf_base, fp->_IO_buf_base);
612 fp->_old_offset = result + count;
613 _IO_mask_flags (fp, 0, _IO_EOF_SEEN);
614 return offset;
615 dumb:
617 _IO_unsave_markers (fp);
618 result = _IO_SYSSEEK (fp, offset, dir);
619 if (result != EOF)
621 _IO_mask_flags (fp, 0, _IO_EOF_SEEN);
622 fp->_old_offset = result;
623 _IO_setg (fp, fp->_IO_buf_base, fp->_IO_buf_base, fp->_IO_buf_base);
624 _IO_setp (fp, fp->_IO_buf_base, fp->_IO_buf_base);
626 return result;
628 resync:
629 /* We need to do it since it is possible that the file offset in
630 the kernel may be changed behind our back. It may happen when
631 we fopen a file and then do a fork. One process may access the
632 the file and the kernel file offset will be changed. */
633 if (fp->_old_offset >= 0)
634 _IO_SYSSEEK (fp, fp->_old_offset, 0);
636 return offset;
639 _IO_ssize_t
640 _IO_old_file_write (f, data, n)
641 _IO_FILE *f;
642 const void *data;
643 _IO_ssize_t n;
645 _IO_ssize_t to_do = n;
646 while (to_do > 0)
648 _IO_ssize_t count = write (f->_fileno, data, to_do);
649 if (count == EOF)
651 f->_flags |= _IO_ERR_SEEN;
652 break;
654 to_do -= count;
655 data = (void *) ((char *) data + count);
657 n -= to_do;
658 if (f->_old_offset >= 0)
659 f->_old_offset += n;
660 return n;
663 _IO_size_t
664 _IO_old_file_xsputn (f, data, n)
665 _IO_FILE *f;
666 const void *data;
667 _IO_size_t n;
669 register const char *s = (char *) data;
670 _IO_size_t to_do = n;
671 int must_flush = 0;
672 _IO_size_t count;
674 if (n <= 0)
675 return 0;
676 /* This is an optimized implementation.
677 If the amount to be written straddles a block boundary
678 (or the filebuf is unbuffered), use sys_write directly. */
680 /* First figure out how much space is available in the buffer. */
681 count = f->_IO_write_end - f->_IO_write_ptr; /* Space available. */
682 if ((f->_flags & _IO_LINE_BUF) && (f->_flags & _IO_CURRENTLY_PUTTING))
684 count = f->_IO_buf_end - f->_IO_write_ptr;
685 if (count >= n)
687 register const char *p;
688 for (p = s + n; p > s; )
690 if (*--p == '\n')
692 count = p - s + 1;
693 must_flush = 1;
694 break;
699 /* Then fill the buffer. */
700 if (count > 0)
702 if (count > to_do)
703 count = to_do;
704 if (count > 20)
706 #ifdef _LIBC
707 f->_IO_write_ptr = __mempcpy (f->_IO_write_ptr, s, count);
708 #else
709 memcpy (f->_IO_write_ptr, s, count);
710 f->_IO_write_ptr += count;
711 #endif
712 s += count;
714 else
716 register char *p = f->_IO_write_ptr;
717 register int i = (int) count;
718 while (--i >= 0)
719 *p++ = *s++;
720 f->_IO_write_ptr = p;
722 to_do -= count;
724 if (to_do + must_flush > 0)
726 _IO_size_t block_size, do_write;
727 /* Next flush the (full) buffer. */
728 if (__overflow (f, EOF) == EOF)
729 return n - to_do;
731 /* Try to maintain alignment: write a whole number of blocks.
732 dont_write is what gets left over. */
733 block_size = f->_IO_buf_end - f->_IO_buf_base;
734 do_write = to_do - (block_size >= 128 ? to_do % block_size : 0);
736 if (do_write)
738 count = old_do_write (f, s, do_write);
739 to_do -= count;
740 if (count < do_write)
741 return n - to_do;
744 /* Now write out the remainder. Normally, this will fit in the
745 buffer, but it's somewhat messier for line-buffered files,
746 so we let _IO_default_xsputn handle the general case. */
747 if (to_do)
748 to_do -= _IO_default_xsputn (f, s+do_write, to_do);
750 return n - to_do;
754 struct _IO_jump_t _IO_old_file_jumps =
756 JUMP_INIT_DUMMY,
757 JUMP_INIT(finish, _IO_old_file_finish),
758 JUMP_INIT(overflow, _IO_old_file_overflow),
759 JUMP_INIT(underflow, _IO_old_file_underflow),
760 JUMP_INIT(uflow, _IO_default_uflow),
761 JUMP_INIT(pbackfail, _IO_default_pbackfail),
762 JUMP_INIT(xsputn, _IO_old_file_xsputn),
763 JUMP_INIT(xsgetn, _IO_default_xsgetn),
764 JUMP_INIT(seekoff, _IO_old_file_seekoff),
765 JUMP_INIT(seekpos, _IO_default_seekpos),
766 JUMP_INIT(setbuf, _IO_old_file_setbuf),
767 JUMP_INIT(sync, _IO_old_file_sync),
768 JUMP_INIT(doallocate, _IO_file_doallocate),
769 JUMP_INIT(read, _IO_file_read),
770 JUMP_INIT(write, _IO_old_file_write),
771 JUMP_INIT(seek, _IO_file_seek),
772 JUMP_INIT(close, _IO_file_close),
773 JUMP_INIT(stat, _IO_file_stat)
776 compat_symbol (libc, _IO_old_do_write, _IO_do_write, GLIBC_2_0);
777 compat_symbol (libc, _IO_old_file_attach, _IO_file_attach, GLIBC_2_0);
778 compat_symbol (libc, _IO_old_file_close_it, _IO_file_close_it, GLIBC_2_0);
779 compat_symbol (libc, _IO_old_file_finish, _IO_file_finish, GLIBC_2_0);
780 compat_symbol (libc, _IO_old_file_fopen, _IO_file_fopen, GLIBC_2_0);
781 compat_symbol (libc, _IO_old_file_init, _IO_file_init, GLIBC_2_0);
782 compat_symbol (libc, _IO_old_file_setbuf, _IO_file_setbuf, GLIBC_2_0);
783 compat_symbol (libc, _IO_old_file_sync, _IO_file_sync, GLIBC_2_0);
784 compat_symbol (libc, _IO_old_file_overflow, _IO_file_overflow, GLIBC_2_0);
785 compat_symbol (libc, _IO_old_file_seekoff, _IO_file_seekoff, GLIBC_2_0);
786 compat_symbol (libc, _IO_old_file_underflow, _IO_file_underflow, GLIBC_2_0);
787 compat_symbol (libc, _IO_old_file_write, _IO_file_write, GLIBC_2_0);
788 compat_symbol (libc, _IO_old_file_xsputn, _IO_file_xsputn, GLIBC_2_0);
790 #endif