]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/include/bits/streambuf_iterator.h
* arm.md (addsf3, adddf3, subsf3, subdf3, mulsf3, muldf3, negsf2)
[thirdparty/gcc.git] / libstdc++-v3 / include / bits / streambuf_iterator.h
CommitLineData
725dc051
BK
1// Streambuf iterators
2
2e2a38cd 3// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003
5c352a47 4// Free Software Foundation, Inc.
725dc051
BK
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.
11
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.
16
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, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
20// USA.
21
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.
30
729e3d3f
PE
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.
34 */
35
d27bba5e
BK
36#ifndef _CPP_BITS_STREAMBUF_ITERATOR_H
37#define _CPP_BITS_STREAMBUF_ITERATOR_H 1
725dc051 38
b0a85b86
GDR
39#pragma GCC system_header
40
2e2a38cd
BK
41#include <streambuf>
42
43// NB: Should specialize copy, find algorithms for streambuf iterators.
44
725dc051
BK
45namespace std
46{
725dc051 47 // 24.5.3 Template class istreambuf_iterator
39003c99 48 template<typename _CharT, typename _Traits>
725dc051
BK
49 class istreambuf_iterator
50 : public iterator<input_iterator_tag, _CharT, typename _Traits::off_type,
51 _CharT*, _CharT&>
52 {
53 public:
725dc051
BK
54 // Types:
55 typedef _CharT char_type;
56 typedef _Traits traits_type;
57 typedef typename _Traits::int_type int_type;
58 typedef basic_streambuf<_CharT, _Traits> streambuf_type;
59 typedef basic_istream<_CharT, _Traits> istream_type;
725dc051 60
39003c99
BK
61 private:
62 // 24.5.3 istreambuf_iterator
63 // p 1
64 // If the end of stream is reached (streambuf_type::sgetc()
65 // returns traits_type::eof()), the iterator becomes equal to
66 // the "end of stream" iterator value.
67 // NB: This implementation assumes the "end of stream" value
68 // is EOF, or -1.
5c352a47 69 mutable streambuf_type* _M_sbuf;
39003c99
BK
70 int_type _M_c;
71
72 public:
725dc051 73 istreambuf_iterator() throw()
f13a69ec 74 : _M_sbuf(0), _M_c(traits_type::eof()) { }
725dc051
BK
75
76 istreambuf_iterator(istream_type& __s) throw()
f13a69ec 77 : _M_sbuf(__s.rdbuf()), _M_c(traits_type::eof()) { }
725dc051
BK
78
79 istreambuf_iterator(streambuf_type* __s) throw()
f13a69ec 80 : _M_sbuf(__s), _M_c(traits_type::eof()) { }
725dc051 81
9875ea05 82 // NB: The result of operator*() on an end of stream is undefined.
725dc051
BK
83 char_type
84 operator*() const
9875ea05 85 { return traits_type::to_char_type(_M_get()); }
725dc051 86
b581eaf7 87 istreambuf_iterator&
725dc051
BK
88 operator++()
89 {
f13a69ec
BK
90 const int_type __eof = traits_type::eof();
91 if (_M_sbuf && traits_type::eq_int_type(_M_sbuf->sbumpc(), __eof))
5c352a47
BK
92 _M_sbuf = 0;
93 else
f13a69ec 94 _M_c = __eof;
725dc051
BK
95 return *this;
96 }
97
b581eaf7 98 istreambuf_iterator
725dc051
BK
99 operator++(int)
100 {
f13a69ec 101 const int_type __eof = traits_type::eof();
b581eaf7 102 istreambuf_iterator __old = *this;
f13a69ec
BK
103 if (_M_sbuf
104 && traits_type::eq_int_type((__old._M_c = _M_sbuf->sbumpc()),
105 __eof))
5c352a47
BK
106 _M_sbuf = 0;
107 else
f13a69ec 108 _M_c = __eof;
a85afd69 109 return __old;
725dc051 110 }
725dc051 111
725dc051
BK
112#ifdef _GLIBCPP_RESOLVE_LIB_DEFECTS
113 // 110 istreambuf_iterator::equal not const
77cd227e 114 // NB: there is also number 111 (NAD, Future) pending on this function.
725dc051 115 bool
b581eaf7 116 equal(const istreambuf_iterator& __b) const
725dc051 117 {
5c352a47 118 const int_type __eof = traits_type::eof();
f13a69ec
BK
119 bool __thiseof = traits_type::eq_int_type(_M_get(), __eof);
120 bool __beof = traits_type::eq_int_type(__b._M_get(), __eof);
725dc051
BK
121 return (__thiseof && __beof || (!__thiseof && !__beof));
122 }
123#endif
9875ea05
BK
124
125 private:
126 int_type
127 _M_get() const
128 {
f13a69ec
BK
129 const int_type __eof = traits_type::eof();
130 int_type __ret = __eof;
9875ea05
BK
131 if (_M_sbuf)
132 {
f13a69ec 133 if (!traits_type::eq_int_type(_M_c, __eof))
9875ea05
BK
134 __ret = _M_c;
135 else
f13a69ec 136 if (traits_type::eq_int_type((__ret = _M_sbuf->sgetc()), __eof))
9875ea05
BK
137 _M_sbuf = 0;
138 }
139 return __ret;
140 }
725dc051
BK
141 };
142
143 template<typename _CharT, typename _Traits>
144 inline bool
145 operator==(const istreambuf_iterator<_CharT, _Traits>& __a,
146 const istreambuf_iterator<_CharT, _Traits>& __b)
147 { return __a.equal(__b); }
148
149 template<typename _CharT, typename _Traits>
150 inline bool
151 operator!=(const istreambuf_iterator<_CharT, _Traits>& __a,
152 const istreambuf_iterator<_CharT, _Traits>& __b)
153 { return !__a.equal(__b); }
5c352a47
BK
154
155 template<typename _CharT, typename _Traits>
156 class ostreambuf_iterator
157 : public iterator<output_iterator_tag, void, void, void, void>
158 {
159 public:
160 // Types:
161 typedef _CharT char_type;
162 typedef _Traits traits_type;
163 typedef basic_streambuf<_CharT, _Traits> streambuf_type;
164 typedef basic_ostream<_CharT, _Traits> ostream_type;
165
166 private:
167 streambuf_type* _M_sbuf;
168 bool _M_failed;
169
170 public:
5c352a47
BK
171 ostreambuf_iterator(ostream_type& __s) throw ()
172 : _M_sbuf(__s.rdbuf()), _M_failed(!_M_sbuf) { }
173
174 ostreambuf_iterator(streambuf_type* __s) throw ()
175 : _M_sbuf(__s), _M_failed(!_M_sbuf) { }
176
177 ostreambuf_iterator&
2e2a38cd
BK
178 operator=(_CharT __c)
179 {
180 if (!_M_failed &&
181 _Traits::eq_int_type(_M_sbuf->sputc(__c), _Traits::eof()))
182 _M_failed = true;
183 return *this;
184 }
5c352a47
BK
185
186 ostreambuf_iterator&
187 operator*() throw()
188 { return *this; }
189
190 ostreambuf_iterator&
191 operator++(int) throw()
192 { return *this; }
193
194 ostreambuf_iterator&
195 operator++() throw()
196 { return *this; }
197
198 bool
199 failed() const throw()
200 { return _M_failed; }
5c352a47 201
2e2a38cd
BK
202 ostreambuf_iterator&
203 _M_put(const _CharT* __ws, streamsize __len)
204 {
205 this->_M_sbuf->sputn(__ws, __len);
206 return *this;
207 }
208 };
b85381b9 209} // namespace std
b85381b9 210#endif