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_STREAM_HPP_INCLUDED
|
sl@0
|
8 |
#define BOOST_IOSTREAMS_STREAM_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/iostreams/constants.hpp>
|
sl@0
|
15 |
#include <boost/iostreams/detail/char_traits.hpp>
|
sl@0
|
16 |
#include <boost/iostreams/detail/config/overload_resolution.hpp>
|
sl@0
|
17 |
#include <boost/iostreams/detail/forward.hpp>
|
sl@0
|
18 |
#include <boost/iostreams/detail/iostream.hpp> // standard streams.
|
sl@0
|
19 |
#include <boost/iostreams/detail/select.hpp>
|
sl@0
|
20 |
#include <boost/iostreams/stream_buffer.hpp>
|
sl@0
|
21 |
#include <boost/mpl/and.hpp>
|
sl@0
|
22 |
#include <boost/type_traits/is_convertible.hpp>
|
sl@0
|
23 |
|
sl@0
|
24 |
namespace boost { namespace iostreams { namespace detail {
|
sl@0
|
25 |
|
sl@0
|
26 |
template<typename Device, typename Tr>
|
sl@0
|
27 |
struct stream_traits {
|
sl@0
|
28 |
typedef typename char_type_of<Device>::type char_type;
|
sl@0
|
29 |
typedef Tr traits_type;
|
sl@0
|
30 |
typedef typename category_of<Device>::type mode;
|
sl@0
|
31 |
typedef typename
|
sl@0
|
32 |
iostreams::select< // Dismbiguation required for Tru64.
|
sl@0
|
33 |
mpl::and_<
|
sl@0
|
34 |
is_convertible<mode, input>,
|
sl@0
|
35 |
is_convertible<mode, output>
|
sl@0
|
36 |
>,
|
sl@0
|
37 |
BOOST_IOSTREAMS_BASIC_IOSTREAM(char_type, traits_type),
|
sl@0
|
38 |
is_convertible<mode, input>,
|
sl@0
|
39 |
BOOST_IOSTREAMS_BASIC_ISTREAM(char_type, traits_type),
|
sl@0
|
40 |
else_,
|
sl@0
|
41 |
BOOST_IOSTREAMS_BASIC_OSTREAM(char_type, traits_type)
|
sl@0
|
42 |
>::type type;
|
sl@0
|
43 |
};
|
sl@0
|
44 |
|
sl@0
|
45 |
// By encapsulating initialization in a base, we can define the macro
|
sl@0
|
46 |
// BOOST_IOSTREAMS_DEFINE_FORWARDING_FUNCTIONS to generate constuctors
|
sl@0
|
47 |
// without base member initializer lists.
|
sl@0
|
48 |
template< typename Device,
|
sl@0
|
49 |
typename Tr =
|
sl@0
|
50 |
BOOST_IOSTREAMS_CHAR_TRAITS(
|
sl@0
|
51 |
BOOST_DEDUCED_TYPENAME char_type_of<Device>::type
|
sl@0
|
52 |
),
|
sl@0
|
53 |
typename Alloc =
|
sl@0
|
54 |
std::allocator<
|
sl@0
|
55 |
BOOST_DEDUCED_TYPENAME char_type_of<Device>::type
|
sl@0
|
56 |
>,
|
sl@0
|
57 |
typename Base = // VC6 Workaround.
|
sl@0
|
58 |
BOOST_DEDUCED_TYPENAME
|
sl@0
|
59 |
detail::stream_traits<Device, Tr>::type >
|
sl@0
|
60 |
class stream_base
|
sl@0
|
61 |
: protected base_from_member< stream_buffer<Device, Tr, Alloc> >,
|
sl@0
|
62 |
public Base
|
sl@0
|
63 |
{
|
sl@0
|
64 |
private:
|
sl@0
|
65 |
typedef base_from_member< stream_buffer<Device, Tr, Alloc> > pbase_type;
|
sl@0
|
66 |
typedef typename stream_traits<Device, Tr>::type stream_type;
|
sl@0
|
67 |
protected:
|
sl@0
|
68 |
using pbase_type::member; // Avoid warning about 'this' in initializer list.
|
sl@0
|
69 |
public:
|
sl@0
|
70 |
stream_base() : pbase_type(), stream_type(&member) { }
|
sl@0
|
71 |
};
|
sl@0
|
72 |
|
sl@0
|
73 |
} } } // End namespaces detail, iostreams, boost.
|
sl@0
|
74 |
|
sl@0
|
75 |
#ifdef BOOST_IOSTREAMS_BROKEN_OVERLOAD_RESOLUTION
|
sl@0
|
76 |
# include <boost/iostreams/detail/broken_overload_resolution/stream.hpp>
|
sl@0
|
77 |
#else
|
sl@0
|
78 |
|
sl@0
|
79 |
namespace boost { namespace iostreams {
|
sl@0
|
80 |
|
sl@0
|
81 |
//
|
sl@0
|
82 |
// Template name: stream.
|
sl@0
|
83 |
// Description: A iostream which reads from and writes to an instance of a
|
sl@0
|
84 |
// designated device type.
|
sl@0
|
85 |
// Template paramters:
|
sl@0
|
86 |
// Device - A device type.
|
sl@0
|
87 |
// Alloc - The allocator type.
|
sl@0
|
88 |
//
|
sl@0
|
89 |
template< typename Device,
|
sl@0
|
90 |
typename Tr =
|
sl@0
|
91 |
BOOST_IOSTREAMS_CHAR_TRAITS(
|
sl@0
|
92 |
BOOST_DEDUCED_TYPENAME char_type_of<Device>::type
|
sl@0
|
93 |
),
|
sl@0
|
94 |
typename Alloc =
|
sl@0
|
95 |
std::allocator<
|
sl@0
|
96 |
BOOST_DEDUCED_TYPENAME char_type_of<Device>::type
|
sl@0
|
97 |
> >
|
sl@0
|
98 |
struct stream : detail::stream_base<Device, Tr, Alloc> {
|
sl@0
|
99 |
public:
|
sl@0
|
100 |
typedef typename char_type_of<Device>::type char_type;
|
sl@0
|
101 |
BOOST_IOSTREAMS_STREAMBUF_TYPEDEFS(Tr)
|
sl@0
|
102 |
private:
|
sl@0
|
103 |
typedef typename
|
sl@0
|
104 |
detail::stream_traits<
|
sl@0
|
105 |
Device, Tr
|
sl@0
|
106 |
>::type stream_type;
|
sl@0
|
107 |
typedef Device policy_type;
|
sl@0
|
108 |
public:
|
sl@0
|
109 |
stream() { }
|
sl@0
|
110 |
BOOST_IOSTREAMS_FORWARD( stream, open_impl, Device,
|
sl@0
|
111 |
BOOST_IOSTREAMS_PUSH_PARAMS,
|
sl@0
|
112 |
BOOST_IOSTREAMS_PUSH_ARGS )
|
sl@0
|
113 |
bool is_open() const { return this->member.is_open(); }
|
sl@0
|
114 |
void close() { this->member.close(); }
|
sl@0
|
115 |
bool auto_close() const { return this->member.auto_close(); }
|
sl@0
|
116 |
void set_auto_close(bool close) { this->member.set_auto_close(close); }
|
sl@0
|
117 |
bool strict_sync() { return this->member.strict_sync(); }
|
sl@0
|
118 |
Device& operator*() { return *this->member; }
|
sl@0
|
119 |
Device* operator->() { return &*this->member; }
|
sl@0
|
120 |
Device* component() { return this->member.component(); }
|
sl@0
|
121 |
private:
|
sl@0
|
122 |
void open_impl(const Device& dev BOOST_IOSTREAMS_PUSH_PARAMS()) // For forwarding.
|
sl@0
|
123 |
{
|
sl@0
|
124 |
this->clear();
|
sl@0
|
125 |
this->member.open(dev BOOST_IOSTREAMS_PUSH_ARGS());
|
sl@0
|
126 |
}
|
sl@0
|
127 |
};
|
sl@0
|
128 |
|
sl@0
|
129 |
} } // End namespaces iostreams, boost.
|
sl@0
|
130 |
|
sl@0
|
131 |
#endif // #ifdef BOOST_IOSTREAMS_BROKEN_OVERLOAD_RESOLUTION
|
sl@0
|
132 |
|
sl@0
|
133 |
#endif // #ifndef BOOST_IOSTREAMS_stream_HPP_INCLUDED
|