sl@0
|
1 |
// (C) Copyright Jonathan Turkanis 2005.
|
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 |
// Contains implementations of get, read, put, write and seek which
|
sl@0
|
8 |
// check a device's mode at runtime instead of compile time.
|
sl@0
|
9 |
|
sl@0
|
10 |
#ifndef BOOST_IOSTREAMS_DETAIL_CHECKED_OPERATIONS_HPP_INCLUDED
|
sl@0
|
11 |
#define BOOST_IOSTREAMS_DETAIL_CHECKED_OPERATIONS_HPP_INCLUDED
|
sl@0
|
12 |
|
sl@0
|
13 |
#include <boost/iostreams/categories.hpp>
|
sl@0
|
14 |
#include <boost/iostreams/detail/dispatch.hpp>
|
sl@0
|
15 |
#include <boost/iostreams/detail/error.hpp>
|
sl@0
|
16 |
#include <boost/iostreams/get.hpp>
|
sl@0
|
17 |
#include <boost/iostreams/put.hpp>
|
sl@0
|
18 |
#include <boost/iostreams/read.hpp>
|
sl@0
|
19 |
#include <boost/iostreams/seek.hpp>
|
sl@0
|
20 |
#include <boost/iostreams/traits.hpp>
|
sl@0
|
21 |
#include <boost/iostreams/write.hpp>
|
sl@0
|
22 |
|
sl@0
|
23 |
// Must come last.
|
sl@0
|
24 |
#include <boost/iostreams/detail/config/disable_warnings.hpp> // MSVC.
|
sl@0
|
25 |
|
sl@0
|
26 |
namespace boost { namespace iostreams {
|
sl@0
|
27 |
|
sl@0
|
28 |
namespace detail {
|
sl@0
|
29 |
|
sl@0
|
30 |
template<typename T>
|
sl@0
|
31 |
struct read_write_if_impl;
|
sl@0
|
32 |
|
sl@0
|
33 |
template<typename T>
|
sl@0
|
34 |
struct seek_if_impl;
|
sl@0
|
35 |
|
sl@0
|
36 |
} // End namespace detail.
|
sl@0
|
37 |
|
sl@0
|
38 |
template<typename T>
|
sl@0
|
39 |
typename int_type_of<T>::type get_if(T& t)
|
sl@0
|
40 |
{
|
sl@0
|
41 |
typedef typename detail::dispatch<T, input, output>::type tag;
|
sl@0
|
42 |
return detail::read_write_if_impl<tag>::get(t);
|
sl@0
|
43 |
}
|
sl@0
|
44 |
|
sl@0
|
45 |
template<typename T>
|
sl@0
|
46 |
inline std::streamsize
|
sl@0
|
47 |
read_if(T& t, typename char_type_of<T>::type* s, std::streamsize n)
|
sl@0
|
48 |
{
|
sl@0
|
49 |
typedef typename detail::dispatch<T, input, output>::type tag;
|
sl@0
|
50 |
return detail::read_write_if_impl<tag>::read(t, s, n);
|
sl@0
|
51 |
}
|
sl@0
|
52 |
|
sl@0
|
53 |
template<typename T>
|
sl@0
|
54 |
bool put_if(T& t, typename char_type_of<T>::type c)
|
sl@0
|
55 |
{
|
sl@0
|
56 |
typedef typename detail::dispatch<T, output, input>::type tag;
|
sl@0
|
57 |
return detail::read_write_if_impl<tag>::put(t, c);
|
sl@0
|
58 |
}
|
sl@0
|
59 |
|
sl@0
|
60 |
template<typename T>
|
sl@0
|
61 |
inline std::streamsize write_if
|
sl@0
|
62 |
(T& t, const typename char_type_of<T>::type* s, std::streamsize n)
|
sl@0
|
63 |
{
|
sl@0
|
64 |
typedef typename detail::dispatch<T, output, input>::type tag;
|
sl@0
|
65 |
return detail::read_write_if_impl<tag>::write(t, s, n);
|
sl@0
|
66 |
}
|
sl@0
|
67 |
|
sl@0
|
68 |
template<typename T>
|
sl@0
|
69 |
inline std::streampos
|
sl@0
|
70 |
seek_if( T& t, stream_offset off, BOOST_IOS::seekdir way,
|
sl@0
|
71 |
BOOST_IOS::openmode which = BOOST_IOS::in | BOOST_IOS::out )
|
sl@0
|
72 |
{
|
sl@0
|
73 |
using namespace detail;
|
sl@0
|
74 |
typedef typename dispatch<T, random_access, any_tag>::type tag;
|
sl@0
|
75 |
return seek_if_impl<tag>::seek(t, off, way, which);
|
sl@0
|
76 |
}
|
sl@0
|
77 |
|
sl@0
|
78 |
namespace detail {
|
sl@0
|
79 |
|
sl@0
|
80 |
//------------------Specializations of read_write_if_impl---------------------//
|
sl@0
|
81 |
|
sl@0
|
82 |
template<>
|
sl@0
|
83 |
struct read_write_if_impl<input> {
|
sl@0
|
84 |
template<typename T>
|
sl@0
|
85 |
static typename int_type_of<T>::type get(T& t)
|
sl@0
|
86 |
{ return iostreams::get(t); }
|
sl@0
|
87 |
|
sl@0
|
88 |
template<typename T>
|
sl@0
|
89 |
static std::streamsize
|
sl@0
|
90 |
read(T& t, typename char_type_of<T>::type* s, std::streamsize n)
|
sl@0
|
91 |
{ return iostreams::read(t, s, n); }
|
sl@0
|
92 |
|
sl@0
|
93 |
template<typename T>
|
sl@0
|
94 |
static bool put(T&, typename char_type_of<T>::type)
|
sl@0
|
95 |
{ throw cant_write(); }
|
sl@0
|
96 |
|
sl@0
|
97 |
template<typename T>
|
sl@0
|
98 |
static std::streamsize
|
sl@0
|
99 |
write(T&, const typename char_type_of<T>::type*, std::streamsize)
|
sl@0
|
100 |
{ throw cant_write(); }
|
sl@0
|
101 |
};
|
sl@0
|
102 |
|
sl@0
|
103 |
template<>
|
sl@0
|
104 |
struct read_write_if_impl<output> {
|
sl@0
|
105 |
template<typename T>
|
sl@0
|
106 |
static typename int_type_of<T>::type get(T&)
|
sl@0
|
107 |
{ throw cant_read(); }
|
sl@0
|
108 |
|
sl@0
|
109 |
template<typename T>
|
sl@0
|
110 |
static std::streamsize
|
sl@0
|
111 |
read(T&, typename char_type_of<T>::type*, std::streamsize)
|
sl@0
|
112 |
{ throw cant_read(); }
|
sl@0
|
113 |
|
sl@0
|
114 |
template<typename T>
|
sl@0
|
115 |
static bool put(T& t, typename char_type_of<T>::type c)
|
sl@0
|
116 |
{ return iostreams::put(t, c); }
|
sl@0
|
117 |
|
sl@0
|
118 |
template<typename T>
|
sl@0
|
119 |
static std::streamsize
|
sl@0
|
120 |
write( T& t, const typename char_type_of<T>::type* s,
|
sl@0
|
121 |
std::streamsize n )
|
sl@0
|
122 |
{ return iostreams::write(t, s, n); }
|
sl@0
|
123 |
};
|
sl@0
|
124 |
|
sl@0
|
125 |
//------------------Specializations of seek_if_impl---------------------------//
|
sl@0
|
126 |
|
sl@0
|
127 |
template<>
|
sl@0
|
128 |
struct seek_if_impl<random_access> {
|
sl@0
|
129 |
template<typename T>
|
sl@0
|
130 |
static stream_offset
|
sl@0
|
131 |
seek( T& t, stream_offset off, BOOST_IOS::seekdir way,
|
sl@0
|
132 |
BOOST_IOS::openmode which )
|
sl@0
|
133 |
{ return iostreams::seek(t, off, way, which); }
|
sl@0
|
134 |
};
|
sl@0
|
135 |
|
sl@0
|
136 |
template<>
|
sl@0
|
137 |
struct seek_if_impl<any_tag> {
|
sl@0
|
138 |
template<typename T>
|
sl@0
|
139 |
static stream_offset
|
sl@0
|
140 |
seek(T&, stream_offset, BOOST_IOS::seekdir, BOOST_IOS::openmode)
|
sl@0
|
141 |
{ throw cant_seek(); }
|
sl@0
|
142 |
};
|
sl@0
|
143 |
|
sl@0
|
144 |
} // End namespace detail.
|
sl@0
|
145 |
|
sl@0
|
146 |
} } // End namespaces iostreams, boost.
|
sl@0
|
147 |
|
sl@0
|
148 |
#include <boost/iostreams/detail/config/enable_warnings.hpp> // MSVC.
|
sl@0
|
149 |
|
sl@0
|
150 |
#endif // #ifndef BOOST_IOSTREAMS_DETAIL_CHECKED_OPERATIONS_HPP_INCLUDED
|