sl@0
|
1 |
// (C) Copyright Jonathan Turkanis 2003.
|
sl@0
|
2 |
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
sl@0
|
3 |
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt.)
|
sl@0
|
4 |
|
sl@0
|
5 |
// See http://www.boost.org/libs/iostreams for documentation.
|
sl@0
|
6 |
|
sl@0
|
7 |
// To do: handle bidirection streams and output-seekable components.
|
sl@0
|
8 |
|
sl@0
|
9 |
#ifndef BOOST_IOSTREAMS_SKIP_HPP_INCLUDED
|
sl@0
|
10 |
#define BOOST_IOSTREAMS_SKIP_HPP_INCLUDED
|
sl@0
|
11 |
|
sl@0
|
12 |
#if defined(_MSC_VER) && (_MSC_VER >= 1020)
|
sl@0
|
13 |
# pragma once
|
sl@0
|
14 |
#endif
|
sl@0
|
15 |
|
sl@0
|
16 |
#include <boost/iostreams/char_traits.hpp>
|
sl@0
|
17 |
#include <boost/iostreams/detail/ios.hpp> // failure.
|
sl@0
|
18 |
#include <boost/iostreams/operations.hpp>
|
sl@0
|
19 |
#include <boost/iostreams/traits.hpp>
|
sl@0
|
20 |
#include <boost/mpl/and.hpp>
|
sl@0
|
21 |
#include <boost/mpl/bool.hpp>
|
sl@0
|
22 |
#include <boost/type_traits/is_convertible.hpp>
|
sl@0
|
23 |
|
sl@0
|
24 |
namespace boost { namespace iostreams {
|
sl@0
|
25 |
|
sl@0
|
26 |
namespace detail {
|
sl@0
|
27 |
|
sl@0
|
28 |
template<typename Device>
|
sl@0
|
29 |
void skip(Device& dev, stream_offset off, mpl::true_)
|
sl@0
|
30 |
{ iostreams::seek(dev, off, BOOST_IOS::cur); }
|
sl@0
|
31 |
|
sl@0
|
32 |
template<typename Device>
|
sl@0
|
33 |
void skip(Device& dev, stream_offset off, mpl::false_)
|
sl@0
|
34 |
{ // gcc 2.95 needs namespace qualification for char_traits.
|
sl@0
|
35 |
typedef typename char_type_of<Device>::type char_type;
|
sl@0
|
36 |
typedef iostreams::char_traits<char_type> traits_type;
|
sl@0
|
37 |
for (stream_offset z = 0; z < off; ) {
|
sl@0
|
38 |
typename traits_type::int_type c;
|
sl@0
|
39 |
if (traits_type::is_eof(c = iostreams::get(dev)))
|
sl@0
|
40 |
throw BOOST_IOSTREAMS_FAILURE("bad skip offset");
|
sl@0
|
41 |
if (!traits_type::would_block(c))
|
sl@0
|
42 |
++z;
|
sl@0
|
43 |
}
|
sl@0
|
44 |
}
|
sl@0
|
45 |
|
sl@0
|
46 |
template<typename Filter, typename Device>
|
sl@0
|
47 |
void skip(Filter& flt, Device& dev, stream_offset off, mpl::true_)
|
sl@0
|
48 |
{ flt.seek(dev, off, BOOST_IOS::cur); }
|
sl@0
|
49 |
|
sl@0
|
50 |
template<typename Filter, typename Device>
|
sl@0
|
51 |
void skip(Filter& flt, Device& dev, stream_offset off, mpl::false_)
|
sl@0
|
52 |
{
|
sl@0
|
53 |
typedef typename char_type_of<Device>::type char_type;
|
sl@0
|
54 |
char_type c;
|
sl@0
|
55 |
for (stream_offset z = 0; z < off; ) {
|
sl@0
|
56 |
std::streamsize amt;
|
sl@0
|
57 |
if ((amt = iostreams::read(flt, dev, &c, 1)) == -1)
|
sl@0
|
58 |
throw BOOST_IOSTREAMS_FAILURE("bad skip offset");
|
sl@0
|
59 |
if (amt == 1)
|
sl@0
|
60 |
++z;
|
sl@0
|
61 |
}
|
sl@0
|
62 |
}
|
sl@0
|
63 |
|
sl@0
|
64 |
} // End namespace detail.
|
sl@0
|
65 |
|
sl@0
|
66 |
template<typename Device>
|
sl@0
|
67 |
void skip(Device& dev, stream_offset off)
|
sl@0
|
68 |
{
|
sl@0
|
69 |
typedef typename mode_of<Device>::type mode;
|
sl@0
|
70 |
detail::skip(dev, off, is_convertible<mode, seekable>());
|
sl@0
|
71 |
}
|
sl@0
|
72 |
|
sl@0
|
73 |
template<typename Filter, typename Device>
|
sl@0
|
74 |
void skip(Filter& flt, Device& dev, stream_offset off)
|
sl@0
|
75 |
{
|
sl@0
|
76 |
typedef typename mode_of<Filter>::type filter_mode;
|
sl@0
|
77 |
typedef typename mode_of<Device>::type device_mode;
|
sl@0
|
78 |
typedef mpl::and_<
|
sl@0
|
79 |
is_convertible<filter_mode, output_seekable>,
|
sl@0
|
80 |
is_convertible<device_mode, output_seekable>
|
sl@0
|
81 |
> can_seek;
|
sl@0
|
82 |
detail::skip(flt, dev, off, can_seek());
|
sl@0
|
83 |
}
|
sl@0
|
84 |
|
sl@0
|
85 |
} } // End namespaces iostreams, boost.
|
sl@0
|
86 |
|
sl@0
|
87 |
#endif // #ifndef BOOST_IOSTREAMS_SKIP_HPP_INCLUDED //------------------------//
|