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: add support for random-access.
|
sl@0
|
8 |
|
sl@0
|
9 |
#ifndef BOOST_IOSTREAMS_COMBINE_HPP_INCLUDED
|
sl@0
|
10 |
#define BOOST_IOSTREAMS_COMBINE_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/config.hpp> // NO_STD_LOCALE, DEDUCED_TYPENAME.
|
sl@0
|
17 |
#ifndef BOOST_NO_STD_LOCALE
|
sl@0
|
18 |
# include <locale>
|
sl@0
|
19 |
#endif
|
sl@0
|
20 |
#include <boost/iostreams/detail/ios.hpp>
|
sl@0
|
21 |
#include <boost/iostreams/detail/wrap_unwrap.hpp>
|
sl@0
|
22 |
#include <boost/iostreams/traits.hpp>
|
sl@0
|
23 |
#include <boost/iostreams/operations.hpp>
|
sl@0
|
24 |
#include <boost/mpl/if.hpp>
|
sl@0
|
25 |
#include <boost/static_assert.hpp>
|
sl@0
|
26 |
#include <boost/type_traits/is_convertible.hpp>
|
sl@0
|
27 |
#include <boost/type_traits/is_same.hpp>
|
sl@0
|
28 |
|
sl@0
|
29 |
namespace boost { namespace iostreams {
|
sl@0
|
30 |
|
sl@0
|
31 |
namespace detail {
|
sl@0
|
32 |
|
sl@0
|
33 |
//
|
sl@0
|
34 |
// Template name: combined_device.
|
sl@0
|
35 |
// Description: Model of Device defined in terms of a Source/Sink pair.
|
sl@0
|
36 |
// Template paramters:
|
sl@0
|
37 |
// Source - A model of Source, with the same char_type and traits_type
|
sl@0
|
38 |
// as Sink.
|
sl@0
|
39 |
// Sink - A model of Sink, with the same char_type and traits_type
|
sl@0
|
40 |
// as Source.
|
sl@0
|
41 |
//
|
sl@0
|
42 |
template<typename Source, typename Sink>
|
sl@0
|
43 |
class combined_device {
|
sl@0
|
44 |
public:
|
sl@0
|
45 |
typedef typename char_type_of<Source>::type char_type;
|
sl@0
|
46 |
struct category
|
sl@0
|
47 |
: bidirectional,
|
sl@0
|
48 |
device_tag,
|
sl@0
|
49 |
closable_tag,
|
sl@0
|
50 |
localizable_tag
|
sl@0
|
51 |
{ };
|
sl@0
|
52 |
combined_device(const Source& src, const Sink& snk);
|
sl@0
|
53 |
std::streamsize read(char_type* s, std::streamsize n);
|
sl@0
|
54 |
std::streamsize write(const char_type* s, std::streamsize n);
|
sl@0
|
55 |
void close(BOOST_IOS::openmode);
|
sl@0
|
56 |
#ifndef BOOST_NO_STD_LOCALE
|
sl@0
|
57 |
void imbue(const std::locale& loc);
|
sl@0
|
58 |
#endif
|
sl@0
|
59 |
private:
|
sl@0
|
60 |
typedef typename char_type_of<Sink>::type sink_char_type;
|
sl@0
|
61 |
BOOST_STATIC_ASSERT((is_same<char_type, sink_char_type>::value));
|
sl@0
|
62 |
Source src_;
|
sl@0
|
63 |
Sink sink_;
|
sl@0
|
64 |
};
|
sl@0
|
65 |
|
sl@0
|
66 |
//
|
sl@0
|
67 |
// Template name: combined_filter.
|
sl@0
|
68 |
// Description: Model of Device defined in terms of a Source/Sink pair.
|
sl@0
|
69 |
// Template paramters:
|
sl@0
|
70 |
// InputFilter - A model of InputFilter, with the same char_type as
|
sl@0
|
71 |
// OutputFilter.
|
sl@0
|
72 |
// OutputFilter - A model of OutputFilter, with the same char_type as
|
sl@0
|
73 |
// InputFilter.
|
sl@0
|
74 |
//
|
sl@0
|
75 |
template<typename InputFilter, typename OutputFilter>
|
sl@0
|
76 |
class combined_filter {
|
sl@0
|
77 |
private:
|
sl@0
|
78 |
typedef typename category_of<InputFilter>::type in_category;
|
sl@0
|
79 |
typedef typename category_of<OutputFilter>::type out_category;
|
sl@0
|
80 |
public:
|
sl@0
|
81 |
typedef typename char_type_of<InputFilter>::type char_type;
|
sl@0
|
82 |
struct category
|
sl@0
|
83 |
: multichar_bidirectional_filter_tag,
|
sl@0
|
84 |
closable_tag,
|
sl@0
|
85 |
localizable_tag
|
sl@0
|
86 |
{ };
|
sl@0
|
87 |
combined_filter(const InputFilter& in, const OutputFilter& out);
|
sl@0
|
88 |
|
sl@0
|
89 |
template<typename Source>
|
sl@0
|
90 |
std::streamsize read(Source& src, char_type* s, std::streamsize n)
|
sl@0
|
91 |
{ return boost::iostreams::read(in_, src, s, n); }
|
sl@0
|
92 |
|
sl@0
|
93 |
template<typename Sink>
|
sl@0
|
94 |
std::streamsize write(Sink& snk, const char_type* s, std::streamsize n)
|
sl@0
|
95 |
{ return boost::iostreams::write(out_, snk, s, n); }
|
sl@0
|
96 |
|
sl@0
|
97 |
template<typename Sink>
|
sl@0
|
98 |
void close(Sink& snk, BOOST_IOS::openmode which)
|
sl@0
|
99 |
{
|
sl@0
|
100 |
if (which & BOOST_IOS::in)
|
sl@0
|
101 |
iostreams::close(in_, snk, which);
|
sl@0
|
102 |
if (which & BOOST_IOS::out)
|
sl@0
|
103 |
iostreams::close(out_, snk, which);
|
sl@0
|
104 |
}
|
sl@0
|
105 |
#ifndef BOOST_NO_STD_LOCALE
|
sl@0
|
106 |
void imbue(const std::locale& loc);
|
sl@0
|
107 |
#endif
|
sl@0
|
108 |
private:
|
sl@0
|
109 |
typedef typename char_type_of<OutputFilter>::type output_char_type;
|
sl@0
|
110 |
BOOST_STATIC_ASSERT((is_same<char_type, output_char_type>::value));
|
sl@0
|
111 |
InputFilter in_;
|
sl@0
|
112 |
OutputFilter out_;
|
sl@0
|
113 |
};
|
sl@0
|
114 |
|
sl@0
|
115 |
template<typename In, typename Out>
|
sl@0
|
116 |
struct combination_traits
|
sl@0
|
117 |
: mpl::if_<
|
sl@0
|
118 |
is_device<In>,
|
sl@0
|
119 |
combined_device<
|
sl@0
|
120 |
typename wrapped_type<In>::type,
|
sl@0
|
121 |
typename wrapped_type<Out>::type
|
sl@0
|
122 |
>,
|
sl@0
|
123 |
combined_filter<
|
sl@0
|
124 |
typename wrapped_type<In>::type,
|
sl@0
|
125 |
typename wrapped_type<Out>::type
|
sl@0
|
126 |
>
|
sl@0
|
127 |
>
|
sl@0
|
128 |
{ };
|
sl@0
|
129 |
|
sl@0
|
130 |
} // End namespace detail.
|
sl@0
|
131 |
|
sl@0
|
132 |
template<typename In, typename Out>
|
sl@0
|
133 |
struct combination : detail::combination_traits<In, Out>::type {
|
sl@0
|
134 |
typedef typename detail::combination_traits<In, Out>::type base_type;
|
sl@0
|
135 |
typedef typename detail::wrapped_type<In>::type in_type;
|
sl@0
|
136 |
typedef typename detail::wrapped_type<Out>::type out_type;
|
sl@0
|
137 |
combination(const in_type& in, const out_type& out)
|
sl@0
|
138 |
: base_type(in, out) { }
|
sl@0
|
139 |
};
|
sl@0
|
140 |
|
sl@0
|
141 |
namespace detail {
|
sl@0
|
142 |
|
sl@0
|
143 |
// Workaround for VC6 ETI bug.
|
sl@0
|
144 |
template<typename In, typename Out>
|
sl@0
|
145 |
struct combine_traits {
|
sl@0
|
146 |
typedef combination<
|
sl@0
|
147 |
BOOST_DEDUCED_TYPENAME detail::unwrapped_type<In>::type,
|
sl@0
|
148 |
BOOST_DEDUCED_TYPENAME detail::unwrapped_type<Out>::type
|
sl@0
|
149 |
> type;
|
sl@0
|
150 |
};
|
sl@0
|
151 |
|
sl@0
|
152 |
} // End namespace detail.
|
sl@0
|
153 |
|
sl@0
|
154 |
//
|
sl@0
|
155 |
// Template name: combine.
|
sl@0
|
156 |
// Description: Takes a Source/Sink pair or InputFilter/OutputFilter pair and
|
sl@0
|
157 |
// returns a Reource or Filter which performs input using the first member
|
sl@0
|
158 |
// of the pair and output using the second member of the pair.
|
sl@0
|
159 |
// Template paramters:
|
sl@0
|
160 |
// In - A model of Source or InputFilter, with the same char_type as Out.
|
sl@0
|
161 |
// Out - A model of Sink or OutputFilter, with the same char_type as In.
|
sl@0
|
162 |
//
|
sl@0
|
163 |
template<typename In, typename Out>
|
sl@0
|
164 |
typename detail::combine_traits<In, Out>::type
|
sl@0
|
165 |
combine(const In& in, const Out& out)
|
sl@0
|
166 |
{
|
sl@0
|
167 |
typedef typename detail::combine_traits<In, Out>::type return_type;
|
sl@0
|
168 |
return return_type(in, out);
|
sl@0
|
169 |
}
|
sl@0
|
170 |
|
sl@0
|
171 |
//----------------------------------------------------------------------------//
|
sl@0
|
172 |
|
sl@0
|
173 |
namespace detail {
|
sl@0
|
174 |
|
sl@0
|
175 |
//--------------Implementation of combined_device-----------------------------//
|
sl@0
|
176 |
|
sl@0
|
177 |
template<typename Source, typename Sink>
|
sl@0
|
178 |
inline combined_device<Source, Sink>::combined_device
|
sl@0
|
179 |
(const Source& src, const Sink& snk)
|
sl@0
|
180 |
: src_(src), sink_(snk) { }
|
sl@0
|
181 |
|
sl@0
|
182 |
template<typename Source, typename Sink>
|
sl@0
|
183 |
inline std::streamsize
|
sl@0
|
184 |
combined_device<Source, Sink>::read(char_type* s, std::streamsize n)
|
sl@0
|
185 |
{ return iostreams::read(src_, s, n); }
|
sl@0
|
186 |
|
sl@0
|
187 |
template<typename Source, typename Sink>
|
sl@0
|
188 |
inline std::streamsize
|
sl@0
|
189 |
combined_device<Source, Sink>::write(const char_type* s, std::streamsize n)
|
sl@0
|
190 |
{ return iostreams::write(sink_, s, n); }
|
sl@0
|
191 |
|
sl@0
|
192 |
template<typename Source, typename Sink>
|
sl@0
|
193 |
inline void
|
sl@0
|
194 |
combined_device<Source, Sink>::close(BOOST_IOS::openmode which)
|
sl@0
|
195 |
{
|
sl@0
|
196 |
if (which & BOOST_IOS::in)
|
sl@0
|
197 |
iostreams::close(src_, which);
|
sl@0
|
198 |
if (which & BOOST_IOS::out)
|
sl@0
|
199 |
iostreams::close(sink_, which);
|
sl@0
|
200 |
}
|
sl@0
|
201 |
|
sl@0
|
202 |
#ifndef BOOST_NO_STD_LOCALE
|
sl@0
|
203 |
template<typename Source, typename Sink>
|
sl@0
|
204 |
void combined_device<Source, Sink>::imbue(const std::locale& loc)
|
sl@0
|
205 |
{
|
sl@0
|
206 |
iostreams::imbue(src_, loc);
|
sl@0
|
207 |
iostreams::imbue(sink_, loc);
|
sl@0
|
208 |
}
|
sl@0
|
209 |
#endif
|
sl@0
|
210 |
|
sl@0
|
211 |
//--------------Implementation of filter_pair---------------------------------//
|
sl@0
|
212 |
|
sl@0
|
213 |
template<typename InputFilter, typename OutputFilter>
|
sl@0
|
214 |
inline combined_filter<InputFilter, OutputFilter>::combined_filter
|
sl@0
|
215 |
(const InputFilter& in, const OutputFilter& out) : in_(in), out_(out)
|
sl@0
|
216 |
{ }
|
sl@0
|
217 |
|
sl@0
|
218 |
#ifndef BOOST_NO_STD_LOCALE
|
sl@0
|
219 |
template<typename InputFilter, typename OutputFilter>
|
sl@0
|
220 |
void combined_filter<InputFilter, OutputFilter>::imbue
|
sl@0
|
221 |
(const std::locale& loc)
|
sl@0
|
222 |
{
|
sl@0
|
223 |
iostreams::imbue(in_, loc);
|
sl@0
|
224 |
iostreams::imbue(out_, loc);
|
sl@0
|
225 |
}
|
sl@0
|
226 |
#endif
|
sl@0
|
227 |
|
sl@0
|
228 |
|
sl@0
|
229 |
} // End namespace detail.
|
sl@0
|
230 |
|
sl@0
|
231 |
} } // End namespaces iostreams, boost.
|
sl@0
|
232 |
|
sl@0
|
233 |
#endif // #ifndef BOOST_IOSTREAMS_COMBINE_HPP_INCLUDED
|