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_INVERT_HPP_INCLUDED
8 #define BOOST_IOSTREAMS_INVERT_HPP_INCLUDED
10 #if defined(_MSC_VER) && (_MSC_VER >= 1020)
14 #include <algorithm> // copy, min.
16 #include <boost/config.hpp> // BOOST_DEDUCED_TYPENAME.
17 #include <boost/detail/workaround.hpp> // default_filter_buffer_size.
18 #include <boost/iostreams/char_traits.hpp>
19 #include <boost/iostreams/compose.hpp>
20 #include <boost/iostreams/constants.hpp>
21 #include <boost/iostreams/device/array.hpp>
22 #include <boost/iostreams/detail/buffer.hpp>
23 #include <boost/iostreams/detail/counted_array.hpp>
24 #include <boost/mpl/if.hpp>
25 #include <boost/ref.hpp>
26 #include <boost/shared_ptr.hpp>
27 #include <boost/type_traits/is_convertible.hpp>
30 #include <boost/iostreams/detail/config/disable_warnings.hpp> // MSVC.
32 namespace boost { namespace iostreams {
35 // Template name: inverse.
36 // Template paramters:
37 // Filter - A filter adapter which
38 // Description: Returns an instance of an appropriate specialization of inverse.
40 template<typename Filter>
43 typedef typename category_of<Filter>::type base_category;
44 typedef reference_wrapper<Filter> filter_ref;
46 typedef typename char_type_of<Filter>::type char_type;
47 typedef typename int_type_of<Filter>::type int_type;
48 typedef char_traits<char_type> traits_type;
64 explicit inverse( const Filter& filter,
65 std::streamsize buffer_size =
66 default_filter_buffer_size)
67 : pimpl_(new impl(filter, buffer_size))
70 template<typename Source>
71 std::streamsize read(Source& src, char* s, std::streamsize n)
73 typedef detail::counted_array_sink<char_type> array_sink;
74 typedef composite<filter_ref, array_sink> filtered_array_sink;
76 assert((flags() & f_write) == 0);
82 filtered_array_sink snk(filter(), array_sink(s, n));
84 for ( status = traits_type::good();
85 snk.second().count() < n && status == traits_type::good(); )
87 status = buf().fill(src);
90 return snk.second().count() == 0 &&
91 status == traits_type::eof()
98 template<typename Sink>
99 std::streamsize write(Sink& dest, const char* s, std::streamsize n)
101 typedef detail::counted_array_source<char_type> array_source;
102 typedef composite<filter_ref, array_source> filtered_array_source;
104 assert((flags() & f_read) == 0);
110 filtered_array_source src(filter(), array_source(s, n));
111 for (bool good = true; src.second().count() < n && good; ) {
113 good = buf().flush(dest);
115 return src.second().count();
118 template<typename Device>
119 void close( Device& dev,
120 BOOST_IOS::openmode which =
121 BOOST_IOS::in | BOOST_IOS::out )
123 if ((which & BOOST_IOS::out) != 0 && (flags() & f_write) != 0)
128 filter_ref filter() { return boost::ref(pimpl_->filter_); }
129 detail::buffer<char_type>& buf() { return pimpl_->buf_; }
130 int& flags() { return pimpl_->flags_; }
133 f_read = 1, f_write = 2
137 impl(const Filter& filter, std::streamsize n)
138 : filter_(filter), buf_(n), flags_(0)
141 detail::buffer<char_type> buf_;
144 shared_ptr<impl> pimpl_;
148 // Template name: invert.
149 // Template paramters:
150 // Filter - A model of InputFilter or OutputFilter.
151 // Description: Returns an instance of an appropriate specialization of inverse.
153 template<typename Filter>
154 inverse<Filter> invert(const Filter& f) { return inverse<Filter>(f); }
156 //----------------------------------------------------------------------------//
158 } } // End namespaces iostreams, boost.
160 #include <boost/iostreams/detail/config/enable_warnings.hpp> // MSVC.
162 #endif // #ifndef BOOST_IOSTREAMS_INVERT_HPP_INCLUDED