close.hpp 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  1. // (C) Copyright 2008 CodeRage, LLC (turkanis at coderage dot com)
  2. // (C) Copyright 2003-2007 Jonathan Turkanis
  3. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  4. // 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.
  6. #ifndef BOOST_IOSTREAMS_CLOSE_HPP_INCLUDED
  7. #define BOOST_IOSTREAMS_CLOSE_HPP_INCLUDED
  8. #if defined(_MSC_VER) && (_MSC_VER >= 1020)
  9. # pragma once
  10. #endif
  11. #include <boost/config.hpp> // DEDUCED_TYPENAME, MSVC.
  12. #include <boost/detail/workaround.hpp>
  13. #include <boost/iostreams/categories.hpp>
  14. #include <boost/iostreams/flush.hpp>
  15. #include <boost/iostreams/detail/adapter/non_blocking_adapter.hpp>
  16. #include <boost/iostreams/detail/ios.hpp> // BOOST_IOS
  17. #include <boost/iostreams/detail/select.hpp>
  18. #include <boost/iostreams/detail/wrap_unwrap.hpp>
  19. #include <boost/iostreams/operations_fwd.hpp>
  20. #include <boost/iostreams/traits.hpp>
  21. #include <boost/mpl/identity.hpp>
  22. #include <boost/mpl/if.hpp>
  23. #include <boost/type_traits/is_convertible.hpp>
  24. #include <boost/type_traits/is_integral.hpp>
  25. #include <boost/type_traits/remove_cv.hpp>
  26. #include <boost/type_traits/remove_reference.hpp>
  27. // Must come last.
  28. #include <boost/iostreams/detail/config/disable_warnings.hpp>
  29. namespace boost { namespace iostreams {
  30. template<typename T>
  31. void close(T& t);
  32. template<typename T>
  33. void close(T& t, BOOST_IOS::openmode which);
  34. template<typename T, typename Sink>
  35. void close(T& t, Sink& snk, BOOST_IOS::openmode which);
  36. namespace detail {
  37. template<typename T>
  38. void close_all(T& t)
  39. {
  40. try {
  41. boost::iostreams::close(t, BOOST_IOS::in);
  42. } catch (...) {
  43. try {
  44. boost::iostreams::close(t, BOOST_IOS::out);
  45. } catch (...) { }
  46. throw;
  47. }
  48. boost::iostreams::close(t, BOOST_IOS::out);
  49. }
  50. template<typename T, typename Sink>
  51. void close_all(T& t, Sink& snk)
  52. {
  53. try {
  54. boost::iostreams::close(t, snk, BOOST_IOS::in);
  55. } catch (...) {
  56. try {
  57. boost::iostreams::close(t, snk, BOOST_IOS::out);
  58. } catch (...) { }
  59. throw;
  60. }
  61. boost::iostreams::close(t, snk, BOOST_IOS::out);
  62. }
  63. } // End namespace detail.
  64. } } // End namespaces iostreams, boost.
  65. #if BOOST_WORKAROUND(BOOST_MSVC, < 1300) //-----------------------------------//
  66. # include <boost/iostreams/detail/vc6/close.hpp>
  67. #else // #if BOOST_WORKAROUND(BOOST_MSVC, < 1300) //--------------------------//
  68. namespace boost { namespace iostreams {
  69. namespace detail {
  70. template<typename T>
  71. struct close_impl;
  72. } // End namespace detail.
  73. template<typename T>
  74. void close(T& t) { detail::close_all(t); }
  75. template<typename T>
  76. void close(T& t, BOOST_IOS::openmode which)
  77. {
  78. #ifdef BOOST_IOSTREAMS_STRICT
  79. BOOST_ASSERT(which == BOOST_IOS::in || which == BOOST_IOS::out);
  80. #else
  81. if (which == (BOOST_IOS::in | BOOST_IOS::out)) {
  82. detail::close_all(t);
  83. return;
  84. }
  85. #endif
  86. detail::close_impl<T>::close(detail::unwrap(t), which);
  87. }
  88. template<typename T, typename Sink>
  89. void close(T& t, Sink& snk, BOOST_IOS::openmode which)
  90. {
  91. #ifdef BOOST_IOSTREAMS_STRICT
  92. BOOST_ASSERT(which == BOOST_IOS::in || which == BOOST_IOS::out);
  93. #else
  94. if (which == (BOOST_IOS::in | BOOST_IOS::out)) {
  95. detail::close_all(t, snk);
  96. return;
  97. }
  98. #endif
  99. detail::close_impl<T>::close(detail::unwrap(t), snk, which);
  100. }
  101. namespace detail {
  102. //------------------Definition of close_impl----------------------------------//
  103. struct close_boost_stream { };
  104. struct close_filtering_stream { };
  105. template<typename T>
  106. struct close_tag {
  107. typedef typename category_of<T>::type category;
  108. typedef typename detail::unwrapped_type<T>::type unwrapped;
  109. typedef typename
  110. iostreams::select<
  111. mpl::not_< is_convertible<category, closable_tag> >,
  112. any_tag,
  113. mpl::or_<
  114. is_boost_stream<unwrapped>,
  115. is_boost_stream_buffer<unwrapped>
  116. >,
  117. close_boost_stream,
  118. mpl::or_<
  119. is_filtering_stream<unwrapped>,
  120. is_filtering_streambuf<unwrapped>
  121. >,
  122. close_filtering_stream,
  123. mpl::or_<
  124. is_convertible<category, two_sequence>,
  125. is_convertible<category, dual_use>
  126. >,
  127. two_sequence,
  128. else_,
  129. closable_tag
  130. >::type type;
  131. };
  132. template<typename T>
  133. struct close_impl
  134. : mpl::if_<
  135. is_custom<T>,
  136. operations<T>,
  137. close_impl<BOOST_DEDUCED_TYPENAME close_tag<T>::type>
  138. >::type
  139. { };
  140. template<>
  141. struct close_impl<any_tag> {
  142. template<typename T>
  143. static void close(T& t, BOOST_IOS::openmode which)
  144. {
  145. if (which == BOOST_IOS::out)
  146. iostreams::flush(t);
  147. }
  148. template<typename T, typename Sink>
  149. static void close(T& t, Sink& snk, BOOST_IOS::openmode which)
  150. {
  151. if (which == BOOST_IOS::out) {
  152. non_blocking_adapter<Sink> nb(snk);
  153. iostreams::flush(t, nb);
  154. }
  155. }
  156. };
  157. template<>
  158. struct close_impl<close_boost_stream> {
  159. template<typename T>
  160. static void close(T& t)
  161. {
  162. t.close();
  163. }
  164. template<typename T>
  165. static void close(T& t, BOOST_IOS::openmode which)
  166. {
  167. if (which == BOOST_IOS::out)
  168. t.close();
  169. }
  170. };
  171. template<>
  172. struct close_impl<close_filtering_stream> {
  173. template<typename T>
  174. static void close(T& t, BOOST_IOS::openmode which)
  175. {
  176. typedef typename category_of<T>::type category;
  177. const bool in = is_convertible<category, input>::value &&
  178. !is_convertible<category, output>::value;
  179. if (in == (which == BOOST_IOS::in) && t.is_complete())
  180. t.pop();
  181. }
  182. };
  183. template<>
  184. struct close_impl<closable_tag> {
  185. template<typename T>
  186. static void close(T& t, BOOST_IOS::openmode which)
  187. {
  188. typedef typename category_of<T>::type category;
  189. const bool in = is_convertible<category, input>::value &&
  190. !is_convertible<category, output>::value;
  191. if (in == (which == BOOST_IOS::in))
  192. t.close();
  193. }
  194. template<typename T, typename Sink>
  195. static void close(T& t, Sink& snk, BOOST_IOS::openmode which)
  196. {
  197. typedef typename category_of<T>::type category;
  198. const bool in = is_convertible<category, input>::value &&
  199. !is_convertible<category, output>::value;
  200. if (in == (which == BOOST_IOS::in)) {
  201. non_blocking_adapter<Sink> nb(snk);
  202. t.close(nb);
  203. }
  204. }
  205. };
  206. template<>
  207. struct close_impl<two_sequence> {
  208. template<typename T>
  209. static void close(T& t, BOOST_IOS::openmode which) { t.close(which); }
  210. template<typename T, typename Sink>
  211. static void close(T& t, Sink& snk, BOOST_IOS::openmode which)
  212. {
  213. non_blocking_adapter<Sink> nb(snk);
  214. t.close(nb, which);
  215. }
  216. };
  217. } // End namespace detail.
  218. } } // End namespaces iostreams, boost.
  219. #endif // #if BOOST_WORKAROUND(BOOST_MSVC, < 1300) //-------------------------//
  220. #include <boost/iostreams/detail/config/enable_warnings.hpp>
  221. #endif // #ifndef BOOST_IOSTREAMS_CLOSE_HPP_INCLUDED