stream.hpp 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  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_STREAM_HPP_INCLUDED
  7. #define BOOST_IOSTREAMS_STREAM_HPP_INCLUDED
  8. #if defined(_MSC_VER) && (_MSC_VER >= 1020)
  9. # pragma once
  10. #endif
  11. #include <boost/iostreams/constants.hpp>
  12. #include <boost/iostreams/detail/char_traits.hpp>
  13. #include <boost/iostreams/detail/config/overload_resolution.hpp>
  14. #include <boost/iostreams/detail/forward.hpp>
  15. #include <boost/iostreams/detail/iostream.hpp> // standard streams.
  16. #include <boost/iostreams/detail/select.hpp>
  17. #include <boost/iostreams/stream_buffer.hpp>
  18. #include <boost/mpl/and.hpp>
  19. #include <boost/type_traits/is_convertible.hpp>
  20. #include <boost/utility/base_from_member.hpp>
  21. namespace boost { namespace iostreams { namespace detail {
  22. template<typename Device, typename Tr>
  23. struct stream_traits {
  24. typedef typename char_type_of<Device>::type char_type;
  25. typedef Tr traits_type;
  26. typedef typename category_of<Device>::type mode;
  27. typedef typename
  28. iostreams::select< // Disambiguation required for Tru64.
  29. mpl::and_<
  30. is_convertible<mode, input>,
  31. is_convertible<mode, output>
  32. >,
  33. BOOST_IOSTREAMS_BASIC_IOSTREAM(char_type, traits_type),
  34. is_convertible<mode, input>,
  35. BOOST_IOSTREAMS_BASIC_ISTREAM(char_type, traits_type),
  36. else_,
  37. BOOST_IOSTREAMS_BASIC_OSTREAM(char_type, traits_type)
  38. >::type stream_type;
  39. typedef typename
  40. iostreams::select< // Disambiguation required for Tru64.
  41. mpl::and_<
  42. is_convertible<mode, input>,
  43. is_convertible<mode, output>
  44. >,
  45. iostream_tag,
  46. is_convertible<mode, input>,
  47. istream_tag,
  48. else_,
  49. ostream_tag
  50. >::type stream_tag;
  51. };
  52. // By encapsulating initialization in a base, we can define the macro
  53. // BOOST_IOSTREAMS_DEFINE_FORWARDING_FUNCTIONS to generate constructors
  54. // without base member initializer lists.
  55. template< typename Device,
  56. typename Tr =
  57. BOOST_IOSTREAMS_CHAR_TRAITS(
  58. BOOST_DEDUCED_TYPENAME char_type_of<Device>::type
  59. ),
  60. typename Alloc =
  61. std::allocator<
  62. BOOST_DEDUCED_TYPENAME char_type_of<Device>::type
  63. >,
  64. typename Base = // VC6 Workaround.
  65. BOOST_DEDUCED_TYPENAME
  66. detail::stream_traits<Device, Tr>::stream_type >
  67. class stream_base
  68. : protected base_from_member< stream_buffer<Device, Tr, Alloc> >,
  69. public Base
  70. {
  71. private:
  72. typedef base_from_member< stream_buffer<Device, Tr, Alloc> > pbase_type;
  73. typedef typename stream_traits<Device, Tr>::stream_type stream_type;
  74. protected:
  75. using pbase_type::member; // Avoid warning about 'this' in initializer list.
  76. public:
  77. stream_base() : pbase_type(), stream_type(&member) { }
  78. };
  79. } } } // End namespaces detail, iostreams, boost.
  80. #ifdef BOOST_IOSTREAMS_BROKEN_OVERLOAD_RESOLUTION
  81. # include <boost/iostreams/detail/broken_overload_resolution/stream.hpp>
  82. #else
  83. namespace boost { namespace iostreams {
  84. //
  85. // Template name: stream.
  86. // Description: A iostream which reads from and writes to an instance of a
  87. // designated device type.
  88. // Template parameters:
  89. // Device - A device type.
  90. // Alloc - The allocator type.
  91. //
  92. template< typename Device,
  93. typename Tr =
  94. BOOST_IOSTREAMS_CHAR_TRAITS(
  95. BOOST_DEDUCED_TYPENAME char_type_of<Device>::type
  96. ),
  97. typename Alloc =
  98. std::allocator<
  99. BOOST_DEDUCED_TYPENAME char_type_of<Device>::type
  100. > >
  101. struct stream : detail::stream_base<Device, Tr, Alloc> {
  102. public:
  103. typedef typename char_type_of<Device>::type char_type;
  104. struct category
  105. : mode_of<Device>::type,
  106. closable_tag,
  107. detail::stream_traits<Device, Tr>::stream_tag
  108. { };
  109. BOOST_IOSTREAMS_STREAMBUF_TYPEDEFS(Tr)
  110. private:
  111. typedef typename
  112. detail::stream_traits<
  113. Device, Tr
  114. >::stream_type stream_type;
  115. public:
  116. stream() { }
  117. BOOST_IOSTREAMS_FORWARD( stream, open_impl, Device,
  118. BOOST_IOSTREAMS_PUSH_PARAMS,
  119. BOOST_IOSTREAMS_PUSH_ARGS )
  120. bool is_open() const { return this->member.is_open(); }
  121. void close() { this->member.close(); }
  122. bool auto_close() const { return this->member.auto_close(); }
  123. void set_auto_close(bool close) { this->member.set_auto_close(close); }
  124. bool strict_sync() { return this->member.strict_sync(); }
  125. Device& operator*() { return *this->member; }
  126. Device* operator->() { return &*this->member; }
  127. Device* component() { return this->member.component(); }
  128. private:
  129. void open_impl(const Device& dev BOOST_IOSTREAMS_PUSH_PARAMS()) // For forwarding.
  130. {
  131. this->clear();
  132. this->member.open(dev BOOST_IOSTREAMS_PUSH_ARGS());
  133. }
  134. };
  135. } } // End namespaces iostreams, boost.
  136. #endif // #ifdef BOOST_IOSTREAMS_BROKEN_OVERLOAD_RESOLUTION
  137. #endif // #ifndef BOOST_IOSTREAMS_stream_HPP_INCLUDED