Update contrib.
1 // (C) Copyright Jonathan Turkanis 2004.
2 // Distributed under the Boost Software License, Version 1.0. (See accompanying
3 // 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.
7 #ifndef BOOST_IOSTREAMS_ARRAY_HPP_INCLUDED
8 #define BOOST_IOSTREAMS_ARRAY_HPP_INCLUDED
10 #if defined(_MSC_VER) && (_MSC_VER >= 1020)
14 #include <boost/config.hpp> // BOOST_MSVC, make sure size_t is in std.
15 #include <boost/detail/workaround.hpp>
16 #include <cstddef> // std::size_t.
17 #include <utility> // pair.
18 #include <boost/iostreams/categories.hpp>
19 #include <boost/preprocessor/cat.hpp>
20 #include <boost/static_assert.hpp>
21 #include <boost/type_traits/is_convertible.hpp>
22 #include <boost/type_traits/is_same.hpp>
24 namespace boost { namespace iostreams {
28 template<typename Mode, typename Ch>
32 typedef std::pair<char_type*, char_type*> pair_type;
38 array_adapter(char_type* begin, char_type* end);
39 array_adapter(char_type* begin, std::size_t length);
40 array_adapter(const char_type* begin, const char_type* end);
41 array_adapter(const char_type* begin, std::size_t length);
42 #if !BOOST_WORKAROUND(BOOST_MSVC, < 1300)
44 array_adapter(char_type (&ar)[N])
45 : begin_(ar), end_(ar + N)
48 pair_type input_sequence();
49 pair_type output_sequence();
55 } // End namespace detail.
57 // Local macros, #undef'd below.
58 #if !BOOST_WORKAROUND(BOOST_MSVC, <= 1300)
59 # define BOOST_IOSTREAMS_ARRAY_CTOR(name, ch) \
61 BOOST_PP_CAT(basic_, name)(ch (&ar)[N]) \
65 # define BOOST_IOSTREAMS_ARRAY_CTOR(name, ch)
67 #define BOOST_IOSTREAMS_ARRAY(name, mode) \
68 template<typename Ch> \
69 struct BOOST_PP_CAT(basic_, name) : detail::array_adapter<mode, Ch> { \
71 typedef detail::array_adapter<mode, Ch> base_type; \
73 typedef typename base_type::char_type char_type; \
74 typedef typename base_type::category category; \
75 BOOST_PP_CAT(basic_, name)(char_type* begin, char_type* end) \
76 : base_type(begin, end) { } \
77 BOOST_PP_CAT(basic_, name)(char_type* begin, std::size_t length) \
78 : base_type(begin, length) { } \
79 BOOST_PP_CAT(basic_, name)(const char_type* begin, const char_type* end) \
80 : base_type(begin, end) { } \
81 BOOST_PP_CAT(basic_, name)(const char_type* begin, std::size_t length) \
82 : base_type(begin, length) { } \
83 BOOST_IOSTREAMS_ARRAY_CTOR(name, Ch) \
85 typedef BOOST_PP_CAT(basic_, name)<char> name; \
86 typedef BOOST_PP_CAT(basic_, name)<wchar_t> BOOST_PP_CAT(w, name); \
88 BOOST_IOSTREAMS_ARRAY(array_source, input_seekable)
89 BOOST_IOSTREAMS_ARRAY(array_sink, output_seekable)
90 BOOST_IOSTREAMS_ARRAY(array, seekable)
91 #undef BOOST_IOSTREAMS_ARRAY_CTOR
92 #undef BOOST_IOSTREAMS_ARRAY
95 //------------------Implementation of array_adapter---------------------------//
99 template<typename Mode, typename Ch>
100 array_adapter<Mode, Ch>::array_adapter
101 (char_type* begin, char_type* end)
102 : begin_(begin), end_(end)
105 template<typename Mode, typename Ch>
106 array_adapter<Mode, Ch>::array_adapter
107 (char_type* begin, std::size_t length)
108 : begin_(begin), end_(begin + length)
111 template<typename Mode, typename Ch>
112 array_adapter<Mode, Ch>::array_adapter
113 (const char_type* begin, const char_type* end)
114 : begin_(const_cast<char_type*>(begin)), // Treated as read-only.
115 end_(const_cast<char_type*>(end)) // Treated as read-only.
116 { BOOST_STATIC_ASSERT((!is_convertible<Mode, output>::value)); }
118 template<typename Mode, typename Ch>
119 array_adapter<Mode, Ch>::array_adapter
120 (const char_type* begin, std::size_t length)
121 : begin_(const_cast<char_type*>(begin)), // Treated as read-only.
122 end_(const_cast<char_type*>(begin) + length) // Treated as read-only.
123 { BOOST_STATIC_ASSERT((!is_convertible<Mode, output>::value)); }
125 template<typename Mode, typename Ch>
126 typename array_adapter<Mode, Ch>::pair_type
127 array_adapter<Mode, Ch>::input_sequence()
128 { BOOST_STATIC_ASSERT((is_convertible<Mode, input>::value));
129 return pair_type(begin_, end_); }
131 template<typename Mode, typename Ch>
132 typename array_adapter<Mode, Ch>::pair_type
133 array_adapter<Mode, Ch>::output_sequence()
134 { BOOST_STATIC_ASSERT((is_convertible<Mode, output>::value));
135 return pair_type(begin_, end_); }
137 } // End namespace detail.
139 //----------------------------------------------------------------------------//
141 } } // End namespaces iostreams, boost.
143 #endif // #ifndef BOOST_IOSTREAMS_ARRAY_HPP_INCLUDED