sl@0
|
1 |
/*
|
sl@0
|
2 |
* © Portions copyright (c) 2006-2007 Nokia Corporation. All rights reserved.
|
sl@0
|
3 |
*
|
sl@0
|
4 |
* Copyright (c) 1999
|
sl@0
|
5 |
* Silicon Graphics Computer Systems, Inc.
|
sl@0
|
6 |
*
|
sl@0
|
7 |
* Copyright (c) 1999
|
sl@0
|
8 |
* Boris Fomitchev
|
sl@0
|
9 |
*
|
sl@0
|
10 |
* This material is provided "as is", with absolutely no warranty expressed
|
sl@0
|
11 |
* or implied. Any use is at your own risk.
|
sl@0
|
12 |
*
|
sl@0
|
13 |
* Permission to use or copy this software for any purpose is hereby granted
|
sl@0
|
14 |
* without fee, provided the above notices are retained on all copies.
|
sl@0
|
15 |
* Permission to modify the code and to distribute modified code is granted,
|
sl@0
|
16 |
* provided the above notices are retained, and a notice that the code was
|
sl@0
|
17 |
* modified is included with the above copyright notice.
|
sl@0
|
18 |
*
|
sl@0
|
19 |
*/
|
sl@0
|
20 |
# include "stlport_prefix.h"
|
sl@0
|
21 |
#include <stdio_streambuf>
|
sl@0
|
22 |
|
sl@0
|
23 |
#ifdef _STLP_UNIX
|
sl@0
|
24 |
#include <sys/types.h>
|
sl@0
|
25 |
#include <sys/stat.h>
|
sl@0
|
26 |
#endif /* __unix */
|
sl@0
|
27 |
|
sl@0
|
28 |
#include <stl/_fstream.h>
|
sl@0
|
29 |
#include "fstream_impl.h"
|
sl@0
|
30 |
|
sl@0
|
31 |
# if defined (_STLP_USE_WIN32_IO) && !defined(_STLP_WINCE)
|
sl@0
|
32 |
# if defined (__BORLANDC__)
|
sl@0
|
33 |
// # include <cio.h>
|
sl@0
|
34 |
# include <cfcntl.h>
|
sl@0
|
35 |
# else
|
sl@0
|
36 |
# include <io.h>
|
sl@0
|
37 |
# include <fcntl.h>
|
sl@0
|
38 |
# endif
|
sl@0
|
39 |
|
sl@0
|
40 |
# include <sys/stat.h>
|
sl@0
|
41 |
# endif
|
sl@0
|
42 |
|
sl@0
|
43 |
__SGI_BEGIN_NAMESPACE
|
sl@0
|
44 |
//----------------------------------------------------------------------
|
sl@0
|
45 |
// Class stdio_streambuf_base
|
sl@0
|
46 |
|
sl@0
|
47 |
stdio_streambuf_base::stdio_streambuf_base(FILE* file)
|
sl@0
|
48 |
: _STLP_STD::basic_streambuf<char, _STLP_STD::char_traits<char> >(file, 0),
|
sl@0
|
49 |
_M_file(file)
|
sl@0
|
50 |
{}
|
sl@0
|
51 |
|
sl@0
|
52 |
stdio_streambuf_base::~stdio_streambuf_base()
|
sl@0
|
53 |
{
|
sl@0
|
54 |
_STLP_VENDOR_CSTD::fflush(_M_file);
|
sl@0
|
55 |
}
|
sl@0
|
56 |
|
sl@0
|
57 |
_STLP_STD::streambuf* stdio_streambuf_base::setbuf(char* s, streamsize n)
|
sl@0
|
58 |
{
|
sl@0
|
59 |
_STLP_VENDOR_CSTD::setvbuf(_M_file, s, (s == 0 && n == 0) ? _IONBF : _IOFBF, n);
|
sl@0
|
60 |
return this;
|
sl@0
|
61 |
}
|
sl@0
|
62 |
|
sl@0
|
63 |
stdio_streambuf_base::pos_type
|
sl@0
|
64 |
stdio_streambuf_base::seekoff(off_type off, ios_base::seekdir dir,
|
sl@0
|
65 |
ios_base::openmode /* mode */)
|
sl@0
|
66 |
{
|
sl@0
|
67 |
int whence;
|
sl@0
|
68 |
switch(dir) {
|
sl@0
|
69 |
case ios_base::beg:
|
sl@0
|
70 |
whence = SEEK_SET;
|
sl@0
|
71 |
break;
|
sl@0
|
72 |
case ios_base::cur:
|
sl@0
|
73 |
whence = SEEK_CUR;
|
sl@0
|
74 |
break;
|
sl@0
|
75 |
case ios_base::end:
|
sl@0
|
76 |
whence = SEEK_END;
|
sl@0
|
77 |
break;
|
sl@0
|
78 |
default:
|
sl@0
|
79 |
return pos_type(-1);
|
sl@0
|
80 |
}
|
sl@0
|
81 |
|
sl@0
|
82 |
if (_STLP_VENDOR_CSTD::fseek(_M_file, off, whence) == 0) {
|
sl@0
|
83 |
fpos_t pos;
|
sl@0
|
84 |
_STLP_VENDOR_CSTD::fgetpos(_M_file, &pos);
|
sl@0
|
85 |
// added 21 june 00 mdb,rjf,wjs: glibc 2.2 changed fpos_t to be a struct instead
|
sl@0
|
86 |
// of a primitive type
|
sl@0
|
87 |
#if (defined(__GLIBC__) && ( (__GLIBC__ > 2) || ( (__GLIBC__ == 2) && (__GLIBC_MINOR__ >= 2) ) ) )
|
sl@0
|
88 |
return pos_type((streamoff)pos.__pos);
|
sl@0
|
89 |
#elif defined(__ISCPP__) || defined(__MVS__) || (__OS400__)
|
sl@0
|
90 |
return pos_type(pos.__fpos_elem[ 0 ]);
|
sl@0
|
91 |
#elif defined (__EMX__)
|
sl@0
|
92 |
return pos_type((streamoff)pos._pos);
|
sl@0
|
93 |
#else
|
sl@0
|
94 |
return pos_type(pos);
|
sl@0
|
95 |
#endif
|
sl@0
|
96 |
}
|
sl@0
|
97 |
else
|
sl@0
|
98 |
return pos_type(-1);
|
sl@0
|
99 |
}
|
sl@0
|
100 |
|
sl@0
|
101 |
|
sl@0
|
102 |
stdio_streambuf_base::pos_type
|
sl@0
|
103 |
stdio_streambuf_base::seekpos(pos_type pos, ios_base::openmode /* mode */) // dwa 4/27/00 - suppress unused parameter warning
|
sl@0
|
104 |
{
|
sl@0
|
105 |
|
sl@0
|
106 |
// added 21 june 00 mdb,rjf,wjs: glibc 2.2 changed fpos_t to be a struct instead
|
sl@0
|
107 |
// of a primitive type
|
sl@0
|
108 |
#if (defined(__GLIBC__) && ( (__GLIBC__ > 2) || ( (__GLIBC__ == 2) && (__GLIBC_MINOR__ >= 2) ) ) )
|
sl@0
|
109 |
fpos_t p;
|
sl@0
|
110 |
p.__pos = pos;
|
sl@0
|
111 |
memset( &(p.__state), 0, sizeof(p.__state) );
|
sl@0
|
112 |
#elif defined(__MVS__) || (__OS400__)
|
sl@0
|
113 |
fpos_t p;
|
sl@0
|
114 |
p.__fpos_elem[0] = pos;
|
sl@0
|
115 |
#elif defined(__EMX__)
|
sl@0
|
116 |
fpos_t p;
|
sl@0
|
117 |
p._pos = pos;
|
sl@0
|
118 |
memset( &(p._mbstate), 0, sizeof(p._mbstate) );
|
sl@0
|
119 |
#else
|
sl@0
|
120 |
fpos_t p(pos);
|
sl@0
|
121 |
#endif
|
sl@0
|
122 |
|
sl@0
|
123 |
if (_STLP_VENDOR_CSTD::fsetpos(_M_file, &p) == 0)
|
sl@0
|
124 |
return pos;
|
sl@0
|
125 |
else
|
sl@0
|
126 |
return pos_type(-1);
|
sl@0
|
127 |
}
|
sl@0
|
128 |
|
sl@0
|
129 |
int stdio_streambuf_base::sync()
|
sl@0
|
130 |
{
|
sl@0
|
131 |
return _STLP_VENDOR_CSTD::fflush(_M_file) == 0 ? 0 : -1;
|
sl@0
|
132 |
}
|
sl@0
|
133 |
|
sl@0
|
134 |
//----------------------------------------------------------------------
|
sl@0
|
135 |
// Class stdio_istreambuf
|
sl@0
|
136 |
|
sl@0
|
137 |
stdio_istreambuf::~stdio_istreambuf() {}
|
sl@0
|
138 |
|
sl@0
|
139 |
_STLP_EXP_DECLSPEC streamsize stdio_istreambuf::showmanyc()
|
sl@0
|
140 |
{
|
sl@0
|
141 |
if (feof(_M_file))
|
sl@0
|
142 |
return -1;
|
sl@0
|
143 |
else {
|
sl@0
|
144 |
int fd = _FILE_fd(_M_file);
|
sl@0
|
145 |
# ifdef _STLP_USE_WIN32_IO
|
sl@0
|
146 |
// in this case, __file_size works with Win32 fh , not libc one
|
sl@0
|
147 |
streamoff size;
|
sl@0
|
148 |
struct stat buf;
|
sl@0
|
149 |
# ifdef __BORLANDC__
|
sl@0
|
150 |
if(fstat(fd, &buf) == 0 && S_ISREG( buf.st_mode ) )
|
sl@0
|
151 |
# else
|
sl@0
|
152 |
if(fstat(fd, &buf) == 0 && ( _S_IFREG & buf.st_mode ) )
|
sl@0
|
153 |
# endif
|
sl@0
|
154 |
size = ( buf.st_size > 0 ? buf.st_size : 0);
|
sl@0
|
155 |
else
|
sl@0
|
156 |
size = 0;
|
sl@0
|
157 |
# else
|
sl@0
|
158 |
streamoff size = _SgI::__file_size(fd);
|
sl@0
|
159 |
# endif
|
sl@0
|
160 |
// fbp : we can use ftell as this flavour always use stdio.
|
sl@0
|
161 |
long pos = _STLP_VENDOR_CSTD::ftell(_M_file);
|
sl@0
|
162 |
return pos >= 0 && size > pos ? size - pos : 0;
|
sl@0
|
163 |
}
|
sl@0
|
164 |
}
|
sl@0
|
165 |
|
sl@0
|
166 |
stdio_istreambuf::int_type stdio_istreambuf::underflow()
|
sl@0
|
167 |
{
|
sl@0
|
168 |
int c = getc(_M_file);
|
sl@0
|
169 |
if (c != EOF) {
|
sl@0
|
170 |
_STLP_VENDOR_CSTD::ungetc(c, _M_file);
|
sl@0
|
171 |
return c;
|
sl@0
|
172 |
}
|
sl@0
|
173 |
else
|
sl@0
|
174 |
return traits_type::eof();
|
sl@0
|
175 |
}
|
sl@0
|
176 |
|
sl@0
|
177 |
stdio_istreambuf::int_type stdio_istreambuf::uflow()
|
sl@0
|
178 |
{
|
sl@0
|
179 |
#ifdef __SYMBIAN32__
|
sl@0
|
180 |
const int_type eof = traits_type::eof();
|
sl@0
|
181 |
return this->underflow() == eof
|
sl@0
|
182 |
? eof
|
sl@0
|
183 |
: traits_type::to_int_type(_FILE_I_postincr(_M_file));
|
sl@0
|
184 |
#else
|
sl@0
|
185 |
int c = getc(_M_file);
|
sl@0
|
186 |
return c != EOF ? c : traits_type::eof();
|
sl@0
|
187 |
#endif
|
sl@0
|
188 |
}
|
sl@0
|
189 |
|
sl@0
|
190 |
stdio_istreambuf::int_type stdio_istreambuf::pbackfail(int_type c)
|
sl@0
|
191 |
{
|
sl@0
|
192 |
if (c != traits_type::eof()) {
|
sl@0
|
193 |
int result = _STLP_VENDOR_CSTD::ungetc(c, _M_file);
|
sl@0
|
194 |
return result != EOF ? result : traits_type::eof();
|
sl@0
|
195 |
}
|
sl@0
|
196 |
else{
|
sl@0
|
197 |
if (this->eback() < this->gptr()) {
|
sl@0
|
198 |
this->gbump(-1);
|
sl@0
|
199 |
return traits_type::not_eof(c);
|
sl@0
|
200 |
}
|
sl@0
|
201 |
else
|
sl@0
|
202 |
return traits_type::eof();
|
sl@0
|
203 |
}
|
sl@0
|
204 |
}
|
sl@0
|
205 |
|
sl@0
|
206 |
//----------------------------------------------------------------------
|
sl@0
|
207 |
// Class stdio_ostreambuf
|
sl@0
|
208 |
|
sl@0
|
209 |
stdio_ostreambuf::~stdio_ostreambuf() {}
|
sl@0
|
210 |
|
sl@0
|
211 |
_STLP_EXP_DECLSPEC streamsize stdio_ostreambuf::showmanyc()
|
sl@0
|
212 |
{
|
sl@0
|
213 |
return -1;
|
sl@0
|
214 |
}
|
sl@0
|
215 |
|
sl@0
|
216 |
stdio_ostreambuf::int_type stdio_ostreambuf::overflow(int_type c)
|
sl@0
|
217 |
{
|
sl@0
|
218 |
// Write the existing buffer, without writing any additional character.
|
sl@0
|
219 |
if (c == traits_type::eof()) {
|
sl@0
|
220 |
// Do we have a buffer to write?
|
sl@0
|
221 |
ptrdiff_t unwritten = this->pptr() - this->pbase();
|
sl@0
|
222 |
if (unwritten != 0) {
|
sl@0
|
223 |
_STLP_VENDOR_CSTD::fflush(_M_file);
|
sl@0
|
224 |
// Test if the write succeeded.
|
sl@0
|
225 |
if (this->pptr() - this->pbase() < unwritten)
|
sl@0
|
226 |
return traits_type::not_eof(c);
|
sl@0
|
227 |
else
|
sl@0
|
228 |
return traits_type::eof();
|
sl@0
|
229 |
}
|
sl@0
|
230 |
|
sl@0
|
231 |
// We always succeed if we don't have to do anything.
|
sl@0
|
232 |
else
|
sl@0
|
233 |
return traits_type::not_eof(c);
|
sl@0
|
234 |
}
|
sl@0
|
235 |
|
sl@0
|
236 |
// Write the character c, and whatever else might be in the buffer.
|
sl@0
|
237 |
else {
|
sl@0
|
238 |
int result = putc(c, _M_file);
|
sl@0
|
239 |
return result != EOF ? result : traits_type::eof();
|
sl@0
|
240 |
}
|
sl@0
|
241 |
}
|
sl@0
|
242 |
|
sl@0
|
243 |
__SGI_END_NAMESPACE
|
sl@0
|
244 |
|
sl@0
|
245 |
// Local Variables:
|
sl@0
|
246 |
// mode:C++
|
sl@0
|
247 |
// End:
|
sl@0
|
248 |
|