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 #ifndef BOOST_IOSTREAMS_SEEK_HPP_INCLUDED
8 #define BOOST_IOSTREAMS_SEEK_HPP_INCLUDED
10 #if defined(_MSC_VER) && (_MSC_VER >= 1020)
14 #include <boost/config.hpp> // DEDUCED_TYPENAME, MSVC.
15 #include <boost/integer_traits.hpp>
16 #include <boost/iostreams/categories.hpp>
17 #include <boost/iostreams/detail/dispatch.hpp>
18 #include <boost/iostreams/detail/ios.hpp> // streamsize, seekdir, openmode.
19 #include <boost/iostreams/detail/streambuf.hpp>
20 #include <boost/iostreams/detail/wrap_unwrap.hpp>
21 #include <boost/iostreams/operations_fwd.hpp>
22 #include <boost/iostreams/positioning.hpp>
23 #include <boost/mpl/if.hpp>
26 #include <boost/iostreams/detail/config/disable_warnings.hpp>
28 namespace boost { namespace iostreams {
33 struct seek_device_impl;
36 struct seek_filter_impl;
38 } // End namespace detail.
42 seek( T& t, stream_offset off, BOOST_IOS::seekdir way,
43 BOOST_IOS::openmode which = BOOST_IOS::in | BOOST_IOS::out )
45 using namespace detail;
46 return seek_device_impl<T>::seek(detail::unwrap(t), off, way, which);
49 template<typename T, typename Device>
51 seek( T& t, Device& dev, stream_offset off, BOOST_IOS::seekdir way,
52 BOOST_IOS::openmode which = BOOST_IOS::in | BOOST_IOS::out )
54 using namespace detail;
55 return seek_filter_impl<T>::seek(detail::unwrap(t), dev, off, way, which);
60 //------------------Definition of seek_device_impl----------------------------//
63 struct seek_device_impl
68 BOOST_DEDUCED_TYPENAME
70 T, iostream_tag, istream_tag, ostream_tag,
71 streambuf_tag, two_head, any_tag
77 struct seek_impl_basic_ios {
79 static std::streampos seek( T& t, stream_offset off,
80 BOOST_IOS::seekdir way,
81 BOOST_IOS::openmode which )
83 if ( way == BOOST_IOS::beg &&
84 ( off < integer_traits<std::streamoff>::const_min ||
85 off > integer_traits<std::streamoff>::const_max ) )
87 return t.rdbuf()->pubseekpos(offset_to_position(off));
89 return t.rdbuf()->pubseekoff(off, way, which);
95 struct seek_device_impl<iostream_tag> : seek_impl_basic_ios { };
98 struct seek_device_impl<istream_tag> : seek_impl_basic_ios { };
101 struct seek_device_impl<ostream_tag> : seek_impl_basic_ios { };
104 struct seek_device_impl<streambuf_tag> {
106 static std::streampos seek( T& t, stream_offset off,
107 BOOST_IOS::seekdir way,
108 BOOST_IOS::openmode which )
110 if ( way == BOOST_IOS::beg &&
111 ( off < integer_traits<std::streamoff>::const_min ||
112 off > integer_traits<std::streamoff>::const_max ) )
114 return t.BOOST_IOSTREAMS_PUBSEEKPOS(offset_to_position(off));
116 return t.BOOST_IOSTREAMS_PUBSEEKOFF(off, way, which);
122 struct seek_device_impl<two_head> {
124 static std::streampos seek( T& t, stream_offset off,
125 BOOST_IOS::seekdir way,
126 BOOST_IOS::openmode which )
127 { return t.seek(off, way, which); }
131 struct seek_device_impl<any_tag> {
133 static std::streampos seek( T& t, stream_offset off,
134 BOOST_IOS::seekdir way,
135 BOOST_IOS::openmode )
136 { return t.seek(off, way); }
139 //------------------Definition of seek_filter_impl----------------------------//
142 struct seek_filter_impl
147 BOOST_DEDUCED_TYPENAME
148 dispatch<T, two_head, any_tag>::type
154 struct seek_filter_impl<two_head> {
155 template<typename T, typename Device>
156 static std::streampos seek( T& t, Device& d,
158 BOOST_IOS::seekdir way,
159 BOOST_IOS::openmode which )
160 { return t.seek(d, off, way, which); }
164 struct seek_filter_impl<any_tag> {
165 template<typename T, typename Device>
166 static std::streampos seek( T& t, Device& d,
168 BOOST_IOS::seekdir way,
169 BOOST_IOS::openmode )
170 { return t.seek(d, off, way); }
173 } // End namespace detail.
175 } } // End namespaces iostreams, boost.
177 #include <boost/iostreams/detail/config/enable_warnings.hpp>
179 #endif // #ifndef BOOST_IOSTREAMS_SEEK_HPP_INCLUDED