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 |
#ifndef BOOST_IOSTREAMS_SEEK_HPP_INCLUDED
|
sl@0
|
8 |
#define BOOST_IOSTREAMS_SEEK_HPP_INCLUDED
|
sl@0
|
9 |
|
sl@0
|
10 |
#if defined(_MSC_VER) && (_MSC_VER >= 1020)
|
sl@0
|
11 |
# pragma once
|
sl@0
|
12 |
#endif
|
sl@0
|
13 |
|
sl@0
|
14 |
#include <boost/config.hpp> // DEDUCED_TYPENAME, MSVC.
|
sl@0
|
15 |
#include <boost/integer_traits.hpp>
|
sl@0
|
16 |
#include <boost/iostreams/categories.hpp>
|
sl@0
|
17 |
#include <boost/iostreams/detail/dispatch.hpp>
|
sl@0
|
18 |
#include <boost/iostreams/detail/ios.hpp> // streamsize, seekdir, openmode.
|
sl@0
|
19 |
#include <boost/iostreams/detail/streambuf.hpp>
|
sl@0
|
20 |
#include <boost/iostreams/detail/wrap_unwrap.hpp>
|
sl@0
|
21 |
#include <boost/iostreams/operations_fwd.hpp>
|
sl@0
|
22 |
#include <boost/iostreams/positioning.hpp>
|
sl@0
|
23 |
#include <boost/mpl/if.hpp>
|
sl@0
|
24 |
|
sl@0
|
25 |
// Must come last.
|
sl@0
|
26 |
#include <boost/iostreams/detail/config/disable_warnings.hpp>
|
sl@0
|
27 |
|
sl@0
|
28 |
namespace boost { namespace iostreams {
|
sl@0
|
29 |
|
sl@0
|
30 |
namespace detail {
|
sl@0
|
31 |
|
sl@0
|
32 |
template<typename T>
|
sl@0
|
33 |
struct seek_device_impl;
|
sl@0
|
34 |
|
sl@0
|
35 |
template<typename T>
|
sl@0
|
36 |
struct seek_filter_impl;
|
sl@0
|
37 |
|
sl@0
|
38 |
} // End namespace detail.
|
sl@0
|
39 |
|
sl@0
|
40 |
template<typename T>
|
sl@0
|
41 |
inline std::streampos
|
sl@0
|
42 |
seek( T& t, stream_offset off, BOOST_IOS::seekdir way,
|
sl@0
|
43 |
BOOST_IOS::openmode which = BOOST_IOS::in | BOOST_IOS::out )
|
sl@0
|
44 |
{
|
sl@0
|
45 |
using namespace detail;
|
sl@0
|
46 |
return seek_device_impl<T>::seek(detail::unwrap(t), off, way, which);
|
sl@0
|
47 |
}
|
sl@0
|
48 |
|
sl@0
|
49 |
template<typename T, typename Device>
|
sl@0
|
50 |
inline std::streampos
|
sl@0
|
51 |
seek( T& t, Device& dev, stream_offset off, BOOST_IOS::seekdir way,
|
sl@0
|
52 |
BOOST_IOS::openmode which = BOOST_IOS::in | BOOST_IOS::out )
|
sl@0
|
53 |
{
|
sl@0
|
54 |
using namespace detail;
|
sl@0
|
55 |
return seek_filter_impl<T>::seek(detail::unwrap(t), dev, off, way, which);
|
sl@0
|
56 |
}
|
sl@0
|
57 |
|
sl@0
|
58 |
namespace detail {
|
sl@0
|
59 |
|
sl@0
|
60 |
//------------------Definition of seek_device_impl----------------------------//
|
sl@0
|
61 |
|
sl@0
|
62 |
template<typename T>
|
sl@0
|
63 |
struct seek_device_impl
|
sl@0
|
64 |
: mpl::if_<
|
sl@0
|
65 |
is_custom<T>,
|
sl@0
|
66 |
operations<T>,
|
sl@0
|
67 |
seek_device_impl<
|
sl@0
|
68 |
BOOST_DEDUCED_TYPENAME
|
sl@0
|
69 |
dispatch<
|
sl@0
|
70 |
T, iostream_tag, istream_tag, ostream_tag,
|
sl@0
|
71 |
streambuf_tag, two_head, any_tag
|
sl@0
|
72 |
>::type
|
sl@0
|
73 |
>
|
sl@0
|
74 |
>::type
|
sl@0
|
75 |
{ };
|
sl@0
|
76 |
|
sl@0
|
77 |
struct seek_impl_basic_ios {
|
sl@0
|
78 |
template<typename T>
|
sl@0
|
79 |
static std::streampos seek( T& t, stream_offset off,
|
sl@0
|
80 |
BOOST_IOS::seekdir way,
|
sl@0
|
81 |
BOOST_IOS::openmode which )
|
sl@0
|
82 |
{
|
sl@0
|
83 |
if ( way == BOOST_IOS::beg &&
|
sl@0
|
84 |
( off < integer_traits<std::streamoff>::const_min ||
|
sl@0
|
85 |
off > integer_traits<std::streamoff>::const_max ) )
|
sl@0
|
86 |
{
|
sl@0
|
87 |
return t.rdbuf()->pubseekpos(offset_to_position(off));
|
sl@0
|
88 |
} else {
|
sl@0
|
89 |
return t.rdbuf()->pubseekoff(off, way, which);
|
sl@0
|
90 |
}
|
sl@0
|
91 |
}
|
sl@0
|
92 |
};
|
sl@0
|
93 |
|
sl@0
|
94 |
template<>
|
sl@0
|
95 |
struct seek_device_impl<iostream_tag> : seek_impl_basic_ios { };
|
sl@0
|
96 |
|
sl@0
|
97 |
template<>
|
sl@0
|
98 |
struct seek_device_impl<istream_tag> : seek_impl_basic_ios { };
|
sl@0
|
99 |
|
sl@0
|
100 |
template<>
|
sl@0
|
101 |
struct seek_device_impl<ostream_tag> : seek_impl_basic_ios { };
|
sl@0
|
102 |
|
sl@0
|
103 |
template<>
|
sl@0
|
104 |
struct seek_device_impl<streambuf_tag> {
|
sl@0
|
105 |
template<typename T>
|
sl@0
|
106 |
static std::streampos seek( T& t, stream_offset off,
|
sl@0
|
107 |
BOOST_IOS::seekdir way,
|
sl@0
|
108 |
BOOST_IOS::openmode which )
|
sl@0
|
109 |
{
|
sl@0
|
110 |
if ( way == BOOST_IOS::beg &&
|
sl@0
|
111 |
( off < integer_traits<std::streamoff>::const_min ||
|
sl@0
|
112 |
off > integer_traits<std::streamoff>::const_max ) )
|
sl@0
|
113 |
{
|
sl@0
|
114 |
return t.BOOST_IOSTREAMS_PUBSEEKPOS(offset_to_position(off));
|
sl@0
|
115 |
} else {
|
sl@0
|
116 |
return t.BOOST_IOSTREAMS_PUBSEEKOFF(off, way, which);
|
sl@0
|
117 |
}
|
sl@0
|
118 |
}
|
sl@0
|
119 |
};
|
sl@0
|
120 |
|
sl@0
|
121 |
template<>
|
sl@0
|
122 |
struct seek_device_impl<two_head> {
|
sl@0
|
123 |
template<typename T>
|
sl@0
|
124 |
static std::streampos seek( T& t, stream_offset off,
|
sl@0
|
125 |
BOOST_IOS::seekdir way,
|
sl@0
|
126 |
BOOST_IOS::openmode which )
|
sl@0
|
127 |
{ return t.seek(off, way, which); }
|
sl@0
|
128 |
};
|
sl@0
|
129 |
|
sl@0
|
130 |
template<>
|
sl@0
|
131 |
struct seek_device_impl<any_tag> {
|
sl@0
|
132 |
template<typename T>
|
sl@0
|
133 |
static std::streampos seek( T& t, stream_offset off,
|
sl@0
|
134 |
BOOST_IOS::seekdir way,
|
sl@0
|
135 |
BOOST_IOS::openmode )
|
sl@0
|
136 |
{ return t.seek(off, way); }
|
sl@0
|
137 |
};
|
sl@0
|
138 |
|
sl@0
|
139 |
//------------------Definition of seek_filter_impl----------------------------//
|
sl@0
|
140 |
|
sl@0
|
141 |
template<typename T>
|
sl@0
|
142 |
struct seek_filter_impl
|
sl@0
|
143 |
: mpl::if_<
|
sl@0
|
144 |
is_custom<T>,
|
sl@0
|
145 |
operations<T>,
|
sl@0
|
146 |
seek_filter_impl<
|
sl@0
|
147 |
BOOST_DEDUCED_TYPENAME
|
sl@0
|
148 |
dispatch<T, two_head, any_tag>::type
|
sl@0
|
149 |
>
|
sl@0
|
150 |
>::type
|
sl@0
|
151 |
{ };
|
sl@0
|
152 |
|
sl@0
|
153 |
template<>
|
sl@0
|
154 |
struct seek_filter_impl<two_head> {
|
sl@0
|
155 |
template<typename T, typename Device>
|
sl@0
|
156 |
static std::streampos seek( T& t, Device& d,
|
sl@0
|
157 |
stream_offset off,
|
sl@0
|
158 |
BOOST_IOS::seekdir way,
|
sl@0
|
159 |
BOOST_IOS::openmode which )
|
sl@0
|
160 |
{ return t.seek(d, off, way, which); }
|
sl@0
|
161 |
};
|
sl@0
|
162 |
|
sl@0
|
163 |
template<>
|
sl@0
|
164 |
struct seek_filter_impl<any_tag> {
|
sl@0
|
165 |
template<typename T, typename Device>
|
sl@0
|
166 |
static std::streampos seek( T& t, Device& d,
|
sl@0
|
167 |
stream_offset off,
|
sl@0
|
168 |
BOOST_IOS::seekdir way,
|
sl@0
|
169 |
BOOST_IOS::openmode )
|
sl@0
|
170 |
{ return t.seek(d, off, way); }
|
sl@0
|
171 |
};
|
sl@0
|
172 |
|
sl@0
|
173 |
} // End namespace detail.
|
sl@0
|
174 |
|
sl@0
|
175 |
} } // End namespaces iostreams, boost.
|
sl@0
|
176 |
|
sl@0
|
177 |
#include <boost/iostreams/detail/config/enable_warnings.hpp>
|
sl@0
|
178 |
|
sl@0
|
179 |
#endif // #ifndef BOOST_IOSTREAMS_SEEK_HPP_INCLUDED
|