1 /* Copyright (C) 1991, 92, 94, 95, 96, 97 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public License as
6 published by the Free Software Foundation; either version 2 of the
7 License, or (at your option) any later version.
9 The GNU C Library 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 GNU
12 Library General Public License for more details.
14 You should have received a copy of the GNU Library General Public
15 License along with the GNU C Library; see the file COPYING.LIB. If not,
16 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 Boston, MA 02111-1307, USA. */
30 /* Enlarge STREAM's buffer. */
32 enlarge_buffer (register FILE *stream
, int c
)
34 struct memstream_info
*info
= (struct memstream_info
*) stream
->__cookie
;
37 if (stream
->__put_limit
!= stream
->__buffer
)
38 /* Record how much has actually been written into the buffer. */
39 *info
->bufsize
= stream
->__bufp
- stream
->__buffer
;
41 if (stream
->__target
!= -1
42 && (size_t) stream
->__target
> *info
->bufsize
)
43 /* Our target (where the buffer maps to) is always zero except when
44 the user just did a SEEK_END fseek. If he sought within the
45 buffer, we need do nothing and will zero the target below. If he
46 sought past the end of the object, grow and zero-fill the buffer
47 up to the target address. */
48 need
= stream
->__target
;
50 need
= *info
->bufsize
;
52 /* We always need an extra character in the buffer. Either we are
53 writing C, or we are flushing and need to write a NUL terminator. */
56 if (stream
->__bufsize
< need
)
58 /* Enlarge the buffer. */
61 if (stream
->__bufsize
* 2 < need
)
64 newsize
= stream
->__bufsize
* 2;
65 newbuf
= (char *) realloc ((void *) stream
->__buffer
, newsize
);
71 *info
->buffer
= stream
->__buffer
= newbuf
;
72 stream
->__bufsize
= newsize
;
75 stream
->__target
= stream
->__offset
= 0;
76 stream
->__get_limit
= stream
->__bufp
= stream
->__buffer
+ *info
->bufsize
;
77 stream
->__put_limit
= stream
->__buffer
+ stream
->__bufsize
;
79 need
-= stream
->__bufp
- stream
->__buffer
+ 1;
82 /* We are extending the buffer after an fseek; zero-fill new space. */
83 memset (stream
->__bufp
, '\0', need
);
84 stream
->__bufp
+= need
;
88 *stream
->__bufp
++ = (unsigned char) c
;
90 *stream
->__bufp
= '\0';
93 /* Seek function for memstreams.
94 There is no external state to munge. */
97 seek (void *cookie
, fpos_t *pos
, int whence
)
106 /* Return the position relative to the end of the object.
107 fseek has just flushed us, so the info is consistent. */
108 *pos
+= *((struct memstream_info
*) cookie
)->bufsize
;
112 __libc_fatal ("memstream::seek called with bogus WHENCE\n");
118 free_info (void *cookie
)
121 struct memstream_info
*info
= (struct memstream_info
*) cookie
;
124 buf
= (char *) realloc ((PTR
) *info
->buffer
, *info
->bufsize
);
134 /* Open a stream that writes into a malloc'd buffer that is expanded as
135 necessary. *BUFLOC and *SIZELOC are updated with the buffer's location
136 and the number of characters written on fflush or fclose. */
138 open_memstream (bufloc
, sizeloc
)
143 struct memstream_info
*info
;
145 if (bufloc
== NULL
|| sizeloc
== NULL
)
147 __set_errno (EINVAL
);
151 stream
= fmemopen ((char *) NULL
, BUFSIZ
, "w+");
155 info
= (struct memstream_info
*) malloc (sizeof (struct memstream_info
));
159 (void) fclose (stream
);
164 stream
->__room_funcs
.__output
= enlarge_buffer
;
165 stream
->__io_funcs
.__seek
= seek
;
166 stream
->__io_funcs
.__close
= free_info
;
167 stream
->__cookie
= (void *) info
;
168 stream
->__userbuf
= 1;
170 info
->buffer
= bufloc
;
171 info
->bufsize
= sizeloc
;
173 *bufloc
= stream
->__buffer
;