3 * Silicon Graphics Computer Systems, Inc.
8 * This material is provided "as is", with absolutely no warranty expressed
9 * or implied. Any use is at your own risk.
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.
18 // WARNING: This is an internal header file, included by other C++
19 // standard library headers. You should not attempt to use this header
23 #ifndef _STLP_INTERNAL_ISTREAMBUF_ITERATOR_H
24 #define _STLP_INTERNAL_ISTREAMBUF_ITERATOR_H
26 #ifndef _STLP_INTERNAL_ITERATOR_BASE_H
27 # include <stl/_iterator_base.h>
30 #ifndef _STLP_INTERNAL_STREAMBUF
31 # include <stl/_streambuf.h>
36 // defined in _istream.h
37 template <class _CharT, class _Traits>
38 extern basic_streambuf<_CharT, _Traits>* _STLP_CALL _M_get_istreambuf(basic_istream<_CharT, _Traits>& ) ;
40 // We do not read any characters until operator* is called. operator* calls sgetc
41 // unless the iterator is unchanged from the last call in which case a cached value is
42 // used. Calls to operator++ use sbumpc.
44 template<class _CharT, class _Traits>
45 class istreambuf_iterator
48 typedef _CharT char_type;
49 typedef _Traits traits_type;
50 typedef typename _Traits::int_type int_type;
51 typedef basic_streambuf<_CharT, _Traits> streambuf_type;
52 typedef basic_istream<_CharT, _Traits> istream_type;
54 typedef input_iterator_tag iterator_category;
55 typedef _CharT value_type;
56 typedef typename _Traits::off_type difference_type;
57 typedef const _CharT* pointer;
58 typedef const _CharT& reference;
61 istreambuf_iterator(streambuf_type* __p = 0) { this->_M_init(__p); }
62 // istreambuf_iterator(basic_istream<_CharT, _Traits>& __is) { this->_M_init(_M_get_istreambuf(__is)); }
63 inline istreambuf_iterator(basic_istream<_CharT, _Traits>& __is);
65 char_type operator*() const { this->_M_getc(); return _M_c; }
66 istreambuf_iterator<_CharT, _Traits>& operator++() { this->_M_bumpc(); return *this; }
67 istreambuf_iterator<_CharT, _Traits> operator++(int);
69 bool equal(const istreambuf_iterator<_CharT, _Traits>& __i) const {
74 return this->_M_eof == __i._M_eof;
78 void _M_init(streambuf_type* __p) {
81 // _M_is_initialized = _M_eof;
85 void _M_getc() const {
88 int_type __c = _M_buf->sgetc();
89 # if !defined (_STLP_NEED_MUTABLE) /* && ! defined (__SUNPRO_CC) */
90 _M_c = traits_type::to_char_type(__c);
91 _M_eof = traits_type::eq_int_type(__c, traits_type::eof());
94 typedef istreambuf_iterator<_CharT,_Traits> _Self;
95 _Self* __that = __CONST_CAST(_Self*, this);
96 __that->_M_c = __STATIC_CAST(_CharT, traits_type::to_char_type(__c));
97 __that->_M_eof = traits_type::eq_int_type(__c, traits_type::eof());
98 __that->_M_have_c = true;
102 int_type _M_bumpc() {
103 int_type ch = _M_buf->sbumpc();
109 streambuf_type* _M_buf;
111 mutable unsigned char _M_eof;
112 mutable unsigned char _M_have_c;
115 template<class _CharT, class _Traits>
116 inline istreambuf_iterator<_CharT, _Traits>::istreambuf_iterator(basic_istream<_CharT, _Traits>& __is)
117 { this->_M_init(_M_get_istreambuf(__is)); }
119 template<class _CharT, class _Traits>
120 inline bool _STLP_CALL operator==(const istreambuf_iterator<_CharT, _Traits>& __x,
121 const istreambuf_iterator<_CharT, _Traits>& __y) {
122 return __x.equal(__y);
125 #ifdef _STLP_USE_SEPARATE_RELOPS_NAMESPACE
127 template<class _CharT, class _Traits>
128 inline bool _STLP_CALL operator!=(const istreambuf_iterator<_CharT, _Traits>& __x,
129 const istreambuf_iterator<_CharT, _Traits>& __y) {
130 return !__x.equal(__y);
133 #endif /* _STLP_USE_SEPARATE_RELOPS_NAMESPACE */
135 # if defined (_STLP_USE_TEMPLATE_EXPORT)
136 _STLP_EXPORT_TEMPLATE_CLASS istreambuf_iterator<char, char_traits<char> >;
137 # if defined (INSTANTIATE_WIDE_STREAMS)
138 _STLP_EXPORT_TEMPLATE_CLASS istreambuf_iterator<wchar_t, char_traits<wchar_t> >;
140 # endif /* _STLP_USE_TEMPLATE_EXPORT */
142 # ifdef _STLP_USE_OLD_HP_ITERATOR_QUERIES
143 template <class _CharT, class _Traits>
144 inline input_iterator_tag _STLP_CALL iterator_category(const istreambuf_iterator<_CharT, _Traits>&) { return input_iterator_tag(); }
145 template <class _CharT, class _Traits>
146 inline streamoff* _STLP_CALL
147 distance_type(const istreambuf_iterator<_CharT, _Traits>&) { return (streamoff*)0; }
148 template <class _CharT, class _Traits>
149 inline _CharT* _STLP_CALL value_type(const istreambuf_iterator<_CharT, _Traits>&) { return (_CharT*)0; }
152 template <class _CharT, class _Traits>
153 istreambuf_iterator<_CharT, _Traits>
154 istreambuf_iterator<_CharT, _Traits>::operator++(int) {
155 istreambuf_iterator<_CharT, _Traits> __tmp = *this;
156 __tmp._M_c = this->_M_bumpc();
157 __tmp._M_have_c = true;
158 this->_M_have_c = false;
164 #endif /* _STLP_INTERNAL_ISTREAMBUF_ITERATOR_H */