os/ossrv/ossrv_pub/boost_apis/boost/iostreams/flush.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_FLUSH_HPP_INCLUDED
sl@0
     8
#define BOOST_IOSTREAMS_FLUSH_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>  // DEDUCED_TYPENAME, MSVC.
sl@0
    15
#include <boost/detail/workaround.hpp>
sl@0
    16
#include <boost/iostreams/detail/dispatch.hpp>
sl@0
    17
#include <boost/iostreams/detail/streambuf.hpp>
sl@0
    18
#include <boost/iostreams/detail/wrap_unwrap.hpp>
sl@0
    19
#include <boost/iostreams/operations_fwd.hpp>
sl@0
    20
#include <boost/iostreams/traits.hpp>
sl@0
    21
#include <boost/mpl/if.hpp>
sl@0
    22
sl@0
    23
// Must come last.
sl@0
    24
#include <boost/iostreams/detail/config/disable_warnings.hpp>
sl@0
    25
sl@0
    26
namespace boost { namespace iostreams {
sl@0
    27
sl@0
    28
namespace detail {
sl@0
    29
sl@0
    30
template<typename T>
sl@0
    31
struct flush_device_impl;
sl@0
    32
sl@0
    33
template<typename T>
sl@0
    34
struct flush_filter_impl;
sl@0
    35
sl@0
    36
} // End namespace detail.
sl@0
    37
sl@0
    38
template<typename T>
sl@0
    39
bool flush(T& t)
sl@0
    40
{ return detail::flush_device_impl<T>::flush(detail::unwrap(t)); }
sl@0
    41
sl@0
    42
template<typename T, typename Sink>
sl@0
    43
bool flush(T& t, Sink& snk)
sl@0
    44
{ return detail::flush_filter_impl<T>::flush(detail::unwrap(t), snk); }
sl@0
    45
sl@0
    46
namespace detail {
sl@0
    47
sl@0
    48
//------------------Definition of flush_device_impl---------------------------//
sl@0
    49
sl@0
    50
template<typename T>
sl@0
    51
struct flush_device_impl
sl@0
    52
    : mpl::if_<
sl@0
    53
          is_custom<T>,
sl@0
    54
          operations<T>,
sl@0
    55
          flush_device_impl<
sl@0
    56
              BOOST_DEDUCED_TYPENAME
sl@0
    57
              dispatch<
sl@0
    58
                  T, ostream_tag, streambuf_tag, flushable_tag, any_tag
sl@0
    59
              >::type
sl@0
    60
          >
sl@0
    61
      >::type
sl@0
    62
    { };
sl@0
    63
sl@0
    64
template<>
sl@0
    65
struct flush_device_impl<ostream_tag> {
sl@0
    66
    template<typename T>
sl@0
    67
    static bool flush(T& t)
sl@0
    68
    { return t.rdbuf()->BOOST_IOSTREAMS_PUBSYNC() == 0; }
sl@0
    69
};
sl@0
    70
sl@0
    71
template<>
sl@0
    72
struct flush_device_impl<streambuf_tag> {
sl@0
    73
    template<typename T>
sl@0
    74
    static bool flush(T& t)
sl@0
    75
    { return t.BOOST_IOSTREAMS_PUBSYNC() == 0; }
sl@0
    76
};
sl@0
    77
sl@0
    78
template<>
sl@0
    79
struct flush_device_impl<flushable_tag> {
sl@0
    80
    template<typename T>
sl@0
    81
    static bool flush(T& t) { return t.flush(); }
sl@0
    82
};
sl@0
    83
sl@0
    84
template<>
sl@0
    85
struct flush_device_impl<any_tag> {
sl@0
    86
    template<typename T>
sl@0
    87
    static bool flush(T&) { return true; }
sl@0
    88
};
sl@0
    89
sl@0
    90
//------------------Definition of flush_filter_impl---------------------------//
sl@0
    91
sl@0
    92
template<typename T>
sl@0
    93
struct flush_filter_impl
sl@0
    94
    : mpl::if_<
sl@0
    95
          is_custom<T>,
sl@0
    96
          operations<T>,
sl@0
    97
          flush_filter_impl<
sl@0
    98
              BOOST_DEDUCED_TYPENAME
sl@0
    99
              dispatch<
sl@0
   100
                  T, flushable_tag, any_tag
sl@0
   101
              >::type
sl@0
   102
          >
sl@0
   103
      >::type
sl@0
   104
    { };
sl@0
   105
sl@0
   106
template<>
sl@0
   107
struct flush_filter_impl<flushable_tag> {
sl@0
   108
    template<typename T, typename Sink>
sl@0
   109
    static bool flush(T& t, Sink& snk) { return t.flush(snk); }
sl@0
   110
};
sl@0
   111
sl@0
   112
template<>
sl@0
   113
struct flush_filter_impl<any_tag> {
sl@0
   114
    template<typename T, typename Sink>
sl@0
   115
    static bool flush(T&, Sink&) { return false; }
sl@0
   116
};
sl@0
   117
sl@0
   118
} // End namespace detail.
sl@0
   119
sl@0
   120
} } // End namespaces iostreams, boost.
sl@0
   121
sl@0
   122
#include <boost/iostreams/detail/config/enable_warnings.hpp>
sl@0
   123
sl@0
   124
#endif // #ifndef BOOST_IOSTREAMS_FLUSH_HPP_INCLUDED