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 // Contains implementations of get, read, put, write and seek which
8 // check a device's mode at runtime instead of compile time.
10 #ifndef BOOST_IOSTREAMS_DETAIL_CHECKED_OPERATIONS_HPP_INCLUDED
11 #define BOOST_IOSTREAMS_DETAIL_CHECKED_OPERATIONS_HPP_INCLUDED
13 #include <boost/iostreams/categories.hpp>
14 #include <boost/iostreams/detail/dispatch.hpp>
15 #include <boost/iostreams/detail/error.hpp>
16 #include <boost/iostreams/get.hpp>
17 #include <boost/iostreams/put.hpp>
18 #include <boost/iostreams/read.hpp>
19 #include <boost/iostreams/seek.hpp>
20 #include <boost/iostreams/traits.hpp>
21 #include <boost/iostreams/write.hpp>
24 #include <boost/iostreams/detail/config/disable_warnings.hpp> // MSVC.
26 namespace boost { namespace iostreams {
31 struct read_write_if_impl;
36 } // End namespace detail.
39 typename int_type_of<T>::type get_if(T& t)
41 typedef typename detail::dispatch<T, input, output>::type tag;
42 return detail::read_write_if_impl<tag>::get(t);
46 inline std::streamsize
47 read_if(T& t, typename char_type_of<T>::type* s, std::streamsize n)
49 typedef typename detail::dispatch<T, input, output>::type tag;
50 return detail::read_write_if_impl<tag>::read(t, s, n);
54 bool put_if(T& t, typename char_type_of<T>::type c)
56 typedef typename detail::dispatch<T, output, input>::type tag;
57 return detail::read_write_if_impl<tag>::put(t, c);
61 inline std::streamsize write_if
62 (T& t, const typename char_type_of<T>::type* s, std::streamsize n)
64 typedef typename detail::dispatch<T, output, input>::type tag;
65 return detail::read_write_if_impl<tag>::write(t, s, n);
70 seek_if( T& t, stream_offset off, BOOST_IOS::seekdir way,
71 BOOST_IOS::openmode which = BOOST_IOS::in | BOOST_IOS::out )
73 using namespace detail;
74 typedef typename dispatch<T, random_access, any_tag>::type tag;
75 return seek_if_impl<tag>::seek(t, off, way, which);
80 //------------------Specializations of read_write_if_impl---------------------//
83 struct read_write_if_impl<input> {
85 static typename int_type_of<T>::type get(T& t)
86 { return iostreams::get(t); }
89 static std::streamsize
90 read(T& t, typename char_type_of<T>::type* s, std::streamsize n)
91 { return iostreams::read(t, s, n); }
94 static bool put(T&, typename char_type_of<T>::type)
95 { throw cant_write(); }
98 static std::streamsize
99 write(T&, const typename char_type_of<T>::type*, std::streamsize)
100 { throw cant_write(); }
104 struct read_write_if_impl<output> {
106 static typename int_type_of<T>::type get(T&)
107 { throw cant_read(); }
110 static std::streamsize
111 read(T&, typename char_type_of<T>::type*, std::streamsize)
112 { throw cant_read(); }
115 static bool put(T& t, typename char_type_of<T>::type c)
116 { return iostreams::put(t, c); }
119 static std::streamsize
120 write( T& t, const typename char_type_of<T>::type* s,
122 { return iostreams::write(t, s, n); }
125 //------------------Specializations of seek_if_impl---------------------------//
128 struct seek_if_impl<random_access> {
131 seek( T& t, stream_offset off, BOOST_IOS::seekdir way,
132 BOOST_IOS::openmode which )
133 { return iostreams::seek(t, off, way, which); }
137 struct seek_if_impl<any_tag> {
140 seek(T&, stream_offset, BOOST_IOS::seekdir, BOOST_IOS::openmode)
141 { throw cant_seek(); }
144 } // End namespace detail.
146 } } // End namespaces iostreams, boost.
148 #include <boost/iostreams/detail/config/enable_warnings.hpp> // MSVC.
150 #endif // #ifndef BOOST_IOSTREAMS_DETAIL_CHECKED_OPERATIONS_HPP_INCLUDED