First public contribution.
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_CLOSE_HPP_INCLUDED
8 #define BOOST_IOSTREAMS_CLOSE_HPP_INCLUDED
10 #if defined(_MSC_VER) && (_MSC_VER >= 1020)
14 #include <boost/config.hpp> // DEDUCED_TYPENAME, MSVC.
15 #include <boost/detail/workaround.hpp>
16 #include <boost/iostreams/categories.hpp>
17 #include <boost/iostreams/flush.hpp>
18 #include <boost/iostreams/detail/adapter/non_blocking_adapter.hpp>
19 #include <boost/iostreams/detail/wrap_unwrap.hpp>
20 #include <boost/iostreams/operations_fwd.hpp>
21 #include <boost/iostreams/traits.hpp>
22 #include <boost/mpl/identity.hpp>
23 #include <boost/mpl/if.hpp>
24 #include <boost/type_traits/is_convertible.hpp>
27 #include <boost/iostreams/detail/config/disable_warnings.hpp>
29 #if BOOST_WORKAROUND(BOOST_MSVC, < 1300) //-----------------------------------//
30 # include <boost/iostreams/detail/vc6/close.hpp>
31 #else // #if BOOST_WORKAROUND(BOOST_MSVC, < 1300) //--------------------------//
33 namespace boost { namespace iostreams {
40 } // End namespace detail.
43 void close(T& t, BOOST_IOS::openmode which)
44 { detail::close_impl<T>::close(detail::unwrap(t), which); }
46 template<typename T, typename Sink>
47 void close(T& t, Sink& snk, BOOST_IOS::openmode which)
48 { detail::close_impl<T>::close(detail::unwrap(t), snk, which); }
52 //------------------Definition of close_impl----------------------------------//
56 typedef typename category_of<T>::type category;
59 is_convertible<category, closable_tag>,
62 is_convertible<category, two_sequence>,
63 is_convertible<category, dual_use>
68 mpl::identity<any_tag>
77 close_impl<BOOST_DEDUCED_TYPENAME close_tag<T>::type>
82 struct close_impl<any_tag> {
84 static void close(T& t, BOOST_IOS::openmode which)
86 if ((which & BOOST_IOS::out) != 0)
90 template<typename T, typename Sink>
91 static void close(T& t, Sink& snk, BOOST_IOS::openmode which)
93 if ((which & BOOST_IOS::out) != 0) {
94 non_blocking_adapter<Sink> nb(snk);
95 iostreams::flush(t, nb);
100 #include <boost/iostreams/detail/config/disable_warnings.hpp> // Borland.
102 struct close_impl<closable_tag> {
104 static void close(T& t, BOOST_IOS::openmode which)
106 typedef typename category_of<T>::type category;
107 const bool in = is_convertible<category, input>::value &&
108 !is_convertible<category, output>::value;
109 if (in == ((which & BOOST_IOS::in) != 0))
112 template<typename T, typename Sink>
113 static void close(T& t, Sink& snk, BOOST_IOS::openmode which)
115 typedef typename category_of<T>::type category;
116 const bool in = is_convertible<category, input>::value &&
117 !is_convertible<category, output>::value;
118 if (in == ((which & BOOST_IOS::in) != 0)) {
119 non_blocking_adapter<Sink> nb(snk);
126 struct close_impl<two_sequence> {
128 static void close(T& t, BOOST_IOS::openmode which) { t.close(which); }
129 template<typename T, typename Sink>
130 static void close(T& t, Sink& snk, BOOST_IOS::openmode which)
132 non_blocking_adapter<Sink> nb(snk);
137 } // End namespace detail.
139 } } // End namespaces iostreams, boost.
141 #endif // #if BOOST_WORKAROUND(BOOST_MSVC, < 1300) //-------------------------//
143 #include <boost/iostreams/detail/config/enable_warnings.hpp>
145 #endif // #ifndef BOOST_IOSTREAMS_CLOSE_HPP_INCLUDED