Update contrib.
2 * © Portions copyright (c) 2006-2007 Nokia Corporation. All rights reserved.
5 * Silicon Graphics Computer Systems, Inc.
10 * This material is provided "as is", with absolutely no warranty expressed
11 * or implied. Any use is at your own risk.
13 * Permission to use or copy this software for any purpose is hereby granted
14 * without fee, provided the above notices are retained on all copies.
15 * Permission to modify the code and to distribute modified code is granted,
16 * provided the above notices are retained, and a notice that the code was
17 * modified is included with the above copyright notice.
21 // Implementation of the classes in header <strstream>.
22 // WARNING: The classes defined in <strstream> are DEPRECATED. This
23 // header is defined in section D.7.1 of the C++ standard, and it
24 // MAY BE REMOVED in a future standard revision. You should use the
25 // header <sstream> instead.
27 # include "stlport_prefix.h"
28 #include <stl/_strstream.h>
29 #include <stl/_algobase.h>
33 // strstreambuf constructor, destructor.
35 _STLP_EXP_DECLSPEC strstreambuf::strstreambuf(streamsize initial_capacity)
36 : _M_alloc_fun(0), _M_free_fun(0),
37 _M_dynamic(true), _M_frozen(false), _M_constant(false)
39 , _pfrozenendsave(NULL)
40 ,_pgetfrozenendsave( NULL)
43 streamsize n = (max)(initial_capacity, streamsize(16));
45 char* buf = _M_alloc(n);
57 _STLP_EXP_DECLSPEC strstreambuf::strstreambuf(__alloc_fn alloc_f, __free_fn free_f)
58 : _M_alloc_fun(alloc_f), _M_free_fun(free_f),
59 _M_dynamic(true), _M_frozen(false), _M_constant(false)
61 , _pfrozenendsave(NULL)
62 ,_pgetfrozenendsave( NULL)
67 char* buf = _M_alloc(n);
71 buf = (char*)_M_alloc_fun(n);
83 _STLP_EXP_DECLSPEC strstreambuf::strstreambuf(char* get, streamsize n, char* put)
84 : _M_alloc_fun(0), _M_free_fun(0),
85 _M_dynamic(false), _M_frozen(false), _M_constant(false)
87 , _pfrozenendsave(NULL)
88 ,_pgetfrozenendsave( NULL)
91 _M_setup(get, put, n);
94 _STLP_EXP_DECLSPEC strstreambuf::strstreambuf(signed char* get, streamsize n, signed char* put)
95 : _M_alloc_fun(0), _M_free_fun(0),
96 _M_dynamic(false), _M_frozen(false), _M_constant(false)
98 , _pfrozenendsave(NULL)
99 ,_pgetfrozenendsave( NULL)
102 _M_setup(__REINTERPRET_CAST(char*,get), __REINTERPRET_CAST(char*,put), n);
105 _STLP_EXP_DECLSPEC strstreambuf::strstreambuf(unsigned char* get, streamsize n,
107 : _M_alloc_fun(0), _M_free_fun(0),
108 _M_dynamic(false), _M_frozen(false), _M_constant(false)
110 , _pfrozenendsave(NULL)
111 ,_pgetfrozenendsave( NULL)
114 _M_setup(__REINTERPRET_CAST(char*,get), __REINTERPRET_CAST(char*,put), n);
117 _STLP_EXP_DECLSPEC strstreambuf::strstreambuf(const char* get, streamsize n)
118 : _M_alloc_fun(0), _M_free_fun(0),
119 _M_dynamic(false), _M_frozen(false), _M_constant(true)
121 , _pfrozenendsave(NULL)
122 ,_pgetfrozenendsave( NULL)
125 _M_setup(__CONST_CAST(char*,get), 0, n);
128 _STLP_EXP_DECLSPEC strstreambuf::strstreambuf(const signed char* get, streamsize n)
129 : _M_alloc_fun(0), _M_free_fun(0),
130 _M_dynamic(false), _M_frozen(false), _M_constant(true)
132 , _pfrozenendsave(NULL)
133 ,_pgetfrozenendsave( NULL)
136 _M_setup(__REINTERPRET_CAST(char*, __CONST_CAST(signed char*,get)), 0, n);
139 _STLP_EXP_DECLSPEC strstreambuf::strstreambuf(const unsigned char* get, streamsize n)
140 : _M_alloc_fun(0), _M_free_fun(0),
141 _M_dynamic(false), _M_frozen(false), _M_constant(true)
143 , _pfrozenendsave(NULL)
144 ,_pgetfrozenendsave( NULL)
147 _M_setup(__REINTERPRET_CAST(char*, __CONST_CAST(unsigned char*,get)), 0, n);
150 _STLP_EXP_DECLSPEC void strstreambuf::freeze(bool frozenflag)
156 if (frozenflag && !_M_frozen)
158 _M_frozen = frozenflag;
159 _pfrozenendsave = epptr();
160 _pgetfrozenendsave = pptr();
161 setp(pbase(), eback());
163 else if (!frozenflag && _M_frozen)
164 { // re-enable writing
165 _M_frozen = frozenflag;
166 if(_pfrozenendsave != NULL)
168 setp(pbase(), _pfrozenendsave);
169 setg(pbase(), pbase(), _pgetfrozenendsave);
175 _M_frozen = frozenflag;
179 _STLP_EXP_DECLSPEC char* strstreambuf::str()
185 _STLP_EXP_DECLSPEC int strstreambuf::pcount() const
187 return int(pptr() ? pptr() - pbase() : 0);
190 _STLP_EXP_DECLSPEC strstreambuf::int_type strstreambuf::overflow(int_type c) {
191 if (c == traits_type::eof())
192 return traits_type::not_eof(c);
194 if (pptr() != 0 && pptr() < epptr())
200 if (!_M_dynamic || _M_constant || _M_frozen)
201 return (EOF); // can't extend
203 // Try to expand the buffer.
204 if (pptr() == epptr() && _M_dynamic && !_M_frozen && !_M_constant) {
205 ptrdiff_t old_size = epptr() - pbase();
206 ptrdiff_t new_size = (max)(2 * old_size, ptrdiff_t(1));
208 char* buf = _M_alloc(new_size);
210 memcpy(buf, pbase(), old_size);
212 char* old_buffer = pbase();
213 bool reposition_get = false;
214 ptrdiff_t old_get_offset;
216 reposition_get = true;
217 old_get_offset = gptr() - eback();
220 setp(buf, buf + new_size);
221 pbump((int)old_size);
224 setg(buf, buf + old_get_offset, buf + (max)(old_get_offset, old_size));
230 if (pptr() != epptr()) {
236 return traits_type::eof();
239 _STLP_EXP_DECLSPEC strstreambuf::int_type strstreambuf::pbackfail(int_type c)
241 if (gptr() != eback()) {
242 if (c == _Traits::eof()) {
244 return _Traits::not_eof(c);
246 else if (c == gptr()[-1]) {
250 else if (!_M_constant) {
257 return _Traits::eof();
260 _STLP_EXP_DECLSPEC strstreambuf::int_type strstreambuf::underflow()
262 if (gptr() == egptr() && pptr() && pptr() > egptr())
263 setg(eback(), gptr(), pptr());
265 if (gptr() != egptr())
266 return (unsigned char) *gptr();
268 return _Traits::eof();
271 _STLP_EXP_DECLSPEC basic_streambuf<char, char_traits<char> >*
272 strstreambuf::setbuf(char*, streamsize)
277 _STLP_EXP_DECLSPEC strstreambuf::pos_type
278 strstreambuf::seekoff(off_type off,
279 ios_base::seekdir dir, ios_base::openmode mode)
284 if ((mode & (ios_base::in | ios_base::out)) ==
285 (ios_base::in | ios_base::out) &&
286 (dir == ios_base::beg || dir == ios_base::end))
287 do_get = do_put = true;
288 else if (mode & ios_base::in)
290 else if (mode & ios_base::out)
293 // !gptr() is here because, according to D.7.1 paragraph 4, the seekable
294 // area is undefined if there is no get area.
295 if ((!do_get && !do_put) || (do_put && !pptr()) || !gptr())
296 return pos_type(off_type(-1));
298 char* seeklow = eback();
299 char* seekhigh = epptr() ? epptr() : egptr();
307 newoff = seekhigh - seeklow;
310 newoff = do_put ? pptr() - seeklow : gptr() - seeklow;
313 return pos_type(off_type(-1));
317 if (off < 0 || off > seekhigh - seeklow)
318 return pos_type(off_type(-1));
321 if (seeklow + off < pbase()) {
322 setp(seeklow, epptr());
326 setp(pbase(), epptr());
327 pbump((int)(off - (pbase() - seeklow)));
331 if (off <= egptr() - seeklow)
332 setg(seeklow, seeklow + off, egptr());
333 else if (off <= pptr() - seeklow)
334 setg(seeklow, seeklow + off, pptr());
336 setg(seeklow, seeklow + off, epptr());
338 #ifndef __SYMBIAN32__
339 return pos_type(newoff);
341 return pos_type(off);
345 _STLP_EXP_DECLSPEC strstreambuf::pos_type
346 strstreambuf::seekpos(pos_type pos, ios_base::openmode mode)
348 return seekoff(pos - pos_type(off_type(0)), ios_base::beg, mode);
352 char* strstreambuf::_M_alloc(size_t n)
355 return __STATIC_CAST(char*,_M_alloc_fun(n));
360 void strstreambuf::_M_setup(char* get, char* put, streamsize n)
363 size_t N = n > 0 ? size_t(n) : n == 0 ? strlen(get) : size_t(INT_MAX);
367 setg(get, get, put + N);
369 #ifndef __SYMBIAN32__
373 setg(get, get, put + N-(put-get));
374 setp(put, put + N-(put-get));
378 setg(get, get, get + N);
383 //----------------------------------------------------------------------
386 _STLP_EXP_DECLSPEC istrstream::istrstream(char* s)
387 : basic_istream<char, char_traits<char> >(0), _M_buf(s, 0)
392 _STLP_EXP_DECLSPEC istrstream::istrstream(const char* s)
393 : basic_istream<char, char_traits<char> >(0), _M_buf(s, 0)
398 _STLP_EXP_DECLSPEC istrstream::istrstream(char* s, streamsize n)
399 : basic_istream<char, char_traits<char> >(0), _M_buf(s, n)
404 _STLP_EXP_DECLSPEC istrstream::istrstream(const char* s, streamsize n)
405 : basic_istream<char, char_traits<char> >(0), _M_buf(s, n)
410 _STLP_EXP_DECLSPEC istrstream::~istrstream() {}
412 _STLP_EXP_DECLSPEC strstreambuf* istrstream::rdbuf() const {
413 return __CONST_CAST(strstreambuf*,&_M_buf);
416 _STLP_EXP_DECLSPEC char* istrstream::str() { return _M_buf.str(); }
418 //----------------------------------------------------------------------
421 _STLP_EXP_DECLSPEC ostrstream::ostrstream()
422 : basic_ostream<char, char_traits<char> >(0), _M_buf()
424 basic_ios<char, char_traits<char> >::init(&_M_buf);
427 _STLP_EXP_DECLSPEC ostrstream::ostrstream(char* s, int n, ios_base::openmode mode)
428 : basic_ostream<char, char_traits<char> >(0),
429 _M_buf(s, n, mode & ios_base::app ? s + strlen(s) : s)
431 basic_ios<char, char_traits<char> >::init(&_M_buf);
434 _STLP_EXP_DECLSPEC ostrstream::~ostrstream() {}
436 _STLP_EXP_DECLSPEC strstreambuf* ostrstream::rdbuf() const
438 return __CONST_CAST(strstreambuf*,&_M_buf);
441 _STLP_EXP_DECLSPEC void ostrstream::freeze(bool freezeflag)
443 _M_buf.freeze(freezeflag);
446 _STLP_EXP_DECLSPEC char* ostrstream::str()
451 _STLP_EXP_DECLSPEC int ostrstream::pcount() const
453 return _M_buf.pcount();
457 //----------------------------------------------------------------------
460 _STLP_EXP_DECLSPEC strstream::strstream()
461 : basic_iostream<char, char_traits<char> >(0), _M_buf()
463 basic_ios<char, char_traits<char> >::init(&_M_buf);
466 _STLP_EXP_DECLSPEC strstream::strstream(char* s, int n, ios_base::openmode mode)
467 : basic_iostream<char, char_traits<char> >(0),
468 _M_buf(s, n, mode & ios_base::app ? s + strlen(s) : s)
470 basic_ios<char, char_traits<char> >::init(&_M_buf);
473 _STLP_EXP_DECLSPEC strstream::~strstream() {}
475 _STLP_EXP_DECLSPEC strstreambuf* strstream::rdbuf() const
477 return __CONST_CAST(strstreambuf*,&_M_buf);
480 _STLP_EXP_DECLSPEC void strstream::freeze(bool freezeflag)
482 _M_buf.freeze(freezeflag);
485 _STLP_EXP_DECLSPEC int strstream::pcount() const
487 return _M_buf.pcount();
490 _STLP_EXP_DECLSPEC char* strstream::str()