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 |
#ifndef BOOST_IOSTREAMS_DETAIL_CLOSER_HPP_INCLUDED
|
sl@0
|
8 |
#define BOOST_IOSTREAMS_DETAIL_CLOSER_HPP_INCLUDED
|
sl@0
|
9 |
|
sl@0
|
10 |
#if defined(_MSC_VER) && (_MSC_VER >= 1020)
|
sl@0
|
11 |
# pragma once
|
sl@0
|
12 |
#endif
|
sl@0
|
13 |
|
sl@0
|
14 |
#include <exception> // exception.
|
sl@0
|
15 |
#include <boost/iostreams/detail/ios.hpp> // openmode.
|
sl@0
|
16 |
#include <boost/iostreams/operations.hpp> // close
|
sl@0
|
17 |
#include <boost/iostreams/traits.hpp> // is_device.
|
sl@0
|
18 |
#include <boost/mpl/if.hpp>
|
sl@0
|
19 |
|
sl@0
|
20 |
namespace boost { namespace iostreams { namespace detail {
|
sl@0
|
21 |
|
sl@0
|
22 |
template<typename T>
|
sl@0
|
23 |
struct closer {
|
sl@0
|
24 |
closer(T& t) : t_(&t) { }
|
sl@0
|
25 |
~closer() { try { t_->close(); } catch (std::exception&) { } }
|
sl@0
|
26 |
T* t_;
|
sl@0
|
27 |
};
|
sl@0
|
28 |
|
sl@0
|
29 |
template<typename Device>
|
sl@0
|
30 |
struct external_device_closer {
|
sl@0
|
31 |
external_device_closer(Device& dev, BOOST_IOS::openmode which)
|
sl@0
|
32 |
: device_(&dev), which_(which),
|
sl@0
|
33 |
dummy_(true), nothrow_(dummy_)
|
sl@0
|
34 |
{ }
|
sl@0
|
35 |
external_device_closer(Device& dev, BOOST_IOS::openmode which, bool& nothrow)
|
sl@0
|
36 |
: device_(&dev), which_(which),
|
sl@0
|
37 |
dummy_(true), nothrow_(nothrow)
|
sl@0
|
38 |
{ }
|
sl@0
|
39 |
~external_device_closer()
|
sl@0
|
40 |
{
|
sl@0
|
41 |
try {
|
sl@0
|
42 |
boost::iostreams::close(*device_, which_);
|
sl@0
|
43 |
} catch (...) {
|
sl@0
|
44 |
if (!nothrow_) {
|
sl@0
|
45 |
nothrow_ = true;
|
sl@0
|
46 |
throw;
|
sl@0
|
47 |
}
|
sl@0
|
48 |
}
|
sl@0
|
49 |
}
|
sl@0
|
50 |
Device* device_;
|
sl@0
|
51 |
BOOST_IOS::openmode which_;
|
sl@0
|
52 |
bool dummy_;
|
sl@0
|
53 |
bool& nothrow_;
|
sl@0
|
54 |
};
|
sl@0
|
55 |
|
sl@0
|
56 |
template<typename Filter, typename Device>
|
sl@0
|
57 |
struct external_filter_closer {
|
sl@0
|
58 |
external_filter_closer(Filter& flt, Device& dev, BOOST_IOS::openmode which)
|
sl@0
|
59 |
: filter_(flt), device_(dev), which_(which),
|
sl@0
|
60 |
dummy_(true), nothrow_(dummy_)
|
sl@0
|
61 |
{ }
|
sl@0
|
62 |
external_filter_closer( Filter& flt, Device& dev,
|
sl@0
|
63 |
BOOST_IOS::openmode which, bool& nothrow )
|
sl@0
|
64 |
: filter_(flt), device_(dev), which_(which),
|
sl@0
|
65 |
dummy_(true), nothrow_(nothrow)
|
sl@0
|
66 |
{ }
|
sl@0
|
67 |
~external_filter_closer()
|
sl@0
|
68 |
{
|
sl@0
|
69 |
try {
|
sl@0
|
70 |
boost::iostreams::close(filter_, device_, which_);
|
sl@0
|
71 |
} catch (...) {
|
sl@0
|
72 |
if (!nothrow_) {
|
sl@0
|
73 |
nothrow_ = true;
|
sl@0
|
74 |
throw;
|
sl@0
|
75 |
}
|
sl@0
|
76 |
}
|
sl@0
|
77 |
}
|
sl@0
|
78 |
Filter& filter_;
|
sl@0
|
79 |
Device& device_;
|
sl@0
|
80 |
BOOST_IOS::openmode which_;
|
sl@0
|
81 |
bool dummy_;
|
sl@0
|
82 |
bool& nothrow_;
|
sl@0
|
83 |
};
|
sl@0
|
84 |
|
sl@0
|
85 |
template<typename FilterOrDevice, typename DeviceOrDummy = int>
|
sl@0
|
86 |
struct external_closer_traits {
|
sl@0
|
87 |
typedef typename
|
sl@0
|
88 |
mpl::if_<
|
sl@0
|
89 |
is_device<FilterOrDevice>,
|
sl@0
|
90 |
external_device_closer<FilterOrDevice>,
|
sl@0
|
91 |
external_filter_closer<FilterOrDevice, DeviceOrDummy>
|
sl@0
|
92 |
>::type type;
|
sl@0
|
93 |
};
|
sl@0
|
94 |
|
sl@0
|
95 |
template<typename FilterOrDevice, typename DeviceOrDummy = int>
|
sl@0
|
96 |
struct external_closer
|
sl@0
|
97 |
: external_closer_traits<FilterOrDevice, DeviceOrDummy>::type
|
sl@0
|
98 |
{
|
sl@0
|
99 |
typedef typename
|
sl@0
|
100 |
external_closer_traits<
|
sl@0
|
101 |
FilterOrDevice, DeviceOrDummy
|
sl@0
|
102 |
>::type base_type;
|
sl@0
|
103 |
external_closer(FilterOrDevice& dev, BOOST_IOS::openmode which)
|
sl@0
|
104 |
: base_type(dev, which)
|
sl@0
|
105 |
{ BOOST_STATIC_ASSERT(is_device<FilterOrDevice>::value); };
|
sl@0
|
106 |
external_closer( FilterOrDevice& dev, BOOST_IOS::openmode which,
|
sl@0
|
107 |
bool& nothrow )
|
sl@0
|
108 |
: base_type(dev, which, nothrow)
|
sl@0
|
109 |
{ BOOST_STATIC_ASSERT(is_device<FilterOrDevice>::value); };
|
sl@0
|
110 |
external_closer( FilterOrDevice& flt, DeviceOrDummy& dev,
|
sl@0
|
111 |
BOOST_IOS::openmode which )
|
sl@0
|
112 |
: base_type(flt, dev, which)
|
sl@0
|
113 |
{ BOOST_STATIC_ASSERT(is_filter<FilterOrDevice>::value); };
|
sl@0
|
114 |
external_closer( FilterOrDevice& flt, DeviceOrDummy& dev,
|
sl@0
|
115 |
BOOST_IOS::openmode which, bool& nothrow )
|
sl@0
|
116 |
: base_type(flt, dev, which, nothrow)
|
sl@0
|
117 |
{ BOOST_STATIC_ASSERT(is_filter<FilterOrDevice>::value); };
|
sl@0
|
118 |
};
|
sl@0
|
119 |
|
sl@0
|
120 |
} } } // End namespaces detail, iostreams, boost.
|
sl@0
|
121 |
|
sl@0
|
122 |
#endif // #ifndef BOOST_IOSTREAMS_DETAIL_CLOSER_HPP_INCLUDED
|