write.hpp 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  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_WRITE_HPP_INCLUDED
  7. #define BOOST_IOSTREAMS_WRITE_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/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/iostreams/traits.hpp>
  21. #include <boost/mpl/if.hpp>
  22. // Must come last.
  23. #include <boost/iostreams/detail/config/disable_warnings.hpp>
  24. #if BOOST_WORKAROUND(BOOST_MSVC, < 1300) //-----------------------------------//
  25. # include <boost/iostreams/detail/vc6/write.hpp>
  26. #else // #if BOOST_WORKAROUND(BOOST_MSVC, < 1300) //--------------------------//
  27. namespace boost { namespace iostreams {
  28. namespace detail {
  29. template<typename T>
  30. struct write_device_impl;
  31. template<typename T>
  32. struct write_filter_impl;
  33. } // End namespace detail.
  34. template<typename T>
  35. bool put(T& t, typename char_type_of<T>::type c)
  36. { return detail::write_device_impl<T>::put(detail::unwrap(t), c); }
  37. template<typename T>
  38. inline std::streamsize write
  39. (T& t, const typename char_type_of<T>::type* s, std::streamsize n)
  40. { return detail::write_device_impl<T>::write(detail::unwrap(t), s, n); }
  41. template<typename T, typename Sink>
  42. inline std::streamsize
  43. write( T& t, Sink& snk, const typename char_type_of<T>::type* s,
  44. std::streamsize n )
  45. { return detail::write_filter_impl<T>::write(detail::unwrap(t), snk, s, n); }
  46. namespace detail {
  47. //------------------Definition of write_device_impl---------------------------//
  48. template<typename T>
  49. struct write_device_impl
  50. : mpl::if_<
  51. is_custom<T>,
  52. operations<T>,
  53. write_device_impl<
  54. BOOST_DEDUCED_TYPENAME
  55. dispatch<
  56. T, ostream_tag, streambuf_tag, output
  57. >::type
  58. >
  59. >::type
  60. { };
  61. template<>
  62. struct write_device_impl<ostream_tag> {
  63. template<typename T>
  64. static bool put(T& t, typename char_type_of<T>::type c)
  65. {
  66. typedef typename char_type_of<T>::type char_type;
  67. typedef BOOST_IOSTREAMS_CHAR_TRAITS(char_type) traits_type;
  68. return !traits_type::eq_int_type( t.rdbuf()->sputc(c),
  69. traits_type::eof() );
  70. }
  71. template<typename T>
  72. static std::streamsize write
  73. (T& t, const typename char_type_of<T>::type* s, std::streamsize n)
  74. { return t.rdbuf()->sputn(s, n); }
  75. };
  76. template<>
  77. struct write_device_impl<streambuf_tag> {
  78. template<typename T>
  79. static bool put(T& t, typename char_type_of<T>::type c)
  80. {
  81. typedef typename char_type_of<T>::type char_type;
  82. typedef BOOST_IOSTREAMS_CHAR_TRAITS(char_type) traits_type;
  83. return !traits_type::eq_int_type(t.sputc(c), traits_type::eof());
  84. }
  85. template<typename T>
  86. static std::streamsize write
  87. (T& t, const typename char_type_of<T>::type* s, std::streamsize n)
  88. { return t.sputn(s, n); }
  89. };
  90. template<>
  91. struct write_device_impl<output> {
  92. template<typename T>
  93. static bool put(T& t, typename char_type_of<T>::type c)
  94. { return t.write(&c, 1) == 1; }
  95. template<typename T>
  96. static std::streamsize
  97. write(T& t, const typename char_type_of<T>::type* s, std::streamsize n)
  98. { return t.write(s, n); }
  99. };
  100. //------------------Definition of write_filter_impl---------------------------//
  101. template<typename T>
  102. struct write_filter_impl
  103. : mpl::if_<
  104. is_custom<T>,
  105. operations<T>,
  106. write_filter_impl<
  107. BOOST_DEDUCED_TYPENAME
  108. dispatch<
  109. T, multichar_tag, any_tag
  110. >::type
  111. >
  112. >::type
  113. { };
  114. template<>
  115. struct write_filter_impl<multichar_tag> {
  116. template<typename T, typename Sink>
  117. static std::streamsize
  118. write( T& t, Sink& snk, const typename char_type_of<T>::type* s,
  119. std::streamsize n )
  120. { return t.write(snk, s, n); }
  121. };
  122. template<>
  123. struct write_filter_impl<any_tag> {
  124. template<typename T, typename Sink>
  125. static std::streamsize
  126. write( T& t, Sink& snk, const typename char_type_of<T>::type* s,
  127. std::streamsize n )
  128. {
  129. for (std::streamsize off = 0; off < n; ++off)
  130. if (!t.put(snk, s[off]))
  131. return off;
  132. return n;
  133. }
  134. };
  135. } // End namespace detail.
  136. } } // End namespaces iostreams, boost.
  137. #endif // #if BOOST_WORKAROUND(BOOST_MSVC, < 1300) //-------------------------//
  138. #include <boost/iostreams/detail/config/enable_warnings.hpp>
  139. #endif // #ifndef BOOST_IOSTREAMS_WRITE_HPP_INCLUDED