read.hpp 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  1. // (C) Copyright 2008 CodeRage, LLC (turkanis at coderage dot com)
  2. // (C) Copyright 2005-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_READ_HPP_INCLUDED
  7. #define BOOST_IOSTREAMS_READ_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/char_traits.hpp>
  14. #include <boost/iostreams/detail/char_traits.hpp>
  15. #include <boost/iostreams/detail/dispatch.hpp>
  16. #include <boost/iostreams/detail/ios.hpp> // streamsize.
  17. #include <boost/iostreams/detail/streambuf.hpp>
  18. #include <boost/iostreams/detail/wrap_unwrap.hpp>
  19. #include <boost/iostreams/operations_fwd.hpp>
  20. #include <boost/mpl/if.hpp>
  21. // Must come last.
  22. #include <boost/iostreams/detail/config/disable_warnings.hpp>
  23. #if BOOST_WORKAROUND(BOOST_MSVC, < 1300) //-----------------------------------//
  24. # include <boost/iostreams/detail/vc6/read.hpp>
  25. #else // #if BOOST_WORKAROUND(BOOST_MSVC, < 1300) //--------------------------//
  26. namespace boost { namespace iostreams {
  27. namespace detail {
  28. template<typename T>
  29. struct read_device_impl;
  30. template<typename T>
  31. struct read_filter_impl;
  32. } // End namespace detail.
  33. template<typename T>
  34. typename int_type_of<T>::type get(T& t)
  35. { return detail::read_device_impl<T>::get(detail::unwrap(t)); }
  36. template<typename T>
  37. inline std::streamsize
  38. read(T& t, typename char_type_of<T>::type* s, std::streamsize n)
  39. { return detail::read_device_impl<T>::read(detail::unwrap(t), s, n); }
  40. template<typename T, typename Source>
  41. std::streamsize
  42. read(T& t, Source& src, typename char_type_of<T>::type* s, std::streamsize n)
  43. { return detail::read_filter_impl<T>::read(detail::unwrap(t), src, s, n); }
  44. template<typename T>
  45. bool putback(T& t, typename char_type_of<T>::type c)
  46. { return detail::read_device_impl<T>::putback(detail::unwrap(t), c); }
  47. //----------------------------------------------------------------------------//
  48. namespace detail {
  49. // Helper function for adding -1 as EOF indicator.
  50. inline std::streamsize check_eof(std::streamsize n) { return n != 0 ? n : -1; }
  51. // Helper templates for reading from streambufs.
  52. template<bool IsLinked>
  53. struct true_eof_impl;
  54. template<>
  55. struct true_eof_impl<true> {
  56. template<typename T>
  57. static bool true_eof(T& t) { return t.true_eof(); }
  58. };
  59. template<>
  60. struct true_eof_impl<false> {
  61. template<typename T>
  62. static bool true_eof(T&) { return true; }
  63. };
  64. template<typename T>
  65. inline bool true_eof(T& t)
  66. {
  67. const bool linked = is_linked<T>::value;
  68. return true_eof_impl<linked>::true_eof(t);
  69. }
  70. //------------------Definition of read_device_impl----------------------------//
  71. template<typename T>
  72. struct read_device_impl
  73. : mpl::if_<
  74. detail::is_custom<T>,
  75. operations<T>,
  76. read_device_impl<
  77. BOOST_DEDUCED_TYPENAME
  78. detail::dispatch<
  79. T, istream_tag, streambuf_tag, input
  80. >::type
  81. >
  82. >::type
  83. { };
  84. template<>
  85. struct read_device_impl<istream_tag> {
  86. template<typename T>
  87. static typename int_type_of<T>::type get(T& t)
  88. { return t.get(); }
  89. template<typename T>
  90. static std::streamsize
  91. read(T& t, typename char_type_of<T>::type* s, std::streamsize n)
  92. { return check_eof(t.rdbuf()->sgetn(s, n)); }
  93. template<typename T>
  94. static bool putback(T& t, typename char_type_of<T>::type c)
  95. {
  96. typedef typename char_type_of<T>::type char_type;
  97. typedef BOOST_IOSTREAMS_CHAR_TRAITS(char_type) traits_type;
  98. return !traits_type::eq_int_type( t.rdbuf()->sputbackc(c),
  99. traits_type::eof() );
  100. }
  101. };
  102. template<>
  103. struct read_device_impl<streambuf_tag> {
  104. template<typename T>
  105. static typename int_type_of<T>::type
  106. get(T& t)
  107. { // gcc 2.95 needs namespace qualification for char_traits.
  108. typedef typename char_type_of<T>::type char_type;
  109. typedef iostreams::char_traits<char_type> traits_type;
  110. typename int_type_of<T>::type c;
  111. return !traits_type::is_eof(c = t.sbumpc()) ||
  112. detail::true_eof(t)
  113. ?
  114. c : traits_type::would_block();
  115. }
  116. template<typename T>
  117. static std::streamsize
  118. read(T& t, typename char_type_of<T>::type* s, std::streamsize n)
  119. {
  120. std::streamsize amt;
  121. return (amt = t.sgetn(s, n)) != 0 ?
  122. amt :
  123. detail::true_eof(t) ?
  124. -1 :
  125. 0;
  126. }
  127. template<typename T>
  128. static bool putback(T& t, typename char_type_of<T>::type c)
  129. { // gcc 2.95 needs namespace qualification for char_traits.
  130. typedef typename char_type_of<T>::type char_type;
  131. typedef iostreams::char_traits<char_type> traits_type;
  132. return !traits_type::is_eof(t.sputbackc(c));
  133. }
  134. };
  135. template<>
  136. struct read_device_impl<input> {
  137. template<typename T>
  138. static typename int_type_of<T>::type
  139. get(T& t)
  140. { // gcc 2.95 needs namespace qualification for char_traits.
  141. typedef typename char_type_of<T>::type char_type;
  142. typedef iostreams::char_traits<char_type> traits_type;
  143. char_type c;
  144. std::streamsize amt;
  145. return (amt = t.read(&c, 1)) == 1 ?
  146. traits_type::to_int_type(c) :
  147. amt == -1 ?
  148. traits_type::eof() :
  149. traits_type::would_block();
  150. }
  151. template<typename T>
  152. static std::streamsize
  153. read(T& t, typename char_type_of<T>::type* s, std::streamsize n)
  154. { return t.read(s, n); }
  155. template<typename T>
  156. static bool putback(T& t, typename char_type_of<T>::type c)
  157. { // T must be Peekable.
  158. return t.putback(c);
  159. }
  160. };
  161. //------------------Definition of read_filter_impl----------------------------//
  162. template<typename T>
  163. struct read_filter_impl
  164. : mpl::if_<
  165. detail::is_custom<T>,
  166. operations<T>,
  167. read_filter_impl<
  168. BOOST_DEDUCED_TYPENAME
  169. detail::dispatch<
  170. T, multichar_tag, any_tag
  171. >::type
  172. >
  173. >::type
  174. { };
  175. template<>
  176. struct read_filter_impl<multichar_tag> {
  177. template<typename T, typename Source>
  178. static std::streamsize read
  179. (T& t, Source& src, typename char_type_of<T>::type* s, std::streamsize n)
  180. { return t.read(src, s, n); }
  181. };
  182. template<>
  183. struct read_filter_impl<any_tag> {
  184. template<typename T, typename Source>
  185. static std::streamsize read
  186. (T& t, Source& src, typename char_type_of<T>::type* s, std::streamsize n)
  187. { // gcc 2.95 needs namespace qualification for char_traits.
  188. typedef typename char_type_of<T>::type char_type;
  189. typedef iostreams::char_traits<char_type> traits_type;
  190. for (std::streamsize off = 0; off < n; ++off) {
  191. typename traits_type::int_type c = t.get(src);
  192. if (traits_type::is_eof(c))
  193. return check_eof(off);
  194. if (traits_type::would_block(c))
  195. return off;
  196. s[off] = traits_type::to_char_type(c);
  197. }
  198. return n;
  199. }
  200. };
  201. } // End namespace detail.
  202. } } // End namespaces iostreams, boost.
  203. #endif // #if BOOST_WORKAROUND(BOOST_MSVC, < 1300) //-------------------------//
  204. #include <boost/iostreams/detail/config/enable_warnings.hpp>
  205. #endif // #ifndef BOOST_IOSTREAMS_READ_HPP_INCLUDED