2002-01-28 Phil Edwards <pme@gcc.gnu.org>
[official-gcc.git] / libstdc++-v3 / include / std / std_istream.h
blobd2228fa6f267c7efdcf938cdaa4d381a657b68a7
1 // Input streams -*- C++ -*-
3 // Copyright (C) 1997, 1998, 1999, 2001, 2002 Free Software Foundation, Inc.
4 //
5 // This file is part of the GNU ISO C++ Library. This library is free
6 // software; you can redistribute it and/or modify it under the
7 // terms of the GNU General Public License as published by the
8 // Free Software Foundation; either version 2, or (at your option)
9 // any later version.
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License along
17 // with this library; see the file COPYING. If not, write to the Free
18 // Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
19 // USA.
21 // As a special exception, you may use this file as part of a free software
22 // library without restriction. Specifically, if other files instantiate
23 // templates or use macros or inline functions from this file, or you compile
24 // this file and link it with other files to produce an executable, this
25 // file does not by itself cause the resulting executable to be covered by
26 // the GNU General Public License. This exception does not however
27 // invalidate any other reasons why the executable file might be covered by
28 // the GNU General Public License.
31 // ISO C++ 14882: 27.6.1 Input streams
34 /** @file istream
35 * This is a Standard C++ Library header. You should @c #include this header
36 * in your programs, rather than any of the "st[dl]_*.h" implementation files.
39 #ifndef _CPP_ISTREAM
40 #define _CPP_ISTREAM 1
42 #pragma GCC system_header
44 #include <ios>
45 #include <limits> // For numeric_limits
47 namespace std
49 // 27.6.1.1 Template class basic_istream
50 template<typename _CharT, typename _Traits>
51 class basic_istream : virtual public basic_ios<_CharT, _Traits>
53 public:
54 // Types (inherited from basic_ios (27.4.4)):
55 typedef _CharT char_type;
56 typedef typename _Traits::int_type int_type;
57 typedef typename _Traits::pos_type pos_type;
58 typedef typename _Traits::off_type off_type;
59 typedef _Traits traits_type;
61 // Non-standard Types:
62 typedef basic_streambuf<_CharT, _Traits> __streambuf_type;
63 typedef basic_ios<_CharT, _Traits> __ios_type;
64 typedef basic_istream<_CharT, _Traits> __istream_type;
65 typedef istreambuf_iterator<_CharT, _Traits> __istreambuf_iter;
66 typedef num_get<_CharT, __istreambuf_iter> __numget_type;
67 typedef ctype<_CharT> __ctype_type;
69 protected:
70 // Data Members:
71 streamsize _M_gcount;
73 public:
74 // 27.6.1.1.1 Constructor/destructor:
75 explicit
76 basic_istream(__streambuf_type* __sb)
78 this->init(__sb);
79 _M_gcount = streamsize(0);
82 virtual
83 ~basic_istream()
84 { _M_gcount = streamsize(0); }
86 // 27.6.1.1.2 Prefix/suffix:
87 class sentry;
88 friend class sentry;
90 // 27.6.1.2 Formatted input:
91 // 27.6.1.2.3 basic_istream::operator>>
92 __istream_type&
93 operator>>(__istream_type& (*__pf)(__istream_type&));
95 __istream_type&
96 operator>>(__ios_type& (*__pf)(__ios_type&));
98 __istream_type&
99 operator>>(ios_base& (*__pf)(ios_base&));
101 // 27.6.1.2.2 Arithmetic Extractors
102 __istream_type&
103 operator>>(bool& __n);
105 __istream_type&
106 operator>>(short& __n);
108 __istream_type&
109 operator>>(unsigned short& __n);
111 __istream_type&
112 operator>>(int& __n);
114 __istream_type&
115 operator>>(unsigned int& __n);
117 __istream_type&
118 operator>>(long& __n);
120 __istream_type&
121 operator>>(unsigned long& __n);
123 #ifdef _GLIBCPP_USE_LONG_LONG
124 __istream_type&
125 operator>>(long long& __n);
127 __istream_type&
128 operator>>(unsigned long long& __n);
129 #endif
131 __istream_type&
132 operator>>(float& __f);
134 __istream_type&
135 operator>>(double& __f);
137 __istream_type&
138 operator>>(long double& __f);
140 __istream_type&
141 operator>>(void*& __p);
143 __istream_type&
144 operator>>(__streambuf_type* __sb);
146 // 27.6.1.3 Unformatted input:
147 inline streamsize
148 gcount(void) const
149 { return _M_gcount; }
151 int_type
152 get(void);
154 __istream_type&
155 get(char_type& __c);
157 __istream_type&
158 get(char_type* __s, streamsize __n, char_type __delim);
160 inline __istream_type&
161 get(char_type* __s, streamsize __n)
162 { return this->get(__s, __n, this->widen('\n')); }
164 __istream_type&
165 get(__streambuf_type& __sb, char_type __delim);
167 inline __istream_type&
168 get(__streambuf_type& __sb)
169 { return this->get(__sb, this->widen('\n')); }
171 __istream_type&
172 getline(char_type* __s, streamsize __n, char_type __delim);
174 inline __istream_type&
175 getline(char_type* __s, streamsize __n)
176 { return this->getline(__s, __n, this->widen('\n')); }
178 __istream_type&
179 ignore(streamsize __n = 1, int_type __delim = traits_type::eof());
181 int_type
182 peek(void);
184 __istream_type&
185 read(char_type* __s, streamsize __n);
187 streamsize
188 readsome(char_type* __s, streamsize __n);
190 __istream_type&
191 putback(char_type __c);
193 __istream_type&
194 unget(void);
196 int
197 sync(void);
199 pos_type
200 tellg(void);
202 __istream_type&
203 seekg(pos_type);
205 __istream_type&
206 seekg(off_type, ios_base::seekdir);
208 private:
209 #ifdef _GLIBCPP_RESOLVE_LIB_DEFECTS
210 // Not defined. (Side effect of DR 50.)
211 __istream_type&
212 operator=(const __istream_type&);
214 basic_istream(const __istream_type&);
215 #endif
218 template<typename _CharT, typename _Traits>
219 class basic_istream<_CharT, _Traits>::sentry
221 public:
222 typedef _Traits traits_type;
223 typedef basic_streambuf<_CharT, _Traits> __streambuf_type;
224 typedef basic_istream<_CharT, _Traits> __istream_type;
225 typedef typename __istream_type::__ctype_type __ctype_type;
226 typedef typename _Traits::int_type __int_type;
228 explicit
229 sentry(basic_istream<_CharT, _Traits>& __is, bool __noskipws = false);
231 operator bool() { return _M_ok; }
233 private:
234 bool _M_ok;
237 // 27.6.1.2.3 Character extraction templates
238 template<typename _CharT, typename _Traits>
239 basic_istream<_CharT, _Traits>&
240 operator>>(basic_istream<_CharT, _Traits>& __in, _CharT& __c);
242 template<class _Traits>
243 basic_istream<char, _Traits>&
244 operator>>(basic_istream<char, _Traits>& __in, unsigned char& __c)
245 { return (__in >> reinterpret_cast<char&>(__c)); }
247 template<class _Traits>
248 basic_istream<char, _Traits>&
249 operator>>(basic_istream<char, _Traits>& __in, signed char& __c)
250 { return (__in >> reinterpret_cast<char&>(__c)); }
252 template<typename _CharT, typename _Traits>
253 basic_istream<_CharT, _Traits>&
254 operator>>(basic_istream<_CharT, _Traits>& __in, _CharT* __s);
256 template<class _Traits>
257 basic_istream<char,_Traits>&
258 operator>>(basic_istream<char,_Traits>& __in, unsigned char* __s)
259 { return (__in >> reinterpret_cast<char*>(__s)); }
261 template<class _Traits>
262 basic_istream<char,_Traits>&
263 operator>>(basic_istream<char,_Traits>& __in, signed char* __s)
264 { return (__in >> reinterpret_cast<char*>(__s)); }
266 // 27.6.1.5 Template class basic_iostream
267 template<typename _CharT, typename _Traits>
268 class basic_iostream
269 : public basic_istream<_CharT, _Traits>,
270 public basic_ostream<_CharT, _Traits>
272 public:
273 // Non-standard Types:
274 typedef basic_istream<_CharT, _Traits> __istream_type;
275 typedef basic_ostream<_CharT, _Traits> __ostream_type;
277 explicit
278 basic_iostream(basic_streambuf<_CharT, _Traits>* __sb)
279 : __istream_type(__sb), __ostream_type(__sb)
282 virtual
283 ~basic_iostream() { }
286 // 27.6.1.4 Standard basic_istream manipulators
287 template<typename _CharT, typename _Traits>
288 basic_istream<_CharT, _Traits>&
289 ws(basic_istream<_CharT, _Traits>& __is);
290 } // namespace std
292 #ifdef _GLIBCPP_NO_TEMPLATE_EXPORT
293 # define export
294 #ifdef _GLIBCPP_FULLY_COMPLIANT_HEADERS
295 # include <bits/istream.tcc>
296 #endif
297 #endif
299 #endif /* _CPP_ISTREAM */