libroot_debug: Merge guarded heap into libroot_debug.
[haiku.git] / src / system / libroot / posix / glibc / libio / obprintf.c
blobb4625ae9eafe8deed070d4edcb59641a37503bb1
1 /* Print output of stream to given obstack.
2 Copyright (C) 1996,1997,1999,2000,2001,2002 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996.
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 #include "libioP.h"
22 #include <stdlib.h>
23 #include <assert.h>
24 #include <string.h>
25 #include <errno.h>
26 #include <obstack.h>
27 #include <stdarg.h>
28 #include <stdio_ext.h>
31 struct _IO_obstack_file
33 struct _IO_FILE_plus file;
34 struct obstack *obstack;
38 static int
39 _IO_obstack_overflow (_IO_FILE *fp, int c)
41 struct obstack *obstack = ((struct _IO_obstack_file *) fp)->obstack;
42 int size;
44 /* Make room for another character. This might as well allocate a
45 new chunk a memory and moves the old contents over. */
46 assert (c != EOF);
47 obstack_1grow (obstack, c);
49 /* Setup the buffer pointers again. */
50 fp->_IO_write_base = obstack_base (obstack);
51 fp->_IO_write_ptr = obstack_next_free (obstack);
52 size = obstack_room (obstack);
53 fp->_IO_write_end = fp->_IO_write_ptr + size;
54 /* Now allocate the rest of the current chunk. */
55 obstack_blank_fast (obstack, size);
57 return c;
61 static _IO_size_t
62 _IO_obstack_xsputn (_IO_FILE *fp, const void *data, _IO_size_t n)
64 struct obstack *obstack = ((struct _IO_obstack_file *) fp)->obstack;
66 if (fp->_IO_write_ptr + n > fp->_IO_write_end)
68 int size;
70 /* We need some more memory. First shrink the buffer to the
71 space we really currently need. */
72 obstack_blank_fast (obstack, fp->_IO_write_ptr - fp->_IO_write_end);
74 /* Now grow for N bytes, and put the data there. */
75 obstack_grow (obstack, data, n);
77 /* Setup the buffer pointers again. */
78 fp->_IO_write_base = obstack_base (obstack);
79 fp->_IO_write_ptr = obstack_next_free (obstack);
80 size = obstack_room (obstack);
81 fp->_IO_write_end = fp->_IO_write_ptr + size;
82 /* Now allocate the rest of the current chunk. */
83 obstack_blank_fast (obstack, size);
85 else
86 fp->_IO_write_ptr = __mempcpy (fp->_IO_write_ptr, data, n);
88 return n;
92 /* the jump table. */
93 static struct _IO_jump_t _IO_obstack_jumps =
95 JUMP_INIT_DUMMY,
96 JUMP_INIT(finish, NULL),
97 JUMP_INIT(overflow, _IO_obstack_overflow),
98 JUMP_INIT(underflow, NULL),
99 JUMP_INIT(uflow, NULL),
100 JUMP_INIT(pbackfail, NULL),
101 JUMP_INIT(xsputn, _IO_obstack_xsputn),
102 JUMP_INIT(xsgetn, NULL),
103 JUMP_INIT(seekoff, NULL),
104 JUMP_INIT(seekpos, NULL),
105 JUMP_INIT(setbuf, NULL),
106 JUMP_INIT(sync, NULL),
107 JUMP_INIT(doallocate, NULL),
108 JUMP_INIT(read, NULL),
109 JUMP_INIT(write, NULL),
110 JUMP_INIT(seek, NULL),
111 JUMP_INIT(close, NULL),
112 JUMP_INIT(stat, NULL),
113 JUMP_INIT(showmanyc, NULL),
114 JUMP_INIT(imbue, NULL)
119 _IO_obstack_vprintf (struct obstack *obstack, const char *format, va_list args)
121 struct obstack_FILE
123 struct _IO_obstack_file ofile;
124 } new_f;
125 int result;
126 int size;
127 int room;
129 #ifdef _IO_MTSAFE_IO
130 new_f.ofile.file.file._lock = NULL;
131 #endif
133 _IO_no_init (&new_f.ofile.file.file, _IO_USER_LOCK, -1, NULL, NULL);
134 _IO_JUMPS (&new_f.ofile.file) = &_IO_obstack_jumps;
135 room = obstack_room (obstack);
136 size = obstack_object_size (obstack) + room;
137 if (size == 0)
139 /* We have to handle the allocation a bit different since the
140 `_IO_str_init_static' function would handle a size of zero
141 different from what we expect. */
143 /* Get more memory. */
144 obstack_make_room (obstack, 64);
146 /* Recompute how much room we have. */
147 room = obstack_room (obstack);
148 size = room;
150 assert (size != 0);
153 INTUSE(_IO_str_init_static) ((struct _IO_strfile_ *) &new_f.ofile,
154 obstack_base (obstack),
155 size, obstack_next_free (obstack));
156 /* Now allocate the rest of the current chunk. */
157 assert (size == (new_f.ofile.file.file._IO_write_end
158 - new_f.ofile.file.file._IO_write_base));
159 assert (new_f.ofile.file.file._IO_write_ptr
160 == (new_f.ofile.file.file._IO_write_base
161 + obstack_object_size (obstack)));
162 obstack_blank_fast (obstack, room);
164 new_f.ofile.obstack = obstack;
166 result = INTUSE(_IO_vfprintf) (&new_f.ofile.file.file, format, args);
168 /* Shrink the buffer to the space we really currently need. */
169 obstack_blank_fast (obstack, (new_f.ofile.file.file._IO_write_ptr
170 - new_f.ofile.file.file._IO_write_end));
172 return result;
174 #ifdef weak_alias
175 weak_alias (_IO_obstack_vprintf, obstack_vprintf)
176 #endif
180 _IO_obstack_printf (struct obstack *obstack, const char *format, ...)
182 int result;
183 va_list ap;
184 va_start (ap, format);
185 result = _IO_obstack_vprintf (obstack, format, ap);
186 va_end (ap);
187 return result;
189 #ifdef weak_alias
190 weak_alias (_IO_obstack_printf, obstack_printf)
191 #endif