os/ossrv/ossrv_pub/boost_apis/boost/iostreams/stream_buffer.hpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
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_BUFFER_HPP_INCLUDED
sl@0
     8
#define BOOST_IOSTREAMS_STREAM_BUFFER_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 <memory>            // allocator.
sl@0
    15
#include <boost/config.hpp>  // BOOST_DEDUCED_TYPENAME.
sl@0
    16
#include <boost/iostreams/detail/char_traits.hpp>
sl@0
    17
#include <boost/iostreams/detail/config/overload_resolution.hpp>
sl@0
    18
#include <boost/iostreams/detail/forward.hpp>
sl@0
    19
#include <boost/iostreams/detail/ios.hpp>  // failure, streamsize.
sl@0
    20
#include <boost/iostreams/detail/streambuf/direct_streambuf.hpp>
sl@0
    21
#include <boost/iostreams/detail/streambuf/indirect_streambuf.hpp>
sl@0
    22
#include <boost/iostreams/traits.hpp>
sl@0
    23
#include <boost/static_assert.hpp>
sl@0
    24
#include <boost/type_traits/is_convertible.hpp>
sl@0
    25
sl@0
    26
// Must come last.
sl@0
    27
#include <boost/iostreams/detail/config/disable_warnings.hpp>  // MSVC.
sl@0
    28
sl@0
    29
namespace boost { namespace iostreams { namespace detail {
sl@0
    30
sl@0
    31
template<typename T, typename Tr, typename Alloc, typename Mode>
sl@0
    32
struct stream_buffer_traits {
sl@0
    33
    typedef typename
sl@0
    34
            mpl::if_<
sl@0
    35
                is_convertible<
sl@0
    36
                    BOOST_DEDUCED_TYPENAME category_of<T>::type,
sl@0
    37
                    direct_tag
sl@0
    38
                >,
sl@0
    39
                direct_streambuf<T, Tr>,
sl@0
    40
                indirect_streambuf<T, Tr, Alloc, Mode>
sl@0
    41
            >::type type;
sl@0
    42
};
sl@0
    43
sl@0
    44
} } } // End namespaces detail, iostreams, boost
sl@0
    45
sl@0
    46
#ifdef BOOST_IOSTREAMS_BROKEN_OVERLOAD_RESOLUTION
sl@0
    47
# include <boost/iostreams/detail/broken_overload_resolution/stream_buffer.hpp>
sl@0
    48
#else
sl@0
    49
sl@0
    50
namespace boost { namespace iostreams {
sl@0
    51
sl@0
    52
template< typename T,
sl@0
    53
          typename Tr =
sl@0
    54
              BOOST_IOSTREAMS_CHAR_TRAITS(
sl@0
    55
                  BOOST_DEDUCED_TYPENAME char_type_of<T>::type
sl@0
    56
              ),
sl@0
    57
          typename Alloc =
sl@0
    58
              std::allocator<
sl@0
    59
                  BOOST_DEDUCED_TYPENAME char_type_of<T>::type
sl@0
    60
              >,
sl@0
    61
          typename Mode = BOOST_DEDUCED_TYPENAME mode_of<T>::type >
sl@0
    62
class stream_buffer
sl@0
    63
    : public detail::stream_buffer_traits<T, Tr, Alloc, Mode>::type
sl@0
    64
{
sl@0
    65
private:
sl@0
    66
    BOOST_STATIC_ASSERT((
sl@0
    67
        is_convertible<
sl@0
    68
            BOOST_DEDUCED_TYPENAME iostreams::category_of<T>::type, Mode
sl@0
    69
        >::value
sl@0
    70
    ));
sl@0
    71
    typedef typename
sl@0
    72
            detail::stream_buffer_traits<
sl@0
    73
                T, Tr, Alloc, Mode
sl@0
    74
            >::type                           base_type;
sl@0
    75
    typedef T                                 policy_type;
sl@0
    76
public:
sl@0
    77
    typedef typename char_type_of<T>::type    char_type;
sl@0
    78
    BOOST_IOSTREAMS_STREAMBUF_TYPEDEFS(Tr)
sl@0
    79
public:
sl@0
    80
    stream_buffer() { }
sl@0
    81
    ~stream_buffer()
sl@0
    82
    { 
sl@0
    83
        try { 
sl@0
    84
            if (this->is_open() && this->auto_close()) 
sl@0
    85
                this->close(); 
sl@0
    86
        } catch (std::exception&) { } 
sl@0
    87
    }
sl@0
    88
    BOOST_IOSTREAMS_FORWARD( stream_buffer, open_impl, T,
sl@0
    89
                             BOOST_IOSTREAMS_PUSH_PARAMS,
sl@0
    90
                             BOOST_IOSTREAMS_PUSH_ARGS )
sl@0
    91
    T& operator*() { return *this->component(); }
sl@0
    92
    T* operator->() { return this->component(); }
sl@0
    93
private:
sl@0
    94
    void open_impl(const T& t BOOST_IOSTREAMS_PUSH_PARAMS())
sl@0
    95
        {   // Used for forwarding.
sl@0
    96
            if (this->is_open())
sl@0
    97
                BOOST_IOSTREAMS_FAILURE("already open");
sl@0
    98
            base_type::open(t BOOST_IOSTREAMS_PUSH_ARGS());
sl@0
    99
        }
sl@0
   100
};
sl@0
   101
sl@0
   102
} } // End namespaces iostreams, boost.
sl@0
   103
sl@0
   104
#endif // #ifdef BOOST_IOSTREAMS_BROKEN_OVERLOAD_RESOLUTION
sl@0
   105
sl@0
   106
#include <boost/iostreams/detail/config/enable_warnings.hpp>  // MSVC.
sl@0
   107
sl@0
   108
#endif // #ifndef BOOST_IOSTREAMS_STREAM_BUFFER_HPP_INCLUDED