os/ossrv/ossrv_pub/boost_apis/boost/iostreams/device/null.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 2004.
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
// Inspired by Daryle Walker's nullbuf from his More I/O submission.
sl@0
     8
sl@0
     9
#ifndef BOOST_IOSTREAMS_NULL_HPP_INCLUDED
sl@0
    10
#define BOOST_IOSTREAMS_NULL_HPP_INCLUDED
sl@0
    11
sl@0
    12
#if defined(_MSC_VER) && (_MSC_VER >= 1020)
sl@0
    13
# pragma once
sl@0
    14
#endif
sl@0
    15
sl@0
    16
#include <boost/iostreams/categories.hpp>
sl@0
    17
#include <boost/iostreams/detail/ios.hpp> // openmode, streamsize.
sl@0
    18
#include <boost/iostreams/positioning.hpp>
sl@0
    19
sl@0
    20
namespace boost { namespace iostreams {
sl@0
    21
sl@0
    22
template<typename Ch, typename Mode>
sl@0
    23
class basic_null_device {
sl@0
    24
public:
sl@0
    25
    typedef Ch char_type;
sl@0
    26
    struct category
sl@0
    27
        : public Mode,
sl@0
    28
          public device_tag,
sl@0
    29
          public closable_tag
sl@0
    30
        { };
sl@0
    31
    std::streamsize read(Ch*, std::streamsize) { return 0; }
sl@0
    32
    std::streamsize write(const Ch*, std::streamsize n) { return n; }
sl@0
    33
    stream_offset seek( stream_offset, BOOST_IOS::seekdir,
sl@0
    34
                        BOOST_IOS::openmode = 
sl@0
    35
                            BOOST_IOS::in | BOOST_IOS::out ) 
sl@0
    36
    { return -1; }
sl@0
    37
    void close(BOOST_IOS::openmode = BOOST_IOS::in | BOOST_IOS::out) { }
sl@0
    38
};
sl@0
    39
sl@0
    40
template<typename Ch>
sl@0
    41
struct basic_null_source : private basic_null_device<Ch, input> {
sl@0
    42
    typedef Ch          char_type;
sl@0
    43
    typedef source_tag  category;
sl@0
    44
    using basic_null_device<Ch, input>::read;
sl@0
    45
    using basic_null_device<Ch, input>::close;
sl@0
    46
};
sl@0
    47
sl@0
    48
typedef basic_null_source<char>     null_source;
sl@0
    49
typedef basic_null_source<wchar_t>  wnull_source;
sl@0
    50
sl@0
    51
template<typename Ch>
sl@0
    52
struct basic_null_sink : private basic_null_device<Ch, output> {
sl@0
    53
    typedef Ch        char_type;
sl@0
    54
    typedef sink_tag  category;
sl@0
    55
    using basic_null_device<Ch, output>::write;
sl@0
    56
    using basic_null_device<Ch, output>::close;
sl@0
    57
};
sl@0
    58
sl@0
    59
typedef basic_null_sink<char>     null_sink;
sl@0
    60
typedef basic_null_sink<wchar_t>  wnull_sink;
sl@0
    61
sl@0
    62
} } // End namespaces iostreams, boost.
sl@0
    63
sl@0
    64
#endif // #ifndef BOOST_IOSTREAMS_NULL_HPP_INCLUDED