Update.
[glibc.git] / libio / wfileops.c
blob92d1a08190f0a58c9070d3d09ea998f2ade8c4e1
1 /* Copyright (C) 1993,95,97,98,99,2000,2001 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
19 02111-1307 USA.
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. */
30 #include <assert.h>
31 #include <libioP.h>
32 #include <wchar.h>
33 #include <gconv.h>
34 #include <stdlib.h>
35 #include <string.h>
38 #ifndef _LIBC
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
52 #endif
55 _IO_FILE *
56 _IO_wfile_setbuf (fp, p, len)
57 _IO_FILE *fp;
58 wchar_t *p;
59 _IO_ssize_t len;
61 if (_IO_wdefault_setbuf (fp, p, len) == NULL)
62 return 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);
69 return fp;
73 /* Convert TO_DO wide character from DATA to FP.
74 Then mark FP as having empty buffers. */
75 int
76 _IO_wdo_write (fp, data, to_do)
77 _IO_FILE *fp;
78 const wchar_t *data;
79 _IO_size_t to_do;
81 struct _IO_codecvt *cc = fp->_codecvt;
83 if (to_do > 0)
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)
90 return 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,
101 fp->_IO_write_ptr,
102 fp->_IO_buf_end,
103 &fp->_IO_write_ptr);
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. */
109 return EOF;
111 to_do -= new_data - data;
113 /* Next see whether we had problems during the conversion. If yes,
114 we cannot go on. */
115 if (result != __codecvt_ok
116 && (result != __codecvt_partial || new_data - data == 0))
117 break;
119 data = new_data;
121 while (to_do > 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;
136 wint_t
137 _IO_wfile_underflow (fp)
138 _IO_FILE *fp;
140 struct _IO_codecvt *cd;
141 enum __codecvt_result status;
142 _IO_ssize_t count;
143 int tries;
144 const char *read_ptr_copy;
146 if (fp->_flags & _IO_NO_READS)
148 fp->_flags |= _IO_ERR_SEEN;
149 __set_errno (EBADF);
150 return WEOF;
152 if (fp->_wide_data->_IO_read_ptr < fp->_wide_data->_IO_read_end)
153 return *fp->_wide_data->_IO_read_ptr;
155 cd = fp->_codecvt;
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 status = (*cd->__codecvt_do_in) (cd, &fp->_wide_data->_IO_state,
165 fp->_IO_read_ptr, fp->_IO_read_end,
166 &read_stop,
167 fp->_wide_data->_IO_read_end,
168 fp->_wide_data->_IO_buf_end,
169 &fp->_wide_data->_IO_read_end);
171 fp->_IO_read_ptr = (char *) read_stop;
173 /* If we managed to generate some text return the next character. */
174 if (fp->_wide_data->_IO_read_ptr < fp->_wide_data->_IO_read_end)
175 return *fp->_wide_data->_IO_read_ptr;
177 if (status == __codecvt_error)
179 __set_errno (EILSEQ);
180 fp->_flags |= _IO_ERR_SEEN;
181 return WEOF;
184 /* Move the remaining content of the read buffer to the beginning. */
185 memmove (fp->_IO_buf_base, fp->_IO_read_ptr,
186 fp->_IO_read_end - fp->_IO_read_ptr);
187 fp->_IO_read_end = (fp->_IO_buf_base
188 + (fp->_IO_read_end - fp->_IO_read_ptr));
189 fp->_IO_read_base = fp->_IO_read_ptr = fp->_IO_buf_base;
191 else
192 fp->_IO_read_base = fp->_IO_read_ptr = fp->_IO_read_end =
193 fp->_IO_buf_base;
195 if (fp->_IO_buf_base == NULL)
197 /* Maybe we already have a push back pointer. */
198 if (fp->_IO_save_base != NULL)
200 free (fp->_IO_save_base);
201 fp->_flags &= ~_IO_IN_BACKUP;
203 _IO_doallocbuf (fp);
205 fp->_IO_read_base = fp->_IO_read_ptr = fp->_IO_read_end =
206 fp->_IO_buf_base;
209 fp->_IO_write_base = fp->_IO_write_ptr = fp->_IO_write_end =
210 fp->_IO_buf_base;
212 if (fp->_wide_data->_IO_buf_base == NULL)
214 /* Maybe we already have a push back pointer. */
215 if (fp->_wide_data->_IO_save_base != NULL)
217 free (fp->_wide_data->_IO_save_base);
218 fp->_flags &= ~_IO_IN_BACKUP;
220 _IO_wdoallocbuf (fp);
223 /* Flush all line buffered files before reading. */
224 /* FIXME This can/should be moved to genops ?? */
225 if (fp->_flags & (_IO_LINE_BUF|_IO_UNBUFFERED))
227 #if 0
228 _IO_flush_all_linebuffered ();
229 #else
230 /* We used to flush all line-buffered stream. This really isn't
231 required by any standard. My recollection is that
232 traditional Unix systems did this for stdout. stderr better
233 not be line buffered. So we do just that here
234 explicitly. --drepper */
235 _IO_cleanup_region_start ((void (*) __P ((void *))) _IO_funlockfile,
236 _IO_stdout);
237 _IO_flockfile (_IO_stdout);
239 if ((_IO_stdout->_flags & (_IO_LINKED | _IO_NO_WRITES | _IO_LINE_BUF))
240 == (_IO_LINKED | _IO_LINE_BUF))
241 _IO_OVERFLOW (_IO_stdout, EOF);
243 _IO_funlockfile (_IO_stdout);
244 _IO_cleanup_region_end (0);
245 #endif
248 _IO_switch_to_get_mode (fp);
250 fp->_wide_data->_IO_read_base = fp->_wide_data->_IO_read_ptr =
251 fp->_wide_data->_IO_buf_base;
252 fp->_wide_data->_IO_read_end = fp->_wide_data->_IO_buf_base;
253 fp->_wide_data->_IO_write_base = fp->_wide_data->_IO_write_ptr =
254 fp->_wide_data->_IO_write_end = fp->_wide_data->_IO_buf_base;
256 tries = 0;
257 again:
258 count = _IO_SYSREAD (fp, fp->_IO_read_end,
259 fp->_IO_buf_end - fp->_IO_read_end);
260 if (count <= 0)
262 if (count == 0 && tries == 0)
263 fp->_flags |= _IO_EOF_SEEN;
264 else
265 fp->_flags |= _IO_ERR_SEEN, count = 0;
267 fp->_IO_read_end += count;
268 if (count == 0)
270 if (tries != 0)
271 /* There are some bytes in the external buffer but they don't
272 convert to anything. */
273 __set_errno (EILSEQ);
274 return WEOF;
276 if (fp->_offset != _IO_pos_BAD)
277 _IO_pos_adjust (fp->_offset, count);
279 /* Now convert the read input. */
280 fp->_wide_data->_IO_last_state = fp->_wide_data->_IO_state;
281 fp->_IO_read_base = fp->_IO_read_ptr;
282 status = (*cd->__codecvt_do_in) (cd, &fp->_wide_data->_IO_state,
283 fp->_IO_read_ptr, fp->_IO_read_end,
284 &read_ptr_copy,
285 fp->_wide_data->_IO_read_end,
286 fp->_wide_data->_IO_buf_end,
287 &fp->_wide_data->_IO_read_end);
289 fp->_IO_read_ptr = (char *) read_ptr_copy;
290 if (fp->_wide_data->_IO_read_end == fp->_wide_data->_IO_buf_base)
292 if (status == __codecvt_error || fp->_IO_read_end == fp->_IO_buf_end)
294 __set_errno (EILSEQ);
295 fp->_flags |= _IO_ERR_SEEN;
296 return WEOF;
299 /* The read bytes make no complete character. Try reading again. */
300 assert (status == __codecvt_partial);
301 ++tries;
302 goto again;
305 return *fp->_wide_data->_IO_read_ptr;
309 wint_t
310 _IO_wfile_overflow (f, wch)
311 _IO_FILE *f;
312 wint_t wch;
314 if (f->_flags & _IO_NO_WRITES) /* SET ERROR */
316 f->_flags |= _IO_ERR_SEEN;
317 __set_errno (EBADF);
318 return WEOF;
320 /* If currently reading or no buffer allocated. */
321 if ((f->_flags & _IO_CURRENTLY_PUTTING) == 0)
323 /* Allocate a buffer if needed. */
324 if (f->_wide_data->_IO_write_base == 0)
326 _IO_wdoallocbuf (f);
327 _IO_wsetg (f, f->_wide_data->_IO_buf_base,
328 f->_wide_data->_IO_buf_base, f->_wide_data->_IO_buf_base);
330 if (f->_IO_write_base == NULL)
332 _IO_doallocbuf (f);
333 _IO_setg (f, f->_IO_buf_base, f->_IO_buf_base, f->_IO_buf_base);
336 else
338 /* Otherwise must be currently reading. If _IO_read_ptr
339 (and hence also _IO_read_end) is at the buffer end,
340 logically slide the buffer forwards one block (by setting
341 the read pointers to all point at the beginning of the
342 block). This makes room for subsequent output.
343 Otherwise, set the read pointers to _IO_read_end (leaving
344 that alone, so it can continue to correspond to the
345 external position). */
346 if (f->_wide_data->_IO_read_ptr == f->_wide_data->_IO_buf_end)
348 f->_IO_read_end = f->_IO_read_ptr = f->_IO_buf_base;
349 f->_wide_data->_IO_read_end = f->_wide_data->_IO_read_ptr =
350 f->_wide_data->_IO_buf_base;
353 f->_wide_data->_IO_write_ptr = f->_wide_data->_IO_read_ptr;
354 f->_wide_data->_IO_write_base = f->_wide_data->_IO_write_ptr;
355 f->_wide_data->_IO_write_end = f->_wide_data->_IO_buf_end;
356 f->_wide_data->_IO_read_base = f->_wide_data->_IO_read_ptr =
357 f->_wide_data->_IO_read_end;
359 f->_IO_write_ptr = f->_IO_read_ptr;
360 f->_IO_write_base = f->_IO_write_ptr;
361 f->_IO_write_end = f->_IO_buf_end;
362 f->_IO_read_base = f->_IO_read_ptr = f->_IO_read_end;
364 f->_flags |= _IO_CURRENTLY_PUTTING;
365 if (f->_flags & (_IO_LINE_BUF+_IO_UNBUFFERED))
366 f->_wide_data->_IO_write_end = f->_wide_data->_IO_write_ptr;
368 if (wch == WEOF)
369 return _IO_do_flush (f);
370 if (f->_wide_data->_IO_write_ptr == f->_wide_data->_IO_buf_end)
371 /* Buffer is really full */
372 if (_IO_do_flush (f) == WEOF)
373 return WEOF;
374 *f->_wide_data->_IO_write_ptr++ = wch;
375 if ((f->_flags & _IO_UNBUFFERED)
376 || ((f->_flags & _IO_LINE_BUF) && wch == L'\n'))
377 if (_IO_do_flush (f) == WEOF)
378 return WEOF;
379 return wch;
382 wint_t
383 _IO_wfile_sync (fp)
384 _IO_FILE *fp;
386 _IO_ssize_t delta;
387 wint_t retval = 0;
389 /* char* ptr = cur_ptr(); */
390 if (fp->_wide_data->_IO_write_ptr > fp->_wide_data->_IO_write_base)
391 if (_IO_do_flush (fp))
392 return WEOF;
393 delta = fp->_wide_data->_IO_read_ptr - fp->_wide_data->_IO_read_end;
394 if (delta != 0)
396 /* We have to find out how many bytes we have to go back in the
397 external buffer. */
398 struct _IO_codecvt *cv = fp->_codecvt;
399 _IO_off64_t new_pos;
401 int clen = (*cv->__codecvt_do_encoding) (cv);
403 if (clen > 0)
404 /* It is easy, a fixed number of input bytes are used for each
405 wide character. */
406 delta *= clen;
407 else
409 /* We have to find out the hard way how much to back off.
410 To do this we determine how much input we needed to
411 generate the wide characters up to the current reading
412 position. */
413 int nread;
415 fp->_wide_data->_IO_state = fp->_wide_data->_IO_last_state;
416 nread = (*cv->__codecvt_do_length) (cv, &fp->_wide_data->_IO_state,
417 fp->_IO_read_base,
418 fp->_IO_read_end, delta);
419 fp->_IO_read_ptr = fp->_IO_read_base + nread;
420 delta = -(fp->_IO_read_end - fp->_IO_read_base - nread);
423 new_pos = _IO_SYSSEEK (fp, delta, 1);
424 if (new_pos != (_IO_off64_t) EOF)
426 fp->_wide_data->_IO_read_end = fp->_wide_data->_IO_read_ptr;
427 fp->_IO_read_end = fp->_IO_read_ptr;
429 #ifdef ESPIPE
430 else if (errno == ESPIPE)
431 ; /* Ignore error from unseekable devices. */
432 #endif
433 else
434 retval = WEOF;
436 if (retval != WEOF)
437 fp->_offset = _IO_pos_BAD;
438 /* FIXME: Cleanup - can this be shared? */
439 /* setg(base(), ptr, ptr); */
440 return retval;
443 _IO_off64_t
444 _IO_wfile_seekoff (fp, offset, dir, mode)
445 _IO_FILE *fp;
446 _IO_off64_t offset;
447 int dir;
448 int mode;
450 _IO_off64_t result;
451 _IO_off64_t delta, new_offset;
452 long int count;
453 /* POSIX.1 8.2.3.7 says that after a call the fflush() the file
454 offset of the underlying file must be exact. */
455 int must_be_exact = ((fp->_wide_data->_IO_read_base
456 == fp->_wide_data->_IO_read_end)
457 && (fp->_wide_data->_IO_write_base
458 == fp->_wide_data->_IO_write_ptr));
460 if (mode == 0)
462 /* XXX For wide stream with backup store it is not very
463 reasonable to determine the offset. The pushed-back
464 character might require a state change and we need not be
465 able to compute the initial state by reverse transformation
466 since there is no guarantee of symmetry. So we don't even
467 try and return an error. */
468 if (_IO_in_backup (fp))
470 if (fp->_wide_data->_IO_read_ptr < fp->_wide_data->_IO_read_end)
472 __set_errno (EINVAL);
473 return -1;
476 /* There is no more data in the backup buffer. We can
477 switch back. */
478 _IO_switch_to_main_wget_area (fp);
481 dir = _IO_seek_cur, offset = 0; /* Don't move any pointers. */
484 /* Flush unwritten characters.
485 (This may do an unneeded write if we seek within the buffer.
486 But to be able to switch to reading, we would need to set
487 egptr to ptr. That can't be done in the current design,
488 which assumes file_ptr() is eGptr. Anyway, since we probably
489 end up flushing when we close(), it doesn't make much difference.)
490 FIXME: simulate mem-mapped files. */
492 if (fp->_wide_data->_IO_write_ptr > fp->_wide_data->_IO_write_base
493 || _IO_in_put_mode (fp))
494 if (_IO_switch_to_wget_mode (fp))
495 return WEOF;
497 if (fp->_wide_data->_IO_buf_base == NULL)
499 /* It could be that we already have a pushback buffer. */
500 if (fp->_wide_data->_IO_read_base != NULL)
502 free (fp->_wide_data->_IO_read_base);
503 fp->_flags &= ~_IO_IN_BACKUP;
505 _IO_doallocbuf (fp);
506 _IO_setp (fp, fp->_IO_buf_base, fp->_IO_buf_base);
507 _IO_setg (fp, fp->_IO_buf_base, fp->_IO_buf_base, fp->_IO_buf_base);
508 _IO_wsetp (fp, fp->_wide_data->_IO_buf_base,
509 fp->_wide_data->_IO_buf_base);
510 _IO_wsetg (fp, fp->_wide_data->_IO_buf_base,
511 fp->_wide_data->_IO_buf_base, fp->_wide_data->_IO_buf_base);
514 switch (dir)
516 struct _IO_codecvt *cv;
517 int clen;
519 case _IO_seek_cur:
520 /* Adjust for read-ahead (bytes is buffer). To do this we must
521 find out which position in the external buffer corresponds to
522 the current position in the internal buffer. */
523 cv = fp->_codecvt;
524 clen = (*cv->__codecvt_do_encoding) (cv);
526 if (clen > 0)
527 offset -= (fp->_wide_data->_IO_read_end
528 - fp->_wide_data->_IO_read_ptr) * clen;
529 else
531 int nread;
533 delta = fp->_wide_data->_IO_read_ptr - fp->_wide_data->_IO_read_base;
534 fp->_wide_data->_IO_state = fp->_wide_data->_IO_last_state;
535 nread = (*cv->__codecvt_do_length) (cv, &fp->_wide_data->_IO_state,
536 fp->_IO_read_base,
537 fp->_IO_read_end, delta);
538 fp->_IO_read_ptr = fp->_IO_read_base + nread;
539 fp->_wide_data->_IO_read_end = fp->_wide_data->_IO_read_ptr;
540 offset -= fp->_IO_read_end - fp->_IO_read_base - nread;
543 if (fp->_offset == _IO_pos_BAD)
544 goto dumb;
545 /* Make offset absolute, assuming current pointer is file_ptr(). */
546 offset += fp->_offset;
548 dir = _IO_seek_set;
549 break;
550 case _IO_seek_set:
551 break;
552 case _IO_seek_end:
554 struct _G_stat64 st;
555 if (_IO_SYSSTAT (fp, &st) == 0 && S_ISREG (st.st_mode))
557 offset += st.st_size;
558 dir = _IO_seek_set;
560 else
561 goto dumb;
564 /* At this point, dir==_IO_seek_set. */
566 /* If we are only interested in the current position we've found it now. */
567 if (mode == 0)
568 return offset;
570 /* If destination is within current buffer, optimize: */
571 if (fp->_offset != _IO_pos_BAD && fp->_IO_read_base != NULL
572 && !_IO_in_backup (fp))
574 /* Offset relative to start of main get area. */
575 _IO_off64_t rel_offset = (offset - fp->_offset
576 + (fp->_IO_read_end - fp->_IO_read_base));
577 if (rel_offset >= 0)
579 #if 0
580 if (_IO_in_backup (fp))
581 _IO_switch_to_main_get_area (fp);
582 #endif
583 if (rel_offset <= fp->_IO_read_end - fp->_IO_read_base)
585 fp->_IO_read_ptr = fp->_IO_read_base + rel_offset;
586 _IO_setp (fp, fp->_IO_buf_base, fp->_IO_buf_base);
588 /* Now set the pointer for the internal buffer. This
589 might be an iterative process. Though the read
590 pointer is somewhere in the current external buffer
591 this does not mean we can convert this whole buffer
592 at once fitting in the internal buffer. */
597 while (0);
599 _IO_mask_flags (fp, 0, _IO_EOF_SEEN);
600 goto resync;
602 #ifdef TODO
603 /* If we have streammarkers, seek forward by reading ahead. */
604 if (_IO_have_markers (fp))
606 int to_skip = rel_offset
607 - (fp->_IO_read_ptr - fp->_IO_read_base);
608 if (ignore (to_skip) != to_skip)
609 goto dumb;
610 _IO_mask_flags (fp, 0, _IO_EOF_SEEN);
611 goto resync;
613 #endif
615 #ifdef TODO
616 if (rel_offset < 0 && rel_offset >= Bbase () - Bptr ())
618 if (!_IO_in_backup (fp))
619 _IO_switch_to_backup_area (fp);
620 gbump (fp->_IO_read_end + rel_offset - fp->_IO_read_ptr);
621 _IO_mask_flags (fp, 0, _IO_EOF_SEEN);
622 goto resync;
624 #endif
627 #ifdef TODO
628 _IO_unsave_markers (fp);
629 #endif
631 if (fp->_flags & _IO_NO_READS)
632 goto dumb;
634 /* Try to seek to a block boundary, to improve kernel page management. */
635 new_offset = offset & ~(fp->_IO_buf_end - fp->_IO_buf_base - 1);
636 delta = offset - new_offset;
637 if (delta > fp->_IO_buf_end - fp->_IO_buf_base)
639 new_offset = offset;
640 delta = 0;
642 result = _IO_SYSSEEK (fp, new_offset, 0);
643 if (result < 0)
644 return EOF;
645 if (delta == 0)
646 count = 0;
647 else
649 count = _IO_SYSREAD (fp, fp->_IO_buf_base,
650 (must_be_exact
651 ? delta : fp->_IO_buf_end - fp->_IO_buf_base));
652 if (count < delta)
654 /* We weren't allowed to read, but try to seek the remainder. */
655 offset = count == EOF ? delta : delta-count;
656 dir = _IO_seek_cur;
657 goto dumb;
660 _IO_setg (fp, fp->_IO_buf_base, fp->_IO_buf_base + delta,
661 fp->_IO_buf_base + count);
662 _IO_setp (fp, fp->_IO_buf_base, fp->_IO_buf_base);
663 fp->_offset = result + count;
664 _IO_mask_flags (fp, 0, _IO_EOF_SEEN);
665 return offset;
666 dumb:
668 _IO_unsave_markers (fp);
669 result = _IO_SYSSEEK (fp, offset, dir);
670 if (result != EOF)
672 _IO_mask_flags (fp, 0, _IO_EOF_SEEN);
673 fp->_offset = result;
674 _IO_setg (fp, fp->_IO_buf_base, fp->_IO_buf_base, fp->_IO_buf_base);
675 _IO_setp (fp, fp->_IO_buf_base, fp->_IO_buf_base);
676 _IO_wsetg (fp, fp->_wide_data->_IO_buf_base,
677 fp->_wide_data->_IO_buf_base, fp->_wide_data->_IO_buf_base);
678 _IO_wsetp (fp, fp->_wide_data->_IO_buf_base,
679 fp->_wide_data->_IO_buf_base);
681 return result;
683 resync:
684 /* We need to do it since it is possible that the file offset in
685 the kernel may be changed behind our back. It may happen when
686 we fopen a file and then do a fork. One process may access the
687 the file and the kernel file offset will be changed. */
688 if (fp->_offset >= 0)
689 _IO_SYSSEEK (fp, fp->_offset, 0);
691 return offset;
695 _IO_size_t
696 _IO_wfile_xsputn (f, data, n)
697 _IO_FILE *f;
698 const void *data;
699 _IO_size_t n;
701 register const wchar_t *s = (const wchar_t *) data;
702 _IO_size_t to_do = n;
703 int must_flush = 0;
704 _IO_size_t count;
706 if (n <= 0)
707 return 0;
708 /* This is an optimized implementation.
709 If the amount to be written straddles a block boundary
710 (or the filebuf is unbuffered), use sys_write directly. */
712 /* First figure out how much space is available in the buffer. */
713 count = f->_wide_data->_IO_write_end - f->_wide_data->_IO_write_ptr;
714 if ((f->_flags & _IO_LINE_BUF) && (f->_flags & _IO_CURRENTLY_PUTTING))
716 count = f->_wide_data->_IO_buf_end - f->_wide_data->_IO_write_ptr;
717 if (count >= n)
719 register const wchar_t *p;
720 for (p = s + n; p > s; )
722 if (*--p == L'\n')
724 count = p - s + 1;
725 must_flush = 1;
726 break;
731 /* Then fill the buffer. */
732 if (count > 0)
734 if (count > to_do)
735 count = to_do;
736 if (count > 20)
738 #ifdef _LIBC
739 f->_wide_data->_IO_write_ptr =
740 __wmempcpy (f->_wide_data->_IO_write_ptr, s, count);
741 #else
742 wmemcpy (f->_wide_data->_IO_write_ptr, s, count);
743 f->_wide_data->_IO_write_ptr += count;
744 #endif
745 s += count;
747 else
749 register wchar_t *p = f->_wide_data->_IO_write_ptr;
750 register int i = (int) count;
751 while (--i >= 0)
752 *p++ = *s++;
753 f->_wide_data->_IO_write_ptr = p;
755 to_do -= count;
757 if (to_do > 0)
758 to_do -= _IO_wdefault_xsputn (f, s, to_do);
759 if (must_flush
760 && f->_wide_data->_IO_write_ptr != f->_wide_data->_IO_write_base)
761 _IO_wdo_write (f, f->_wide_data->_IO_write_base,
762 f->_wide_data->_IO_write_ptr
763 - f->_wide_data->_IO_write_base);
765 return n - to_do;
769 struct _IO_jump_t _IO_wfile_jumps =
771 JUMP_INIT_DUMMY,
772 JUMP_INIT(finish, _IO_new_file_finish),
773 JUMP_INIT(overflow, (_IO_overflow_t) _IO_wfile_overflow),
774 JUMP_INIT(underflow, (_IO_underflow_t) _IO_wfile_underflow),
775 JUMP_INIT(uflow, (_IO_underflow_t) _IO_wdefault_uflow),
776 JUMP_INIT(pbackfail, (_IO_pbackfail_t) _IO_wdefault_pbackfail),
777 JUMP_INIT(xsputn, _IO_wfile_xsputn),
778 JUMP_INIT(xsgetn, _IO_file_xsgetn),
779 JUMP_INIT(seekoff, _IO_wfile_seekoff),
780 JUMP_INIT(seekpos, _IO_default_seekpos),
781 JUMP_INIT(setbuf, _IO_new_file_setbuf),
782 JUMP_INIT(sync, (_IO_sync_t) _IO_wfile_sync),
783 JUMP_INIT(doallocate, _IO_wfile_doallocate),
784 JUMP_INIT(read, _IO_file_read),
785 JUMP_INIT(write, _IO_new_file_write),
786 JUMP_INIT(seek, _IO_file_seek),
787 JUMP_INIT(close, _IO_file_close),
788 JUMP_INIT(stat, _IO_file_stat),
789 JUMP_INIT(showmanyc, _IO_default_showmanyc),
790 JUMP_INIT(imbue, _IO_default_imbue)