diff -r 000000000000 -r bde4ae8d615e os/ossrv/ossrv_pub/boost_apis/boost/iostreams/detail/closer.hpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/os/ossrv/ossrv_pub/boost_apis/boost/iostreams/detail/closer.hpp Fri Jun 15 03:10:57 2012 +0200 @@ -0,0 +1,122 @@ +// (C) Copyright Jonathan Turkanis 2003. +// Distributed under the Boost Software License, Version 1.0. (See accompanying +// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt.) + +// See http://www.boost.org/libs/iostreams for documentation. + +#ifndef BOOST_IOSTREAMS_DETAIL_CLOSER_HPP_INCLUDED +#define BOOST_IOSTREAMS_DETAIL_CLOSER_HPP_INCLUDED + +#if defined(_MSC_VER) && (_MSC_VER >= 1020) +# pragma once +#endif + +#include // exception. +#include // openmode. +#include // close +#include // is_device. +#include + +namespace boost { namespace iostreams { namespace detail { + +template +struct closer { + closer(T& t) : t_(&t) { } + ~closer() { try { t_->close(); } catch (std::exception&) { } } + T* t_; +}; + +template +struct external_device_closer { + external_device_closer(Device& dev, BOOST_IOS::openmode which) + : device_(&dev), which_(which), + dummy_(true), nothrow_(dummy_) + { } + external_device_closer(Device& dev, BOOST_IOS::openmode which, bool& nothrow) + : device_(&dev), which_(which), + dummy_(true), nothrow_(nothrow) + { } + ~external_device_closer() + { + try { + boost::iostreams::close(*device_, which_); + } catch (...) { + if (!nothrow_) { + nothrow_ = true; + throw; + } + } + } + Device* device_; + BOOST_IOS::openmode which_; + bool dummy_; + bool& nothrow_; +}; + +template +struct external_filter_closer { + external_filter_closer(Filter& flt, Device& dev, BOOST_IOS::openmode which) + : filter_(flt), device_(dev), which_(which), + dummy_(true), nothrow_(dummy_) + { } + external_filter_closer( Filter& flt, Device& dev, + BOOST_IOS::openmode which, bool& nothrow ) + : filter_(flt), device_(dev), which_(which), + dummy_(true), nothrow_(nothrow) + { } + ~external_filter_closer() + { + try { + boost::iostreams::close(filter_, device_, which_); + } catch (...) { + if (!nothrow_) { + nothrow_ = true; + throw; + } + } + } + Filter& filter_; + Device& device_; + BOOST_IOS::openmode which_; + bool dummy_; + bool& nothrow_; +}; + +template +struct external_closer_traits { + typedef typename + mpl::if_< + is_device, + external_device_closer, + external_filter_closer + >::type type; +}; + +template +struct external_closer + : external_closer_traits::type +{ + typedef typename + external_closer_traits< + FilterOrDevice, DeviceOrDummy + >::type base_type; + external_closer(FilterOrDevice& dev, BOOST_IOS::openmode which) + : base_type(dev, which) + { BOOST_STATIC_ASSERT(is_device::value); }; + external_closer( FilterOrDevice& dev, BOOST_IOS::openmode which, + bool& nothrow ) + : base_type(dev, which, nothrow) + { BOOST_STATIC_ASSERT(is_device::value); }; + external_closer( FilterOrDevice& flt, DeviceOrDummy& dev, + BOOST_IOS::openmode which ) + : base_type(flt, dev, which) + { BOOST_STATIC_ASSERT(is_filter::value); }; + external_closer( FilterOrDevice& flt, DeviceOrDummy& dev, + BOOST_IOS::openmode which, bool& nothrow ) + : base_type(flt, dev, which, nothrow) + { BOOST_STATIC_ASSERT(is_filter::value); }; +}; + +} } } // End namespaces detail, iostreams, boost. + +#endif // #ifndef BOOST_IOSTREAMS_DETAIL_CLOSER_HPP_INCLUDED