Update contrib.
1 // (C) Copyright Jonathan Turkanis 2003.
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 // To do: handle bidirection streams and output-seekable components.
9 #ifndef BOOST_IOSTREAMS_SKIP_HPP_INCLUDED
10 #define BOOST_IOSTREAMS_SKIP_HPP_INCLUDED
12 #if defined(_MSC_VER) && (_MSC_VER >= 1020)
16 #include <boost/iostreams/char_traits.hpp>
17 #include <boost/iostreams/detail/ios.hpp> // failure.
18 #include <boost/iostreams/operations.hpp>
19 #include <boost/iostreams/traits.hpp>
20 #include <boost/mpl/and.hpp>
21 #include <boost/mpl/bool.hpp>
22 #include <boost/type_traits/is_convertible.hpp>
24 namespace boost { namespace iostreams {
28 template<typename Device>
29 void skip(Device& dev, stream_offset off, mpl::true_)
30 { iostreams::seek(dev, off, BOOST_IOS::cur); }
32 template<typename Device>
33 void skip(Device& dev, stream_offset off, mpl::false_)
34 { // gcc 2.95 needs namespace qualification for char_traits.
35 typedef typename char_type_of<Device>::type char_type;
36 typedef iostreams::char_traits<char_type> traits_type;
37 for (stream_offset z = 0; z < off; ) {
38 typename traits_type::int_type c;
39 if (traits_type::is_eof(c = iostreams::get(dev)))
40 throw BOOST_IOSTREAMS_FAILURE("bad skip offset");
41 if (!traits_type::would_block(c))
46 template<typename Filter, typename Device>
47 void skip(Filter& flt, Device& dev, stream_offset off, mpl::true_)
48 { flt.seek(dev, off, BOOST_IOS::cur); }
50 template<typename Filter, typename Device>
51 void skip(Filter& flt, Device& dev, stream_offset off, mpl::false_)
53 typedef typename char_type_of<Device>::type char_type;
55 for (stream_offset z = 0; z < off; ) {
57 if ((amt = iostreams::read(flt, dev, &c, 1)) == -1)
58 throw BOOST_IOSTREAMS_FAILURE("bad skip offset");
64 } // End namespace detail.
66 template<typename Device>
67 void skip(Device& dev, stream_offset off)
69 typedef typename mode_of<Device>::type mode;
70 detail::skip(dev, off, is_convertible<mode, seekable>());
73 template<typename Filter, typename Device>
74 void skip(Filter& flt, Device& dev, stream_offset off)
76 typedef typename mode_of<Filter>::type filter_mode;
77 typedef typename mode_of<Device>::type device_mode;
79 is_convertible<filter_mode, output_seekable>,
80 is_convertible<device_mode, output_seekable>
82 detail::skip(flt, dev, off, can_seek());
85 } } // End namespaces iostreams, boost.
87 #endif // #ifndef BOOST_IOSTREAMS_SKIP_HPP_INCLUDED //------------------------//