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.
20 # include "stlport_prefix.h"
23 #include <stl/_streambuf.h>
24 #include <stl/_algobase.h>
26 // Implementation of non-inline member functions of class
27 // basic_streambuf<char, char_traits<char> >
30 # define FILE_CAST(x) (__REINTERPRET_CAST(FILE*, x))
32 # define FILE_CAST(x) x
37 #if !defined(_STLP_WINCE)
39 _STLP_EXP_DECLSPEC basic_streambuf<char, char_traits<char> >::~basic_streambuf() {}
41 // This constructor is an extension. It is for streambuf subclasses that
42 // are synchronized with C stdio files.
43 _STLP_EXP_DECLSPEC basic_streambuf<char, char_traits<char> >
44 ::basic_streambuf(FILE* __get, FILE* __put)
45 : _M_get(__get ? __get : FILE_CAST(&_M_default_get)),
46 _M_put(__put ? __put : FILE_CAST(&_M_default_put)),
49 _M_lock._M_initialize();
51 if (_M_get == FILE_CAST(&_M_default_get))
52 _FILE_I_set(_M_get, 0, 0, 0);
53 if (_M_put == FILE_CAST(&_M_default_put))
54 _FILE_O_set(_M_put, 0, 0, 0);
57 _STLP_EXP_DECLSPEC basic_streambuf<char, char_traits<char> >
58 ::basic_streambuf _STLP_PSPEC2(char, char_traits<char>) ()
59 : _M_get(__REINTERPRET_CAST(FILE*,&_M_default_get)),
60 _M_put(__REINTERPRET_CAST(FILE*,&_M_default_put)), _M_locale()
62 // _M_lock._M_initialize();
63 _FILE_I_set(_M_get, 0, 0, 0);
64 _FILE_O_set(_M_put, 0, 0, 0);
69 _STLP_EXP_DECLSPEC void basic_streambuf<char, char_traits<char> >::imbue(const locale&)
72 _STLP_EXP_DECLSPEC basic_streambuf<char, char_traits<char> >*
73 basic_streambuf<char, char_traits<char> >::setbuf(char*, streamsize)
78 _STLP_EXP_DECLSPEC basic_streambuf<char, char_traits<char> >::pos_type
79 basic_streambuf<char, char_traits<char> >
80 ::seekoff(off_type, ios_base::seekdir, ios_base::openmode)
85 _STLP_EXP_DECLSPEC basic_streambuf<char, char_traits<char> >::pos_type
86 basic_streambuf<char, char_traits<char> >
87 ::seekpos(pos_type, ios_base::openmode)
92 _STLP_EXP_DECLSPEC int basic_streambuf<char, char_traits<char> >::sync()
97 _STLP_EXP_DECLSPEC streamsize basic_streambuf<char, char_traits<char> >::showmanyc()
102 _STLP_EXP_DECLSPEC streamsize basic_streambuf<char, char_traits<char> >
103 ::xsgetn(char* s, streamsize n)
105 streamsize result = 0;
106 const int_type eof = traits_type::eof();
109 if (_FILE_I_avail(_M_get) > 0) {
110 size_t chunk = (min) (__STATIC_CAST(size_t,_FILE_I_avail(_M_get)),
111 __STATIC_CAST(size_t,n - result));
112 traits_type::copy(s, _FILE_I_next(_M_get), chunk);
115 _FILE_I_bump(_M_get, chunk);
118 int_type c = sbumpc();
132 _STLP_EXP_DECLSPEC basic_streambuf<char, char_traits<char> >::int_type
133 basic_streambuf<char, char_traits<char> >::underflow()
135 return traits_type::eof();
138 _STLP_EXP_DECLSPEC basic_streambuf<char, char_traits<char> >::int_type
139 basic_streambuf<char, char_traits<char> >::uflow()
141 const int_type eof = traits_type::eof();
142 return this->underflow() == eof
144 : traits_type::to_int_type(_FILE_I_postincr(_M_get));
147 _STLP_EXP_DECLSPEC basic_streambuf<char, char_traits<char> >::int_type
148 basic_streambuf<char, char_traits<char> >::pbackfail(int_type /* __c */)
150 return traits_type::eof();
154 _STLP_EXP_DECLSPEC streamsize basic_streambuf<char, char_traits<char> >
155 ::xsputn(const char* s, streamsize n)
157 streamsize result = 0;
158 const int_type eof = traits_type::eof();
161 if (_FILE_O_avail(_M_put) > 0) {
162 size_t chunk = (min) (__STATIC_CAST(size_t,_FILE_O_avail(_M_put)),
163 __STATIC_CAST(size_t,n - result));
164 traits_type::copy(_FILE_O_next(_M_put), s, chunk);
167 _FILE_O_bump(_M_put, (int)chunk);
170 else if (this->overflow(traits_type::to_int_type(*s)) != eof) {
180 _STLP_EXP_DECLSPEC streamsize basic_streambuf<char, char_traits<char> >
181 ::_M_xsputnc(char c, streamsize n)
183 streamsize result = 0;
184 const int_type eof = traits_type::eof();
187 if (_FILE_O_avail(_M_put) > 0) {
188 size_t chunk = (min) (__STATIC_CAST(size_t,_FILE_O_avail(_M_put)),
189 __STATIC_CAST(size_t,n - result));
190 traits_type::assign(_FILE_O_next(_M_put), chunk, c);
192 _FILE_O_bump(_M_put, (int)chunk);
195 else if (this->overflow(traits_type::to_int_type(c)) != eof)
203 _STLP_EXP_DECLSPEC basic_streambuf<char, char_traits<char> >::int_type
204 basic_streambuf<char, char_traits<char> >::overflow(int_type/* c */)
206 return traits_type::eof();
209 _STLP_EXP_DECLSPEC basic_streambuf<char, char_traits<char> >::int_type
210 basic_streambuf<char, char_traits<char> >::_M_snextc_aux()
212 int_type eof = traits_type::eof();
213 if (_FILE_I_avail(_M_get) == 0)
214 return this->uflow() == eof ? eof : this->sgetc();
217 _FILE_I_begin(_M_get), _FILE_I_end(_M_get), _FILE_I_end(_M_get));
218 return this->underflow();
223 _STLP_EXP_DECLSPEC locale basic_streambuf<char, char_traits<char> >::pubimbue(const locale& loc)
226 locale tmp = _M_locale;
233 #if !defined(_STLP_NO_FORCE_INSTANTIATE)
234 template class basic_streambuf<char, char_traits<char> >;
237 #endif /* _STLP_WINCE */
239 //----------------------------------------------------------------------
240 // Force instantiation of basic_streambuf
242 // not basic_streambuf<char>, because it's specialized.
244 #if !defined(_STLP_NO_FORCE_INSTANTIATE)
245 #if !defined (_STLP_NO_WCHAR_T)
246 template class basic_streambuf<wchar_t, char_traits<wchar_t> >;
247 #endif /* INSTANTIATE_WIDE_STREAMS */