1 /* Copyright (C) 1993, 1997, 1998 Free Software Foundation, Inc.
2 This file is part of the GNU IO Library.
4 This library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License as
6 published by the Free Software Foundation; either version 2, or (at
7 your option) any later version.
9 This library is distributed in the hope that it will be useful, but
10 WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this library; see the file COPYING. If not, write to
16 the Free Software Foundation, 59 Temple Place - Suite 330, Boston,
19 As a special exception, if you link this library with files
20 compiled with a GNU compiler to produce an executable, this does
21 not cause the resulting executable to be covered by the GNU General
22 Public License. This exception does not however invalidate any
23 other reasons why the executable file might be covered by the GNU
24 General Public License. */
31 /* The following definitions are for exposition only.
32 They map the terminology used in the ANSI/ISO C++ draft standard
33 to the implementation. */
35 /* allocated: set when a dynamic array object has been allocated, and
36 hence should be freed by the destructor for the strstreambuf object. */
37 #define ALLOCATED(FP) ((FP)->_f._IO_buf_base && DYNAMIC(FP))
39 /* constant: set when the array object has const elements,
40 so the output sequence cannot be written. */
41 #define CONSTANT(FP) ((FP)->_f._IO_file_flags & _IO_NO_WRITES)
43 /* alsize: the suggested minimum size for a dynamic array object. */
44 #define ALSIZE(FP) ??? /* not stored */
46 /* palloc: points to the function to call to allocate a dynamic array object.*/
48 ((FP)->_s._allocate_buffer == default_alloc ? 0 : (FP)->_s._allocate_buffer)
50 /* pfree: points to the function to call to free a dynamic array object. */
52 ((FP)->_s._free_buffer == default_free ? 0 : (FP)->_s._free_buffer)
57 /* An "unbounded buffer" is when a buffer is supplied, but with no
58 specified length. An example is the buffer argument to sprintf.
63 _IO_str_init_static (fp
, ptr
, size
, pstart
)
73 /* If size is negative 'the characters are assumed to
74 continue indefinitely.' This is kind of messy ... */
77 /* Try increasing powers of 2, as long as we don't wrap around. */
78 for (; s
= 2*size
, s
> 0 && ptr
+ s
> ptr
&& s
< 0x4000000L
; )
80 /* Try increasing size as much as we can without wrapping around. */
81 for (s
= size
>> 1; s
> 0; s
>>= 1)
83 if (ptr
+ size
+ s
> ptr
)
87 _IO_setb (fp
, ptr
, ptr
+ size
, 0);
89 fp
->_IO_write_base
= ptr
;
90 fp
->_IO_read_base
= ptr
;
91 fp
->_IO_read_ptr
= ptr
;
94 fp
->_IO_write_ptr
= pstart
;
95 fp
->_IO_write_end
= ptr
+ size
;
96 fp
->_IO_read_end
= pstart
;
100 fp
->_IO_write_ptr
= ptr
;
101 fp
->_IO_write_end
= ptr
;
102 fp
->_IO_read_end
= ptr
+size
;
104 /* A null _allocate_buffer function flags the strfile as being static. */
105 (((_IO_strfile
*) fp
)->_s
._allocate_buffer
) = (_IO_alloc_type
)0;
109 _IO_str_init_readonly (fp
, ptr
, size
)
114 _IO_str_init_static (fp
, (char *) ptr
, size
, NULL
);
115 fp
->_IO_file_flags
|= _IO_NO_WRITES
;
119 _IO_str_overflow (fp
, c
)
123 int flush_only
= c
== EOF
;
125 if (fp
->_flags
& _IO_NO_WRITES
)
126 return flush_only
? 0 : EOF
;
127 if ((fp
->_flags
& _IO_TIED_PUT_GET
) && !(fp
->_flags
& _IO_CURRENTLY_PUTTING
))
129 fp
->_flags
|= _IO_CURRENTLY_PUTTING
;
130 fp
->_IO_write_ptr
= fp
->_IO_read_ptr
;
131 fp
->_IO_read_ptr
= fp
->_IO_read_end
;
133 pos
= fp
->_IO_write_ptr
- fp
->_IO_write_base
;
134 if (pos
>= (_IO_size_t
) (_IO_blen (fp
) + flush_only
))
136 if (fp
->_flags
& _IO_USER_BUF
) /* not allowed to enlarge */
141 char *old_buf
= fp
->_IO_buf_base
;
142 _IO_size_t new_size
= 2 * _IO_blen (fp
) + 100;
144 = (char *) (*((_IO_strfile
*) fp
)->_s
._allocate_buffer
) (new_size
);
147 /* __ferror(fp) = 1; */
150 if (fp
->_IO_buf_base
)
152 memcpy (new_buf
, old_buf
, _IO_blen (fp
));
153 (*((_IO_strfile
*) fp
)->_s
._free_buffer
) (fp
->_IO_buf_base
);
154 /* Make sure _IO_setb won't try to delete _IO_buf_base. */
155 fp
->_IO_buf_base
= NULL
;
158 if (lenp
== &LEN(fp
)) /* use '\0'-filling */
159 memset (new_buf
+ pos
, 0, blen() - pos
);
161 _IO_setb (fp
, new_buf
, new_buf
+ new_size
, 1);
162 fp
->_IO_read_base
= new_buf
+ (fp
->_IO_read_base
- old_buf
);
163 fp
->_IO_read_ptr
= new_buf
+ (fp
->_IO_read_ptr
- old_buf
);
164 fp
->_IO_read_end
= new_buf
+ (fp
->_IO_read_end
- old_buf
);
165 fp
->_IO_write_ptr
= new_buf
+ (fp
->_IO_write_ptr
- old_buf
);
167 fp
->_IO_write_base
= new_buf
;
168 fp
->_IO_write_end
= fp
->_IO_buf_end
;
173 *fp
->_IO_write_ptr
++ = (unsigned char) c
;
174 if (fp
->_IO_write_ptr
> fp
->_IO_read_end
)
175 fp
->_IO_read_end
= fp
->_IO_write_ptr
;
180 _IO_str_underflow (fp
)
183 if (fp
->_IO_write_ptr
> fp
->_IO_read_end
)
184 fp
->_IO_read_end
= fp
->_IO_write_ptr
;
185 if ((fp
->_flags
& _IO_TIED_PUT_GET
) && (fp
->_flags
& _IO_CURRENTLY_PUTTING
))
187 fp
->_flags
&= ~_IO_CURRENTLY_PUTTING
;
188 fp
->_IO_read_ptr
= fp
->_IO_write_ptr
;
189 fp
->_IO_write_ptr
= fp
->_IO_write_end
;
191 if (fp
->_IO_read_ptr
< fp
->_IO_read_end
)
192 return *((unsigned char *) fp
->_IO_read_ptr
);
197 /* The size of the valid part of the buffer. */
203 return ((fp
->_IO_write_ptr
> fp
->_IO_read_end
204 ? fp
->_IO_write_ptr
: fp
->_IO_read_end
)
205 - fp
->_IO_read_base
);
209 _IO_str_seekoff (fp
, offset
, dir
, mode
)
215 _IO_ssize_t cur_size
= _IO_str_count (fp
);
216 _IO_pos_t new_pos
= EOF
;
218 /* Move the get pointer, if requested. */
219 if (mode
& _IOS_INPUT
)
227 offset
+= fp
->_IO_read_ptr
- fp
->_IO_read_base
;
229 default: /* case _IO_seek_set: */
232 if (offset
< 0 || (_IO_ssize_t
) offset
> cur_size
)
234 fp
->_IO_read_ptr
= fp
->_IO_read_base
+ offset
;
235 fp
->_IO_read_end
= fp
->_IO_read_base
+ cur_size
;
239 /* Move the put pointer, if requested. */
240 if (mode
& _IOS_OUTPUT
)
248 offset
+= fp
->_IO_write_ptr
- fp
->_IO_write_base
;
250 default: /* case _IO_seek_set: */
253 if (offset
< 0 || (_IO_ssize_t
) offset
> cur_size
)
255 fp
->_IO_write_ptr
= fp
->_IO_write_base
+ offset
;
262 _IO_str_pbackfail (fp
, c
)
266 if ((fp
->_flags
& _IO_NO_WRITES
) && c
!= EOF
)
268 return _IO_default_pbackfail (fp
, c
);
272 _IO_str_finish (fp
, dummy
)
276 if (fp
->_IO_buf_base
&& !(fp
->_flags
& _IO_USER_BUF
))
277 (((_IO_strfile
*) fp
)->_s
._free_buffer
) (fp
->_IO_buf_base
);
278 fp
->_IO_buf_base
= NULL
;
280 _IO_default_finish (fp
, 0);
283 struct _IO_jump_t _IO_str_jumps
=
286 JUMP_INIT(finish
, _IO_str_finish
),
287 JUMP_INIT(overflow
, _IO_str_overflow
),
288 JUMP_INIT(underflow
, _IO_str_underflow
),
289 JUMP_INIT(uflow
, _IO_default_uflow
),
290 JUMP_INIT(pbackfail
, _IO_str_pbackfail
),
291 JUMP_INIT(xsputn
, _IO_default_xsputn
),
292 JUMP_INIT(xsgetn
, _IO_default_xsgetn
),
293 JUMP_INIT(seekoff
, _IO_str_seekoff
),
294 JUMP_INIT(seekpos
, _IO_default_seekpos
),
295 JUMP_INIT(setbuf
, _IO_default_setbuf
),
296 JUMP_INIT(sync
, _IO_default_sync
),
297 JUMP_INIT(doallocate
, _IO_default_doallocate
),
298 JUMP_INIT(read
, _IO_default_read
),
299 JUMP_INIT(write
, _IO_default_write
),
300 JUMP_INIT(seek
, _IO_default_seek
),
301 JUMP_INIT(close
, _IO_default_close
),
302 JUMP_INIT(stat
, _IO_default_stat
)