1 /* FILE * interface to a struct __printf_buffer. Multibyte version.
2 Copyright (C) 2022-2024 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <https://www.gnu.org/licenses/>. */
19 #include <printf_buffer_as_file.h>
22 #include <printf_buffer.h>
24 /* Commit the data directly written through the stdio stream. */
26 __printf_buffer_as_file_commit (struct __printf_buffer_as_file
*file
)
28 /* Check that the write pointers in the file stream are consistent
29 with the next buffer. */
30 assert (file
->stream
._IO_write_ptr
>= file
->next
->write_ptr
);
31 assert (file
->stream
._IO_write_ptr
<= file
->next
->write_end
);
32 assert (file
->stream
._IO_write_base
== file
->next
->write_base
);
33 assert (file
->stream
._IO_write_end
== file
->next
->write_end
);
35 file
->next
->write_ptr
= file
->stream
._IO_write_ptr
;
38 /* Pointer the FILE * write buffer into the active printf_buffer
41 __printf_buffer_as_file_switch_to_buffer (struct __printf_buffer_as_file
*file
)
43 file
->stream
._IO_write_base
= file
->next
->write_base
;
44 file
->stream
._IO_write_ptr
= file
->next
->write_ptr
;
45 file
->stream
._IO_write_end
= file
->next
->write_end
;
48 /* Only a small subset of the vtable functions is implemented here,
49 following _IO_obstack_jumps. */
52 __printf_buffer_as_file_overflow (FILE *fp
, int ch
)
54 struct __printf_buffer_as_file
*file
= (struct __printf_buffer_as_file
*) fp
;
56 __printf_buffer_as_file_commit (file
);
58 /* EOF means only a flush is requested. */
60 __printf_buffer_putc (file
->next
, ch
);
62 /* Ensure that flushing actually produces room. */
63 if (!__printf_buffer_has_failed (file
->next
)
64 && file
->next
->write_ptr
== file
->next
->write_end
)
65 __printf_buffer_flush (file
->next
);
67 __printf_buffer_as_file_switch_to_buffer (file
);
69 if (!__printf_buffer_has_failed (file
->next
))
70 return (unsigned char) ch
;
76 __printf_buffer_as_file_xsputn (FILE *fp
, const void *buf
, size_t len
)
78 struct __printf_buffer_as_file
*file
= (struct __printf_buffer_as_file
*) fp
;
80 __printf_buffer_as_file_commit (file
);
83 __printf_buffer_write (file
->next
, buf
, len
);
85 __printf_buffer_as_file_switch_to_buffer (file
);
87 if (!__printf_buffer_has_failed (file
->next
))
90 /* We may actually have written something. But the stream is
91 corrupted in this case anyway, so try not to divine the write
97 __printf_buffer_as_file_init (struct __printf_buffer_as_file
*file
,
98 struct __printf_buffer
*next
)
100 file
->stream
._lock
= NULL
;
101 _IO_no_init (&file
->stream
, _IO_USER_LOCK
, -1, NULL
, NULL
);
102 file
->vtable
= &_IO_printf_buffer_as_file_jumps
;
104 /* Set up the write buffer from the next buffer. */
106 __printf_buffer_as_file_switch_to_buffer (file
);
108 /* Mark the read area as inactive, by making all pointers equal. */
109 file
->stream
._IO_read_base
= file
->stream
._IO_write_base
;
110 file
->stream
._IO_read_ptr
= file
->stream
._IO_write_base
;
111 file
->stream
._IO_read_end
= file
->stream
._IO_write_base
;
115 __printf_buffer_as_file_terminate (struct __printf_buffer_as_file
*file
)
117 if (file
->stream
._flags
& _IO_ERR_SEEN
)
121 __printf_buffer_as_file_commit (file
);