ReactOS 0.4.15-dev-7931-gfd331f1
stdio_streambuf.cpp
Go to the documentation of this file.
1/*
2 * Copyright (c) 1999
3 * Silicon Graphics Computer Systems, Inc.
4 *
5 * Copyright (c) 1999
6 * Boris Fomitchev
7 *
8 * This material is provided "as is", with absolutely no warranty expressed
9 * or implied. Any use is at your own risk.
10 *
11 * Permission to use or copy this software for any purpose is hereby granted
12 * without fee, provided the above notices are retained on all copies.
13 * Permission to modify the code and to distribute modified code is granted,
14 * provided the above notices are retained, and a notice that the code was
15 * modified is included with the above copyright notice.
16 *
17 */
18
19#include "stlport_prefix.h"
20#include "stdio_streambuf.h"
21
22#ifdef _STLP_UNIX
23# include <sys/types.h>
24# include <sys/stat.h>
25#endif
26
27#include <fstream>
28#include <limits>
29
32
33// Compare with streamoff definition in stl/char_traits.h!
34
35#if defined (_STLP_USE_DEFAULT_FILE_OFFSET) || \
36 (!defined(_LARGEFILE_SOURCE) && !defined(_LARGEFILE64_SOURCE))
37# if !defined (_STLP_MSVC) || (_STLP_MSVC < 1400) || defined(_STLP_WCE) || defined(__REACTOS__)
38# define FSEEK fseek
39# else
40# define FSEEK _fseeki64
41# endif
42# define FSETPOS fsetpos
43# define FGETPOS fgetpos
44# define FPOS_T fpos_t
45#else
46# define FSEEK fseeko64
47# define FSETPOS fsetpos64
48# define FGETPOS fgetpos64
49# define FPOS_T fpos64_t
50#endif
51
52//----------------------------------------------------------------------
53// Class stdio_streambuf_base
54
56 : /* _STLP_STD::FILE_basic_streambuf(file, 0), */
57 _M_file(file)
58{}
59
61 _STLP_VENDOR_CSTD::fflush(_M_file);
62}
63
64_STLP_STD::streambuf* stdio_streambuf_base::setbuf(char* s, streamsize n) {
65#ifdef _STLP_WCE
66 // no buffering in windows ce .NET
67#else
68 size_t __n_size_t = (sizeof(streamsize) > sizeof(size_t)) ? __STATIC_CAST(size_t, (min)(__STATIC_CAST(streamsize, (numeric_limits<size_t>::max)()), n))
69 : __STATIC_CAST(size_t, n);
70 _STLP_VENDOR_CSTD::setvbuf(_M_file, s, (s == 0 && n == 0) ? _IONBF : _IOFBF, __n_size_t);
71#endif
72 return this;
73}
74
77 ios_base::openmode /* mode */) {
78 int whence;
79 switch (dir) {
80 case ios_base::beg:
81 whence = SEEK_SET;
82 break;
83 case ios_base::cur:
84 whence = SEEK_CUR;
85 break;
86 case ios_base::end:
87 whence = SEEK_END;
88 break;
89 default:
90 return pos_type(-1);
91 }
92
93 if (off <= numeric_limits<off_type>::max() && FSEEK(_M_file, off, whence) == 0) {
94 FPOS_T pos;
96 // added 21 june 00 mdb,rjf,wjs: glibc 2.2 changed fpos_t to be a struct instead
97 // of a primitive type
98#if (defined (__GLIBC__) && ((__GLIBC__ > 2) || ((__GLIBC__ == 2) && (__GLIBC_MINOR__ >= 2))))
99 return pos_type((streamoff)pos.__pos);
100#elif defined (__ISCPP__) || defined (__MVS__) || defined (__OS400__)
101 return pos_type(pos.__fpos_elem[ 0 ]);
102#elif defined (__EMX__)
103 return pos_type((streamoff)pos._pos);
104#else
105 return pos_type(pos);
106#endif
107 }
108 else
109 return pos_type(-1);
110}
111
112
115 // added 21 june 00 mdb,rjf,wjs: glibc 2.2 changed fpos_t to be a struct instead
116 // of a primitive type
117#if (defined(__GLIBC__) && ( (__GLIBC__ > 2) || ( (__GLIBC__ == 2) && (__GLIBC_MINOR__ >= 2) ) ) )
118 FPOS_T p;
119 p.__pos = pos;
120# ifdef _STLP_USE_UCLIBC
121# ifdef __STDIO_MBSTATE
122 memset( &(p.__mbstate), 0, sizeof(p.__mbstate) );
123# endif
124# ifdef __STDIO_WIDE
125 p.mblen_pending = 0;
126# endif
127# else
128 memset( &(p.__state), 0, sizeof(p.__state) );
129# endif
130#elif defined (__MVS__) || defined (__OS400__)
131 FPOS_T p;
132 p.__fpos_elem[0] = pos;
133#elif defined (__EMX__)
134 FPOS_T p;
135 p._pos = pos;
136 memset( &(p._mbstate), 0, sizeof(p._mbstate) );
137#else
138 FPOS_T p(pos);
139#endif
140
141 return FSETPOS(_M_file, &p) == 0 ? pos : pos_type(-1);
142}
143
145 return _STLP_VENDOR_CSTD::fflush(_M_file) == 0 ? 0 : -1;
146}
147
148//----------------------------------------------------------------------
149// Class stdio_istreambuf
150
152
154{ return 0; }
155
157{
158#ifdef _STLP_WCE
159 int c = fgetc(_M_file);
160#else
161 int c = getc(_M_file);
162#endif
163 if (c != EOF) {
164 _STLP_VENDOR_CSTD::ungetc(c, _M_file);
165 return c;
166 }
167 else
168 return traits_type::eof();
169}
170
172#ifdef _STLP_WCE
173 int c = fgetc(_M_file);
174#else
175 int c = getc(_M_file);
176#endif
177 return c != EOF ? c : traits_type::eof();
178}
179
181 if (c != traits_type::eof()) {
182 int result = _STLP_VENDOR_CSTD::ungetc(c, _M_file);
183 return result != EOF ? result : traits_type::eof();
184 }
185 else{
186 if (this->eback() < this->gptr()) {
187 this->gbump(-1);
188 return traits_type::not_eof(c);
189 }
190 else
191 return traits_type::eof();
192 }
193}
194
195//----------------------------------------------------------------------
196// Class stdio_ostreambuf
197
199
201{ return -1; }
202
204 // Write the existing buffer, without writing any additional character.
205 if (c == traits_type::eof()) {
206 // Do we have a buffer to write?
207 ptrdiff_t unwritten = this->pptr() - this->pbase();
208 if (unwritten != 0) {
209 _STLP_VENDOR_CSTD::fflush(_M_file);
210 // Test if the write succeeded.
211 if (this->pptr() - this->pbase() < unwritten)
212 return traits_type::not_eof(c);
213 else
214 return traits_type::eof();
215 }
216
217 // We always succeed if we don't have to do anything.
218 else
219 return traits_type::not_eof(c);
220 }
221
222 // Write the character c, and whatever else might be in the buffer.
223 else {
224#ifdef _STLP_WCE
225 int result = fputc(c, _M_file);
226#else
227 int result = putc(c, _M_file);
228#endif
229 return result != EOF ? result : traits_type::eof();
230 }
231}
232
235
236// Local Variables:
237// mode:C++
238// End:
239
unsigned int dir
Definition: maze.c:112
#define SEEK_END
Definition: cabinet.c:29
off_t streamoff
Definition: char_traits.h:74
ptrdiff_t streamsize
Definition: char_traits.h:81
static int_type _STLP_CALL not_eof(const int_type &__c)
Definition: char_traits.h:181
static int_type _STLP_CALL eof()
Definition: char_traits.h:193
int openmode
Definition: _ios_base.h:59
int seekdir
Definition: _ios_base.h:60
virtual int_type pbackfail(int_type c=traits_type::eof())
streamsize showmanyc()
streamsize showmanyc()
int_type overflow(int_type c=traits_type::eof())
streambuf * setbuf(char *, streamsize)
pos_type seekpos(pos_type, ios_base::openmode=ios_base::in|ios_base::out)
pos_type seekoff(off_type, ios_base::seekdir, ios_base::openmode=ios_base::in|ios_base::out)
__kernel_ptrdiff_t ptrdiff_t
Definition: linux.h:247
#define _STLP_MOVE_TO_STD_NAMESPACE
Definition: features.h:525
#define __STATIC_CAST(__x, __y)
Definition: features.h:585
#define _STLP_BEGIN_NAMESPACE
Definition: features.h:501
#define _STLP_END_NAMESPACE
Definition: features.h:503
#define _STLP_MOVE_TO_PRIV_NAMESPACE
Definition: features.h:524
#define FSEEK
GLdouble s
Definition: gl.h:2039
GLdouble n
Definition: glext.h:7729
const GLubyte * c
Definition: glext.h:8905
GLfloat GLfloat p
Definition: glext.h:8902
GLuint64EXT * result
Definition: glext.h:11304
_Check_return_opt_ _CRTIMP int __cdecl fgetc(_Inout_ FILE *_File)
_Check_return_ _CRTIMP int __cdecl getc(_Inout_ FILE *_File)
#define EOF
Definition: stdio.h:24
#define _IONBF
Definition: stdio.h:129
_Check_return_opt_ _CRTIMP int __cdecl putc(_In_ int _Ch, _Inout_ FILE *_File)
_Check_return_opt_ _CRTIMP int __cdecl fputc(_In_ int _Ch, _Inout_ FILE *_File)
#define _IOFBF
Definition: stdio.h:127
#define SEEK_SET
Definition: jmemansi.c:26
#define c
Definition: ke_i.h:80
#define SEEK_CUR
Definition: util.h:63
#define min(a, b)
Definition: monoChain.cc:55
#define memset(x, y, z)
Definition: compat.h:39
#define FSETPOS
#define FGETPOS
#define FPOS_T
Definition: fci.c:127