sl@0
|
1 |
// (C) Copyright Jonathan Turkanis 2003.
|
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_DETAIL_PUSH_HPP_INCLUDED
|
sl@0
|
8 |
#define BOOST_IOSTREAMS_DETAIL_PUSH_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.
|
sl@0
|
15 |
#include <boost/detail/workaround.hpp>
|
sl@0
|
16 |
#include <boost/iostreams/categories.hpp>
|
sl@0
|
17 |
#include <boost/iostreams/categories.hpp>
|
sl@0
|
18 |
#include <boost/iostreams/detail/adapter/range_adapter.hpp>
|
sl@0
|
19 |
#include <boost/iostreams/detail/config/wide_streams.hpp>
|
sl@0
|
20 |
#include <boost/iostreams/detail/enable_if_stream.hpp>
|
sl@0
|
21 |
#include <boost/iostreams/pipeline.hpp>
|
sl@0
|
22 |
#include <boost/iostreams/detail/push_params.hpp>
|
sl@0
|
23 |
#include <boost/iostreams/detail/resolve.hpp>
|
sl@0
|
24 |
#include <boost/mpl/bool.hpp>
|
sl@0
|
25 |
#include <boost/preprocessor/cat.hpp>
|
sl@0
|
26 |
#include <boost/preprocessor/control/iif.hpp>
|
sl@0
|
27 |
#include <boost/static_assert.hpp>
|
sl@0
|
28 |
#include <boost/type_traits/is_convertible.hpp>
|
sl@0
|
29 |
|
sl@0
|
30 |
//
|
sl@0
|
31 |
// Macro: BOOST_IOSTREAMS_DEFINE_PUSH_CONSTRUCTOR(mode, name, helper).
|
sl@0
|
32 |
// Description: Defines overloads with name 'name' which forward to a function
|
sl@0
|
33 |
// 'helper' which takes a filter or devide by const reference.
|
sl@0
|
34 |
//
|
sl@0
|
35 |
#define BOOST_IOSTREAMS_DEFINE_PUSH_CONSTRUCTOR(name, mode, ch, helper) \
|
sl@0
|
36 |
BOOST_IOSTREAMS_DEFINE_PUSH_IMPL(name, mode, ch, helper, 0, ?) \
|
sl@0
|
37 |
/**/
|
sl@0
|
38 |
|
sl@0
|
39 |
//
|
sl@0
|
40 |
// Macro: BOOST_IOSTREAMS_DEFINE_PUSH_CONSTRUCTOR(mode, name, helper).
|
sl@0
|
41 |
// Description: Defines constructors which forward to a function
|
sl@0
|
42 |
// 'helper' which takes a filter or device by const reference.
|
sl@0
|
43 |
//
|
sl@0
|
44 |
#define BOOST_IOSTREAMS_DEFINE_PUSH(name, mode, ch, helper) \
|
sl@0
|
45 |
BOOST_IOSTREAMS_DEFINE_PUSH_IMPL(name, mode, ch, helper, 1, void) \
|
sl@0
|
46 |
/**/
|
sl@0
|
47 |
|
sl@0
|
48 |
//--------------------Definition of BOOST_IOSTREAMS_DEFINE_PUSH_IMPL----------//
|
sl@0
|
49 |
|
sl@0
|
50 |
#define BOOST_IOSTREAMS_ADAPT_STREAM(mode, ch, arg, helper, has_return) \
|
sl@0
|
51 |
this->helper( ::boost::iostreams::detail::resolve<mode, ch>(arg) \
|
sl@0
|
52 |
BOOST_IOSTREAMS_PUSH_ARGS() ); \
|
sl@0
|
53 |
/**/
|
sl@0
|
54 |
|
sl@0
|
55 |
#if !BOOST_WORKAROUND(BOOST_MSVC, <= 1300) && \
|
sl@0
|
56 |
!BOOST_WORKAROUND(__BORLANDC__, < 0x600) \
|
sl@0
|
57 |
/**/
|
sl@0
|
58 |
# ifndef BOOST_IOSTREAMS_NO_STREAM_TEMPLATES
|
sl@0
|
59 |
# define BOOST_IOSTREAMS_DEFINE_PUSH_IMPL(name, mode, ch, helper, has_return, result) \
|
sl@0
|
60 |
template<typename CharType, typename TraitsType> \
|
sl@0
|
61 |
BOOST_PP_IIF(has_return, result, explicit) \
|
sl@0
|
62 |
name(::std::basic_streambuf<CharType, TraitsType>& sb BOOST_IOSTREAMS_PUSH_PARAMS()) \
|
sl@0
|
63 |
{ BOOST_IOSTREAMS_ADAPT_STREAM(mode, ch, sb, helper, has_return); } \
|
sl@0
|
64 |
template<typename CharType, typename TraitsType> \
|
sl@0
|
65 |
BOOST_PP_IIF(has_return, result, explicit) \
|
sl@0
|
66 |
name(::std::basic_istream<CharType, TraitsType>& is BOOST_IOSTREAMS_PUSH_PARAMS()) \
|
sl@0
|
67 |
{ BOOST_STATIC_ASSERT((!is_convertible<mode, output>::value)); \
|
sl@0
|
68 |
BOOST_IOSTREAMS_ADAPT_STREAM(mode, ch, is, helper, has_return); } \
|
sl@0
|
69 |
template<typename CharType, typename TraitsType> \
|
sl@0
|
70 |
BOOST_PP_IIF(has_return, result, explicit) \
|
sl@0
|
71 |
name(::std::basic_ostream<CharType, TraitsType>& os BOOST_IOSTREAMS_PUSH_PARAMS()) \
|
sl@0
|
72 |
{ BOOST_STATIC_ASSERT((!is_convertible<mode, input>::value)); \
|
sl@0
|
73 |
BOOST_IOSTREAMS_ADAPT_STREAM(mode, ch, os, helper, has_return); } \
|
sl@0
|
74 |
template<typename CharType, typename TraitsType> \
|
sl@0
|
75 |
BOOST_PP_IIF(has_return, result, explicit) \
|
sl@0
|
76 |
name(::std::basic_iostream<CharType, TraitsType>& io BOOST_IOSTREAMS_PUSH_PARAMS()) \
|
sl@0
|
77 |
{ BOOST_IOSTREAMS_ADAPT_STREAM(mode, ch, io, helper, has_return); } \
|
sl@0
|
78 |
template<typename Iter> \
|
sl@0
|
79 |
BOOST_PP_IIF(has_return, result, explicit) \
|
sl@0
|
80 |
name(const iterator_range<Iter>& rng BOOST_IOSTREAMS_PUSH_PARAMS()) \
|
sl@0
|
81 |
{ BOOST_PP_EXPR_IF(has_return, return) \
|
sl@0
|
82 |
this->helper( ::boost::iostreams::detail::range_adapter< \
|
sl@0
|
83 |
mode, iterator_range<Iter> \
|
sl@0
|
84 |
>(rng) \
|
sl@0
|
85 |
BOOST_IOSTREAMS_PUSH_ARGS() ); } \
|
sl@0
|
86 |
template<typename Pipeline, typename Concept> \
|
sl@0
|
87 |
BOOST_PP_IIF(has_return, result, explicit) \
|
sl@0
|
88 |
name(const ::boost::iostreams::pipeline<Pipeline, Concept>& p) \
|
sl@0
|
89 |
{ p.push(*this); } \
|
sl@0
|
90 |
template<typename T> \
|
sl@0
|
91 |
BOOST_PP_IIF(has_return, result, explicit) \
|
sl@0
|
92 |
name(const T& t BOOST_IOSTREAMS_PUSH_PARAMS() BOOST_IOSTREAMS_DISABLE_IF_STREAM(T)) \
|
sl@0
|
93 |
{ this->helper( ::boost::iostreams::detail::resolve<mode, ch>(t) \
|
sl@0
|
94 |
BOOST_IOSTREAMS_PUSH_ARGS() ); } \
|
sl@0
|
95 |
/**/
|
sl@0
|
96 |
# else // # ifndef BOOST_IOSTREAMS_NO_STREAM_TEMPLATES
|
sl@0
|
97 |
# define BOOST_IOSTREAMS_DEFINE_PUSH_IMPL(name, mode, ch, helper, has_return, result) \
|
sl@0
|
98 |
BOOST_PP_IF(has_return, result, explicit) \
|
sl@0
|
99 |
name(::std::streambuf& sb BOOST_IOSTREAMS_PUSH_PARAMS()) \
|
sl@0
|
100 |
{ BOOST_IOSTREAMS_ADAPT_STREAM(mode, ch, sb, helper, has_return); } \
|
sl@0
|
101 |
BOOST_PP_IF(has_return, result, explicit) \
|
sl@0
|
102 |
name(::std::istream& is BOOST_IOSTREAMS_PUSH_PARAMS()) \
|
sl@0
|
103 |
{ BOOST_STATIC_ASSERT((!is_convertible<mode, output>::value)); \
|
sl@0
|
104 |
BOOST_IOSTREAMS_ADAPT_STREAM(mode, ch, is, helper, has_return); } \
|
sl@0
|
105 |
BOOST_PP_IF(has_return, result, explicit) \
|
sl@0
|
106 |
name(::std::ostream& os BOOST_IOSTREAMS_PUSH_PARAMS()) \
|
sl@0
|
107 |
{ BOOST_STATIC_ASSERT((!is_convertible<mode, input>::value)); \
|
sl@0
|
108 |
BOOST_IOSTREAMS_ADAPT_STREAM(mode, ch, os, helper, has_return); } \
|
sl@0
|
109 |
BOOST_PP_IF(has_return, result, explicit) \
|
sl@0
|
110 |
name(::std::iostream& io BOOST_IOSTREAMS_PUSH_PARAMS()) \
|
sl@0
|
111 |
{ BOOST_IOSTREAMS_ADAPT_STREAM(mode, ch, io, helper, has_return); } \
|
sl@0
|
112 |
template<typename Iter> \
|
sl@0
|
113 |
BOOST_PP_IF(has_return, result, explicit) \
|
sl@0
|
114 |
name(const iterator_range<Iter>& rng BOOST_IOSTREAMS_PUSH_PARAMS()) \
|
sl@0
|
115 |
{ BOOST_PP_EXPR_IF(has_return, return) \
|
sl@0
|
116 |
this->helper( ::boost::iostreams::detail::range_adapter< \
|
sl@0
|
117 |
mode, iterator_range<Iter> \
|
sl@0
|
118 |
>(rng) \
|
sl@0
|
119 |
BOOST_IOSTREAMS_PUSH_ARGS() ); } \
|
sl@0
|
120 |
template<typename Pipeline, typename Concept> \
|
sl@0
|
121 |
BOOST_PP_IF(has_return, result, explicit) \
|
sl@0
|
122 |
name(const ::boost::iostreams::pipeline<Pipeline, Concept>& p) \
|
sl@0
|
123 |
{ p.push(*this); } \
|
sl@0
|
124 |
template<typename T> \
|
sl@0
|
125 |
BOOST_PP_EXPR_IF(has_return, result) \
|
sl@0
|
126 |
name(const T& t BOOST_IOSTREAMS_PUSH_PARAMS() BOOST_IOSTREAMS_DISABLE_IF_STREAM(T)) \
|
sl@0
|
127 |
{ this->helper( ::boost::iostreams::detail::resolve<mode, ch>(t) \
|
sl@0
|
128 |
BOOST_IOSTREAMS_PUSH_ARGS() ); } \
|
sl@0
|
129 |
/**/
|
sl@0
|
130 |
# endif // # ifndef BOOST_IOSTREAMS_NO_STREAM_TEMPLATES
|
sl@0
|
131 |
#else // #if VC6, VC7.0, Borland 5.x
|
sl@0
|
132 |
# define BOOST_IOSTREAMS_DEFINE_PUSH_IMPL(name, mode, ch, helper, has_return, result) \
|
sl@0
|
133 |
template<typename T> \
|
sl@0
|
134 |
void BOOST_PP_CAT(name, _msvc_impl) \
|
sl@0
|
135 |
( ::boost::mpl::true_, const T& t BOOST_IOSTREAMS_PUSH_PARAMS() ) \
|
sl@0
|
136 |
{ t.push(*this); } \
|
sl@0
|
137 |
template<typename T> \
|
sl@0
|
138 |
void BOOST_PP_CAT(name, _msvc_impl) \
|
sl@0
|
139 |
( ::boost::mpl::false_, const T& t BOOST_IOSTREAMS_PUSH_PARAMS() ) \
|
sl@0
|
140 |
{ this->helper( ::boost::iostreams::detail::resolve<mode, ch>(t) \
|
sl@0
|
141 |
BOOST_IOSTREAMS_PUSH_ARGS() ); } \
|
sl@0
|
142 |
template<typename T> \
|
sl@0
|
143 |
BOOST_PP_IF(has_return, result, explicit) \
|
sl@0
|
144 |
name(const T& t BOOST_IOSTREAMS_PUSH_PARAMS()) \
|
sl@0
|
145 |
{ \
|
sl@0
|
146 |
this->BOOST_PP_CAT(name, _msvc_impl) \
|
sl@0
|
147 |
( ::boost::iostreams::detail::is_pipeline<T>(), \
|
sl@0
|
148 |
t BOOST_IOSTREAMS_PUSH_ARGS() ); \
|
sl@0
|
149 |
} \
|
sl@0
|
150 |
/**/
|
sl@0
|
151 |
#endif // #if VC6, VC7.0, Borland 5.x
|
sl@0
|
152 |
|
sl@0
|
153 |
#endif // #ifndef BOOST_IOSTREAMS_DETAIL_PUSH_HPP_INCLUDED
|