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"
21 #include <stdio_streambuf>
24 #include <sys/types.h>
28 #include <stl/_fstream.h>
29 #include "fstream_impl.h"
31 # if defined (_STLP_USE_WIN32_IO) && !defined(_STLP_WINCE)
32 # if defined (__BORLANDC__)
40 # include <sys/stat.h>
44 //----------------------------------------------------------------------
45 // Class stdio_streambuf_base
47 stdio_streambuf_base::stdio_streambuf_base(FILE* file)
48 : _STLP_STD::basic_streambuf<char, _STLP_STD::char_traits<char> >(file, 0),
52 stdio_streambuf_base::~stdio_streambuf_base()
54 _STLP_VENDOR_CSTD::fflush(_M_file);
57 _STLP_STD::streambuf* stdio_streambuf_base::setbuf(char* s, streamsize n)
59 _STLP_VENDOR_CSTD::setvbuf(_M_file, s, (s == 0 && n == 0) ? _IONBF : _IOFBF, n);
63 stdio_streambuf_base::pos_type
64 stdio_streambuf_base::seekoff(off_type off, ios_base::seekdir dir,
65 ios_base::openmode /* mode */)
82 if (_STLP_VENDOR_CSTD::fseek(_M_file, off, whence) == 0) {
84 _STLP_VENDOR_CSTD::fgetpos(_M_file, &pos);
85 // added 21 june 00 mdb,rjf,wjs: glibc 2.2 changed fpos_t to be a struct instead
86 // of a primitive type
87 #if (defined(__GLIBC__) && ( (__GLIBC__ > 2) || ( (__GLIBC__ == 2) && (__GLIBC_MINOR__ >= 2) ) ) )
88 return pos_type((streamoff)pos.__pos);
89 #elif defined(__ISCPP__) || defined(__MVS__) || (__OS400__)
90 return pos_type(pos.__fpos_elem[ 0 ]);
91 #elif defined (__EMX__)
92 return pos_type((streamoff)pos._pos);
102 stdio_streambuf_base::pos_type
103 stdio_streambuf_base::seekpos(pos_type pos, ios_base::openmode /* mode */) // dwa 4/27/00 - suppress unused parameter warning
106 // added 21 june 00 mdb,rjf,wjs: glibc 2.2 changed fpos_t to be a struct instead
107 // of a primitive type
108 #if (defined(__GLIBC__) && ( (__GLIBC__ > 2) || ( (__GLIBC__ == 2) && (__GLIBC_MINOR__ >= 2) ) ) )
111 memset( &(p.__state), 0, sizeof(p.__state) );
112 #elif defined(__MVS__) || (__OS400__)
114 p.__fpos_elem[0] = pos;
115 #elif defined(__EMX__)
118 memset( &(p._mbstate), 0, sizeof(p._mbstate) );
123 if (_STLP_VENDOR_CSTD::fsetpos(_M_file, &p) == 0)
129 int stdio_streambuf_base::sync()
131 return _STLP_VENDOR_CSTD::fflush(_M_file) == 0 ? 0 : -1;
134 //----------------------------------------------------------------------
135 // Class stdio_istreambuf
137 stdio_istreambuf::~stdio_istreambuf() {}
139 _STLP_EXP_DECLSPEC streamsize stdio_istreambuf::showmanyc()
144 int fd = _FILE_fd(_M_file);
145 # ifdef _STLP_USE_WIN32_IO
146 // in this case, __file_size works with Win32 fh , not libc one
150 if(fstat(fd, &buf) == 0 && S_ISREG( buf.st_mode ) )
152 if(fstat(fd, &buf) == 0 && ( _S_IFREG & buf.st_mode ) )
154 size = ( buf.st_size > 0 ? buf.st_size : 0);
158 streamoff size = _SgI::__file_size(fd);
160 // fbp : we can use ftell as this flavour always use stdio.
161 long pos = _STLP_VENDOR_CSTD::ftell(_M_file);
162 return pos >= 0 && size > pos ? size - pos : 0;
166 stdio_istreambuf::int_type stdio_istreambuf::underflow()
168 int c = getc(_M_file);
170 _STLP_VENDOR_CSTD::ungetc(c, _M_file);
174 return traits_type::eof();
177 stdio_istreambuf::int_type stdio_istreambuf::uflow()
180 const int_type eof = traits_type::eof();
181 return this->underflow() == eof
183 : traits_type::to_int_type(_FILE_I_postincr(_M_file));
185 int c = getc(_M_file);
186 return c != EOF ? c : traits_type::eof();
190 stdio_istreambuf::int_type stdio_istreambuf::pbackfail(int_type c)
192 if (c != traits_type::eof()) {
193 int result = _STLP_VENDOR_CSTD::ungetc(c, _M_file);
194 return result != EOF ? result : traits_type::eof();
197 if (this->eback() < this->gptr()) {
199 return traits_type::not_eof(c);
202 return traits_type::eof();
206 //----------------------------------------------------------------------
207 // Class stdio_ostreambuf
209 stdio_ostreambuf::~stdio_ostreambuf() {}
211 _STLP_EXP_DECLSPEC streamsize stdio_ostreambuf::showmanyc()
216 stdio_ostreambuf::int_type stdio_ostreambuf::overflow(int_type c)
218 // Write the existing buffer, without writing any additional character.
219 if (c == traits_type::eof()) {
220 // Do we have a buffer to write?
221 ptrdiff_t unwritten = this->pptr() - this->pbase();
222 if (unwritten != 0) {
223 _STLP_VENDOR_CSTD::fflush(_M_file);
224 // Test if the write succeeded.
225 if (this->pptr() - this->pbase() < unwritten)
226 return traits_type::not_eof(c);
228 return traits_type::eof();
231 // We always succeed if we don't have to do anything.
233 return traits_type::not_eof(c);
236 // Write the character c, and whatever else might be in the buffer.
238 int result = putc(c, _M_file);
239 return result != EOF ? result : traits_type::eof();