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_DETAIL_CLOSER_HPP_INCLUDED
8 #define BOOST_IOSTREAMS_DETAIL_CLOSER_HPP_INCLUDED
10 #if defined(_MSC_VER) && (_MSC_VER >= 1020)
14 #include <exception> // exception.
15 #include <boost/iostreams/detail/ios.hpp> // openmode.
16 #include <boost/iostreams/operations.hpp> // close
17 #include <boost/iostreams/traits.hpp> // is_device.
18 #include <boost/mpl/if.hpp>
20 namespace boost { namespace iostreams { namespace detail {
24 closer(T& t) : t_(&t) { }
25 ~closer() { try { t_->close(); } catch (std::exception&) { } }
29 template<typename Device>
30 struct external_device_closer {
31 external_device_closer(Device& dev, BOOST_IOS::openmode which)
32 : device_(&dev), which_(which),
33 dummy_(true), nothrow_(dummy_)
35 external_device_closer(Device& dev, BOOST_IOS::openmode which, bool& nothrow)
36 : device_(&dev), which_(which),
37 dummy_(true), nothrow_(nothrow)
39 ~external_device_closer()
42 boost::iostreams::close(*device_, which_);
51 BOOST_IOS::openmode which_;
56 template<typename Filter, typename Device>
57 struct external_filter_closer {
58 external_filter_closer(Filter& flt, Device& dev, BOOST_IOS::openmode which)
59 : filter_(flt), device_(dev), which_(which),
60 dummy_(true), nothrow_(dummy_)
62 external_filter_closer( Filter& flt, Device& dev,
63 BOOST_IOS::openmode which, bool& nothrow )
64 : filter_(flt), device_(dev), which_(which),
65 dummy_(true), nothrow_(nothrow)
67 ~external_filter_closer()
70 boost::iostreams::close(filter_, device_, which_);
80 BOOST_IOS::openmode which_;
85 template<typename FilterOrDevice, typename DeviceOrDummy = int>
86 struct external_closer_traits {
89 is_device<FilterOrDevice>,
90 external_device_closer<FilterOrDevice>,
91 external_filter_closer<FilterOrDevice, DeviceOrDummy>
95 template<typename FilterOrDevice, typename DeviceOrDummy = int>
96 struct external_closer
97 : external_closer_traits<FilterOrDevice, DeviceOrDummy>::type
100 external_closer_traits<
101 FilterOrDevice, DeviceOrDummy
103 external_closer(FilterOrDevice& dev, BOOST_IOS::openmode which)
104 : base_type(dev, which)
105 { BOOST_STATIC_ASSERT(is_device<FilterOrDevice>::value); };
106 external_closer( FilterOrDevice& dev, BOOST_IOS::openmode which,
108 : base_type(dev, which, nothrow)
109 { BOOST_STATIC_ASSERT(is_device<FilterOrDevice>::value); };
110 external_closer( FilterOrDevice& flt, DeviceOrDummy& dev,
111 BOOST_IOS::openmode which )
112 : base_type(flt, dev, which)
113 { BOOST_STATIC_ASSERT(is_filter<FilterOrDevice>::value); };
114 external_closer( FilterOrDevice& flt, DeviceOrDummy& dev,
115 BOOST_IOS::openmode which, bool& nothrow )
116 : base_type(flt, dev, which, nothrow)
117 { BOOST_STATIC_ASSERT(is_filter<FilterOrDevice>::value); };
120 } } } // End namespaces detail, iostreams, boost.
122 #endif // #ifndef BOOST_IOSTREAMS_DETAIL_CLOSER_HPP_INCLUDED