os/ossrv/ossrv_pub/boost_apis/boost/iostreams/device/array.hpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// (C) Copyright Jonathan Turkanis 2004.
sl@0
     2
// Distributed under the Boost Software License, Version 1.0. (See accompanying
sl@0
     3
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt.)
sl@0
     4
sl@0
     5
// See http://www.boost.org/libs/iostreams for documentation.
sl@0
     6
sl@0
     7
#ifndef BOOST_IOSTREAMS_ARRAY_HPP_INCLUDED
sl@0
     8
#define BOOST_IOSTREAMS_ARRAY_HPP_INCLUDED
sl@0
     9
sl@0
    10
#if defined(_MSC_VER) && (_MSC_VER >= 1020)
sl@0
    11
# pragma once
sl@0
    12
#endif
sl@0
    13
sl@0
    14
#include <boost/config.hpp>         // BOOST_MSVC, make sure size_t is in std.
sl@0
    15
#include <boost/detail/workaround.hpp>
sl@0
    16
#include <cstddef>                  // std::size_t.
sl@0
    17
#include <utility>                  // pair.
sl@0
    18
#include <boost/iostreams/categories.hpp>
sl@0
    19
#include <boost/preprocessor/cat.hpp>
sl@0
    20
#include <boost/static_assert.hpp>
sl@0
    21
#include <boost/type_traits/is_convertible.hpp>
sl@0
    22
#include <boost/type_traits/is_same.hpp>
sl@0
    23
sl@0
    24
namespace boost { namespace iostreams {
sl@0
    25
sl@0
    26
namespace detail {
sl@0
    27
sl@0
    28
template<typename Mode, typename Ch>
sl@0
    29
class array_adapter {
sl@0
    30
public:
sl@0
    31
    typedef Ch                                 char_type;
sl@0
    32
    typedef std::pair<char_type*, char_type*>  pair_type;
sl@0
    33
    struct category
sl@0
    34
        : public Mode,
sl@0
    35
          public device_tag,
sl@0
    36
          public direct_tag
sl@0
    37
        { };
sl@0
    38
    array_adapter(char_type* begin, char_type* end);
sl@0
    39
    array_adapter(char_type* begin, std::size_t length);
sl@0
    40
    array_adapter(const char_type* begin, const char_type* end);
sl@0
    41
    array_adapter(const char_type* begin, std::size_t length);
sl@0
    42
#if !BOOST_WORKAROUND(BOOST_MSVC, < 1300)
sl@0
    43
    template<int N>
sl@0
    44
    array_adapter(char_type (&ar)[N])
sl@0
    45
        : begin_(ar), end_(ar + N) 
sl@0
    46
        { }
sl@0
    47
#endif
sl@0
    48
    pair_type input_sequence();
sl@0
    49
    pair_type output_sequence();
sl@0
    50
private:
sl@0
    51
    char_type* begin_;
sl@0
    52
    char_type* end_;
sl@0
    53
};
sl@0
    54
sl@0
    55
} // End namespace detail.
sl@0
    56
sl@0
    57
// Local macros, #undef'd below.
sl@0
    58
#if !BOOST_WORKAROUND(BOOST_MSVC, <= 1300)
sl@0
    59
# define BOOST_IOSTREAMS_ARRAY_CTOR(name, ch) \
sl@0
    60
    template<int N> \
sl@0
    61
    BOOST_PP_CAT(basic_, name)(ch (&ar)[N]) \
sl@0
    62
        : base_type(ar) { } \
sl@0
    63
    /**/
sl@0
    64
#else
sl@0
    65
# define BOOST_IOSTREAMS_ARRAY_CTOR(name, ch)
sl@0
    66
#endif
sl@0
    67
#define BOOST_IOSTREAMS_ARRAY(name, mode) \
sl@0
    68
    template<typename Ch> \
sl@0
    69
    struct BOOST_PP_CAT(basic_, name) : detail::array_adapter<mode, Ch> { \
sl@0
    70
    private: \
sl@0
    71
        typedef detail::array_adapter<mode, Ch>  base_type; \
sl@0
    72
    public: \
sl@0
    73
        typedef typename base_type::char_type    char_type; \
sl@0
    74
        typedef typename base_type::category     category; \
sl@0
    75
        BOOST_PP_CAT(basic_, name)(char_type* begin, char_type* end) \
sl@0
    76
            : base_type(begin, end) { } \
sl@0
    77
        BOOST_PP_CAT(basic_, name)(char_type* begin, std::size_t length) \
sl@0
    78
            : base_type(begin, length) { } \
sl@0
    79
        BOOST_PP_CAT(basic_, name)(const char_type* begin, const char_type* end) \
sl@0
    80
            : base_type(begin, end) { } \
sl@0
    81
        BOOST_PP_CAT(basic_, name)(const char_type* begin, std::size_t length) \
sl@0
    82
            : base_type(begin, length) { } \
sl@0
    83
        BOOST_IOSTREAMS_ARRAY_CTOR(name, Ch) \
sl@0
    84
    }; \
sl@0
    85
    typedef BOOST_PP_CAT(basic_, name)<char>     name; \
sl@0
    86
    typedef BOOST_PP_CAT(basic_, name)<wchar_t>  BOOST_PP_CAT(w, name); \
sl@0
    87
    /**/
sl@0
    88
BOOST_IOSTREAMS_ARRAY(array_source, input_seekable)
sl@0
    89
BOOST_IOSTREAMS_ARRAY(array_sink, output_seekable)
sl@0
    90
BOOST_IOSTREAMS_ARRAY(array, seekable)
sl@0
    91
#undef BOOST_IOSTREAMS_ARRAY_CTOR
sl@0
    92
#undef BOOST_IOSTREAMS_ARRAY
sl@0
    93
sl@0
    94
sl@0
    95
//------------------Implementation of array_adapter---------------------------//
sl@0
    96
sl@0
    97
namespace detail {
sl@0
    98
sl@0
    99
template<typename Mode, typename Ch>
sl@0
   100
array_adapter<Mode, Ch>::array_adapter
sl@0
   101
    (char_type* begin, char_type* end) 
sl@0
   102
    : begin_(begin), end_(end) 
sl@0
   103
    { }
sl@0
   104
sl@0
   105
template<typename Mode, typename Ch>
sl@0
   106
array_adapter<Mode, Ch>::array_adapter
sl@0
   107
    (char_type* begin, std::size_t length) 
sl@0
   108
    : begin_(begin), end_(begin + length) 
sl@0
   109
    { }
sl@0
   110
sl@0
   111
template<typename Mode, typename Ch>
sl@0
   112
array_adapter<Mode, Ch>::array_adapter
sl@0
   113
    (const char_type* begin, const char_type* end) 
sl@0
   114
    : begin_(const_cast<char_type*>(begin)),  // Treated as read-only.
sl@0
   115
      end_(const_cast<char_type*>(end))       // Treated as read-only.
sl@0
   116
{ BOOST_STATIC_ASSERT((!is_convertible<Mode, output>::value)); }
sl@0
   117
sl@0
   118
template<typename Mode, typename Ch>
sl@0
   119
array_adapter<Mode, Ch>::array_adapter
sl@0
   120
    (const char_type* begin, std::size_t length) 
sl@0
   121
    : begin_(const_cast<char_type*>(begin)),       // Treated as read-only.
sl@0
   122
      end_(const_cast<char_type*>(begin) + length) // Treated as read-only.
sl@0
   123
{ BOOST_STATIC_ASSERT((!is_convertible<Mode, output>::value)); }
sl@0
   124
sl@0
   125
template<typename Mode, typename Ch>
sl@0
   126
typename array_adapter<Mode, Ch>::pair_type
sl@0
   127
array_adapter<Mode, Ch>::input_sequence()
sl@0
   128
{ BOOST_STATIC_ASSERT((is_convertible<Mode, input>::value));
sl@0
   129
  return pair_type(begin_, end_); }
sl@0
   130
sl@0
   131
template<typename Mode, typename Ch>
sl@0
   132
typename array_adapter<Mode, Ch>::pair_type
sl@0
   133
array_adapter<Mode, Ch>::output_sequence()
sl@0
   134
{ BOOST_STATIC_ASSERT((is_convertible<Mode, output>::value));
sl@0
   135
  return pair_type(begin_, end_); }
sl@0
   136
sl@0
   137
} // End namespace detail.
sl@0
   138
sl@0
   139
//----------------------------------------------------------------------------//
sl@0
   140
sl@0
   141
} } // End namespaces iostreams, boost.
sl@0
   142
sl@0
   143
#endif // #ifndef BOOST_IOSTREAMS_ARRAY_HPP_INCLUDED