1 /* Copyright (C) 1993,95,97,98,99,2000,2001,2002 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Written by Ulrich Drepper <drepper@cygnus.com>.
4 Based on the single byte version by Per Bothner <bothner@cygnus.com>.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, write to the Free
18 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
21 As a special exception, if you link the code in this file with
22 files compiled with a GNU compiler to produce an executable,
23 that does not cause the resulting executable to be covered by
24 the GNU Lesser General Public License. This exception does not
25 however invalidate any other reasons why the executable file
26 might be covered by the GNU Lesser General Public License.
27 This exception applies to code released by its copyright holders
28 in files containing the exception. */
39 # define _IO_new_do_write _IO_do_write
40 # define _IO_new_file_attach _IO_file_attach
41 # define _IO_new_file_close_it _IO_file_close_it
42 # define _IO_new_file_finish _IO_file_finish
43 # define _IO_new_file_fopen _IO_file_fopen
44 # define _IO_new_file_init _IO_file_init
45 # define _IO_new_file_setbuf _IO_file_setbuf
46 # define _IO_new_file_sync _IO_file_sync
47 # define _IO_new_file_overflow _IO_file_overflow
48 # define _IO_new_file_seekoff _IO_file_seekoff
49 # define _IO_new_file_underflow _IO_file_underflow
50 # define _IO_new_file_write _IO_file_write
51 # define _IO_new_file_xsputn _IO_file_xsputn
56 _IO_wfile_setbuf (fp
, p
, len
)
61 if (_IO_wdefault_setbuf (fp
, p
, len
) == NULL
)
64 fp
->_wide_data
->_IO_write_base
= fp
->_wide_data
->_IO_write_ptr
=
65 fp
->_wide_data
->_IO_write_end
= fp
->_wide_data
->_IO_buf_base
;
66 _IO_wsetg (fp
, fp
->_wide_data
->_IO_buf_base
, fp
->_wide_data
->_IO_buf_base
,
67 fp
->_wide_data
->_IO_buf_base
);
73 /* Convert TO_DO wide character from DATA to FP.
74 Then mark FP as having empty buffers. */
76 _IO_wdo_write (fp
, data
, to_do
)
81 struct _IO_codecvt
*cc
= fp
->_codecvt
;
85 if (fp
->_IO_write_end
== fp
->_IO_write_ptr
86 && fp
->_IO_write_end
!= fp
->_IO_write_base
)
88 if (_IO_new_do_write (fp
, fp
->_IO_write_base
,
89 fp
->_IO_write_ptr
- fp
->_IO_write_base
) == EOF
)
95 enum __codecvt_result result
;
96 const wchar_t *new_data
;
98 /* Now convert from the internal format into the external buffer. */
99 result
= (*cc
->__codecvt_do_out
) (cc
, &fp
->_wide_data
->_IO_state
,
100 data
, data
+ to_do
, &new_data
,
105 /* Write out what we produced so far. */
106 if (_IO_new_do_write (fp
, fp
->_IO_write_base
,
107 fp
->_IO_write_ptr
- fp
->_IO_write_base
) == EOF
)
108 /* Something went wrong. */
111 to_do
-= new_data
- data
;
113 /* Next see whether we had problems during the conversion. If yes,
115 if (result
!= __codecvt_ok
116 && (result
!= __codecvt_partial
|| new_data
- data
== 0))
124 _IO_wsetg (fp
, fp
->_wide_data
->_IO_buf_base
, fp
->_wide_data
->_IO_buf_base
,
125 fp
->_wide_data
->_IO_buf_base
);
126 fp
->_wide_data
->_IO_write_base
= fp
->_wide_data
->_IO_write_ptr
127 = fp
->_wide_data
->_IO_buf_base
;
128 fp
->_wide_data
->_IO_write_end
= ((fp
->_flags
& (_IO_LINE_BUF
+_IO_UNBUFFERED
))
129 ? fp
->_wide_data
->_IO_buf_base
130 : fp
->_wide_data
->_IO_buf_end
);
132 return to_do
== 0 ? 0 : WEOF
;
137 _IO_wfile_underflow (fp
)
140 struct _IO_codecvt
*cd
;
141 enum __codecvt_result status
;
144 const char *read_ptr_copy
;
146 if (__builtin_expect (fp
->_flags
& _IO_NO_READS
, 0))
148 fp
->_flags
|= _IO_ERR_SEEN
;
152 if (fp
->_wide_data
->_IO_read_ptr
< fp
->_wide_data
->_IO_read_end
)
153 return *fp
->_wide_data
->_IO_read_ptr
;
157 /* Maybe there is something left in the external buffer. */
158 if (fp
->_IO_read_ptr
< fp
->_IO_read_end
)
160 /* There is more in the external. Convert it. */
161 const char *read_stop
= (const char *) fp
->_IO_read_ptr
;
163 fp
->_wide_data
->_IO_last_state
= fp
->_wide_data
->_IO_state
;
164 fp
->_wide_data
->_IO_read_base
= fp
->_wide_data
->_IO_read_ptr
=
165 fp
->_wide_data
->_IO_buf_base
;
166 status
= (*cd
->__codecvt_do_in
) (cd
, &fp
->_wide_data
->_IO_state
,
167 fp
->_IO_read_ptr
, fp
->_IO_read_end
,
169 fp
->_wide_data
->_IO_read_ptr
,
170 fp
->_wide_data
->_IO_buf_end
,
171 &fp
->_wide_data
->_IO_read_end
);
173 fp
->_IO_read_ptr
= (char *) read_stop
;
175 /* If we managed to generate some text return the next character. */
176 if (fp
->_wide_data
->_IO_read_ptr
< fp
->_wide_data
->_IO_read_end
)
177 return *fp
->_wide_data
->_IO_read_ptr
;
179 if (status
== __codecvt_error
)
181 __set_errno (EILSEQ
);
182 fp
->_flags
|= _IO_ERR_SEEN
;
186 /* Move the remaining content of the read buffer to the beginning. */
187 memmove (fp
->_IO_buf_base
, fp
->_IO_read_ptr
,
188 fp
->_IO_read_end
- fp
->_IO_read_ptr
);
189 fp
->_IO_read_end
= (fp
->_IO_buf_base
190 + (fp
->_IO_read_end
- fp
->_IO_read_ptr
));
191 fp
->_IO_read_base
= fp
->_IO_read_ptr
= fp
->_IO_buf_base
;
194 fp
->_IO_read_base
= fp
->_IO_read_ptr
= fp
->_IO_read_end
=
197 if (fp
->_IO_buf_base
== NULL
)
199 /* Maybe we already have a push back pointer. */
200 if (fp
->_IO_save_base
!= NULL
)
202 free (fp
->_IO_save_base
);
203 fp
->_flags
&= ~_IO_IN_BACKUP
;
207 fp
->_IO_read_base
= fp
->_IO_read_ptr
= fp
->_IO_read_end
=
211 fp
->_IO_write_base
= fp
->_IO_write_ptr
= fp
->_IO_write_end
=
214 if (fp
->_wide_data
->_IO_buf_base
== NULL
)
216 /* Maybe we already have a push back pointer. */
217 if (fp
->_wide_data
->_IO_save_base
!= NULL
)
219 free (fp
->_wide_data
->_IO_save_base
);
220 fp
->_flags
&= ~_IO_IN_BACKUP
;
222 _IO_wdoallocbuf (fp
);
225 /* Flush all line buffered files before reading. */
226 /* FIXME This can/should be moved to genops ?? */
227 if (fp
->_flags
& (_IO_LINE_BUF
|_IO_UNBUFFERED
))
230 _IO_flush_all_linebuffered ();
232 /* We used to flush all line-buffered stream. This really isn't
233 required by any standard. My recollection is that
234 traditional Unix systems did this for stdout. stderr better
235 not be line buffered. So we do just that here
236 explicitly. --drepper */
237 _IO_cleanup_region_start ((void (*) __P ((void *))) _IO_funlockfile
,
239 _IO_flockfile (_IO_stdout
);
241 if ((_IO_stdout
->_flags
& (_IO_LINKED
| _IO_NO_WRITES
| _IO_LINE_BUF
))
242 == (_IO_LINKED
| _IO_LINE_BUF
))
243 _IO_OVERFLOW (_IO_stdout
, EOF
);
245 _IO_funlockfile (_IO_stdout
);
246 _IO_cleanup_region_end (0);
250 _IO_switch_to_get_mode (fp
);
252 fp
->_wide_data
->_IO_read_base
= fp
->_wide_data
->_IO_read_ptr
=
253 fp
->_wide_data
->_IO_buf_base
;
254 fp
->_wide_data
->_IO_read_end
= fp
->_wide_data
->_IO_buf_base
;
255 fp
->_wide_data
->_IO_write_base
= fp
->_wide_data
->_IO_write_ptr
=
256 fp
->_wide_data
->_IO_write_end
= fp
->_wide_data
->_IO_buf_base
;
260 count
= _IO_SYSREAD (fp
, fp
->_IO_read_end
,
261 fp
->_IO_buf_end
- fp
->_IO_read_end
);
264 if (count
== 0 && tries
== 0)
265 fp
->_flags
|= _IO_EOF_SEEN
;
267 fp
->_flags
|= _IO_ERR_SEEN
, count
= 0;
269 fp
->_IO_read_end
+= count
;
273 /* There are some bytes in the external buffer but they don't
274 convert to anything. */
275 __set_errno (EILSEQ
);
278 if (fp
->_offset
!= _IO_pos_BAD
)
279 _IO_pos_adjust (fp
->_offset
, count
);
281 /* Now convert the read input. */
282 fp
->_wide_data
->_IO_last_state
= fp
->_wide_data
->_IO_state
;
283 fp
->_IO_read_base
= fp
->_IO_read_ptr
;
284 status
= (*cd
->__codecvt_do_in
) (cd
, &fp
->_wide_data
->_IO_state
,
285 fp
->_IO_read_ptr
, fp
->_IO_read_end
,
287 fp
->_wide_data
->_IO_read_end
,
288 fp
->_wide_data
->_IO_buf_end
,
289 &fp
->_wide_data
->_IO_read_end
);
291 fp
->_IO_read_ptr
= (char *) read_ptr_copy
;
292 if (fp
->_wide_data
->_IO_read_end
== fp
->_wide_data
->_IO_buf_base
)
294 if (status
== __codecvt_error
|| fp
->_IO_read_end
== fp
->_IO_buf_end
)
296 __set_errno (EILSEQ
);
297 fp
->_flags
|= _IO_ERR_SEEN
;
301 /* The read bytes make no complete character. Try reading again. */
302 assert (status
== __codecvt_partial
);
307 return *fp
->_wide_data
->_IO_read_ptr
;
312 _IO_wfile_underflow_mmap (_IO_FILE
*fp
)
314 struct _IO_codecvt
*cd
;
315 enum __codecvt_result status
;
316 const char *read_stop
;
318 if (__builtin_expect (fp
->_flags
& _IO_NO_READS
, 0))
320 fp
->_flags
|= _IO_ERR_SEEN
;
324 if (fp
->_wide_data
->_IO_read_ptr
< fp
->_wide_data
->_IO_read_end
)
325 return *fp
->_wide_data
->_IO_read_ptr
;
329 /* Maybe there is something left in the external buffer. */
330 if (fp
->_IO_read_ptr
>= fp
->_IO_read_end
331 /* No. But maybe the read buffer is not fully set up. */
332 && _IO_file_underflow_mmap (fp
) == EOF
)
334 /* Nothing available. */
335 fp
->_flags
|= _IO_EOF_SEEN
;
339 /* There is more in the external. Convert it. */
340 read_stop
= (const char *) fp
->_IO_read_ptr
;
342 if (fp
->_wide_data
->_IO_buf_base
== NULL
)
344 /* Maybe we already have a push back pointer. */
345 if (fp
->_wide_data
->_IO_save_base
!= NULL
)
347 free (fp
->_wide_data
->_IO_save_base
);
348 fp
->_flags
&= ~_IO_IN_BACKUP
;
350 _IO_wdoallocbuf (fp
);
353 fp
->_wide_data
->_IO_last_state
= fp
->_wide_data
->_IO_state
;
354 fp
->_wide_data
->_IO_read_base
= fp
->_wide_data
->_IO_read_ptr
=
355 fp
->_wide_data
->_IO_buf_base
;
356 status
= (*cd
->__codecvt_do_in
) (cd
, &fp
->_wide_data
->_IO_state
,
357 fp
->_IO_read_ptr
, fp
->_IO_read_end
,
359 fp
->_wide_data
->_IO_read_ptr
,
360 fp
->_wide_data
->_IO_buf_end
,
361 &fp
->_wide_data
->_IO_read_end
);
363 fp
->_IO_read_ptr
= (char *) read_stop
;
365 /* If we managed to generate some text return the next character. */
366 if (fp
->_wide_data
->_IO_read_ptr
< fp
->_wide_data
->_IO_read_end
)
367 return *fp
->_wide_data
->_IO_read_ptr
;
369 /* There is some garbage at the end of the file. */
370 __set_errno (EILSEQ
);
371 fp
->_flags
|= _IO_ERR_SEEN
;
377 _IO_wfile_overflow (f
, wch
)
381 if (f
->_flags
& _IO_NO_WRITES
) /* SET ERROR */
383 f
->_flags
|= _IO_ERR_SEEN
;
387 /* If currently reading or no buffer allocated. */
388 if ((f
->_flags
& _IO_CURRENTLY_PUTTING
) == 0)
390 /* Allocate a buffer if needed. */
391 if (f
->_wide_data
->_IO_write_base
== 0)
394 _IO_wsetg (f
, f
->_wide_data
->_IO_buf_base
,
395 f
->_wide_data
->_IO_buf_base
, f
->_wide_data
->_IO_buf_base
);
397 if (f
->_IO_write_base
== NULL
)
400 _IO_setg (f
, f
->_IO_buf_base
, f
->_IO_buf_base
, f
->_IO_buf_base
);
405 /* Otherwise must be currently reading. If _IO_read_ptr
406 (and hence also _IO_read_end) is at the buffer end,
407 logically slide the buffer forwards one block (by setting
408 the read pointers to all point at the beginning of the
409 block). This makes room for subsequent output.
410 Otherwise, set the read pointers to _IO_read_end (leaving
411 that alone, so it can continue to correspond to the
412 external position). */
413 if (f
->_wide_data
->_IO_read_ptr
== f
->_wide_data
->_IO_buf_end
)
415 f
->_IO_read_end
= f
->_IO_read_ptr
= f
->_IO_buf_base
;
416 f
->_wide_data
->_IO_read_end
= f
->_wide_data
->_IO_read_ptr
=
417 f
->_wide_data
->_IO_buf_base
;
420 f
->_wide_data
->_IO_write_ptr
= f
->_wide_data
->_IO_read_ptr
;
421 f
->_wide_data
->_IO_write_base
= f
->_wide_data
->_IO_write_ptr
;
422 f
->_wide_data
->_IO_write_end
= f
->_wide_data
->_IO_buf_end
;
423 f
->_wide_data
->_IO_read_base
= f
->_wide_data
->_IO_read_ptr
=
424 f
->_wide_data
->_IO_read_end
;
426 f
->_IO_write_ptr
= f
->_IO_read_ptr
;
427 f
->_IO_write_base
= f
->_IO_write_ptr
;
428 f
->_IO_write_end
= f
->_IO_buf_end
;
429 f
->_IO_read_base
= f
->_IO_read_ptr
= f
->_IO_read_end
;
431 f
->_flags
|= _IO_CURRENTLY_PUTTING
;
432 if (f
->_flags
& (_IO_LINE_BUF
+_IO_UNBUFFERED
))
433 f
->_wide_data
->_IO_write_end
= f
->_wide_data
->_IO_write_ptr
;
436 return _IO_do_flush (f
);
437 if (f
->_wide_data
->_IO_write_ptr
== f
->_wide_data
->_IO_buf_end
)
438 /* Buffer is really full */
439 if (_IO_do_flush (f
) == WEOF
)
441 *f
->_wide_data
->_IO_write_ptr
++ = wch
;
442 if ((f
->_flags
& _IO_UNBUFFERED
)
443 || ((f
->_flags
& _IO_LINE_BUF
) && wch
== L
'\n'))
444 if (_IO_do_flush (f
) == WEOF
)
456 /* char* ptr = cur_ptr(); */
457 if (fp
->_wide_data
->_IO_write_ptr
> fp
->_wide_data
->_IO_write_base
)
458 if (_IO_do_flush (fp
))
460 delta
= fp
->_wide_data
->_IO_read_ptr
- fp
->_wide_data
->_IO_read_end
;
463 /* We have to find out how many bytes we have to go back in the
465 struct _IO_codecvt
*cv
= fp
->_codecvt
;
468 int clen
= (*cv
->__codecvt_do_encoding
) (cv
);
471 /* It is easy, a fixed number of input bytes are used for each
476 /* We have to find out the hard way how much to back off.
477 To do this we determine how much input we needed to
478 generate the wide characters up to the current reading
482 fp
->_wide_data
->_IO_state
= fp
->_wide_data
->_IO_last_state
;
483 nread
= (*cv
->__codecvt_do_length
) (cv
, &fp
->_wide_data
->_IO_state
,
485 fp
->_IO_read_end
, delta
);
486 fp
->_IO_read_ptr
= fp
->_IO_read_base
+ nread
;
487 delta
= -(fp
->_IO_read_end
- fp
->_IO_read_base
- nread
);
490 new_pos
= _IO_SYSSEEK (fp
, delta
, 1);
491 if (new_pos
!= (_IO_off64_t
) EOF
)
493 fp
->_wide_data
->_IO_read_end
= fp
->_wide_data
->_IO_read_ptr
;
494 fp
->_IO_read_end
= fp
->_IO_read_ptr
;
497 else if (errno
== ESPIPE
)
498 ; /* Ignore error from unseekable devices. */
504 fp
->_offset
= _IO_pos_BAD
;
505 /* FIXME: Cleanup - can this be shared? */
506 /* setg(base(), ptr, ptr); */
511 _IO_wfile_seekoff (fp
, offset
, dir
, mode
)
518 _IO_off64_t delta
, new_offset
;
520 /* POSIX.1 8.2.3.7 says that after a call the fflush() the file
521 offset of the underlying file must be exact. */
522 int must_be_exact
= ((fp
->_wide_data
->_IO_read_base
523 == fp
->_wide_data
->_IO_read_end
)
524 && (fp
->_wide_data
->_IO_write_base
525 == fp
->_wide_data
->_IO_write_ptr
));
529 /* XXX For wide stream with backup store it is not very
530 reasonable to determine the offset. The pushed-back
531 character might require a state change and we need not be
532 able to compute the initial state by reverse transformation
533 since there is no guarantee of symmetry. So we don't even
534 try and return an error. */
535 if (_IO_in_backup (fp
))
537 if (fp
->_wide_data
->_IO_read_ptr
< fp
->_wide_data
->_IO_read_end
)
539 __set_errno (EINVAL
);
543 /* There is no more data in the backup buffer. We can
545 _IO_switch_to_main_wget_area (fp
);
548 dir
= _IO_seek_cur
, offset
= 0; /* Don't move any pointers. */
551 /* Flush unwritten characters.
552 (This may do an unneeded write if we seek within the buffer.
553 But to be able to switch to reading, we would need to set
554 egptr to ptr. That can't be done in the current design,
555 which assumes file_ptr() is eGptr. Anyway, since we probably
556 end up flushing when we close(), it doesn't make much difference.)
557 FIXME: simulate mem-mapped files. */
559 if (fp
->_wide_data
->_IO_write_ptr
> fp
->_wide_data
->_IO_write_base
560 || _IO_in_put_mode (fp
))
561 if (_IO_switch_to_wget_mode (fp
))
564 if (fp
->_wide_data
->_IO_buf_base
== NULL
)
566 /* It could be that we already have a pushback buffer. */
567 if (fp
->_wide_data
->_IO_read_base
!= NULL
)
569 free (fp
->_wide_data
->_IO_read_base
);
570 fp
->_flags
&= ~_IO_IN_BACKUP
;
573 _IO_setp (fp
, fp
->_IO_buf_base
, fp
->_IO_buf_base
);
574 _IO_setg (fp
, fp
->_IO_buf_base
, fp
->_IO_buf_base
, fp
->_IO_buf_base
);
575 _IO_wsetp (fp
, fp
->_wide_data
->_IO_buf_base
,
576 fp
->_wide_data
->_IO_buf_base
);
577 _IO_wsetg (fp
, fp
->_wide_data
->_IO_buf_base
,
578 fp
->_wide_data
->_IO_buf_base
, fp
->_wide_data
->_IO_buf_base
);
583 struct _IO_codecvt
*cv
;
587 /* Adjust for read-ahead (bytes is buffer). To do this we must
588 find out which position in the external buffer corresponds to
589 the current position in the internal buffer. */
591 clen
= (*cv
->__codecvt_do_encoding
) (cv
);
594 offset
-= (fp
->_wide_data
->_IO_read_end
595 - fp
->_wide_data
->_IO_read_ptr
) * clen
;
600 delta
= fp
->_wide_data
->_IO_read_ptr
- fp
->_wide_data
->_IO_read_base
;
601 fp
->_wide_data
->_IO_state
= fp
->_wide_data
->_IO_last_state
;
602 nread
= (*cv
->__codecvt_do_length
) (cv
, &fp
->_wide_data
->_IO_state
,
604 fp
->_IO_read_end
, delta
);
605 fp
->_IO_read_ptr
= fp
->_IO_read_base
+ nread
;
606 fp
->_wide_data
->_IO_read_end
= fp
->_wide_data
->_IO_read_ptr
;
607 offset
-= fp
->_IO_read_end
- fp
->_IO_read_base
- nread
;
610 if (fp
->_offset
== _IO_pos_BAD
)
612 /* Make offset absolute, assuming current pointer is file_ptr(). */
613 offset
+= fp
->_offset
;
622 if (_IO_SYSSTAT (fp
, &st
) == 0 && S_ISREG (st
.st_mode
))
624 offset
+= st
.st_size
;
631 /* At this point, dir==_IO_seek_set. */
633 /* If we are only interested in the current position we've found it now. */
637 /* If destination is within current buffer, optimize: */
638 if (fp
->_offset
!= _IO_pos_BAD
&& fp
->_IO_read_base
!= NULL
639 && !_IO_in_backup (fp
))
641 /* Offset relative to start of main get area. */
642 _IO_off64_t rel_offset
= (offset
- fp
->_offset
643 + (fp
->_IO_read_end
- fp
->_IO_read_base
));
647 if (_IO_in_backup (fp
))
648 _IO_switch_to_main_get_area (fp
);
650 if (rel_offset
<= fp
->_IO_read_end
- fp
->_IO_read_base
)
652 fp
->_IO_read_ptr
= fp
->_IO_read_base
+ rel_offset
;
653 _IO_setp (fp
, fp
->_IO_buf_base
, fp
->_IO_buf_base
);
655 /* Now set the pointer for the internal buffer. This
656 might be an iterative process. Though the read
657 pointer is somewhere in the current external buffer
658 this does not mean we can convert this whole buffer
659 at once fitting in the internal buffer. */
666 _IO_mask_flags (fp
, 0, _IO_EOF_SEEN
);
670 /* If we have streammarkers, seek forward by reading ahead. */
671 if (_IO_have_markers (fp
))
673 int to_skip
= rel_offset
674 - (fp
->_IO_read_ptr
- fp
->_IO_read_base
);
675 if (ignore (to_skip
) != to_skip
)
677 _IO_mask_flags (fp
, 0, _IO_EOF_SEEN
);
683 if (rel_offset
< 0 && rel_offset
>= Bbase () - Bptr ())
685 if (!_IO_in_backup (fp
))
686 _IO_switch_to_backup_area (fp
);
687 gbump (fp
->_IO_read_end
+ rel_offset
- fp
->_IO_read_ptr
);
688 _IO_mask_flags (fp
, 0, _IO_EOF_SEEN
);
695 _IO_unsave_markers (fp
);
698 if (fp
->_flags
& _IO_NO_READS
)
701 /* Try to seek to a block boundary, to improve kernel page management. */
702 new_offset
= offset
& ~(fp
->_IO_buf_end
- fp
->_IO_buf_base
- 1);
703 delta
= offset
- new_offset
;
704 if (delta
> fp
->_IO_buf_end
- fp
->_IO_buf_base
)
709 result
= _IO_SYSSEEK (fp
, new_offset
, 0);
716 count
= _IO_SYSREAD (fp
, fp
->_IO_buf_base
,
718 ? delta
: fp
->_IO_buf_end
- fp
->_IO_buf_base
));
721 /* We weren't allowed to read, but try to seek the remainder. */
722 offset
= count
== EOF
? delta
: delta
-count
;
727 _IO_setg (fp
, fp
->_IO_buf_base
, fp
->_IO_buf_base
+ delta
,
728 fp
->_IO_buf_base
+ count
);
729 _IO_setp (fp
, fp
->_IO_buf_base
, fp
->_IO_buf_base
);
730 fp
->_offset
= result
+ count
;
731 _IO_mask_flags (fp
, 0, _IO_EOF_SEEN
);
735 _IO_unsave_markers (fp
);
736 result
= _IO_SYSSEEK (fp
, offset
, dir
);
739 _IO_mask_flags (fp
, 0, _IO_EOF_SEEN
);
740 fp
->_offset
= result
;
741 _IO_setg (fp
, fp
->_IO_buf_base
, fp
->_IO_buf_base
, fp
->_IO_buf_base
);
742 _IO_setp (fp
, fp
->_IO_buf_base
, fp
->_IO_buf_base
);
743 _IO_wsetg (fp
, fp
->_wide_data
->_IO_buf_base
,
744 fp
->_wide_data
->_IO_buf_base
, fp
->_wide_data
->_IO_buf_base
);
745 _IO_wsetp (fp
, fp
->_wide_data
->_IO_buf_base
,
746 fp
->_wide_data
->_IO_buf_base
);
751 /* We need to do it since it is possible that the file offset in
752 the kernel may be changed behind our back. It may happen when
753 we fopen a file and then do a fork. One process may access the
754 the file and the kernel file offset will be changed. */
755 if (fp
->_offset
>= 0)
756 _IO_SYSSEEK (fp
, fp
->_offset
, 0);
763 _IO_wfile_xsputn (f
, data
, n
)
768 register const wchar_t *s
= (const wchar_t *) data
;
769 _IO_size_t to_do
= n
;
775 /* This is an optimized implementation.
776 If the amount to be written straddles a block boundary
777 (or the filebuf is unbuffered), use sys_write directly. */
779 /* First figure out how much space is available in the buffer. */
780 count
= f
->_wide_data
->_IO_write_end
- f
->_wide_data
->_IO_write_ptr
;
781 if ((f
->_flags
& _IO_LINE_BUF
) && (f
->_flags
& _IO_CURRENTLY_PUTTING
))
783 count
= f
->_wide_data
->_IO_buf_end
- f
->_wide_data
->_IO_write_ptr
;
786 register const wchar_t *p
;
787 for (p
= s
+ n
; p
> s
; )
798 /* Then fill the buffer. */
806 f
->_wide_data
->_IO_write_ptr
=
807 __wmempcpy (f
->_wide_data
->_IO_write_ptr
, s
, count
);
809 wmemcpy (f
->_wide_data
->_IO_write_ptr
, s
, count
);
810 f
->_wide_data
->_IO_write_ptr
+= count
;
816 register wchar_t *p
= f
->_wide_data
->_IO_write_ptr
;
817 register int i
= (int) count
;
820 f
->_wide_data
->_IO_write_ptr
= p
;
825 to_do
-= _IO_wdefault_xsputn (f
, s
, to_do
);
827 && f
->_wide_data
->_IO_write_ptr
!= f
->_wide_data
->_IO_write_base
)
828 _IO_wdo_write (f
, f
->_wide_data
->_IO_write_base
,
829 f
->_wide_data
->_IO_write_ptr
830 - f
->_wide_data
->_IO_write_base
);
836 struct _IO_jump_t _IO_wfile_jumps
=
839 JUMP_INIT(finish
, _IO_new_file_finish
),
840 JUMP_INIT(overflow
, (_IO_overflow_t
) _IO_wfile_overflow
),
841 JUMP_INIT(underflow
, (_IO_underflow_t
) _IO_wfile_underflow
),
842 JUMP_INIT(uflow
, (_IO_underflow_t
) _IO_wdefault_uflow
),
843 JUMP_INIT(pbackfail
, (_IO_pbackfail_t
) _IO_wdefault_pbackfail
),
844 JUMP_INIT(xsputn
, _IO_wfile_xsputn
),
845 JUMP_INIT(xsgetn
, _IO_file_xsgetn
),
846 JUMP_INIT(seekoff
, _IO_wfile_seekoff
),
847 JUMP_INIT(seekpos
, _IO_default_seekpos
),
848 JUMP_INIT(setbuf
, _IO_new_file_setbuf
),
849 JUMP_INIT(sync
, (_IO_sync_t
) _IO_wfile_sync
),
850 JUMP_INIT(doallocate
, _IO_wfile_doallocate
),
851 JUMP_INIT(read
, _IO_file_read
),
852 JUMP_INIT(write
, _IO_new_file_write
),
853 JUMP_INIT(seek
, _IO_file_seek
),
854 JUMP_INIT(close
, _IO_file_close
),
855 JUMP_INIT(stat
, _IO_file_stat
),
856 JUMP_INIT(showmanyc
, _IO_default_showmanyc
),
857 JUMP_INIT(imbue
, _IO_default_imbue
)
861 struct _IO_jump_t _IO_wfile_jumps_mmap
=
864 JUMP_INIT(finish
, _IO_new_file_finish
),
865 JUMP_INIT(overflow
, (_IO_overflow_t
) _IO_wfile_overflow
),
866 JUMP_INIT(underflow
, (_IO_underflow_t
) _IO_wfile_underflow_mmap
),
867 JUMP_INIT(uflow
, (_IO_underflow_t
) _IO_wdefault_uflow
),
868 JUMP_INIT(pbackfail
, (_IO_pbackfail_t
) _IO_wdefault_pbackfail
),
869 JUMP_INIT(xsputn
, _IO_wfile_xsputn
),
870 JUMP_INIT(xsgetn
, _IO_file_xsgetn
),
871 JUMP_INIT(seekoff
, _IO_wfile_seekoff
),
872 JUMP_INIT(seekpos
, _IO_default_seekpos
),
873 JUMP_INIT(setbuf
, _IO_new_file_setbuf
),
874 JUMP_INIT(sync
, (_IO_sync_t
) _IO_wfile_sync
),
875 JUMP_INIT(doallocate
, _IO_wfile_doallocate
),
876 JUMP_INIT(read
, _IO_file_read
),
877 JUMP_INIT(write
, _IO_new_file_write
),
878 JUMP_INIT(seek
, _IO_file_seek
),
879 JUMP_INIT(close
, _IO_file_close_mmap
),
880 JUMP_INIT(stat
, _IO_file_stat
),
881 JUMP_INIT(showmanyc
, _IO_default_showmanyc
),
882 JUMP_INIT(imbue
, _IO_default_imbue
)