array.hpp 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. // (C) Copyright 2008 CodeRage, LLC (turkanis at coderage dot com)
  2. // (C) Copyright 2004-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_ARRAY_HPP_INCLUDED
  7. #define BOOST_IOSTREAMS_ARRAY_HPP_INCLUDED
  8. #if defined(_MSC_VER) && (_MSC_VER >= 1020)
  9. # pragma once
  10. #endif
  11. #include <boost/config.hpp> // BOOST_MSVC, make sure size_t is in std.
  12. #include <boost/detail/workaround.hpp>
  13. #include <cstddef> // std::size_t.
  14. #include <utility> // pair.
  15. #include <boost/iostreams/categories.hpp>
  16. #include <boost/preprocessor/cat.hpp>
  17. #include <boost/static_assert.hpp>
  18. #include <boost/type_traits/is_convertible.hpp>
  19. #include <boost/type_traits/is_same.hpp>
  20. namespace boost { namespace iostreams {
  21. namespace detail {
  22. template<typename Mode, typename Ch>
  23. class array_adapter {
  24. public:
  25. typedef Ch char_type;
  26. typedef std::pair<char_type*, char_type*> pair_type;
  27. struct category
  28. : public Mode,
  29. public device_tag,
  30. public direct_tag
  31. { };
  32. array_adapter(char_type* begin, char_type* end);
  33. array_adapter(char_type* begin, std::size_t length);
  34. array_adapter(const char_type* begin, const char_type* end);
  35. array_adapter(const char_type* begin, std::size_t length);
  36. #if !BOOST_WORKAROUND(BOOST_MSVC, < 1300)
  37. template<int N>
  38. array_adapter(char_type (&ar)[N])
  39. : begin_(ar), end_(ar + N)
  40. { }
  41. #endif
  42. pair_type input_sequence();
  43. pair_type output_sequence();
  44. private:
  45. char_type* begin_;
  46. char_type* end_;
  47. };
  48. } // End namespace detail.
  49. // Local macros, #undef'd below.
  50. #if !BOOST_WORKAROUND(BOOST_MSVC, <= 1300)
  51. # define BOOST_IOSTREAMS_ARRAY_CTOR(name, ch) \
  52. template<int N> \
  53. BOOST_PP_CAT(basic_, name)(ch (&ar)[N]) \
  54. : base_type(ar) { } \
  55. /**/
  56. #else
  57. # define BOOST_IOSTREAMS_ARRAY_CTOR(name, ch)
  58. #endif
  59. #define BOOST_IOSTREAMS_ARRAY(name, mode) \
  60. template<typename Ch> \
  61. struct BOOST_PP_CAT(basic_, name) : detail::array_adapter<mode, Ch> { \
  62. private: \
  63. typedef detail::array_adapter<mode, Ch> base_type; \
  64. public: \
  65. typedef typename base_type::char_type char_type; \
  66. typedef typename base_type::category category; \
  67. BOOST_PP_CAT(basic_, name)(char_type* begin, char_type* end) \
  68. : base_type(begin, end) { } \
  69. BOOST_PP_CAT(basic_, name)(char_type* begin, std::size_t length) \
  70. : base_type(begin, length) { } \
  71. BOOST_PP_CAT(basic_, name)(const char_type* begin, const char_type* end) \
  72. : base_type(begin, end) { } \
  73. BOOST_PP_CAT(basic_, name)(const char_type* begin, std::size_t length) \
  74. : base_type(begin, length) { } \
  75. BOOST_IOSTREAMS_ARRAY_CTOR(name, Ch) \
  76. }; \
  77. typedef BOOST_PP_CAT(basic_, name)<char> name; \
  78. typedef BOOST_PP_CAT(basic_, name)<wchar_t> BOOST_PP_CAT(w, name); \
  79. /**/
  80. BOOST_IOSTREAMS_ARRAY(array_source, input_seekable)
  81. BOOST_IOSTREAMS_ARRAY(array_sink, output_seekable)
  82. BOOST_IOSTREAMS_ARRAY(array, seekable)
  83. #undef BOOST_IOSTREAMS_ARRAY_CTOR
  84. #undef BOOST_IOSTREAMS_ARRAY
  85. //------------------Implementation of array_adapter---------------------------//
  86. namespace detail {
  87. template<typename Mode, typename Ch>
  88. array_adapter<Mode, Ch>::array_adapter
  89. (char_type* begin, char_type* end)
  90. : begin_(begin), end_(end)
  91. { }
  92. template<typename Mode, typename Ch>
  93. array_adapter<Mode, Ch>::array_adapter
  94. (char_type* begin, std::size_t length)
  95. : begin_(begin), end_(begin + length)
  96. { }
  97. template<typename Mode, typename Ch>
  98. array_adapter<Mode, Ch>::array_adapter
  99. (const char_type* begin, const char_type* end)
  100. : begin_(const_cast<char_type*>(begin)), // Treated as read-only.
  101. end_(const_cast<char_type*>(end)) // Treated as read-only.
  102. { BOOST_STATIC_ASSERT((!is_convertible<Mode, output>::value)); }
  103. template<typename Mode, typename Ch>
  104. array_adapter<Mode, Ch>::array_adapter
  105. (const char_type* begin, std::size_t length)
  106. : begin_(const_cast<char_type*>(begin)), // Treated as read-only.
  107. end_(const_cast<char_type*>(begin) + length) // Treated as read-only.
  108. { BOOST_STATIC_ASSERT((!is_convertible<Mode, output>::value)); }
  109. template<typename Mode, typename Ch>
  110. typename array_adapter<Mode, Ch>::pair_type
  111. array_adapter<Mode, Ch>::input_sequence()
  112. { BOOST_STATIC_ASSERT((is_convertible<Mode, input>::value));
  113. return pair_type(begin_, end_); }
  114. template<typename Mode, typename Ch>
  115. typename array_adapter<Mode, Ch>::pair_type
  116. array_adapter<Mode, Ch>::output_sequence()
  117. { BOOST_STATIC_ASSERT((is_convertible<Mode, output>::value));
  118. return pair_type(begin_, end_); }
  119. } // End namespace detail.
  120. //----------------------------------------------------------------------------//
  121. } } // End namespaces iostreams, boost.
  122. #endif // #ifndef BOOST_IOSTREAMS_ARRAY_HPP_INCLUDED