* config/frv/frv.h (ASM_OUTPUT_CASE_LABEL): Delete.
[official-gcc.git] / libstdc++-v3 / include / bits / streambuf_iterator.h
blob26cc00f8b2204935b4d457eba26ed84fb8814848
1 // Streambuf iterators
3 // Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006
4 // Free Software Foundation, Inc.
5 //
6 // This file is part of the GNU ISO C++ Library. This library is free
7 // software; you can redistribute it and/or modify it under the
8 // terms of the GNU General Public License as published by the
9 // Free Software Foundation; either version 2, or (at your option)
10 // any later version.
12 // This library is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 // GNU General Public License for more details.
17 // You should have received a copy of the GNU General Public License along
18 // with this library; see the file COPYING. If not, write to the Free
19 // Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
20 // USA.
22 // As a special exception, you may use this file as part of a free software
23 // library without restriction. Specifically, if other files instantiate
24 // templates or use macros or inline functions from this file, or you compile
25 // this file and link it with other files to produce an executable, this
26 // file does not by itself cause the resulting executable to be covered by
27 // the GNU General Public License. This exception does not however
28 // invalidate any other reasons why the executable file might be covered by
29 // the GNU General Public License.
31 /** @file streambuf_iterator.h
32 * This is an internal header file, included by other library headers.
33 * You should not attempt to use it directly.
36 #ifndef _STREAMBUF_ITERATOR_H
37 #define _STREAMBUF_ITERATOR_H 1
39 #pragma GCC system_header
41 #include <streambuf>
42 #include <debug/debug.h>
44 _GLIBCXX_BEGIN_NAMESPACE(std)
46 // 24.5.3 Template class istreambuf_iterator
47 /// Provides input iterator semantics for streambufs.
48 template<typename _CharT, typename _Traits>
49 class istreambuf_iterator
50 : public iterator<input_iterator_tag, _CharT, typename _Traits::off_type,
51 _CharT*, _CharT&>
53 public:
54 // Types:
55 //@{
56 /// Public typedefs
57 typedef _CharT char_type;
58 typedef _Traits traits_type;
59 typedef typename _Traits::int_type int_type;
60 typedef basic_streambuf<_CharT, _Traits> streambuf_type;
61 typedef basic_istream<_CharT, _Traits> istream_type;
62 //@}
64 template<typename _CharT2>
65 friend typename __gnu_cxx::__enable_if<__is_char<_CharT2>::__value,
66 ostreambuf_iterator<_CharT2> >::__type
67 copy(istreambuf_iterator<_CharT2>, istreambuf_iterator<_CharT2>,
68 ostreambuf_iterator<_CharT2>);
70 template<typename _CharT2>
71 friend typename __gnu_cxx::__enable_if<__is_char<_CharT2>::__value,
72 _CharT2*>::__type
73 __copy_aux(istreambuf_iterator<_CharT2>, istreambuf_iterator<_CharT2>,
74 _CharT2*);
76 template<typename _CharT2>
77 friend typename __gnu_cxx::__enable_if<__is_char<_CharT2>::__value,
78 istreambuf_iterator<_CharT2> >::__type
79 find(istreambuf_iterator<_CharT2>, istreambuf_iterator<_CharT2>,
80 const _CharT2&);
82 private:
83 // 24.5.3 istreambuf_iterator
84 // p 1
85 // If the end of stream is reached (streambuf_type::sgetc()
86 // returns traits_type::eof()), the iterator becomes equal to
87 // the "end of stream" iterator value.
88 // NB: This implementation assumes the "end of stream" value
89 // is EOF, or -1.
90 mutable streambuf_type* _M_sbuf;
91 mutable int_type _M_c;
93 public:
94 /// Construct end of input stream iterator.
95 istreambuf_iterator() throw()
96 : _M_sbuf(0), _M_c(traits_type::eof()) { }
98 /// Construct start of input stream iterator.
99 istreambuf_iterator(istream_type& __s) throw()
100 : _M_sbuf(__s.rdbuf()), _M_c(traits_type::eof()) { }
102 /// Construct start of streambuf iterator.
103 istreambuf_iterator(streambuf_type* __s) throw()
104 : _M_sbuf(__s), _M_c(traits_type::eof()) { }
106 /// Return the current character pointed to by iterator. This returns
107 /// streambuf.sgetc(). It cannot be assigned. NB: The result of
108 /// operator*() on an end of stream is undefined.
109 char_type
110 operator*() const
112 #ifdef _GLIBCXX_DEBUG_PEDANTIC
113 // Dereferencing a past-the-end istreambuf_iterator is a
114 // libstdc++ extension
115 __glibcxx_requires_cond(!_M_at_eof(),
116 _M_message(__gnu_debug::__msg_deref_istreambuf)
117 ._M_iterator(*this));
118 #endif
119 return traits_type::to_char_type(_M_get());
122 /// Advance the iterator. Calls streambuf.sbumpc().
123 istreambuf_iterator&
124 operator++()
126 __glibcxx_requires_cond(!_M_at_eof(),
127 _M_message(__gnu_debug::__msg_inc_istreambuf)
128 ._M_iterator(*this));
129 if (_M_sbuf)
131 _M_sbuf->sbumpc();
132 _M_c = traits_type::eof();
134 return *this;
137 /// Advance the iterator. Calls streambuf.sbumpc().
138 istreambuf_iterator
139 operator++(int)
141 __glibcxx_requires_cond(!_M_at_eof(),
142 _M_message(__gnu_debug::__msg_inc_istreambuf)
143 ._M_iterator(*this));
145 istreambuf_iterator __old = *this;
146 if (_M_sbuf)
148 __old._M_c = _M_sbuf->sbumpc();
149 _M_c = traits_type::eof();
151 return __old;
154 // _GLIBCXX_RESOLVE_LIB_DEFECTS
155 // 110 istreambuf_iterator::equal not const
156 // NB: there is also number 111 (NAD, Future) pending on this function.
157 /// Return true both iterators are end or both are not end.
158 bool
159 equal(const istreambuf_iterator& __b) const
160 { return _M_at_eof() == __b._M_at_eof(); }
162 private:
163 int_type
164 _M_get() const
166 const int_type __eof = traits_type::eof();
167 int_type __ret = __eof;
168 if (_M_sbuf)
170 if (!traits_type::eq_int_type(_M_c, __eof))
171 __ret = _M_c;
172 else if (!traits_type::eq_int_type((__ret = _M_sbuf->sgetc()),
173 __eof))
174 _M_c = __ret;
175 else
176 _M_sbuf = 0;
178 return __ret;
181 bool
182 _M_at_eof() const
184 const int_type __eof = traits_type::eof();
185 return traits_type::eq_int_type(_M_get(), __eof);
189 template<typename _CharT, typename _Traits>
190 inline bool
191 operator==(const istreambuf_iterator<_CharT, _Traits>& __a,
192 const istreambuf_iterator<_CharT, _Traits>& __b)
193 { return __a.equal(__b); }
195 template<typename _CharT, typename _Traits>
196 inline bool
197 operator!=(const istreambuf_iterator<_CharT, _Traits>& __a,
198 const istreambuf_iterator<_CharT, _Traits>& __b)
199 { return !__a.equal(__b); }
201 /// Provides output iterator semantics for streambufs.
202 template<typename _CharT, typename _Traits>
203 class ostreambuf_iterator
204 : public iterator<output_iterator_tag, void, void, void, void>
206 public:
207 // Types:
208 //@{
209 /// Public typedefs
210 typedef _CharT char_type;
211 typedef _Traits traits_type;
212 typedef basic_streambuf<_CharT, _Traits> streambuf_type;
213 typedef basic_ostream<_CharT, _Traits> ostream_type;
214 //@}
216 template<typename _CharT2>
217 friend typename __gnu_cxx::__enable_if<__is_char<_CharT2>::__value,
218 ostreambuf_iterator<_CharT2> >::__type
219 copy(istreambuf_iterator<_CharT2>, istreambuf_iterator<_CharT2>,
220 ostreambuf_iterator<_CharT2>);
222 private:
223 streambuf_type* _M_sbuf;
224 bool _M_failed;
226 public:
227 /// Construct output iterator from ostream.
228 ostreambuf_iterator(ostream_type& __s) throw ()
229 : _M_sbuf(__s.rdbuf()), _M_failed(!_M_sbuf) { }
231 /// Construct output iterator from streambuf.
232 ostreambuf_iterator(streambuf_type* __s) throw ()
233 : _M_sbuf(__s), _M_failed(!_M_sbuf) { }
235 /// Write character to streambuf. Calls streambuf.sputc().
236 ostreambuf_iterator&
237 operator=(_CharT __c)
239 if (!_M_failed &&
240 _Traits::eq_int_type(_M_sbuf->sputc(__c), _Traits::eof()))
241 _M_failed = true;
242 return *this;
245 /// Return *this.
246 ostreambuf_iterator&
247 operator*()
248 { return *this; }
250 /// Return *this.
251 ostreambuf_iterator&
252 operator++(int)
253 { return *this; }
255 /// Return *this.
256 ostreambuf_iterator&
257 operator++()
258 { return *this; }
260 /// Return true if previous operator=() failed.
261 bool
262 failed() const throw()
263 { return _M_failed; }
265 ostreambuf_iterator&
266 _M_put(const _CharT* __ws, streamsize __len)
268 if (__builtin_expect(!_M_failed, true)
269 && __builtin_expect(this->_M_sbuf->sputn(__ws, __len) != __len,
270 false))
271 _M_failed = true;
272 return *this;
276 // Overloads for streambuf iterators.
277 template<typename _CharT>
278 typename __gnu_cxx::__enable_if<__is_char<_CharT>::__value,
279 ostreambuf_iterator<_CharT> >::__type
280 copy(istreambuf_iterator<_CharT> __first,
281 istreambuf_iterator<_CharT> __last,
282 ostreambuf_iterator<_CharT> __result)
284 if (__first._M_sbuf && !__last._M_sbuf && !__result._M_failed)
286 bool __ineof;
287 __copy_streambufs_eof(__first._M_sbuf, __result._M_sbuf, __ineof);
288 if (!__ineof)
289 __result._M_failed = true;
291 return __result;
294 template<typename _CharT>
295 typename __gnu_cxx::__enable_if<__is_char<_CharT>::__value,
296 ostreambuf_iterator<_CharT> >::__type
297 __copy_aux(_CharT* __first, _CharT* __last,
298 ostreambuf_iterator<_CharT> __result)
300 const streamsize __num = __last - __first;
301 if (__num > 0)
302 __result._M_put(__first, __num);
303 return __result;
306 template<typename _CharT>
307 typename __gnu_cxx::__enable_if<__is_char<_CharT>::__value,
308 ostreambuf_iterator<_CharT> >::__type
309 __copy_aux(const _CharT* __first, const _CharT* __last,
310 ostreambuf_iterator<_CharT> __result)
312 const streamsize __num = __last - __first;
313 if (__num > 0)
314 __result._M_put(__first, __num);
315 return __result;
318 template<typename _CharT>
319 typename __gnu_cxx::__enable_if<__is_char<_CharT>::__value,
320 _CharT*>::__type
321 __copy_aux(istreambuf_iterator<_CharT> __first,
322 istreambuf_iterator<_CharT> __last, _CharT* __result)
324 typedef istreambuf_iterator<_CharT> __is_iterator_type;
325 typedef typename __is_iterator_type::traits_type traits_type;
326 typedef typename __is_iterator_type::streambuf_type streambuf_type;
327 typedef typename traits_type::int_type int_type;
329 if (__first._M_sbuf && !__last._M_sbuf)
331 streambuf_type* __sb = __first._M_sbuf;
332 int_type __c = __sb->sgetc();
333 while (!traits_type::eq_int_type(__c, traits_type::eof()))
335 const streamsize __n = __sb->egptr() - __sb->gptr();
336 if (__n > 1)
338 traits_type::copy(__result, __sb->gptr(), __n);
339 __sb->gbump(__n);
340 __result += __n;
341 __c = __sb->underflow();
343 else
345 *__result++ = traits_type::to_char_type(__c);
346 __c = __sb->snextc();
350 return __result;
353 template<typename _CharT>
354 typename __gnu_cxx::__enable_if<__is_char<_CharT>::__value,
355 istreambuf_iterator<_CharT> >::__type
356 find(istreambuf_iterator<_CharT> __first,
357 istreambuf_iterator<_CharT> __last, const _CharT& __val)
359 typedef istreambuf_iterator<_CharT> __is_iterator_type;
360 typedef typename __is_iterator_type::traits_type traits_type;
361 typedef typename __is_iterator_type::streambuf_type streambuf_type;
362 typedef typename traits_type::int_type int_type;
364 if (__first._M_sbuf && !__last._M_sbuf)
366 const int_type __ival = traits_type::to_int_type(__val);
367 streambuf_type* __sb = __first._M_sbuf;
368 int_type __c = __sb->sgetc();
369 while (!traits_type::eq_int_type(__c, traits_type::eof())
370 && !traits_type::eq_int_type(__c, __ival))
372 streamsize __n = __sb->egptr() - __sb->gptr();
373 if (__n > 1)
375 const _CharT* __p = traits_type::find(__sb->gptr(),
376 __n, __val);
377 if (__p)
378 __n = __p - __sb->gptr();
379 __sb->gbump(__n);
380 __c = __sb->sgetc();
382 else
383 __c = __sb->snextc();
386 if (!traits_type::eq_int_type(__c, traits_type::eof()))
387 __first._M_c = __c;
388 else
389 __first._M_sbuf = 0;
391 return __first;
394 _GLIBCXX_END_NAMESPACE
396 #endif