os/ossrv/ossrv_pub/boost_apis/boost/iostreams/close.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 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_CLOSE_HPP_INCLUDED
sl@0
     8
#define BOOST_IOSTREAMS_CLOSE_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/categories.hpp>
sl@0
    17
#include <boost/iostreams/flush.hpp>
sl@0
    18
#include <boost/iostreams/detail/adapter/non_blocking_adapter.hpp>
sl@0
    19
#include <boost/iostreams/detail/wrap_unwrap.hpp>
sl@0
    20
#include <boost/iostreams/operations_fwd.hpp>
sl@0
    21
#include <boost/iostreams/traits.hpp>
sl@0
    22
#include <boost/mpl/identity.hpp>
sl@0
    23
#include <boost/mpl/if.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>
sl@0
    28
sl@0
    29
#if BOOST_WORKAROUND(BOOST_MSVC, < 1300) //-----------------------------------//
sl@0
    30
# include <boost/iostreams/detail/vc6/close.hpp>
sl@0
    31
#else // #if BOOST_WORKAROUND(BOOST_MSVC, < 1300) //--------------------------//
sl@0
    32
sl@0
    33
namespace boost { namespace iostreams {
sl@0
    34
sl@0
    35
namespace detail {
sl@0
    36
sl@0
    37
template<typename T>
sl@0
    38
struct close_impl;
sl@0
    39
sl@0
    40
} // End namespace detail.
sl@0
    41
sl@0
    42
template<typename T>
sl@0
    43
void close(T& t, BOOST_IOS::openmode which)
sl@0
    44
{ detail::close_impl<T>::close(detail::unwrap(t), which); }
sl@0
    45
sl@0
    46
template<typename T, typename Sink>
sl@0
    47
void close(T& t, Sink& snk, BOOST_IOS::openmode which)
sl@0
    48
{ detail::close_impl<T>::close(detail::unwrap(t), snk, which); }
sl@0
    49
sl@0
    50
namespace detail {
sl@0
    51
sl@0
    52
//------------------Definition of close_impl----------------------------------//
sl@0
    53
sl@0
    54
template<typename T>
sl@0
    55
struct close_tag {
sl@0
    56
    typedef typename category_of<T>::type category;
sl@0
    57
    typedef typename
sl@0
    58
            mpl::eval_if<
sl@0
    59
                is_convertible<category, closable_tag>,
sl@0
    60
                mpl::if_<
sl@0
    61
                    mpl::or_<
sl@0
    62
                        is_convertible<category, two_sequence>,
sl@0
    63
                        is_convertible<category, dual_use>
sl@0
    64
                    >,
sl@0
    65
                    two_sequence,
sl@0
    66
                    closable_tag
sl@0
    67
                >,
sl@0
    68
                mpl::identity<any_tag>
sl@0
    69
            >::type type;
sl@0
    70
};
sl@0
    71
sl@0
    72
template<typename T>
sl@0
    73
struct close_impl
sl@0
    74
    : mpl::if_<
sl@0
    75
          is_custom<T>,
sl@0
    76
          operations<T>,
sl@0
    77
          close_impl<BOOST_DEDUCED_TYPENAME close_tag<T>::type>
sl@0
    78
      >::type
sl@0
    79
    { };
sl@0
    80
sl@0
    81
template<>
sl@0
    82
struct close_impl<any_tag> {
sl@0
    83
    template<typename T>
sl@0
    84
    static void close(T& t, BOOST_IOS::openmode which)
sl@0
    85
    {
sl@0
    86
        if ((which & BOOST_IOS::out) != 0)
sl@0
    87
            iostreams::flush(t);
sl@0
    88
    }
sl@0
    89
sl@0
    90
    template<typename T, typename Sink>
sl@0
    91
    static void close(T& t, Sink& snk, BOOST_IOS::openmode which)
sl@0
    92
    {
sl@0
    93
        if ((which & BOOST_IOS::out) != 0) {
sl@0
    94
            non_blocking_adapter<Sink> nb(snk);
sl@0
    95
            iostreams::flush(t, nb);
sl@0
    96
        }
sl@0
    97
    }
sl@0
    98
};
sl@0
    99
sl@0
   100
#include <boost/iostreams/detail/config/disable_warnings.hpp> // Borland.
sl@0
   101
template<>
sl@0
   102
struct close_impl<closable_tag> {
sl@0
   103
    template<typename T>
sl@0
   104
    static void close(T& t, BOOST_IOS::openmode which)
sl@0
   105
    {
sl@0
   106
        typedef typename category_of<T>::type category;
sl@0
   107
        const bool in =  is_convertible<category, input>::value &&
sl@0
   108
                        !is_convertible<category, output>::value;
sl@0
   109
        if (in == ((which & BOOST_IOS::in) != 0))
sl@0
   110
            t.close();
sl@0
   111
    }
sl@0
   112
    template<typename T, typename Sink>
sl@0
   113
    static void close(T& t, Sink& snk, BOOST_IOS::openmode which)
sl@0
   114
    {
sl@0
   115
        typedef typename category_of<T>::type category;
sl@0
   116
        const bool in =  is_convertible<category, input>::value &&
sl@0
   117
                        !is_convertible<category, output>::value;
sl@0
   118
        if (in == ((which & BOOST_IOS::in) != 0)) {
sl@0
   119
            non_blocking_adapter<Sink> nb(snk);
sl@0
   120
            t.close(nb);
sl@0
   121
        }
sl@0
   122
    }
sl@0
   123
};
sl@0
   124
sl@0
   125
template<>
sl@0
   126
struct close_impl<two_sequence> {
sl@0
   127
    template<typename T>
sl@0
   128
    static void close(T& t, BOOST_IOS::openmode which) { t.close(which); }
sl@0
   129
    template<typename T, typename Sink>
sl@0
   130
    static void close(T& t, Sink& snk, BOOST_IOS::openmode which)
sl@0
   131
    {
sl@0
   132
        non_blocking_adapter<Sink> nb(snk);
sl@0
   133
        t.close(nb, which);
sl@0
   134
    }
sl@0
   135
};
sl@0
   136
sl@0
   137
} // End namespace detail.
sl@0
   138
sl@0
   139
} } // End namespaces iostreams, boost.
sl@0
   140
sl@0
   141
#endif // #if BOOST_WORKAROUND(BOOST_MSVC, < 1300) //-------------------------//
sl@0
   142
sl@0
   143
#include <boost/iostreams/detail/config/enable_warnings.hpp>
sl@0
   144
sl@0
   145
#endif // #ifndef BOOST_IOSTREAMS_CLOSE_HPP_INCLUDED