Update contrib.
1 // (C) Copyright Jonathan Turkanis 2005.
2 // Distributed under the Boost Software License, Version 1.0. (See accompanying
3 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt.)
5 // See http://www.boost.org/libs/iostreams for documentation.
7 #ifndef BOOST_IOSTREAMS_READ_HPP_INCLUDED
8 #define BOOST_IOSTREAMS_READ_HPP_INCLUDED
10 #if defined(_MSC_VER) && (_MSC_VER >= 1020)
14 #include <boost/config.hpp> // DEDUCED_TYPENAME, MSVC.
15 #include <boost/detail/workaround.hpp>
16 #include <boost/iostreams/char_traits.hpp>
17 #include <boost/iostreams/detail/char_traits.hpp>
18 #include <boost/iostreams/detail/dispatch.hpp>
19 #include <boost/iostreams/detail/ios.hpp> // streamsize.
20 #include <boost/iostreams/detail/streambuf.hpp>
21 #include <boost/iostreams/detail/wrap_unwrap.hpp>
22 #include <boost/iostreams/operations_fwd.hpp>
23 #include <boost/mpl/if.hpp>
26 #include <boost/iostreams/detail/config/disable_warnings.hpp>
28 #if BOOST_WORKAROUND(BOOST_MSVC, < 1300) //-----------------------------------//
29 # include <boost/iostreams/detail/vc6/read.hpp>
30 #else // #if BOOST_WORKAROUND(BOOST_MSVC, < 1300) //--------------------------//
32 namespace boost { namespace iostreams {
37 struct read_device_impl;
40 struct read_filter_impl;
42 } // End namespace detail.
45 typename int_type_of<T>::type get(T& t)
46 { return detail::read_device_impl<T>::get(detail::unwrap(t)); }
49 inline std::streamsize
50 read(T& t, typename char_type_of<T>::type* s, std::streamsize n)
51 { return detail::read_device_impl<T>::read(detail::unwrap(t), s, n); }
53 template<typename T, typename Source>
55 read(T& t, Source& src, typename char_type_of<T>::type* s, std::streamsize n)
56 { return detail::read_filter_impl<T>::read(detail::unwrap(t), src, s, n); }
59 bool putback(T& t, typename char_type_of<T>::type c)
60 { return detail::read_device_impl<T>::putback(detail::unwrap(t), c); }
62 //----------------------------------------------------------------------------//
66 // Helper function for adding -1 as EOF indicator.
67 inline std::streamsize check_eof(std::streamsize n) { return n != 0 ? n : -1; }
69 // Helper templates for reading from streambufs.
70 template<bool IsLinked>
74 struct true_eof_impl<true> {
76 static bool true_eof(T& t) { return t.true_eof(); }
80 struct true_eof_impl<false> {
82 static bool true_eof(T& t) { return true; }
86 inline bool true_eof(T& t)
88 const bool linked = is_linked<T>::value;
89 return true_eof_impl<linked>::true_eof(t);
92 //------------------Definition of read_device_impl----------------------------//
95 struct read_device_impl
100 BOOST_DEDUCED_TYPENAME
102 T, istream_tag, streambuf_tag, input
109 struct read_device_impl<istream_tag> {
111 static typename int_type_of<T>::type get(T& t)
115 static std::streamsize
116 read(T& t, typename char_type_of<T>::type* s, std::streamsize n)
117 { return check_eof(t.rdbuf()->sgetn(s, n)); }
120 static bool putback(T& t, typename char_type_of<T>::type c)
122 typedef typename char_type_of<T>::type char_type;
123 typedef BOOST_IOSTREAMS_CHAR_TRAITS(char_type) traits_type;
124 return !traits_type::eq_int_type( t.rdbuf()->sputbackc(c),
125 traits_type::eof() );
130 struct read_device_impl<streambuf_tag> {
132 static typename int_type_of<T>::type
134 { // gcc 2.95 needs namespace qualification for char_traits.
135 typedef typename char_type_of<T>::type char_type;
136 typedef iostreams::char_traits<char_type> traits_type;
137 typename int_type_of<T>::type c;
138 return !traits_type::is_eof(c = t.sbumpc()) ||
141 c : traits_type::would_block();
145 static std::streamsize
146 read(T& t, typename char_type_of<T>::type* s, std::streamsize n)
149 return (amt = t.sgetn(s, n)) != 0 ?
151 detail::true_eof(t) ?
157 static bool putback(T& t, typename char_type_of<T>::type c)
158 { // gcc 2.95 needs namespace qualification for char_traits.
159 typedef typename char_type_of<T>::type char_type;
160 typedef iostreams::char_traits<char_type> traits_type;
161 return !traits_type::is_eof(t.sputbackc(c));
166 struct read_device_impl<input> {
168 static typename int_type_of<T>::type
170 { // gcc 2.95 needs namespace qualification for char_traits.
171 typedef typename char_type_of<T>::type char_type;
172 typedef iostreams::char_traits<char_type> traits_type;
175 return (amt = t.read(&c, 1)) == 1 ?
176 traits_type::to_int_type(c) :
179 traits_type::would_block();
183 static std::streamsize
184 read(T& t, typename char_type_of<T>::type* s, std::streamsize n)
185 { return t.read(s, n); }
188 static bool putback(T& t, typename char_type_of<T>::type c)
189 { // T must be Peekable.
194 //------------------Definition of read_filter_impl----------------------------//
197 struct read_filter_impl
199 detail::is_custom<T>,
202 BOOST_DEDUCED_TYPENAME
204 T, multichar_tag, any_tag
211 struct read_filter_impl<multichar_tag> {
212 template<typename T, typename Source>
213 static std::streamsize read
214 (T& t, Source& src, typename char_type_of<T>::type* s, std::streamsize n)
215 { return t.read(src, s, n); }
219 struct read_filter_impl<any_tag> {
220 template<typename T, typename Source>
221 static std::streamsize read
222 (T& t, Source& src, typename char_type_of<T>::type* s, std::streamsize n)
223 { // gcc 2.95 needs namespace qualification for char_traits.
224 typedef typename char_type_of<T>::type char_type;
225 typedef iostreams::char_traits<char_type> traits_type;
226 for (std::streamsize off = 0; off < n; ++off) {
227 typename traits_type::int_type c = t.get(src);
228 if (traits_type::is_eof(c))
229 return check_eof(off);
230 if (traits_type::would_block(c))
232 s[off] = traits_type::to_char_type(c);
238 } // End namespace detail.
240 } } // End namespaces iostreams, boost.
242 #endif // #if BOOST_WORKAROUND(BOOST_MSVC, < 1300) //-------------------------//
244 #include <boost/iostreams/detail/config/enable_warnings.hpp>
246 #endif // #ifndef BOOST_IOSTREAMS_READ_HPP_INCLUDED